diff --git a/.fvm/fvm_config.json b/.fvm/fvm_config.json index 91fff9864..c8ce8859e 100644 --- a/.fvm/fvm_config.json +++ b/.fvm/fvm_config.json @@ -1,4 +1,4 @@ { - "flutterSdkVersion": "3.16.2", + "flutterSdkVersion": "3.16.7", "flavors": {} } \ No newline at end of file diff --git a/.github/workflows/android-release.yaml b/.github/workflows/android-release.yaml index 2ed3c082e..5e1f808a7 100644 --- a/.github/workflows/android-release.yaml +++ b/.github/workflows/android-release.yaml @@ -7,11 +7,19 @@ on: jobs: build: + env: + FLUTTER_VERSION: + FLUTTER_CHANNEL: + FLUTTER_HOME: runs-on: ubuntu-latest timeout-minutes: 45 steps: - - uses: actions/checkout@v2 + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Set up ssh run: | @@ -71,6 +79,7 @@ jobs: - name: build_runner run: | echo '${{ secrets.ENV }}' | base64 -d > .env + ln -s $FLUTTER_ROOT .fvm/flutter_sdk melos generate - name: Accept Android License @@ -81,9 +90,6 @@ jobs: echo '${{ secrets.FIREBASE_ANDROID }}' | base64 -d > android/app/google-services.json echo '${{ secrets.KEY_PROPERTIES }}' | base64 -d > android/key.properties - - name: Build aab - run: flutter build appbundle --release - - name: Build apk run: flutter build apk --release @@ -91,9 +97,7 @@ jobs: uses: actions/upload-artifact@v1.0.0 with: name: release-android - path: | - build/app/outputs/bundle/release/app-release.aab - build/app/outputs/flutter-apk/app-release.apk + path: build/app/outputs/flutter-apk/app-release.apk #-- Slack通知 --# # 成功 @@ -101,9 +105,9 @@ jobs: if: ${{ success() }} uses: rtCamp/action-slack-notify@v2 env: - SLACK_TITLE: Deploy Success + SLACK_TITLE: Android CI Success SLACK_COLOR: good - SLACK_ICON: https://raw.githubusercontent.com/EQMonitor/EQMonitor/main/assets/icon.png + SLACK_ICON: /~https://github.com/YumNumm/EQMonitor/blob/6bedf4314134ecf614654f7284841390d3d0a4f3/assets/images/icon.png?raw=true SLACK_USERNAME: EQMonitor SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} @@ -112,8 +116,8 @@ jobs: if: ${{ failure() }} uses: rtCamp/action-slack-notify@v2 env: - SLACK_TITLE: Deploy Failure + SLACK_TITLE: Android CI Failure SLACK_COLOR: danger - SLACK_ICON: https://raw.githubusercontent.com/EQMonitor/EQMonitor/main/assets/icon.png + SLACK_ICON: /~https://github.com/YumNumm/EQMonitor/blob/6bedf4314134ecf614654f7284841390d3d0a4f3/assets/images/icon.png?raw=true SLACK_USERNAME: EQMonitor SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} diff --git a/.github/workflows/arv-updater.yaml b/.github/workflows/arv-updater.yaml index 36857c4cd..193da9cda 100644 --- a/.github/workflows/arv-updater.yaml +++ b/.github/workflows/arv-updater.yaml @@ -20,7 +20,9 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v2 + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 with: fetch-depth: 1 diff --git a/.github/workflows/auto-format.yaml b/.github/workflows/auto-format.yaml index 53907fe46..3ab430097 100644 --- a/.github/workflows/auto-format.yaml +++ b/.github/workflows/auto-format.yaml @@ -1,7 +1,7 @@ name: Auto Format on: - pull_request: + pull_request_target: push: branches: - main @@ -9,11 +9,19 @@ on: jobs: format: + env: + FLUTTER_VERSION: + FLUTTER_CHANNEL: + FLUTTER_HOME: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Set up ssh run: | @@ -38,7 +46,10 @@ jobs: - name: Install dependencies run: flutter pub get - name: Install Melos - run: dart pub global activate melos && melos bootstrap + run: | + dart pub global activate melos + ln -s $FLUTTER_ROOT .fvm/flutter_sdk + melos bootstrap - name: build_runner run: | diff --git a/.github/workflows/check-pull-request.yaml b/.github/workflows/check-pull-request.yaml new file mode 100644 index 000000000..cca388c5d --- /dev/null +++ b/.github/workflows/check-pull-request.yaml @@ -0,0 +1,93 @@ +name: Check Pull Request + +on: + pull_request_target: + types: [opened, ready_for_review, synchronize] + +jobs: + check: + runs-on: ubuntu-latest + timeout-minutes: 30 + env: + FLUTTER_VERSION: + FLUTTER_CHANNEL: + FLUTTER_HOME: + PUB_CACHE: + + # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions + permissions: + checks: write + contents: write + issues: write + pull-requests: write + + steps: + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 1 + + - name: Set up ssh + run: | + mkdir -p ~/.ssh + echo "${{ secrets.SSH_ID_ED25519 }}" | base64 -d > ~/.ssh/id_ed25519 + chmod 700 ~/.ssh/id_ed25519 + eval $(ssh-agent -s) + echo "Host github.com \n\tIdentityFile ~/.ssh/id_ed25519\n\tUser git\n\tIdentityiesOnly yes" >> ~/.ssh/config + ssh-keyscan -H github.com >> ~/.ssh/known_hosts + + - name: Fetch flutter config + uses: kuhnroyal/flutter-fvm-config-action@v1 + + - name: Setup Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: ${{ env.FLUTTER_VERSION }} + channel: ${{ env.FLUTTER_CHANNEL }} + cache: true + + # /~https://github.com/actions/cache + - name: Cache dependencies + uses: actions/cache@v3 + with: + path: | + ${{ env.PUB_CACHE }} + ${{ github.workspace }}/.packages + ${{ github.workspace }}/.flutter-plugins + ${{ github.workspace }}/.flutter-plugin-dependencies + ${{ github.workspace }}/.dart_tool/package_config.json + key: build-pubspec-${{ hashFiles(format('{0}{1}', github.workspace, '/pubspec.lock')) }} + restore-keys: | + build-pubspec- + + - name: Install Melos + run: dart pub global activate melos + + - name: Melos bootstrap + run: | + ln -s $FLUTTER_ROOT .fvm/flutter_sdk + melos bootstrap + + - name: flutter analyze + run: flutter analyze --write=flutter_analyze.log + continue-on-error: true + + # use flutter-analyze-commenter + - uses: yorifuji/flutter-analyze-commenter@v1 + with: + analyze-log: flutter_analyze.log # file path for analyze log + + - name: Run test + run: flutter test --file-reporter="json:test-results.json" + continue-on-error: true + + # /~https://github.com/dorny/test-reporter + - name: report test + uses: dorny/test-reporter@v1 + if: success() || failure() + with: + name: "flutter test" + path: "test-results.json" + reporter: "flutter-json" + fail-on-error: "true" diff --git a/.github/workflows/create-tag-and-release-note.yaml b/.github/workflows/create-tag-and-release-note.yaml index 32ebf2af0..ec4d5e08e 100644 --- a/.github/workflows/create-tag-and-release-note.yaml +++ b/.github/workflows/create-tag-and-release-note.yaml @@ -12,9 +12,11 @@ jobs: id-token: write pull-requests: write steps: - - uses: actions/checkout@v4 + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 with: - fetch-depth: 0 + fetch-depth: 1 - id: tagpr uses: Songmu/tagpr@v1 env: diff --git a/.github/workflows/ios-beta.yaml b/.github/workflows/ios-beta.yaml index 59ca63769..d80e92d0e 100644 --- a/.github/workflows/ios-beta.yaml +++ b/.github/workflows/ios-beta.yaml @@ -10,10 +10,16 @@ jobs: timeout-minutes: 60 env: TZ: Asia/Tokyo + FLUTTER_VERSION: + FLUTTER_CHANNEL: + FLUTTER_HOME: steps: - #リポジトリからソースをダンロード - - uses: actions/checkout@v2 + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Set up ssh run: | @@ -75,6 +81,7 @@ jobs: - name: Run build_runner run: | echo '${{ secrets.ENV }}' | base64 -d > .env + ln -s $FLUTTER_ROOT .fvm/flutter_sdk melos generate - name: Cache Pods diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml index 0d25e606c..7eceee838 100644 --- a/.github/workflows/tag-release.yaml +++ b/.github/workflows/tag-release.yaml @@ -26,10 +26,18 @@ jobs: KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} ALIAS: ${{ secrets.ALIAS }} KEY_PATH: key.jks + FLUTTER_VERSION: + FLUTTER_CHANNEL: + FLUTTER_HOME: + CI_ACTION_REF_NAME: timeout-minutes: 45 steps: - - uses: actions/checkout@v2 + # /~https://github.com/actions/checkout + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Set up ssh run: | @@ -89,6 +97,7 @@ jobs: - name: build_runner run: | echo '${{ secrets.ENV }}' | base64 -d > .env + ln -s $FLUTTER_ROOT .fvm/flutter_sdk melos generate - name: Accept Android License diff --git a/.gitignore b/.gitignore index 0282a1e0c..2ce13407b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ .fvm/flutter_sdk .crashlytics - .env ~$* @@ -132,7 +131,6 @@ app.*.symbols # Web related -lib/generated_plugin_registrant.dart # Obfuscation related app.*.map.json @@ -168,8 +166,5 @@ macos/GoogleService-Info.plist # app store connect api related file ios/*.p8 -/pubspec_overrides.yaml - - *.pem -*_old \ No newline at end of file +*_old diff --git a/.metadata b/.metadata index 982739bb0..bcd1a6008 100644 --- a/.metadata +++ b/.metadata @@ -4,7 +4,7 @@ # This file should be version controlled and should not be manually edited. version: - revision: "9e1c857886f07d342cf106f2cd588bcd5e031bb2" + revision: "78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9" channel: "stable" project_type: app @@ -13,11 +13,11 @@ project_type: app migration: platforms: - platform: root - create_revision: 9e1c857886f07d342cf106f2cd588bcd5e031bb2 - base_revision: 9e1c857886f07d342cf106f2cd588bcd5e031bb2 - - platform: ios - create_revision: 9e1c857886f07d342cf106f2cd588bcd5e031bb2 - base_revision: 9e1c857886f07d342cf106f2cd588bcd5e031bb2 + create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9 + base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9 + - platform: web + create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9 + base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9 # User provided section diff --git a/.vscode/dart.json.code-snippets b/.vscode/dart.json.code-snippets index 2576f0ce7..529cad729 100644 --- a/.vscode/dart.json.code-snippets +++ b/.vscode/dart.json.code-snippets @@ -1,20 +1,22 @@ { "Freezed class with import": { "prefix": "frzclass", - "description": "Create a Freezed class", + "description": "Create a Freezed class with import", "body": [ "import 'package:freezed_annotation/freezed_annotation.dart';", + "", "part '${TM_FILENAME_BASE}.freezed.dart';", "part '${TM_FILENAME_BASE}.g.dart';", "", "@freezed", - "class ${1:DataClass} with _$${1:DataClass} {", - "\tconst factory ${1:DataClass}({", - "\t\t@Default(0) int counter, // Add your fields here", - "\t}) = _${1:DataClass};", - "\n", - "\tfactory ${1:DataClass}.fromJson(Map json) =>", - "\t\t_$${1:DataClass}FromJson(json);", + "class ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/g}} with _$${1} {", + "\tconst factory ${1}({", + "\t\t// 必要フィールドを定義", + "\t\trequired String title,", + "\t}) = _${1};", + "", + "\tfactory ${1}.fromJson(Map json) =>", + "\t\t_$${1}FromJson(json);", "}" ] }, @@ -23,15 +25,15 @@ "description": "Create a Freezed class without import", "body": [ "@freezed", - "class ${1:DataClass} with _$${1:DataClass} {", - "\tconst factory ${1:DataClass}({", - "\t\t@Default(0) int counter, // Add your fields here", - "\t}) = _${1:DataClass};", + "class ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/g}} with _$${1} {", + "\tconst factory ${1}({", + "\t\t// 必要フィールドを定義", + "\t\trequired String title,", + "\t}) = _${1};", "", - "\tfactory ${1:DataClass}.fromJson(Map json) =>", - "\t\t\t_$${1:DataClass}FromJson(json);", - "}", - "" + "\tfactory ${1}.fromJson(Map json) =>", + "\t\t_$${1}FromJson(json);", + "}" ] }, "JsonEnum": { diff --git a/.vscode/settings.json b/.vscode/settings.json index 18cfb262e..5bf537c40 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,10 +1,12 @@ { "dart.flutterSdkPath": ".fvm/flutter_sdk", "search.exclude": { - "**/.fvm": true + "**/.fvm": true, + "*.geojson": true }, "files.watcherExclude": { - "**/.fvm": true + "**/.fvm": true, + "*.geojson": true }, "explorer.fileNesting.enabled": true, "explorer.fileNesting.patterns": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 215e65384..060a3e891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,44 @@ # Changelog +## [v2.2.2](/~https://github.com/YumNumm/EQMonitor/compare/v2.2.1...v2.2.2) - 2024-01-03 +- 地震履歴詳細画面の観測点表示を追加 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/508 +- 震度詳細画面の 都道府県ごとの震度が誤っていた問題を修正 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/510 +- すべてのEEWが失効した時に、デフォルトの表示範囲へ戻す by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/512 +- Auto format - ref: develop by @github-actions in /~https://github.com/YumNumm/EQMonitor/pull/511 + +## [v2.2.1](/~https://github.com/YumNumm/EQMonitor/compare/v2.2.0...v2.2.1) - 2024-01-03 +- docs: Fix outdated syntax in README.md by @siketyan in /~https://github.com/YumNumm/EQMonitor/pull/501 +- ci: Fix failing CI by @siketyan in /~https://github.com/YumNumm/EQMonitor/pull/502 +- Android CDの修正 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/503 +- Auto format - ref: develop by @github-actions in /~https://github.com/YumNumm/EQMonitor/pull/504 +- Fix/everyone topic by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/505 + +## [v2.0.3](/~https://github.com/YumNumm/EQMonitor/compare/v2.0.2...v2.0.3) - 2024-01-01 +- [iOS] 通知画像が表示されない問題を修正 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/433 +- add: デバッグ時にFCM・APNS Tokenを表示するように by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/434 +- Androidの通知関連修正 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/437 +- fix: 旧バージョンのTopic購読を解除 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/439 +- [Android] 予測型「戻る」ジェスチャーの仮対応 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/441 +- [Android] KmoniStatusのProgressIndicatorのサイズ調整 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/444 +- Auto format - ref: develop by @github-actions in /~https://github.com/YumNumm/EQMonitor/pull/443 +- Auto format - ref: develop by @github-actions in /~https://github.com/YumNumm/EQMonitor/pull/446 +- Auto format - ref: develop by @github-actions in /~https://github.com/YumNumm/EQMonitor/pull/447 +- ホーム画面の不要な再描画の抑制 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/453 +- 地震履歴詳細画面の震源地 cross-axisを修正 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/452 +- build(deps): bump melos from 3.2.0 to 3.4.0 by @dependabot in /~https://github.com/YumNumm/EQMonitor/pull/451 +- build(deps): bump dio_http2_adapter from 2.3.2 to 2.4.0 by @dependabot in /~https://github.com/YumNumm/EQMonitor/pull/450 +- build(deps): bump package_info_plus from 4.2.0 to 5.0.1 by @dependabot in /~https://github.com/YumNumm/EQMonitor/pull/449 +- build(deps): bump dio from 5.3.4 to 5.4.0 by @dependabot in /~https://github.com/YumNumm/EQMonitor/pull/448 +- Temporary Support to Web by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/472 +- REST APIのURL切り替え by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/474 +- 地震履歴設定のUI構築 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/476 +- PLUM法のEEWが、P/S波到達予想円に表示される問題 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/478 +- Flutter 3.18.0-0.2-preへアップデート by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/490 +- 震度速報のみの表示を改善 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/491 +- VXSE51の発表時刻表示 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/492 +- 地震履歴の長周期地震動階級周りの実装 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/494 +- EEWのLPGM実装 by @YumNumm in /~https://github.com/YumNumm/EQMonitor/pull/496 + ## [v2.0.2](/~https://github.com/YumNumm/EQMonitor/compare/v2.0.1...v2.0.2) - 2023-12-02 - Auto format - ref: develop by @github-actions in /~https://github.com/YumNumm/EQMonitor/pull/423 diff --git a/README.md b/README.md index 50cf6aa55..d3d0f9423 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # EQMonitor -### 地震速報・監視アプリケーション +## 地震速報・監視アプリケーション [![45BD36DF-05A4-4875-B913-2F53FDAA48FF](/~https://github.com/YumNumm/EQMonitor/blob/develop/assets/header.png?raw=true)](/~https://github.com/EQMonitor/EQMonitor) @@ -8,7 +8,8 @@ [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/EQMonitor/EQMonitor?color=blue&include_prereleases&label=Release)](/~https://github.com/EQMonitor/EQMonitor/releases/latest) [![Flutter build Android](/~https://github.com/EQMonitor/EQMonitor/actions/workflows/android-release.yaml/badge.svg)](/~https://github.com/EQMonitor/EQMonitor/actions/workflows/android-release.yaml) -> **Warning** [利用規約](/~https://github.com/EQMonitor/EQMonitor/blob/main/assets/docs/term_of_service.md)を必ずご確認の上ご利用ください。 +> [!WARNING] +> [利用規約](/~https://github.com/EQMonitor/EQMonitor/blob/main/assets/docs/term_of_service.md)を必ずご確認の上ご利用ください。 ![iPad 2](/~https://github.com/YumNumm/EQMonitor/assets/73390859/127f88f5-9e4f-40b5-a7f2-48efe0932c0c) @@ -16,23 +17,66 @@ EQMonitorは、日本全国の地震情報をいち早く受信できるアプリケーションです。 -***機能*** +**_機能_** -* **地震情報・緊急地震速報の通知** +- **地震情報・緊急地震速報の通知** 気象庁により発表された地震情報や、緊急地震速報を受信し、通知します。 -* **過去の地震履歴の閲覧** +- **過去の地震履歴の閲覧** 過去に発表された地震情報を遡って確認できます。 -* **緊急地震速報のリアルタイム表示** +- **緊急地震速報のリアルタイム表示** 緊急地震速報が発表された際に、P波・S波の予想到達範囲、予想最大震度、震央地を表示します。 緊急地震速報は、リアルタイムに更新され、インターネットに接続されていれば、どこからでも確認できます。 -* **強震モニタの表示** +- **強震モニタの表示** 防災科学技術研究所の提供するWebサービス 強震モニタ を表示します。 (※ 強震モニタは、揺れの様子を直感的に捉えることを目的としています。また、リアルタイムで観測値を処理しているため、ノイズ等により観測値が変動します。 そのため、本アプリケーションで表示される観測値は、あくまで参考値としてご利用ください。) + +## 環境構築 + +下記のコマンドをターミナルから実行してください。 + +1. `git clone /~https://github.com/YumNumm/EQMonitor` でリポジトリをクローンします。 + +1. `cd EQMonitor` でカレントディレクトリを移動します。 + +1. `fvm flutter pub get` で必要なパッケージをインストールします。 + + - 本プロジェクトでは、Flutterのバージョン管理に[FVM](https://fvm.app/)を利用しています。 + +1. Dartプロジェクトを管理するためのツールである[melos](https://melos.invertase.dev/)をインストールします。 + + - `dart pub global activate melos` を実行してください。 + - 詳細は、[Get Started](https://melos.invertase.dev/~melos-latest/getting-started)を参照してください。 + +1. `melos bootstrap` を実行してください。 + + - これにより、各パッケージの依存関係が解決されます。 + +1. `mv .env.example .env` を実行してください。 + + - 環境変数の値を設定してください。 + - API保護のため、環境変数の値は公開しません。 + +1. `fvm flutter run` でアプリケーションを起動します。 + + diff --git a/analysis_options.yaml b/analysis_options.yaml index 17082e694..4a6dad6bb 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -7,7 +7,9 @@ analyzer: - custom_lint errors: invalid_annotation_target: ignore + duplicate_ignore: ignore linter: rules: always_use_package_imports: true + lines_longer_than_80_chars: false diff --git a/android/app/build.gradle b/android/app/build.gradle index 4cc5cf947..54caf6cdb 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -27,6 +27,9 @@ android { compileSdk 33 compileOptions { + + // Flag to enable support for the new language APIs + coreLibraryDesugaringEnabled true sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } @@ -100,6 +103,7 @@ dependencies { implementation 'androidx.core:core-splashscreen:1.0.1' implementation 'androidx.window:window:1.0.0' implementation 'androidx.window:window-java:1.0.0' + coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2' } apply plugin: 'com.google.firebase.crashlytics' diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index bbaed5c41..b1d1d31d3 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -35,6 +35,9 @@ android:launchMode="singleTop" android:theme="@style/Theme.App.Starting" android:windowSoftInputMode="adjustResize" + android:showWhenLocked="true" + android:turnScreenOn="true" + android:enableOnBackInvokedCallback="true" android:directBootAware="true"> + + diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index f74085f3f..000000000 --- a/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/android/app/src/main/res/drawable/int0.PNG b/android/app/src/main/res/drawable/int0.PNG deleted file mode 100644 index 77b7373ae..000000000 Binary files a/android/app/src/main/res/drawable/int0.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int1.PNG b/android/app/src/main/res/drawable/int1.PNG deleted file mode 100644 index e20a36387..000000000 Binary files a/android/app/src/main/res/drawable/int1.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int2.PNG b/android/app/src/main/res/drawable/int2.PNG deleted file mode 100644 index e289cb607..000000000 Binary files a/android/app/src/main/res/drawable/int2.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int3.PNG b/android/app/src/main/res/drawable/int3.PNG deleted file mode 100644 index e5a74d463..000000000 Binary files a/android/app/src/main/res/drawable/int3.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int4.PNG b/android/app/src/main/res/drawable/int4.PNG deleted file mode 100644 index 2410b20d0..000000000 Binary files a/android/app/src/main/res/drawable/int4.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int5m.PNG b/android/app/src/main/res/drawable/int5m.PNG deleted file mode 100644 index e613b41b5..000000000 Binary files a/android/app/src/main/res/drawable/int5m.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int5p.PNG b/android/app/src/main/res/drawable/int5p.PNG deleted file mode 100644 index a5a5e9182..000000000 Binary files a/android/app/src/main/res/drawable/int5p.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int6m.PNG b/android/app/src/main/res/drawable/int6m.PNG deleted file mode 100644 index c3702b6ae..000000000 Binary files a/android/app/src/main/res/drawable/int6m.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int6p.PNG b/android/app/src/main/res/drawable/int6p.PNG deleted file mode 100644 index c64a779bc..000000000 Binary files a/android/app/src/main/res/drawable/int6p.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/int7.PNG b/android/app/src/main/res/drawable/int7.PNG deleted file mode 100644 index 750481faa..000000000 Binary files a/android/app/src/main/res/drawable/int7.PNG and /dev/null differ diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 260d413ac..000000000 --- a/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/android/app/src/main/res/drawable/unknown.PNG b/android/app/src/main/res/drawable/unknown.PNG deleted file mode 100644 index 13e3e960d..000000000 Binary files a/android/app/src/main/res/drawable/unknown.PNG and /dev/null differ diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml index 1cdcaccea..a465b3753 100644 --- a/android/app/src/main/res/values/colors.xml +++ b/android/app/src/main/res/values/colors.xml @@ -5,5 +5,5 @@ #FF81D4FA #FF039BE5 #FF01579B - #E9F5FF - \ No newline at end of file + #3A3A3A + diff --git a/assets/jma_map.pb b/assets/jma_map.pb new file mode 100644 index 000000000..6f38beed0 Binary files /dev/null and b/assets/jma_map.pb differ diff --git a/assets/maps/topology_maps.json b/assets/maps/topology_maps.json deleted file mode 100644 index 3cb6ad6dc..000000000 --- a/assets/maps/topology_maps.json +++ /dev/null @@ -1 +0,0 @@ -{"earthquakeInformationSubdivisionArea":{"scale":{"x":0.00010535778469180191,"y":0.00012794638335809647},"translate":{"x":24.04561286654462,"y":122.93374861200891},"polygons":[{"arcs":[[0]],"areaCode":100},{"arcs":[[1,2,3,4,5,6]],"areaCode":100},{"arcs":[[7,8,9,10,11,-4]],"areaCode":101},{"arcs":[[12,13,-9,14]],"areaCode":102},{"arcs":[[15,16,17,18,19,20,21]],"areaCode":105},{"arcs":[[22]],"areaCode":106},{"arcs":[[23,24,-18,25]],"areaCode":106},{"arcs":[[26]],"areaCode":107},{"arcs":[[27]],"areaCode":107},{"arcs":[[-24,28,29]],"areaCode":107},{"arcs":[[-25,-30,30,-19]],"areaCode":110},{"arcs":[[-21,31,32]],"areaCode":110},{"arcs":[[33]],"areaCode":115},{"arcs":[[-5,-12,34,35,36]],"areaCode":115},{"arcs":[[-11,37,38,-35]],"areaCode":116},{"arcs":[[-39,39,-22,-33,40,-36]],"areaCode":117},{"arcs":[[41]],"areaCode":119},{"arcs":[[42,43,44,45]],"areaCode":120},{"arcs":[[46,47,48,-2,49,-44]],"areaCode":121},{"arcs":[[50,51,-15,-8,-3,-49]],"areaCode":122},{"arcs":[[52,53,54,-46,55,56,57]],"areaCode":125},{"arcs":[[58,59,60,61,-47,-43,-55]],"areaCode":126},{"arcs":[[62,63,64,65,-51,-48,-62]],"areaCode":127},{"arcs":[[66]],"areaCode":130},{"arcs":[[67]],"areaCode":130},{"arcs":[[-57,68,69,70]],"areaCode":130},{"arcs":[[71]],"areaCode":131},{"arcs":[[-56,-45,-50,-7,72,-69]],"areaCode":131},{"arcs":[[73,-58,-71,74]],"areaCode":135},{"arcs":[[75,76,-53,-74]],"areaCode":136},{"arcs":[[77]],"areaCode":139},{"arcs":[[78]],"areaCode":139},{"arcs":[[79]],"areaCode":139},{"arcs":[[80]],"areaCode":139},{"arcs":[[81,82,83,84,85,86]],"areaCode":140},{"arcs":[[-86,87,-60,88,89]],"areaCode":141},{"arcs":[[-89,-59,-54,-77,90]],"areaCode":142},{"arcs":[[-10,-14,91,92,-16,-40,-38]],"areaCode":145},{"arcs":[[93]],"areaCode":146},{"arcs":[[94]],"areaCode":146},{"arcs":[[95]],"areaCode":146},{"arcs":[[96]],"areaCode":146},{"arcs":[[-66,97,98,-92,-13,-52]],"areaCode":146},{"arcs":[[99,100,101,-98,-65]],"areaCode":150},{"arcs":[[102,103,104,-101,105]],"areaCode":151},{"arcs":[[106,-104,107]],"areaCode":152},{"arcs":[[-85,108,109,-63,-61,-88]],"areaCode":155},{"arcs":[[110,111,112,-106,-100,-64,-110]],"areaCode":156},{"arcs":[[113,-108,-103,-113]],"areaCode":157},{"arcs":[[114,115,116,117,118,119,-83]],"areaCode":160},{"arcs":[[120]],"areaCode":161},{"arcs":[[121]],"areaCode":161},{"arcs":[[122]],"areaCode":161},{"arcs":[[123]],"areaCode":161},{"arcs":[[124,125,126,127,128,-111,-109,-84,-120,129,-118,130,-116,131]],"areaCode":161},{"arcs":[[132,133,134,135,136,137,138,-132,-115,-82,139]],"areaCode":165},{"arcs":[[140]],"areaCode":166},{"arcs":[[141]],"areaCode":166},{"arcs":[[142,143,-127,144,-125,-139,145,-137,146,-135]],"areaCode":166},{"arcs":[[-133,147]],"areaCode":166},{"arcs":[[148]],"areaCode":167},{"arcs":[[149]],"areaCode":167},{"arcs":[[150]],"areaCode":167},{"arcs":[[151]],"areaCode":167},{"arcs":[[-128,-144,152]],"areaCode":167},{"arcs":[[153]],"areaCode":167},{"arcs":[[154]],"areaCode":167},{"arcs":[[155]],"areaCode":167},{"arcs":[[156]],"areaCode":167},{"arcs":[[157]],"areaCode":167},{"arcs":[[158]],"areaCode":167},{"arcs":[[159]],"areaCode":200},{"arcs":[[160]],"areaCode":200},{"arcs":[[161]],"areaCode":200},{"arcs":[[162]],"areaCode":200},{"arcs":[[163,164,165]],"areaCode":200},{"arcs":[[166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,-165]],"areaCode":201},{"arcs":[[835]],"areaCode":202},{"arcs":[[836]],"areaCode":202},{"arcs":[[837]],"areaCode":202},{"arcs":[[838]],"areaCode":202},{"arcs":[[839,840,841,842,-167,-164,843,844]],"areaCode":202},{"arcs":[[845]],"areaCode":203},{"arcs":[[846]],"areaCode":203},{"arcs":[[-845,847]],"areaCode":203},{"arcs":[[848]],"areaCode":203},{"arcs":[[849]],"areaCode":210},{"arcs":[[850]],"areaCode":210},{"arcs":[[851,852,853,-841,854]],"areaCode":210},{"arcs":[[855]],"areaCode":211},{"arcs":[[856,857,858,-852]],"areaCode":211},{"arcs":[[-854,859,860,861,-842]],"areaCode":212},{"arcs":[[-860,-853,-859,862,863]],"areaCode":213},{"arcs":[[864]],"areaCode":220},{"arcs":[[865]],"areaCode":220},{"arcs":[[866,867,868,869,870,-863,-858]],"areaCode":220},{"arcs":[[871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556]],"areaCode":221},{"arcs":[[1557]],"areaCode":222},{"arcs":[[1558]],"areaCode":222},{"arcs":[[1559]],"areaCode":222},{"arcs":[[1560]],"areaCode":222},{"arcs":[[1561]],"areaCode":222},{"arcs":[[1563]],"areaCode":222},{"arcs":[[1564]],"areaCode":222},{"arcs":[[1565]],"areaCode":222},{"arcs":[[1566]],"areaCode":222},{"arcs":[[1567]],"areaCode":222},{"arcs":[[1568]],"areaCode":222},{"arcs":[[1569]],"areaCode":222},{"arcs":[[1570]],"areaCode":222},{"arcs":[[1571]],"areaCode":222},{"arcs":[[1572]],"areaCode":222},{"arcs":[[1573]],"areaCode":222},{"arcs":[[1574]],"areaCode":222},{"arcs":[[1576]],"areaCode":222},{"arcs":[[1577]],"areaCode":222},{"arcs":[[1578]],"areaCode":222},{"arcs":[[1579]],"areaCode":222},{"arcs":[[1580]],"areaCode":222},{"arcs":[[1581,-1286,1582,-1284,1583,1584,1585,-1280,1586,1587,1588,1589,1590,1591,-1273,1592,-1271,1593,-1269,1594,1595,-1266,1596,1597,1598,1599,-1261,1600,1601,-1258,1602,1603,1604,-1254,1605,-1252,1606,1607,-1249,1608,-1247,1609,-1245,1610,-1243,1611,1612,1613,1614,1615,-1237,1616,1617,1618,-1233,1619,1620,-1230,1621,1622,1623,-1226,1624,1625,1626,1627,1628,-1220,1629,-1218,1630,1631,1632,1633,1634,1635,1636,-1210,1637,1638,1639,-1206,1640,1641,-1203,1642,1643,1644,-1199,1645,-1197,1646,1647,-1194,1648,1649,1650,1651,1652,1653,1654,1655,-1185,1656,1657,1658,-1181,1659,-1179,1660,1661,-1176,1662,1663,-1173,1664,1665,1666,1667,1668,1669,-1166,1670,1671,1672,-1162,1673,1674,1675,1676,-1157,1677,1678,1679,1680,1681,1682,1683,-1149,1684,1685,1686,-1145,1687,-1143,1688,1689,1690,1691,1692,-1137,1693,1694,1695,-1133,1696,1697,-1130,1698,-1128,1699,1700,-1125,1701,1702,-1122,1703,1704,1705,1706,-1117,1707,-1115,1708,-1113,1709,-1111,1710,1711,1712,1713,1714,1715,-1104,1716,1717,1718,-1100,1719,-1098,1720,1721,-1095,1722,-1093,1723,1724,1725,1726,1727,1728,-1086,1729,-1084,1730,1731,1732,1733,1734,-1078,1735,1736,1737,1738,1739,-1072,1740,1741,1742,-1068,1743,1744,1745,-1064,1746,-1062,1747,1748,1749,1750,-1057,1751,-1055,1752,-1053,1753,1754,1755,-1049,1756,1757,1758,-1045,1759,-1043,1760,1761,1762,-1039,1763,1764,-1036,1765,-1034,1766,-1032,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,-1021,1777,1778,-1018,1779,1780,1781,-1014,1782,1783,1784,1785,1786,1787,1788,-1006,1789,1790,-1003,1791,1792,-1000,1793,1794,1795,-996,1796,1797,1798,-992,1799,1800,1801,1802,1803,1804,1805,-984,1806,1807,-981,1808,-979,1809,1810,1811,-975,1812,1813,1814,1815,1816,1817,1818,-967,1819,1820,1821,1822,-962,1823,1824,-959,1825,1826,1827,1828,1829,1830,-952,1831,-950,1832,1833,1834,-946,1835,-944,1836,-942,1837,1838,-939,1839,-937,1840,1841,1842,1843,1844,-931,1845,1846,-928,1847,-926,1848,1849,1850,1851,1852,1853,1854,1855,-917,1856,-915,1857,1858,1859,-911,1860,1861,1862,1863,1864,-905,1865,-903,1866,1867,-900,1868,1869,1870,-896,1871,-894,1872,1873,1874,1875,1876,1877,-887,1878,1879,1880,-883,1881,-881,1882,1883,1884,1885,1886,-875,1887,-873,1888,-1557,1889,1890,-1554,1891,-1552,1892,-1550,1893,1894,-1547,1895,-1545,1896,1897,-1542,1898,1899,-1539,1900,1901,1902,1903,-1534,1904,-1532,1905,-1530,1906,1907,-1527,1908,-1525,1909,1910,1911,1912,-1520,1913,1914,1915,1916,1917,-1514,1918,1919,1920,-1510,1921,-1508,1922,-1506,1923,1924,-1503,1925,1926,-1500,1927,-1498,1928,1929,1930,1931,1932,1933,-1491,1934,-1489,1935,1936,-1486,1937,1938,-1483,1939,1940,-1480,1941,1942,1943,-1476,1944,-1474,1945,-1472,1946,-1470,1947,-1468,1948,1949,1950,-1464,1951,-1462,1952,1953,1954,-1458,1955,-1456,1956,-868],[1575]],"areaCode":222},{"arcs":[[1957]],"areaCode":230},{"arcs":[[1958]],"areaCode":230},{"arcs":[[1959,-834,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066]],"areaCode":230},{"arcs":[[2067]],"areaCode":231},{"arcs":[[2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,-2066]],"areaCode":231},{"arcs":[[-843,-862,2660,-2069,-2065,2661,2662,2663,2664,2665,2666,2667,2668,2669,-2055,2670,2671,2672,2673,2674,2675,-2048,2676,-2046,2677,2678,-2043,2679,2680,-2040,2681,-2038,2682,2683,-2035,2684,-2033,2685,2686,-2030,2687,2688,-2027,2689,2690,2691,-2023,2692,-2021,2693,2694,2695,-2017,2696,2697,-2014,2698,-2012,2699,2700,2701,-2008,2702,-2006,2703,-2004,2704,2705,2706,2707,-1999,2708,2709,-1996,2710,-1994,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,-1980,2724,2725,-1977,2726,2727,-1974,2728,-1972,2729,2730,2731,-1968,2732,2733,2734,2735,2736,2737,2738,2739,-832,2740,2741,2742,2743,2744,-826,2745,-824,2746,2747,2748,2749,2750,2751,-817,2752,-815,2753,2754,-812,2755,2756,2757,2758,2759,-806,2760,2761,2762,2763,2764,-800,2765,2766,-797,2767,2768,2769,2770,-792,2771,-790,2772,2773,-787,2774,-785,2775,2776,2777,2778,-780,2779,2780,-777,2781,2782,2783,2784,-772,2785,-770,2786,2787,2788,2789,2790,-764,2791,-762,2792,2793,2794,-758,2795,-756,2796,2797,-753,2798,-751,2799,2800,2801,2802,-746,2803,-744,2804,2805,2806,-740,2807,2808,-737,2809,2810,2811,2812,-732,2813,2814,-729,2815,2816,2817,-725,2818,-723,2819,2820,2821,-719,2822,2823,2824,2825,-714,2826,2827,-711,2828,2829,2830,2831,-706,2832,2833,-703,2834,-701,2835,2836,2837,2838,2839,2840,2841,-693,2842,2843,-690,2844,-688,2845,-686,2846,2847,-683,2848,2849,-680,2850,-678,2851,-676,2852,2853,-673,2854,2855,2856,2857,-668,2858,2859,-665,2860,2861,-662,2862,2863,-659,2864,2865,2866,-655,2867,-653,2868,-651,2869,2870,2871,-647,2872,2873,-644,2874,2875,2876,2877,2878,2879,-637,2880,2881,-634,2882,-632,2883,2884,2885,-628,2886,-626,2887,2888,2889,2890,2891,2892,-619,2893,2894,2895,2896,2897,2898,2899,2900,-610,2901,-608,2902,-606,2903,2904,2905,-602,2906,2907,2908,2909,2910,-596,2911,2912,-593,2913,2914,2915,-589,2916,-587,2917,-585,2918,2919,-582,2920,2921,2922,2923,2924,2925,2926,2927,2928,-572,2929,-570,2930,2931,2932,2933,2934,-564,2935,-562,2936,2937,2938,-558,2939,-556,2940,-554,2941,2942,-551,2943,-549,2944,2945,2946,2947,2948,2949,2950,-541,2951,2952,2953,2954,-536,2955,2956,-533,2957,2958,-530,2959,2960,2961,2962,2963,-524,2964,2965,2966,2967,2968,2969,2970,2971,-515,2972,2973,2974,2975,2976,2977,-508,2978,-506,2979,2980,-503,2981,2982,2983,-499,2984,-497,2985,-495,2986,2987,-492,2988,2989,-489,2990,2991,2992,2993,-484,2994,2995,2996,-480,2997,-478,2998,2999,-475,3000,3001,3002,3003,-470,3004,3005,3006,3007,3008,-464,3009,3010,3011,-460,3012,-458,3013,-456,3014,3015,-453,3016,3017,3018,3019,3020,3021,-446,3022,3023,-443,3024,-441,3025,-439,3026,3027,3028,3029,3030,3031,-432,3032,-430,3033,-428,3034,3035,-425,3036,3037,3038,3039,3040,3041,-418,3042,-416,3043,-414,3044,-412,3045,-410,3046,3047,-407,3048,-405,3049,3050,-402,3051,3052,3053,-398,3054,3055,3056,-394,3057,3058,3059,-390,3060,3061,3062,-386,3063,3064,3065,-382,3066,3067,-379,3068,3069,3070,-375,3071,-373,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,-362,3082,-360,3083,3084,3085,3086,3087,-354,3088,3089,3090,3091,3092,-348,3093,3094,3095,3096,3097,3098,-341,3099,-339,3100,3101,3102,3103,-334,-333,3104,-331,3105,3106,3107,3108,3109,3110,3111,-323,3112,3113,-320,3114,3115,3116,3117,-315,3118,-313,3119,-311,3120,-309,3121,-307,3122,3123,-304,3124,-302,3125,3126,3127,3128,3129,3130,-295,3131,3132,3133,3134,3135,3136,3137,-287,3138,-285,3139,3140,-282,3141,-280,3142,3143,3144,-276,3145,3146,-273,3147,-271,3148,3149,-268,3150,3151,-265,3152,3153,-262,3154,3155,3156,3157,-257,3158,3159,3160,-253,3161,-251,3162,3163,-248,3164,-246,3165,3166,-243,3167,3168,-240,3169,3170,3171,-236,3172,-234,3173,-232,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,-215,3190,3191,3192,-211,3193,3194,-208,3195,-206,3196,-204,3197,3198,3199,-200,3200,3201,3202,-196,3203,-194,3204,3205,-191,3206,-189,3207,3208,-186,3209,-184,3210,3211,-181,3212,-179,3213,3214,-176,3215,3216,3217,-172,3218,-170,3219,-168]],"areaCode":232},{"arcs":[[-861,-864,-871,3220,-2585,3221,-2583,3222,-2581,3223,-2579,3224,3225,-2576,3226,-2574,3227,-2572,3228,-2570,3229,-2568,3230,-2566,3231,-2564,3232,-2562,3233,-2560,3234,-2558,3235,-2556,3236,-2554,3237,-2552,3238,-2550,3239,-2548,3240,-2546,3241,3242,-2543,3243,-2541,3244,-2539,3245,-2537,3246,-2535,3247,-2533,3248,-2531,3249,-2529,3250,-2527,3251,-2525,3252,-2523,3253,-2521,3254,-2519,3255,3256,-2516,3257,-2514,3258,-2512,3259,-2510,3260,-2508,3261,-2506,3262,-2504,3263,-2502,3264,-2500,3265,-2498,3266,-2496,3267,-2494,3268,-2492,3269,3270,-2489,3271,-2487,3272,-2485,3273,-2483,3274,-2481,3275,-2479,3276,-2477,3277,-2475,3278,-2473,3279,-2471,3280,-2469,3281,-2467,3282,-2465,3283,-2463,3284,-2461,3285,-2459,3286,-2457,3287,-2455,3288,-2453,3289,-2451,3290,-2449,3291,-2447,3292,-2445,3293,3294,-2442,3295,-2440,3296,-2438,3297,3298,-2435,3299,-2433,3300,-2431,3301,-2429,3302,-2427,3303,-2425,3304,-2423,3305,-2421,3306,3307,-2418,-2417,3308,3309,-2414,3310,-2412,3311,-2410,3312,-2408,3313,-2406,3314,-2404,3315,-2402,3316,-2400,3317,-2398,3318,-2396,3319,-2394,3320,-2392,3321,-2390,3322,3323,-2387,3324,-2385,3325,-2383,3326,-2381,3327,-2379,3328,-2377,3329,-2375,3330,3331,-2372,3332,-2370,3333,-2368,3334,-2366,3335,-2364,3336,-2362,3337,3338,-2359,3339,-2357,3340,3341,-2354,3342,-2352,3343,-2350,3344,-2348,3345,-2346,3346,-2344,3347,-2342,3348,-2340,3349,-2338,3350,-2336,3351,-2334,3352,-2332,3353,-2330,3354,-2328,3355,3356,-2325,3357,-2323,3358,-2321,3359,-2319,3360,-2317,3361,-2315,3362,-2313,3363,-2311,3364,-2309,3365,-2307,3366,3367,-2304,3368,-2302,3369,-2300,3370,-2298,3371,-2296,3372,-2294,3373,-2292,3374,-2290,3375,-2288,3376,-2286,3377,-2284,3378,-2282,3379,-2280,3380,-2278,3381,-2276,3382,-2274,3383,-2272,3384,-2270,3385,-2268,3386,-2266,3387,-2264,3388,-2262,3389,-2260,3390,-2258,3391,-2256,3392,-2254,3393,-2252,3394,-2250,3395,-2248,3396,-2246,3397,-2244,3398,-2242,3399,-2240,3400,-2238,3401,-2236,3402,-2234,-2233,3403,3404,-2230,3405,-2228,3406,-2226,3407,-2224,3408,-2222,3409,-2220,3410,-2218,3411,-2216,3412,-2214,3413,-2212,3414,-2210,3415,-2208,3416,-2206,3417,-2204,3418,-2202,3419,-2200,3420,-2198,3421,-2196,3422,-2194,3423,-2192,3424,-2190,3425,-2188,3426,-2186,3427,-2184,3428,-2182,3429,-2180,3430,-2178,3431,-2176,3432,3433,-2173,3434,3435,-2170,3436,-2168,3437,-2166,3438,-2164,3439,-2162,3440,-2160,3441,-2158,3442,-2156,3443,-2154,3444,-2152,3445,-2150,3446,-2148,3447,-2146,3448,3449,-2143,3450,-2141,3451,-2139,3452,-2137,3453,-2135,3454,-2133,3455,-2131,3456,-2129,3457,-2127,3458,-2125,3459,-2123,3460,-2121,3461,-2119,3462,-2117,3463,-2115,3464,-2113,3465,-2111,3466,-2109,3467,-2107,3468,-2105,3469,-2103,3470,-2101,3471,-2099,3472,-2097,3473,-2095,3474,-2093,3475,-2091,3476,-2089,3477,-2087,3478,-2085,3479,-2083,3480,-2081,3481,-2079,3482,3483,-2076,3484,-2074,3485,-2072,3486,-2070,-2661]],"areaCode":233},{"arcs":[[3487]],"areaCode":240},{"arcs":[[-2655,3488,-2653,3489,-2651,3490,-2649,3491,-2647,3492,3493,-2644,3494,-2642,3495,-2640,3496,-2638,3497,3498,3499,3500,-2659,3501,-2657,3502]],"areaCode":240},{"arcs":[[3503]],"areaCode":240},{"arcs":[[3504,-2623,3505,-2621,3506,-2619,3507,-2617,3508,-2615,3509,-2613,3510,-2611,3511,-2609,3512,-2607,3513,-2605,3514,-2603,3515,-2601,3516,-2599,3517,-2597,3518,-2595,3519,-2593,3520,-2591,3521,3522,-2588,3523,-2586,-3221,-870,3524,-3498,-2637,3525,-2635,3526,-2633,3527,3528,-2630,3529,-2628,3530,3531,-2625]],"areaCode":241},{"arcs":[[-869,-1957,3532,-1454,3533,-1452,3534,3535,-1449,3536,3537,3538,-1445,3539,3540,-1442,3541,3542,-1439,3543,3544,3545,3546,3547,3548,-1432,3549,-1430,3550,3551,-1427,3552,3553,-1424,3554,-1422,3555,-1420,3556,3557,3558,3559,-1415,3560,3561,-1412,3562,3563,3564,3565,-1407,3566,3567,3568,3569,3570,-1401,3571,3572,3573,3574,3575,3576,-1394,3577,3578,-1391,3579,-1389,3580,-1387,3581,-1385,3582,-1383,3583,3584,-1380,3585,-1378,3586,3587,3588,3589,3590,3591,-1371,3592,3593,3594,3595,3596,3597,3598,3599,3600,-1361,3601,3602,3603,3604,-1356,3605,-1354,3606,3607,3608,-1350,3609,-1348,3610,3611,3612,-1344,3613,-1342,3614,3615,3616,-1338,3617,-1336,3618,-1334,3619,-1332,3620,3621,3622,3623,3624,3625,-1325,3626,3627,3628,3629,-1320,3630,3631,-1317,3632,3633,3634,3635,3636,-1311,3637,3638,3639,3640,3641,-1305,3642,3643,3644,-1301,3645,3646,3647,-1297,3648,3649,-1294,3650,3651,-1291,3652,3653,-3499,-3525]],"areaCode":242},{"arcs":[[-1290,3654,3655,3656,-3653]],"areaCode":243},{"arcs":[[3657,3658,3659,3660,-3655,-1289]],"areaCode":250},{"arcs":[[3662]],"areaCode":251},{"arcs":[[3663,3664,-3658,-1288]],"areaCode":251},{"arcs":[[-3661,3665,3666,3667,3668,-3656]],"areaCode":252},{"arcs":[[3669]],"areaCode":300},{"arcs":[[3671,3672,3673,3674,-3659,-3665],[3670]],"areaCode":300},{"arcs":[[-3673,3675,3676,3677,3678,3679,3680]],"areaCode":301},{"arcs":[[-3660,-3675,3681,3682,3683,-3666]],"areaCode":310},{"arcs":[[-3674,-3681,3684,3685,-3682]],"areaCode":311},{"arcs":[[-3667,-3684,3686,3687,3688,3689]],"areaCode":320},{"arcs":[[-3683,-3686,3690,3691,3692,-3687]],"areaCode":321},{"arcs":[[-3685,-3680,3693,3694,-3691]],"areaCode":330},{"arcs":[[3695,3696,3697,3698,3699,-3694,-3679]],"areaCode":331},{"arcs":[[-3700,3700,3701,3702,3703,-3692,-3695]],"areaCode":332},{"arcs":[[3704,3705,3706,-3677]],"areaCode":340},{"arcs":[[3707]],"areaCode":341},{"arcs":[[3708]],"areaCode":341},{"arcs":[[-3707,3709,3710,3711,-3696,-3678]],"areaCode":341},{"arcs":[[3712]],"areaCode":342},{"arcs":[[-3710,-3706,3713]],"areaCode":342},{"arcs":[[3714]],"areaCode":350},{"arcs":[[3715]],"areaCode":350},{"arcs":[[3716]],"areaCode":350},{"arcs":[[3717]],"areaCode":350},{"arcs":[[3718]],"areaCode":350},{"arcs":[[3719]],"areaCode":350},{"arcs":[[3720]],"areaCode":350},{"arcs":[[3721]],"areaCode":350},{"arcs":[[3722]],"areaCode":350},{"arcs":[[3723]],"areaCode":350},{"arcs":[[3724]],"areaCode":350},{"arcs":[[3725]],"areaCode":350},{"arcs":[[-3712,3726,3727,3728,-3697]],"areaCode":350},{"arcs":[[-3729,3729,3730,3731,-3698]],"areaCode":351},{"arcs":[[-3699,-3732,3732,3733,-3701]],"areaCode":352},{"arcs":[[3734]],"areaCode":354},{"arcs":[[3735]],"areaCode":354},{"arcs":[[3736]],"areaCode":354},{"arcs":[[3737]],"areaCode":354},{"arcs":[[3738]],"areaCode":355},{"arcs":[[3739]],"areaCode":356},{"arcs":[[3740]],"areaCode":356},{"arcs":[[3741]],"areaCode":356},{"arcs":[[3742]],"areaCode":356},{"arcs":[[3743]],"areaCode":356},{"arcs":[[3744]],"areaCode":356},{"arcs":[[3745]],"areaCode":357},{"arcs":[[3746]],"areaCode":357},{"arcs":[[3747]],"areaCode":358},{"arcs":[[3748]],"areaCode":358},{"arcs":[[3749]],"areaCode":358},{"arcs":[[3750]],"areaCode":358},{"arcs":[[3751]],"areaCode":359},{"arcs":[[3752]],"areaCode":359},{"arcs":[[3753]],"areaCode":359},{"arcs":[[3754]],"areaCode":359},{"arcs":[[3755]],"areaCode":359},{"arcs":[[3756]],"areaCode":359},{"arcs":[[3757]],"areaCode":359},{"arcs":[[3758]],"areaCode":359},{"arcs":[[3759]],"areaCode":359},{"arcs":[[3760]],"areaCode":359},{"arcs":[[3761]],"areaCode":359},{"arcs":[[3762]],"areaCode":359},{"arcs":[[3763]],"areaCode":359},{"arcs":[[3764]],"areaCode":359},{"arcs":[[3765]],"areaCode":359},{"arcs":[[3766]],"areaCode":359},{"arcs":[[3767]],"areaCode":359},{"arcs":[[3768]],"areaCode":359},{"arcs":[[3769]],"areaCode":359},{"arcs":[[3770]],"areaCode":359},{"arcs":[[3771]],"areaCode":359},{"arcs":[[3772]],"areaCode":359},{"arcs":[[3773]],"areaCode":359},{"arcs":[[3774]],"areaCode":360},{"arcs":[[3775]],"areaCode":360},{"arcs":[[3776]],"areaCode":360},{"arcs":[[3777]],"areaCode":360},{"arcs":[[3778]],"areaCode":360},{"arcs":[[3779]],"areaCode":360},{"arcs":[[3780]],"areaCode":360},{"arcs":[[3781]],"areaCode":360},{"arcs":[[3782]],"areaCode":360},{"arcs":[[3783]],"areaCode":360},{"arcs":[[3784]],"areaCode":360},{"arcs":[[3785]],"areaCode":360},{"arcs":[[-3728,3786,3787,-3730]],"areaCode":360},{"arcs":[[3788]],"areaCode":360},{"arcs":[[-3731,-3788,3789,3790,3791,3792,-3733]],"areaCode":361},{"arcs":[[3793]],"areaCode":370},{"arcs":[[3795]],"areaCode":370},{"arcs":[[3796,3797,3798,3799],[3794]],"areaCode":370},{"arcs":[[-3668,-3690,3800,-3800,3801,3802]],"areaCode":371},{"arcs":[[3803]],"areaCode":372},{"arcs":[[-3654,-3657,-3669,-3803,3804,-3500]],"areaCode":372},{"arcs":[[3806],[3805]],"areaCode":375},{"arcs":[[3807]],"areaCode":375},{"arcs":[[-3798,3808,3809,3810,3811]],"areaCode":380},{"arcs":[[3812,-3811,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863]],"areaCode":381},{"arcs":[[3865]],"areaCode":390},{"arcs":[[3866]],"areaCode":390},{"arcs":[[3867,-3864,3868,3869]],"areaCode":390},{"arcs":[[3870]],"areaCode":390},{"arcs":[[3871]],"areaCode":390},{"arcs":[[3872]],"areaCode":391},{"arcs":[[-3863,3873,-3861,3874,-3859,3875,3876,3877,-3855,3878,-3853,3879,-3851,3880,-3849,3881,-3847,3882,-3845,3883,-3843,3884,-3841,3885,-3839,3886,-3837,3887,-3835,3888,3889,3890,-3831,3891,-3829,3892,-3827,3893,-3825,3894,-3823,3895,3896,-3820,3897,3898,-3817,3899,-3815,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,-3869]],"areaCode":391},{"arcs":[[4650]],"areaCode":400},{"arcs":[[-4649,4651,4652,4653,-4645,4654,-4643,4655,-4641,4656,-4639,4657,-4637,4658,-4635,4659,-4633,4660,-4631,4661,4662,-4628,4663,-4626,4664,-4624,4665,-4622,4666,4667,-4619,4668,-4617,4669,-4615,4670,4671,-4612,4672,-4610,4673,-4608,4674,-4606,4675,-4604,4676,4677,-4601,4678,-4599,4679,4680,-4596,4681,4682,-4593,4683,-4591,4684,-4589,4685,-4587,4686,-4585,4687,-4583,4688,4689,-4580,4690,4691,-4577,4692,-4575,4693,-4573,4694,-4571,4695,-4569,4696,4697,4698,4699,-4564,4700,-4562,4701,-4560,4702,4703,-4557,4704,-4555,4705,4706,4707,-4551,4708,-4549,4709,4710,-4546,4711,4712,4713,4714,4715,4716,4717,4718,-4537,4719,-4535,4720,-4533,4721,-4531,4722,-4529,4723,-4527,4724,-4525,4725,4726,-4522,4727,-4520,4728,-4518,4729,-4516,4730,-4514,4731,-4512,4732,-4510,4733,-4508,4734,-4506,4735,-4504,4736,-4502,4737,-4500,4738,-4498,4739,-4496,4740,4741,-4493,4742,-4491,4743,-4489,4744,-4487,4745,-4485,4746,-4483,4747,-4481,4748,-4479,4749,-4477,4750,-4475,4751,4752,-4472,4753,-4470,4754,-4468,4755,-4466,4756,-4464,4757,4758,-4461,4759,-4459,4760,-4457,4761,4762,-4454,4763,-4452,4764,-4450,4765,-4448,4766,4767,-4445,4768,4769,4770,-4441,4771,-4439,4772,-4437,4773,-4435,4774,-4433,4775,4776,-4430,4777,-4428,4778,4779,-4425,4780,-4423,4781,-4421,4782,-4419,4783,-4417,4784,-4415,4785,-4413,4786,-4411,4787,4788,-4408,4789,4790,-4405,4791,-4403,4792,4793,-4400,4794,4795,4796,-4396,4797,4798,4799,-4392,4800,-4390,4801,-4388,4802,-4386,4803,-4384,4804,4805,-4381,4806,-4379,4807,-4377,4808,-4375,4809,-4373,4810,-4371,4811,-4369,4812,-4367,4813,-4365,4814,-4363,4815,-4361,-4360,4816,-4358,4817,-4356,4818,-4354,4819,-4352,4820,-4350,4821,-4348,4822,4823,-4345,4824,-4343,4825,-4341,4826,-4339,4827,-4337,4828,-4335,4829,-4333,4830,4831,4832,-4329,4833,4834,4835,4836,4837,-4323,4838,4839,-4320,4840,-4318,4841,-4316,4842,-4314,4843,-4312,4844,4845,4846,4847,4848]],"areaCode":400},{"arcs":[[4849]],"areaCode":401},{"arcs":[[4850,4851,4852,4853,-4848]],"areaCode":401},{"arcs":[[-3703,4854,4855,4856,4857,4858]],"areaCode":411},{"arcs":[[-3734,-3793,4859,-4855,-3702]],"areaCode":412},{"arcs":[[-3689,4860,4861,-3809,-3797,-3801]],"areaCode":420},{"arcs":[[-3688,-3693,-3704,-4859,4862,4863,-4861]],"areaCode":421},{"arcs":[[-4858,4864,4865,4866,4867,4868,4869,-4863]],"areaCode":422},{"arcs":[[-4862,-4864,-4870,4870,4871,-4845,-4311,4872,4873,-4308,4874,4875,-4305,4876,4877,-4302,4878,-4300,4879,-4298,4880,-4296,4881,-4294,4882,4883,-4291,4884,-4289,4885,-4287,4886,-4285,4887,4888,4889,-4281,4890,-4279,4891,-4277,4892,-4275,4893,-4273,4894,-4271,4895,4896,-4268,4897,-4266,4898,-4264,4899,-4262,4900,4901,-4259,4902,-4257,4903,-4255,4904,-4253,4905,-4251,4906,-4249,4907,-4247,4908,-4245,4909,-4243,4910,-4241,4911,-4239,4912,-4237,4913,-4235,4914,-4233,4915,-4231,4916,-4229,4917,-4227,4918,4919,-4224,4920,-4222,4921,-4220,4922,-4218,4923,-4216,4924,-4214,4925,-4212,4926,-4210,4927,4928,4929,-4206,4930,-4204,4931,4932,4933,-4200,4934,4935,-4197,4936,-4195,4937,-4193,4938,-4191,4939,-4189,4940,-4187,4941,-4185,4942,-4183,4943,-4181,4944,-4179,4945,4946,4947,-4175,4948,-4173,4949,-4171,4950,-4169,4951,-4167,4952,-4165,4953,-4163,4954,-4161,4955,-4159,4956,4957,-4156,4958,4959,-4153,4960,4961,4962,4963,-4148,4964,4965,-4145,4966,4967,4968,-4141,4969,-4139,4970,4971,-4136,4972,-4134,4973,4974,4975,-4130,4976,-4128,4977,-4126,4978,-4124,4979,-4122,4980,-4120,4981,-4118,4982,-4116,4983,-4114,4984,-4112,4985,-4110,4986,-4108,4987,-4106,4988,-4104,4989,-4102,4990,4991,-4099,4992,-4097,4993,-4095,4994,-4093,4995,4996,4997,-4089,4998,-4087,4999,5000,-4084,5001,-4082,5002,-4080,5003,-4078,5004,-4076,5005,5006,5007,-4072,5008,-4070,5009,-4068,5010,5011,5012,5013,5014,-4062,5015,-4060,5016,-4058,5017,-4056,5018,5019,-4053,5020,-4051,5021,5022,5023,-4047,5024,-4045,5025,5026,-4042,5027,5028,-4039,5029,5030,-4036,5031,-4034,5032,-4032,5033,-4030,5034,-4028,5035,-4026,5036,-4024,5037,-4022,5038,-4020,5039,-4018,5040,-4016,5041,5042,5043,5044,5045,-4010,5046,-4008,5047,-4006,5048,-4004,5049,-4002,5050,-4000,5051,5052,-3997,5053,5054,5055,-3993,5056,-3991,5057,5058,-3988,5059,-3986,5060,-3984,5061,-3982,5062,-3980,5063,-3978,5064,-3976,5065,-3974,5066,5067,-3971,5068,-3969,5069,-3967,5070,-3965,5071,-3963,5072,5073,-3960,5074,-3958,5075,-3956,5076,-3954,5077,-3952,5078,-3950,5079,5080,-3947,5081,5082,5083,-3943,5084,-3941,5085,-3939,5086,-3937,5087,-3935,5088,5089,5090,-3931,5091,5092,5093,-3927,5094,-3925,5095,-3923,5096,-3921,5097,-3919,5098,-3917,5099,-3915,5100,5101,5102,-3911,5103,-3909,5104,5105,-3906,5106,5107,-3903,5108,-3901,-3814,-3810]],"areaCode":430},{"arcs":[[5109,5110,-4871,-4869]],"areaCode":431},{"arcs":[[-4872,-5111,5111,5112,5113,-4846]],"areaCode":432},{"arcs":[[5114]],"areaCode":440},{"arcs":[[5115]],"areaCode":440},{"arcs":[[5116,5117,-3791]],"areaCode":440},{"arcs":[[5118]],"areaCode":441},{"arcs":[[-3792,-5118,5119,5120,-4856,-4860]],"areaCode":441},{"arcs":[[5121,5122]],"areaCode":442},{"arcs":[[5123]],"areaCode":442},{"arcs":[[5124]],"areaCode":442},{"arcs":[[-5121,5125,5126,-4865,-4857]],"areaCode":442},{"arcs":[[-5122,5127]],"areaCode":443},{"arcs":[[-5127,5128,5129,-4866]],"areaCode":443},{"arcs":[[5130]],"areaCode":450},{"arcs":[[5131]],"areaCode":450},{"arcs":[[5132]],"areaCode":450},{"arcs":[[5133]],"areaCode":450},{"arcs":[[5134]],"areaCode":450},{"arcs":[[-5130,5135,5136,-4867]],"areaCode":450},{"arcs":[[5137]],"areaCode":451},{"arcs":[[5138]],"areaCode":451},{"arcs":[[5139]],"areaCode":451},{"arcs":[[5140]],"areaCode":451},{"arcs":[[5141]],"areaCode":451},{"arcs":[[5142]],"areaCode":451},{"arcs":[[5143]],"areaCode":451},{"arcs":[[5144]],"areaCode":451},{"arcs":[[5145]],"areaCode":451},{"arcs":[[5146]],"areaCode":451},{"arcs":[[5147]],"areaCode":451},{"arcs":[[5148]],"areaCode":451},{"arcs":[[5149]],"areaCode":451},{"arcs":[[-4868,-5137,5150,5151,-5112,-5110]],"areaCode":451},{"arcs":[[5152]],"areaCode":460},{"arcs":[[5153]],"areaCode":460},{"arcs":[[-5152,5154,5155,5156,5157,-5113]],"areaCode":460},{"arcs":[[-5156,5158,5159,5160,5161,5162]],"areaCode":461},{"arcs":[[5163]],"areaCode":462},{"arcs":[[5164]],"areaCode":462},{"arcs":[[5165]],"areaCode":462},{"arcs":[[5166]],"areaCode":462},{"arcs":[[5167]],"areaCode":462},{"arcs":[[5168]],"areaCode":462},{"arcs":[[5169]],"areaCode":462},{"arcs":[[5170]],"areaCode":462},{"arcs":[[5171]],"areaCode":462},{"arcs":[[5172]],"areaCode":462},{"arcs":[[5173]],"areaCode":462},{"arcs":[[5174]],"areaCode":462},{"arcs":[[5175]],"areaCode":462},{"arcs":[[5176]],"areaCode":462},{"arcs":[[5177]],"areaCode":462},{"arcs":[[5178]],"areaCode":462},{"arcs":[[5179]],"areaCode":462},{"arcs":[[5180]],"areaCode":462},{"arcs":[[5181]],"areaCode":462},{"arcs":[[5182]],"areaCode":462},{"arcs":[[5183]],"areaCode":462},{"arcs":[[5184]],"areaCode":462},{"arcs":[[5185]],"areaCode":462},{"arcs":[[5186,5187,5188,5189,5190,5191,-5160,5192]],"areaCode":462},{"arcs":[[-5114,-5158,5193,5194,-4851,-4847]],"areaCode":500},{"arcs":[[-5157,-5163,5195,-5194]],"areaCode":501},{"arcs":[[5196]],"areaCode":510},{"arcs":[[5197]],"areaCode":510},{"arcs":[[5198]],"areaCode":510},{"arcs":[[5199]],"areaCode":510},{"arcs":[[5200]],"areaCode":510},{"arcs":[[-4853,5201,5202,5203,5204]],"areaCode":510},{"arcs":[[-5195,-5196,-5162,5205,5206,5207,-5202,-4852]],"areaCode":511},{"arcs":[[5208]],"areaCode":520},{"arcs":[[5209]],"areaCode":520},{"arcs":[[5210]],"areaCode":520},{"arcs":[[5211]],"areaCode":520},{"arcs":[[5212]],"areaCode":520},{"arcs":[[-5207,5213,5214,5215,5216]],"areaCode":520},{"arcs":[[5217]],"areaCode":521},{"arcs":[[5218]],"areaCode":521},{"arcs":[[5219]],"areaCode":521},{"arcs":[[5220]],"areaCode":521},{"arcs":[[5221]],"areaCode":521},{"arcs":[[5222]],"areaCode":521},{"arcs":[[5223,5224,5225,-5215]],"areaCode":521},{"arcs":[[-5204,5226,5227,5228,5229]],"areaCode":530},{"arcs":[[5230]],"areaCode":531},{"arcs":[[5231]],"areaCode":531},{"arcs":[[5232]],"areaCode":531},{"arcs":[[5233]],"areaCode":531},{"arcs":[[5234]],"areaCode":531},{"arcs":[[5235]],"areaCode":531},{"arcs":[[5236]],"areaCode":531},{"arcs":[[5237]],"areaCode":531},{"arcs":[[5238]],"areaCode":531},{"arcs":[[5239]],"areaCode":531},{"arcs":[[5240]],"areaCode":531},{"arcs":[[5241]],"areaCode":531},{"arcs":[[5242]],"areaCode":531},{"arcs":[[5243]],"areaCode":531},{"arcs":[[5244,5245,-5227,-5203,-5208,-5217,5246]],"areaCode":531},{"arcs":[[5247]],"areaCode":532},{"arcs":[[5248]],"areaCode":532},{"arcs":[[5249]],"areaCode":532},{"arcs":[[5250]],"areaCode":532},{"arcs":[[5251]],"areaCode":532},{"arcs":[[5252]],"areaCode":532},{"arcs":[[5253]],"areaCode":532},{"arcs":[[5254]],"areaCode":532},{"arcs":[[5255]],"areaCode":532},{"arcs":[[5256]],"areaCode":532},{"arcs":[[5257]],"areaCode":532},{"arcs":[[5258]],"areaCode":532},{"arcs":[[5259]],"areaCode":532},{"arcs":[[5260]],"areaCode":532},{"arcs":[[5261]],"areaCode":532},{"arcs":[[5262]],"areaCode":532},{"arcs":[[5263]],"areaCode":532},{"arcs":[[-5246,5264,5265,5266,5267,-5228]],"areaCode":532},{"arcs":[[5268]],"areaCode":535},{"arcs":[[5269]],"areaCode":535},{"arcs":[[5270]],"areaCode":535},{"arcs":[[5271]],"areaCode":535},{"arcs":[[-5206,-5161,-5192,5272,-5190,5273,-5188,5274,5275,-5224,-5214]],"areaCode":540},{"arcs":[[5276]],"areaCode":550},{"arcs":[[5277]],"areaCode":550},{"arcs":[[5278]],"areaCode":550},{"arcs":[[5279]],"areaCode":550},{"arcs":[[5280]],"areaCode":550},{"arcs":[[5281]],"areaCode":550},{"arcs":[[5282]],"areaCode":550},{"arcs":[[5283]],"areaCode":550},{"arcs":[[5284]],"areaCode":550},{"arcs":[[5285]],"areaCode":550},{"arcs":[[5286]],"areaCode":550},{"arcs":[[5287]],"areaCode":550},{"arcs":[[5288]],"areaCode":550},{"arcs":[[-5276,5289,5290,-5225]],"areaCode":550},{"arcs":[[5291]],"areaCode":551},{"arcs":[[5292]],"areaCode":551},{"arcs":[[5293]],"areaCode":551},{"arcs":[[-5189,-5274]],"areaCode":551},{"arcs":[[-5273,-5191]],"areaCode":551},{"arcs":[[-5187,5295,-5290,-5275],[5294]],"areaCode":551},{"arcs":[[-5268,5296,5297,5298,-5229]],"areaCode":560},{"arcs":[[-5298,5299,5300,5301]],"areaCode":562},{"arcs":[[5302]],"areaCode":563},{"arcs":[[-5301,5303,5304,5305,5306]],"areaCode":563},{"arcs":[[5309]],"areaCode":570},{"arcs":[[5310]],"areaCode":570},{"arcs":[[5311]],"areaCode":570},{"arcs":[[-5306,5312,5313,5314]],"areaCode":570},{"arcs":[[5315]],"areaCode":571},{"arcs":[[5316]],"areaCode":571},{"arcs":[[5317]],"areaCode":571},{"arcs":[[5318]],"areaCode":571},{"arcs":[[-5308,5319,-5314,5320,5321,5322,5323,5324,5325]],"areaCode":571},{"arcs":[[5326]],"areaCode":575},{"arcs":[[5327]],"areaCode":575},{"arcs":[[5328]],"areaCode":575},{"arcs":[[5329]],"areaCode":575},{"arcs":[[5330]],"areaCode":575},{"arcs":[[5331]],"areaCode":575},{"arcs":[[5332]],"areaCode":575},{"arcs":[[5333]],"areaCode":575},{"arcs":[[5334]],"areaCode":575},{"arcs":[[-5297,-5267,5335,5336,-5304,-5300]],"areaCode":580},{"arcs":[[5337]],"areaCode":581},{"arcs":[[5338]],"areaCode":581},{"arcs":[[5339]],"areaCode":581},{"arcs":[[5340]],"areaCode":581},{"arcs":[[5341]],"areaCode":581},{"arcs":[[5342]],"areaCode":581},{"arcs":[[5343]],"areaCode":581},{"arcs":[[5344]],"areaCode":581},{"arcs":[[5345,5346]],"areaCode":581},{"arcs":[[5347]],"areaCode":581},{"arcs":[[5348]],"areaCode":581},{"arcs":[[5349]],"areaCode":581},{"arcs":[[5350]],"areaCode":581},{"arcs":[[5351]],"areaCode":581},{"arcs":[[5352]],"areaCode":581},{"arcs":[[5353]],"areaCode":581},{"arcs":[[5354,5355]],"areaCode":581},{"arcs":[[5356]],"areaCode":581},{"arcs":[[5357]],"areaCode":581},{"arcs":[[5358]],"areaCode":581},{"arcs":[[5359]],"areaCode":581},{"arcs":[[5360]],"areaCode":581},{"arcs":[[5361]],"areaCode":581},{"arcs":[[5362]],"areaCode":581},{"arcs":[[5363]],"areaCode":581},{"arcs":[[5364]],"areaCode":581},{"arcs":[[5365]],"areaCode":581},{"arcs":[[5366]],"areaCode":581},{"arcs":[[5367]],"areaCode":581},{"arcs":[[5368]],"areaCode":581},{"arcs":[[5369]],"areaCode":581},{"arcs":[[5370]],"areaCode":581},{"arcs":[[-5266,5371,5372,5373,-5336]],"areaCode":581},{"arcs":[[-5305,-5337,-5374,5374,5375,-5321,-5313]],"areaCode":590},{"arcs":[[5378]],"areaCode":591},{"arcs":[[5379]],"areaCode":591},{"arcs":[[5380]],"areaCode":591},{"arcs":[[5381]],"areaCode":591},{"arcs":[[5382]],"areaCode":591},{"arcs":[[5383]],"areaCode":591},{"arcs":[[5384]],"areaCode":591},{"arcs":[[5385]],"areaCode":591},{"arcs":[[5386]],"areaCode":591},{"arcs":[[5387]],"areaCode":591},{"arcs":[[5388]],"areaCode":591},{"arcs":[[5389]],"areaCode":591},{"arcs":[[5390]],"areaCode":591},{"arcs":[[5391]],"areaCode":591},{"arcs":[[5392]],"areaCode":591},{"arcs":[[5393]],"areaCode":591},{"arcs":[[5394]],"areaCode":591},{"arcs":[[-5373,5395,5396,-5375]],"areaCode":591},{"arcs":[[5397]],"areaCode":592},{"arcs":[[5398]],"areaCode":592},{"arcs":[[5399]],"areaCode":592},{"arcs":[[5400]],"areaCode":592},{"arcs":[[5401,5402]],"areaCode":592},{"arcs":[[5403]],"areaCode":592},{"arcs":[[5404]],"areaCode":592},{"arcs":[[5405]],"areaCode":592},{"arcs":[[5406]],"areaCode":592},{"arcs":[[5407]],"areaCode":592},{"arcs":[[5408]],"areaCode":592},{"arcs":[[5409]],"areaCode":592},{"arcs":[[5410]],"areaCode":592},{"arcs":[[5411]],"areaCode":592},{"arcs":[[5412]],"areaCode":592},{"arcs":[[5413]],"areaCode":592},{"arcs":[[5414]],"areaCode":592},{"arcs":[[5415]],"areaCode":592},{"arcs":[[5416]],"areaCode":592},{"arcs":[[5417]],"areaCode":592},{"arcs":[[5418]],"areaCode":592},{"arcs":[[5419]],"areaCode":592},{"arcs":[[5420]],"areaCode":592},{"arcs":[[5421]],"areaCode":592},{"arcs":[[5422]],"areaCode":592},{"arcs":[[5423]],"areaCode":592},{"arcs":[[5424]],"areaCode":592},{"arcs":[[5425]],"areaCode":592},{"arcs":[[5426]],"areaCode":592},{"arcs":[[5427]],"areaCode":592},{"arcs":[[5428]],"areaCode":592},{"arcs":[[5429]],"areaCode":592},{"arcs":[[5430]],"areaCode":592},{"arcs":[[5431]],"areaCode":592},{"arcs":[[5432]],"areaCode":592},{"arcs":[[5433]],"areaCode":592},{"arcs":[[5434]],"areaCode":592},{"arcs":[[5435]],"areaCode":592},{"arcs":[[5436]],"areaCode":592},{"arcs":[[5437]],"areaCode":592},{"arcs":[[5438]],"areaCode":592},{"arcs":[[5439]],"areaCode":592},{"arcs":[[5440]],"areaCode":592},{"arcs":[[5441]],"areaCode":592},{"arcs":[[5442]],"areaCode":592},{"arcs":[[5443]],"areaCode":592},{"arcs":[[-5397,5444,5445,-5322,-5376]],"areaCode":592},{"arcs":[[5446]],"areaCode":600},{"arcs":[[5447]],"areaCode":600},{"arcs":[[5448]],"areaCode":600},{"arcs":[[5449]],"areaCode":600},{"arcs":[[5450,5451,5452,5453,5454,5455]],"areaCode":600},{"arcs":[[5456]],"areaCode":600},{"arcs":[[5458]],"areaCode":601},{"arcs":[[5459]],"areaCode":601},{"arcs":[[5460]],"areaCode":601},{"arcs":[[5461]],"areaCode":601},{"arcs":[[5462]],"areaCode":601},{"arcs":[[5463]],"areaCode":601},{"arcs":[[5464]],"areaCode":601},{"arcs":[[5465]],"areaCode":601},{"arcs":[[5466]],"areaCode":601},{"arcs":[[5467]],"areaCode":601},{"arcs":[[5468]],"areaCode":601},{"arcs":[[5469]],"areaCode":601},{"arcs":[[5470,5471,-5451,5472]],"areaCode":601},{"arcs":[[5473]],"areaCode":610},{"arcs":[[5474]],"areaCode":610},{"arcs":[[5475]],"areaCode":610},{"arcs":[[-5455,5476,5477]],"areaCode":610},{"arcs":[[5478]],"areaCode":610},{"arcs":[[5479]],"areaCode":610},{"arcs":[[5480]],"areaCode":610},{"arcs":[[5481]],"areaCode":610},{"arcs":[[5483]],"areaCode":610},{"arcs":[[5484]],"areaCode":610},{"arcs":[[5485]],"areaCode":610},{"arcs":[[5486]],"areaCode":610},{"arcs":[[5487]],"areaCode":610},{"arcs":[[5488]],"areaCode":610},{"arcs":[[5489]],"areaCode":610},{"arcs":[[5490]],"areaCode":610},{"arcs":[[5491]],"areaCode":610},{"arcs":[[5492]],"areaCode":610},{"arcs":[[5493]],"areaCode":610},{"arcs":[[5494]],"areaCode":610},{"arcs":[[5495]],"areaCode":610},{"arcs":[[5496]],"areaCode":610},{"arcs":[[5497]],"areaCode":610},{"arcs":[[5498]],"areaCode":610},{"arcs":[[-5355,5499]],"areaCode":610},{"arcs":[[5500]],"areaCode":610},{"arcs":[[5501]],"areaCode":610},{"arcs":[[5502]],"areaCode":610},{"arcs":[[5503]],"areaCode":610},{"arcs":[[5504]],"areaCode":611},{"arcs":[[5505]],"areaCode":611},{"arcs":[[5506]],"areaCode":611},{"arcs":[[5507]],"areaCode":611},{"arcs":[[5508]],"areaCode":611},{"arcs":[[5509]],"areaCode":611},{"arcs":[[5510]],"areaCode":611},{"arcs":[[5511]],"areaCode":611},{"arcs":[[5512]],"areaCode":611},{"arcs":[[5513]],"areaCode":611},{"arcs":[[5514]],"areaCode":611},{"arcs":[[5515]],"areaCode":611},{"arcs":[[-5454,5516,5517,-5477]],"areaCode":611},{"arcs":[[5518]],"areaCode":611},{"arcs":[[5519]],"areaCode":611},{"arcs":[[5520]],"areaCode":611},{"arcs":[[5521]],"areaCode":611},{"arcs":[[5522]],"areaCode":611},{"arcs":[[5523]],"areaCode":611},{"arcs":[[5524]],"areaCode":611},{"arcs":[[5525]],"areaCode":611},{"arcs":[[5526]],"areaCode":611},{"arcs":[[5527]],"areaCode":620},{"arcs":[[5528]],"areaCode":620},{"arcs":[[5529]],"areaCode":620},{"arcs":[[5530]],"areaCode":620},{"arcs":[[5531]],"areaCode":620},{"arcs":[[5532]],"areaCode":620},{"arcs":[[5533]],"areaCode":620},{"arcs":[[5534]],"areaCode":620},{"arcs":[[5535]],"areaCode":620},{"arcs":[[-5517,-5453,5536,5537,5538]],"areaCode":620},{"arcs":[[5539]],"areaCode":620},{"arcs":[[5540]],"areaCode":620},{"arcs":[[5541]],"areaCode":620},{"arcs":[[5542]],"areaCode":620},{"arcs":[[5543]],"areaCode":620},{"arcs":[[5544]],"areaCode":620},{"arcs":[[5545]],"areaCode":620},{"arcs":[[5546]],"areaCode":620},{"arcs":[[5547]],"areaCode":620},{"arcs":[[5548]],"areaCode":620},{"arcs":[[5549]],"areaCode":620},{"arcs":[[5550]],"areaCode":620},{"arcs":[[5551]],"areaCode":620},{"arcs":[[5552]],"areaCode":620},{"arcs":[[5553]],"areaCode":620},{"arcs":[[5554]],"areaCode":620},{"arcs":[[5555]],"areaCode":620},{"arcs":[[5556]],"areaCode":620},{"arcs":[[5558]],"areaCode":620},{"arcs":[[5559]],"areaCode":620},{"arcs":[[5560]],"areaCode":620},{"arcs":[[5561]],"areaCode":620},{"arcs":[[5562]],"areaCode":621},{"arcs":[[5563]],"areaCode":621},{"arcs":[[5564]],"areaCode":621},{"arcs":[[5565]],"areaCode":621},{"arcs":[[5566]],"areaCode":621},{"arcs":[[5567]],"areaCode":621},{"arcs":[[5568]],"areaCode":621},{"arcs":[[5569]],"areaCode":621},{"arcs":[[5570]],"areaCode":621},{"arcs":[[5571]],"areaCode":621},{"arcs":[[5572]],"areaCode":621},{"arcs":[[5573]],"areaCode":621},{"arcs":[[5574,5575,5576,5577,-5538]],"areaCode":621},{"arcs":[[5578]],"areaCode":621},{"arcs":[[5579]],"areaCode":621},{"arcs":[[5580]],"areaCode":622},{"arcs":[[5581]],"areaCode":622},{"arcs":[[5582]],"areaCode":622},{"arcs":[[5583]],"areaCode":622},{"arcs":[[5584]],"areaCode":622},{"arcs":[[5585]],"areaCode":622},{"arcs":[[5586]],"areaCode":622},{"arcs":[[5587]],"areaCode":622},{"arcs":[[5588]],"areaCode":622},{"arcs":[[5589]],"areaCode":622},{"arcs":[[5590]],"areaCode":622},{"arcs":[[5591]],"areaCode":622},{"arcs":[[5592]],"areaCode":622},{"arcs":[[5593]],"areaCode":622},{"arcs":[[5594]],"areaCode":622},{"arcs":[[5595]],"areaCode":622},{"arcs":[[5596]],"areaCode":622},{"arcs":[[5597]],"areaCode":622},{"arcs":[[5598]],"areaCode":622},{"arcs":[[5599]],"areaCode":622},{"arcs":[[5600,5601,-5577]],"areaCode":622},{"arcs":[[5602]],"areaCode":622},{"arcs":[[5603,5604,-5471]],"areaCode":630},{"arcs":[[5605]],"areaCode":631},{"arcs":[[5606]],"areaCode":631},{"arcs":[[5607]],"areaCode":631},{"arcs":[[5608]],"areaCode":631},{"arcs":[[5609]],"areaCode":631},{"arcs":[[5610]],"areaCode":631},{"arcs":[[-5452,-5472,-5605,5611,5612,-5575,-5537]],"areaCode":631},{"arcs":[[5613]],"areaCode":632},{"arcs":[[5614]],"areaCode":632},{"arcs":[[5615]],"areaCode":632},{"arcs":[[5616]],"areaCode":632},{"arcs":[[5617]],"areaCode":632},{"arcs":[[5618]],"areaCode":632},{"arcs":[[5619]],"areaCode":632},{"arcs":[[5620]],"areaCode":632},{"arcs":[[5621,-5601,-5576,-5613]],"areaCode":632},{"arcs":[[5622]],"areaCode":700},{"arcs":[[5623]],"areaCode":700},{"arcs":[[5624]],"areaCode":700},{"arcs":[[5625]],"areaCode":700},{"arcs":[[5626]],"areaCode":700},{"arcs":[[5627]],"areaCode":700},{"arcs":[[5628]],"areaCode":700},{"arcs":[[5629]],"areaCode":700},{"arcs":[[5630]],"areaCode":700},{"arcs":[[5631]],"areaCode":700},{"arcs":[[5632]],"areaCode":700},{"arcs":[[5633]],"areaCode":700},{"arcs":[[-5325,5634,5635,5636]],"areaCode":700},{"arcs":[[5637]],"areaCode":700},{"arcs":[[5638]],"areaCode":702},{"arcs":[[5639]],"areaCode":702},{"arcs":[[5640]],"areaCode":702},{"arcs":[[5641]],"areaCode":702},{"arcs":[[5642]],"areaCode":702},{"arcs":[[5643]],"areaCode":702},{"arcs":[[5644]],"areaCode":702},{"arcs":[[-5636,5645,5646]],"areaCode":702},{"arcs":[[5647]],"areaCode":702},{"arcs":[[5648]],"areaCode":703},{"arcs":[[5649]],"areaCode":703},{"arcs":[[5650]],"areaCode":703},{"arcs":[[5651]],"areaCode":703},{"arcs":[[5652]],"areaCode":703},{"arcs":[[5653]],"areaCode":703},{"arcs":[[5654]],"areaCode":703},{"arcs":[[5655]],"areaCode":703},{"arcs":[[5656]],"areaCode":703},{"arcs":[[5657]],"areaCode":703},{"arcs":[[5658]],"areaCode":703},{"arcs":[[5659]],"areaCode":703},{"arcs":[[5660]],"areaCode":703},{"arcs":[[5661]],"areaCode":703},{"arcs":[[5662]],"areaCode":703},{"arcs":[[5663]],"areaCode":703},{"arcs":[[5664]],"areaCode":703},{"arcs":[[5665]],"areaCode":703},{"arcs":[[5666]],"areaCode":703},{"arcs":[[5667]],"areaCode":703},{"arcs":[[5668]],"areaCode":703},{"arcs":[[5669]],"areaCode":703},{"arcs":[[5670]],"areaCode":703},{"arcs":[[5671]],"areaCode":703},{"arcs":[[5672]],"areaCode":703},{"arcs":[[5673]],"areaCode":703},{"arcs":[[5674]],"areaCode":703},{"arcs":[[5675]],"areaCode":703},{"arcs":[[5676]],"areaCode":703},{"arcs":[[5678]],"areaCode":703},{"arcs":[[5679]],"areaCode":703},{"arcs":[[5680]],"areaCode":703},{"arcs":[[5681]],"areaCode":703},{"arcs":[[-5402,5682]],"areaCode":703},{"arcs":[[-5446,5683,5684,-5323]],"areaCode":703},{"arcs":[[5685]],"areaCode":704},{"arcs":[[5686]],"areaCode":704},{"arcs":[[5687]],"areaCode":704},{"arcs":[[5688]],"areaCode":704},{"arcs":[[5689]],"areaCode":704},{"arcs":[[5690]],"areaCode":704},{"arcs":[[5691]],"areaCode":704},{"arcs":[[-5324,-5685,5692,-5646,-5635]],"areaCode":704},{"arcs":[[5693]],"areaCode":710},{"arcs":[[5694]],"areaCode":710},{"arcs":[[5695]],"areaCode":710},{"arcs":[[5696]],"areaCode":710},{"arcs":[[5697]],"areaCode":710},{"arcs":[[5698]],"areaCode":710},{"arcs":[[5699]],"areaCode":710},{"arcs":[[5700]],"areaCode":710},{"arcs":[[5701]],"areaCode":710},{"arcs":[[5702]],"areaCode":710},{"arcs":[[5703,5704,5705,5706,5707,5708]],"areaCode":710},{"arcs":[[5709]],"areaCode":710},{"arcs":[[5710]],"areaCode":710},{"arcs":[[5711]],"areaCode":710},{"arcs":[[5712]],"areaCode":711},{"arcs":[[5713]],"areaCode":711},{"arcs":[[5714]],"areaCode":711},{"arcs":[[5715]],"areaCode":711},{"arcs":[[5716]],"areaCode":711},{"arcs":[[5717]],"areaCode":711},{"arcs":[[5718,5719,-5704,5720]],"areaCode":711},{"arcs":[[5721]],"areaCode":711},{"arcs":[[5722]],"areaCode":711},{"arcs":[[5723]],"areaCode":711},{"arcs":[[5724]],"areaCode":711},{"arcs":[[5725,5726,5727,-5705,-5720]],"areaCode":712},{"arcs":[[5728,5729,5730,5731,-5706,-5728]],"areaCode":713},{"arcs":[[5732]],"areaCode":720},{"arcs":[[5733]],"areaCode":720},{"arcs":[[5734]],"areaCode":720},{"arcs":[[5735]],"areaCode":720},{"arcs":[[-5708,5736,5737,5738]],"areaCode":720},{"arcs":[[5739]],"areaCode":720},{"arcs":[[5740]],"areaCode":720},{"arcs":[[5741]],"areaCode":720},{"arcs":[[5742]],"areaCode":720},{"arcs":[[5743]],"areaCode":720},{"arcs":[[5744]],"areaCode":721},{"arcs":[[-5732,5745,5746,5747,-5737,-5707]],"areaCode":721},{"arcs":[[5748]],"areaCode":730},{"arcs":[[5749]],"areaCode":730},{"arcs":[[5750]],"areaCode":730},{"arcs":[[5751]],"areaCode":730},{"arcs":[[5752]],"areaCode":730},{"arcs":[[5753]],"areaCode":730},{"arcs":[[5754]],"areaCode":730},{"arcs":[[5755]],"areaCode":730},{"arcs":[[5756]],"areaCode":730},{"arcs":[[5757]],"areaCode":730},{"arcs":[[5758]],"areaCode":730},{"arcs":[[5759]],"areaCode":730},{"arcs":[[5760]],"areaCode":730},{"arcs":[[5761]],"areaCode":730},{"arcs":[[5762]],"areaCode":730},{"arcs":[[5763]],"areaCode":730},{"arcs":[[5764]],"areaCode":730},{"arcs":[[5765]],"areaCode":730},{"arcs":[[5766]],"areaCode":730},{"arcs":[[5767]],"areaCode":730},{"arcs":[[5768]],"areaCode":730},{"arcs":[[5769]],"areaCode":730},{"arcs":[[5770]],"areaCode":730},{"arcs":[[5771]],"areaCode":730},{"arcs":[[5772]],"areaCode":730},{"arcs":[[5773]],"areaCode":730},{"arcs":[[5774]],"areaCode":730},{"arcs":[[5775]],"areaCode":730},{"arcs":[[5776]],"areaCode":730},{"arcs":[[5777]],"areaCode":730},{"arcs":[[5778]],"areaCode":730},{"arcs":[[5779]],"areaCode":730},{"arcs":[[5780]],"areaCode":730},{"arcs":[[-5738,-5748,5782,5783]],"areaCode":730},{"arcs":[[5784]],"areaCode":730},{"arcs":[[5785]],"areaCode":730},{"arcs":[[5786]],"areaCode":730},{"arcs":[[5787]],"areaCode":730},{"arcs":[[5788]],"areaCode":730},{"arcs":[[5789]],"areaCode":730},{"arcs":[[5790]],"areaCode":730},{"arcs":[[5791]],"areaCode":730},{"arcs":[[5792]],"areaCode":730},{"arcs":[[5793]],"areaCode":730},{"arcs":[[5794]],"areaCode":730},{"arcs":[[5795]],"areaCode":731},{"arcs":[[5796]],"areaCode":731},{"arcs":[[5797]],"areaCode":731},{"arcs":[[5798]],"areaCode":731},{"arcs":[[5799]],"areaCode":731},{"arcs":[[5800]],"areaCode":731},{"arcs":[[5801]],"areaCode":731},{"arcs":[[5802]],"areaCode":731},{"arcs":[[5803]],"areaCode":731},{"arcs":[[5804]],"areaCode":731},{"arcs":[[5805]],"areaCode":731},{"arcs":[[5806]],"areaCode":731},{"arcs":[[5807]],"areaCode":731},{"arcs":[[5808]],"areaCode":731},{"arcs":[[5809]],"areaCode":731},{"arcs":[[5810]],"areaCode":731},{"arcs":[[5811]],"areaCode":731},{"arcs":[[5812]],"areaCode":731},{"arcs":[[5813]],"areaCode":731},{"arcs":[[5814]],"areaCode":731},{"arcs":[[5815]],"areaCode":731},{"arcs":[[5816]],"areaCode":731},{"arcs":[[5817]],"areaCode":731},{"arcs":[[5818]],"areaCode":731},{"arcs":[[5819]],"areaCode":731},{"arcs":[[5820]],"areaCode":731},{"arcs":[[5821]],"areaCode":731},{"arcs":[[5822]],"areaCode":731},{"arcs":[[-5783,-5747,5823,5824,5825]],"areaCode":731},{"arcs":[[-5825,5826]],"areaCode":732},{"arcs":[[5827]],"areaCode":735},{"arcs":[[5828]],"areaCode":735},{"arcs":[[5829]],"areaCode":735},{"arcs":[[5830]],"areaCode":735},{"arcs":[[5831]],"areaCode":735},{"arcs":[[5832]],"areaCode":735},{"arcs":[[5833]],"areaCode":735},{"arcs":[[5834]],"areaCode":735},{"arcs":[[5835]],"areaCode":735},{"arcs":[[5836]],"areaCode":735},{"arcs":[[5837]],"areaCode":735},{"arcs":[[5838]],"areaCode":735},{"arcs":[[5839]],"areaCode":735},{"arcs":[[5840]],"areaCode":735},{"arcs":[[5841]],"areaCode":735},{"arcs":[[5842]],"areaCode":735},{"arcs":[[5843]],"areaCode":736},{"arcs":[[5844]],"areaCode":736},{"arcs":[[5845]],"areaCode":736},{"arcs":[[5846]],"areaCode":736},{"arcs":[[5847]],"areaCode":736},{"arcs":[[5848]],"areaCode":736},{"arcs":[[5849]],"areaCode":736},{"arcs":[[5850]],"areaCode":736},{"arcs":[[5851]],"areaCode":736},{"arcs":[[5852]],"areaCode":737},{"arcs":[[5853]],"areaCode":737},{"arcs":[[5854]],"areaCode":737},{"arcs":[[5855]],"areaCode":737},{"arcs":[[5856]],"areaCode":737},{"arcs":[[5857]],"areaCode":737},{"arcs":[[5858]],"areaCode":737},{"arcs":[[5859]],"areaCode":737},{"arcs":[[5860]],"areaCode":737},{"arcs":[[5861]],"areaCode":737},{"arcs":[[5862]],"areaCode":737},{"arcs":[[5863]],"areaCode":737},{"arcs":[[5864]],"areaCode":737},{"arcs":[[5865]],"areaCode":737},{"arcs":[[5866]],"areaCode":737},{"arcs":[[5867]],"areaCode":737},{"arcs":[[5868]],"areaCode":737},{"arcs":[[5869]],"areaCode":737},{"arcs":[[5870]],"areaCode":737},{"arcs":[[5871]],"areaCode":737},{"arcs":[[5872]],"areaCode":737},{"arcs":[[5873]],"areaCode":737},{"arcs":[[5874]],"areaCode":737},{"arcs":[[5875]],"areaCode":737},{"arcs":[[5876]],"areaCode":737},{"arcs":[[5877]],"areaCode":737},{"arcs":[[5878]],"areaCode":737},{"arcs":[[5879]],"areaCode":737},{"arcs":[[5880]],"areaCode":737},{"arcs":[[5881]],"areaCode":737},{"arcs":[[5882]],"areaCode":737},{"arcs":[[5883]],"areaCode":737},{"arcs":[[5884]],"areaCode":737},{"arcs":[[5885]],"areaCode":737},{"arcs":[[5886]],"areaCode":737},{"arcs":[[5887]],"areaCode":737},{"arcs":[[5888]],"areaCode":737},{"arcs":[[5889]],"areaCode":737},{"arcs":[[5890]],"areaCode":737},{"arcs":[[5891]],"areaCode":737},{"arcs":[[5892]],"areaCode":737},{"arcs":[[5893]],"areaCode":737},{"arcs":[[5894]],"areaCode":737},{"arcs":[[5895]],"areaCode":737},{"arcs":[[5896]],"areaCode":737},{"arcs":[[5897]],"areaCode":737},{"arcs":[[5898]],"areaCode":737},{"arcs":[[5899]],"areaCode":737},{"arcs":[[5900]],"areaCode":737},{"arcs":[[5901]],"areaCode":737},{"arcs":[[5902]],"areaCode":737},{"arcs":[[5903]],"areaCode":737},{"arcs":[[5904]],"areaCode":737},{"arcs":[[5905]],"areaCode":737},{"arcs":[[5906]],"areaCode":737},{"arcs":[[5907]],"areaCode":737},{"arcs":[[5908]],"areaCode":737},{"arcs":[[5909]],"areaCode":737},{"arcs":[[5910]],"areaCode":737},{"arcs":[[5911]],"areaCode":737},{"arcs":[[5912]],"areaCode":737},{"arcs":[[5913]],"areaCode":737},{"arcs":[[5914,5915,5916]],"areaCode":740},{"arcs":[[5917]],"areaCode":741},{"arcs":[[5918]],"areaCode":741},{"arcs":[[5919]],"areaCode":741},{"arcs":[[5920,-5916,5921,5922,5923,5924,-5730]],"areaCode":741},{"arcs":[[5925,5926,5927,5928,-5923]],"areaCode":742},{"arcs":[[5929]],"areaCode":743},{"arcs":[[5930]],"areaCode":743},{"arcs":[[5931]],"areaCode":743},{"arcs":[[5932]],"areaCode":743},{"arcs":[[5933]],"areaCode":743},{"arcs":[[5934]],"areaCode":743},{"arcs":[[5935]],"areaCode":743},{"arcs":[[5936]],"areaCode":743},{"arcs":[[5937]],"areaCode":743},{"arcs":[[5938]],"areaCode":743},{"arcs":[[5939]],"areaCode":743},{"arcs":[[5940]],"areaCode":743},{"arcs":[[5941]],"areaCode":743},{"arcs":[[5942]],"areaCode":743},{"arcs":[[5943]],"areaCode":743},{"arcs":[[5944]],"areaCode":743},{"arcs":[[5945]],"areaCode":743},{"arcs":[[5946]],"areaCode":743},{"arcs":[[5947]],"areaCode":743},{"arcs":[[5948]],"areaCode":743},{"arcs":[[5949]],"areaCode":743},{"arcs":[[5950]],"areaCode":743},{"arcs":[[-5929,5951,5952,-5924]],"areaCode":743},{"arcs":[[5953]],"areaCode":743},{"arcs":[[5954]],"areaCode":743},{"arcs":[[5955]],"areaCode":743},{"arcs":[[5956]],"areaCode":743},{"arcs":[[5957]],"areaCode":743},{"arcs":[[5958]],"areaCode":743},{"arcs":[[5959]],"areaCode":743},{"arcs":[[5960]],"areaCode":743},{"arcs":[[5961]],"areaCode":743},{"arcs":[[5962]],"areaCode":743},{"arcs":[[5963]],"areaCode":743},{"arcs":[[5964]],"areaCode":743},{"arcs":[[5965]],"areaCode":743},{"arcs":[[5966]],"areaCode":743},{"arcs":[[5967]],"areaCode":743},{"arcs":[[5968]],"areaCode":743},{"arcs":[[5969]],"areaCode":743},{"arcs":[[5970]],"areaCode":743},{"arcs":[[5971,5972,-5726,-5719,5973]],"areaCode":750},{"arcs":[[5974]],"areaCode":750},{"arcs":[[5975]],"areaCode":751},{"arcs":[[5976]],"areaCode":751},{"arcs":[[5977]],"areaCode":751},{"arcs":[[5978]],"areaCode":751},{"arcs":[[5979]],"areaCode":751},{"arcs":[[5980]],"areaCode":751},{"arcs":[[5981]],"areaCode":751},{"arcs":[[5982,5983,5984,-5972],[5985]],"areaCode":751},{"arcs":[[5986]],"areaCode":752},{"arcs":[[5987]],"areaCode":752},{"arcs":[[5988]],"areaCode":752},{"arcs":[[5989]],"areaCode":752},{"arcs":[[5990]],"areaCode":752},{"arcs":[[5991]],"areaCode":752},{"arcs":[[5992]],"areaCode":752},{"arcs":[[5993]],"areaCode":752},{"arcs":[[5994,5995,5996,5997,-5984]],"areaCode":752},{"arcs":[[-5985,-5998,5998,-5917,-5921,-5729,-5727,-5973]],"areaCode":753},{"arcs":[[5999]],"areaCode":760},{"arcs":[[6000]],"areaCode":760},{"arcs":[[6001]],"areaCode":760},{"arcs":[[6002,6003,6004,-5996]],"areaCode":760},{"arcs":[[-6005,6005,6006,-5926,-5922,-5915,-5999,-5997]],"areaCode":761},{"arcs":[[6007]],"areaCode":762},{"arcs":[[6008]],"areaCode":762},{"arcs":[[6009]],"areaCode":762},{"arcs":[[6010]],"areaCode":762},{"arcs":[[6011,6012,6013,-6006,-6004]],"areaCode":762},{"arcs":[[-6007,-6014,6014,6015,-5927]],"areaCode":763},{"arcs":[[6016]],"areaCode":770},{"arcs":[[6017]],"areaCode":770},{"arcs":[[6018]],"areaCode":770},{"arcs":[[6019]],"areaCode":770},{"arcs":[[6020]],"areaCode":770},{"arcs":[[6021]],"areaCode":770},{"arcs":[[6022]],"areaCode":770},{"arcs":[[6023]],"areaCode":770},{"arcs":[[6024]],"areaCode":770},{"arcs":[[6025,6026]],"areaCode":770},{"arcs":[[6027]],"areaCode":770},{"arcs":[[6028]],"areaCode":770},{"arcs":[[6029]],"areaCode":770},{"arcs":[[6030]],"areaCode":770},{"arcs":[[-6016,6031,6032,-5952,-5928]],"areaCode":770},{"arcs":[[6033]],"areaCode":770},{"arcs":[[6034]],"areaCode":770},{"arcs":[[6035]],"areaCode":770},{"arcs":[[6036]],"areaCode":770},{"arcs":[[6037]],"areaCode":770},{"arcs":[[6038]],"areaCode":770},{"arcs":[[6039]],"areaCode":771},{"arcs":[[6040]],"areaCode":771},{"arcs":[[6041]],"areaCode":771},{"arcs":[[-6013,6042,-6026,6043,-6032,-6015]],"areaCode":771},{"arcs":[[6044]],"areaCode":774},{"arcs":[[6045]],"areaCode":774},{"arcs":[[6046]],"areaCode":774},{"arcs":[[6047]],"areaCode":774},{"arcs":[[6048]],"areaCode":774},{"arcs":[[6049]],"areaCode":774},{"arcs":[[6050]],"areaCode":774},{"arcs":[[6051]],"areaCode":774},{"arcs":[[6052]],"areaCode":774},{"arcs":[[6053]],"areaCode":774},{"arcs":[[6054]],"areaCode":774},{"arcs":[[6055]],"areaCode":774},{"arcs":[[6056]],"areaCode":775},{"arcs":[[6057]],"areaCode":775},{"arcs":[[6058]],"areaCode":775},{"arcs":[[6059]],"areaCode":775},{"arcs":[[6060]],"areaCode":775},{"arcs":[[6061]],"areaCode":775},{"arcs":[[6062]],"areaCode":776},{"arcs":[[6063]],"areaCode":776},{"arcs":[[6064]],"areaCode":776},{"arcs":[[6065]],"areaCode":776},{"arcs":[[6066]],"areaCode":776},{"arcs":[[6067]],"areaCode":776},{"arcs":[[6068]],"areaCode":777},{"arcs":[[6069]],"areaCode":777},{"arcs":[[6070]],"areaCode":778},{"arcs":[[6071]],"areaCode":778},{"arcs":[[6072]],"areaCode":778},{"arcs":[[6073]],"areaCode":778},{"arcs":[[6074]],"areaCode":778},{"arcs":[[6075]],"areaCode":778},{"arcs":[[6076]],"areaCode":778},{"arcs":[[6077]],"areaCode":778},{"arcs":[[6078]],"areaCode":778},{"arcs":[[6079]],"areaCode":778},{"arcs":[[6080]],"areaCode":778},{"arcs":[[6081]],"areaCode":779},{"arcs":[[6082]],"areaCode":779},{"arcs":[[6083]],"areaCode":779},{"arcs":[[6084]],"areaCode":800},{"arcs":[[6085]],"areaCode":800},{"arcs":[[6086]],"areaCode":800},{"arcs":[[6087]],"areaCode":800},{"arcs":[[6088]],"areaCode":800},{"arcs":[[6089]],"areaCode":800},{"arcs":[[6090]],"areaCode":800},{"arcs":[[6091]],"areaCode":800},{"arcs":[[6092,6093,6094]],"areaCode":800},{"arcs":[[6095]],"areaCode":800},{"arcs":[[6096]],"areaCode":800},{"arcs":[[6097]],"areaCode":800},{"arcs":[[6098]],"areaCode":800},{"arcs":[[6099]],"areaCode":800},{"arcs":[[6100]],"areaCode":801},{"arcs":[[6101]],"areaCode":801},{"arcs":[[6102]],"areaCode":801},{"arcs":[[6103]],"areaCode":801},{"arcs":[[6104]],"areaCode":801},{"arcs":[[6105]],"areaCode":801},{"arcs":[[6106]],"areaCode":801},{"arcs":[[6107]],"areaCode":801},{"arcs":[[6108]],"areaCode":801},{"arcs":[[6109]],"areaCode":801},{"arcs":[[6110]],"areaCode":801},{"arcs":[[6111]],"areaCode":801},{"arcs":[[6112]],"areaCode":801},{"arcs":[[6113]],"areaCode":801},{"arcs":[[6114]],"areaCode":801},{"arcs":[[6115]],"areaCode":801},{"arcs":[[6116]],"areaCode":801},{"arcs":[[6117]],"areaCode":801},{"arcs":[[6118]],"areaCode":801},{"arcs":[[6119]],"areaCode":801},{"arcs":[[6120]],"areaCode":801},{"arcs":[[6121]],"areaCode":801},{"arcs":[[6122]],"areaCode":801},{"arcs":[[6123]],"areaCode":801},{"arcs":[[6124]],"areaCode":801},{"arcs":[[6125]],"areaCode":801},{"arcs":[[6126]],"areaCode":801},{"arcs":[[6127]],"areaCode":801},{"arcs":[[6128]],"areaCode":801},{"arcs":[[6129]],"areaCode":801},{"arcs":[[6130]],"areaCode":801},{"arcs":[[6131]],"areaCode":801},{"arcs":[[6132]],"areaCode":801},{"arcs":[[6133,6134,-6094]],"areaCode":801},{"arcs":[[6135]],"areaCode":802},{"arcs":[[6136]],"areaCode":802},{"arcs":[[6137]],"areaCode":802},{"arcs":[[6138]],"areaCode":802},{"arcs":[[6139]],"areaCode":802},{"arcs":[[6140]],"areaCode":803},{"arcs":[[6141]],"areaCode":803},{"arcs":[[6142]],"areaCode":803},{"arcs":[[6143]],"areaCode":804},{"arcs":[[6144]],"areaCode":804},{"arcs":[[6145]],"areaCode":804},{"arcs":[[6146]],"areaCode":804},{"arcs":[[6147]],"areaCode":804},{"arcs":[[6148]],"areaCode":804},{"arcs":[[6149]],"areaCode":804},{"arcs":[[6150]],"areaCode":804},{"arcs":[[6151]],"areaCode":804},{"arcs":[[6152]],"areaCode":805},{"arcs":[[6153],[6154]],"areaCode":805},{"arcs":[[6155]],"areaCode":805},{"arcs":[[6156]],"areaCode":805},{"arcs":[[6157]],"areaCode":805},{"arcs":[[6158]],"areaCode":805},{"arcs":[[6159]],"areaCode":805},{"arcs":[[6160]],"areaCode":805},{"arcs":[[6161]],"areaCode":806},{"arcs":[[6162]],"areaCode":807},{"arcs":[[6163]],"areaCode":807},{"arcs":[[6164]],"areaCode":807},{"arcs":[[6165]],"areaCode":807},{"arcs":[[6166]],"areaCode":807},{"arcs":[[6167]],"areaCode":807},{"arcs":[[6168]],"areaCode":807},{"arcs":[[6169]],"areaCode":807},{"arcs":[[6170]],"areaCode":807},{"arcs":[[6171]],"areaCode":807},{"arcs":[[6172]],"areaCode":807},{"arcs":[[6173]],"areaCode":807},{"arcs":[[6174]],"areaCode":null},{"arcs":[[6175]],"areaCode":null},{"arcs":[[6176]],"areaCode":null},{"arcs":[[6177]],"areaCode":null},{"arcs":[[6178]],"areaCode":null},{"arcs":[[6179]],"areaCode":null},{"arcs":[[6180]],"areaCode":null},{"arcs":[[6181]],"areaCode":null},{"arcs":[[6182]],"areaCode":null},{"arcs":[[6183]],"areaCode":null},{"arcs":[[-6093,6184,-6134]],"areaCode":null}],"arcs":[{"arc":[{"x":182076,"y":143464},{"x":-208,"y":-133},{"x":-92,"y":-126},{"x":93,"y":125},{"x":207,"y":134}],"type":"coastline"},{"arc":[{"x":186401,"y":145036},{"x":-72,"y":133},{"x":-75,"y":18},{"x":-23,"y":56},{"x":-180,"y":75},{"x":-133,"y":212},{"x":-46,"y":47},{"x":-78,"y":9},{"x":-6,"y":58},{"x":-90,"y":113},{"x":-145,"y":42},{"x":-54,"y":77},{"x":-53,"y":-25},{"x":-55,"y":181},{"x":-66,"y":-16},{"x":-155,"y":91},{"x":-121,"y":-32},{"x":-162,"y":129},{"x":-22,"y":56},{"x":-83,"y":33},{"x":6,"y":88},{"x":-151,"y":77},{"x":19,"y":91},{"x":-132,"y":255},{"x":-145,"y":86},{"x":-111,"y":-43}],"type":"admin"},{"arc":[{"x":184268,"y":146847},{"x":-56,"y":-74},{"x":27,"y":-89},{"x":-197,"y":-198},{"x":-16,"y":-99},{"x":-111,"y":-54},{"x":-13,"y":-39},{"x":-65,"y":4},{"x":-15,"y":-69},{"x":-61,"y":-14},{"x":-173,"y":-212},{"x":-30,"y":-129},{"x":-233,"y":-17},{"x":-72,"y":-113},{"x":-51,"y":21},{"x":-54,"y":102},{"x":-100,"y":59},{"x":-72,"y":10},{"x":-65,"y":-35},{"x":-81,"y":57},{"x":-174,"y":21},{"x":-2,"y":121},{"x":-58,"y":-52},{"x":25,"y":268},{"x":-107,"y":25},{"x":-18,"y":-77},{"x":-32,"y":-12},{"x":-122,"y":146},{"x":-101,"y":-46},{"x":-167,"y":110},{"x":-73,"y":-148},{"x":-75,"y":44},{"x":-55,"y":-102},{"x":-168,"y":17},{"x":7,"y":-119},{"x":-205,"y":-181},{"x":-70,"y":98}],"type":"admin"},{"arc":[{"x":181435,"y":146071},{"x":-34,"y":-346},{"x":143,"y":-19},{"x":-95,"y":-987},{"x":41,"y":-17},{"x":-52,"y":-86},{"x":82,"y":-37},{"x":-19,"y":-53},{"x":35,"y":-48},{"x":-3,"y":-154},{"x":46,"y":-4},{"x":82,"y":81},{"x":43,"y":-33},{"x":-153,"y":-136},{"x":-15,"y":-89},{"x":38,"y":-143},{"x":-83,"y":-55},{"x":-32,"y":19},{"x":-40,"y":-36},{"x":12,"y":-34},{"x":-115,"y":-92},{"x":-11,"y":-135},{"x":-132,"y":-255},{"x":240,"y":-276}],"type":"area"},{"arc":[{"x":181413,"y":143136},{"x":136,"y":151},{"x":-25,"y":28},{"x":91,"y":98},{"x":6,"y":55},{"x":40,"y":15}],"type":"admin"},{"arc":[{"x":181661,"y":143483},{"x":79,"y":15},{"x":144,"y":-34},{"x":37,"y":47},{"x":-58,"y":1},{"x":60,"y":96},{"x":18,"y":-71},{"x":38,"y":47},{"x":13,"y":-34},{"x":-5,"y":27},{"x":-43,"y":45},{"x":54,"y":-38},{"x":7,"y":-32},{"x":22,"y":67},{"x":-17,"y":-18},{"x":-11,"y":66},{"x":102,"y":116},{"x":343,"y":293},{"x":59,"y":34},{"x":37,"y":-31},{"x":-35,"y":31},{"x":131,"y":123},{"x":384,"y":279},{"x":126,"y":-19},{"x":158,"y":46},{"x":-18,"y":-22},{"x":33,"y":33},{"x":109,"y":-28},{"x":178,"y":55},{"x":98,"y":-12},{"x":-20,"y":-21},{"x":49,"y":20},{"x":172,"y":-21},{"x":484,"y":-277},{"x":42,"y":1},{"x":-5,"y":-24},{"x":49,"y":-14},{"x":95,"y":-101},{"x":99,"y":-19},{"x":152,"y":-111},{"x":125,"y":33},{"x":73,"y":-10},{"x":179,"y":120},{"x":319,"y":75},{"x":126,"y":-22},{"x":-20,"y":-23},{"x":41,"y":7},{"x":110,"y":-126},{"x":125,"y":-29},{"x":112,"y":-77},{"x":230,"y":-13},{"x":167,"y":-88},{"x":80,"y":5},{"x":202,"y":-80},{"x":96,"y":1},{"x":119,"y":68}],"type":"coastline"},{"arc":[{"x":186905,"y":143839},{"x":-94,"y":265},{"x":95,"y":169},{"x":1,"y":96},{"x":-106,"y":67},{"x":-72,"y":-17},{"x":-74,"y":45},{"x":-6,"y":116},{"x":-32,"y":54},{"x":-32,"y":-3},{"x":-28,"y":114},{"x":11,"y":101},{"x":-133,"y":107},{"x":-34,"y":83}],"type":"admin"},{"arc":[{"x":181435,"y":146071},{"x":-63,"y":124},{"x":-84,"y":-6},{"x":-57,"y":62},{"x":13,"y":27},{"x":-194,"y":151},{"x":-414,"y":-668},{"x":-15,"y":58},{"x":-57,"y":-22},{"x":-116,"y":19},{"x":-74,"y":-129},{"x":-68,"y":-2},{"x":-54,"y":-70},{"x":-112,"y":31}],"type":"admin"},{"arc":[{"x":180140,"y":145646},{"x":-54,"y":-321},{"x":-28,"y":-27},{"x":64,"y":-295},{"x":-88,"y":22},{"x":-26,"y":-53},{"x":-118,"y":-38},{"x":-78,"y":22},{"x":-156,"y":-105},{"x":-214,"y":-36},{"x":-60,"y":-39},{"x":-15,"y":19},{"x":-259,"y":-251},{"x":-19,"y":-51},{"x":-174,"y":-59},{"x":-53,"y":53},{"x":-18,"y":-191},{"x":30,"y":-201},{"x":-143,"y":-98},{"x":-60,"y":-193},{"x":25,"y":-97},{"x":124,"y":-71},{"x":11,"y":-61},{"x":-34,"y":-84},{"x":-91,"y":-50},{"x":-82,"y":-256},{"x":-159,"y":21},{"x":-77,"y":-61},{"x":-14,"y":-51},{"x":-239,"y":-87},{"x":-53,"y":-91},{"x":-80,"y":40},{"x":-21,"y":46},{"x":-54,"y":7},{"x":-69,"y":-251}],"type":"area"},{"arc":[{"x":177858,"y":142758},{"x":8,"y":-204},{"x":-42,"y":-94},{"x":48,"y":-42},{"x":30,"y":-118},{"x":142,"y":-58},{"x":14,"y":-78},{"x":167,"y":-234}],"type":"admin"},{"arc":[{"x":178225,"y":141930},{"x":45,"y":58},{"x":140,"y":-50},{"x":47,"y":74},{"x":75,"y":-48},{"x":127,"y":27},{"x":36,"y":48},{"x":77,"y":-29},{"x":29,"y":-35},{"x":-42,"y":-99},{"x":61,"y":-61},{"x":-3,"y":-304},{"x":196,"y":-43},{"x":68,"y":-57},{"x":44,"y":55},{"x":330,"y":148},{"x":127,"y":-317},{"x":120,"y":-46},{"x":0,"y":-49},{"x":71,"y":-14}],"type":"admin"},{"arc":[{"x":179773,"y":141188},{"x":80,"y":-42},{"x":59,"y":49},{"x":114,"y":7},{"x":98,"y":-74},{"x":98,"y":159},{"x":-4,"y":75},{"x":175,"y":191},{"x":124,"y":16},{"x":39,"y":90},{"x":144,"y":53},{"x":53,"y":-46},{"x":26,"y":81},{"x":109,"y":-60},{"x":71,"y":15},{"x":-22,"y":59},{"x":90,"y":29},{"x":22,"y":124},{"x":-49,"y":89},{"x":38,"y":46},{"x":-51,"y":26},{"x":-77,"y":174},{"x":-114,"y":7},{"x":9,"y":66},{"x":-58,"y":118},{"x":105,"y":114},{"x":176,"y":92},{"x":60,"y":138},{"x":81,"y":-99},{"x":67,"y":-17},{"x":190,"y":279},{"x":-80,"y":115},{"x":67,"y":74}],"type":"admin"},{"arc":[{"x":179165,"y":148001},{"x":-82,"y":-83},{"x":-60,"y":-189},{"x":-121,"y":-152},{"x":-17,"y":-74},{"x":-157,"y":-121},{"x":-109,"y":30},{"x":-55,"y":-24},{"x":-20,"y":29},{"x":-71,"y":-80},{"x":-83,"y":37},{"x":-73,"y":-198},{"x":-57,"y":22},{"x":-33,"y":70},{"x":-136,"y":-26},{"x":-19,"y":-82},{"x":-80,"y":-63},{"x":-62,"y":20},{"x":-103,"y":-256},{"x":-101,"y":-136},{"x":58,"y":-452},{"x":-40,"y":-345},{"x":-254,"y":-228},{"x":-28,"y":-73},{"x":77,"y":-182},{"x":-38,"y":-89},{"x":8,"y":-228},{"x":74,"y":-327},{"x":76,"y":-72},{"x":-32,"y":-94},{"x":45,"y":-253},{"x":-105,"y":42},{"x":-291,"y":9},{"x":-77,"y":-92},{"x":-216,"y":-116},{"x":13,"y":-96},{"x":-89,"y":-34},{"x":-28,"y":-88},{"x":38,"y":-138},{"x":-9,"y":-233},{"x":136,"y":-182},{"x":64,"y":-30},{"x":-15,"y":-110},{"x":34,"y":-3},{"x":62,"y":-86},{"x":-31,"y":-61},{"x":-122,"y":-59},{"x":6,"y":-183},{"x":32,"y":-44},{"x":-151,"y":-180}],"type":"admin"},{"arc":[{"x":176923,"y":142698},{"x":238,"y":-23},{"x":120,"y":-58},{"x":15,"y":-37},{"x":20,"y":15},{"x":162,"y":-46},{"x":89,"y":16},{"x":21,"y":51},{"x":48,"y":6},{"x":74,"y":76},{"x":148,"y":60}],"type":"admin"},{"arc":[{"x":180140,"y":145646},{"x":-30,"y":-3},{"x":-48,"y":98},{"x":-105,"y":-5},{"x":-90,"y":54},{"x":-37,"y":61},{"x":-68,"y":4},{"x":28,"y":100},{"x":-48,"y":115},{"x":-28,"y":17},{"x":-49,"y":-34},{"x":-41,"y":90},{"x":-191,"y":39},{"x":-15,"y":63},{"x":-62,"y":55},{"x":-135,"y":-17},{"x":-133,"y":81},{"x":-68,"y":-66},{"x":-53,"y":21},{"x":-78,"y":-29},{"x":-55,"y":37},{"x":-20,"y":65},{"x":37,"y":43},{"x":208,"y":96},{"x":-24,"y":54},{"x":-92,"y":18},{"x":-30,"y":64},{"x":20,"y":45},{"x":165,"y":37},{"x":79,"y":242},{"x":69,"y":54},{"x":42,"y":-5},{"x":26,"y":67},{"x":147,"y":2},{"x":-58,"y":101},{"x":-141,"y":99},{"x":-31,"y":75},{"x":21,"y":103},{"x":-36,"y":191},{"x":53,"y":186},{"x":-104,"y":137}],"type":"admin"},{"arc":[{"x":176137,"y":137644},{"x":-68,"y":4},{"x":-29,"y":-49},{"x":-51,"y":-15}],"type":"admin"},{"arc":[{"x":175989,"y":137584},{"x":18,"y":-161},{"x":-54,"y":-56},{"x":28,"y":-92},{"x":-26,"y":-47},{"x":49,"y":-123},{"x":-35,"y":-20},{"x":34,"y":17},{"x":-27,"y":-54},{"x":-317,"y":-362},{"x":-197,"y":-183},{"x":-36,"y":14},{"x":12,"y":-22},{"x":-17,"y":0},{"x":-4,"y":-18},{"x":10,"y":52},{"x":-18,"y":-42},{"x":8,"y":-17},{"x":-69,"y":-60},{"x":-251,"y":-177},{"x":-17,"y":28},{"x":12,"y":-19},{"x":-21,"y":-11},{"x":10,"y":37},{"x":-17,"y":-26},{"x":11,"y":-22},{"x":-167,"y":-103},{"x":-518,"y":-266},{"x":-395,"y":-162},{"x":-39,"y":-1},{"x":-4,"y":21},{"x":-19,"y":-29},{"x":27,"y":43},{"x":-31,"y":-29},{"x":4,"y":-17},{"x":-74,"y":-28},{"x":-403,"y":-97},{"x":-105,"y":-5},{"x":-5,"y":33},{"x":-21,"y":-32},{"x":24,"y":40},{"x":-55,"y":-45},{"x":-236,"y":3},{"x":-211,"y":62},{"x":-5,"y":37},{"x":-3,"y":-24},{"x":-35,"y":17},{"x":47,"y":17},{"x":-58,"y":-4},{"x":-66,"y":48},{"x":-155,"y":326},{"x":-5,"y":20},{"x":29,"y":18},{"x":-26,"y":10},{"x":12,"y":6},{"x":19,"y":-19},{"x":-21,"y":21},{"x":-16,"y":-4},{"x":-17,"y":30},{"x":-12,"y":280},{"x":-30,"y":79},{"x":-31,"y":3},{"x":41,"y":-3},{"x":-187,"y":120},{"x":-84,"y":128},{"x":6,"y":41},{"x":-34,"y":-11},{"x":10,"y":34},{"x":30,"y":-21},{"x":-7,"y":24},{"x":-120,"y":59},{"x":-31,"y":101},{"x":24,"y":-10},{"x":-31,"y":27}],"type":"coastline"},{"arc":[{"x":172091,"y":136958},{"x":-69,"y":-46},{"x":-8,"y":-92},{"x":-56,"y":-40},{"x":-30,"y":-96},{"x":-88,"y":-72},{"x":-34,"y":2},{"x":-26,"y":-59},{"x":-178,"y":-93},{"x":-92,"y":148},{"x":-127,"y":69},{"x":-45,"y":-16},{"x":-112,"y":76},{"x":-27,"y":-31},{"x":-93,"y":-12},{"x":-210,"y":108},{"x":-89,"y":-39},{"x":-129,"y":8},{"x":-45,"y":-31}],"type":"area"},{"arc":[{"x":170633,"y":136742},{"x":49,"y":-297},{"x":153,"y":-125},{"x":-9,"y":-125},{"x":-52,"y":3},{"x":-25,"y":-82},{"x":89,"y":-80},{"x":-28,"y":-139},{"x":106,"y":-74},{"x":-45,"y":-249},{"x":95,"y":-139},{"x":13,"y":-101},{"x":55,"y":-26},{"x":13,"y":-62},{"x":108,"y":-135},{"x":66,"y":62},{"x":86,"y":-55},{"x":-58,"y":-69},{"x":-7,"y":-111},{"x":-191,"y":-59},{"x":25,"y":-124},{"x":-53,"y":-160},{"x":93,"y":-41},{"x":-47,"y":-103},{"x":37,"y":-254},{"x":-122,"y":-260}],"type":"admin"},{"arc":[{"x":170984,"y":133937},{"x":28,"y":-26},{"x":60,"y":2},{"x":62,"y":-75},{"x":65,"y":-5},{"x":326,"y":-295},{"x":48,"y":-163},{"x":64,"y":-85},{"x":-27,"y":-22},{"x":24,"y":-29},{"x":-4,"y":-41},{"x":-30,"y":69},{"x":19,"y":-69},{"x":33,"y":-47},{"x":14,"y":-364},{"x":33,"y":-14}],"type":"coastline"},{"arc":[{"x":171699,"y":132773},{"x":41,"y":62},{"x":128,"y":-14},{"x":149,"y":91},{"x":139,"y":-42},{"x":76,"y":137},{"x":127,"y":102},{"x":-69,"y":217},{"x":51,"y":89},{"x":82,"y":-7},{"x":67,"y":54},{"x":40,"y":222},{"x":63,"y":2},{"x":175,"y":-93},{"x":83,"y":28},{"x":11,"y":-82},{"x":78,"y":9},{"x":59,"y":-48},{"x":9,"y":62},{"x":86,"y":34},{"x":13,"y":110},{"x":-63,"y":78},{"x":21,"y":56},{"x":110,"y":74},{"x":-5,"y":42},{"x":51,"y":13},{"x":47,"y":86},{"x":104,"y":-17},{"x":29,"y":120},{"x":88,"y":-69},{"x":65,"y":14},{"x":35,"y":-49},{"x":71,"y":95},{"x":9,"y":210},{"x":140,"y":67},{"x":-13,"y":110},{"x":150,"y":98},{"x":28,"y":171},{"x":115,"y":235},{"x":51,"y":37},{"x":21,"y":111},{"x":49,"y":-8},{"x":38,"y":60},{"x":38,"y":15},{"x":14,"y":-62},{"x":95,"y":-46},{"x":107,"y":44},{"x":168,"y":-144},{"x":152,"y":26},{"x":60,"y":-54},{"x":16,"y":27},{"x":42,"y":-12},{"x":150,"y":159},{"x":213,"y":65},{"x":131,"y":125},{"x":186,"y":83},{"x":41,"y":-31},{"x":-9,"y":-58},{"x":37,"y":-53},{"x":94,"y":10},{"x":30,"y":-31},{"x":-29,"y":-103},{"x":44,"y":1},{"x":26,"y":-33},{"x":16,"y":-63},{"x":-28,"y":-61},{"x":87,"y":-86},{"x":14,"y":-64},{"x":38,"y":-29},{"x":64,"y":-9},{"x":29,"y":25},{"x":65,"y":-21}],"type":"admin"},{"arc":[{"x":176139,"y":134860},{"x":46,"y":41},{"x":22,"y":103},{"x":-1,"y":50},{"x":-76,"y":67},{"x":-44,"y":116},{"x":62,"y":89},{"x":-5,"y":150},{"x":28,"y":23},{"x":-25,"y":58},{"x":184,"y":106},{"x":7,"y":109},{"x":25,"y":44},{"x":47,"y":-14},{"x":3,"y":30},{"x":-51,"y":17},{"x":-49,"y":120},{"x":2,"y":106},{"x":-62,"y":111},{"x":-231,"y":213},{"x":22,"y":64},{"x":-52,"y":109},{"x":109,"y":142},{"x":71,"y":-3},{"x":-2,"y":47},{"x":39,"y":-10},{"x":-51,"y":176},{"x":22,"y":90},{"x":-48,"y":93},{"x":-64,"y":25},{"x":-49,"y":78},{"x":27,"y":327},{"x":92,"y":107}],"type":"admin"},{"arc":[{"x":168226,"y":138974},{"x":12,"y":-24},{"x":19,"y":20},{"x":-31,"y":4}],"type":"coastline"},{"arc":[{"x":167783,"y":137729},{"x":117,"y":-76},{"x":81,"y":35},{"x":33,"y":-20},{"x":12,"y":-91},{"x":218,"y":-229},{"x":11,"y":-87},{"x":34,"y":-10},{"x":123,"y":-234},{"x":-12,"y":-162},{"x":75,"y":-29},{"x":5,"y":-39},{"x":71,"y":0},{"x":40,"y":-36}],"type":"area"},{"arc":[{"x":168591,"y":136751},{"x":67,"y":32},{"x":84,"y":-54},{"x":67,"y":-2},{"x":38,"y":95},{"x":78,"y":52},{"x":-16,"y":80},{"x":29,"y":30},{"x":61,"y":5},{"x":58,"y":-108},{"x":41,"y":0},{"x":22,"y":107},{"x":143,"y":27},{"x":37,"y":33},{"x":48,"y":-18},{"x":18,"y":34},{"x":106,"y":23},{"x":151,"y":-160},{"x":59,"y":-26},{"x":89,"y":28},{"x":38,"y":-81},{"x":82,"y":110},{"x":66,"y":26},{"x":13,"y":81},{"x":272,"y":-52},{"x":112,"y":53},{"x":175,"y":-135},{"x":104,"y":-189}],"type":"admin"},{"arc":[{"x":172091,"y":136958},{"x":-103,"y":48},{"x":-177,"y":275},{"x":-176,"y":133},{"x":-122,"y":241},{"x":28,"y":-11},{"x":-54,"y":41},{"x":-46,"y":229},{"x":25,"y":38},{"x":-25,"y":6},{"x":41,"y":55},{"x":-29,"y":-20},{"x":19,"y":77},{"x":3,"y":-54},{"x":33,"y":75},{"x":-29,"y":-11},{"x":26,"y":118},{"x":78,"y":198},{"x":39,"y":30},{"x":-31,"y":-20},{"x":45,"y":119},{"x":-24,"y":153},{"x":28,"y":92},{"x":-29,"y":-59},{"x":-2,"y":56},{"x":114,"y":138},{"x":-12,"y":71},{"x":-119,"y":139},{"x":-6,"y":29},{"x":25,"y":-9},{"x":-56,"y":61},{"x":-32,"y":123},{"x":-301,"y":117},{"x":-86,"y":126},{"x":6,"y":97},{"x":-193,"y":8},{"x":6,"y":30},{"x":-5,"y":-26},{"x":-33,"y":32},{"x":42,"y":2},{"x":-221,"y":101},{"x":16,"y":17},{"x":-15,"y":25},{"x":0,"y":-35},{"x":-43,"y":47},{"x":45,"y":-7},{"x":-40,"y":9},{"x":-159,"y":192},{"x":-79,"y":205},{"x":-38,"y":10},{"x":-34,"y":83},{"x":-127,"y":128},{"x":30,"y":-3},{"x":-117,"y":18},{"x":-200,"y":175},{"x":-146,"y":32},{"x":-44,"y":54},{"x":17,"y":44},{"x":10,"y":-41},{"x":-3,"y":58},{"x":-112,"y":14},{"x":-90,"y":67},{"x":-207,"y":389},{"x":-17,"y":92},{"x":36,"y":80},{"x":-30,"y":166},{"x":-174,"y":444},{"x":-84,"y":56},{"x":-107,"y":244},{"x":-37,"y":1},{"x":-20,"y":-47},{"x":-160,"y":28},{"x":-87,"y":133},{"x":-16,"y":69},{"x":38,"y":-45},{"x":-31,"y":84},{"x":-112,"y":75},{"x":-65,"y":-7},{"x":-81,"y":-168},{"x":-86,"y":-71},{"x":-8,"y":-148},{"x":18,"y":-55},{"x":21,"y":26},{"x":12,"y":-34},{"x":-35,"y":-146},{"x":-174,"y":-147},{"x":-44,"y":15},{"x":-49,"y":-106},{"x":-75,"y":-27},{"x":-56,"y":18},{"x":22,"y":-17},{"x":-71,"y":-66},{"x":-36,"y":-121},{"x":-81,"y":2},{"x":16,"y":-132},{"x":-90,"y":-47},{"x":41,"y":-102},{"x":-68,"y":-81},{"x":-14,"y":-65},{"x":33,"y":-42},{"x":-70,"y":-203},{"x":21,"y":-70},{"x":-8,"y":-9},{"x":18,"y":-32},{"x":-16,"y":35},{"x":6,"y":0},{"x":14,"y":-22},{"x":-5,"y":-5},{"x":8,"y":6},{"x":7,"y":-8},{"x":6,"y":-21},{"x":124,"y":-52},{"x":107,"y":-158},{"x":116,"y":-304},{"x":2,"y":-109},{"x":4,"y":28},{"x":59,"y":-103},{"x":2,"y":-201},{"x":140,"y":-387},{"x":4,"y":-161},{"x":-56,"y":-221},{"x":-143,"y":-145},{"x":-80,"y":25},{"x":-43,"y":-151},{"x":155,"y":-80},{"x":166,"y":37},{"x":-29,"y":18},{"x":46,"y":23},{"x":90,"y":-6},{"x":-47,"y":28},{"x":0,"y":45},{"x":-61,"y":-39},{"x":2,"y":46},{"x":-34,"y":-12},{"x":-35,"y":47},{"x":64,"y":63},{"x":34,"y":8},{"x":26,"y":-27},{"x":-21,"y":28},{"x":32,"y":14},{"x":21,"y":-42},{"x":13,"y":39},{"x":18,"y":-24},{"x":40,"y":21},{"x":42,"y":-23},{"x":-12,"y":-51},{"x":20,"y":21},{"x":41,"y":-12},{"x":-26,"y":-31},{"x":39,"y":-23},{"x":47,"y":35},{"x":36,"y":-108},{"x":21,"y":18},{"x":41,"y":-41},{"x":46,"y":-307},{"x":-42,"y":-99},{"x":-13,"y":24},{"x":20,"y":-47},{"x":-35,"y":-73},{"x":-89,"y":-95},{"x":-96,"y":-37},{"x":-72,"y":21},{"x":-94,"y":-56},{"x":-86,"y":-12},{"x":-64,"y":-63},{"x":-66,"y":15},{"x":17,"y":19},{"x":-38,"y":-43},{"x":-101,"y":-12},{"x":-6,"y":-95},{"x":-94,"y":-88},{"x":-32,"y":-126},{"x":-49,"y":-47}],"type":"coastline"},{"arc":[{"x":164393,"y":131852},{"x":-10,"y":98},{"x":-27,"y":6},{"x":24,"y":-7},{"x":-65,"y":-12},{"x":-34,"y":-48},{"x":-17,"y":-74},{"x":53,"y":8},{"x":12,"y":-48},{"x":64,"y":77}],"type":"coastline"},{"arc":[{"x":165906,"y":128234},{"x":-21,"y":269},{"x":-132,"y":70},{"x":-73,"y":-95},{"x":-57,"y":-250},{"x":204,"y":-45},{"x":79,"y":51}],"type":"coastline"},{"arc":[{"x":167783,"y":137729},{"x":-76,"y":-119},{"x":-75,"y":-28},{"x":26,"y":-2},{"x":-18,"y":-32},{"x":-69,"y":-43},{"x":-29,"y":-342},{"x":30,"y":-35},{"x":-31,"y":-133},{"x":-155,"y":-156},{"x":-210,"y":-57},{"x":-531,"y":-45},{"x":-383,"y":18},{"x":-87,"y":67},{"x":-175,"y":-79},{"x":-28,"y":-71},{"x":-145,"y":-91},{"x":26,"y":-82},{"x":-43,"y":-100},{"x":4,"y":-182},{"x":-33,"y":-75},{"x":-58,"y":-27},{"x":12,"y":-97},{"x":-130,"y":-212},{"x":-118,"y":-399},{"x":-71,"y":-15},{"x":43,"y":38},{"x":-42,"y":-9},{"x":-12,"y":-28},{"x":-62,"y":-7},{"x":-38,"y":-79},{"x":-82,"y":-14},{"x":-32,"y":-45},{"x":-12,"y":21},{"x":-31,"y":-7},{"x":29,"y":-4},{"x":-25,"y":-23},{"x":-18,"y":10},{"x":13,"y":27},{"x":-147,"y":-143},{"x":-186,"y":-54},{"x":-57,"y":-97},{"x":-58,"y":-35},{"x":37,"y":-121},{"x":131,"y":-115},{"x":119,"y":-181},{"x":20,"y":-202},{"x":-52,"y":-215},{"x":-39,"y":-19},{"x":8,"y":-31},{"x":-22,"y":33},{"x":17,"y":33},{"x":-30,"y":-47},{"x":51,"y":-34},{"x":10,"y":-72},{"x":207,"y":-214},{"x":12,"y":-56},{"x":-27,"y":14},{"x":-4,"y":-27},{"x":56,"y":13},{"x":118,"y":-103},{"x":52,"y":19},{"x":118,"y":-35},{"x":109,"y":-94},{"x":72,"y":29},{"x":18,"y":-37},{"x":69,"y":5},{"x":16,"y":-33},{"x":86,"y":-10},{"x":50,"y":-54},{"x":59,"y":13},{"x":74,"y":-27},{"x":39,"y":-62},{"x":37,"y":5},{"x":38,"y":-27},{"x":-36,"y":-4},{"x":41,"y":-12},{"x":529,"y":-29},{"x":222,"y":89}],"type":"coastline"},{"arc":[{"x":166904,"y":133335},{"x":16,"y":254},{"x":-39,"y":15},{"x":10,"y":37},{"x":-168,"y":115},{"x":-46,"y":93},{"x":-129,"y":27},{"x":-27,"y":43},{"x":24,"y":245},{"x":-74,"y":95},{"x":-84,"y":36},{"x":71,"y":109},{"x":10,"y":157},{"x":-57,"y":130},{"x":84,"y":55},{"x":28,"y":77},{"x":70,"y":32},{"x":24,"y":49},{"x":187,"y":1},{"x":68,"y":51},{"x":-25,"y":103},{"x":92,"y":93},{"x":-6,"y":72},{"x":56,"y":84},{"x":133,"y":99},{"x":63,"y":181},{"x":104,"y":1},{"x":29,"y":60},{"x":111,"y":56},{"x":29,"y":48},{"x":43,"y":-32},{"x":66,"y":3},{"x":155,"y":41},{"x":-19,"y":122},{"x":54,"y":37},{"x":34,"y":137},{"x":88,"y":9},{"x":78,"y":57},{"x":93,"y":-73},{"x":53,"y":66},{"x":52,"y":15},{"x":126,"y":-20},{"x":29,"y":33},{"x":68,"y":-3},{"x":84,"y":150},{"x":46,"y":53},{"x":60,"y":-6},{"x":32,"y":82},{"x":-34,"y":78},{"x":79,"y":88},{"x":-5,"y":95},{"x":-49,"y":66}],"type":"admin"},{"arc":[{"x":166904,"y":133335},{"x":56,"y":-11},{"x":55,"y":53},{"x":73,"y":-18},{"x":24,"y":48},{"x":52,"y":-12},{"x":31,"y":24},{"x":295,"y":34},{"x":141,"y":124},{"x":75,"y":22},{"x":95,"y":101},{"x":155,"y":70},{"x":16,"y":48},{"x":164,"y":94},{"x":225,"y":50},{"x":141,"y":-3},{"x":44,"y":-31},{"x":36,"y":16},{"x":28,"y":186},{"x":-50,"y":99},{"x":116,"y":92},{"x":171,"y":43},{"x":130,"y":-19},{"x":61,"y":29},{"x":97,"y":-50},{"x":-19,"y":-79},{"x":70,"y":31},{"x":11,"y":55},{"x":-31,"y":-43},{"x":-18,"y":40},{"x":24,"y":44},{"x":13,"y":-32},{"x":15,"y":70},{"x":166,"y":22},{"x":35,"y":38},{"x":117,"y":-23},{"x":75,"y":39},{"x":105,"y":-5},{"x":281,"y":-60},{"x":79,"y":-45},{"x":119,"y":48},{"x":46,"y":-44},{"x":226,"y":-61},{"x":36,"y":-135},{"x":55,"y":30},{"x":66,"y":-50},{"x":79,"y":-1},{"x":10,"y":-35},{"x":35,"y":8},{"x":27,"y":-30},{"x":3,"y":-73},{"x":57,"y":27},{"x":48,"y":-40},{"x":-31,"y":-2},{"x":150,"y":-81}],"type":"coastline"},{"arc":[{"x":171699,"y":132773},{"x":45,"y":-32},{"x":-24,"y":0},{"x":26,"y":-9},{"x":26,"y":14},{"x":214,"y":-104},{"x":5,"y":-37},{"x":23,"y":14},{"x":60,"y":-48},{"x":77,"y":0},{"x":79,"y":-108},{"x":127,"y":1},{"x":49,"y":-28},{"x":87,"y":-118},{"x":-25,"y":-78},{"x":73,"y":-213},{"x":-33,"y":-91},{"x":80,"y":-18},{"x":15,"y":-131},{"x":127,"y":-53},{"x":144,"y":-111},{"x":150,"y":88},{"x":209,"y":-84},{"x":88,"y":-68},{"x":181,"y":68},{"x":39,"y":-25},{"x":121,"y":37},{"x":107,"y":40},{"x":26,"y":114},{"x":14,"y":-18},{"x":29,"y":58},{"x":58,"y":13},{"x":71,"y":91},{"x":50,"y":20},{"x":16,"y":-18},{"x":33,"y":33},{"x":44,"y":-11},{"x":-10,"y":47},{"x":53,"y":45},{"x":364,"y":130},{"x":108,"y":-17},{"x":15,"y":25},{"x":59,"y":-29},{"x":-24,"y":27},{"x":56,"y":2},{"x":10,"y":-23},{"x":-27,"y":0},{"x":-16,"y":-19},{"x":40,"y":6},{"x":9,"y":14},{"x":-3,"y":27},{"x":79,"y":40},{"x":157,"y":-60},{"x":113,"y":30},{"x":56,"y":-49},{"x":38,"y":4},{"x":-10,"y":18},{"x":121,"y":-23},{"x":132,"y":31},{"x":117,"y":-68},{"x":317,"y":-38},{"x":17,"y":-40},{"x":114,"y":-6},{"x":53,"y":-23},{"x":-19,"y":-16},{"x":45,"y":18},{"x":-14,"y":6},{"x":8,"y":21},{"x":2,"y":-21},{"x":28,"y":7},{"x":72,"y":-31},{"x":62,"y":8}],"type":"coastline"},{"arc":[{"x":176232,"y":132004},{"x":12,"y":117},{"x":-51,"y":141},{"x":9,"y":122},{"x":62,"y":98},{"x":-22,"y":22},{"x":26,"y":182},{"x":-42,"y":62},{"x":12,"y":162},{"x":-58,"y":30},{"x":-110,"y":-88},{"x":-67,"y":37},{"x":3,"y":191},{"x":-74,"y":106},{"x":-34,"y":156},{"x":36,"y":55},{"x":-8,"y":60},{"x":-83,"y":98},{"x":-152,"y":44},{"x":39,"y":105},{"x":-61,"y":87},{"x":55,"y":189},{"x":-138,"y":322},{"x":73,"y":79},{"x":75,"y":6},{"x":41,"y":104},{"x":137,"y":16},{"x":4,"y":70},{"x":62,"y":33},{"x":64,"y":10},{"x":70,"y":-75},{"x":50,"y":-9},{"x":95,"y":33},{"x":19,"y":165},{"x":-42,"y":34},{"x":-13,"y":68},{"x":-82,"y":24}],"type":"area"},{"arc":[{"x":181835,"y":141362},{"x":-31,"y":23},{"x":91,"y":-69},{"x":-60,"y":46}],"type":"coastline"},{"arc":[{"x":179773,"y":141188},{"x":-59,"y":-148},{"x":-16,"y":-256},{"x":-109,"y":-78},{"x":-115,"y":-163},{"x":55,"y":0},{"x":21,"y":-41},{"x":122,"y":-49},{"x":4,"y":-216},{"x":-31,"y":-96},{"x":46,"y":-15},{"x":43,"y":-80},{"x":103,"y":-5},{"x":19,"y":-110},{"x":90,"y":-32},{"x":33,"y":-88},{"x":-59,"y":-95},{"x":18,"y":-69},{"x":71,"y":-34},{"x":-14,"y":-49},{"x":54,"y":-100},{"x":-24,"y":-49}],"type":"area"},{"arc":[{"x":180025,"y":139415},{"x":-35,"y":-167},{"x":21,"y":-42},{"x":36,"y":9},{"x":37,"y":-79},{"x":-25,"y":-53},{"x":157,"y":-135},{"x":18,"y":-89},{"x":67,"y":9},{"x":77,"y":-102},{"x":69,"y":-20},{"x":14,"y":-58},{"x":141,"y":-110},{"x":3,"y":-164},{"x":57,"y":-76},{"x":-14,"y":-159},{"x":171,"y":-157},{"x":52,"y":-95},{"x":63,"y":28},{"x":27,"y":-29},{"x":45,"y":-76},{"x":-21,"y":-103},{"x":50,"y":-22},{"x":22,"y":-70},{"x":71,"y":60},{"x":91,"y":19},{"x":73,"y":-60},{"x":110,"y":-16},{"x":63,"y":-105},{"x":54,"y":12},{"x":143,"y":-56},{"x":144,"y":83},{"x":53,"y":-53},{"x":58,"y":4},{"x":2,"y":-224},{"x":37,"y":-31},{"x":11,"y":-116},{"x":104,"y":-101},{"x":69,"y":6},{"x":115,"y":-49},{"x":-104,"y":-106},{"x":-23,"y":-122},{"x":-62,"y":-26},{"x":-28,"y":-83},{"x":91,"y":-63},{"x":-24,"y":-78},{"x":74,"y":-238},{"x":101,"y":-56},{"x":8,"y":-76},{"x":99,"y":38},{"x":41,"y":-26},{"x":56,"y":7},{"x":96,"y":-183}],"type":"area"},{"arc":[{"x":182580,"y":136016},{"x":-6,"y":49},{"x":35,"y":33},{"x":159,"y":64},{"x":125,"y":-1},{"x":8,"y":39},{"x":99,"y":-35},{"x":72,"y":-74},{"x":-34,"y":161},{"x":10,"y":59},{"x":19,"y":5},{"x":1,"y":35},{"x":-4,"y":-26},{"x":-33,"y":36},{"x":36,"y":104},{"x":-26,"y":46},{"x":48,"y":49},{"x":-49,"y":85},{"x":-7,"y":98},{"x":154,"y":243},{"x":36,"y":-15},{"x":48,"y":43},{"x":52,"y":-11},{"x":48,"y":65},{"x":28,"y":-79},{"x":39,"y":5},{"x":33,"y":165},{"x":-55,"y":166},{"x":-92,"y":36},{"x":-4,"y":36},{"x":3,"y":-31},{"x":-29,"y":23},{"x":22,"y":118},{"x":-64,"y":-2},{"x":-88,"y":104},{"x":-44,"y":7},{"x":-5,"y":59},{"x":-135,"y":108},{"x":-6,"y":59},{"x":-122,"y":69},{"x":-15,"y":93},{"x":-62,"y":29},{"x":-16,"y":102},{"x":3,"y":-57},{"x":-8,"y":45},{"x":-43,"y":6},{"x":-11,"y":151},{"x":33,"y":33},{"x":-115,"y":32},{"x":-12,"y":93},{"x":-62,"y":-37},{"x":-57,"y":21},{"x":14,"y":-28},{"x":41,"y":6},{"x":-28,"y":-40},{"x":-43,"y":18},{"x":17,"y":25},{"x":-32,"y":-23},{"x":-41,"y":30},{"x":-85,"y":348},{"x":-45,"y":67},{"x":18,"y":98},{"x":-49,"y":25},{"x":25,"y":49},{"x":-78,"y":72},{"x":3,"y":67},{"x":-42,"y":-11},{"x":-38,"y":33},{"x":17,"y":64},{"x":-45,"y":14},{"x":5,"y":42},{"x":-48,"y":36},{"x":5,"y":128},{"x":-137,"y":59},{"x":39,"y":-30},{"x":-112,"y":-33},{"x":-54,"y":88},{"x":19,"y":49},{"x":-11,"y":-22},{"x":-19,"y":27},{"x":-29,"y":-17},{"x":-8,"y":202},{"x":31,"y":202},{"x":31,"y":20},{"x":-17,"y":40},{"x":46,"y":60},{"x":79,"y":-30},{"x":-18,"y":55},{"x":52,"y":-55},{"x":22,"y":63},{"x":-98,"y":46},{"x":-19,"y":38},{"x":24,"y":153},{"x":31,"y":24},{"x":-4,"y":145},{"x":33,"y":54},{"x":79,"y":-16},{"x":10,"y":47},{"x":38,"y":10},{"x":4,"y":213},{"x":107,"y":202},{"x":5,"y":241},{"x":-15,"y":58},{"x":-61,"y":-7},{"x":26,"y":-12},{"x":-29,"y":-12},{"x":-83,"y":61},{"x":-48,"y":-19},{"x":23,"y":-5},{"x":-23,"y":-33},{"x":-76,"y":8},{"x":1,"y":-86},{"x":-31,"y":-13},{"x":-17,"y":34},{"x":-14,"y":-43},{"x":-26,"y":10},{"x":25,"y":42},{"x":-22,"y":-25},{"x":-9,"y":36},{"x":-20,"y":-21},{"x":17,"y":43},{"x":-24,"y":12},{"x":-15,"y":-34},{"x":-2,"y":43},{"x":-51,"y":-5},{"x":14,"y":40},{"x":-41,"y":61},{"x":-22,"y":-29},{"x":23,"y":37},{"x":-20,"y":26},{"x":19,"y":-26},{"x":-29,"y":14},{"x":-2,"y":-34},{"x":-5,"y":75},{"x":63,"y":-35},{"x":-99,"y":65},{"x":2,"y":143},{"x":-112,"y":341},{"x":-129,"y":210},{"x":-99,"y":263},{"x":284,"y":647},{"x":112,"y":166},{"x":24,"y":15},{"x":39,"y":-40},{"x":-16,"y":20},{"x":96,"y":92},{"x":-40,"y":78},{"x":-109,"y":45}],"type":"coastline"},{"arc":[{"x":178225,"y":141930},{"x":42,"y":-171},{"x":-45,"y":-50},{"x":-106,"y":-4},{"x":-65,"y":117},{"x":-106,"y":67},{"x":-82,"y":13},{"x":-135,"y":-72},{"x":-133,"y":10},{"x":-106,"y":-38},{"x":-88,"y":-132},{"x":-30,"y":-134},{"x":-165,"y":-23},{"x":21,"y":-176},{"x":-29,"y":3},{"x":26,"y":-50},{"x":-76,"y":-8},{"x":-40,"y":-80},{"x":-116,"y":-73},{"x":-90,"y":-10},{"x":-118,"y":-157},{"x":122,"y":-199},{"x":42,"y":-191},{"x":-7,"y":-225},{"x":111,"y":-276},{"x":-148,"y":-137},{"x":-55,"y":-204},{"x":-78,"y":-103},{"x":-1,"y":-150},{"x":-84,"y":-11},{"x":3,"y":-105},{"x":-33,"y":-18},{"x":44,"y":-33},{"x":-29,"y":-16},{"x":36,"y":-44},{"x":58,"y":53},{"x":97,"y":-15},{"x":184,"y":58},{"x":140,"y":-132},{"x":38,"y":-169},{"x":-1,"y":-252},{"x":-86,"y":-175},{"x":19,"y":-112},{"x":-29,"y":-189},{"x":41,"y":-136},{"x":-42,"y":-128},{"x":95,"y":-272}],"type":"admin"},{"arc":[{"x":177221,"y":137781},{"x":232,"y":150},{"x":109,"y":0},{"x":257,"y":153},{"x":43,"y":-11},{"x":49,"y":35},{"x":65,"y":-25},{"x":81,"y":96},{"x":-36,"y":68},{"x":29,"y":86},{"x":185,"y":-36},{"x":88,"y":-54},{"x":230,"y":-7},{"x":68,"y":37},{"x":29,"y":79},{"x":106,"y":61},{"x":35,"y":-52},{"x":33,"y":5},{"x":-29,"y":-102},{"x":20,"y":-48},{"x":144,"y":56},{"x":101,"y":119},{"x":18,"y":243},{"x":78,"y":115},{"x":-7,"y":172},{"x":46,"y":103},{"x":66,"y":60},{"x":59,"y":-9},{"x":4,"y":68},{"x":210,"y":-4},{"x":95,"y":62},{"x":3,"y":32},{"x":41,"y":-2},{"x":24,"y":78},{"x":293,"y":71},{"x":35,"y":35}],"type":"area"},{"arc":[{"x":177221,"y":137781},{"x":-52,"y":27},{"x":-27,"y":-28},{"x":-23,"y":30},{"x":-91,"y":-9},{"x":-83,"y":42},{"x":-49,"y":-5},{"x":-43,"y":54},{"x":-32,"y":-18},{"x":-98,"y":24},{"x":-63,"y":-134},{"x":-87,"y":54},{"x":-49,"y":-79},{"x":-85,"y":-2},{"x":-79,"y":-45},{"x":-99,"y":-139},{"x":-91,"y":95},{"x":-33,"y":-4}],"type":"admin"},{"arc":[{"x":176232,"y":132004},{"x":94,"y":74},{"x":27,"y":76},{"x":52,"y":-8},{"x":6,"y":38},{"x":37,"y":4},{"x":52,"y":63},{"x":84,"y":10},{"x":52,"y":61},{"x":88,"y":29},{"x":142,"y":241},{"x":94,"y":332},{"x":-16,"y":124},{"x":29,"y":121},{"x":-30,"y":90},{"x":40,"y":42},{"x":-56,"y":121},{"x":47,"y":106},{"x":-33,"y":85},{"x":100,"y":189},{"x":82,"y":94},{"x":133,"y":17},{"x":65,"y":46},{"x":-21,"y":23},{"x":96,"y":133},{"x":5,"y":97},{"x":47,"y":0},{"x":6,"y":72},{"x":39,"y":-11},{"x":7,"y":133},{"x":75,"y":108},{"x":89,"y":45},{"x":69,"y":-24},{"x":183,"y":76},{"x":173,"y":150},{"x":181,"y":80},{"x":-173,"y":145},{"x":-41,"y":151},{"x":-80,"y":46},{"x":-14,"y":64},{"x":5,"y":-47},{"x":-30,"y":46},{"x":-73,"y":-9},{"x":-161,"y":74},{"x":6,"y":241},{"x":84,"y":213},{"x":171,"y":45},{"x":159,"y":-55},{"x":156,"y":10},{"x":281,"y":335},{"x":136,"y":88},{"x":46,"y":-1},{"x":6,"y":45},{"x":167,"y":98},{"x":72,"y":1},{"x":5,"y":29},{"x":126,"y":82},{"x":55,"y":-7},{"x":13,"y":88},{"x":173,"y":123},{"x":364,"y":665},{"x":82,"y":34},{"x":31,"y":31},{"x":39,"y":-11},{"x":-39,"y":13},{"x":-51,"y":-33},{"x":-5,"y":28},{"x":-11,"y":-26},{"x":0,"y":78},{"x":6,"y":-47},{"x":22,"y":64},{"x":20,"y":13},{"x":14,"y":-58},{"x":-9,"y":50},{"x":53,"y":20},{"x":32,"y":-28},{"x":-12,"y":-46},{"x":13,"y":46},{"x":-15,"y":33},{"x":50,"y":40},{"x":167,"y":26},{"x":65,"y":-17},{"x":47,"y":-178},{"x":2,"y":39},{"x":36,"y":-23},{"x":-48,"y":-35},{"x":98,"y":36},{"x":148,"y":-104},{"x":63,"y":-1},{"x":110,"y":-78},{"x":80,"y":-161},{"x":112,"y":-20},{"x":8,"y":-32},{"x":14,"y":8},{"x":-4,"y":-14},{"x":-21,"y":1},{"x":21,"y":-2},{"x":8,"y":27},{"x":55,"y":-10},{"x":28,"y":-75},{"x":44,"y":8},{"x":99,"y":-75},{"x":44,"y":12},{"x":6,"y":-47},{"x":74,"y":-71},{"x":56,"y":18},{"x":15,"y":-48},{"x":-31,"y":7},{"x":47,"y":-19},{"x":114,"y":-146},{"x":207,"y":-339},{"x":165,"y":-124},{"x":26,"y":19},{"x":112,"y":-63},{"x":92,"y":-109},{"x":236,"y":75},{"x":62,"y":-9},{"x":20,"y":26},{"x":56,"y":-41},{"x":-14,"y":-33},{"x":52,"y":100},{"x":59,"y":-5},{"x":30,"y":39},{"x":77,"y":-58}],"type":"coastline"},{"arc":[{"x":172781,"y":129945},{"x":-141,"y":7},{"x":-2,"y":19},{"x":-71,"y":-20},{"x":-92,"y":-79},{"x":-69,"y":4},{"x":-211,"y":-216},{"x":-56,"y":-27},{"x":12,"y":27},{"x":-27,"y":3},{"x":12,"y":-22},{"x":-49,"y":-29},{"x":-54,"y":10},{"x":60,"y":17},{"x":-167,"y":-32},{"x":-51,"y":48},{"x":-104,"y":-38},{"x":-67,"y":15},{"x":-267,"y":-107},{"x":-95,"y":-8},{"x":-65,"y":-53},{"x":-75,"y":-16},{"x":-84,"y":-82},{"x":-70,"y":-241},{"x":-33,"y":-21},{"x":-13,"y":18},{"x":-34,"y":-11},{"x":31,"y":6},{"x":-7,"y":-26},{"x":-53,"y":6},{"x":49,"y":46},{"x":-83,"y":-67},{"x":118,"y":-40},{"x":71,"y":-177},{"x":83,"y":29},{"x":200,"y":7},{"x":129,"y":-62},{"x":202,"y":44},{"x":164,"y":-102},{"x":24,"y":21},{"x":37,"y":-49},{"x":44,"y":-11},{"x":50,"y":49},{"x":95,"y":-35},{"x":155,"y":114},{"x":1,"y":27},{"x":83,"y":4},{"x":102,"y":79},{"x":30,"y":100},{"x":-31,"y":114},{"x":64,"y":97},{"x":71,"y":368},{"x":38,"y":42},{"x":-13,"y":69},{"x":57,"y":104},{"x":133,"y":61},{"x":-31,"y":16}],"type":"coastline"},{"arc":[{"x":188498,"y":150185},{"x":-60,"y":-5},{"x":-65,"y":104},{"x":-62,"y":-28},{"x":-117,"y":25},{"x":-40,"y":69},{"x":17,"y":68},{"x":-38,"y":68},{"x":8,"y":136},{"x":-32,"y":81},{"x":-98,"y":33},{"x":-153,"y":-88},{"x":-33,"y":63},{"x":-49,"y":-19},{"x":-171,"y":127},{"x":-29,"y":59},{"x":-86,"y":16},{"x":-33,"y":-96},{"x":-72,"y":-46},{"x":-114,"y":36},{"x":-67,"y":-121},{"x":-32,"y":1},{"x":-133,"y":-124},{"x":-164,"y":33},{"x":-29,"y":-35},{"x":-6,"y":-154},{"x":-47,"y":-37},{"x":-45,"y":22},{"x":0,"y":40},{"x":-63,"y":-9},{"x":25,"y":39},{"x":-43,"y":14},{"x":-11,"y":-49},{"x":-59,"y":26},{"x":-46,"y":-28},{"x":-131,"y":9},{"x":-47,"y":-29},{"x":-17,"y":38},{"x":-61,"y":-15},{"x":-183,"y":134},{"x":-114,"y":23},{"x":99,"y":316}],"type":"area"},{"arc":[{"x":186097,"y":150882},{"x":-108,"y":-18},{"x":-10,"y":-90},{"x":-68,"y":-104},{"x":-3,"y":-44},{"x":90,"y":-93},{"x":-46,"y":-29},{"x":-3,"y":-311},{"x":42,"y":-143},{"x":-50,"y":-144},{"x":98,"y":-81},{"x":-15,"y":-68},{"x":31,"y":-34},{"x":-160,"y":-202},{"x":1,"y":-109},{"x":42,"y":-44},{"x":-7,"y":-166},{"x":41,"y":-117},{"x":91,"y":-37},{"x":110,"y":-217},{"x":70,"y":-19},{"x":45,"y":-202},{"x":-37,"y":-137},{"x":-64,"y":-55},{"x":2,"y":-65},{"x":39,"y":22},{"x":94,"y":-26},{"x":73,"y":-119},{"x":35,"y":15},{"x":58,"y":132},{"x":64,"y":2},{"x":114,"y":-83},{"x":72,"y":-14},{"x":4,"y":-444},{"x":-20,"y":-112},{"x":-22,"y":15},{"x":-60,"y":-126},{"x":32,"y":-114},{"x":153,"y":-259},{"x":102,"y":-552},{"x":63,"y":-11},{"x":-97,"y":-199},{"x":31,"y":-338},{"x":-122,"y":-310},{"x":3,"y":-95},{"x":-158,"y":-136},{"x":-49,"y":-114},{"x":55,"y":-181}],"type":"area"},{"arc":[{"x":186653,"y":145306},{"x":45,"y":-16},{"x":-34,"y":119},{"x":15,"y":96},{"x":291,"y":409},{"x":-23,"y":85},{"x":102,"y":31},{"x":69,"y":115},{"x":8,"y":61},{"x":-43,"y":54},{"x":34,"y":128},{"x":-128,"y":234},{"x":99,"y":88},{"x":165,"y":-52},{"x":67,"y":13},{"x":43,"y":-37},{"x":99,"y":30},{"x":-37,"y":96},{"x":27,"y":78},{"x":-62,"y":98},{"x":13,"y":69},{"x":-51,"y":-6},{"x":-121,"y":52},{"x":-130,"y":100},{"x":-16,"y":67},{"x":193,"y":46},{"x":33,"y":-39},{"x":40,"y":2},{"x":160,"y":262},{"x":134,"y":18},{"x":69,"y":-63},{"x":52,"y":-4},{"x":11,"y":99},{"x":50,"y":25},{"x":-40,"y":72},{"x":18,"y":57},{"x":97,"y":-5},{"x":20,"y":120},{"x":63,"y":13},{"x":-44,"y":90},{"x":83,"y":18},{"x":35,"y":-19},{"x":124,"y":73},{"x":19,"y":-18},{"x":80,"y":23},{"x":142,"y":250},{"x":131,"y":-56},{"x":105,"y":-92},{"x":121,"y":64},{"x":77,"y":-35},{"x":56,"y":116},{"x":71,"y":11},{"x":43,"y":218},{"x":209,"y":15},{"x":155,"y":145},{"x":7,"y":112},{"x":-66,"y":170},{"x":32,"y":48},{"x":91,"y":34},{"x":-4,"y":190},{"x":-61,"y":59},{"x":2,"y":100},{"x":107,"y":21},{"x":9,"y":127},{"x":67,"y":-48},{"x":59,"y":39},{"x":27,"y":-25},{"x":33,"y":48},{"x":113,"y":-24},{"x":47,"y":59}],"type":"admin"},{"arc":[{"x":189855,"y":149534},{"x":11,"y":59},{"x":-54,"y":176},{"x":-97,"y":5},{"x":-65,"y":-70},{"x":-187,"y":73},{"x":-60,"y":-13},{"x":-31,"y":51},{"x":-107,"y":20},{"x":-85,"y":64},{"x":-54,"y":-6},{"x":-59,"y":-52},{"x":-89,"y":76},{"x":-70,"y":-9},{"x":-17,"y":46},{"x":-134,"y":19},{"x":-129,"y":136},{"x":-130,"y":76}],"type":"area"},{"arc":[{"x":186097,"y":150882},{"x":15,"y":77},{"x":64,"y":68},{"x":0,"y":71},{"x":-82,"y":100},{"x":-64,"y":-7},{"x":-54,"y":88},{"x":-130,"y":23},{"x":-58,"y":-43},{"x":-73,"y":34},{"x":-86,"y":-65},{"x":-83,"y":28},{"x":-84,"y":-8},{"x":-57,"y":46},{"x":-48,"y":-28},{"x":-99,"y":88},{"x":-115,"y":18},{"x":-34,"y":64},{"x":29,"y":30},{"x":-67,"y":67},{"x":-119,"y":-11},{"x":-18,"y":44},{"x":-83,"y":11},{"x":2,"y":33},{"x":-145,"y":42},{"x":17,"y":43},{"x":-124,"y":171},{"x":-78,"y":29},{"x":-104,"y":-96},{"x":-89,"y":9}],"type":"area"},{"arc":[{"x":184330,"y":151808},{"x":-234,"y":34},{"x":-54,"y":53},{"x":-53,"y":-13},{"x":-14,"y":-38},{"x":-34,"y":47},{"x":-74,"y":-95},{"x":-148,"y":-29},{"x":-94,"y":-84},{"x":-64,"y":6},{"x":-65,"y":72},{"x":-188,"y":-381},{"x":-71,"y":-75},{"x":-72,"y":-22},{"x":-134,"y":55},{"x":-64,"y":-121},{"x":-118,"y":-24},{"x":-72,"y":-52},{"x":-48,"y":8},{"x":-83,"y":106},{"x":-76,"y":20},{"x":-31,"y":-29},{"x":-80,"y":11},{"x":-155,"y":-65},{"x":-261,"y":3}],"type":"area"},{"arc":[{"x":182043,"y":151195},{"x":-39,"y":-178},{"x":15,"y":-65},{"x":-96,"y":-33},{"x":-42,"y":-145},{"x":32,"y":-85},{"x":-47,"y":-197},{"x":66,"y":-50},{"x":4,"y":-48},{"x":61,"y":-92},{"x":59,"y":-25},{"x":19,"y":-58},{"x":-85,"y":-231},{"x":45,"y":-105},{"x":99,"y":-20},{"x":143,"y":-98},{"x":73,"y":-12},{"x":31,"y":-44},{"x":81,"y":6},{"x":20,"y":-84},{"x":39,"y":-18},{"x":111,"y":24},{"x":49,"y":-128},{"x":149,"y":-130},{"x":103,"y":29},{"x":72,"y":75},{"x":87,"y":34},{"x":118,"y":-113},{"x":80,"y":93},{"x":48,"y":-50},{"x":110,"y":55},{"x":60,"y":-75},{"x":232,"y":-17},{"x":67,"y":-41},{"x":23,"y":-80},{"x":50,"y":-21},{"x":-8,"y":-97},{"x":-207,"y":-169},{"x":-42,"y":-117},{"x":-185,"y":-112},{"x":65,"y":-159},{"x":-24,"y":-118},{"x":158,"y":-148},{"x":-12,"y":-75},{"x":81,"y":-361},{"x":-50,"y":-11},{"x":51,"y":-267},{"x":-95,"y":-10},{"x":-32,"y":-30},{"x":-87,"y":-166},{"x":-20,"y":-181},{"x":-184,"y":-82},{"x":75,"y":-15},{"x":144,"y":95},{"x":125,"y":-121},{"x":65,"y":-151},{"x":99,"y":-6},{"x":19,"y":-31},{"x":122,"y":21},{"x":117,"y":-125},{"x":91,"y":99},{"x":122,"y":-84}],"type":"area"},{"arc":[{"x":186401,"y":145036},{"x":98,"y":51},{"x":46,"y":67},{"x":-10,"y":46},{"x":118,"y":106}],"type":"admin"},{"arc":[{"x":182043,"y":151195},{"x":-113,"y":41},{"x":-110,"y":-18},{"x":-37,"y":20},{"x":-90,"y":-108},{"x":-157,"y":-31},{"x":-109,"y":-84},{"x":-47,"y":14},{"x":-48,"y":-30},{"x":-130,"y":81},{"x":-33,"y":-84},{"x":-67,"y":20},{"x":-87,"y":-87},{"x":-105,"y":-9},{"x":-58,"y":59},{"x":-67,"y":-11},{"x":-85,"y":108},{"x":-159,"y":37},{"x":-152,"y":205},{"x":-42,"y":206},{"x":-67,"y":33},{"x":-36,"y":-12},{"x":-38,"y":53},{"x":-77,"y":-77},{"x":-35,"y":-120},{"x":-96,"y":-128},{"x":-72,"y":23},{"x":-200,"y":-92}],"type":"area"},{"arc":[{"x":179726,"y":151204},{"x":57,"y":-60},{"x":-44,"y":-73},{"x":-151,"y":-59},{"x":72,"y":-127},{"x":-37,"y":-121},{"x":-70,"y":2},{"x":-27,"y":-98},{"x":-74,"y":-72},{"x":-8,"y":-123},{"x":60,"y":-22},{"x":15,"y":-45},{"x":-83,"y":-118},{"x":39,"y":-78},{"x":-67,"y":-69},{"x":-202,"y":9},{"x":7,"y":-60},{"x":-72,"y":-78},{"x":-44,"y":-131},{"x":-103,"y":14},{"x":-30,"y":-47},{"x":-66,"y":6},{"x":-239,"y":-207},{"x":51,"y":-126},{"x":-131,"y":-75},{"x":20,"y":-88},{"x":-127,"y":-163},{"x":-39,"y":-127},{"x":44,"y":-102},{"x":-119,"y":-92},{"x":65,"y":-92},{"x":-2,"y":-74},{"x":346,"y":-163},{"x":75,"y":-85},{"x":20,"y":-87},{"x":100,"y":-28},{"x":117,"y":-265},{"x":86,"y":-79}],"type":"admin"},{"arc":[{"x":197959,"y":150060},{"x":-59,"y":24},{"x":-2,"y":37},{"x":-94,"y":86},{"x":-149,"y":62},{"x":-144,"y":-81},{"x":-24,"y":125},{"x":-149,"y":-29},{"x":-10,"y":35},{"x":-47,"y":9},{"x":-172,"y":-70},{"x":-73,"y":14},{"x":-65,"y":103},{"x":-18,"y":109},{"x":116,"y":138},{"x":124,"y":30},{"x":34,"y":93},{"x":-18,"y":49},{"x":37,"y":63},{"x":-52,"y":38},{"x":-40,"y":182},{"x":48,"y":137},{"x":-106,"y":30},{"x":-79,"y":-35},{"x":-137,"y":24},{"x":-2,"y":97},{"x":-91,"y":126},{"x":-290,"y":-74},{"x":-20,"y":49},{"x":-74,"y":21},{"x":-108,"y":101},{"x":-158,"y":24},{"x":-39,"y":114},{"x":38,"y":131},{"x":-48,"y":34},{"x":-41,"y":251},{"x":-53,"y":11},{"x":-175,"y":171},{"x":-258,"y":-104},{"x":-120,"y":60},{"x":-85,"y":146},{"x":-100,"y":72},{"x":11,"y":248},{"x":-68,"y":1},{"x":-51,"y":49},{"x":-133,"y":7},{"x":-25,"y":103},{"x":-107,"y":-9},{"x":43,"y":140},{"x":251,"y":113},{"x":54,"y":97},{"x":4,"y":202},{"x":-137,"y":11},{"x":-25,"y":162},{"x":-42,"y":28},{"x":41,"y":158},{"x":-32,"y":122},{"x":25,"y":139},{"x":-69,"y":40}],"type":"admin"},{"arc":[{"x":194996,"y":154074},{"x":-85,"y":-18},{"x":-45,"y":97},{"x":-110,"y":-51},{"x":-109,"y":-114},{"x":-42,"y":17},{"x":-54,"y":-44},{"x":-71,"y":32},{"x":-48,"y":75},{"x":-72,"y":-143},{"x":-80,"y":-58},{"x":-137,"y":-17},{"x":-138,"y":-138},{"x":-123,"y":-57},{"x":-60,"y":36},{"x":-220,"y":-104},{"x":-89,"y":-5},{"x":-18,"y":59},{"x":48,"y":126},{"x":-22,"y":97},{"x":30,"y":238},{"x":95,"y":33},{"x":74,"y":120},{"x":170,"y":104},{"x":34,"y":71},{"x":46,"y":19},{"x":-5,"y":104},{"x":44,"y":30},{"x":-174,"y":70},{"x":-45,"y":-29},{"x":-31,"y":117},{"x":34,"y":54},{"x":-78,"y":78},{"x":23,"y":73},{"x":34,"y":-5},{"x":56,"y":72},{"x":-64,"y":74},{"x":11,"y":43},{"x":-74,"y":55},{"x":50,"y":174},{"x":-38,"y":77},{"x":34,"y":56},{"x":10,"y":161},{"x":-120,"y":-69},{"x":-80,"y":87},{"x":-56,"y":-85},{"x":-48,"y":-19},{"x":-80,"y":-150},{"x":-119,"y":27},{"x":-90,"y":65},{"x":-89,"y":-58},{"x":-83,"y":45},{"x":-86,"y":-21},{"x":-30,"y":-72},{"x":-31,"y":32},{"x":-67,"y":-46},{"x":-59,"y":2},{"x":-10,"y":-53},{"x":-61,"y":-49},{"x":-106,"y":2},{"x":6,"y":121},{"x":-30,"y":47},{"x":-107,"y":16},{"x":-38,"y":-27},{"x":-61,"y":37},{"x":-21,"y":-29},{"x":-110,"y":43},{"x":-136,"y":-40},{"x":-63,"y":17},{"x":-35,"y":143},{"x":-93,"y":59},{"x":-16,"y":55},{"x":-84,"y":58},{"x":-134,"y":13},{"x":-52,"y":57},{"x":-99,"y":-85},{"x":-84,"y":15},{"x":-54,"y":46},{"x":-54,"y":-28},{"x":-37,"y":30},{"x":-54,"y":-36},{"x":-56,"y":82},{"x":-29,"y":-21},{"x":-128,"y":48},{"x":-61,"y":-40},{"x":-46,"y":-107},{"x":42,"y":-65},{"x":-28,"y":-133},{"x":-61,"y":4},{"x":-42,"y":37},{"x":-90,"y":-27},{"x":-26,"y":32},{"x":-54,"y":-17},{"x":-47,"y":75},{"x":-132,"y":72},{"x":-88,"y":-49},{"x":-12,"y":23},{"x":-72,"y":-3},{"x":-54,"y":107},{"x":-147,"y":-79},{"x":-51,"y":27},{"x":-48,"y":88},{"x":-69,"y":29},{"x":-108,"y":-96},{"x":-71,"y":78},{"x":-130,"y":-18},{"x":15,"y":122},{"x":-103,"y":66},{"x":-60,"y":-31},{"x":-131,"y":65},{"x":-80,"y":-25},{"x":-46,"y":-83},{"x":-102,"y":16},{"x":-14,"y":-32},{"x":-106,"y":-38}],"type":"admin"},{"arc":[{"x":188951,"y":155910},{"x":-27,"y":-106},{"x":-73,"y":-45},{"x":19,"y":-93},{"x":-28,"y":-58},{"x":-61,"y":-20},{"x":-49,"y":-80},{"x":-78,"y":-2},{"x":-64,"y":-108},{"x":11,"y":-141},{"x":58,"y":-19},{"x":53,"y":-141},{"x":101,"y":-82},{"x":26,"y":-87},{"x":53,"y":-10},{"x":26,"y":-79},{"x":52,"y":0},{"x":0,"y":-54},{"x":181,"y":-19},{"x":42,"y":-69},{"x":143,"y":-37},{"x":184,"y":-264},{"x":84,"y":10},{"x":-110,"y":-354},{"x":181,"y":-257},{"x":-58,"y":-185},{"x":-71,"y":7},{"x":-28,"y":-48},{"x":-53,"y":-273},{"x":-125,"y":-88},{"x":-7,"y":-125},{"x":-70,"y":-52},{"x":-40,"y":-120},{"x":-95,"y":-66},{"x":-81,"y":7},{"x":-72,"y":-31},{"x":94,"y":-163},{"x":-11,"y":-104},{"x":87,"y":-58},{"x":-82,"y":-87},{"x":-39,"y":28},{"x":-128,"y":-42},{"x":-47,"y":-69},{"x":110,"y":-95},{"x":38,"y":-336},{"x":48,"y":-51},{"x":-79,"y":-276},{"x":43,"y":-117},{"x":-28,"y":-40},{"x":-103,"y":-14},{"x":17,"y":-93},{"x":-75,"y":-88},{"x":104,"y":-253},{"x":57,"y":-32},{"x":-71,"y":-62},{"x":-17,"y":-279},{"x":-97,"y":-93},{"x":-67,"y":-23},{"x":-66,"y":-120},{"x":-165,"y":-169}],"type":"area"},{"arc":[{"x":189855,"y":149534},{"x":69,"y":-86},{"x":132,"y":116},{"x":85,"y":-59},{"x":244,"y":-78},{"x":113,"y":124},{"x":75,"y":23},{"x":50,"y":54},{"x":32,"y":-45},{"x":43,"y":-5},{"x":80,"y":31},{"x":117,"y":-35},{"x":67,"y":34}],"type":"admin"},{"arc":[{"x":190962,"y":149608},{"x":164,"y":98},{"x":61,"y":0},{"x":66,"y":-49},{"x":1,"y":-139},{"x":67,"y":-52},{"x":4,"y":-83},{"x":88,"y":-25},{"x":70,"y":56},{"x":18,"y":-38},{"x":60,"y":-19},{"x":70,"y":179},{"x":141,"y":-33},{"x":15,"y":-48},{"x":46,"y":11},{"x":59,"y":-90},{"x":-43,"y":-60},{"x":48,"y":-67},{"x":55,"y":78},{"x":146,"y":-68},{"x":92,"y":228},{"x":117,"y":-24},{"x":42,"y":-40},{"x":35,"y":56},{"x":108,"y":-42},{"x":94,"y":57},{"x":81,"y":-99},{"x":11,"y":-90},{"x":235,"y":-63},{"x":67,"y":23},{"x":9,"y":-42},{"x":146,"y":-40},{"x":14,"y":76},{"x":97,"y":35},{"x":24,"y":134},{"x":56,"y":36},{"x":3,"y":64},{"x":81,"y":44},{"x":15,"y":51},{"x":86,"y":20},{"x":35,"y":37},{"x":17,"y":167},{"x":249,"y":74},{"x":40,"y":-20},{"x":49,"y":18},{"x":81,"y":-43},{"x":48,"y":15},{"x":7,"y":-199},{"x":75,"y":-50},{"x":-6,"y":-55},{"x":108,"y":-36},{"x":53,"y":-104},{"x":149,"y":-111},{"x":220,"y":114},{"x":76,"y":-63},{"x":55,"y":6},{"x":105,"y":-53},{"x":86,"y":-8},{"x":34,"y":-141},{"x":89,"y":-102},{"x":67,"y":-12},{"x":41,"y":54},{"x":85,"y":-2},{"x":49,"y":-86},{"x":84,"y":9},{"x":34,"y":37},{"x":35,"y":-44},{"x":51,"y":-3},{"x":76,"y":52},{"x":39,"y":-94},{"x":131,"y":-26},{"x":37,"y":23},{"x":95,"y":-69},{"x":41,"y":57},{"x":-11,"y":35},{"x":138,"y":6},{"x":52,"y":-67},{"x":142,"y":55},{"x":41,"y":-115},{"x":167,"y":-66},{"x":143,"y":104},{"x":70,"y":-20},{"x":78,"y":42},{"x":85,"y":-12},{"x":24,"y":39},{"x":123,"y":40},{"x":40,"y":-31},{"x":129,"y":61},{"x":142,"y":-54},{"x":94,"y":90},{"x":42,"y":-40},{"x":37,"y":23},{"x":62,"y":-10},{"x":92,"y":-122},{"x":63,"y":-7},{"x":64,"y":88},{"x":106,"y":3},{"x":32,"y":139},{"x":57,"y":5},{"x":30,"y":67}],"type":"admin"},{"arc":[{"x":197988,"y":149238},{"x":-11,"y":18},{"x":-39,"y":-20},{"x":-19,"y":48},{"x":4,"y":95},{"x":31,"y":14},{"x":-33,"y":64},{"x":49,"y":324},{"x":-51,"y":183},{"x":40,"y":96}],"type":"admin"},{"arc":[{"x":188951,"y":155910},{"x":-88,"y":-13},{"x":-5,"y":91},{"x":-30,"y":13},{"x":-53,"y":-61},{"x":-42,"y":44},{"x":-36,"y":-22},{"x":-43,"y":72},{"x":49,"y":106},{"x":5,"y":228},{"x":155,"y":321},{"x":-146,"y":136},{"x":-62,"y":104},{"x":59,"y":194},{"x":-97,"y":131},{"x":-34,"y":12},{"x":-71,"y":-54},{"x":-33,"y":-81},{"x":-79,"y":-33},{"x":-82,"y":-113},{"x":-96,"y":28},{"x":-25,"y":-47},{"x":-83,"y":33},{"x":-56,"y":-99},{"x":-122,"y":74},{"x":-84,"y":-70},{"x":-103,"y":9},{"x":-99,"y":111},{"x":-33,"y":174},{"x":-141,"y":-257},{"x":-31,"y":-12},{"x":-52,"y":30},{"x":-94,"y":-20},{"x":-35,"y":-49},{"x":-126,"y":19},{"x":-23,"y":-21},{"x":-136,"y":136},{"x":35,"y":74},{"x":-48,"y":137},{"x":40,"y":95},{"x":-49,"y":84},{"x":-48,"y":0},{"x":0,"y":43},{"x":69,"y":79},{"x":-7,"y":89},{"x":90,"y":132},{"x":2,"y":141},{"x":81,"y":71},{"x":-10,"y":119},{"x":-57,"y":64},{"x":-195,"y":86},{"x":-131,"y":-84},{"x":-136,"y":22}],"type":"admin"},{"arc":[{"x":186615,"y":158176},{"x":-13,"y":-89},{"x":-142,"y":-107},{"x":-96,"y":-6},{"x":-28,"y":-50},{"x":-87,"y":17},{"x":-104,"y":177},{"x":-48,"y":-14},{"x":-32,"y":61},{"x":-83,"y":30},{"x":-110,"y":-146},{"x":-110,"y":-48},{"x":-87,"y":-101},{"x":-77,"y":-2},{"x":-44,"y":49}],"type":"admin"},{"arc":[{"x":185554,"y":157947},{"x":-68,"y":-64},{"x":-42,"y":-141},{"x":-155,"y":-202},{"x":-26,"y":-157},{"x":-56,"y":-12},{"x":-31,"y":-66},{"x":74,"y":-149},{"x":-14,"y":-40},{"x":-106,"y":-42},{"x":-46,"y":-74},{"x":-108,"y":18},{"x":-55,"y":-78},{"x":44,"y":-195},{"x":59,"y":-102},{"x":-46,"y":-14},{"x":-78,"y":-126},{"x":94,"y":-111},{"x":94,"y":-46},{"x":177,"y":-244},{"x":50,"y":-244},{"x":-49,"y":-22},{"x":4,"y":-87},{"x":-64,"y":-5},{"x":-91,"y":-82},{"x":-120,"y":29},{"x":-76,"y":-24},{"x":-59,"y":-92},{"x":82,"y":-183},{"x":-12,"y":-54},{"x":-19,"y":-13},{"x":-47,"y":57},{"x":-82,"y":-8},{"x":-30,"y":-65},{"x":-93,"y":-55},{"x":-68,"y":-165},{"x":-63,"y":0},{"x":-156,"y":-191},{"x":-33,"y":-96},{"x":-143,"y":-123},{"x":-3,"y":-77},{"x":-177,"y":-28},{"x":-145,"y":-192}],"type":"admin"},{"arc":[{"x":183871,"y":154382},{"x":41,"y":-87},{"x":41,"y":12},{"x":139,"y":-183},{"x":165,"y":-125},{"x":79,"y":-126},{"x":17,"y":-96},{"x":189,"y":-133},{"x":54,"y":-12},{"x":33,"y":53},{"x":129,"y":-149},{"x":25,"y":-57},{"x":-57,"y":-79},{"x":14,"y":-63},{"x":-51,"y":-53},{"x":53,"y":-58},{"x":22,"y":-108},{"x":-91,"y":-136},{"x":42,"y":-200},{"x":51,"y":-89},{"x":252,"y":-222},{"x":117,"y":-67},{"x":-17,"y":-47},{"x":-51,"y":31},{"x":-93,"y":-32},{"x":27,"y":-44},{"x":-31,"y":-37},{"x":74,"y":-44},{"x":-32,"y":-67},{"x":-305,"y":3},{"x":-93,"y":-45},{"x":-212,"y":11},{"x":-33,"y":-39},{"x":18,"y":-60},{"x":-40,"y":-49},{"x":32,"y":-25},{"x":-49,"y":-152}],"type":"area"},{"arc":[{"x":183871,"y":154382},{"x":-58,"y":-84},{"x":-67,"y":-30},{"x":-9,"y":43},{"x":-179,"y":135},{"x":-61,"y":90},{"x":-174,"y":110},{"x":-50,"y":175},{"x":-39,"y":34},{"x":63,"y":111},{"x":-109,"y":63},{"x":-4,"y":-107},{"x":-51,"y":-54},{"x":-123,"y":-14},{"x":-81,"y":-82},{"x":-90,"y":33},{"x":-18,"y":-33},{"x":-89,"y":-11},{"x":-118,"y":11},{"x":-189,"y":85},{"x":-55,"y":-1},{"x":-99,"y":-102},{"x":-82,"y":64},{"x":-72,"y":-70},{"x":-128,"y":25},{"x":-77,"y":42},{"x":-4,"y":54},{"x":-95,"y":111},{"x":-66,"y":-6},{"x":-51,"y":57},{"x":-75,"y":-18},{"x":-67,"y":95},{"x":-113,"y":-114},{"x":-92,"y":23},{"x":-262,"y":-18},{"x":-32,"y":-38},{"x":19,"y":-59},{"x":-78,"y":-60},{"x":-47,"y":47},{"x":-140,"y":-112},{"x":-74,"y":53},{"x":-109,"y":-132},{"x":-167,"y":156},{"x":-156,"y":10},{"x":-53,"y":42},{"x":-59,"y":-22},{"x":-162,"y":29}],"type":"admin"},{"arc":[{"x":180029,"y":154913},{"x":-77,"y":-105}],"type":"admin"},{"arc":[{"x":179952,"y":154808},{"x":46,"y":-102},{"x":-166,"y":-152},{"x":-43,"y":-136},{"x":28,"y":-101},{"x":-83,"y":-93},{"x":41,"y":-268},{"x":-124,"y":-139},{"x":-53,"y":-186},{"x":-189,"y":-99},{"x":-21,"y":-40},{"x":-155,"y":-3},{"x":-112,"y":-87},{"x":-7,"y":-74},{"x":-55,"y":-41},{"x":-2,"y":-89},{"x":72,"y":-21},{"x":-8,"y":-30},{"x":56,"y":-53},{"x":-89,"y":-145},{"x":7,"y":-34},{"x":47,"y":-4},{"x":-7,"y":-46},{"x":43,"y":-45},{"x":-83,"y":-93},{"x":24,"y":-69},{"x":-54,"y":-177},{"x":103,"y":-80},{"x":-1,"y":-41},{"x":60,"y":-20},{"x":49,"y":-123},{"x":-20,"y":-82},{"x":-165,"y":43},{"x":-75,"y":-57},{"x":-64,"y":-9},{"x":-118,"y":-116},{"x":41,"y":-164},{"x":-73,"y":-162},{"x":66,"y":-115}],"type":"admin"},{"arc":[{"x":178868,"y":151555},{"x":93,"y":69},{"x":73,"y":-1},{"x":94,"y":-163},{"x":123,"y":-40},{"x":21,"y":-48},{"x":72,"y":4},{"x":3,"y":-136},{"x":85,"y":-90},{"x":54,"y":4},{"x":114,"y":83},{"x":126,"y":-33}],"type":"admin"},{"arc":[{"x":193595,"y":143755},{"x":-28,"y":36},{"x":22,"y":-31},{"x":-33,"y":-1},{"x":-52,"y":64},{"x":-59,"y":-30},{"x":0,"y":23},{"x":-104,"y":-116},{"x":-17,"y":-210},{"x":72,"y":5},{"x":57,"y":109},{"x":142,"y":151}],"type":"coastline"},{"arc":[{"x":193635,"y":144529},{"x":-57,"y":37},{"x":9,"y":-24},{"x":-76,"y":13},{"x":-52,"y":-25},{"x":16,"y":-283},{"x":37,"y":-69},{"x":80,"y":129},{"x":43,"y":222}],"type":"coastline"},{"arc":[{"x":190962,"y":149608},{"x":44,"y":-163},{"x":-122,"y":-54},{"x":-103,"y":-130},{"x":51,"y":-73},{"x":-57,"y":-74},{"x":33,"y":-194},{"x":-66,"y":-149},{"x":53,"y":-146},{"x":-51,"y":-25},{"x":-88,"y":36},{"x":-41,"y":-33},{"x":-26,"y":38},{"x":-101,"y":-56},{"x":18,"y":-84},{"x":64,"y":-30},{"x":-2,"y":-53},{"x":-22,"y":-61},{"x":-77,"y":-32},{"x":-76,"y":-216},{"x":120,"y":-337},{"x":-21,"y":-42},{"x":-32,"y":6},{"x":-39,"y":-92},{"x":-103,"y":-4},{"x":-61,"y":-81},{"x":83,"y":-247},{"x":78,"y":-67},{"x":43,"y":-22},{"x":121,"y":57},{"x":40,"y":-31},{"x":121,"y":-16},{"x":208,"y":-186},{"x":23,"y":-115},{"x":61,"y":-87},{"x":182,"y":76},{"x":3,"y":-81},{"x":127,"y":-86},{"x":3,"y":-96},{"x":87,"y":-95},{"x":-57,"y":-233}],"type":"area"},{"arc":[{"x":191380,"y":146330},{"x":138,"y":-26},{"x":177,"y":40},{"x":472,"y":-81},{"x":230,"y":-2},{"x":32,"y":52},{"x":-50,"y":-42},{"x":20,"y":75},{"x":16,"y":-25},{"x":-23,"y":52},{"x":78,"y":81},{"x":84,"y":53},{"x":239,"y":70},{"x":60,"y":22},{"x":34,"y":28},{"x":3,"y":-3},{"x":31,"y":17},{"x":28,"y":-3},{"x":23,"y":-10},{"x":-5,"y":12},{"x":-36,"y":2},{"x":-38,"y":-13},{"x":-8,"y":9},{"x":16,"y":4},{"x":1,"y":21},{"x":17,"y":-10},{"x":-18,"y":39},{"x":28,"y":-40},{"x":11,"y":39},{"x":6,"y":-37},{"x":24,"y":61},{"x":15,"y":-59},{"x":-11,"y":65},{"x":152,"y":33},{"x":217,"y":209},{"x":146,"y":72},{"x":388,"y":111},{"x":377,"y":30},{"x":222,"y":-22},{"x":-16,"y":16},{"x":43,"y":18},{"x":187,"y":18},{"x":73,"y":38},{"x":18,"y":56},{"x":240,"y":64},{"x":657,"y":27},{"x":434,"y":-49},{"x":166,"y":-60},{"x":-31,"y":29},{"x":0,"y":28},{"x":4,"y":-24},{"x":28,"y":18},{"x":-15,"y":-26},{"x":44,"y":13},{"x":274,"y":-41},{"x":420,"y":-94},{"x":568,"y":-157},{"x":64,"y":-37},{"x":-9,"y":-34},{"x":12,"y":41},{"x":32,"y":-40},{"x":49,"y":15},{"x":-14,"y":-42},{"x":-52,"y":10},{"x":52,"y":-11},{"x":28,"y":29}],"type":"coastline"},{"arc":[{"x":197732,"y":146959},{"x":27,"y":30},{"x":119,"y":-24},{"x":560,"y":-174},{"x":114,"y":116},{"x":47,"y":127},{"x":142,"y":146},{"x":0,"y":90},{"x":72,"y":182},{"x":-5,"y":471},{"x":-335,"y":127},{"x":-240,"y":-11},{"x":-115,"y":329},{"x":-32,"y":13},{"x":-77,"y":-69},{"x":-24,"y":98},{"x":-63,"y":31},{"x":95,"y":32},{"x":30,"y":134},{"x":-132,"y":55},{"x":185,"y":247},{"x":-37,"y":41},{"x":-148,"y":-5},{"x":74,"y":43},{"x":-55,"y":21},{"x":-17,"y":41},{"x":124,"y":126},{"x":-53,"y":62}],"type":"area"},{"arc":[{"x":189048,"y":146074},{"x":32,"y":28},{"x":100,"y":5},{"x":-100,"y":-4},{"x":-32,"y":-29}],"type":"coastline"},{"arc":[{"x":186905,"y":143839},{"x":196,"y":129},{"x":31,"y":61},{"x":78,"y":10},{"x":44,"y":40},{"x":27,"y":-20},{"x":7,"y":38},{"x":66,"y":-15},{"x":70,"y":28},{"x":138,"y":121},{"x":76,"y":194},{"x":111,"y":165},{"x":22,"y":103},{"x":67,"y":80},{"x":-26,"y":74},{"x":30,"y":212},{"x":191,"y":131},{"x":26,"y":205},{"x":-22,"y":-32},{"x":-21,"y":14},{"x":21,"y":-39},{"x":-30,"y":-3},{"x":-21,"y":41},{"x":28,"y":74},{"x":66,"y":42},{"x":-22,"y":92},{"x":76,"y":36},{"x":13,"y":87},{"x":131,"y":93},{"x":22,"y":72},{"x":313,"y":161},{"x":33,"y":68},{"x":173,"y":57},{"x":67,"y":-45},{"x":45,"y":30},{"x":1,"y":-8},{"x":42,"y":-2},{"x":38,"y":9},{"x":34,"y":-20},{"x":-34,"y":23},{"x":-64,"y":-7},{"x":0,"y":24},{"x":-10,"y":-20},{"x":3,"y":25},{"x":-59,"y":15},{"x":-36,"y":71},{"x":45,"y":0},{"x":35,"y":-62},{"x":86,"y":26},{"x":-29,"y":-17},{"x":27,"y":1},{"x":-2,"y":-28},{"x":10,"y":40},{"x":104,"y":34},{"x":-9,"y":-58},{"x":40,"y":-40},{"x":15,"y":104},{"x":65,"y":-6},{"x":78,"y":43},{"x":81,"y":-13},{"x":-44,"y":13},{"x":43,"y":-6},{"x":36,"y":59},{"x":192,"y":35},{"x":522,"y":-1},{"x":587,"y":-69},{"x":170,"y":1},{"x":-37,"y":5},{"x":86,"y":34},{"x":433,"y":-18}],"type":"coastline"},{"arc":[{"x":200547,"y":151713},{"x":-136,"y":-202},{"x":119,"y":-178},{"x":184,"y":-394},{"x":-117,"y":-54},{"x":-49,"y":-148},{"x":36,"y":-120},{"x":-132,"y":-104},{"x":-28,"y":-59},{"x":-155,"y":18},{"x":-65,"y":-149},{"x":-46,"y":52},{"x":-73,"y":7},{"x":15,"y":55},{"x":-88,"y":8},{"x":-1,"y":57},{"x":-139,"y":29},{"x":-30,"y":-18},{"x":-23,"y":54},{"x":-111,"y":4},{"x":-43,"y":-12},{"x":-25,"y":-90},{"x":-145,"y":-47},{"x":-86,"y":28},{"x":-35,"y":-148},{"x":-82,"y":-59},{"x":-45,"y":-3},{"x":-3,"y":119},{"x":-32,"y":-16},{"x":-16,"y":25},{"x":-105,"y":-63},{"x":-41,"y":-72},{"x":-41,"y":13},{"x":-37,"y":-34},{"x":-162,"y":51},{"x":-71,"y":72},{"x":-96,"y":3},{"x":-86,"y":-115},{"x":-63,"y":-3},{"x":-55,"y":-98},{"x":-29,"y":-9},{"x":-46,"y":40},{"x":-106,"y":-14},{"x":-45,"y":-21},{"x":-38,"y":-77},{"x":-113,"y":-36},{"x":-86,"y":69},{"x":-17,"y":-14}],"type":"area"},{"arc":[{"x":197732,"y":146959},{"x":-3,"y":-35},{"x":16,"y":47},{"x":73,"y":-12},{"x":790,"y":-306},{"x":918,"y":-434},{"x":149,"y":-87},{"x":17,"y":-42},{"x":-16,"y":44},{"x":35,"y":-19},{"x":-13,"y":-27},{"x":14,"y":31},{"x":630,"y":-327},{"x":428,"y":-144},{"x":361,"y":29},{"x":337,"y":282},{"x":193,"y":83},{"x":128,"y":-16},{"x":31,"y":-66},{"x":-1,"y":69},{"x":5,"y":-41},{"x":32,"y":-14},{"x":-35,"y":-30},{"x":27,"y":4},{"x":11,"y":21},{"x":-13,"y":70},{"x":61,"y":71},{"x":159,"y":130},{"x":166,"y":82},{"x":164,"y":15},{"x":190,"y":-154},{"x":149,"y":-24},{"x":154,"y":-3},{"x":201,"y":77},{"x":59,"y":-5},{"x":-107,"y":184},{"x":11,"y":-41},{"x":-14,"y":32},{"x":-154,"y":79},{"x":-57,"y":164},{"x":33,"y":-128},{"x":-30,"y":45},{"x":-30,"y":-46},{"x":23,"y":-13},{"x":-92,"y":-9},{"x":-19,"y":30},{"x":78,"y":-15},{"x":-3,"y":53},{"x":-62,"y":-25},{"x":-7,"y":27},{"x":49,"y":17},{"x":-19,"y":25},{"x":-50,"y":2},{"x":34,"y":19},{"x":-23,"y":46},{"x":25,"y":18},{"x":-36,"y":2},{"x":0,"y":29},{"x":50,"y":1},{"x":-102,"y":17},{"x":53,"y":258},{"x":114,"y":36},{"x":-47,"y":77},{"x":30,"y":-5},{"x":-19,"y":16},{"x":-20,"y":-18},{"x":-32,"y":80},{"x":25,"y":253},{"x":141,"y":313},{"x":178,"y":208},{"x":196,"y":109},{"x":38,"y":-48},{"x":-2,"y":25},{"x":77,"y":-15},{"x":87,"y":47},{"x":39,"y":-2},{"x":1,"y":-25},{"x":76,"y":19},{"x":72,"y":107},{"x":82,"y":1},{"x":65,"y":160},{"x":0,"y":115},{"x":50,"y":70},{"x":-7,"y":78},{"x":-11,"y":-33},{"x":-43,"y":19},{"x":28,"y":39},{"x":-87,"y":92},{"x":-263,"y":64},{"x":-189,"y":180},{"x":-86,"y":203},{"x":-72,"y":41},{"x":-88,"y":2},{"x":-61,"y":84},{"x":-64,"y":13},{"x":19,"y":-31},{"x":-44,"y":8},{"x":27,"y":39},{"x":-34,"y":-41},{"x":-108,"y":68},{"x":-144,"y":165},{"x":-119,"y":244},{"x":-14,"y":-19},{"x":-5,"y":29},{"x":24,"y":-5},{"x":-144,"y":165},{"x":-251,"y":408},{"x":31,"y":23},{"x":-49,"y":-9},{"x":-602,"y":501},{"x":-14,"y":68},{"x":-5,"y":-44},{"x":2,"y":36},{"x":-39,"y":-11},{"x":-222,"y":177},{"x":-670,"y":638}],"type":"coastline"},{"arc":[{"x":200547,"y":151713},{"x":-336,"y":315},{"x":-41,"y":88},{"x":22,"y":-58},{"x":-216,"y":194},{"x":-505,"y":534},{"x":-13,"y":174},{"x":-80,"y":-47},{"x":-69,"y":49},{"x":1,"y":38},{"x":-42,"y":-14},{"x":-45,"y":83},{"x":29,"y":-23},{"x":15,"y":35},{"x":-74,"y":-7},{"x":-34,"y":118},{"x":-153,"y":-19},{"x":-99,"y":81},{"x":-22,"y":-43},{"x":-81,"y":28},{"x":-8,"y":52},{"x":2,"y":-39},{"x":-126,"y":165},{"x":-76,"y":22},{"x":-74,"y":98},{"x":0,"y":51},{"x":-56,"y":-48},{"x":-69,"y":4},{"x":-89,"y":98},{"x":-35,"y":2},{"x":8,"y":-26},{"x":34,"y":10},{"x":-50,"y":-36},{"x":7,"y":38},{"x":-20,"y":-28},{"x":-57,"y":11},{"x":34,"y":58},{"x":-36,"y":-36},{"x":-1,"y":-32},{"x":-89,"y":22},{"x":-225,"y":206},{"x":-55,"y":130},{"x":-116,"y":27},{"x":-22,"y":46},{"x":-22,"y":-11},{"x":-156,"y":84},{"x":-50,"y":64},{"x":10,"y":-29},{"x":-10,"y":21},{"x":-5,"y":-20},{"x":-58,"y":14},{"x":-94,"y":181},{"x":-9,"y":-31},{"x":-7,"y":31},{"x":-98,"y":24},{"x":-123,"y":142},{"x":-97,"y":-4},{"x":-115,"y":156},{"x":-132,"y":48},{"x":-100,"y":80},{"x":-231,"y":285},{"x":-70,"y":25},{"x":-192,"y":213},{"x":-23,"y":75},{"x":32,"y":36},{"x":-70,"y":-21},{"x":-146,"y":202}],"type":"coastline"},{"arc":[{"x":195919,"y":155599},{"x":-58,"y":-58},{"x":-102,"y":-31},{"x":-176,"y":-220},{"x":-108,"y":-77},{"x":-11,"y":-206},{"x":-44,"y":-30},{"x":68,"y":-164},{"x":-100,"y":-192},{"x":-11,"y":-113},{"x":-98,"y":-56},{"x":-40,"y":-85},{"x":-53,"y":39},{"x":-64,"y":-12},{"x":-52,"y":-132},{"x":6,"y":-89},{"x":-80,"y":-99}],"type":"admin"},{"arc":[{"x":201345,"y":142758},{"x":-134,"y":203},{"x":19,"y":56},{"x":-41,"y":-8},{"x":6,"y":-31},{"x":-75,"y":21},{"x":3,"y":181},{"x":-51,"y":91},{"x":54,"y":32},{"x":-19,"y":53},{"x":-76,"y":56},{"x":2,"y":-29},{"x":-103,"y":187},{"x":-137,"y":71},{"x":-35,"y":50},{"x":-127,"y":48},{"x":-320,"y":44},{"x":-116,"y":-153},{"x":-12,"y":15},{"x":-35,"y":-37},{"x":24,"y":48},{"x":-50,"y":-42},{"x":-69,"y":-129},{"x":-130,"y":-50},{"x":-20,"y":-44},{"x":35,"y":-47},{"x":-23,"y":3},{"x":-26,"y":-152},{"x":-81,"y":-135},{"x":27,"y":-83},{"x":54,"y":-1},{"x":66,"y":-175},{"x":116,"y":-88},{"x":32,"y":-104},{"x":87,"y":-110},{"x":87,"y":-33},{"x":72,"y":-90},{"x":28,"y":8},{"x":45,"y":-79},{"x":152,"y":-44},{"x":45,"y":30},{"x":34,"y":-98},{"x":52,"y":30},{"x":-32,"y":-5},{"x":19,"y":32},{"x":-34,"y":5},{"x":37,"y":54},{"x":40,"y":6},{"x":48,"y":-54},{"x":47,"y":30},{"x":84,"y":-55},{"x":59,"y":33},{"x":54,"y":112},{"x":98,"y":48},{"x":29,"y":111},{"x":117,"y":64},{"x":21,"y":43},{"x":-25,"y":20},{"x":69,"y":26},{"x":9,"y":65}],"type":"coastline"},{"arc":[{"x":201685,"y":141592},{"x":-5,"y":-17},{"x":23,"y":51},{"x":-18,"y":-34}],"type":"coastline"},{"arc":[{"x":203294,"y":140947},{"x":-74,"y":84},{"x":2,"y":-29},{"x":-25,"y":44},{"x":-50,"y":10},{"x":-10,"y":48},{"x":-37,"y":-18},{"x":-51,"y":49},{"x":-51,"y":166},{"x":70,"y":173},{"x":41,"y":9},{"x":0,"y":-28},{"x":5,"y":29},{"x":60,"y":-8},{"x":-37,"y":-41},{"x":125,"y":32},{"x":-96,"y":122},{"x":-254,"y":139},{"x":-27,"y":-43},{"x":-50,"y":18},{"x":32,"y":-13},{"x":-118,"y":-49},{"x":-103,"y":21},{"x":-65,"y":-35},{"x":-104,"y":38},{"x":-238,"y":0},{"x":-96,"y":-35},{"x":-31,"y":-44},{"x":-198,"y":63},{"x":-148,"y":-46},{"x":-50,"y":-44},{"x":-169,"y":12},{"x":-57,"y":-29},{"x":-5,"y":-136},{"x":99,"y":-90},{"x":67,"y":86},{"x":106,"y":-5},{"x":33,"y":-45},{"x":-16,"y":27},{"x":53,"y":1},{"x":176,"y":-159},{"x":73,"y":12},{"x":150,"y":-36},{"x":272,"y":-129},{"x":40,"y":11},{"x":16,"y":51},{"x":116,"y":-48},{"x":89,"y":55},{"x":33,"y":-16},{"x":-6,"y":-41},{"x":33,"y":17},{"x":12,"y":-31},{"x":32,"y":85},{"x":48,"y":7},{"x":109,"y":-93},{"x":29,"y":-126},{"x":88,"y":82},{"x":50,"y":-73},{"x":107,"y":-1}],"type":"coastline"},{"arc":[{"x":203445,"y":140924},{"x":-23,"y":52},{"x":-24,"y":-59},{"x":47,"y":7}],"type":"coastline"},{"arc":[{"x":192636,"y":175104},{"x":-150,"y":-93},{"x":-154,"y":21},{"x":-52,"y":-47},{"x":-157,"y":-40},{"x":-50,"y":31},{"x":-71,"y":-29},{"x":-83,"y":17},{"x":-107,"y":-65},{"x":-15,"y":-90},{"x":-57,"y":24},{"x":-258,"y":-201},{"x":-132,"y":-3},{"x":2,"y":30},{"x":-46,"y":2},{"x":-16,"y":34},{"x":-95,"y":-49},{"x":-39,"y":66},{"x":-72,"y":-125},{"x":-86,"y":20},{"x":-41,"y":-227},{"x":-67,"y":-83},{"x":-16,"y":-84},{"x":-85,"y":-46},{"x":-100,"y":-291},{"x":-78,"y":-9},{"x":-34,"y":-83},{"x":-76,"y":-16},{"x":-43,"y":-50},{"x":0,"y":-84},{"x":-116,"y":-67},{"x":-90,"y":-16},{"x":-142,"y":-139},{"x":-163,"y":-61},{"x":-144,"y":-192},{"x":2,"y":-186},{"x":-46,"y":-52},{"x":-144,"y":-26},{"x":-14,"y":-34},{"x":-129,"y":-10},{"x":8,"y":-49},{"x":-36,"y":-24},{"x":12,"y":-110},{"x":-82,"y":-82},{"x":-132,"y":-80},{"x":-78,"y":-11},{"x":-72,"y":-68},{"x":-122,"y":14},{"x":-77,"y":49},{"x":-74,"y":-139},{"x":-121,"y":-72},{"x":-62,"y":-161},{"x":17,"y":-127},{"x":-38,"y":-56},{"x":10,"y":-72},{"x":-64,"y":-54},{"x":-48,"y":4},{"x":-13,"y":-91},{"x":-66,"y":5},{"x":-22,"y":-36},{"x":-90,"y":-32},{"x":-96,"y":-158},{"x":-66,"y":97},{"x":-25,"y":125},{"x":-48,"y":-25},{"x":-112,"y":25},{"x":-49,"y":-66},{"x":-53,"y":-6},{"x":-36,"y":-42},{"x":-36,"y":-105},{"x":-90,"y":20},{"x":-14,"y":-61},{"x":-78,"y":-64},{"x":-140,"y":31},{"x":-104,"y":-53},{"x":-3,"y":-132},{"x":121,"y":-38},{"x":0,"y":-66},{"x":-49,"y":-25},{"x":15,"y":-89},{"x":-52,"y":-9},{"x":-28,"y":-57},{"x":-54,"y":33},{"x":-39,"y":-53},{"x":-27,"y":40},{"x":-113,"y":-110},{"x":-56,"y":-275},{"x":45,"y":-301},{"x":-189,"y":-17},{"x":-207,"y":41},{"x":-96,"y":-15},{"x":-82,"y":53},{"x":-140,"y":30},{"x":-145,"y":-209},{"x":-30,"y":-21},{"x":-77,"y":13},{"x":-72,"y":-216},{"x":-136,"y":-145},{"x":-39,"y":-108},{"x":-85,"y":-38},{"x":0,"y":-60},{"x":83,"y":-54},{"x":6,"y":-103},{"x":-137,"y":-100},{"x":-9,"y":-72},{"x":-94,"y":8},{"x":-80,"y":-173}],"type":"admin"},{"arc":[{"x":185606,"y":169109},{"x":101,"y":-114},{"x":14,"y":-65},{"x":-47,"y":-63},{"x":36,"y":-74},{"x":176,"y":-91},{"x":80,"y":18},{"x":135,"y":-46},{"x":35,"y":-37},{"x":-16,"y":-35},{"x":50,"y":-151},{"x":172,"y":-37},{"x":78,"y":-55},{"x":-7,"y":-77},{"x":68,"y":-49},{"x":-22,"y":-25},{"x":72,"y":-121},{"x":-40,"y":-206},{"x":22,"y":-21},{"x":-51,"y":-50},{"x":-29,"y":-109},{"x":8,"y":-87},{"x":112,"y":-109},{"x":39,"y":-149},{"x":-6,"y":-164},{"x":-125,"y":-174},{"x":-59,"y":-195},{"x":-84,"y":-40},{"x":-80,"y":41},{"x":-7,"y":-58},{"x":-43,"y":-11},{"x":-126,"y":-165},{"x":-84,"y":-41},{"x":-99,"y":-124},{"x":-232,"y":-31},{"x":-95,"y":-51},{"x":-153,"y":46},{"x":-54,"y":53},{"x":-22,"y":-26},{"x":-62,"y":8},{"x":-35,"y":63},{"x":-59,"y":-22},{"x":-90,"y":24},{"x":-144,"y":-25},{"x":-82,"y":-80}],"type":"admin"},{"arc":[{"x":184851,"y":166384},{"x":-38,"y":-20},{"x":78,"y":-175},{"x":-143,"y":-130},{"x":143,"y":-130},{"x":52,"y":-187},{"x":-42,"y":-44},{"x":-88,"y":-12},{"x":-50,"y":-78},{"x":45,"y":-213},{"x":-14,"y":-103},{"x":-126,"y":-85},{"x":-77,"y":14},{"x":-30,"y":39},{"x":-73,"y":-45},{"x":-78,"y":-7},{"x":-42,"y":-206},{"x":-58,"y":-40},{"x":-26,"y":-92},{"x":34,"y":-230}],"type":"admin"},{"arc":[{"x":184318,"y":164640},{"x":96,"y":-339},{"x":43,"y":29},{"x":30,"y":-11},{"x":68,"y":-137},{"x":107,"y":26},{"x":26,"y":-118},{"x":74,"y":18},{"x":73,"y":-22},{"x":114,"y":-238},{"x":-90,"y":-100},{"x":9,"y":-59},{"x":71,"y":-25},{"x":-12,"y":-28},{"x":131,"y":-138},{"x":63,"y":-122},{"x":156,"y":-98},{"x":131,"y":-36},{"x":33,"y":-120},{"x":61,"y":-40},{"x":18,"y":-68},{"x":62,"y":3},{"x":18,"y":-33},{"x":53,"y":12},{"x":81,"y":-99},{"x":84,"y":-10}],"type":"admin"},{"arc":[{"x":185818,"y":162887},{"x":31,"y":33},{"x":50,"y":4},{"x":15,"y":-28},{"x":44,"y":38},{"x":50,"y":-13},{"x":11,"y":49},{"x":-42,"y":46},{"x":76,"y":107},{"x":-20,"y":121},{"x":60,"y":30},{"x":19,"y":47},{"x":92,"y":33},{"x":78,"y":-139},{"x":50,"y":1},{"x":84,"y":47},{"x":90,"y":150},{"x":57,"y":9},{"x":23,"y":78},{"x":52,"y":41},{"x":-20,"y":147},{"x":-54,"y":104},{"x":30,"y":62},{"x":89,"y":42},{"x":47,"y":-15},{"x":132,"y":90},{"x":62,"y":-15},{"x":94,"y":101},{"x":60,"y":133},{"x":45,"y":26},{"x":49,"y":-43},{"x":90,"y":58},{"x":7,"y":37},{"x":-93,"y":68},{"x":-24,"y":65},{"x":102,"y":45},{"x":75,"y":-12},{"x":82,"y":79},{"x":42,"y":-8},{"x":73,"y":93},{"x":62,"y":11},{"x":31,"y":-47},{"x":55,"y":116},{"x":41,"y":-20},{"x":142,"y":92},{"x":125,"y":-10},{"x":82,"y":131},{"x":56,"y":-23},{"x":116,"y":234},{"x":51,"y":7},{"x":102,"y":-76},{"x":120,"y":121},{"x":140,"y":13},{"x":-35,"y":-181},{"x":73,"y":-62},{"x":171,"y":-14},{"x":31,"y":-71},{"x":65,"y":-18},{"x":34,"y":53},{"x":65,"y":-27},{"x":20,"y":118},{"x":34,"y":6},{"x":36,"y":76},{"x":81,"y":-29},{"x":35,"y":69},{"x":34,"y":7},{"x":198,"y":-60},{"x":68,"y":-120},{"x":154,"y":144},{"x":32,"y":-21},{"x":153,"y":28},{"x":84,"y":-38},{"x":73,"y":93},{"x":67,"y":8},{"x":36,"y":69},{"x":33,"y":-18},{"x":107,"y":66},{"x":56,"y":105},{"x":34,"y":-13},{"x":73,"y":46},{"x":-25,"y":228},{"x":59,"y":14}],"type":"area"},{"arc":[{"x":190495,"y":165605},{"x":-87,"y":494},{"x":-28,"y":24},{"x":31,"y":15},{"x":-47,"y":113},{"x":43,"y":238},{"x":67,"y":61},{"x":-29,"y":46},{"x":-237,"y":63},{"x":-225,"y":-42},{"x":-47,"y":77},{"x":-175,"y":-52},{"x":-138,"y":142},{"x":39,"y":89},{"x":-30,"y":53},{"x":27,"y":-55},{"x":-38,"y":-50},{"x":-35,"y":53},{"x":29,"y":23},{"x":-39,"y":35},{"x":20,"y":-40},{"x":-47,"y":23},{"x":-48,"y":-61},{"x":-38,"y":39},{"x":30,"y":11},{"x":-59,"y":-14},{"x":-115,"y":113},{"x":-31,"y":-40},{"x":-59,"y":22},{"x":-263,"y":528},{"x":-248,"y":976},{"x":-103,"y":879},{"x":-7,"y":437},{"x":59,"y":69},{"x":-73,"y":-64},{"x":60,"y":59},{"x":-31,"y":16},{"x":-4,"y":201},{"x":105,"y":694},{"x":23,"y":87},{"x":110,"y":89},{"x":82,"y":218},{"x":83,"y":-10},{"x":124,"y":118},{"x":112,"y":248},{"x":180,"y":235},{"x":143,"y":109},{"x":224,"y":87},{"x":-33,"y":77},{"x":85,"y":101},{"x":61,"y":17},{"x":71,"y":124},{"x":51,"y":1},{"x":-5,"y":99},{"x":29,"y":-15},{"x":0,"y":43},{"x":6,"y":-59},{"x":53,"y":47},{"x":-5,"y":22},{"x":-20,"y":-14},{"x":-12,"y":39},{"x":22,"y":-29},{"x":-11,"y":37},{"x":58,"y":61},{"x":51,"y":30},{"x":93,"y":-5},{"x":48,"y":47},{"x":71,"y":202},{"x":116,"y":112},{"x":37,"y":109},{"x":124,"y":79},{"x":2,"y":58},{"x":106,"y":86},{"x":68,"y":159},{"x":50,"y":34},{"x":29,"y":-18},{"x":8,"y":86},{"x":57,"y":35},{"x":34,"y":94},{"x":71,"y":66},{"x":131,"y":279},{"x":386,"y":240},{"x":33,"y":-9},{"x":124,"y":65},{"x":160,"y":219},{"x":129,"y":72},{"x":-2,"y":37},{"x":69,"y":71},{"x":60,"y":8},{"x":27,"y":55},{"x":38,"y":-19},{"x":58,"y":34},{"x":-11,"y":57},{"x":39,"y":64},{"x":61,"y":31},{"x":53,"y":-18},{"x":16,"y":33},{"x":68,"y":12},{"x":22,"y":47},{"x":47,"y":7},{"x":46,"y":70},{"x":-38,"y":63}],"type":"coastline"},{"arc":[{"x":185818,"y":162887},{"x":0,"y":-52},{"x":-60,"y":-41},{"x":14,"y":-155},{"x":187,"y":-53},{"x":-14,"y":-50},{"x":40,"y":-47},{"x":-50,"y":-98},{"x":42,"y":-121},{"x":-54,"y":-23},{"x":-79,"y":-103},{"x":39,"y":-48},{"x":-28,"y":-117},{"x":65,"y":-22},{"x":52,"y":-97},{"x":-14,"y":-137},{"x":-149,"y":50},{"x":-91,"y":-104},{"x":-62,"y":-12},{"x":-23,"y":-215},{"x":-85,"y":-151},{"x":45,"y":-174},{"x":-24,"y":-51},{"x":-82,"y":-63},{"x":-56,"y":6},{"x":-39,"y":-47},{"x":-115,"y":14},{"x":-116,"y":-84},{"x":-56,"y":1},{"x":-5,"y":-130},{"x":30,"y":-33},{"x":-169,"y":-125},{"x":-32,"y":-81},{"x":-201,"y":-66},{"x":157,"y":-301},{"x":82,"y":-45},{"x":129,"y":-164},{"x":-23,"y":-66},{"x":74,"y":-125},{"x":-31,"y":-14},{"x":10,"y":-76},{"x":-34,"y":-44},{"x":43,"y":-65},{"x":-8,"y":-74},{"x":71,"y":-41},{"x":-94,"y":-129},{"x":-14,"y":-77},{"x":70,"y":-295},{"x":53,"y":-65},{"x":-75,"y":-216},{"x":52,"y":-81},{"x":112,"y":3},{"x":41,"y":30},{"x":22,"y":-114},{"x":86,"y":-35},{"x":-19,"y":-193},{"x":39,"y":9},{"x":80,"y":-93},{"x":-32,"y":-144},{"x":35,"y":-96}],"type":"admin"},{"arc":[{"x":186615,"y":158176},{"x":-96,"y":424},{"x":120,"y":210},{"x":112,"y":22},{"x":113,"y":-53},{"x":56,"y":15},{"x":65,"y":140},{"x":77,"y":35},{"x":7,"y":47},{"x":82,"y":75},{"x":-38,"y":142},{"x":54,"y":48},{"x":29,"y":-27},{"x":14,"y":69},{"x":-54,"y":63},{"x":15,"y":81},{"x":57,"y":21},{"x":13,"y":108},{"x":88,"y":83},{"x":75,"y":-6},{"x":8,"y":97},{"x":66,"y":7},{"x":7,"y":133},{"x":-31,"y":57},{"x":35,"y":251},{"x":74,"y":63},{"x":62,"y":121},{"x":-14,"y":117},{"x":27,"y":51},{"x":-50,"y":79},{"x":35,"y":183},{"x":65,"y":60},{"x":21,"y":84},{"x":37,"y":-34},{"x":86,"y":26},{"x":35,"y":129},{"x":61,"y":60},{"x":-50,"y":52},{"x":43,"y":94},{"x":130,"y":-50},{"x":27,"y":28},{"x":140,"y":-17},{"x":106,"y":129},{"x":81,"y":-2},{"x":9,"y":32},{"x":231,"y":-27},{"x":51,"y":54},{"x":46,"y":-36},{"x":62,"y":37},{"x":88,"y":-24},{"x":24,"y":-102},{"x":73,"y":-29},{"x":67,"y":19},{"x":55,"y":122},{"x":54,"y":-29},{"x":70,"y":34},{"x":60,"y":-19},{"x":59,"y":204},{"x":-35,"y":68},{"x":15,"y":123},{"x":-24,"y":-11},{"x":-33,"y":44},{"x":6,"y":50},{"x":37,"y":50},{"x":76,"y":-22},{"x":55,"y":78},{"x":50,"y":16},{"x":58,"y":142},{"x":-3,"y":68},{"x":-94,"y":172},{"x":175,"y":23},{"x":352,"y":178},{"x":193,"y":31},{"x":57,"y":-18},{"x":42,"y":51},{"x":84,"y":1},{"x":21,"y":-42},{"x":91,"y":20},{"x":65,"y":-17},{"x":224,"y":264},{"x":383,"y":6}],"type":"area"},{"arc":[{"x":191149,"y":162902},{"x":23,"y":61},{"x":-70,"y":-5},{"x":18,"y":47},{"x":-223,"y":697},{"x":-204,"y":815},{"x":-121,"y":713},{"x":52,"y":205},{"x":-22,"y":41},{"x":-8,"y":-51},{"x":5,"y":43},{"x":-63,"y":27},{"x":-41,"y":110}],"type":"coastline"},{"arc":[{"x":195919,"y":155599},{"x":-90,"y":81},{"x":-25,"y":81},{"x":-121,"y":62},{"x":-100,"y":177},{"x":-83,"y":44},{"x":-133,"y":144},{"x":-2,"y":78},{"x":-56,"y":45},{"x":-80,"y":-6},{"x":-84,"y":124},{"x":23,"y":-41},{"x":-15,"y":16},{"x":-28,"y":-1},{"x":18,"y":11},{"x":-16,"y":0},{"x":-16,"y":-24},{"x":-31,"y":89},{"x":-90,"y":49},{"x":13,"y":26},{"x":-43,"y":38},{"x":28,"y":-42},{"x":-35,"y":1},{"x":2,"y":23},{"x":-12,"y":-22},{"x":-229,"y":205},{"x":-292,"y":432},{"x":-16,"y":81},{"x":40,"y":56},{"x":-18,"y":15},{"x":-63,"y":-34},{"x":-37,"y":19},{"x":-115,"y":152},{"x":-635,"y":1029},{"x":-15,"y":49},{"x":25,"y":21},{"x":-91,"y":76},{"x":-35,"y":-5},{"x":34,"y":-25},{"x":-25,"y":-13},{"x":-5,"y":28},{"x":-17,"y":-14},{"x":-48,"y":35},{"x":-346,"y":591},{"x":-142,"y":309},{"x":-99,"y":59},{"x":-35,"y":61},{"x":-47,"y":12},{"x":36,"y":-35},{"x":-30,"y":-34},{"x":-30,"y":17},{"x":31,"y":13},{"x":-63,"y":-5},{"x":-26,"y":42},{"x":-18,"y":-25},{"x":-26,"y":15},{"x":12,"y":58},{"x":-54,"y":39},{"x":34,"y":32},{"x":-59,"y":-51},{"x":-114,"y":149},{"x":-306,"y":567},{"x":-357,"y":795},{"x":-158,"y":408},{"x":14,"y":34},{"x":-27,"y":-26},{"x":27,"y":81},{"x":-27,"y":-80},{"x":13,"y":58},{"x":-37,"y":4},{"x":-38,"y":90},{"x":-380,"y":1065}],"type":"coastline"},{"arc":[{"x":176923,"y":142698},{"x":-25,"y":-59},{"x":-49,"y":-6},{"x":-124,"y":-164},{"x":-81,"y":-44},{"x":-131,"y":-8},{"x":-71,"y":-99},{"x":-58,"y":52},{"x":-58,"y":-15},{"x":-106,"y":-162},{"x":6,"y":-102},{"x":-73,"y":-16},{"x":-153,"y":-182},{"x":-98,"y":-27},{"x":-171,"y":24},{"x":-54,"y":-19},{"x":-1,"y":-56},{"x":-92,"y":-104},{"x":-69,"y":8},{"x":-26,"y":34},{"x":-50,"y":-11},{"x":-3,"y":-121},{"x":-107,"y":-104},{"x":-62,"y":-133},{"x":32,"y":-64},{"x":-24,"y":-158},{"x":-58,"y":-38},{"x":-11,"y":-153},{"x":-55,"y":-15},{"x":-72,"y":38},{"x":-168,"y":-14},{"x":-78,"y":128},{"x":-178,"y":-60},{"x":-91,"y":79},{"x":-52,"y":-55},{"x":-112,"y":-34},{"x":-44,"y":47},{"x":-47,"y":-12},{"x":-30,"y":-72},{"x":-190,"y":-201},{"x":6,"y":-140},{"x":-78,"y":-175}],"type":"area"},{"arc":[{"x":174017,"y":140485},{"x":346,"y":-55},{"x":15,"y":-37},{"x":27,"y":14},{"x":-32,"y":-20},{"x":34,"y":20},{"x":60,"y":-19},{"x":294,"y":-171},{"x":65,"y":-75},{"x":-18,"y":-50},{"x":35,"y":-16},{"x":-41,"y":19},{"x":105,"y":-189},{"x":131,"y":-125},{"x":23,"y":-73},{"x":46,"y":-8},{"x":45,"y":-58},{"x":0,"y":-160},{"x":44,"y":21},{"x":114,"y":-28},{"x":-26,"y":55},{"x":45,"y":1},{"x":6,"y":-93},{"x":33,"y":-25},{"x":49,"y":40},{"x":27,"y":-31},{"x":-10,"y":41},{"x":8,"y":-31},{"x":24,"y":23},{"x":74,"y":-45},{"x":325,"y":-374},{"x":-5,"y":-88},{"x":71,"y":-9},{"x":2,"y":-51},{"x":10,"y":36},{"x":44,"y":-162},{"x":-6,"y":-331},{"x":-120,"y":-301},{"x":11,"y":-78},{"x":-19,"y":9},{"x":1,"y":-53},{"x":-67,"y":-68},{"x":35,"y":-118},{"x":49,"y":-24},{"x":25,"y":-93},{"x":93,"y":-121}],"type":"coastline"},{"arc":[{"x":173322,"y":140963},{"x":-3,"y":19},{"x":-9,"y":-43},{"x":12,"y":24}],"type":"coastline"},{"arc":[{"x":175263,"y":143696},{"x":-23,"y":-16},{"x":71,"y":45},{"x":-48,"y":-29}],"type":"coastline"},{"arc":[{"x":175940,"y":147259},{"x":-10,"y":-23},{"x":21,"y":41},{"x":19,"y":182},{"x":88,"y":66},{"x":-90,"y":-66},{"x":-28,"y":-200}],"type":"coastline"},{"arc":[{"x":176107,"y":147562},{"x":-46,"y":-36},{"x":64,"y":49},{"x":-18,"y":-13}],"type":"coastline"},{"arc":[{"x":178868,"y":151555},{"x":-89,"y":-91},{"x":-77,"y":-10},{"x":-17,"y":39},{"x":-61,"y":10},{"x":-117,"y":-81},{"x":-50,"y":27},{"x":-48,"y":-51},{"x":-166,"y":57},{"x":-64,"y":-38},{"x":-260,"y":-14},{"x":-63,"y":-62},{"x":-104,"y":12},{"x":-135,"y":-263},{"x":-42,"y":-8},{"x":-78,"y":-149},{"x":-40,"y":-19},{"x":52,"y":-59},{"x":-33,"y":-39},{"x":7,"y":-81},{"x":-100,"y":1},{"x":-57,"y":-76},{"x":-40,"y":18},{"x":-37,"y":-178},{"x":-184,"y":-31},{"x":-79,"y":-146},{"x":-77,"y":-52},{"x":-79,"y":-1},{"x":-41,"y":-95},{"x":-102,"y":4},{"x":-83,"y":-92},{"x":-105,"y":5},{"x":-35,"y":-48},{"x":-228,"y":-86},{"x":-165,"y":14},{"x":-26,"y":-22},{"x":-82,"y":-170},{"x":4,"y":-61},{"x":-31,"y":8},{"x":-68,"y":-51},{"x":-14,"y":-185},{"x":-100,"y":-72},{"x":-100,"y":-131},{"x":-57,"y":-173},{"x":-59,"y":-9},{"x":50,"y":-227},{"x":-92,"y":-25},{"x":-67,"y":-95}],"type":"admin"},{"arc":[{"x":175429,"y":148759},{"x":66,"y":-34},{"x":93,"y":-192},{"x":21,"y":-23},{"x":-10,"y":63},{"x":116,"y":-134},{"x":17,"y":-63},{"x":158,"y":-104},{"x":272,"y":-647},{"x":-44,"y":-32},{"x":20,"y":-36},{"x":-14,"y":28},{"x":28,"y":21},{"x":19,"y":-21},{"x":-26,"y":-19},{"x":76,"y":50},{"x":11,"y":-20},{"x":-12,"y":-60},{"x":-96,"y":-73},{"x":50,"y":-156},{"x":77,"y":48},{"x":15,"y":-43},{"x":2,"y":-30},{"x":-80,"y":-27},{"x":59,"y":15},{"x":67,"y":-157},{"x":18,"y":-155},{"x":-31,"y":-17},{"x":-1,"y":-37},{"x":4,"y":38},{"x":38,"y":-8},{"x":-34,"y":-27},{"x":47,"y":-18},{"x":45,"y":-480},{"x":-26,"y":-261},{"x":-8,"y":-19},{"x":-35,"y":-2},{"x":-31,"y":-41},{"x":32,"y":40},{"x":40,"y":0},{"x":31,"y":76},{"x":40,"y":18},{"x":164,"y":441},{"x":46,"y":-24},{"x":-88,"y":-216},{"x":21,"y":-37},{"x":-30,"y":15},{"x":-96,"y":-241},{"x":-6,"y":-30},{"x":66,"y":-56},{"x":-155,"y":-1},{"x":19,"y":-64},{"x":-21,"y":35},{"x":-29,"y":-16},{"x":-24,"y":22},{"x":-8,"y":-66},{"x":65,"y":-6},{"x":-38,"y":-241},{"x":-109,"y":-440},{"x":-183,"y":-484},{"x":-486,"y":-890},{"x":-131,"y":-185},{"x":-31,"y":20},{"x":-77,"y":-43},{"x":77,"y":41},{"x":25,"y":-23},{"x":-25,"y":5},{"x":-6,"y":-38},{"x":-28,"y":22},{"x":-2,"y":-44},{"x":-32,"y":23},{"x":40,"y":-57},{"x":-32,"y":-38},{"x":-42,"y":42},{"x":42,"y":-45},{"x":-29,"y":-47},{"x":-583,"y":-742},{"x":-11,"y":-110},{"x":-50,"y":-40},{"x":54,"y":20},{"x":-123,"y":-182},{"x":6,"y":-80},{"x":-205,"y":-250},{"x":-351,"y":-370},{"x":-225,"y":-184},{"x":-21,"y":-8},{"x":6,"y":29},{"x":-13,"y":-31},{"x":-36,"y":18},{"x":-14,"y":-85},{"x":-82,"y":-74},{"x":-54,"y":8},{"x":14,"y":-31},{"x":-41,"y":-57},{"x":-146,"y":-112},{"x":-44,"y":-15},{"x":-17,"y":33},{"x":-63,"y":-19},{"x":4,"y":-33},{"x":-35,"y":-17},{"x":33,"y":-145},{"x":31,"y":-22},{"x":-16,"y":-72},{"x":27,"y":25},{"x":-2,"y":-73},{"x":31,"y":21},{"x":29,"y":-18},{"x":34,"y":-111},{"x":-18,"y":-35},{"x":177,"y":-134},{"x":49,"y":3},{"x":-21,"y":14},{"x":41,"y":21},{"x":-24,"y":11},{"x":15,"y":47},{"x":8,"y":-51},{"x":48,"y":115},{"x":30,"y":-5},{"x":-77,"y":15},{"x":13,"y":34},{"x":-37,"y":3},{"x":25,"y":22},{"x":-17,"y":14},{"x":-12,"y":-27},{"x":-40,"y":27},{"x":44,"y":8},{"x":-47,"y":13},{"x":-10,"y":53},{"x":-93,"y":-10},{"x":29,"y":14},{"x":-35,"y":35},{"x":40,"y":7},{"x":-45,"y":38},{"x":47,"y":-19},{"x":-12,"y":38},{"x":32,"y":-16},{"x":-15,"y":23},{"x":35,"y":14},{"x":35,"y":-40},{"x":68,"y":-10},{"x":6,"y":29},{"x":-3,"y":-36},{"x":46,"y":219},{"x":24,"y":-46},{"x":-20,"y":-197},{"x":37,"y":-5},{"x":6,"y":80},{"x":52,"y":-33},{"x":-30,"y":-80},{"x":45,"y":-147},{"x":-60,"y":-37},{"x":60,"y":36},{"x":84,"y":-278},{"x":24,"y":6},{"x":-54,"y":-17},{"x":61,"y":-6},{"x":69,"y":-52}],"type":"coastline"},{"arc":[{"x":179952,"y":154808},{"x":-68,"y":31},{"x":-82,"y":147},{"x":-105,"y":-10},{"x":-32,"y":-63},{"x":-97,"y":-37},{"x":-125,"y":85},{"x":-84,"y":-9},{"x":-58,"y":60},{"x":0,"y":42},{"x":-102,"y":44},{"x":-264,"y":-171},{"x":-49,"y":58},{"x":-189,"y":53},{"x":-37,"y":118},{"x":-51,"y":20},{"x":-118,"y":-123},{"x":7,"y":-119},{"x":-42,"y":-101},{"x":-111,"y":-93},{"x":-87,"y":-23},{"x":-34,"y":27},{"x":-177,"y":-97},{"x":-112,"y":11},{"x":-84,"y":-41},{"x":-75,"y":26},{"x":-78,"y":-173},{"x":-160,"y":-83},{"x":-68,"y":7},{"x":-46,"y":56}],"type":"area"},{"arc":[{"x":177424,"y":154450},{"x":-120,"y":-23},{"x":-71,"y":-91},{"x":11,"y":-47},{"x":47,"y":-6},{"x":31,"y":-116},{"x":-25,"y":-334},{"x":114,"y":-61},{"x":7,"y":-121},{"x":-97,"y":-84},{"x":-1,"y":-83},{"x":-65,"y":-44},{"x":-133,"y":-29},{"x":-20,"y":-89},{"x":-99,"y":11},{"x":-33,"y":-57},{"x":-71,"y":23},{"x":-39,"y":-20},{"x":-45,"y":36},{"x":-73,"y":-61},{"x":-72,"y":63},{"x":-67,"y":-60},{"x":-119,"y":23},{"x":-69,"y":-114},{"x":30,"y":-61},{"x":-11,"y":-215},{"x":-128,"y":-87},{"x":-76,"y":73},{"x":-80,"y":13},{"x":-49,"y":69},{"x":-49,"y":-295},{"x":-97,"y":-5},{"x":-88,"y":-82},{"x":-94,"y":-163},{"x":4,"y":-194},{"x":-74,"y":-40},{"x":-80,"y":-124},{"x":-62,"y":-21},{"x":24,"y":-70},{"x":-24,"y":-45},{"x":52,"y":-62},{"x":-30,"y":-54},{"x":44,"y":-18},{"x":-51,"y":-89},{"x":25,"y":-64},{"x":-61,"y":-28},{"x":-29,"y":45},{"x":-137,"y":-15},{"x":-32,"y":-109},{"x":-59,"y":-46},{"x":-45,"y":7},{"x":-73,"y":-82},{"x":-108,"y":25},{"x":-37,"y":-34},{"x":-25,"y":39},{"x":-240,"y":-90},{"x":-78,"y":-106},{"x":-64,"y":-11},{"x":-15,"y":-62},{"x":-49,"y":-4},{"x":-50,"y":-181},{"x":-60,"y":-42},{"x":24,"y":-84},{"x":-50,"y":-43},{"x":11,"y":-57}],"type":"area"},{"arc":[{"x":174424,"y":150754},{"x":97,"y":-158},{"x":-8,"y":15},{"x":10,"y":39},{"x":-3,"y":-41},{"x":26,"y":30},{"x":26,"y":-3},{"x":92,"y":-100},{"x":110,"y":-212},{"x":78,"y":-301},{"x":20,"y":-410},{"x":18,"y":-46},{"x":6,"y":45},{"x":-1,"y":-34},{"x":23,"y":27},{"x":32,"y":-36},{"x":66,"y":-337},{"x":50,"y":-27},{"x":30,"y":-67},{"x":-3,"y":32},{"x":3,"y":-24},{"x":57,"y":-8},{"x":154,"y":-264},{"x":122,"y":-115}],"type":"coastline"},{"arc":[{"x":176905,"y":154989},{"x":-191,"y":-95},{"x":-64,"y":34},{"x":-117,"y":-9},{"x":-79,"y":103},{"x":-127,"y":5},{"x":-29,"y":154},{"x":-41,"y":42},{"x":-183,"y":52},{"x":-75,"y":74},{"x":-103,"y":13},{"x":-64,"y":103},{"x":-209,"y":26},{"x":-69,"y":278},{"x":-127,"y":2},{"x":-78,"y":-58},{"x":-62,"y":-5},{"x":-136,"y":118},{"x":-15,"y":111},{"x":-35,"y":27},{"x":-117,"y":8},{"x":-145,"y":-60}],"type":"area"},{"arc":[{"x":174839,"y":155912},{"x":-23,"y":-106},{"x":-108,"y":-17},{"x":-2,"y":-121},{"x":-51,"y":-80},{"x":24,"y":-68},{"x":-91,"y":-123},{"x":-73,"y":-294},{"x":-68,"y":-23},{"x":-23,"y":20},{"x":-101,"y":-10},{"x":-82,"y":36},{"x":-35,"y":54},{"x":-89,"y":-37},{"x":-105,"y":75},{"x":-251,"y":-144},{"x":-11,"y":-41},{"x":-75,"y":4},{"x":-98,"y":-58},{"x":-21,"y":26},{"x":-58,"y":-17},{"x":-45,"y":36},{"x":-60,"y":-2},{"x":-34,"y":-86},{"x":-80,"y":-52},{"x":-77,"y":8},{"x":-39,"y":-44},{"x":-86,"y":-27},{"x":-25,"y":-55},{"x":-93,"y":29},{"x":-20,"y":-39},{"x":-62,"y":-22},{"x":-39,"y":-83},{"x":-113,"y":-82},{"x":-37,"y":-87},{"x":17,"y":-119},{"x":-98,"y":-117},{"x":-85,"y":13},{"x":-35,"y":-129},{"x":-90,"y":-39}],"type":"area"},{"arc":[{"x":172397,"y":154091},{"x":129,"y":-162},{"x":16,"y":-114},{"x":9,"y":22},{"x":175,"y":-256},{"x":41,"y":-220},{"x":-23,"y":-19},{"x":2,"y":-23},{"x":5,"y":24},{"x":17,"y":-29},{"x":18,"y":9},{"x":157,"y":-320},{"x":-9,"y":-110},{"x":34,"y":-96},{"x":257,"y":-276},{"x":-12,"y":31},{"x":14,"y":-25},{"x":26,"y":21},{"x":49,"y":-63},{"x":50,"y":-201},{"x":-10,"y":-89},{"x":70,"y":-91},{"x":72,"y":-212},{"x":2,"y":36},{"x":110,"y":-99},{"x":79,"y":-181},{"x":321,"y":-497},{"x":-5,"y":41},{"x":130,"y":-95},{"x":249,"y":-316},{"x":54,"y":-27}],"type":"coastline"},{"arc":[{"x":177424,"y":154450},{"x":-26,"y":209},{"x":-116,"y":50},{"x":-19,"y":36},{"x":30,"y":130},{"x":-27,"y":50},{"x":-188,"y":19},{"x":-107,"y":-18},{"x":-66,"y":63}],"type":"area"},{"arc":[{"x":171933,"y":159366},{"x":-51,"y":-11},{"x":-26,"y":28},{"x":-54,"y":-35},{"x":-221,"y":-39},{"x":-71,"y":49},{"x":-377,"y":-121},{"x":-118,"y":37},{"x":-150,"y":-18},{"x":-33,"y":-75},{"x":-39,"y":-12},{"x":37,"y":9},{"x":-8,"y":-46},{"x":-22,"y":29},{"x":-1,"y":-35},{"x":-71,"y":-44},{"x":-46,"y":16},{"x":-56,"y":-111},{"x":-176,"y":-126},{"x":-364,"y":-120},{"x":-224,"y":-26},{"x":-159,"y":69},{"x":-10,"y":-56},{"x":223,"y":-175},{"x":-2,"y":-35},{"x":39,"y":-2},{"x":58,"y":-149},{"x":59,"y":-21},{"x":33,"y":-86},{"x":74,"y":-39},{"x":73,"y":-109},{"x":171,"y":-40},{"x":257,"y":-189},{"x":121,"y":-173},{"x":23,"y":-83},{"x":69,"y":-52},{"x":117,"y":-270},{"x":0,"y":35},{"x":25,"y":-24},{"x":149,"y":-413},{"x":59,"y":-68},{"x":65,"y":-16},{"x":75,"y":-158},{"x":159,"y":-107},{"x":67,"y":-238},{"x":-14,"y":-89},{"x":-43,"y":-5},{"x":27,"y":-98},{"x":2,"y":71},{"x":31,"y":9},{"x":15,"y":-56},{"x":-32,"y":31},{"x":-3,"y":-41},{"x":59,"y":10},{"x":26,"y":-39},{"x":-15,"y":-248},{"x":73,"y":-190},{"x":24,"y":-284},{"x":140,"y":-212},{"x":81,"y":-252},{"x":-30,"y":140},{"x":83,"y":-81},{"x":-32,"y":-43},{"x":36,"y":48},{"x":37,"y":-28},{"x":25,"y":-209},{"x":80,"y":-127},{"x":-8,"y":-150},{"x":9,"y":20},{"x":53,"y":-78},{"x":1,"y":-154},{"x":70,"y":-103},{"x":-8,"y":28},{"x":103,"y":-95}],"type":"coastline"},{"arc":[{"x":174839,"y":155912},{"x":-114,"y":50},{"x":-48,"y":80},{"x":-195,"y":57},{"x":54,"y":147},{"x":-45,"y":49},{"x":-21,"y":125},{"x":-121,"y":23},{"x":-119,"y":131},{"x":-99,"y":26},{"x":-170,"y":152},{"x":-21,"y":80},{"x":-176,"y":80},{"x":-55,"y":116},{"x":-78,"y":22},{"x":-91,"y":88},{"x":-3,"y":70},{"x":-187,"y":54},{"x":2,"y":55},{"x":-65,"y":95},{"x":-113,"y":17},{"x":-52,"y":239},{"x":-50,"y":43},{"x":-90,"y":-6},{"x":-98,"y":43},{"x":-78,"y":250},{"x":-109,"y":-11},{"x":-165,"y":141},{"x":4,"y":102},{"x":-44,"y":57},{"x":-186,"y":46},{"x":-99,"y":78},{"x":-100,"y":143},{"x":40,"y":78},{"x":-10,"y":77},{"x":-55,"y":77},{"x":-68,"y":27},{"x":1,"y":100},{"x":-76,"y":27},{"x":75,"y":189},{"x":-59,"y":87},{"x":-22,"y":150}],"type":"area"},{"arc":[{"x":184318,"y":164640},{"x":-143,"y":49},{"x":-58,"y":-37},{"x":-77,"y":27},{"x":-76,"y":90},{"x":-10,"y":101},{"x":-144,"y":8},{"x":-148,"y":-55},{"x":-36,"y":38},{"x":-64,"y":-91},{"x":16,"y":-89},{"x":-51,"y":48},{"x":-72,"y":-27},{"x":-86,"y":-237},{"x":-42,"y":-40},{"x":12,"y":-39},{"x":-51,"y":-45},{"x":17,"y":-63},{"x":-73,"y":-8},{"x":-92,"y":-150},{"x":-35,"y":3},{"x":32,"y":-86},{"x":-65,"y":-31},{"x":12,"y":-59},{"x":-57,"y":-29},{"x":-42,"y":-81},{"x":-99,"y":-2},{"x":18,"y":-43},{"x":-91,"y":-77},{"x":-10,"y":-114},{"x":-202,"y":-164},{"x":36,"y":-93},{"x":56,"y":-19},{"x":-47,"y":-67},{"x":-93,"y":37},{"x":-46,"y":-6},{"x":-14,"y":-35},{"x":-99,"y":45},{"x":-53,"y":-94},{"x":-92,"y":-30},{"x":6,"y":-85},{"x":-60,"y":17},{"x":-94,"y":-22},{"x":-14,"y":-49},{"x":-89,"y":-33},{"x":-56,"y":13},{"x":-43,"y":51},{"x":-61,"y":-38}],"type":"admin"},{"arc":[{"x":181838,"y":163029},{"x":5,"y":-82},{"x":72,"y":-58},{"x":-14,"y":-224},{"x":-31,"y":-97},{"x":-30,"y":5},{"x":-38,"y":-69},{"x":7,"y":-77},{"x":87,"y":-109},{"x":88,"y":-41},{"x":15,"y":-83},{"x":63,"y":-51},{"x":-5,"y":-54},{"x":125,"y":-97},{"x":-354,"y":-619},{"x":-71,"y":12},{"x":-61,"y":-101},{"x":175,"y":-47},{"x":190,"y":-176},{"x":85,"y":-18},{"x":-53,"y":-100},{"x":-27,"y":-1},{"x":77,"y":-234},{"x":32,"y":7},{"x":-35,"y":-54},{"x":44,"y":-99},{"x":42,"y":-516},{"x":-151,"y":-75},{"x":-85,"y":-8},{"x":-46,"y":50},{"x":-65,"y":-95},{"x":-78,"y":34},{"x":-116,"y":-55},{"x":21,"y":-154},{"x":74,"y":29},{"x":25,"y":-24},{"x":131,"y":-916},{"x":58,"y":35},{"x":279,"y":-1230},{"x":-80,"y":-25},{"x":-270,"y":137},{"x":-70,"y":-13},{"x":-67,"y":49},{"x":-178,"y":-25},{"x":-125,"y":92},{"x":-131,"y":157},{"x":133,"y":-591},{"x":-918,"y":-269},{"x":-71,"y":180},{"x":-487,"y":53},{"x":217,"y":-377},{"x":325,"y":-420},{"x":337,"y":-277},{"x":160,"y":-26},{"x":-31,"y":-106},{"x":-228,"y":30},{"x":-51,"y":-260},{"x":-167,"y":72},{"x":-83,"y":-313},{"x":-75,"y":43},{"x":-24,"y":-44},{"x":-40,"y":28},{"x":-36,"y":-55},{"x":-48,"y":50},{"x":-26,"y":-348},{"x":-190,"y":-298},{"x":-20,"y":-168}],"type":"area"},{"arc":[{"x":181838,"y":163029},{"x":-100,"y":-22},{"x":-63,"y":-101},{"x":-26,"y":25},{"x":-80,"y":-36},{"x":-26,"y":61},{"x":-47,"y":-10},{"x":2,"y":-73},{"x":-46,"y":-39},{"x":-38,"y":-4},{"x":-76,"y":61},{"x":-181,"y":-55},{"x":-36,"y":-60},{"x":-92,"y":-58},{"x":-69,"y":7},{"x":-45,"y":42},{"x":-29,"y":-39},{"x":-56,"y":15},{"x":-28,"y":-32},{"x":-103,"y":34},{"x":-73,"y":-47},{"x":-25,"y":-60},{"x":-93,"y":9},{"x":-43,"y":-29},{"x":-24,"y":-121},{"x":-128,"y":-111},{"x":-375,"y":-57},{"x":-54,"y":64},{"x":-65,"y":9},{"x":-8,"y":31},{"x":55,"y":63},{"x":-42,"y":73},{"x":-109,"y":122},{"x":-85,"y":6},{"x":-100,"y":127},{"x":-112,"y":-1},{"x":-100,"y":-39},{"x":-20,"y":55},{"x":-56,"y":-32},{"x":-74,"y":53},{"x":-98,"y":5},{"x":-95,"y":94},{"x":-58,"y":-50},{"x":-31,"y":78},{"x":-65,"y":17},{"x":15,"y":41},{"x":-82,"y":99},{"x":-33,"y":100},{"x":-112,"y":141},{"x":-25,"y":-25},{"x":3,"y":41},{"x":-91,"y":75},{"x":7,"y":73},{"x":-78,"y":25},{"x":-17,"y":54}],"type":"admin"},{"arc":[{"x":178408,"y":163628},{"x":-332,"y":-374},{"x":-69,"y":26},{"x":65,"y":-40},{"x":-33,"y":-11},{"x":-39,"y":41},{"x":36,"y":-39},{"x":-42,"y":-62},{"x":-1101,"y":-1259},{"x":-66,"y":-61},{"x":-55,"y":43},{"x":-46,"y":-4},{"x":45,"y":3},{"x":57,"y":-44},{"x":-30,"y":-37},{"x":-47,"y":51},{"x":45,"y":-51},{"x":-25,"y":-40},{"x":-914,"y":-840}],"type":"coastline"},{"arc":[{"x":175857,"y":160930},{"x":28,"y":-47},{"x":58,"y":31},{"x":69,"y":-52},{"x":96,"y":40},{"x":-7,"y":-109},{"x":59,"y":-20},{"x":54,"y":-76},{"x":37,"y":28},{"x":45,"y":-82},{"x":-25,"y":-18},{"x":45,"y":-45},{"x":121,"y":37},{"x":46,"y":-75},{"x":-69,"y":-55},{"x":3,"y":-33},{"x":45,"y":-12},{"x":98,"y":-134},{"x":90,"y":-45},{"x":78,"y":10},{"x":-5,"y":-53},{"x":117,"y":-173},{"x":-150,"y":-111},{"x":-24,"y":-65},{"x":-99,"y":15},{"x":24,"y":-109},{"x":-27,"y":-45},{"x":-99,"y":-53},{"x":-115,"y":56},{"x":-146,"y":-62},{"x":-82,"y":60},{"x":-60,"y":-10},{"x":-24,"y":23},{"x":-41,"y":108},{"x":46,"y":50},{"x":-28,"y":112},{"x":-130,"y":39},{"x":-157,"y":-8},{"x":-5,"y":50},{"x":-43,"y":6},{"x":-37,"y":77},{"x":-222,"y":191},{"x":-174,"y":-583},{"x":200,"y":-68},{"x":-13,"y":-48},{"x":45,"y":-16},{"x":-10,"y":-39},{"x":79,"y":-136},{"x":-119,"y":-310},{"x":132,"y":-278},{"x":-21,"y":-12},{"x":69,"y":-141},{"x":-23,"y":-13},{"x":68,"y":-144},{"x":85,"y":50},{"x":43,"y":-91},{"x":66,"y":39},{"x":-23,"y":46},{"x":103,"y":182},{"x":38,"y":142},{"x":52,"y":37},{"x":20,"y":153},{"x":68,"y":19},{"x":36,"y":-30},{"x":15,"y":41},{"x":197,"y":40},{"x":48,"y":-15},{"x":30,"y":-257},{"x":55,"y":-60},{"x":747,"y":179},{"x":66,"y":-283},{"x":-226,"y":-65},{"x":58,"y":-254},{"x":-53,"y":0},{"x":-26,"y":-130},{"x":49,"y":-12},{"x":188,"y":58},{"x":77,"y":-299},{"x":-13,"y":-71},{"x":-97,"y":-77},{"x":85,"y":-159},{"x":-42,"y":-28},{"x":55,"y":-106},{"x":-92,"y":-33},{"x":-189,"y":-199},{"x":-41,"y":7},{"x":-38,"y":67},{"x":-316,"y":-208},{"x":-45,"y":-79},{"x":-42,"y":2},{"x":-49,"y":-57},{"x":9,"y":-53},{"x":-89,"y":-2},{"x":-32,"y":-64},{"x":16,"y":-87},{"x":-90,"y":-133},{"x":-2,"y":-103},{"x":-66,"y":-150},{"x":75,"y":-336},{"x":-115,"y":-147},{"x":61,"y":-79},{"x":45,"y":-12},{"x":115,"y":-207},{"x":30,"y":-24},{"x":124,"y":40},{"x":192,"y":-7},{"x":85,"y":53},{"x":113,"y":-86},{"x":-80,"y":-246},{"x":51,"y":-84},{"x":17,"y":-189},{"x":-97,"y":-227}],"type":"area"},{"arc":[{"x":175857,"y":160930},{"x":-798,"y":-626},{"x":-146,"y":-79},{"x":26,"y":-16},{"x":-50,"y":13},{"x":-440,"y":-301},{"x":-44,"y":3},{"x":-16,"y":-29},{"x":18,"y":38},{"x":-40,"y":-55},{"x":-380,"y":-211},{"x":-221,"y":-82},{"x":-378,"y":-200},{"x":-51,"y":-10},{"x":-39,"y":81},{"x":-29,"y":36},{"x":57,"y":-98},{"x":-17,"y":-10},{"x":-21,"y":52},{"x":-32,"y":-70},{"x":-43,"y":36},{"x":25,"y":-61},{"x":-109,"y":7},{"x":58,"y":35},{"x":36,"y":105},{"x":61,"y":63},{"x":-62,"y":-61},{"x":-48,"y":-110},{"x":-80,"y":-41},{"x":3,"y":36},{"x":-10,"y":-44},{"x":-236,"y":-83},{"x":-124,"y":-7},{"x":-76,"y":53},{"x":-80,"y":5},{"x":-37,"y":41},{"x":33,"y":2},{"x":-39,"y":21},{"x":-6,"y":-31},{"x":-123,"y":7},{"x":-72,"y":120},{"x":-81,"y":-24},{"x":-58,"y":24},{"x":-116,"y":-18},{"x":-139,"y":-75}],"type":"coastline"},{"arc":[{"x":185606,"y":169109},{"x":-225,"y":66}],"type":"area"},{"arc":[{"x":185381,"y":169175},{"x":-207,"y":-194},{"x":-518,"y":318},{"x":11,"y":-187},{"x":-136,"y":74},{"x":-117,"y":-45}],"type":"area"},{"arc":[{"x":184414,"y":169141},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":184412,"y":169140},{"x":-79,"y":-13},{"x":-32,"y":47},{"x":-108,"y":-141},{"x":-44,"y":-6},{"x":-14,"y":31},{"x":-33,"y":-33},{"x":-30,"y":36},{"x":-48,"y":-2},{"x":-14,"y":-40},{"x":-73,"y":-37},{"x":-35,"y":41},{"x":-113,"y":-217},{"x":-191,"y":78},{"x":-9,"y":-104},{"x":35,"y":-78},{"x":53,"y":18},{"x":88,"y":-101},{"x":14,"y":-171},{"x":39,"y":-17},{"x":47,"y":-179},{"x":35,"y":-25},{"x":-10,"y":-52},{"x":58,"y":-62},{"x":-89,"y":-101},{"x":29,"y":-71},{"x":-115,"y":74},{"x":-146,"y":-254},{"x":49,"y":-45},{"x":-12,"y":-113},{"x":301,"y":-209},{"x":-32,"y":-53},{"x":9,"y":-134},{"x":54,"y":-111},{"x":71,"y":-25},{"x":-33,"y":-85},{"x":49,"y":-73},{"x":-32,"y":-46},{"x":32,"y":-37},{"x":-22,"y":-54},{"x":42,"y":-98},{"x":109,"y":-81},{"x":1,"y":-93},{"x":116,"y":-69},{"x":57,"y":67},{"x":27,"y":-8}],"type":"area"},{"arc":[{"x":184413,"y":166494},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":184414,"y":166494},{"x":58,"y":-43},{"x":94,"y":57},{"x":36,"y":-32},{"x":17,"y":38},{"x":90,"y":13},{"x":17,"y":43},{"x":39,"y":8},{"x":86,"y":-194}],"type":"area"},{"arc":[{"x":179536,"y":171484},{"x":-49,"y":41},{"x":-94,"y":-121},{"x":180,"y":68},{"x":-37,"y":12}],"type":"coastline"},{"arc":[{"x":179807,"y":167112},{"x":-11,"y":-28},{"x":21,"y":53},{"x":-10,"y":-25}],"type":"coastline"},{"arc":[{"x":179815,"y":167201},{"x":-7,"y":108},{"x":9,"y":-172},{"x":-2,"y":64}],"type":"coastline"},{"arc":[{"x":180412,"y":173321},{"x":-14,"y":56},{"x":-59,"y":-167},{"x":70,"y":9},{"x":3,"y":102}],"type":"coastline"},{"arc":[{"x":184517,"y":170473},{"x":-102,"y":-128}],"type":"area"},{"arc":[{"x":184415,"y":170345},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":184413,"y":170343},{"x":-313,"y":-387},{"x":45,"y":-208},{"x":-95,"y":-84},{"x":-85,"y":39},{"x":-9,"y":-62},{"x":-50,"y":-4},{"x":-83,"y":57},{"x":-51,"y":-9},{"x":-184,"y":129},{"x":-183,"y":18},{"x":-52,"y":44},{"x":-112,"y":8},{"x":1,"y":41},{"x":-76,"y":42},{"x":-35,"y":60},{"x":46,"y":61},{"x":-31,"y":51},{"x":-150,"y":154},{"x":-90,"y":42},{"x":13,"y":82},{"x":-90,"y":156},{"x":12,"y":62},{"x":-46,"y":18},{"x":-42,"y":356},{"x":-41,"y":33},{"x":16,"y":84},{"x":-38,"y":4},{"x":-12,"y":90},{"x":-116,"y":92},{"x":-27,"y":75},{"x":46,"y":71},{"x":-31,"y":60},{"x":-31,"y":-1},{"x":-171,"y":248},{"x":-123,"y":47},{"x":38,"y":239},{"x":-103,"y":122},{"x":-33,"y":178},{"x":-91,"y":82},{"x":-87,"y":156},{"x":44,"y":156},{"x":44,"y":-8},{"x":28,"y":52},{"x":92,"y":55},{"x":-30,"y":22},{"x":95,"y":109},{"x":-61,"y":129},{"x":23,"y":63},{"x":-36,"y":14},{"x":19,"y":56},{"x":-37,"y":91},{"x":40,"y":98},{"x":-50,"y":12},{"x":25,"y":96},{"x":39,"y":-8},{"x":61,"y":46},{"x":-23,"y":87},{"x":59,"y":33},{"x":25,"y":-21},{"x":3,"y":46},{"x":45,"y":16},{"x":0,"y":105},{"x":28,"y":16},{"x":-42,"y":58},{"x":10,"y":82}],"type":"area"},{"arc":[{"x":182350,"y":173994},{"x":-490,"y":233},{"x":146,"y":164},{"x":25,"y":143},{"x":31,"y":23},{"x":-151,"y":127},{"x":-82,"y":233},{"x":-150,"y":25},{"x":-128,"y":73}],"type":"area"},{"arc":[{"x":181551,"y":175015},{"x":-63,"y":-72},{"x":56,"y":-156},{"x":-24,"y":-102},{"x":-119,"y":-298},{"x":-182,"y":-237},{"x":-10,"y":-187},{"x":21,"y":-65},{"x":85,"y":-48},{"x":-18,"y":-61},{"x":34,"y":-2},{"x":-50,"y":-177},{"x":-109,"y":-117},{"x":-3,"y":-62},{"x":-74,"y":-53},{"x":-12,"y":21},{"x":-37,"y":-9},{"x":46,"y":-7},{"x":-33,"y":3},{"x":-21,"y":-39},{"x":-87,"y":-19},{"x":-111,"y":-2},{"x":-135,"y":42},{"x":-2,"y":58},{"x":-19,"y":-48},{"x":-5,"y":106},{"x":32,"y":30},{"x":-41,"y":29},{"x":39,"y":172},{"x":-11,"y":31},{"x":-50,"y":10},{"x":-21,"y":58},{"x":16,"y":-124},{"x":-29,"y":-52},{"x":-43,"y":4},{"x":-27,"y":-200},{"x":42,"y":35},{"x":60,"y":-56},{"x":-45,"y":-66},{"x":53,"y":35},{"x":-4,"y":-33},{"x":-36,"y":-5},{"x":41,"y":0},{"x":-19,"y":-117},{"x":-108,"y":-90},{"x":-74,"y":18},{"x":-36,"y":-37},{"x":-31,"y":40},{"x":31,"y":-41},{"x":-25,"y":29},{"x":-62,"y":-18},{"x":-47,"y":-201},{"x":-87,"y":-79},{"x":-14,"y":-149},{"x":-61,"y":-9},{"x":-28,"y":-49},{"x":-63,"y":16},{"x":-23,"y":38},{"x":-104,"y":-44},{"x":-84,"y":-183},{"x":24,"y":-58},{"x":-118,"y":-160},{"x":-10,"y":-101},{"x":50,"y":-41},{"x":-22,"y":-65},{"x":71,"y":-142},{"x":-92,"y":-49},{"x":49,"y":-28},{"x":-1,"y":-81},{"x":36,"y":-42},{"x":-38,"y":-204},{"x":68,"y":-19},{"x":21,"y":-55},{"x":4,"y":30},{"x":56,"y":-136},{"x":38,"y":39},{"x":65,"y":-42},{"x":33,"y":-84},{"x":-14,"y":-84},{"x":95,"y":48},{"x":108,"y":-58},{"x":11,"y":34},{"x":-28,"y":6},{"x":41,"y":40},{"x":38,"y":-26},{"x":-28,"y":36},{"x":31,"y":31},{"x":12,"y":-39},{"x":17,"y":17},{"x":-1,"y":64},{"x":32,"y":19},{"x":98,"y":-277},{"x":-47,"y":-291},{"x":-20,"y":16},{"x":-6,"y":-48},{"x":-268,"y":-253},{"x":-272,"y":-148},{"x":-140,"y":-34},{"x":-57,"y":21},{"x":19,"y":15},{"x":-41,"y":12},{"x":-49,"y":96},{"x":-102,"y":58},{"x":-12,"y":67},{"x":-153,"y":226},{"x":-38,"y":-29},{"x":-12,"y":-508},{"x":20,"y":24},{"x":37,"y":-349},{"x":59,"y":-81},{"x":6,"y":-189},{"x":52,"y":-82},{"x":-29,"y":-360},{"x":22,"y":-96},{"x":-35,"y":-157},{"x":41,"y":-179},{"x":-111,"y":-335},{"x":52,"y":-191},{"x":-10,"y":-110},{"x":78,"y":-60},{"x":4,"y":-129},{"x":73,"y":-191},{"x":51,"y":-37},{"x":2,"y":-54},{"x":3,"y":55},{"x":4,"y":-46},{"x":25,"y":12},{"x":-16,"y":-117},{"x":31,"y":-97},{"x":46,"y":-37},{"x":-40,"y":32},{"x":32,"y":73},{"x":20,"y":-16},{"x":-10,"y":31},{"x":15,"y":-23},{"x":79,"y":14},{"x":-11,"y":-33},{"x":55,"y":-14},{"x":-32,"y":-31},{"x":50,"y":-12},{"x":13,"y":28},{"x":0,"y":-52},{"x":-40,"y":22},{"x":45,"y":-26},{"x":32,"y":7},{"x":-69,"y":-123},{"x":63,"y":91},{"x":-28,"y":-100},{"x":6,"y":-25},{"x":44,"y":22},{"x":-33,"y":-44},{"x":7,"y":-45},{"x":37,"y":18},{"x":4,"y":-19},{"x":-34,"y":-47},{"x":39,"y":8},{"x":3,"y":-28},{"x":-68,"y":-46},{"x":91,"y":-4},{"x":-4,"y":-297},{"x":-152,"y":-746},{"x":-168,"y":-421},{"x":-189,"y":-308},{"x":12,"y":-21},{"x":12,"y":34},{"x":4,"y":-52},{"x":-23,"y":13},{"x":27,"y":-27},{"x":-104,"y":-231},{"x":-590,"y":-953},{"x":-360,"y":-464}],"type":"coastline"},{"arc":[{"x":184414,"y":166494},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":184412,"y":169140},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":185381,"y":169175},{"x":-58,"y":272},{"x":-226,"y":429},{"x":-580,"y":597}],"type":"area"},{"arc":[{"x":185743,"y":174384},{"x":-13,"y":0}],"type":"area"},{"arc":[{"x":185730,"y":174384},{"x":6,"y":-126},{"x":56,"y":-43},{"x":36,"y":-169},{"x":-33,"y":-68},{"x":-40,"y":58},{"x":-67,"y":5},{"x":-14,"y":-22}],"type":"coastline"},{"arc":[{"x":185674,"y":174019},{"x":63,"y":-57},{"x":-45,"y":-21},{"x":-24,"y":-71},{"x":-37,"y":-33},{"x":-56,"y":24},{"x":-75,"y":-62},{"x":-54,"y":2},{"x":-16,"y":-109},{"x":-92,"y":-20},{"x":1,"y":-77},{"x":-67,"y":-30},{"x":4,"y":-173},{"x":-117,"y":-206},{"x":-40,"y":-199},{"x":-37,"y":-23},{"x":-8,"y":-71},{"x":29,"y":-33},{"x":-22,"y":-104},{"x":-105,"y":-152},{"x":10,"y":-61},{"x":-211,"y":195},{"x":-40,"y":-33},{"x":-2,"y":-55},{"x":-42,"y":41},{"x":-276,"y":-340}],"type":"area"},{"arc":[{"x":184415,"y":172351},{"x":-13,"y":-16}],"type":"coastline"},{"arc":[{"x":184402,"y":172335},{"x":-49,"y":-63},{"x":8,"y":-174},{"x":-77,"y":-141},{"x":127,"y":-141}],"type":"area"},{"arc":[{"x":184411,"y":171816},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":184414,"y":171813},{"x":122,"y":-126},{"x":-67,"y":-115},{"x":-14,"y":-192},{"x":38,"y":-117},{"x":-35,"y":-30},{"x":-37,"y":-207},{"x":40,"y":-32},{"x":-20,"y":-101},{"x":50,"y":-120},{"x":-23,"y":-73},{"x":111,"y":-145},{"x":-62,"y":-82}],"type":"area"},{"arc":[{"x":192636,"y":175104},{"x":-30,"y":58},{"x":-76,"y":-35},{"x":-50,"y":10},{"x":-36,"y":65},{"x":-46,"y":12},{"x":-52,"y":-43},{"x":-154,"y":20},{"x":-49,"y":46},{"x":-148,"y":42},{"x":-23,"y":58},{"x":-121,"y":-3},{"x":-31,"y":-46},{"x":-41,"y":3},{"x":-80,"y":-107},{"x":-186,"y":3},{"x":-91,"y":-85},{"x":-208,"y":-66},{"x":-34,"y":-76},{"x":-181,"y":-98},{"x":-46,"y":-80},{"x":-125,"y":-79},{"x":-169,"y":-210},{"x":-416,"y":-152},{"x":-199,"y":39},{"x":-36,"y":-46},{"x":-65,"y":-3},{"x":-112,"y":-71},{"x":-83,"y":-56},{"x":-73,"y":-138},{"x":-88,"y":-8},{"x":-37,"y":-34},{"x":37,"y":33},{"x":52,"y":-7},{"x":-35,"y":-22},{"x":-5,"y":23},{"x":-21,"y":-68},{"x":-20,"y":34},{"x":8,"y":-44},{"x":-89,"y":-86},{"x":-78,"y":-26},{"x":-131,"y":-106},{"x":30,"y":12},{"x":-65,"y":-89},{"x":-106,"y":-44},{"x":-30,"y":-58},{"x":-79,"y":-13},{"x":26,"y":-3},{"x":-160,"y":-98},{"x":-218,"y":-70},{"x":-305,"y":-194},{"x":-167,"y":23},{"x":-8,"y":-27},{"x":-131,"y":40},{"x":-358,"y":-115},{"x":-146,"y":-177},{"x":-110,"y":36},{"x":23,"y":-20},{"x":-21,"y":13},{"x":-91,"y":-45},{"x":-346,"y":78},{"x":-214,"y":197},{"x":-473,"y":243},{"x":-93,"y":103},{"x":38,"y":-86},{"x":-32,"y":57},{"x":-22,"y":-11},{"x":13,"y":21},{"x":-40,"y":-20},{"x":-30,"y":44},{"x":-17,"y":-25},{"x":-67,"y":27},{"x":-97,"y":186},{"x":-229,"y":644}],"type":"coastline"},{"arc":[{"x":185349,"y":174415},{"x":-31,"y":-58},{"x":-1,"y":-17},{"x":21,"y":-59},{"x":-15,"y":79},{"x":23,"y":31},{"x":20,"y":59},{"x":-17,"y":-35}],"type":"coastline"},{"arc":[{"x":185462,"y":174976},{"x":-39,"y":-54},{"x":36,"y":6},{"x":3,"y":48}],"type":"coastline"},{"arc":[{"x":185674,"y":174019},{"x":-33,"y":-31},{"x":-52,"y":12},{"x":-108,"y":176},{"x":-96,"y":-36},{"x":-87,"y":88},{"x":-54,"y":-14},{"x":50,"y":19},{"x":-94,"y":-33},{"x":-317,"y":178},{"x":-290,"y":27},{"x":-361,"y":101},{"x":-185,"y":13},{"x":-325,"y":116},{"x":-115,"y":66},{"x":-9,"y":11},{"x":10,"y":16},{"x":-16,"y":21},{"x":15,"y":-21},{"x":-9,"y":-14},{"x":2,"y":22},{"x":-15,"y":-11},{"x":-9,"y":17},{"x":-9,"y":-16},{"x":-124,"y":58},{"x":-232,"y":168},{"x":-227,"y":233},{"x":-174,"y":250},{"x":-110,"y":85}],"type":"coastline"},{"arc":[{"x":182700,"y":175520},{"x":-47,"y":-104},{"x":10,"y":-52},{"x":193,"y":-222},{"x":177,"y":-361},{"x":7,"y":-337},{"x":-95,"y":-16},{"x":-92,"y":40},{"x":-179,"y":17},{"x":-10,"y":-44},{"x":-68,"y":-14},{"x":-62,"y":-89},{"x":6,"y":-130},{"x":-73,"y":-50},{"x":-30,"y":39},{"x":-42,"y":-38},{"x":-60,"y":33},{"x":-60,"y":-62},{"x":19,"y":-57},{"x":41,"y":-8},{"x":-31,"y":-12},{"x":47,"y":-26},{"x":-1,"y":-33}],"type":"area"},{"arc":[{"x":184413,"y":170343},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":184414,"y":171813},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":184402,"y":172335},{"x":13,"y":16}],"type":"coastline"},{"arc":[{"x":185743,"y":174384},{"x":-183,"y":642},{"x":-112,"y":124},{"x":-187,"y":44},{"x":-67,"y":-41},{"x":-62,"y":-114},{"x":2,"y":-347},{"x":11,"y":96},{"x":21,"y":-10},{"x":-21,"y":117},{"x":90,"y":-214},{"x":-40,"y":161},{"x":25,"y":-25},{"x":-17,"y":46},{"x":66,"y":-11},{"x":-16,"y":223},{"x":13,"y":15},{"x":11,"y":-41},{"x":21,"y":68},{"x":1,"y":-54},{"x":49,"y":75},{"x":108,"y":-17},{"x":-42,"y":-10},{"x":52,"y":-16},{"x":-35,"y":-43},{"x":-17,"y":16},{"x":15,"y":-100},{"x":17,"y":89},{"x":58,"y":26},{"x":22,"y":-25},{"x":-57,"y":-18},{"x":72,"y":-14},{"x":-2,"y":-98},{"x":29,"y":-16},{"x":10,"y":22},{"x":27,"y":-68},{"x":-25,"y":-59},{"x":-28,"y":34},{"x":-32,"y":-191},{"x":108,"y":66},{"x":-93,"y":-136},{"x":31,"y":-60},{"x":25,"y":73},{"x":44,"y":7},{"x":-117,"y":-248},{"x":158,"y":217},{"x":54,"y":-185}],"type":"coastline"},{"arc":[{"x":182009,"y":177135},{"x":-99,"y":89},{"x":-61,"y":-86},{"x":15,"y":-72},{"x":80,"y":-11},{"x":65,"y":80}],"type":"coastline"},{"arc":[{"x":182094,"y":177212},{"x":-44,"y":49},{"x":-17,"y":-51},{"x":36,"y":-48},{"x":25,"y":50}],"type":"coastline"},{"arc":[{"x":183496,"y":180410},{"x":-5,"y":45},{"x":-28,"y":-6},{"x":2,"y":-38},{"x":-140,"y":-84},{"x":21,"y":-61},{"x":53,"y":-25},{"x":-21,"y":-31},{"x":30,"y":-38},{"x":58,"y":51},{"x":-39,"y":95},{"x":69,"y":92}],"type":"coastline"},{"arc":[{"x":183567,"y":179431},{"x":-12,"y":22},{"x":-26,"y":-15},{"x":38,"y":-7}],"type":"coastline"},{"arc":[{"x":182700,"y":175520},{"x":-88,"y":347},{"x":-132,"y":296},{"x":22,"y":61},{"x":-27,"y":46},{"x":-42,"y":4},{"x":2,"y":43},{"x":118,"y":93},{"x":58,"y":2},{"x":103,"y":68},{"x":40,"y":80},{"x":65,"y":-13},{"x":65,"y":73},{"x":-27,"y":44},{"x":64,"y":118},{"x":33,"y":14},{"x":36,"y":-29},{"x":9,"y":117},{"x":75,"y":93},{"x":82,"y":27},{"x":-34,"y":5},{"x":14,"y":40},{"x":73,"y":-61},{"x":-5,"y":69},{"x":70,"y":77},{"x":80,"y":207},{"x":52,"y":27},{"x":45,"y":87},{"x":59,"y":5},{"x":110,"y":90},{"x":9,"y":124},{"x":-54,"y":49},{"x":25,"y":52},{"x":-53,"y":134},{"x":-6,"y":194},{"x":29,"y":59},{"x":73,"y":37},{"x":-39,"y":21},{"x":1,"y":114},{"x":23,"y":-47},{"x":69,"y":97},{"x":-8,"y":43},{"x":-43,"y":-22},{"x":-30,"y":38},{"x":20,"y":68},{"x":-32,"y":-3},{"x":-33,"y":97},{"x":13,"y":33},{"x":12,"y":-37},{"x":9,"y":28},{"x":-27,"y":14},{"x":-15,"y":211},{"x":-77,"y":-86},{"x":-52,"y":17},{"x":-12,"y":-19},{"x":11,"y":26},{"x":-38,"y":11},{"x":-64,"y":-168},{"x":-63,"y":-31},{"x":-89,"y":-163},{"x":-28,"y":10},{"x":-14,"y":-13},{"x":36,"y":5},{"x":-55,"y":-90},{"x":-30,"y":26},{"x":36,"y":-140},{"x":-104,"y":-63},{"x":74,"y":-59},{"x":-8,"y":-120},{"x":-66,"y":-46},{"x":-44,"y":-167},{"x":-45,"y":-34},{"x":-39,"y":35},{"x":-30,"y":-31},{"x":90,"y":-134},{"x":-18,"y":-233},{"x":-88,"y":-164},{"x":-53,"y":-14},{"x":-40,"y":33},{"x":-64,"y":-64},{"x":15,"y":-44},{"x":-47,"y":23},{"x":-113,"y":-78},{"x":7,"y":-42},{"x":37,"y":-31},{"x":-39,"y":-46},{"x":21,"y":-1},{"x":19,"y":46},{"x":-1,"y":28},{"x":36,"y":-15},{"x":-33,"y":-115},{"x":-47,"y":0},{"x":15,"y":37},{"x":-30,"y":-63},{"x":-45,"y":14},{"x":-92,"y":-58},{"x":-244,"y":-37},{"x":-62,"y":-41},{"x":-68,"y":7},{"x":-19,"y":30},{"x":28,"y":2},{"x":-41,"y":22},{"x":-106,"y":-208},{"x":-48,"y":-16},{"x":-17,"y":31},{"x":-9,"y":-27},{"x":-12,"y":44},{"x":-64,"y":7},{"x":-60,"y":-44},{"x":2,"y":-91},{"x":40,"y":-18},{"x":-21,"y":-47},{"x":-98,"y":-10},{"x":56,"y":48},{"x":-57,"y":-30},{"x":-38,"y":105},{"x":-85,"y":-31},{"x":-58,"y":-188},{"x":77,"y":-22},{"x":25,"y":82},{"x":85,"y":-30},{"x":72,"y":-89},{"x":27,"y":-147},{"x":-58,"y":-766},{"x":-88,"y":-354}],"type":"coastline"},{"arc":[{"x":183812,"y":181488},{"x":-25,"y":33},{"x":-23,"y":-72},{"x":48,"y":39}],"type":"coastline"},{"arc":[{"x":183920,"y":181587},{"x":-108,"y":-33},{"x":24,"y":-70},{"x":84,"y":103}],"type":"coastline"},{"arc":[{"x":184158,"y":181052},{"x":-88,"y":28},{"x":-10,"y":55},{"x":-19,"y":-24},{"x":-43,"y":16},{"x":-4,"y":-115},{"x":-49,"y":-30},{"x":-27,"y":17},{"x":-28,"y":-51},{"x":-60,"y":-10},{"x":-9,"y":-31},{"x":35,"y":12},{"x":21,"y":-47},{"x":-15,"y":-106},{"x":-35,"y":-61},{"x":-80,"y":-33},{"x":-28,"y":-63},{"x":50,"y":-58},{"x":12,"y":-78},{"x":104,"y":20},{"x":-6,"y":85},{"x":122,"y":72},{"x":-88,"y":83},{"x":21,"y":43},{"x":78,"y":-20},{"x":9,"y":22},{"x":-8,"y":63},{"x":-34,"y":-28},{"x":-55,"y":23},{"x":34,"y":50},{"x":-18,"y":71},{"x":77,"y":16},{"x":35,"y":-52},{"x":25,"y":7},{"x":81,"y":124}],"type":"coastline"},{"arc":[{"x":184292,"y":179403},{"x":-7,"y":28},{"x":-90,"y":6},{"x":-36,"y":67},{"x":-5,"y":196},{"x":92,"y":73},{"x":-29,"y":117},{"x":-50,"y":-98},{"x":-82,"y":-26},{"x":-146,"y":167},{"x":-26,"y":-172},{"x":37,"y":-166},{"x":-84,"y":-54},{"x":-5,"y":-52},{"x":22,"y":48},{"x":41,"y":-33},{"x":22,"y":12},{"x":19,"y":-47},{"x":-42,"y":-26},{"x":50,"y":-14},{"x":57,"y":67},{"x":111,"y":-22},{"x":59,"y":-112},{"x":-32,"y":-79},{"x":50,"y":-76},{"x":31,"y":173},{"x":43,"y":23}],"type":"coastline"},{"arc":[{"x":185115,"y":181336},{"x":-4,"y":49},{"x":-87,"y":68},{"x":-46,"y":101},{"x":-7,"y":323},{"x":-182,"y":-161},{"x":-101,"y":-42},{"x":-75,"y":48},{"x":-14,"y":96},{"x":-38,"y":-61},{"x":-18,"y":38},{"x":-16,"y":-52},{"x":-51,"y":-18},{"x":-47,"y":-137},{"x":17,"y":-31},{"x":-39,"y":1},{"x":-21,"y":-126},{"x":-131,"y":-247},{"x":119,"y":20},{"x":65,"y":-89},{"x":160,"y":-27},{"x":60,"y":-114},{"x":193,"y":-123},{"x":8,"y":-114},{"x":107,"y":187},{"x":69,"y":288},{"x":79,"y":123}],"type":"coastline"},{"arc":[{"x":186088,"y":182720},{"x":-66,"y":68},{"x":4,"y":59},{"x":-28,"y":-17},{"x":-31,"y":20},{"x":12,"y":176},{"x":-63,"y":20},{"x":-45,"y":-33},{"x":-49,"y":54},{"x":-55,"y":3},{"x":87,"y":-679},{"x":35,"y":215},{"x":87,"y":100},{"x":88,"y":-20},{"x":24,"y":34}],"type":"coastline"},{"arc":[{"x":159459,"y":139064},{"x":-45,"y":74},{"x":44,"y":-74},{"x":38,"y":3},{"x":-37,"y":-3}],"type":"coastline"},{"arc":[{"x":159944,"y":140033},{"x":-28,"y":-1},{"x":16,"y":-25},{"x":12,"y":26}],"type":"coastline"},{"arc":[{"x":160306,"y":140071},{"x":-17,"y":21},{"x":-18,"y":-37},{"x":35,"y":16}],"type":"coastline"},{"arc":[{"x":161086,"y":140201},{"x":-69,"y":48},{"x":24,"y":-52},{"x":45,"y":4}],"type":"coastline"},{"arc":[{"x":159842,"y":141859},{"x":-110,"y":-314},{"x":-101,"y":-18},{"x":-92,"y":40},{"x":-75,"y":-60},{"x":-57,"y":3},{"x":-31,"y":-167},{"x":-106,"y":16},{"x":-58,"y":-26},{"x":-63,"y":-209},{"x":-46,"y":-16},{"x":-21,"y":-58},{"x":-141,"y":-41},{"x":-108,"y":-136},{"x":-65,"y":27},{"x":-66,"y":-55},{"x":-63,"y":-116},{"x":22,"y":-148},{"x":-48,"y":-33},{"x":0,"y":-49},{"x":-169,"y":-69},{"x":-91,"y":62},{"x":-21,"y":128},{"x":-62,"y":50},{"x":-18,"y":166},{"x":-200,"y":201},{"x":-50,"y":-68},{"x":-178,"y":-16},{"x":-79,"y":-66},{"x":-61,"y":11},{"x":-27,"y":-38},{"x":-86,"y":-10},{"x":-39,"y":-150},{"x":28,"y":-126},{"x":68,"y":-69},{"x":1,"y":-184},{"x":41,"y":-76},{"x":-110,"y":-10},{"x":-49,"y":58},{"x":-48,"y":0},{"x":-96,"y":-56},{"x":-110,"y":1},{"x":-40,"y":-108}],"type":"area"},{"arc":[{"x":157217,"y":140130},{"x":-35,"y":-145},{"x":58,"y":-3},{"x":80,"y":-126},{"x":195,"y":-127},{"x":50,"y":-63},{"x":28,"y":-135},{"x":158,"y":-155},{"x":-47,"y":-43},{"x":3,"y":-175},{"x":48,"y":-78},{"x":-43,"y":-180},{"x":-47,"y":-29},{"x":35,"y":-49},{"x":-37,"y":-214},{"x":194,"y":-213},{"x":121,"y":-51},{"x":-24,"y":-126},{"x":46,"y":-154},{"x":-46,"y":-155},{"x":7,"y":-153},{"x":-36,"y":-35},{"x":-53,"y":12},{"x":-85,"y":-46},{"x":167,"y":-80},{"x":-5,"y":41},{"x":128,"y":14},{"x":206,"y":-203},{"x":-208,"y":58},{"x":-54,"y":-64},{"x":-59,"y":124},{"x":34,"y":-139},{"x":41,"y":-1},{"x":25,"y":-65},{"x":28,"y":7},{"x":74,"y":-64},{"x":-65,"y":-15},{"x":-11,"y":-47},{"x":-50,"y":-25},{"x":-110,"y":4},{"x":-35,"y":-31},{"x":27,"y":-45},{"x":-35,"y":-60},{"x":-84,"y":35},{"x":-47,"y":-55},{"x":75,"y":-68},{"x":84,"y":32},{"x":44,"y":-89},{"x":67,"y":-19},{"x":127,"y":-140},{"x":135,"y":-74},{"x":25,"y":-57},{"x":111,"y":11},{"x":18,"y":-90},{"x":-43,"y":-31},{"x":113,"y":-28},{"x":21,"y":-43},{"x":-64,"y":-70},{"x":61,"y":-29},{"x":-28,"y":-41},{"x":37,"y":-165},{"x":26,"y":-20},{"x":39,"y":16},{"x":26,"y":-72},{"x":30,"y":-110},{"x":-41,"y":-28},{"x":120,"y":-143},{"x":28,"y":-152},{"x":118,"y":-54},{"x":83,"y":-89},{"x":37,"y":14},{"x":25,"y":-198}],"type":"area"},{"arc":[{"x":159028,"y":135339},{"x":509,"y":240},{"x":595,"y":167},{"x":497,"y":93},{"x":60,"y":-41},{"x":-24,"y":38},{"x":45,"y":10},{"x":-24,"y":-40},{"x":36,"y":47},{"x":96,"y":15},{"x":659,"y":51},{"x":308,"y":-30},{"x":44,"y":-62},{"x":102,"y":-47},{"x":133,"y":-153},{"x":-4,"y":-156},{"x":-16,"y":67},{"x":14,"y":-73},{"x":20,"y":-1},{"x":-6,"y":-71},{"x":28,"y":-69},{"x":92,"y":6},{"x":66,"y":66},{"x":-49,"y":60},{"x":41,"y":103},{"x":-38,"y":47},{"x":20,"y":29},{"x":-40,"y":22},{"x":30,"y":50},{"x":-36,"y":-45},{"x":-18,"y":95},{"x":36,"y":-51},{"x":-23,"y":75},{"x":51,"y":47},{"x":67,"y":-17},{"x":28,"y":89},{"x":417,"y":113},{"x":73,"y":-43},{"x":74,"y":33},{"x":115,"y":-48},{"x":97,"y":10},{"x":81,"y":22},{"x":11,"y":61},{"x":95,"y":21},{"x":55,"y":-41},{"x":47,"y":9},{"x":26,"y":40},{"x":-123,"y":136},{"x":-23,"y":103},{"x":-78,"y":82},{"x":-5,"y":66},{"x":-8,"y":-28},{"x":-29,"y":53},{"x":-119,"y":42},{"x":-127,"y":175},{"x":-99,"y":56},{"x":-3,"y":37},{"x":-15,"y":-46},{"x":5,"y":45},{"x":-77,"y":80},{"x":-13,"y":97},{"x":-52,"y":36},{"x":10,"y":143},{"x":67,"y":135},{"x":142,"y":157},{"x":98,"y":10},{"x":52,"y":48},{"x":0,"y":78},{"x":-31,"y":14},{"x":111,"y":90},{"x":-49,"y":38},{"x":21,"y":66},{"x":-29,"y":30},{"x":6,"y":90},{"x":-10,"y":-23},{"x":-57,"y":95},{"x":-26,"y":126},{"x":-165,"y":106},{"x":5,"y":36},{"x":-7,"y":-26},{"x":-50,"y":104},{"x":-69,"y":54},{"x":-118,"y":40},{"x":-374,"y":-84},{"x":-331,"y":-16},{"x":-337,"y":56},{"x":-115,"y":44},{"x":-25,"y":38},{"x":15,"y":-29},{"x":-24,"y":-3},{"x":12,"y":20},{"x":-24,"y":-21},{"x":-196,"y":16},{"x":-92,"y":14},{"x":-65,"y":44},{"x":-17,"y":-35},{"x":-76,"y":19},{"x":-3,"y":26},{"x":-5,"y":-24},{"x":-61,"y":10},{"x":-72,"y":39},{"x":27,"y":-26},{"x":-30,"y":18},{"x":-4,"y":-29},{"x":-365,"y":57},{"x":-82,"y":23},{"x":-23,"y":35},{"x":17,"y":-32},{"x":-17,"y":24},{"x":-360,"y":63},{"x":-34,"y":31},{"x":12,"y":-24},{"x":-49,"y":5},{"x":-122,"y":43},{"x":-9,"y":34},{"x":-11,"y":-23},{"x":-64,"y":27},{"x":-150,"y":125},{"x":16,"y":23},{"x":-16,"y":-22},{"x":-40,"y":82},{"x":25,"y":47},{"x":-28,"y":-34},{"x":-117,"y":143},{"x":-29,"y":-12},{"x":48,"y":67},{"x":-51,"y":-51},{"x":1,"y":82},{"x":68,"y":-19},{"x":-71,"y":49},{"x":7,"y":58},{"x":59,"y":24},{"x":-48,"y":134},{"x":52,"y":162},{"x":151,"y":170},{"x":78,"y":26},{"x":48,"y":94},{"x":56,"y":1},{"x":8,"y":81},{"x":103,"y":39},{"x":44,"y":76},{"x":78,"y":-1},{"x":63,"y":-38},{"x":7,"y":81},{"x":56,"y":19},{"x":-18,"y":-22},{"x":21,"y":13},{"x":-4,"y":18},{"x":71,"y":4},{"x":29,"y":-34},{"x":51,"y":4},{"x":-1,"y":25},{"x":142,"y":-15},{"x":30,"y":39},{"x":35,"y":-78},{"x":-34,"y":-38},{"x":90,"y":-149},{"x":40,"y":194},{"x":49,"y":6},{"x":-4,"y":-31},{"x":-26,"y":4},{"x":30,"y":-7},{"x":86,"y":7},{"x":70,"y":102},{"x":40,"y":-15},{"x":15,"y":-61},{"x":19,"y":61},{"x":53,"y":39},{"x":113,"y":36},{"x":52,"y":-15},{"x":-18,"y":188},{"x":-121,"y":105},{"x":-4,"y":43},{"x":2,"y":-40},{"x":-19,"y":29},{"x":20,"y":151},{"x":-27,"y":70},{"x":-64,"y":13},{"x":-123,"y":91},{"x":-123,"y":175},{"x":-24,"y":2},{"x":30,"y":-21},{"x":-124,"y":-13},{"x":17,"y":-20},{"x":-73,"y":29},{"x":21,"y":-13},{"x":-33,"y":-15},{"x":7,"y":-40},{"x":-57,"y":-7},{"x":23,"y":208},{"x":-80,"y":189},{"x":-39,"y":5},{"x":-69,"y":90},{"x":-24,"y":67},{"x":21,"y":89},{"x":-35,"y":74},{"x":-106,"y":60},{"x":-58,"y":80},{"x":11,"y":-32},{"x":-105,"y":47}],"type":"coastline"},{"arc":[{"x":157217,"y":140130},{"x":-43,"y":-37},{"x":-73,"y":38},{"x":-85,"y":-33},{"x":-34,"y":61},{"x":-248,"y":-17},{"x":-131,"y":-101},{"x":-50,"y":72},{"x":-279,"y":151}],"type":"area"},{"arc":[{"x":156274,"y":140264},{"x":-48,"y":-214},{"x":20,"y":-60},{"x":-107,"y":-141},{"x":-7,"y":-54},{"x":-78,"y":-73},{"x":-96,"y":6},{"x":-269,"y":-61},{"x":7,"y":-81},{"x":74,"y":-48},{"x":-57,"y":-115},{"x":25,"y":-26},{"x":-26,"y":-52},{"x":-117,"y":-81},{"x":7,"y":-142},{"x":-52,"y":12},{"x":-28,"y":-33},{"x":-30,"y":36},{"x":-115,"y":-18},{"x":8,"y":-82},{"x":107,"y":-58},{"x":14,"y":-128},{"x":-19,"y":-88},{"x":-86,"y":-6},{"x":-53,"y":-89}],"type":"admin"},{"arc":[{"x":155348,"y":138668},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155345,"y":138666},{"x":-3,"y":-4}],"type":"admin"},{"arc":[{"x":155342,"y":138662},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":155343,"y":138661},{"x":-1,"y":-7}],"type":"admin"},{"arc":[{"x":155342,"y":138654},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155341,"y":138652},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":155336,"y":138647},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":155337,"y":138641},{"x":3,"y":-8}],"type":"admin"},{"arc":[{"x":155340,"y":138633},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":155340,"y":138627},{"x":-2,"y":-20}],"type":"coastline"},{"arc":[{"x":155338,"y":138607},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":155337,"y":138604},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":155337,"y":138598},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155337,"y":138597},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":155337,"y":138593},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155334,"y":138591},{"x":-14,"y":2}],"type":"admin"},{"arc":[{"x":155320,"y":138593},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":155313,"y":138589},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":155312,"y":138588},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":155308,"y":138584},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":155306,"y":138583},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":155302,"y":138581},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":155293,"y":138578},{"x":-6,"y":-8}],"type":"admin"},{"arc":[{"x":155287,"y":138570},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":155285,"y":138568},{"x":-12,"y":-9}],"type":"coastline"},{"arc":[{"x":155273,"y":138559},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":155272,"y":138558},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155269,"y":138556},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":155271,"y":138552},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":155276,"y":138547},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":155276,"y":138541},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":155274,"y":138536},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":155273,"y":138531},{"x":-3,"y":-12}],"type":"coastline"},{"arc":[{"x":155270,"y":138519},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":155272,"y":138510},{"x":-11,"y":-15}],"type":"coastline"},{"arc":[{"x":155261,"y":138495},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":155260,"y":138492},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155259,"y":138487},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":155259,"y":138485},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":155262,"y":138480},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":155264,"y":138476},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155263,"y":138472},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155262,"y":138466},{"x":3,"y":-10}],"type":"admin"},{"arc":[{"x":155265,"y":138456},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":155262,"y":138448},{"x":-5,"y":-21}],"type":"coastline"},{"arc":[{"x":155257,"y":138427},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":155261,"y":138417},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":155264,"y":138414},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155266,"y":138410},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":155272,"y":138403},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":155273,"y":138401},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155275,"y":138399},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":155276,"y":138395},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":155270,"y":138386},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":155266,"y":138378},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":155263,"y":138370},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155262,"y":138364},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":155258,"y":138356},{"x":-7,"y":-10}],"type":"coastline"},{"arc":[{"x":155251,"y":138346},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":155254,"y":138338},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":155257,"y":138336},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155260,"y":138333},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":155266,"y":138329},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":155270,"y":138331},{"x":3,"y":2}],"type":"admin"},{"arc":[{"x":155273,"y":138333},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":155278,"y":138336},{"x":3,"y":2}],"type":"admin"},{"arc":[{"x":155281,"y":138338},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":155284,"y":138342},{"x":3,"y":7}],"type":"admin"},{"arc":[{"x":155287,"y":138349},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":155295,"y":138353},{"x":12,"y":3}],"type":"coastline"},{"arc":[{"x":155307,"y":138356},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":155315,"y":138360},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155316,"y":138360},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":155319,"y":138355},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":155322,"y":138346},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":155324,"y":138345},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":155329,"y":138342},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":155339,"y":138340},{"x":6,"y":0}],"type":"admin"},{"arc":[{"x":155345,"y":138340},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":155355,"y":138340},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":155359,"y":138339},{"x":15,"y":0}],"type":"coastline"},{"arc":[{"x":155374,"y":138339},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":155380,"y":138336},{"x":5,"y":-3}],"type":"admin"},{"arc":[{"x":155385,"y":138333},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":155391,"y":138334},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":155393,"y":138334},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155395,"y":138333},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":155399,"y":138323},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155403,"y":138320},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155404,"y":138320},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":155405,"y":138317},{"x":12,"y":-15}],"type":"coastline"},{"arc":[{"x":155417,"y":138302},{"x":10,"y":-19}],"type":"coastline"},{"arc":[{"x":155427,"y":138283},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":155431,"y":138275},{"x":12,"y":5}],"type":"admin"},{"arc":[{"x":155443,"y":138280},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":155449,"y":138280},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":155456,"y":138275},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":155456,"y":138273},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155456,"y":138270},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155458,"y":138266},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":155460,"y":138265},{"x":-5,"y":-16}],"type":"coastline"},{"arc":[{"x":155455,"y":138249},{"x":-4,"y":-16}],"type":"coastline"},{"arc":[{"x":155451,"y":138233},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":155450,"y":138228},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":155449,"y":138220},{"x":0,"y":-9}],"type":"admin"},{"arc":[{"x":155449,"y":138211},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155451,"y":138208},{"x":4,"y":-14}],"type":"coastline"},{"arc":[{"x":155455,"y":138194},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155455,"y":138193},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":155456,"y":138188},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155455,"y":138186},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":155453,"y":138178},{"x":-1,"y":-6}],"type":"admin"},{"arc":[{"x":155452,"y":138172},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":155452,"y":138171},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155452,"y":138170},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":155453,"y":138165},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155455,"y":138161},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":155457,"y":138158},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":155462,"y":138153},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155463,"y":138153},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":155463,"y":138146},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155465,"y":138144},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":155468,"y":138142},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":155469,"y":138141},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155469,"y":138139},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":155470,"y":138138},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":155471,"y":138127},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155471,"y":138126},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":155477,"y":138119},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":155480,"y":138118},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":155484,"y":138113},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":155486,"y":138108},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":155489,"y":138106},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155491,"y":138105},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155492,"y":138105},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":155498,"y":138105},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155499,"y":138105},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155502,"y":138105},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":155511,"y":138104},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":155514,"y":138102},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155516,"y":138100},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155517,"y":138099},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":155522,"y":138092},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":155524,"y":138089},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":155528,"y":138082},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":155531,"y":138079},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155534,"y":138076},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":155535,"y":138074},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":155540,"y":138069},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":155544,"y":138061},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":155546,"y":138055},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":155549,"y":138048},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":155551,"y":138046},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155553,"y":138045},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155555,"y":138042},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155556,"y":138041},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":155561,"y":138029},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":155563,"y":138022},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":155564,"y":138018},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":155566,"y":138011},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":155568,"y":138003},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":155569,"y":137995},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155567,"y":137996},{"x":-15,"y":2}],"type":"admin"},{"arc":[{"x":155552,"y":137998},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155547,"y":137998},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":155544,"y":137997},{"x":-5,"y":-1}],"type":"admin"},{"arc":[{"x":155539,"y":137996},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":155532,"y":137993},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":155521,"y":137990},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":155514,"y":137987},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":155509,"y":137981},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":155507,"y":137979},{"x":-4,"y":-12}],"type":"coastline"},{"arc":[{"x":155503,"y":137967},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":155502,"y":137966},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155502,"y":137963},{"x":5,"y":-44}],"type":"coastline"},{"arc":[{"x":155507,"y":137919},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":155503,"y":137912},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155501,"y":137909},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":155502,"y":137903},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":155505,"y":137897},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155506,"y":137896},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155506,"y":137894},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155504,"y":137891},{"x":-13,"y":-11}],"type":"coastline"},{"arc":[{"x":155491,"y":137880},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":155490,"y":137880},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":155483,"y":137876},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":155480,"y":137876},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":155475,"y":137870},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":155476,"y":137857},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155475,"y":137852},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":155475,"y":137848},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155474,"y":137843},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":155474,"y":137841},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":155475,"y":137835},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":155475,"y":137829},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":155475,"y":137821},{"x":-3,"y":-15}],"type":"coastline"},{"arc":[{"x":155472,"y":137806},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155471,"y":137800},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":155472,"y":137794},{"x":10,"y":-17}],"type":"coastline"},{"arc":[{"x":155482,"y":137777},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":155474,"y":137770},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":155473,"y":137762},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155472,"y":137758},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155471,"y":137753},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155471,"y":137750},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":155471,"y":137747},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155471,"y":137745},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155471,"y":137744},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":155465,"y":137741},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":155461,"y":137740},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":155457,"y":137737},{"x":-2,"y":-3}],"type":"admin"},{"arc":[{"x":155455,"y":137734},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":155452,"y":137733},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":155448,"y":137730},{"x":-4,"y":-4}],"type":"admin"},{"arc":[{"x":155444,"y":137726},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155442,"y":137723},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":155440,"y":137722},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":155435,"y":137723},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":155433,"y":137722},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155431,"y":137722},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155429,"y":137719},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":155424,"y":137712},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":155422,"y":137711},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":155416,"y":137710},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":155413,"y":137714},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155411,"y":137718},{"x":-2,"y":4}],"type":"admin"},{"arc":[{"x":155409,"y":137722},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155405,"y":137724},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":155401,"y":137725},{"x":-14,"y":8}],"type":"coastline"},{"arc":[{"x":155387,"y":137733},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":155385,"y":137734},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155382,"y":137734},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155377,"y":137734},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":155369,"y":137734},{"x":-3,"y":2}],"type":"admin"},{"arc":[{"x":155366,"y":137736},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":155363,"y":137741},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":155359,"y":137748},{"x":-2,"y":2}],"type":"admin"},{"arc":[{"x":155357,"y":137750},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":155352,"y":137753},{"x":-6,"y":1}],"type":"admin"},{"arc":[{"x":155346,"y":137754},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":155342,"y":137755},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155339,"y":137756},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":155337,"y":137756},{"x":-10,"y":11}],"type":"coastline"},{"arc":[{"x":155327,"y":137767},{"x":-3,"y":4}],"type":"admin"},{"arc":[{"x":155324,"y":137771},{"x":-2,"y":11}],"type":"coastline"},{"arc":[{"x":155322,"y":137782},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":155321,"y":137783},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155319,"y":137785},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":155316,"y":137786},{"x":-10,"y":7}],"type":"coastline"},{"arc":[{"x":155306,"y":137793},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":155306,"y":137794},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":155306,"y":137795},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":155305,"y":137799},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155303,"y":137801},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":155296,"y":137805},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":155290,"y":137809},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":155282,"y":137810},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":155280,"y":137811},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":155274,"y":137811},{"x":-12,"y":-4}],"type":"coastline"},{"arc":[{"x":155262,"y":137807},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":155261,"y":137807},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155259,"y":137810},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":155258,"y":137811},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155256,"y":137814},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":155255,"y":137815},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155251,"y":137818},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":155246,"y":137820},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155242,"y":137823},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":155236,"y":137832},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155234,"y":137836},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":155231,"y":137831},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":155227,"y":137829},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":155225,"y":137827},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":155222,"y":137824},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":155218,"y":137821},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":155216,"y":137820},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":155213,"y":137815},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155213,"y":137812},{"x":-3,"y":-4}],"type":"admin"},{"arc":[{"x":155210,"y":137808},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155209,"y":137802},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":155211,"y":137796},{"x":-6,"y":-16}],"type":"coastline"},{"arc":[{"x":155205,"y":137780},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":155205,"y":137771},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155205,"y":137768},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":155200,"y":137759},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":155200,"y":137757},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155199,"y":137753},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155201,"y":137751},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155202,"y":137750},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":155202,"y":137749},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":155206,"y":137747},{"x":14,"y":-13}],"type":"coastline"},{"arc":[{"x":155220,"y":137734},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":155221,"y":137730},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":155222,"y":137727},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155225,"y":137724},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155227,"y":137720},{"x":6,"y":-16}],"type":"admin"},{"arc":[{"x":155233,"y":137704},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":155234,"y":137700},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":155235,"y":137691},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155238,"y":137688},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":155246,"y":137686},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155248,"y":137685},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":155250,"y":137681},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":155253,"y":137674},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":155259,"y":137670},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":155265,"y":137667},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":155264,"y":137664},{"x":-2,"y":-4}],"type":"admin"},{"arc":[{"x":155262,"y":137660},{"x":-6,"y":-11}],"type":"coastline"},{"arc":[{"x":155256,"y":137649},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":155253,"y":137645},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":155252,"y":137643},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155252,"y":137640},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":155253,"y":137637},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":155258,"y":137631},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155258,"y":137629},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":155254,"y":137620},{"x":-1,"y":-4}],"type":"admin"},{"arc":[{"x":155253,"y":137616},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":155258,"y":137606},{"x":9,"y":-7}],"type":"coastline"},{"arc":[{"x":155267,"y":137599},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155269,"y":137595},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155271,"y":137592},{"x":4,"y":-3}],"type":"admin"},{"arc":[{"x":155275,"y":137589},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":155286,"y":137587},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":155294,"y":137586},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":155296,"y":137586},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":155302,"y":137585},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155305,"y":137582},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":155307,"y":137580},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155309,"y":137577},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155310,"y":137577},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":155315,"y":137575},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":155317,"y":137574},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":155321,"y":137564},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":155328,"y":137555},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":155333,"y":137548},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":155334,"y":137545},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":155335,"y":137533},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155334,"y":137529},{"x":-4,"y":-9}],"type":"admin"},{"arc":[{"x":155330,"y":137520},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":155328,"y":137510},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":155328,"y":137507},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155327,"y":137501},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":155325,"y":137490},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155325,"y":137488},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155324,"y":137482},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":155329,"y":137478},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":155331,"y":137479},{"x":6,"y":6}],"type":"admin"},{"arc":[{"x":155337,"y":137485},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":155340,"y":137486},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":155343,"y":137487},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":155346,"y":137488},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":155351,"y":137490},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":155357,"y":137490},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":155362,"y":137489},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":155372,"y":137486},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":155377,"y":137485},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":155379,"y":137484},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":155385,"y":137482},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155387,"y":137481},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":155393,"y":137482},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":155399,"y":137484},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":155410,"y":137484},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":155413,"y":137483},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":155414,"y":137484},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":155413,"y":137496},{"x":3,"y":14}],"type":"admin"},{"arc":[{"x":155416,"y":137510},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":155418,"y":137520},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":155420,"y":137527},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155421,"y":137527},{"x":16,"y":-2}],"type":"coastline"},{"arc":[{"x":155437,"y":137525},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":155448,"y":137523},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":155453,"y":137525},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":155459,"y":137528},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155460,"y":137528},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":155464,"y":137530},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155467,"y":137530},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":155474,"y":137532},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":155481,"y":137535},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":155482,"y":137534},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155486,"y":137532},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":155491,"y":137533},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155492,"y":137533},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155494,"y":137531},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":155496,"y":137528},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155498,"y":137528},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":155510,"y":137528},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":155514,"y":137528},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155516,"y":137527},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155517,"y":137526},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155519,"y":137522},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":155521,"y":137518},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":155524,"y":137512},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":155525,"y":137510},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":155521,"y":137502},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":155520,"y":137501},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155520,"y":137499},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155520,"y":137498},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":155520,"y":137492},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155520,"y":137489},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":155519,"y":137488},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":155519,"y":137483},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":155521,"y":137478},{"x":-3,"y":-6}],"type":"admin"},{"arc":[{"x":155518,"y":137472},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":155517,"y":137451},{"x":-2,"y":-22}],"type":"admin"},{"arc":[{"x":155515,"y":137429},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":155511,"y":137424},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155510,"y":137422},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":155505,"y":137413},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":155502,"y":137412},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155502,"y":137409},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155501,"y":137407},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155499,"y":137404},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155498,"y":137402},{"x":6,"y":-10}],"type":"coastline"},{"arc":[{"x":155504,"y":137392},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":155505,"y":137390},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155505,"y":137388},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155504,"y":137384},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":155503,"y":137382},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":155502,"y":137379},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":155499,"y":137376},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155499,"y":137374},{"x":-1,"y":-10}],"type":"admin"},{"arc":[{"x":155498,"y":137364},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":155498,"y":137359},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":155499,"y":137358},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":155506,"y":137351},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":155508,"y":137348},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155508,"y":137345},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":155513,"y":137335},{"x":7,"y":-10}],"type":"admin"},{"arc":[{"x":155520,"y":137325},{"x":10,"y":-14}],"type":"coastline"},{"arc":[{"x":155530,"y":137311},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":155531,"y":137311},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155533,"y":137311},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155537,"y":137308},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":155544,"y":137307},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155545,"y":137307},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":155551,"y":137305},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155554,"y":137302},{"x":8,"y":-11}],"type":"coastline"},{"arc":[{"x":155562,"y":137291},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155563,"y":137291},{"x":8,"y":-10}],"type":"coastline"},{"arc":[{"x":155571,"y":137281},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155572,"y":137280},{"x":2,"y":-13}],"type":"coastline"},{"arc":[{"x":155574,"y":137267},{"x":2,"y":-7}],"type":"admin"},{"arc":[{"x":155576,"y":137260},{"x":7,"y":-14}],"type":"coastline"},{"arc":[{"x":155583,"y":137246},{"x":5,"y":-16}],"type":"coastline"},{"arc":[{"x":155588,"y":137230},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":155587,"y":137227},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":155588,"y":137223},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":155591,"y":137219},{"x":6,"y":-13}],"type":"coastline"},{"arc":[{"x":155597,"y":137206},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":155600,"y":137200},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":155607,"y":137191},{"x":5,"y":-8}],"type":"admin"},{"arc":[{"x":155612,"y":137183},{"x":8,"y":-21}],"type":"coastline"},{"arc":[{"x":155620,"y":137162},{"x":5,"y":-15}],"type":"coastline"},{"arc":[{"x":155625,"y":137147},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":155629,"y":137154},{"x":6,"y":10}],"type":"coastline"},{"arc":[{"x":155635,"y":137164},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":155638,"y":137166},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":155651,"y":137168},{"x":4,"y":1}],"type":"admin"},{"arc":[{"x":155655,"y":137169},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":155666,"y":137171},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":155669,"y":137171},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":155677,"y":137167},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":155683,"y":137161},{"x":12,"y":-10}],"type":"coastline"},{"arc":[{"x":155695,"y":137151},{"x":7,"y":-4}],"type":"admin"},{"arc":[{"x":155702,"y":137147},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":155716,"y":137146},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":155717,"y":137145},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":155721,"y":137138},{"x":6,"y":-14}],"type":"coastline"},{"arc":[{"x":155727,"y":137124},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":155729,"y":137123},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155731,"y":137119},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":155732,"y":137106},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":155734,"y":137101},{"x":0,"y":-18}],"type":"coastline"},{"arc":[{"x":155734,"y":137083},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":155736,"y":137078},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":155735,"y":137057},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":155736,"y":137053},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":155737,"y":137047},{"x":2,"y":-13}],"type":"coastline"},{"arc":[{"x":155739,"y":137034},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155739,"y":137033},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":155740,"y":137032},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":155740,"y":137027},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155742,"y":137027},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":155743,"y":137027},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":155748,"y":137026},{"x":6,"y":-3}],"type":"admin"},{"arc":[{"x":155754,"y":137023},{"x":9,"y":-8}],"type":"coastline"},{"arc":[{"x":155763,"y":137015},{"x":-4,"y":-7}],"type":"admin"},{"arc":[{"x":155759,"y":137008},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":155758,"y":136997},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":155759,"y":136987},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":155760,"y":136984},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":155762,"y":136981},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":155757,"y":136970},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155756,"y":136968},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":155755,"y":136968},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":155750,"y":136957},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155749,"y":136952},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":155748,"y":136949},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155747,"y":136944},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155746,"y":136940},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":155745,"y":136938},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":155744,"y":136933},{"x":-10,"y":-10}],"type":"coastline"},{"arc":[{"x":155734,"y":136923},{"x":4,"y":-14}],"type":"coastline"},{"arc":[{"x":155738,"y":136909},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":155740,"y":136901},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":155740,"y":136898},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":155737,"y":136891},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":155729,"y":136885},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":155728,"y":136883},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":155726,"y":136878},{"x":-2,"y":-9}],"type":"admin"},{"arc":[{"x":155724,"y":136869},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155722,"y":136866},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":155721,"y":136864},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":155716,"y":136862},{"x":-11,"y":-11}],"type":"coastline"},{"arc":[{"x":155705,"y":136851},{"x":-2,"y":-6}],"type":"admin"},{"arc":[{"x":155703,"y":136845},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":155702,"y":136839},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":155702,"y":136825},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":155706,"y":136823},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":155713,"y":136825},{"x":10,"y":2}],"type":"admin"},{"arc":[{"x":155723,"y":136827},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155726,"y":136827},{"x":4,"y":-7}],"type":"admin"},{"arc":[{"x":155730,"y":136820},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":155737,"y":136817},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":155743,"y":136813},{"x":9,"y":-7}],"type":"admin"},{"arc":[{"x":155752,"y":136806},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":155759,"y":136805},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":155768,"y":136808},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155773,"y":136808},{"x":13,"y":0}],"type":"coastline"},{"arc":[{"x":155786,"y":136808},{"x":16,"y":-8}],"type":"coastline"},{"arc":[{"x":155802,"y":136800},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":155811,"y":136802},{"x":32,"y":1}],"type":"coastline"},{"arc":[{"x":155843,"y":136803},{"x":6,"y":-1}],"type":"admin"},{"arc":[{"x":155849,"y":136802},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":155855,"y":136796},{"x":5,"y":-7}],"type":"admin"},{"arc":[{"x":155860,"y":136789},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":155867,"y":136778},{"x":15,"y":-4}],"type":"coastline"},{"arc":[{"x":155882,"y":136774},{"x":6,"y":-1}],"type":"admin"},{"arc":[{"x":155888,"y":136773},{"x":15,"y":1}],"type":"coastline"},{"arc":[{"x":155903,"y":136774},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":155908,"y":136773},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155911,"y":136773},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":155912,"y":136773},{"x":5,"y":4}],"type":"admin"},{"arc":[{"x":155917,"y":136777},{"x":10,"y":10}],"type":"coastline"},{"arc":[{"x":155927,"y":136787},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":155936,"y":136786},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":155938,"y":136787},{"x":13,"y":8}],"type":"coastline"},{"arc":[{"x":155951,"y":136795},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":155958,"y":136797},{"x":12,"y":6}],"type":"coastline"},{"arc":[{"x":155970,"y":136803},{"x":11,"y":-6}],"type":"coastline"},{"arc":[{"x":155981,"y":136797},{"x":5,"y":-5}],"type":"admin"},{"arc":[{"x":155986,"y":136792},{"x":6,"y":-16}],"type":"coastline"},{"arc":[{"x":155992,"y":136776},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155991,"y":136772},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":155992,"y":136763},{"x":10,"y":-5}],"type":"admin"},{"arc":[{"x":156002,"y":136758},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":156002,"y":136751},{"x":0,"y":-10}],"type":"admin"},{"arc":[{"x":156002,"y":136741},{"x":9,"y":-14}],"type":"coastline"},{"arc":[{"x":156011,"y":136727},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":156011,"y":136724},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":156008,"y":136716},{"x":-4,"y":-9}],"type":"admin"},{"arc":[{"x":156004,"y":136707},{"x":-4,"y":-23}],"type":"coastline"},{"arc":[{"x":156000,"y":136684},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":155997,"y":136676},{"x":-8,"y":-19}],"type":"admin"},{"arc":[{"x":155989,"y":136657},{"x":-9,"y":-14}],"type":"coastline"},{"arc":[{"x":155980,"y":136643},{"x":-8,"y":-10}],"type":"coastline"},{"arc":[{"x":155972,"y":136633},{"x":-19,"y":-26}],"type":"coastline"},{"arc":[{"x":155953,"y":136607},{"x":-6,"y":-16}],"type":"coastline"},{"arc":[{"x":155947,"y":136591},{"x":-7,"y":-11}],"type":"admin"},{"arc":[{"x":155940,"y":136580},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":155939,"y":136578},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":155939,"y":136577},{"x":-3,"y":-8}],"type":"admin"},{"arc":[{"x":155936,"y":136569},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":155936,"y":136560},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":155939,"y":136553},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":155943,"y":136549},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":155943,"y":136548},{"x":-4,"y":-13}],"type":"coastline"},{"arc":[{"x":155939,"y":136535},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":155938,"y":136534},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":155939,"y":136529},{"x":18,"y":-3}],"type":"coastline"},{"arc":[{"x":155957,"y":136526},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":155964,"y":136522},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":155963,"y":136514},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":155964,"y":136512},{"x":2,"y":-18}],"type":"coastline"},{"arc":[{"x":155966,"y":136494},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":155968,"y":136492},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":155971,"y":136486},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155974,"y":136486},{"x":4,"y":1}],"type":"admin"},{"arc":[{"x":155978,"y":136487},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":155984,"y":136488},{"x":5,"y":-4}],"type":"admin"},{"arc":[{"x":155989,"y":136484},{"x":17,"y":-6}],"type":"coastline"},{"arc":[{"x":156006,"y":136478},{"x":12,"y":-12}],"type":"coastline"},{"arc":[{"x":156018,"y":136466},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":156030,"y":136466},{"x":5,"y":-1}],"type":"admin"},{"arc":[{"x":156035,"y":136465},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":156035,"y":136458},{"x":-3,"y":-7}],"type":"admin"},{"arc":[{"x":156032,"y":136451},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":156033,"y":136447},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":156037,"y":136441},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":156038,"y":136435},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":156041,"y":136430},{"x":13,"y":-12}],"type":"coastline"},{"arc":[{"x":156054,"y":136418},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":156054,"y":136416},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":156053,"y":136409},{"x":-8,"y":-9}],"type":"admin"},{"arc":[{"x":156045,"y":136400},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":156039,"y":136391},{"x":-14,"y":-8}],"type":"coastline"},{"arc":[{"x":156025,"y":136383},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156023,"y":136382},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":156018,"y":136379},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":156015,"y":136378},{"x":-17,"y":-7}],"type":"coastline"},{"arc":[{"x":155998,"y":136371},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155993,"y":136371},{"x":-10,"y":-4}],"type":"admin"},{"arc":[{"x":155983,"y":136367},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":155977,"y":136363},{"x":-6,"y":-13}],"type":"coastline"},{"arc":[{"x":155971,"y":136350},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":155970,"y":136347},{"x":-17,"y":-14}],"type":"coastline"},{"arc":[{"x":155953,"y":136333},{"x":-2,"y":-13}],"type":"admin"},{"arc":[{"x":155951,"y":136320},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":155952,"y":136312},{"x":-1,"y":-8}],"type":"admin"},{"arc":[{"x":155951,"y":136304},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":155952,"y":136293},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":155953,"y":136282},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":155953,"y":136279},{"x":9,"y":-29}],"type":"coastline"},{"arc":[{"x":155962,"y":136250},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":155966,"y":136246},{"x":6,"y":-26}],"type":"coastline"},{"arc":[{"x":155972,"y":136220},{"x":-32,"y":-33}],"type":"coastline"},{"arc":[{"x":155940,"y":136187},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":155939,"y":136186},{"x":-4,"y":-12}],"type":"coastline"},{"arc":[{"x":155935,"y":136174},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":155931,"y":136171},{"x":-9,"y":-12}],"type":"coastline"},{"arc":[{"x":155922,"y":136159},{"x":-9,"y":-7}],"type":"coastline"},{"arc":[{"x":155913,"y":136152},{"x":-4,"y":-1}],"type":"admin"},{"arc":[{"x":155909,"y":136151},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":155898,"y":136149},{"x":-20,"y":-22}],"type":"coastline"},{"arc":[{"x":155878,"y":136127},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":155876,"y":136117},{"x":-8,"y":-13}],"type":"coastline"},{"arc":[{"x":155868,"y":136104},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":155860,"y":136107},{"x":-10,"y":-1}],"type":"admin"},{"arc":[{"x":155850,"y":136106},{"x":-34,"y":-5}],"type":"coastline"},{"arc":[{"x":155816,"y":136101},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":155812,"y":136092},{"x":-6,"y":-24}],"type":"coastline"},{"arc":[{"x":155806,"y":136068},{"x":-21,"y":1}],"type":"coastline"},{"arc":[{"x":155785,"y":136069},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155781,"y":136071},{"x":-7,"y":1}],"type":"admin"},{"arc":[{"x":155774,"y":136072},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":155767,"y":136074},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":155759,"y":136070},{"x":-4,"y":-1}],"type":"admin"},{"arc":[{"x":155755,"y":136069},{"x":-16,"y":-1}],"type":"coastline"},{"arc":[{"x":155739,"y":136068},{"x":-7,"y":4}],"type":"admin"},{"arc":[{"x":155732,"y":136072},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":155725,"y":136073},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155723,"y":136073},{"x":-8,"y":-9}],"type":"coastline"},{"arc":[{"x":155715,"y":136064},{"x":-8,"y":-9}],"type":"coastline"},{"arc":[{"x":155707,"y":136055},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":155702,"y":136052},{"x":-25,"y":5}],"type":"coastline"},{"arc":[{"x":155677,"y":136057},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":155672,"y":136057},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":155671,"y":136056},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":155669,"y":136055},{"x":-16,"y":-8}],"type":"coastline"},{"arc":[{"x":155653,"y":136047},{"x":-16,"y":2}],"type":"coastline"},{"arc":[{"x":155637,"y":136049},{"x":-9,"y":-12}],"type":"coastline"},{"arc":[{"x":155628,"y":136037},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155623,"y":136037},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":155616,"y":136034},{"x":-1,"y":-8}],"type":"admin"},{"arc":[{"x":155615,"y":136026},{"x":-14,"y":-20}],"type":"coastline"},{"arc":[{"x":155601,"y":136006},{"x":3,"y":-138},{"x":-32,"y":-53},{"x":59,"y":-34},{"x":38,"y":-120},{"x":-55,"y":-189},{"x":21,"y":-132},{"x":-46,"y":-36},{"x":-66,"y":-197},{"x":71,"y":-86},{"x":-37,"y":-118},{"x":81,"y":-67},{"x":-79,"y":-262},{"x":44,"y":-119},{"x":-40,"y":-197},{"x":81,"y":-97},{"x":87,"y":3},{"x":56,"y":-47},{"x":94,"y":-198},{"x":-10,"y":-114},{"x":-74,"y":-39},{"x":15,"y":-97},{"x":-98,"y":-105},{"x":-42,"y":-21},{"x":-75,"y":47},{"x":-113,"y":-68},{"x":-68,"y":16},{"x":144,"y":-191},{"x":-73,"y":-108},{"x":1,"y":-89},{"x":70,"y":-80},{"x":-63,"y":-182}],"type":"admin"},{"arc":[{"x":155495,"y":132888},{"x":23,"y":30},{"x":146,"y":-13},{"x":33,"y":29},{"x":275,"y":39},{"x":96,"y":-12},{"x":68,"y":34},{"x":136,"y":-12},{"x":25,"y":-25},{"x":108,"y":18},{"x":274,"y":-58},{"x":40,"y":-86},{"x":3,"y":23},{"x":16,"y":-17},{"x":62,"y":27},{"x":191,"y":-117},{"x":4,"y":-58},{"x":-16,"y":19},{"x":-16,"y":-25},{"x":30,"y":3},{"x":3,"y":-28},{"x":-43,"y":-81},{"x":20,"y":-215},{"x":94,"y":-29},{"x":19,"y":-32},{"x":12,"y":32},{"x":55,"y":-44},{"x":59,"y":26},{"x":63,"y":-18},{"x":160,"y":255},{"x":29,"y":-8},{"x":96,"y":78},{"x":-35,"y":75},{"x":28,"y":43},{"x":-24,"y":88},{"x":113,"y":-10},{"x":13,"y":76},{"x":72,"y":-13},{"x":39,"y":30},{"x":40,"y":-23},{"x":-37,"y":45},{"x":24,"y":65},{"x":120,"y":108},{"x":151,"y":27},{"x":37,"y":89},{"x":98,"y":60},{"x":70,"y":-19},{"x":24,"y":42},{"x":113,"y":33},{"x":23,"y":47},{"x":49,"y":-23},{"x":49,"y":21},{"x":-40,"y":41},{"x":65,"y":164},{"x":146,"y":108},{"x":-19,"y":28},{"x":53,"y":82},{"x":-120,"y":286},{"x":-27,"y":20},{"x":24,"y":-30},{"x":-35,"y":-3},{"x":-63,"y":76},{"x":-41,"y":107},{"x":9,"y":82},{"x":74,"y":156},{"x":128,"y":158},{"x":70,"y":37},{"x":37,"y":127},{"x":86,"y":91},{"x":14,"y":126},{"x":-16,"y":-47},{"x":-48,"y":65},{"x":52,"y":-30},{"x":-49,"y":55},{"x":24,"y":87},{"x":85,"y":96},{"x":74,"y":-42},{"x":-61,"y":48},{"x":25,"y":16},{"x":22,"y":-40},{"x":-13,"y":54},{"x":45,"y":37}],"type":"coastline"},{"arc":[{"x":156567,"y":145335},{"x":-46,"y":35},{"x":-22,"y":-27},{"x":62,"y":-71},{"x":0,"y":56},{"x":42,"y":-30},{"x":12,"y":33},{"x":-18,"y":21},{"x":-30,"y":-17}],"type":"coastline"},{"arc":[{"x":156646,"y":145497},{"x":-29,"y":6},{"x":-17,"y":78},{"x":16,"y":-78},{"x":30,"y":-6}],"type":"coastline"},{"arc":[{"x":156774,"y":145384},{"x":-66,"y":4},{"x":-66,"y":78},{"x":66,"y":-79},{"x":88,"y":-4},{"x":-22,"y":1}],"type":"coastline"},{"arc":[{"x":160204,"y":144392},{"x":58,"y":-56},{"x":93,"y":-1},{"x":-93,"y":3},{"x":-58,"y":54}],"type":"coastline"},{"arc":[{"x":162178,"y":144295},{"x":-174,"y":-23},{"x":-81,"y":10},{"x":16,"y":13},{"x":-45,"y":21},{"x":8,"y":-43},{"x":-50,"y":46},{"x":-270,"y":-62},{"x":-844,"y":-52},{"x":-98,"y":10},{"x":-5,"y":33},{"x":-46,"y":26},{"x":40,"y":-27},{"x":0,"y":-27},{"x":-24,"y":24},{"x":1,"y":-40},{"x":-15,"y":55},{"x":-43,"y":-35},{"x":-162,"y":-1},{"x":-62,"y":27},{"x":-2,"y":31},{"x":-15,"y":-69},{"x":28,"y":-41},{"x":-29,"y":-33},{"x":-41,"y":48},{"x":5,"y":51},{"x":-48,"y":59},{"x":44,"y":-79},{"x":-41,"y":9},{"x":0,"y":19},{"x":-22,"y":-19},{"x":19,"y":103},{"x":-44,"y":-70},{"x":-158,"y":-4},{"x":-1057,"y":128},{"x":-824,"y":137},{"x":-196,"y":58},{"x":4,"y":49},{"x":-53,"y":28},{"x":52,"y":-29},{"x":-4,"y":-35},{"x":-58,"y":37},{"x":-16,"y":-18},{"x":30,"y":67},{"x":-39,"y":-57},{"x":-18,"y":35},{"x":-49,"y":-26},{"x":-241,"y":61},{"x":-3,"y":30},{"x":-6,"y":-24},{"x":-65,"y":12},{"x":-16,"y":36},{"x":-8,"y":-26},{"x":-50,"y":15},{"x":-33,"y":13},{"x":8,"y":27},{"x":-9,"y":-25},{"x":-30,"y":9},{"x":-52,"y":23},{"x":7,"y":25},{"x":-13,"y":-20},{"x":-82,"y":31},{"x":0,"y":25},{"x":-44,"y":-31},{"x":-22,"y":34},{"x":-128,"y":44},{"x":-7,"y":52},{"x":2,"y":-35},{"x":-3,"y":26},{"x":-68,"y":18},{"x":-8,"y":-18},{"x":-91,"y":41},{"x":22,"y":51},{"x":-112,"y":115},{"x":-38,"y":137},{"x":32,"y":54},{"x":-33,"y":-55},{"x":38,"y":-137},{"x":66,"y":-91},{"x":-47,"y":-65},{"x":-43,"y":31},{"x":0,"y":99},{"x":-51,"y":-14},{"x":-1,"y":59},{"x":-25,"y":-43},{"x":-19,"y":11},{"x":23,"y":45},{"x":-22,"y":37},{"x":54,"y":18},{"x":-54,"y":-18},{"x":-36,"y":-74},{"x":-24,"y":13},{"x":25,"y":77},{"x":-26,"y":29},{"x":-13,"y":-23},{"x":-54,"y":80},{"x":-35,"y":-8},{"x":19,"y":79},{"x":-26,"y":-57},{"x":-16,"y":58},{"x":44,"y":34},{"x":-43,"y":-16},{"x":1,"y":34},{"x":68,"y":88},{"x":-48,"y":-2},{"x":100,"y":46},{"x":29,"y":139},{"x":-35,"y":45},{"x":-33,"y":-16},{"x":-19,"y":30},{"x":-29,"y":-13},{"x":-82,"y":47},{"x":-78,"y":162},{"x":-83,"y":33},{"x":4,"y":71},{"x":-16,"y":-22},{"x":-50,"y":21},{"x":-29,"y":86},{"x":-47,"y":-20},{"x":-71,"y":33},{"x":-58,"y":85},{"x":-66,"y":30},{"x":-41,"y":92},{"x":-89,"y":60},{"x":-58,"y":110}],"type":"coastline"},{"arc":[{"x":155705,"y":146537},{"x":-17,"y":-52},{"x":-107,"y":-47},{"x":-83,"y":-117},{"x":-3,"y":-63},{"x":-76,"y":-122},{"x":0,"y":-119},{"x":-45,"y":-28},{"x":-22,"y":-114},{"x":-59,"y":-86},{"x":-114,"y":-46},{"x":-135,"y":45},{"x":-65,"y":-43}],"type":"admin"},{"arc":[{"x":154979,"y":145745},{"x":-251,"y":-356},{"x":38,"y":-32},{"x":4,"y":-105},{"x":105,"y":-84},{"x":-7,"y":-66},{"x":50,"y":-20},{"x":85,"y":-129},{"x":10,"y":-106},{"x":-42,"y":-95},{"x":29,"y":-99},{"x":-22,"y":-60},{"x":-113,"y":-52},{"x":16,"y":-63},{"x":-61,"y":-94},{"x":88,"y":-44},{"x":8,"y":-33},{"x":-76,"y":-64},{"x":-59,"y":5},{"x":-103,"y":-64},{"x":-31,"y":-38},{"x":41,"y":-27},{"x":-44,"y":-25},{"x":-72,"y":-133},{"x":45,"y":-54},{"x":42,"y":6},{"x":52,"y":-101},{"x":138,"y":18},{"x":118,"y":-158},{"x":-55,"y":-44},{"x":-34,"y":-132},{"x":-24,"y":18},{"x":-27,"y":-30},{"x":-59,"y":2},{"x":-65,"y":-100},{"x":45,"y":-133},{"x":-73,"y":-18},{"x":-8,"y":-92},{"x":-120,"y":-125},{"x":-5,"y":-49},{"x":-120,"y":-60},{"x":-72,"y":-165},{"x":24,"y":-192},{"x":-84,"y":-147},{"x":-7,"y":-122},{"x":-55,"y":-31},{"x":-131,"y":-270},{"x":-189,"y":80},{"x":-49,"y":-46},{"x":-30,"y":-217},{"x":-138,"y":-130},{"x":-12,"y":-140},{"x":-158,"y":-152},{"x":-22,"y":-130},{"x":46,"y":-115},{"x":-29,"y":-91},{"x":57,"y":-27},{"x":6,"y":-58},{"x":111,"y":-12},{"x":36,"y":-67},{"x":55,"y":-26}],"type":"admin"},{"arc":[{"x":153781,"y":140851},{"x":99,"y":-74},{"x":231,"y":93},{"x":48,"y":-40},{"x":6,"y":-61},{"x":78,"y":-5},{"x":80,"y":101},{"x":188,"y":3},{"x":-13,"y":41},{"x":99,"y":38},{"x":49,"y":6},{"x":79,"y":-48},{"x":36,"y":49},{"x":-68,"y":28},{"x":-4,"y":71},{"x":96,"y":113},{"x":73,"y":-33},{"x":145,"y":23},{"x":114,"y":-76},{"x":83,"y":25},{"x":81,"y":-49},{"x":74,"y":11},{"x":24,"y":-31},{"x":52,"y":52},{"x":54,"y":-2},{"x":35,"y":-102},{"x":-43,"y":-163},{"x":37,"y":-73},{"x":-85,"y":-70},{"x":1,"y":-53},{"x":56,"y":-48},{"x":-38,"y":-67},{"x":1,"y":-150},{"x":164,"y":-242},{"x":661,"y":146}],"type":"admin"},{"arc":[{"x":159842,"y":141859},{"x":-129,"y":144},{"x":0,"y":53},{"x":40,"y":23},{"x":-38,"y":-11},{"x":-22,"y":17},{"x":33,"y":-4},{"x":-28,"y":35},{"x":32,"y":66},{"x":-17,"y":52},{"x":129,"y":208},{"x":343,"y":268},{"x":283,"y":147},{"x":446,"y":155},{"x":404,"y":72},{"x":396,"y":6},{"x":56,"y":44},{"x":198,"y":9},{"x":146,"y":84},{"x":8,"y":44},{"x":82,"y":60},{"x":148,"y":30}],"type":"coastline"},{"arc":[{"x":162352,"y":143361},{"x":68,"y":91},{"x":-59,"y":180},{"x":22,"y":97},{"x":-42,"y":30},{"x":-125,"y":-6},{"x":-101,"y":60},{"x":-85,"y":-69},{"x":-42,"y":24},{"x":-51,"y":112},{"x":11,"y":148},{"x":38,"y":53},{"x":100,"y":46},{"x":92,"y":168}],"type":"area"},{"arc":[{"x":164431,"y":143076},{"x":0,"y":-34},{"x":3,"y":53},{"x":-3,"y":-19}],"type":"coastline"},{"arc":[{"x":164830,"y":144575},{"x":-9,"y":-20},{"x":34,"y":52},{"x":-25,"y":-32}],"type":"coastline"},{"arc":[{"x":162352,"y":143361},{"x":97,"y":18},{"x":245,"y":-73},{"x":123,"y":-51},{"x":14,"y":-43},{"x":-11,"y":39},{"x":132,"y":-59},{"x":261,"y":-163},{"x":197,"y":-177},{"x":77,"y":-115},{"x":20,"y":12},{"x":44,"y":-79},{"x":-18,"y":-57},{"x":38,"y":63},{"x":-37,"y":-101},{"x":21,"y":13},{"x":22,"y":-103},{"x":-34,"y":-53},{"x":-209,"y":-88},{"x":-6,"y":-39},{"x":-18,"y":18},{"x":-73,"y":-80},{"x":-38,"y":8},{"x":9,"y":78},{"x":89,"y":78},{"x":22,"y":-14},{"x":5,"y":41},{"x":92,"y":-9},{"x":-61,"y":22},{"x":-128,"y":-39},{"x":-278,"y":-316},{"x":-6,"y":-118},{"x":-117,"y":-190},{"x":-171,"y":-148},{"x":24,"y":-165},{"x":116,"y":-186},{"x":-21,"y":-107},{"x":34,"y":-99},{"x":-32,"y":13},{"x":36,"y":-44},{"x":-74,"y":-128},{"x":-166,"y":-145},{"x":21,"y":-226},{"x":-119,"y":-191},{"x":33,"y":-120},{"x":-53,"y":-173},{"x":-111,"y":-171},{"x":-74,"y":-50},{"x":33,"y":-6},{"x":-169,"y":-111},{"x":12,"y":-97},{"x":42,"y":-51},{"x":-19,"y":-73},{"x":39,"y":-44},{"x":31,"y":14},{"x":56,"y":-110},{"x":260,"y":31},{"x":215,"y":-40},{"x":136,"y":122},{"x":245,"y":47},{"x":173,"y":-46},{"x":29,"y":44},{"x":143,"y":49},{"x":36,"y":-18},{"x":38,"y":51},{"x":143,"y":22},{"x":-13,"y":27},{"x":61,"y":-29},{"x":144,"y":61},{"x":68,"y":-58},{"x":64,"y":65},{"x":-1,"y":-48},{"x":74,"y":102},{"x":96,"y":49},{"x":220,"y":30},{"x":17,"y":27},{"x":172,"y":0},{"x":232,"y":89},{"x":22,"y":-29},{"x":43,"y":19},{"x":4,"y":76},{"x":117,"y":52},{"x":35,"y":51},{"x":-44,"y":-39},{"x":35,"y":44},{"x":-18,"y":24},{"x":84,"y":23},{"x":30,"y":-16},{"x":70,"y":109},{"x":34,"y":-12},{"x":98,"y":57},{"x":12,"y":-22},{"x":79,"y":129},{"x":169,"y":40},{"x":-25,"y":8},{"x":25,"y":31},{"x":67,"y":-21},{"x":13,"y":27},{"x":46,"y":-7},{"x":33,"y":-62},{"x":31,"y":-13},{"x":-36,"y":50},{"x":30,"y":7},{"x":8,"y":-29},{"x":9,"y":21},{"x":100,"y":-63},{"x":30,"y":10},{"x":-33,"y":-8},{"x":-11,"y":27},{"x":66,"y":18},{"x":-18,"y":38},{"x":26,"y":-19},{"x":28,"y":27},{"x":82,"y":-11},{"x":-26,"y":15},{"x":47,"y":22},{"x":4,"y":49},{"x":-53,"y":12},{"x":44,"y":5},{"x":-112,"y":31},{"x":-115,"y":217},{"x":-75,"y":84},{"x":-143,"y":78},{"x":-112,"y":220},{"x":27,"y":-25},{"x":-21,"y":29},{"x":-20,"y":1},{"x":-31,"y":502},{"x":-137,"y":217},{"x":33,"y":-3},{"x":-39,"y":7},{"x":-42,"y":141},{"x":-32,"y":-8},{"x":-36,"y":64},{"x":-73,"y":15},{"x":-124,"y":103},{"x":-19,"y":68},{"x":-164,"y":123},{"x":-66,"y":136},{"x":20,"y":-70},{"x":-72,"y":72},{"x":16,"y":20},{"x":-41,"y":-10},{"x":27,"y":45},{"x":-40,"y":-42},{"x":-120,"y":113},{"x":-113,"y":158},{"x":-32,"y":122},{"x":-1,"y":-52},{"x":-45,"y":70},{"x":23,"y":37},{"x":-29,"y":-18},{"x":-18,"y":35},{"x":43,"y":14},{"x":-61,"y":22},{"x":-75,"y":228},{"x":-29,"y":295},{"x":119,"y":371},{"x":185,"y":356},{"x":453,"y":455},{"x":-13,"y":32},{"x":-51,"y":-10},{"x":-53,"y":41},{"x":-30,"y":-61},{"x":-124,"y":20},{"x":-9,"y":-67},{"x":-65,"y":7},{"x":16,"y":-25},{"x":-67,"y":62},{"x":-78,"y":-3},{"x":-87,"y":-65},{"x":25,"y":3},{"x":-12,"y":-19},{"x":-163,"y":-63},{"x":-1113,"y":-289},{"x":-110,"y":-11},{"x":-19,"y":34},{"x":4,"y":-38},{"x":-28,"y":-5},{"x":22,"y":51},{"x":-21,"y":-42},{"x":-96,"y":-27},{"x":-16,"y":22},{"x":-25,"y":-30},{"x":-16,"y":46},{"x":-14,"y":-47},{"x":-134,"y":-39},{"x":-79,"y":50},{"x":48,"y":-52},{"x":-31,"y":-7},{"x":-3,"y":32},{"x":-45,"y":-46},{"x":-114,"y":-11},{"x":1,"y":24},{"x":-13,"y":-22},{"x":-153,"y":-10},{"x":-120,"y":24},{"x":-3,"y":22},{"x":-37,"y":-23},{"x":-8,"y":33}],"type":"coastline"},{"arc":[{"x":166197,"y":140512},{"x":-11,"y":19},{"x":-24,"y":-27},{"x":31,"y":-11},{"x":4,"y":19}],"type":"coastline"},{"arc":[{"x":145801,"y":149017},{"x":-67,"y":-11},{"x":5,"y":-34},{"x":62,"y":45}],"type":"coastline"},{"arc":[{"x":148136,"y":148877},{"x":-29,"y":24},{"x":28,"y":-47},{"x":1,"y":23}],"type":"coastline"},{"arc":[{"x":145730,"y":148651},{"x":39,"y":-93},{"x":-15,"y":-56},{"x":44,"y":-30},{"x":-51,"y":-59},{"x":-12,"y":-237},{"x":74,"y":-75},{"x":79,"y":-30},{"x":45,"y":-110},{"x":140,"y":-29},{"x":147,"y":-140},{"x":83,"y":-23},{"x":59,"y":-180},{"x":112,"y":-19},{"x":201,"y":-129},{"x":53,"y":-95},{"x":92,"y":-32},{"x":34,"y":-134},{"x":75,"y":-49},{"x":34,"y":-81},{"x":-30,"y":-63},{"x":-144,"y":-28},{"x":-53,"y":-189},{"x":-132,"y":-68},{"x":-78,"y":12},{"x":-47,"y":-24},{"x":-150,"y":99},{"x":-154,"y":47}],"type":"area"},{"arc":[{"x":146175,"y":146836},{"x":-27,"y":-229},{"x":-43,"y":-79},{"x":116,"y":-154},{"x":53,"y":-18},{"x":-49,"y":-65},{"x":33,"y":-114},{"x":50,"y":-50},{"x":63,"y":-10},{"x":126,"y":-152},{"x":80,"y":9},{"x":-2,"y":-101},{"x":92,"y":-34},{"x":148,"y":-154},{"x":7,"y":-60},{"x":106,"y":-110},{"x":-20,"y":-183},{"x":119,"y":-217},{"x":202,"y":-60},{"x":14,"y":-316},{"x":-45,"y":-163},{"x":92,"y":-93}],"type":"area"},{"arc":[{"x":147290,"y":144483},{"x":58,"y":123},{"x":138,"y":-41},{"x":52,"y":-109},{"x":110,"y":-69},{"x":78,"y":-109},{"x":153,"y":-350},{"x":44,"y":-58},{"x":85,"y":-6},{"x":26,"y":-29},{"x":46,"y":65},{"x":43,"y":0},{"x":136,"y":126},{"x":62,"y":193},{"x":183,"y":177},{"x":107,"y":4},{"x":53,"y":-108},{"x":74,"y":3},{"x":33,"y":30},{"x":91,"y":-37},{"x":55,"y":14},{"x":14,"y":35},{"x":58,"y":4},{"x":44,"y":-33},{"x":114,"y":94},{"x":-31,"y":102},{"x":99,"y":230},{"x":-16,"y":175},{"x":101,"y":28},{"x":22,"y":62},{"x":126,"y":31},{"x":28,"y":73},{"x":66,"y":19},{"x":63,"y":-27},{"x":26,"y":46},{"x":-36,"y":147},{"x":56,"y":36},{"x":63,"y":-56},{"x":157,"y":-29},{"x":192,"y":-101},{"x":219,"y":23},{"x":-11,"y":-60},{"x":47,"y":-115},{"x":17,"y":26},{"x":67,"y":-6},{"x":4,"y":-37},{"x":78,"y":27},{"x":42,"y":49},{"x":-15,"y":95},{"x":72,"y":97},{"x":-72,"y":276},{"x":108,"y":94},{"x":134,"y":-33},{"x":76,"y":137},{"x":42,"y":35},{"x":117,"y":20},{"x":27,"y":44},{"x":41,"y":-36},{"x":177,"y":-40},{"x":209,"y":-126},{"x":78,"y":-90},{"x":127,"y":-31},{"x":107,"y":-140},{"x":61,"y":-19},{"x":57,"y":36},{"x":97,"y":-60},{"x":166,"y":2},{"x":67,"y":-75},{"x":-31,"y":-139},{"x":45,"y":-9},{"x":43,"y":-79},{"x":145,"y":-21},{"x":54,"y":-142},{"x":245,"y":-72},{"x":12,"y":41},{"x":72,"y":30},{"x":-2,"y":49},{"x":73,"y":32},{"x":120,"y":39},{"x":67,"y":-11},{"x":85,"y":64},{"x":96,"y":-41},{"x":72,"y":100},{"x":88,"y":-30},{"x":35,"y":86},{"x":66,"y":1},{"x":43,"y":36},{"x":-4,"y":72},{"x":130,"y":42},{"x":-66,"y":93},{"x":58,"y":137},{"x":-48,"y":190},{"x":40,"y":24},{"x":4,"y":48},{"x":68,"y":-10},{"x":40,"y":216},{"x":236,"y":4},{"x":12,"y":-90},{"x":67,"y":-113},{"x":60,"y":-29},{"x":95,"y":63},{"x":50,"y":-94},{"x":70,"y":3},{"x":43,"y":43},{"x":23,"y":-68},{"x":61,"y":-35},{"x":49,"y":101},{"x":44,"y":-16},{"x":48,"y":48},{"x":10,"y":-46},{"x":58,"y":34},{"x":16,"y":101},{"x":80,"y":18},{"x":55,"y":91},{"x":-18,"y":-43},{"x":49,"y":-71},{"x":-2,"y":-68},{"x":121,"y":-65}],"type":"area"},{"arc":[{"x":155705,"y":146537},{"x":-142,"y":86},{"x":-40,"y":70},{"x":-86,"y":22},{"x":-14,"y":73},{"x":-130,"y":66},{"x":14,"y":-20},{"x":-39,"y":-3},{"x":-7,"y":26},{"x":-38,"y":-23},{"x":-101,"y":64},{"x":-188,"y":199},{"x":-129,"y":1},{"x":-36,"y":62},{"x":3,"y":28},{"x":-26,"y":25},{"x":21,"y":-26},{"x":-35,"y":-14},{"x":-1,"y":41},{"x":-50,"y":26},{"x":-54,"y":-18},{"x":-147,"y":32},{"x":-66,"y":89},{"x":-176,"y":67},{"x":-227,"y":171},{"x":-47,"y":-11},{"x":-26,"y":38},{"x":-98,"y":10},{"x":-16,"y":32},{"x":-57,"y":-18},{"x":-109,"y":73},{"x":-65,"y":-14},{"x":-42,"y":27},{"x":-9,"y":-20},{"x":-49,"y":33},{"x":34,"y":-36},{"x":5,"y":-91},{"x":-52,"y":-62},{"x":-18,"y":25},{"x":-17,"y":-14},{"x":31,"y":-42},{"x":-137,"y":-65},{"x":-25,"y":4},{"x":5,"y":49},{"x":-91,"y":55},{"x":77,"y":-49},{"x":-3,"y":-38},{"x":-75,"y":6},{"x":56,"y":-52},{"x":-42,"y":-13},{"x":-17,"y":47},{"x":-57,"y":28},{"x":4,"y":24},{"x":24,"y":-10},{"x":-63,"y":107},{"x":-2,"y":103},{"x":-101,"y":113},{"x":1,"y":47},{"x":-73,"y":86},{"x":-57,"y":7},{"x":-104,"y":93},{"x":-79,"y":-35},{"x":-29,"y":-51},{"x":8,"y":-156},{"x":-104,"y":-79},{"x":-57,"y":8},{"x":-34,"y":-62},{"x":-114,"y":-20},{"x":-86,"y":40},{"x":-58,"y":-17},{"x":-41,"y":35},{"x":2,"y":-19},{"x":-66,"y":18},{"x":-182,"y":142},{"x":-40,"y":96},{"x":20,"y":41},{"x":-46,"y":15},{"x":-8,"y":58},{"x":-133,"y":50},{"x":-138,"y":128},{"x":-40,"y":-11},{"x":0,"y":45},{"x":-19,"y":16},{"x":7,"y":-22},{"x":-27,"y":19},{"x":-1,"y":-16},{"x":-28,"y":144},{"x":19,"y":92},{"x":-98,"y":33},{"x":-19,"y":44},{"x":-70,"y":20},{"x":-58,"y":64},{"x":-235,"y":-2},{"x":-22,"y":28},{"x":-30,"y":-12},{"x":-2,"y":43},{"x":-29,"y":-42},{"x":-43,"y":27},{"x":-19,"y":-141},{"x":-45,"y":-28},{"x":2,"y":21},{"x":-67,"y":-7},{"x":6,"y":-24},{"x":-36,"y":38},{"x":-15,"y":-24},{"x":-19,"y":25},{"x":-56,"y":-28},{"x":-75,"y":73},{"x":-195,"y":47},{"x":-58,"y":67},{"x":-4,"y":58},{"x":-123,"y":47},{"x":-67,"y":16},{"x":-51,"y":-34},{"x":-58,"y":25},{"x":-16,"y":-24},{"x":4,"y":27},{"x":-9,"y":-33},{"x":-18,"y":24},{"x":-25,"y":-21},{"x":-11,"y":30},{"x":-30,"y":-15},{"x":-19,"y":37},{"x":-101,"y":-22},{"x":8,"y":61},{"x":-93,"y":40},{"x":-57,"y":-28},{"x":-4,"y":-32},{"x":-137,"y":5},{"x":-18,"y":34},{"x":-83,"y":-41},{"x":-28,"y":61},{"x":-75,"y":37},{"x":-21,"y":65},{"x":-82,"y":-113},{"x":-98,"y":-7},{"x":-54,"y":49},{"x":4,"y":70},{"x":-49,"y":-112},{"x":-92,"y":-52},{"x":-21,"y":17},{"x":-19,"y":-66},{"x":27,"y":-17},{"x":-34,"y":-22},{"x":-39,"y":11},{"x":-42,"y":115},{"x":-54,"y":-45},{"x":-73,"y":35},{"x":-35,"y":-87},{"x":-119,"y":-26},{"x":-32,"y":-41},{"x":-28,"y":16},{"x":21,"y":31},{"x":-41,"y":104},{"x":-223,"y":-116},{"x":-45,"y":22},{"x":-38,"y":-35},{"x":3,"y":76},{"x":-4,"y":-8},{"x":-36,"y":11},{"x":-4,"y":18},{"x":-14,"y":-22},{"x":-1,"y":30},{"x":-38,"y":-61},{"x":34,"y":-45},{"x":-49,"y":-12},{"x":-22,"y":32},{"x":6,"y":-62},{"x":-24,"y":-5},{"x":-20,"y":58},{"x":-60,"y":45},{"x":61,"y":-87},{"x":-92,"y":45},{"x":-36,"y":-38},{"x":14,"y":-25},{"x":-55,"y":28},{"x":0,"y":-28},{"x":-60,"y":1},{"x":-48,"y":-58},{"x":-19,"y":10},{"x":-17,"y":-58},{"x":-42,"y":3},{"x":10,"y":-39},{"x":-107,"y":21},{"x":-10,"y":85},{"x":237,"y":133},{"x":60,"y":89},{"x":353,"y":224},{"x":11,"y":66},{"x":-21,"y":14},{"x":-15,"y":-29},{"x":-64,"y":42},{"x":-46,"y":-27},{"x":-39,"y":33},{"x":-5,"y":-43},{"x":-47,"y":39},{"x":-16,"y":-45},{"x":-18,"y":22},{"x":-19,"y":-29},{"x":-19,"y":24},{"x":-75,"y":-16},{"x":-58,"y":93},{"x":-7,"y":-49},{"x":-39,"y":-22},{"x":-56,"y":26},{"x":-5,"y":43},{"x":-35,"y":-35},{"x":-57,"y":18},{"x":-95,"y":-43},{"x":-20,"y":33},{"x":-15,"y":-26},{"x":-10,"y":48},{"x":30,"y":22},{"x":-47,"y":3},{"x":21,"y":161},{"x":-128,"y":-1},{"x":23,"y":66},{"x":-42,"y":33},{"x":-121,"y":-7},{"x":7,"y":27},{"x":-60,"y":-22},{"x":1,"y":-35},{"x":-65,"y":5},{"x":-10,"y":-117},{"x":-76,"y":85},{"x":-27,"y":-47},{"x":89,"y":-84},{"x":0,"y":-63},{"x":-64,"y":-54},{"x":-45,"y":15},{"x":-139,"y":-46},{"x":-28,"y":-49},{"x":-28,"y":3},{"x":19,"y":-73},{"x":-234,"y":2},{"x":68,"y":-155},{"x":-35,"y":-82},{"x":25,"y":-42},{"x":-100,"y":-163},{"x":-53,"y":-6},{"x":-53,"y":25},{"x":45,"y":10},{"x":-42,"y":8},{"x":-4,"y":-20},{"x":-13,"y":41},{"x":-26,"y":-38},{"x":-32,"y":49},{"x":-51,"y":11},{"x":7,"y":52},{"x":-82,"y":15},{"x":-10,"y":50},{"x":89,"y":54},{"x":36,"y":66},{"x":-67,"y":76},{"x":92,"y":-24},{"x":96,"y":57},{"x":78,"y":135},{"x":97,"y":74},{"x":-22,"y":25},{"x":34,"y":92},{"x":-47,"y":-13},{"x":-49,"y":27},{"x":-30,"y":70},{"x":-142,"y":-105},{"x":-55,"y":9},{"x":-52,"y":-88},{"x":-45,"y":40},{"x":-2,"y":-29},{"x":-45,"y":-15},{"x":-25,"y":46},{"x":-46,"y":-15},{"x":-19,"y":25},{"x":-8,"y":-51},{"x":-64,"y":-15},{"x":-28,"y":-61},{"x":19,"y":-46},{"x":69,"y":-38},{"x":16,"y":-58},{"x":-49,"y":-26},{"x":-55,"y":33},{"x":-10,"y":-40},{"x":-38,"y":-5},{"x":16,"y":-56},{"x":-36,"y":-113},{"x":16,"y":-26},{"x":69,"y":40},{"x":67,"y":-26},{"x":-14,"y":-21},{"x":29,"y":23},{"x":16,"y":-48},{"x":-75,"y":-27},{"x":-193,"y":-154}],"type":"coastline"},{"arc":[{"x":144871,"y":148874},{"x":-32,"y":51},{"x":-25,"y":-31},{"x":33,"y":-64},{"x":24,"y":44}],"type":"coastline"},{"arc":[{"x":145730,"y":148651},{"x":-143,"y":-118},{"x":-130,"y":72},{"x":57,"y":72},{"x":12,"y":79},{"x":-93,"y":-12},{"x":-60,"y":-73},{"x":-55,"y":14},{"x":-74,"y":-139},{"x":27,"y":-44},{"x":-33,"y":-21},{"x":33,"y":18},{"x":19,"y":-27},{"x":29,"y":-111},{"x":-30,"y":24},{"x":-30,"y":-50},{"x":-40,"y":21},{"x":-78,"y":-128},{"x":-88,"y":23},{"x":-20,"y":25},{"x":28,"y":48},{"x":-48,"y":26},{"x":86,"y":72},{"x":-32,"y":161},{"x":39,"y":6},{"x":64,"y":84},{"x":3,"y":37},{"x":-38,"y":-16},{"x":-8,"y":89},{"x":18,"y":52},{"x":99,"y":63},{"x":11,"y":92},{"x":-122,"y":-126},{"x":-105,"y":-52},{"x":-64,"y":25},{"x":-12,"y":-43},{"x":-42,"y":-9},{"x":37,"y":-99},{"x":-34,"y":-24},{"x":25,"y":-65},{"x":-75,"y":-75},{"x":18,"y":-117},{"x":-66,"y":-31},{"x":30,"y":-17},{"x":-7,"y":-54},{"x":38,"y":-12},{"x":-44,"y":-79},{"x":33,"y":-47},{"x":-68,"y":-26},{"x":-37,"y":149},{"x":-21,"y":22},{"x":-36,"y":-40},{"x":-54,"y":167},{"x":-39,"y":8},{"x":-20,"y":-43},{"x":-84,"y":66},{"x":-49,"y":-55},{"x":56,"y":-54},{"x":-46,"y":-14},{"x":52,"y":-57},{"x":-17,"y":-65},{"x":39,"y":-56},{"x":-15,"y":-26},{"x":-21,"y":40},{"x":19,"y":-42},{"x":-24,"y":-11},{"x":-33,"y":89},{"x":-75,"y":10},{"x":-16,"y":33},{"x":-37,"y":-3},{"x":-49,"y":-100},{"x":6,"y":185},{"x":-74,"y":0},{"x":-25,"y":52},{"x":8,"y":33},{"x":8,"y":-29},{"x":64,"y":60},{"x":-40,"y":32},{"x":19,"y":49},{"x":41,"y":-2},{"x":-20,"y":31},{"x":52,"y":204},{"x":-39,"y":21},{"x":-55,"y":-210},{"x":-42,"y":-8},{"x":-21,"y":54},{"x":-91,"y":2},{"x":-11,"y":37},{"x":-71,"y":-60},{"x":62,"y":-75},{"x":-9,"y":-107},{"x":-67,"y":26},{"x":-18,"y":-89},{"x":-82,"y":-92},{"x":42,"y":-71},{"x":-5,"y":-67},{"x":-45,"y":54},{"x":-62,"y":-31},{"x":43,"y":-30},{"x":40,"y":-149},{"x":-47,"y":-16},{"x":-38,"y":63},{"x":-56,"y":-53},{"x":-4,"y":115},{"x":-56,"y":9},{"x":-38,"y":70},{"x":35,"y":35},{"x":9,"y":193},{"x":-75,"y":17},{"x":-211,"y":-273},{"x":-22,"y":-172},{"x":34,"y":-119},{"x":-117,"y":-114},{"x":4,"y":43},{"x":-93,"y":99},{"x":-44,"y":148},{"x":-84,"y":-21},{"x":4,"y":37},{"x":-63,"y":-7},{"x":43,"y":208},{"x":-106,"y":67},{"x":-40,"y":95},{"x":8,"y":-59},{"x":-87,"y":-165},{"x":-66,"y":-19},{"x":5,"y":-54},{"x":-57,"y":-18},{"x":86,"y":-23},{"x":31,"y":-123},{"x":73,"y":-16},{"x":3,"y":-207},{"x":90,"y":-100},{"x":-19,"y":-75},{"x":-41,"y":3},{"x":-11,"y":29},{"x":-36,"y":-46},{"x":-75,"y":50},{"x":-41,"y":-56},{"x":-37,"y":27},{"x":26,"y":-1},{"x":-32,"y":28},{"x":4,"y":68},{"x":-31,"y":-30},{"x":-73,"y":24},{"x":-20,"y":91},{"x":31,"y":73},{"x":-52,"y":99},{"x":12,"y":99},{"x":-29,"y":24},{"x":-28,"y":-13},{"x":-12,"y":36},{"x":-56,"y":-96},{"x":27,"y":-35},{"x":-38,"y":-73},{"x":30,"y":-90},{"x":-25,"y":-185},{"x":-87,"y":27},{"x":-117,"y":250},{"x":-54,"y":-1},{"x":-19,"y":27},{"x":-29,"y":-48},{"x":10,"y":-173},{"x":-44,"y":-52},{"x":43,"y":-99},{"x":-20,"y":-64},{"x":63,"y":-27},{"x":90,"y":34},{"x":21,"y":-17},{"x":-152,"y":-109},{"x":70,"y":-106},{"x":-162,"y":-78},{"x":20,"y":-72},{"x":49,"y":-34},{"x":-31,"y":-92},{"x":64,"y":-43},{"x":23,"y":83},{"x":23,"y":-61},{"x":49,"y":61},{"x":67,"y":-39},{"x":22,"y":27},{"x":27,"y":-15},{"x":20,"y":47},{"x":4,"y":-61},{"x":100,"y":42},{"x":47,"y":-31},{"x":-23,"y":-23},{"x":45,"y":-16},{"x":-63,"y":-36},{"x":20,"y":-18},{"x":-47,"y":29},{"x":-75,"y":-34},{"x":-121,"y":21},{"x":-157,"y":-120},{"x":-36,"y":55},{"x":-50,"y":-6},{"x":38,"y":22},{"x":-62,"y":2},{"x":62,"y":26},{"x":-51,"y":48},{"x":14,"y":26},{"x":-141,"y":49},{"x":-33,"y":48},{"x":-23,"y":-19},{"x":-41,"y":20},{"x":-45,"y":-21},{"x":34,"y":-26},{"x":-8,"y":-80},{"x":30,"y":2},{"x":-33,"y":-42},{"x":83,"y":-16},{"x":1,"y":-73},{"x":-137,"y":49},{"x":23,"y":-63},{"x":-59,"y":-2},{"x":-9,"y":-59},{"x":-30,"y":-7},{"x":18,"y":-19},{"x":-60,"y":-16},{"x":-47,"y":55},{"x":22,"y":114},{"x":-143,"y":81},{"x":-14,"y":-126},{"x":-31,"y":28},{"x":-24,"y":-91},{"x":-40,"y":25},{"x":-19,"y":-18},{"x":25,"y":-69},{"x":29,"y":19},{"x":27,"y":-20},{"x":2,"y":-58},{"x":43,"y":30},{"x":47,"y":-11},{"x":-30,"y":-19},{"x":32,"y":-18},{"x":70,"y":19},{"x":110,"y":-163},{"x":122,"y":-2},{"x":48,"y":91},{"x":39,"y":15},{"x":63,"y":-81},{"x":6,"y":-42},{"x":-50,"y":-61},{"x":49,"y":4},{"x":7,"y":-152},{"x":-62,"y":-117},{"x":-50,"y":41},{"x":-4,"y":-55},{"x":-14,"y":53},{"x":-89,"y":-30},{"x":-86,"y":65},{"x":-31,"y":-12}],"type":"coastline"},{"arc":[{"x":141661,"y":146140},{"x":20,"y":-81},{"x":127,"y":-154},{"x":8,"y":-208},{"x":85,"y":-63},{"x":-6,"y":-236},{"x":-38,"y":-108},{"x":65,"y":-50},{"x":30,"y":13},{"x":13,"y":-71},{"x":-49,"y":-151},{"x":-184,"y":-50}],"type":"admin"},{"arc":[{"x":141732,"y":144981},{"x":53,"y":-33},{"x":12,"y":-65},{"x":54,"y":-50},{"x":62,"y":51},{"x":62,"y":-30},{"x":75,"y":51},{"x":250,"y":-108},{"x":126,"y":62},{"x":46,"y":92},{"x":125,"y":-9},{"x":72,"y":35},{"x":171,"y":-157},{"x":52,"y":11},{"x":64,"y":-104},{"x":36,"y":-126},{"x":-22,"y":-174},{"x":85,"y":-53},{"x":85,"y":32},{"x":88,"y":-26},{"x":48,"y":-106},{"x":69,"y":-22},{"x":67,"y":32},{"x":78,"y":-81},{"x":82,"y":35},{"x":46,"y":-31},{"x":48,"y":37},{"x":68,"y":-124},{"x":119,"y":263},{"x":-89,"y":268},{"x":83,"y":22},{"x":-9,"y":96},{"x":81,"y":91},{"x":10,"y":87},{"x":51,"y":-27},{"x":121,"y":49},{"x":62,"y":-33},{"x":51,"y":146},{"x":-54,"y":48},{"x":67,"y":104},{"x":72,"y":40},{"x":-32,"y":22},{"x":-19,"y":134},{"x":65,"y":45},{"x":21,"y":76},{"x":71,"y":44},{"x":-17,"y":120},{"x":-72,"y":28},{"x":-1,"y":39},{"x":-65,"y":60},{"x":80,"y":76},{"x":-9,"y":137},{"x":-37,"y":52},{"x":49,"y":56},{"x":-87,"y":185},{"x":78,"y":29},{"x":14,"y":81},{"x":69,"y":54},{"x":63,"y":140},{"x":61,"y":15},{"x":175,"y":-79},{"x":35,"y":-51},{"x":184,"y":98},{"x":20,"y":-221},{"x":42,"y":-51},{"x":69,"y":48},{"x":107,"y":-51},{"x":112,"y":6},{"x":32,"y":-50},{"x":178,"y":11},{"x":37,"y":53},{"x":104,"y":11},{"x":25,"y":-19},{"x":66,"y":77},{"x":30,"y":-35},{"x":39,"y":28},{"x":15,"y":117},{"x":53,"y":52},{"x":-59,"y":217},{"x":47,"y":170},{"x":55,"y":38},{"x":56,"y":-36},{"x":44,"y":-167},{"x":56,"y":27},{"x":122,"y":-24}],"type":"area"},{"arc":[{"x":147290,"y":144483},{"x":83,"y":-48},{"x":43,"y":-85},{"x":-30,"y":-155},{"x":18,"y":-93},{"x":-79,"y":-148},{"x":-4,"y":-150},{"x":74,"y":-89},{"x":-33,"y":-155},{"x":-54,"y":-64},{"x":-53,"y":36},{"x":-15,"y":-55},{"x":-98,"y":-43},{"x":-147,"y":36},{"x":-76,"y":-45},{"x":-53,"y":3},{"x":-37,"y":57},{"x":-63,"y":26},{"x":-49,"y":-63},{"x":-84,"y":3},{"x":-86,"y":-42},{"x":-22,"y":-132},{"x":69,"y":-44},{"x":-43,"y":-84},{"x":7,"y":-196},{"x":43,"y":-43},{"x":-19,"y":-52},{"x":93,"y":-121},{"x":61,"y":-221},{"x":39,"y":9},{"x":15,"y":-260},{"x":-39,"y":-231},{"x":75,"y":-93},{"x":-9,"y":-89},{"x":92,"y":-11},{"x":15,"y":-27},{"x":26,"y":26},{"x":20,"y":-40},{"x":-72,"y":-64},{"x":53,"y":-111},{"x":-19,"y":-289},{"x":106,"y":-84},{"x":20,"y":-130},{"x":39,"y":-15},{"x":-11,"y":-72},{"x":39,"y":-50},{"x":-138,"y":-129},{"x":4,"y":-70},{"x":104,"y":-210},{"x":-99,"y":-152},{"x":13,"y":-54},{"x":-156,"y":-82},{"x":4,"y":-23},{"x":108,"y":-84},{"x":47,"y":53},{"x":62,"y":2},{"x":287,"y":-170},{"x":49,"y":39},{"x":47,"y":-25},{"x":121,"y":-146},{"x":-35,"y":-238},{"x":119,"y":-94}],"type":"area"},{"arc":[{"x":147662,"y":139602},{"x":86,"y":75},{"x":65,"y":-18},{"x":51,"y":45},{"x":76,"y":-10},{"x":132,"y":65},{"x":36,"y":54},{"x":182,"y":2},{"x":104,"y":-33},{"x":77,"y":33},{"x":70,"y":-88},{"x":118,"y":-11},{"x":27,"y":-36},{"x":-12,"y":-85},{"x":185,"y":-81},{"x":52,"y":-72},{"x":97,"y":226},{"x":113,"y":12},{"x":59,"y":85},{"x":111,"y":47},{"x":177,"y":204},{"x":111,"y":-52},{"x":46,"y":-130},{"x":54,"y":-29},{"x":27,"y":-78},{"x":-30,"y":-57},{"x":78,"y":-136},{"x":30,"y":13},{"x":45,"y":-41},{"x":180,"y":47},{"x":58,"y":-40},{"x":25,"y":29},{"x":16,"y":-36},{"x":67,"y":-6},{"x":132,"y":132},{"x":-21,"y":129},{"x":65,"y":79},{"x":-48,"y":65},{"x":-57,"y":-13},{"x":-15,"y":92},{"x":-23,"y":-8},{"x":-51,"y":76},{"x":43,"y":44},{"x":38,"y":152},{"x":96,"y":11},{"x":93,"y":-36},{"x":56,"y":-59},{"x":109,"y":7},{"x":111,"y":-105},{"x":64,"y":23},{"x":57,"y":-42},{"x":159,"y":40},{"x":62,"y":-74}],"type":"admin"},{"arc":[{"x":151045,"y":140013},{"x":148,"y":-20},{"x":178,"y":43},{"x":136,"y":-14},{"x":73,"y":53},{"x":152,"y":-42},{"x":51,"y":37},{"x":64,"y":3},{"x":292,"y":-87},{"x":30,"y":54},{"x":70,"y":28},{"x":-4,"y":62},{"x":59,"y":71},{"x":67,"y":42},{"x":149,"y":29},{"x":21,"y":-77},{"x":61,"y":22},{"x":95,"y":-55},{"x":175,"y":120},{"x":62,"y":10},{"x":21,"y":-116},{"x":113,"y":-75},{"x":199,"y":262},{"x":77,"y":-25},{"x":71,"y":72},{"x":41,"y":3},{"x":12,"y":-26},{"x":79,"y":73},{"x":47,"y":280},{"x":129,"y":-6},{"x":54,"y":34},{"x":14,"y":83}],"type":"admin"},{"arc":[{"x":141732,"y":144981},{"x":-198,"y":52},{"x":-19,"y":29},{"x":-186,"y":-65},{"x":-134,"y":51},{"x":-40,"y":-21},{"x":-41,"y":20},{"x":-101,"y":-69},{"x":-80,"y":-131},{"x":-84,"y":-5},{"x":-89,"y":-116},{"x":-125,"y":14},{"x":-60,"y":105},{"x":-86,"y":-90},{"x":-93,"y":-37},{"x":-179,"y":25},{"x":-44,"y":44},{"x":-29,"y":-34},{"x":-3,"y":-195},{"x":-49,"y":55},{"x":-131,"y":-31},{"x":-52,"y":56},{"x":-37,"y":-14},{"x":-23,"y":-126},{"x":-77,"y":9},{"x":-37,"y":-102},{"x":111,"y":45},{"x":64,"y":-6},{"x":37,"y":-140},{"x":92,"y":-24},{"x":-35,"y":-115},{"x":108,"y":-61},{"x":48,"y":-145},{"x":-58,"y":-91},{"x":5,"y":-53},{"x":154,"y":-135},{"x":-9,"y":-61},{"x":-129,"y":-16},{"x":-49,"y":-37},{"x":-95,"y":16},{"x":39,"y":-153},{"x":-48,"y":-36},{"x":42,"y":-62},{"x":-83,"y":-27},{"x":-8,"y":-47},{"x":-67,"y":2},{"x":-39,"y":-40},{"x":-138,"y":-4},{"x":-78,"y":-215},{"x":-14,"y":53},{"x":-41,"y":-34},{"x":8,"y":-130},{"x":79,"y":-67},{"x":120,"y":-10},{"x":143,"y":-196},{"x":-70,"y":-101},{"x":47,"y":-37},{"x":22,"y":-133},{"x":59,"y":-59},{"x":204,"y":29},{"x":42,"y":-147},{"x":50,"y":19},{"x":42,"y":-38},{"x":-36,"y":-37},{"x":26,"y":-61},{"x":-22,"y":-30},{"x":137,"y":0},{"x":-14,"y":143},{"x":194,"y":185},{"x":123,"y":-5},{"x":78,"y":-49},{"x":30,"y":-169},{"x":-29,"y":-85},{"x":30,"y":-39},{"x":38,"y":2},{"x":30,"y":-73},{"x":-80,"y":-145},{"x":36,"y":-178},{"x":-64,"y":-66},{"x":2,"y":-49},{"x":64,"y":-60},{"x":-23,"y":-56},{"x":51,"y":-14},{"x":-73,"y":-115},{"x":18,"y":-77},{"x":-60,"y":-49},{"x":130,"y":-150},{"x":66,"y":2},{"x":125,"y":-102},{"x":78,"y":-202},{"x":39,"y":-4},{"x":9,"y":-38},{"x":-67,"y":-35},{"x":24,"y":-59},{"x":100,"y":-33},{"x":5,"y":-225},{"x":127,"y":-130},{"x":85,"y":-186},{"x":69,"y":-27},{"x":62,"y":-103},{"x":-1,"y":-239},{"x":-55,"y":-92},{"x":-1,"y":-67}],"type":"admin"},{"arc":[{"x":141541,"y":139432},{"x":81,"y":-11},{"x":36,"y":22},{"x":142,"y":-81},{"x":89,"y":26},{"x":52,"y":-30},{"x":75,"y":114},{"x":63,"y":11},{"x":139,"y":119},{"x":118,"y":-14},{"x":148,"y":131},{"x":34,"y":-84},{"x":59,"y":34},{"x":101,"y":-12},{"x":40,"y":-188},{"x":-30,"y":-61},{"x":69,"y":-139},{"x":215,"y":82},{"x":32,"y":-57},{"x":58,"y":0},{"x":18,"y":84},{"x":38,"y":26},{"x":90,"y":-93},{"x":-6,"y":-53},{"x":48,"y":-19},{"x":53,"y":81},{"x":229,"y":116},{"x":-23,"y":76},{"x":69,"y":37},{"x":73,"y":154},{"x":91,"y":-85},{"x":-13,"y":-69},{"x":87,"y":-185},{"x":67,"y":21},{"x":80,"y":-35},{"x":97,"y":56},{"x":32,"y":136},{"x":110,"y":8},{"x":30,"y":-90},{"x":103,"y":-64},{"x":22,"y":-92},{"x":77,"y":-46},{"x":-10,"y":-59},{"x":103,"y":-203},{"x":226,"y":-4},{"x":-6,"y":-51},{"x":57,"y":-53},{"x":-21,"y":-81},{"x":101,"y":28},{"x":32,"y":-36},{"x":58,"y":11},{"x":82,"y":36},{"x":15,"y":84},{"x":43,"y":-9},{"x":86,"y":-39},{"x":38,"y":-115},{"x":105,"y":33},{"x":92,"y":-133},{"x":141,"y":26},{"x":25,"y":-31},{"x":-15,"y":-73},{"x":64,"y":-98},{"x":121,"y":82},{"x":71,"y":-48},{"x":37,"y":7},{"x":19,"y":166},{"x":72,"y":43},{"x":119,"y":3},{"x":100,"y":-68},{"x":90,"y":40},{"x":72,"y":59},{"x":149,"y":273},{"x":128,"y":-87},{"x":46,"y":2},{"x":56,"y":49},{"x":-3,"y":32},{"x":91,"y":-22},{"x":43,"y":28},{"x":36,"y":103},{"x":131,"y":27},{"x":99,"y":-13},{"x":89,"y":-95},{"x":87,"y":17},{"x":53,"y":192},{"x":160,"y":75},{"x":26,"y":131},{"x":77,"y":-15},{"x":53,"y":27},{"x":-10,"y":103}],"type":"admin"},{"arc":[{"x":138645,"y":145023},{"x":-16,"y":14},{"x":-11,"y":-28},{"x":27,"y":14}],"type":"coastline"},{"arc":[{"x":140851,"y":146081},{"x":-67,"y":27},{"x":-34,"y":52},{"x":-26,"y":-25},{"x":-44,"y":25},{"x":-55,"y":-95},{"x":-51,"y":43},{"x":-46,"y":-42},{"x":-32,"y":38},{"x":5,"y":71},{"x":-27,"y":-25},{"x":-50,"y":36},{"x":-3,"y":-72},{"x":-93,"y":-33},{"x":44,"y":-6},{"x":39,"y":-62},{"x":25,"y":15},{"x":56,"y":-55},{"x":14,"y":26},{"x":108,"y":-71},{"x":44,"y":16},{"x":3,"y":48},{"x":11,"y":-45},{"x":66,"y":-43},{"x":40,"y":29},{"x":10,"y":104},{"x":63,"y":44}],"type":"coastline"},{"arc":[{"x":141661,"y":146140},{"x":-25,"y":31},{"x":-48,"y":-30},{"x":12,"y":40},{"x":-83,"y":54},{"x":26,"y":-89},{"x":-38,"y":-10},{"x":-46,"y":65},{"x":-25,"y":-19},{"x":-5,"y":25},{"x":-40,"y":-1},{"x":3,"y":63},{"x":-20,"y":-45},{"x":-68,"y":4},{"x":-28,"y":-70},{"x":-19,"y":67},{"x":-51,"y":14},{"x":-34,"y":68},{"x":-74,"y":-20},{"x":-1,"y":-24},{"x":-41,"y":57},{"x":-49,"y":-27},{"x":-91,"y":126},{"x":-32,"y":6},{"x":0,"y":-45},{"x":-55,"y":21},{"x":-12,"y":-21},{"x":-74,"y":64},{"x":-38,"y":-17},{"x":-25,"y":40},{"x":-87,"y":8},{"x":53,"y":-98},{"x":-11,"y":-43},{"x":36,"y":10},{"x":83,"y":-88},{"x":41,"y":13},{"x":-6,"y":-41},{"x":51,"y":15},{"x":8,"y":-62},{"x":46,"y":35},{"x":-10,"y":-42},{"x":49,"y":8},{"x":24,"y":-30},{"x":55,"y":39},{"x":-8,"y":-55},{"x":-56,"y":-15},{"x":40,"y":-47},{"x":-45,"y":5},{"x":-40,"y":54},{"x":19,"y":-79},{"x":-46,"y":-48},{"x":-57,"y":5},{"x":41,"y":-39},{"x":-63,"y":-23},{"x":134,"y":-78},{"x":8,"y":-72},{"x":140,"y":-11},{"x":-31,"y":-92},{"x":-12,"y":37},{"x":-113,"y":49},{"x":-30,"y":60},{"x":-41,"y":2},{"x":0,"y":-29},{"x":-110,"y":2},{"x":-3,"y":-23},{"x":-35,"y":36},{"x":-15,"y":-52},{"x":-97,"y":6},{"x":4,"y":-11},{"x":-17,"y":-10},{"x":11,"y":25},{"x":-14,"y":-15},{"x":3,"y":-12},{"x":-78,"y":-1},{"x":-20,"y":29},{"x":-115,"y":31},{"x":-8,"y":36},{"x":32,"y":7},{"x":-85,"y":57},{"x":14,"y":-56},{"x":-67,"y":-48},{"x":18,"y":-86},{"x":-48,"y":-36},{"x":-57,"y":28},{"x":-48,"y":-54},{"x":51,"y":-22},{"x":-8,"y":-75},{"x":-30,"y":-31},{"x":-30,"y":5},{"x":21,"y":25},{"x":-73,"y":-28},{"x":-24,"y":-127},{"x":-90,"y":-143},{"x":-133,"y":-20},{"x":-66,"y":-51},{"x":-27,"y":67},{"x":-51,"y":-4},{"x":-7,"y":73},{"x":-16,"y":-17},{"x":-1,"y":15},{"x":-43,"y":14},{"x":12,"y":-23},{"x":-18,"y":8},{"x":-1,"y":31},{"x":-30,"y":-19},{"x":6,"y":61},{"x":-28,"y":19},{"x":-59,"y":-43},{"x":3,"y":93},{"x":-65,"y":-7},{"x":49,"y":55},{"x":9,"y":96},{"x":-61,"y":3},{"x":-26,"y":-35},{"x":-44,"y":42},{"x":-18,"y":-64},{"x":-46,"y":11},{"x":3,"y":-24},{"x":-46,"y":15},{"x":-33,"y":61},{"x":-126,"y":-18},{"x":-23,"y":-35},{"x":-38,"y":16},{"x":37,"y":-58},{"x":55,"y":38},{"x":53,"y":-18},{"x":45,"y":-83},{"x":-20,"y":-67},{"x":-38,"y":-11},{"x":83,"y":-15},{"x":30,"y":-67},{"x":-15,"y":-30},{"x":-63,"y":33},{"x":-2,"y":-42},{"x":-31,"y":28},{"x":-70,"y":-55},{"x":-33,"y":15},{"x":-50,"y":-23},{"x":-38,"y":-55},{"x":55,"y":-23},{"x":-13,"y":-44},{"x":54,"y":-10},{"x":-53,"y":-19},{"x":-1,"y":-56},{"x":-89,"y":57},{"x":-61,"y":-19},{"x":37,"y":-49},{"x":-33,"y":-53},{"x":52,"y":-54},{"x":-32,"y":7},{"x":-59,"y":-112},{"x":-39,"y":10},{"x":38,"y":-10},{"x":-2,"y":-62},{"x":6,"y":40},{"x":37,"y":-47},{"x":-7,"y":-28},{"x":-21,"y":16},{"x":10,"y":-54},{"x":-143,"y":48},{"x":-106,"y":-71},{"x":-29,"y":16},{"x":9,"y":71},{"x":-45,"y":46},{"x":79,"y":48},{"x":-61,"y":158},{"x":35,"y":103},{"x":-35,"y":-4},{"x":3,"y":53},{"x":-37,"y":-9},{"x":-9,"y":22},{"x":30,"y":102},{"x":-27,"y":2},{"x":-1,"y":83},{"x":-65,"y":-8}],"type":"coastline"},{"arc":[{"x":138430,"y":145332},{"x":8,"y":-57},{"x":-156,"y":-103},{"x":25,"y":-76},{"x":53,"y":-37},{"x":-41,"y":-61},{"x":8,"y":-122},{"x":-92,"y":-98},{"x":-10,"y":-89},{"x":-46,"y":12},{"x":-102,"y":-169},{"x":46,"y":-152},{"x":40,"y":7},{"x":35,"y":66},{"x":49,"y":-51},{"x":-15,"y":-61},{"x":-187,"y":-193},{"x":12,"y":-121},{"x":-115,"y":-148},{"x":-23,"y":-142},{"x":-73,"y":-60},{"x":30,"y":-100},{"x":-16,"y":-129},{"x":57,"y":-14},{"x":170,"y":51},{"x":76,"y":-15},{"x":22,"y":-164},{"x":-40,"y":-32},{"x":-109,"y":16},{"x":-44,"y":-22},{"x":-81,"y":-176},{"x":-57,"y":-50},{"x":-337,"y":-70},{"x":0,"y":-99},{"x":70,"y":-131},{"x":-90,"y":-98},{"x":-10,"y":-52},{"x":-119,"y":-5},{"x":-94,"y":-85},{"x":-71,"y":-21},{"x":-125,"y":52},{"x":-17,"y":-26},{"x":-45,"y":10},{"x":-52,"y":-58},{"x":-31,"y":42},{"x":-112,"y":-3},{"x":-53,"y":77},{"x":-116,"y":-346},{"x":-43,"y":-9},{"x":28,"y":-49},{"x":48,"y":53},{"x":33,"y":-22},{"x":-80,"y":-114},{"x":8,"y":-111},{"x":70,"y":-140},{"x":-40,"y":-161},{"x":-39,"y":-1},{"x":32,"y":-271},{"x":86,"y":66},{"x":104,"y":3},{"x":37,"y":-90},{"x":83,"y":-58},{"x":-38,"y":-69},{"x":49,"y":-46},{"x":128,"y":-26},{"x":112,"y":-157},{"x":19,"y":-157},{"x":-72,"y":-67},{"x":-81,"y":1},{"x":-20,"y":-25},{"x":-15,"y":-29},{"x":50,"y":-41},{"x":-41,"y":-30},{"x":-1,"y":-64},{"x":86,"y":-160},{"x":168,"y":-117},{"x":-13,"y":-46},{"x":-75,"y":7},{"x":-27,"y":-84},{"x":63,"y":-183},{"x":-52,"y":-242},{"x":-72,"y":-137},{"x":2,"y":-612},{"x":-88,"y":-113},{"x":-1,"y":-71},{"x":-115,"y":-205},{"x":-252,"y":-375},{"x":70,"y":-48}],"type":"area"},{"arc":[{"x":136763,"y":138229},{"x":36,"y":-89},{"x":226,"y":-31},{"x":118,"y":-236},{"x":63,"y":-52},{"x":44,"y":13},{"x":45,"y":-44},{"x":44,"y":53},{"x":46,"y":-19},{"x":52,"y":32},{"x":49,"y":-131},{"x":100,"y":-7},{"x":41,"y":81},{"x":94,"y":41},{"x":45,"y":-27},{"x":76,"y":96},{"x":113,"y":-60},{"x":131,"y":-10},{"x":34,"y":-88},{"x":91,"y":28},{"x":58,"y":-77},{"x":199,"y":-116},{"x":146,"y":71}],"type":"admin"},{"arc":[{"x":138614,"y":137657},{"x":-15,"y":127},{"x":-94,"y":52},{"x":10,"y":51},{"x":-50,"y":94},{"x":63,"y":110},{"x":140,"y":31},{"x":61,"y":59},{"x":241,"y":85},{"x":86,"y":-29},{"x":34,"y":23},{"x":37,"y":-133},{"x":48,"y":20},{"x":119,"y":-17},{"x":89,"y":104},{"x":75,"y":1},{"x":81,"y":85},{"x":131,"y":29},{"x":77,"y":90},{"x":78,"y":-69},{"x":-32,"y":-84},{"x":93,"y":-183},{"x":177,"y":-61},{"x":218,"y":25},{"x":24,"y":-47},{"x":78,"y":-17},{"x":114,"y":-191},{"x":-8,"y":-56},{"x":110,"y":-44},{"x":29,"y":-105},{"x":87,"y":-11},{"x":94,"y":70},{"x":79,"y":-4}],"type":"admin"},{"arc":[{"x":140888,"y":137662},{"x":-124,"y":56},{"x":-30,"y":60},{"x":79,"y":140},{"x":-12,"y":45},{"x":86,"y":37},{"x":-39,"y":58},{"x":15,"y":73},{"x":69,"y":51},{"x":-101,"y":200},{"x":51,"y":45},{"x":4,"y":71},{"x":24,"y":-6},{"x":53,"y":139},{"x":194,"y":114},{"x":59,"y":115},{"x":-34,"y":52},{"x":28,"y":36},{"x":35,"y":1},{"x":58,"y":83},{"x":155,"y":76},{"x":67,"y":103},{"x":16,"y":221}],"type":"admin"},{"arc":[{"x":134984,"y":137786},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":134979,"y":137793},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134979,"y":137795},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134979,"y":137799},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":134979,"y":137804},{"x":-8,"y":11}],"type":"coastline"},{"arc":[{"x":134971,"y":137815},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":134973,"y":137819},{"x":-3,"y":17}],"type":"coastline"},{"arc":[{"x":134970,"y":137836},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":134975,"y":137844},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134975,"y":137848},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134974,"y":137850},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":134974,"y":137857},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134974,"y":137858},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134974,"y":137862},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":134968,"y":137868},{"x":0,"y":15}],"type":"coastline"},{"arc":[{"x":134968,"y":137883},{"x":-3,"y":5}],"type":"area"},{"arc":[{"x":134965,"y":137888},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":134964,"y":137894},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":134959,"y":137897},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":134956,"y":137906},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":134956,"y":137911},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":134958,"y":137917},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":134952,"y":137926},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":134950,"y":137927},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":134952,"y":137934},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":134951,"y":137938},{"x":2,"y":13}],"type":"coastline"},{"arc":[{"x":134953,"y":137951},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":134952,"y":137955},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":134946,"y":137958},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134945,"y":137959},{"x":6,"y":14}],"type":"coastline"},{"arc":[{"x":134951,"y":137973},{"x":2,"y":13}],"type":"coastline"},{"arc":[{"x":134953,"y":137986},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134953,"y":137987},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":134953,"y":137995},{"x":0,"y":6}],"type":"area"},{"arc":[{"x":134953,"y":138001},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":134953,"y":138010},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134953,"y":138014},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134953,"y":138017},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":134958,"y":138026},{"x":1,"y":17}],"type":"coastline"},{"arc":[{"x":134959,"y":138043},{"x":-2,"y":10}],"type":"area"},{"arc":[{"x":134957,"y":138053},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":134957,"y":138063},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134957,"y":138067},{"x":-8,"y":27}],"type":"coastline"},{"arc":[{"x":134949,"y":138094},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":134949,"y":138097},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":134949,"y":138098},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":134949,"y":138101},{"x":1,"y":16}],"type":"coastline"},{"arc":[{"x":134950,"y":138117},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":134956,"y":138122},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":134962,"y":138127},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":134965,"y":138137},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":134963,"y":138141},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":134961,"y":138144},{"x":-36,"y":31}],"type":"coastline"},{"arc":[{"x":134925,"y":138175},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":134923,"y":138181},{"x":0,"y":4}],"type":"area"},{"arc":[{"x":134923,"y":138185},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":134927,"y":138195},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134927,"y":138197},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":134921,"y":138206},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":134918,"y":138211},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":134917,"y":138214},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":134915,"y":138217},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":134911,"y":138223},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134911,"y":138227},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":134912,"y":138231},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134910,"y":138236},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":134908,"y":138239},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":134904,"y":138242},{"x":-3,"y":6}],"type":"area"},{"arc":[{"x":134901,"y":138248},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":134902,"y":138256},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":134902,"y":138263},{"x":0,"y":4}],"type":"area"},{"arc":[{"x":134902,"y":138267},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134901,"y":138272},{"x":0,"y":9}],"type":"area"},{"arc":[{"x":134901,"y":138281},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":134900,"y":138287},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134900,"y":138288},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134899,"y":138289},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":134899,"y":138294},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":134899,"y":138300},{"x":0,"y":4}],"type":"area"},{"arc":[{"x":134899,"y":138304},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":134898,"y":138313},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":134896,"y":138316},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":134891,"y":138322},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134890,"y":138327},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134889,"y":138330},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":134886,"y":138336},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134885,"y":138339},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":134880,"y":138346},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134879,"y":138347},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134876,"y":138349},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":134873,"y":138352},{"x":-6,"y":6}],"type":"area"},{"arc":[{"x":134867,"y":138358},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134865,"y":138363},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":134860,"y":138372},{"x":-3,"y":14}],"type":"coastline"},{"arc":[{"x":134857,"y":138386},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":134853,"y":138389},{"x":-2,"y":4}],"type":"area"},{"arc":[{"x":134851,"y":138393},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134850,"y":138395},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134850,"y":138398},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134849,"y":138399},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":134846,"y":138403},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":134842,"y":138410},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":134838,"y":138413},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134835,"y":138414},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134834,"y":138415},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134834,"y":138418},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134831,"y":138420},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":134826,"y":138430},{"x":-2,"y":5}],"type":"area"},{"arc":[{"x":134824,"y":138435},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":134822,"y":138439},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134821,"y":138441},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134820,"y":138442},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134819,"y":138444},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134818,"y":138445},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":134817,"y":138451},{"x":-8,"y":15}],"type":"coastline"},{"arc":[{"x":134809,"y":138466},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134808,"y":138468},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":134805,"y":138471},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":134802,"y":138476},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134800,"y":138481},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":134794,"y":138488},{"x":-4,"y":4}],"type":"area"},{"arc":[{"x":134790,"y":138492},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":134788,"y":138499},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":134782,"y":138505},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134779,"y":138507},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134778,"y":138508},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134775,"y":138509},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":134771,"y":138505},{"x":3,"y":-13}],"type":"coastline"},{"arc":[{"x":134774,"y":138492},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":134774,"y":138491},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":134774,"y":138486},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":134771,"y":138481},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":134769,"y":138479},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":134767,"y":138479},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134763,"y":138478},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":134760,"y":138477},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":134754,"y":138472},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":134749,"y":138473},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":134747,"y":138473},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":134744,"y":138473},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":134739,"y":138473},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":134731,"y":138470},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":134728,"y":138475},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134728,"y":138476},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134728,"y":138479},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":134729,"y":138486},{"x":-5,"y":14}],"type":"coastline"},{"arc":[{"x":134724,"y":138500},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":134724,"y":138505},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":134727,"y":138512},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":134729,"y":138519},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134728,"y":138520},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":134728,"y":138522},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":134720,"y":138528},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":134718,"y":138531},{"x":1,"y":15}],"type":"coastline"},{"arc":[{"x":134719,"y":138546},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134719,"y":138549},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":134716,"y":138556},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":134713,"y":138565},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":134718,"y":138574},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":134721,"y":138584},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134720,"y":138586},{"x":1,"y":4}],"type":"area"},{"arc":[{"x":134721,"y":138590},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134722,"y":138593},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134722,"y":138595},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134722,"y":138598},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":134722,"y":138603},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":134723,"y":138616},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134724,"y":138619},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":134724,"y":138622},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":134724,"y":138629},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":134726,"y":138632},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":134728,"y":138636},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":134727,"y":138636},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134724,"y":138637},{"x":-6,"y":-4}],"type":"area"},{"arc":[{"x":134718,"y":138633},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":134716,"y":138631},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":134712,"y":138628},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":134707,"y":138626},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":134705,"y":138625},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":134703,"y":138625},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":134699,"y":138627},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134695,"y":138626},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":134692,"y":138625},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":134686,"y":138631},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134685,"y":138632},{"x":-10,"y":9}],"type":"coastline"},{"arc":[{"x":134675,"y":138641},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134674,"y":138642},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":134672,"y":138649},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":134669,"y":138654},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134667,"y":138659},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":134665,"y":138661},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134665,"y":138662},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134663,"y":138667},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134662,"y":138668},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134661,"y":138670},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":134660,"y":138674},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":134656,"y":138679},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":134653,"y":138680},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":134642,"y":138681},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134640,"y":138682},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":134637,"y":138685},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":134636,"y":138688},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":134631,"y":138693},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":134625,"y":138698},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":134626,"y":138703},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":134627,"y":138707},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":134628,"y":138713},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134628,"y":138714},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":134628,"y":138716},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":134627,"y":138724},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":134625,"y":138727},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134626,"y":138728},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134627,"y":138731},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134627,"y":138732},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":134626,"y":138740},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134625,"y":138742},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134625,"y":138746},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134624,"y":138748},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":134614,"y":138747},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":134611,"y":138744},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":134606,"y":138739},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":134601,"y":138734},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":134598,"y":138733},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":134596,"y":138731},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":134595,"y":138728},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134594,"y":138727},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":134593,"y":138725},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":134592,"y":138725},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134591,"y":138726},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":134589,"y":138726},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":134587,"y":138728},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":134583,"y":138732},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134583,"y":138736},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":134584,"y":138737},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":134583,"y":138747},{"x":-4,"y":15}],"type":"coastline"},{"arc":[{"x":134579,"y":138762},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":134574,"y":138767},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134573,"y":138770},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":134570,"y":138774},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":134567,"y":138781},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134567,"y":138782},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":134560,"y":138790},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":134558,"y":138792},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":134555,"y":138796},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134554,"y":138797},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134555,"y":138798},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":134556,"y":138797},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134557,"y":138796},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":134562,"y":138794},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":134567,"y":138795},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":134570,"y":138797},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":134571,"y":138800},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":134571,"y":138806},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134570,"y":138809},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134570,"y":138811},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":134567,"y":138819},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134565,"y":138824},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134565,"y":138825},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":134565,"y":138835},{"x":-1,"y":5}],"type":"area"},{"arc":[{"x":134564,"y":138840},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134564,"y":138844},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":134559,"y":138850},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":134557,"y":138852},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":134551,"y":138857},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":134549,"y":138860},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":134546,"y":138867},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134545,"y":138869},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134542,"y":138871},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":134536,"y":138875},{"x":-5,"y":25}],"type":"coastline"},{"arc":[{"x":134531,"y":138900},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":134531,"y":138902},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":134529,"y":138910},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134529,"y":138912},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134528,"y":138915},{"x":-4,"y":2}],"type":"area"},{"arc":[{"x":134524,"y":138917},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134523,"y":138922},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134522,"y":138927},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134521,"y":138929},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134521,"y":138931},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":134520,"y":138935},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":134518,"y":138939},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":134515,"y":138942},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":134517,"y":138945},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":134520,"y":138946},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134521,"y":138949},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134518,"y":138951},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":134516,"y":138954},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":134514,"y":138958},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134512,"y":138959},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134513,"y":138962},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":134513,"y":138964},{"x":0,"y":6}],"type":"area"},{"arc":[{"x":134513,"y":138970},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134513,"y":138973},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":134513,"y":138981},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":134513,"y":138990},{"x":-2,"y":4}],"type":"area"},{"arc":[{"x":134511,"y":138994},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":134508,"y":139000},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":134505,"y":139003},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":134504,"y":139003},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134501,"y":139004},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":134502,"y":139009},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":134507,"y":139013},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134507,"y":139014},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":134509,"y":139017},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134508,"y":139020},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":134506,"y":139022},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134504,"y":139023},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134503,"y":139024},{"x":0,"y":4}],"type":"area"},{"arc":[{"x":134503,"y":139028},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":134504,"y":139030},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134503,"y":139031},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134500,"y":139032},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":134492,"y":139039},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":134487,"y":139041},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134487,"y":139042},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":134486,"y":139046},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":134486,"y":139052},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":134484,"y":139054},{"x":-2,"y":13}],"type":"coastline"},{"arc":[{"x":134482,"y":139067},{"x":-4,"y":13}],"type":"coastline"},{"arc":[{"x":134478,"y":139080},{"x":-11,"y":7}],"type":"coastline"},{"arc":[{"x":134467,"y":139087},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134465,"y":139088},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134464,"y":139090},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134464,"y":139091},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134463,"y":139094},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134460,"y":139095},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134459,"y":139096},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":134459,"y":139107},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134459,"y":139108},{"x":-8,"y":15}],"type":"coastline"},{"arc":[{"x":134451,"y":139123},{"x":-6,"y":17}],"type":"coastline"},{"arc":[{"x":134445,"y":139140},{"x":-10,"y":8}],"type":"coastline"},{"arc":[{"x":134435,"y":139148},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134434,"y":139150},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":134426,"y":139152},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":134425,"y":139152},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134425,"y":139153},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":134423,"y":139156},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134421,"y":139157},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134420,"y":139156},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":134418,"y":139156},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":134411,"y":139152},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":134408,"y":139150},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":134403,"y":139150},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":134397,"y":139155},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":134395,"y":139155},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":134388,"y":139158},{"x":-21,"y":9}],"type":"coastline"},{"arc":[{"x":134367,"y":139167},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134366,"y":139168},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":134357,"y":139174},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":134355,"y":139174},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134353,"y":139175},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134352,"y":139177},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":134346,"y":139183},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":134345,"y":139183},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":134341,"y":139193},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":134339,"y":139196},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":134331,"y":139203},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":134324,"y":139205},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134321,"y":139206},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":134320,"y":139206},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134317,"y":139207},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134316,"y":139206},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":134317,"y":139204},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":134322,"y":139200},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":134328,"y":139197},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134331,"y":139195},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":134331,"y":139194},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":134327,"y":139189},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":134320,"y":139188},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134316,"y":139187},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":134311,"y":139188},{"x":-14,"y":10}],"type":"coastline"},{"arc":[{"x":134297,"y":139198},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134296,"y":139199},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134293,"y":139200},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":134292,"y":139200},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":134290,"y":139198},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":134290,"y":139195},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134291,"y":139190},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":134291,"y":139188},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134290,"y":139185},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":134283,"y":139187},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":134279,"y":139188},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":134268,"y":139189},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134267,"y":139190},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134265,"y":139191},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":134263,"y":139191},{"x":-12,"y":3}],"type":"coastline"},{"arc":[{"x":134251,"y":139194},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":134250,"y":139194},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134247,"y":139196},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":134245,"y":139198},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":134243,"y":139201},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134241,"y":139202},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134238,"y":139204},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":134234,"y":139209},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":134232,"y":139211},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":134231,"y":139212},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":134225,"y":139216},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":134221,"y":139213},{"x":-6,"y":-2}],"type":"area"},{"arc":[{"x":134215,"y":139211},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":134202,"y":139209},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":134198,"y":139207},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":134195,"y":139206},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":134194,"y":139205},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":134188,"y":139201},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":134179,"y":139200},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134177,"y":139205},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134176,"y":139208},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":134169,"y":139215},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":134165,"y":139219},{"x":-1,"y":7}],"type":"area"},{"arc":[{"x":134164,"y":139226},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":134161,"y":139235},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":134157,"y":139237},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":134150,"y":139242},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":134148,"y":139244},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134149,"y":139247},{"x":14,"y":31},{"x":-38,"y":22},{"x":26,"y":157},{"x":-48,"y":129},{"x":104,"y":94},{"x":-2,"y":65},{"x":20,"y":12},{"x":53,"y":-72},{"x":13,"y":-90},{"x":51,"y":19},{"x":27,"y":-71},{"x":115,"y":-30},{"x":44,"y":96},{"x":-62,"y":17},{"x":-21,"y":76},{"x":31,"y":-1},{"x":48,"y":70},{"x":-138,"y":282},{"x":-2,"y":63},{"x":-32,"y":19},{"x":-54,"y":-31},{"x":4,"y":32},{"x":-72,"y":26},{"x":25,"y":216},{"x":-8,"y":42},{"x":-46,"y":-11},{"x":-1,"y":38},{"x":45,"y":-15},{"x":-11,"y":47},{"x":-34,"y":-28},{"x":-18,"y":241},{"x":95,"y":-53},{"x":58,"y":53},{"x":-120,"y":42},{"x":-116,"y":177}],"type":"area"},{"arc":[{"x":134099,"y":140911},{"x":-5,"y":22},{"x":-28,"y":-3},{"x":29,"y":-16},{"x":-36,"y":-19},{"x":7,"y":53},{"x":-19,"y":-52},{"x":-126,"y":-66},{"x":-521,"y":-171},{"x":-586,"y":-70},{"x":-38,"y":9},{"x":5,"y":26},{"x":-12,"y":-27},{"x":4,"y":40},{"x":-13,"y":-48},{"x":-305,"y":-52},{"x":-322,"y":2},{"x":-331,"y":42},{"x":-268,"y":45},{"x":4,"y":25},{"x":-35,"y":-1},{"x":34,"y":17},{"x":-75,"y":-3}],"type":"coastline"},{"arc":[{"x":131462,"y":140664},{"x":-39,"y":-86},{"x":57,"y":-42},{"x":-4,"y":-107},{"x":64,"y":-7},{"x":-128,"y":-344},{"x":-21,"y":29},{"x":-59,"y":-26},{"x":-29,"y":35},{"x":-46,"y":-51},{"x":-111,"y":55},{"x":-129,"y":-86},{"x":-147,"y":35},{"x":-39,"y":-21},{"x":-8,"y":28},{"x":-74,"y":-18},{"x":-60,"y":36},{"x":-73,"y":-36},{"x":-38,"y":33},{"x":-72,"y":-45},{"x":-6,"y":-169},{"x":39,"y":-70},{"x":-32,"y":-89},{"x":103,"y":-274},{"x":-49,"y":-16},{"x":-41,"y":-67},{"x":4,"y":65},{"x":-156,"y":173},{"x":-10,"y":65},{"x":-62,"y":-87},{"x":81,"y":-132},{"x":63,"y":-235},{"x":-66,"y":-142},{"x":104,"y":-31},{"x":74,"y":-84},{"x":28,"y":-140}],"type":"admin"},{"arc":[{"x":130580,"y":138813},{"x":117,"y":-70},{"x":142,"y":-8},{"x":55,"y":-40},{"x":138,"y":99},{"x":100,"y":-4},{"x":62,"y":-44},{"x":33,"y":13},{"x":43,"y":-44},{"x":74,"y":71},{"x":43,"y":-7},{"x":64,"y":-180},{"x":50,"y":-34},{"x":-14,"y":-120},{"x":-32,"y":-20},{"x":35,"y":-136},{"x":128,"y":-68},{"x":26,"y":-49},{"x":-40,"y":-17},{"x":-47,"y":-148},{"x":158,"y":-194},{"x":-44,"y":-30},{"x":-57,"y":9},{"x":-21,"y":-37},{"x":-45,"y":-214},{"x":34,"y":-76},{"x":-50,"y":-48},{"x":19,"y":-97},{"x":-49,"y":-39},{"x":-8,"y":-74},{"x":70,"y":-96},{"x":104,"y":-55},{"x":193,"y":-17},{"x":82,"y":59},{"x":55,"y":-104},{"x":-16,"y":-105},{"x":57,"y":-28},{"x":-24,"y":-121},{"x":89,"y":-156},{"x":94,"y":-13},{"x":6,"y":-72},{"x":-50,"y":-77},{"x":-160,"y":-31},{"x":64,"y":-200},{"x":-40,"y":-42},{"x":-25,"y":17},{"x":-18,"y":-55},{"x":46,"y":-99},{"x":-32,"y":-21},{"x":67,"y":-44},{"x":-6,"y":-88},{"x":60,"y":-17},{"x":-8,"y":-45},{"x":52,"y":-47},{"x":72,"y":-176}],"type":"admin"},{"arc":[{"x":132226,"y":135574},{"x":51,"y":-40},{"x":105,"y":11},{"x":134,"y":104},{"x":82,"y":-49},{"x":94,"y":-15},{"x":28,"y":-41},{"x":69,"y":-1},{"x":133,"y":58},{"x":59,"y":-49}],"type":"admin"},{"arc":[{"x":132981,"y":135552},{"x":32,"y":40},{"x":-57,"y":160},{"x":46,"y":99},{"x":-29,"y":35},{"x":-13,"y":236},{"x":43,"y":44},{"x":-10,"y":151},{"x":63,"y":57},{"x":51,"y":-17},{"x":19,"y":23},{"x":-9,"y":158},{"x":140,"y":136},{"x":173,"y":-25},{"x":108,"y":64},{"x":54,"y":-10},{"x":63,"y":58},{"x":25,"y":108},{"x":66,"y":-25},{"x":69,"y":32}],"type":"admin"},{"arc":[{"x":133815,"y":136876},{"x":25,"y":24}],"type":"coastline"},{"arc":[{"x":133840,"y":136900},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":133844,"y":136903},{"x":12,"y":6}],"type":"admin"},{"arc":[{"x":133856,"y":136909},{"x":19,"y":5}],"type":"coastline"},{"arc":[{"x":133875,"y":136914},{"x":12,"y":12}],"type":"coastline"},{"arc":[{"x":133887,"y":136926},{"x":4,"y":13}],"type":"admin"},{"arc":[{"x":133891,"y":136939},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":133895,"y":136948},{"x":11,"y":20}],"type":"coastline"},{"arc":[{"x":133906,"y":136968},{"x":5,"y":15}],"type":"coastline"},{"arc":[{"x":133911,"y":136983},{"x":10,"y":9}],"type":"admin"},{"arc":[{"x":133921,"y":136992},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":133926,"y":136998},{"x":6,"y":29}],"type":"coastline"},{"arc":[{"x":133932,"y":137027},{"x":15,"y":14}],"type":"coastline"},{"arc":[{"x":133947,"y":137041},{"x":10,"y":-1}],"type":"admin"},{"arc":[{"x":133957,"y":137040},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":133968,"y":137038},{"x":44,"y":13}],"type":"coastline"},{"arc":[{"x":134012,"y":137051},{"x":12,"y":2}],"type":"coastline"},{"arc":[{"x":134024,"y":137053},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":134029,"y":137055},{"x":16,"y":0}],"type":"coastline"},{"arc":[{"x":134045,"y":137055},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134046,"y":137055},{"x":12,"y":1}],"type":"coastline"},{"arc":[{"x":134058,"y":137056},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":134064,"y":137056},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":134072,"y":137062},{"x":12,"y":10}],"type":"coastline"},{"arc":[{"x":134084,"y":137072},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":134087,"y":137075},{"x":7,"y":6}],"type":"admin"},{"arc":[{"x":134094,"y":137081},{"x":15,"y":9}],"type":"coastline"},{"arc":[{"x":134109,"y":137090},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":134112,"y":137094},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":134113,"y":137095},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":134114,"y":137099},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":134120,"y":137101},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":134126,"y":137103},{"x":8,"y":5}],"type":"coastline"},{"arc":[{"x":134134,"y":137108},{"x":8,"y":6}],"type":"admin"},{"arc":[{"x":134142,"y":137114},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":134146,"y":137120},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":134150,"y":137123},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":134158,"y":137130},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":134165,"y":137136},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":134174,"y":137138},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":134181,"y":137139},{"x":7,"y":-1}],"type":"admin"},{"arc":[{"x":134188,"y":137138},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":134194,"y":137138},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":134197,"y":137137},{"x":13,"y":-3}],"type":"coastline"},{"arc":[{"x":134210,"y":137134},{"x":6,"y":-4}],"type":"admin"},{"arc":[{"x":134216,"y":137130},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":134221,"y":137127},{"x":9,"y":-1}],"type":"admin"},{"arc":[{"x":134230,"y":137126},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":134240,"y":137126},{"x":11,"y":-4}],"type":"coastline"},{"arc":[{"x":134251,"y":137122},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134253,"y":137121},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":134255,"y":137121},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":134265,"y":137120},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":134267,"y":137119},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":134268,"y":137119},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":134269,"y":137119},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":134271,"y":137121},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":134273,"y":137122},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134277,"y":137123},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134278,"y":137123},{"x":15,"y":7}],"type":"coastline"},{"arc":[{"x":134293,"y":137130},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":134297,"y":137129},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":134304,"y":137122},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":134307,"y":137122},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":134314,"y":137124},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":134316,"y":137124},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":134322,"y":137123},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134326,"y":137124},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":134329,"y":137125},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134332,"y":137124},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":134335,"y":137121},{"x":11,"y":-4}],"type":"coastline"},{"arc":[{"x":134346,"y":137117},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":134356,"y":137115},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134358,"y":137114},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":134361,"y":137110},{"x":14,"y":-10}],"type":"coastline"},{"arc":[{"x":134375,"y":137100},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134377,"y":137099},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134377,"y":137096},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134378,"y":137093},{"x":12,"y":-7}],"type":"coastline"},{"arc":[{"x":134390,"y":137086},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":134393,"y":137082},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":134401,"y":137078},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":134405,"y":137077},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":134414,"y":137081},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134418,"y":137082},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":134425,"y":137082},{"x":16,"y":3}],"type":"coastline"},{"arc":[{"x":134441,"y":137085},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":134443,"y":137083},{"x":28,"y":-15}],"type":"coastline"},{"arc":[{"x":134471,"y":137068},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":134474,"y":137067},{"x":23,"y":1}],"type":"coastline"},{"arc":[{"x":134497,"y":137068},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":134504,"y":137069},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134505,"y":137069},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":134511,"y":137070},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":134514,"y":137070},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":134524,"y":137072},{"x":4,"y":1}],"type":"admin"},{"arc":[{"x":134528,"y":137073},{"x":15,"y":5}],"type":"coastline"},{"arc":[{"x":134543,"y":137078},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":134545,"y":137079},{"x":12,"y":8}],"type":"coastline"},{"arc":[{"x":134557,"y":137087},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134558,"y":137087},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":134565,"y":137091},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":134567,"y":137092},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134568,"y":137092},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":134573,"y":137093},{"x":16,"y":-5}],"type":"coastline"},{"arc":[{"x":134589,"y":137088},{"x":13,"y":-12}],"type":"coastline"},{"arc":[{"x":134602,"y":137076},{"x":10,"y":-18}],"type":"coastline"},{"arc":[{"x":134612,"y":137058},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":134615,"y":137054},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":134620,"y":137053},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":134622,"y":137053},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":134628,"y":137053},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134631,"y":137052},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":134638,"y":137051},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134641,"y":137050},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134644,"y":137048},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134645,"y":137048},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":134649,"y":137046},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134650,"y":137045},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":134651,"y":137045},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":134653,"y":137041},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":134654,"y":137040},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":134657,"y":137037},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":134660,"y":137037},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":134660,"y":137038},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":134660,"y":137039},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":134660,"y":137041},{"x":11,"y":22}],"type":"coastline"},{"arc":[{"x":134671,"y":137063},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134672,"y":137064},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":134673,"y":137065},{"x":15,"y":2}],"type":"coastline"},{"arc":[{"x":134688,"y":137067},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":134691,"y":137067},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":134694,"y":137067},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":134695,"y":137067},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134698,"y":137066},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134700,"y":137065},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":134704,"y":137065},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":134710,"y":137062},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":134716,"y":137062},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":134718,"y":137061},{"x":13,"y":-4}],"type":"coastline"},{"arc":[{"x":134731,"y":137057},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":134732,"y":137056},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":134741,"y":137054},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":134753,"y":137053},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134757,"y":137054},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":134763,"y":137055},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":134769,"y":137056},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":134776,"y":137059},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":134777,"y":137058},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":134781,"y":137056},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":134786,"y":137057},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":134789,"y":137057},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":134800,"y":137057},{"x":8,"y":5}],"type":"coastline"},{"arc":[{"x":134808,"y":137062},{"x":3,"y":2}],"type":"admin"},{"arc":[{"x":134811,"y":137064},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":134814,"y":137067},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":134820,"y":137067},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":134825,"y":137067},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":134826,"y":137068},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":134834,"y":137070},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":134836,"y":137072},{"x":1,"y":2}],"type":"admin"},{"arc":[{"x":134837,"y":137074},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":134840,"y":137076},{"x":1,"y":2}],"type":"admin"},{"arc":[{"x":134841,"y":137078},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134842,"y":137079},{"x":-5,"y":15}],"type":"area"},{"arc":[{"x":134837,"y":137094},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":134835,"y":137099},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134835,"y":137101},{"x":-1,"y":14}],"type":"coastline"},{"arc":[{"x":134834,"y":137115},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":134837,"y":137121},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":134841,"y":137125},{"x":12,"y":3}],"type":"area"},{"arc":[{"x":134853,"y":137128},{"x":17,"y":20}],"type":"coastline"},{"arc":[{"x":134870,"y":137148},{"x":-1,"y":10}],"type":"area"},{"arc":[{"x":134869,"y":137158},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":134871,"y":137164},{"x":4,"y":14}],"type":"coastline"},{"arc":[{"x":134875,"y":137178},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":134879,"y":137185},{"x":4,"y":4}],"type":"area"},{"arc":[{"x":134883,"y":137189},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134882,"y":137191},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":134881,"y":137191},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":134880,"y":137195},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134879,"y":137197},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":134881,"y":137205},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":134881,"y":137208},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134880,"y":137210},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":134881,"y":137213},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":134880,"y":137215},{"x":-10,"y":18}],"type":"coastline"},{"arc":[{"x":134870,"y":137233},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":134870,"y":137237},{"x":5,"y":4}],"type":"area"},{"arc":[{"x":134875,"y":137241},{"x":6,"y":10}],"type":"coastline"},{"arc":[{"x":134881,"y":137251},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":134884,"y":137259},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134883,"y":137261},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":134881,"y":137267},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134880,"y":137272},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":134879,"y":137276},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":134880,"y":137285},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":134879,"y":137292},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":134877,"y":137294},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":134873,"y":137300},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":134872,"y":137302},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":134872,"y":137307},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":134879,"y":137313},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":134884,"y":137320},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":134892,"y":137324},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":134899,"y":137328},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":134904,"y":137335},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":134905,"y":137336},{"x":3,"y":13}],"type":"coastline"},{"arc":[{"x":134908,"y":137349},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134908,"y":137351},{"x":3,"y":21}],"type":"coastline"},{"arc":[{"x":134911,"y":137372},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":134911,"y":137377},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":134911,"y":137380},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":134910,"y":137386},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":134914,"y":137394},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134914,"y":137395},{"x":1,"y":14}],"type":"coastline"},{"arc":[{"x":134915,"y":137409},{"x":0,"y":15}],"type":"area"},{"arc":[{"x":134915,"y":137424},{"x":-2,"y":15}],"type":"coastline"},{"arc":[{"x":134913,"y":137439},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":134913,"y":137441},{"x":7,"y":10}],"type":"coastline"},{"arc":[{"x":134920,"y":137451},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":134926,"y":137456},{"x":2,"y":21}],"type":"coastline"},{"arc":[{"x":134928,"y":137477},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":134925,"y":137478},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":134921,"y":137479},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":134915,"y":137482},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":134912,"y":137489},{"x":1,"y":15}],"type":"coastline"},{"arc":[{"x":134913,"y":137504},{"x":-1,"y":25}],"type":"coastline"},{"arc":[{"x":134912,"y":137529},{"x":2,"y":16}],"type":"area"},{"arc":[{"x":134914,"y":137545},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":134914,"y":137551},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":134913,"y":137564},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":134915,"y":137569},{"x":14,"y":10}],"type":"coastline"},{"arc":[{"x":134929,"y":137579},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":134931,"y":137579},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":134938,"y":137584},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":134939,"y":137586},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":134947,"y":137593},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":134946,"y":137601},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":134946,"y":137604},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":134951,"y":137614},{"x":-1,"y":6}],"type":"area"},{"arc":[{"x":134950,"y":137620},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":134945,"y":137629},{"x":-2,"y":5}],"type":"area"},{"arc":[{"x":134943,"y":137634},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":134938,"y":137642},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134937,"y":137647},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":134934,"y":137653},{"x":-5,"y":14}],"type":"coastline"},{"arc":[{"x":134929,"y":137667},{"x":-1,"y":6}],"type":"area"},{"arc":[{"x":134928,"y":137673},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":134932,"y":137678},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":134939,"y":137685},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":134940,"y":137685},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":134945,"y":137689},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":134950,"y":137693},{"x":4,"y":3}],"type":"area"},{"arc":[{"x":134954,"y":137696},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":134957,"y":137703},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":134959,"y":137705},{"x":10,"y":12}],"type":"coastline"},{"arc":[{"x":134969,"y":137717},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":134970,"y":137722},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":134970,"y":137723},{"x":8,"y":21}],"type":"coastline"},{"arc":[{"x":134978,"y":137744},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":134979,"y":137744},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":134981,"y":137746},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":134980,"y":137750},{"x":5,"y":29}],"type":"coastline"},{"arc":[{"x":134985,"y":137779},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":134986,"y":137784},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":135140,"y":144876},{"x":-58,"y":94},{"x":-97,"y":54},{"x":-75,"y":5},{"x":-8,"y":40},{"x":-31,"y":3},{"x":37,"y":2},{"x":-21,"y":29},{"x":-57,"y":-20},{"x":-47,"y":32},{"x":47,"y":-46},{"x":-8,"y":-124},{"x":130,"y":-53},{"x":12,"y":-56},{"x":33,"y":12},{"x":-3,"y":-74},{"x":42,"y":20},{"x":9,"y":-24},{"x":32,"y":53},{"x":60,"y":-23},{"x":-32,"y":54},{"x":35,"y":22}],"type":"coastline"},{"arc":[{"x":135411,"y":144455},{"x":-26,"y":42},{"x":-34,"y":-17},{"x":-107,"y":38},{"x":-4,"y":32},{"x":21,"y":-10},{"x":-34,"y":19},{"x":-74,"y":-163},{"x":50,"y":-18},{"x":86,"y":50},{"x":52,"y":-26},{"x":70,"y":53}],"type":"coastline"},{"arc":[{"x":135424,"y":145632},{"x":-14,"y":35},{"x":-36,"y":-23},{"x":-62,"y":166},{"x":-141,"y":-82},{"x":-45,"y":31},{"x":-24,"y":-13},{"x":-23,"y":37},{"x":-77,"y":-76},{"x":122,"y":-144},{"x":55,"y":-44},{"x":58,"y":-3},{"x":13,"y":-31},{"x":-11,"y":29},{"x":91,"y":-26},{"x":94,"y":144}],"type":"coastline"},{"arc":[{"x":135497,"y":142436},{"x":-44,"y":28},{"x":15,"y":-49},{"x":29,"y":21}],"type":"coastline"},{"arc":[{"x":135560,"y":141789},{"x":-23,"y":5},{"x":-20,"y":-52},{"x":30,"y":-19},{"x":13,"y":66}],"type":"coastline"},{"arc":[{"x":135516,"y":141607},{"x":19,"y":-26},{"x":43,"y":38},{"x":-43,"y":-38},{"x":-19,"y":26}],"type":"coastline"},{"arc":[{"x":135658,"y":141912},{"x":-26,"y":0},{"x":-16,"y":94},{"x":-59,"y":34},{"x":47,"y":-79},{"x":-17,"y":-74},{"x":49,"y":-21},{"x":22,"y":46}],"type":"coastline"},{"arc":[{"x":135721,"y":142148},{"x":-82,"y":-42},{"x":-8,"y":-49},{"x":-41,"y":3},{"x":59,"y":-43},{"x":58,"y":-6},{"x":-44,"y":26},{"x":20,"y":30},{"x":-25,"y":21},{"x":63,"y":60}],"type":"coastline"},{"arc":[{"x":135743,"y":142220},{"x":-72,"y":-23},{"x":36,"y":41},{"x":-50,"y":-20},{"x":-19,"y":12},{"x":-4,"y":-36},{"x":-33,"y":34},{"x":-5,"y":-41},{"x":-36,"y":20},{"x":-23,"y":-34},{"x":93,"y":-68},{"x":40,"y":34},{"x":-46,"y":12},{"x":4,"y":24},{"x":48,"y":-22},{"x":67,"y":67}],"type":"coastline"},{"arc":[{"x":135788,"y":142142},{"x":-37,"y":16},{"x":2,"y":-27},{"x":35,"y":11}],"type":"coastline"},{"arc":[{"x":135790,"y":142101},{"x":-43,"y":18},{"x":-18,"y":-26},{"x":32,"y":-17},{"x":29,"y":25}],"type":"coastline"},{"arc":[{"x":135810,"y":142149},{"x":-19,"y":41},{"x":-32,"y":-12},{"x":51,"y":-29}],"type":"coastline"},{"arc":[{"x":135824,"y":142477},{"x":-16,"y":32},{"x":-13,"y":-45},{"x":29,"y":13}],"type":"coastline"},{"arc":[{"x":135833,"y":142374},{"x":-33,"y":64},{"x":-50,"y":-30},{"x":16,"y":20},{"x":-60,"y":5},{"x":-27,"y":40},{"x":94,"y":-30},{"x":-22,"y":22},{"x":39,"y":-8},{"x":-19,"y":65},{"x":-28,"y":-41},{"x":-3,"y":28},{"x":-12,"y":-27},{"x":-1,"y":28},{"x":-30,"y":-4},{"x":22,"y":20},{"x":-78,"y":-6},{"x":23,"y":16},{"x":-65,"y":-31},{"x":-64,"y":41},{"x":3,"y":36},{"x":-39,"y":47},{"x":21,"y":-43},{"x":-27,"y":19},{"x":-13,"y":-19},{"x":82,"y":-111},{"x":-55,"y":-68},{"x":73,"y":-69},{"x":39,"y":27},{"x":0,"y":-54},{"x":-31,"y":10},{"x":-7,"y":-42},{"x":-51,"y":69},{"x":-29,"y":-70},{"x":50,"y":16},{"x":111,"y":-64},{"x":22,"y":12},{"x":-15,"y":10},{"x":31,"y":1},{"x":-33,"y":17},{"x":2,"y":45},{"x":29,"y":3},{"x":-34,"y":42},{"x":36,"y":14},{"x":111,"y":-74},{"x":22,"y":74}],"type":"coastline"},{"arc":[{"x":136027,"y":141806},{"x":-13,"y":40},{"x":10,"y":-58},{"x":3,"y":18}],"type":"coastline"},{"arc":[{"x":136062,"y":144489},{"x":-8,"y":51},{"x":-36,"y":-27},{"x":7,"y":-49},{"x":37,"y":25}],"type":"coastline"},{"arc":[{"x":136085,"y":144150},{"x":-10,"y":26},{"x":-9,"y":-36},{"x":19,"y":10}],"type":"coastline"},{"arc":[{"x":136168,"y":145939},{"x":-38,"y":-3},{"x":-23,"y":-41},{"x":61,"y":44}],"type":"coastline"},{"arc":[{"x":136150,"y":143351},{"x":-29,"y":-44},{"x":58,"y":146},{"x":-29,"y":-102}],"type":"coastline"},{"arc":[{"x":136202,"y":143299},{"x":-14,"y":19},{"x":30,"y":-43},{"x":-16,"y":24}],"type":"coastline"},{"arc":[{"x":136269,"y":145833},{"x":0,"y":32},{"x":-47,"y":22},{"x":-4,"y":-78},{"x":36,"y":13},{"x":-11,"y":22},{"x":26,"y":-11}],"type":"coastline"},{"arc":[{"x":136275,"y":143876},{"x":-12,"y":24},{"x":11,"y":-51},{"x":1,"y":27}],"type":"coastline"},{"arc":[{"x":136476,"y":145838},{"x":-16,"y":18},{"x":-5,"y":-32},{"x":21,"y":14}],"type":"coastline"},{"arc":[{"x":136867,"y":145250},{"x":-58,"y":64},{"x":-55,"y":-12},{"x":8,"y":61},{"x":-41,"y":-23},{"x":-61,"y":43},{"x":-58,"y":-37},{"x":49,"y":-91},{"x":73,"y":-22},{"x":57,"y":28},{"x":56,"y":-32},{"x":30,"y":21}],"type":"coastline"},{"arc":[{"x":138430,"y":145332},{"x":-118,"y":-2},{"x":-130,"y":-84},{"x":-1,"y":-71},{"x":-23,"y":19},{"x":-31,"y":-20},{"x":44,"y":-56},{"x":-76,"y":27},{"x":-38,"y":-98},{"x":-15,"y":17},{"x":-60,"y":-53},{"x":20,"y":-103},{"x":-64,"y":-122},{"x":-163,"y":35},{"x":13,"y":120},{"x":-48,"y":-16},{"x":17,"y":27},{"x":-46,"y":22},{"x":-5,"y":41},{"x":-124,"y":-17},{"x":-75,"y":61},{"x":-1,"y":49},{"x":26,"y":-12},{"x":8,"y":28},{"x":-30,"y":64},{"x":45,"y":-16},{"x":64,"y":51},{"x":-53,"y":47},{"x":72,"y":44},{"x":2,"y":68},{"x":-142,"y":-35},{"x":10,"y":50},{"x":-77,"y":39},{"x":-11,"y":45},{"x":-69,"y":-70},{"x":-51,"y":6},{"x":-20,"y":-43},{"x":-62,"y":40},{"x":19,"y":30},{"x":-63,"y":-29},{"x":-19,"y":-45},{"x":-53,"y":31},{"x":-5,"y":-104},{"x":59,"y":-7},{"x":-29,"y":-64},{"x":69,"y":12},{"x":29,"y":-31},{"x":26,"y":29},{"x":68,"y":-23},{"x":-15,"y":-68},{"x":-31,"y":-9},{"x":28,"y":-38},{"x":-24,"y":-34},{"x":105,"y":-85},{"x":13,"y":-107},{"x":-87,"y":-38},{"x":53,"y":82},{"x":-110,"y":107},{"x":-71,"y":3},{"x":19,"y":52},{"x":-50,"y":10},{"x":-63,"y":-50},{"x":-97,"y":61},{"x":-89,"y":-73},{"x":20,"y":-45},{"x":-31,"y":-58},{"x":-38,"y":1},{"x":-30,"y":198},{"x":-44,"y":-54},{"x":-70,"y":23},{"x":23,"y":30},{"x":-38,"y":3},{"x":6,"y":37},{"x":55,"y":22},{"x":-34,"y":26},{"x":-55,"y":-27},{"x":21,"y":-11},{"x":-32,"y":-105},{"x":-57,"y":0},{"x":57,"y":-35},{"x":-61,"y":-67},{"x":35,"y":-16},{"x":-14,"y":-95},{"x":75,"y":-50},{"x":-27,"y":-105},{"x":-118,"y":140},{"x":-74,"y":-16},{"x":19,"y":65},{"x":-55,"y":28},{"x":-42,"y":-37},{"x":-18,"y":33},{"x":-74,"y":-16},{"x":9,"y":-22},{"x":-14,"y":16},{"x":-62,"y":-49},{"x":-42,"y":33},{"x":46,"y":46},{"x":-3,"y":46},{"x":28,"y":-2},{"x":37,"y":74},{"x":61,"y":18},{"x":-5,"y":32},{"x":41,"y":23},{"x":-21,"y":37},{"x":-97,"y":-30},{"x":-25,"y":28},{"x":36,"y":11},{"x":-60,"y":-4},{"x":13,"y":43},{"x":-67,"y":26},{"x":15,"y":59},{"x":37,"y":17},{"x":-10,"y":51},{"x":52,"y":31},{"x":-16,"y":36},{"x":-48,"y":15},{"x":-42,"y":-25},{"x":-15,"y":22},{"x":-29,"y":-59},{"x":-49,"y":-19},{"x":48,"y":-43},{"x":24,"y":11},{"x":-25,"y":-83},{"x":29,"y":7},{"x":19,"y":-37},{"x":-10,"y":-31},{"x":-60,"y":-7},{"x":-42,"y":-123},{"x":24,"y":-25},{"x":-26,"y":6},{"x":5,"y":-33},{"x":-41,"y":-27},{"x":-77,"y":59},{"x":35,"y":47},{"x":-27,"y":25},{"x":29,"y":37},{"x":-29,"y":119},{"x":-55,"y":2},{"x":-8,"y":28},{"x":-30,"y":-18},{"x":-20,"y":38},{"x":-85,"y":0},{"x":-74,"y":76},{"x":-98,"y":-25},{"x":-38,"y":-50},{"x":-66,"y":62},{"x":5,"y":56},{"x":-105,"y":10},{"x":-49,"y":-12},{"x":-15,"y":-69},{"x":-51,"y":-40},{"x":-223,"y":-5},{"x":32,"y":-103},{"x":158,"y":-12},{"x":3,"y":-24},{"x":38,"y":15},{"x":-50,"y":-104},{"x":21,"y":-30},{"x":102,"y":42},{"x":25,"y":-13},{"x":12,"y":-90},{"x":-27,"y":-45},{"x":94,"y":-64},{"x":45,"y":15},{"x":-45,"y":-31},{"x":-70,"y":19},{"x":-21,"y":-29},{"x":76,"y":-63},{"x":14,"y":-72},{"x":133,"y":193},{"x":47,"y":-7},{"x":14,"y":-80},{"x":150,"y":-6},{"x":-36,"y":-67},{"x":-70,"y":-17},{"x":128,"y":-24},{"x":-3,"y":-28},{"x":-116,"y":-69},{"x":-1,"y":-43},{"x":34,"y":23},{"x":33,"y":-17},{"x":-41,"y":-73},{"x":39,"y":-4},{"x":-19,"y":-45},{"x":42,"y":38},{"x":-9,"y":-26},{"x":53,"y":-16},{"x":5,"y":68},{"x":87,"y":47},{"x":3,"y":84},{"x":51,"y":23},{"x":24,"y":119},{"x":34,"y":-45},{"x":-10,"y":-101},{"x":-33,"y":-25},{"x":15,"y":-40},{"x":73,"y":50},{"x":-9,"y":-82},{"x":37,"y":-40},{"x":109,"y":85},{"x":33,"y":-19},{"x":-42,"y":-62},{"x":20,"y":-32},{"x":-52,"y":-35},{"x":119,"y":-48},{"x":-174,"y":-144},{"x":-23,"y":-132},{"x":51,"y":-73},{"x":109,"y":51},{"x":25,"y":-37},{"x":7,"y":22},{"x":55,"y":-8},{"x":4,"y":-27},{"x":-63,"y":-4},{"x":84,"y":3},{"x":1,"y":-287},{"x":-23,"y":1},{"x":0,"y":64},{"x":-3,"y":-64},{"x":-31,"y":104},{"x":53,"y":-182},{"x":-42,"y":0},{"x":-45,"y":54},{"x":3,"y":62},{"x":-4,"y":-62},{"x":49,"y":-59},{"x":40,"y":-13},{"x":-41,"y":-4},{"x":56,"y":-4},{"x":8,"y":-154},{"x":-132,"y":4},{"x":-9,"y":-85},{"x":4,"y":23},{"x":89,"y":-6},{"x":5,"y":-82},{"x":-4,"y":-11},{"x":-11,"y":1},{"x":-97,"y":-77},{"x":98,"y":77},{"x":32,"y":-7},{"x":7,"y":14},{"x":15,"y":-1},{"x":-12,"y":-10},{"x":18,"y":9},{"x":17,"y":85},{"x":31,"y":-3},{"x":-28,"y":-90},{"x":33,"y":-3},{"x":-6,"y":-54},{"x":-67,"y":-4},{"x":-19,"y":27},{"x":-26,"y":-21},{"x":-63,"y":-286},{"x":-241,"y":-438},{"x":-104,"y":-105},{"x":-105,"y":-16},{"x":66,"y":-114},{"x":-5,"y":-91},{"x":112,"y":44},{"x":49,"y":-36},{"x":35,"y":-140},{"x":54,"y":-67},{"x":-59,"y":7},{"x":-37,"y":66},{"x":-6,"y":-71},{"x":-48,"y":12},{"x":-23,"y":-27},{"x":43,"y":-14},{"x":20,"y":-54},{"x":35,"y":18},{"x":32,"y":-85},{"x":-11,"y":-41},{"x":-37,"y":-10},{"x":11,"y":-56},{"x":-67,"y":-29},{"x":-15,"y":-70},{"x":-141,"y":4},{"x":-29,"y":31},{"x":-2,"y":-111},{"x":-30,"y":59},{"x":-29,"y":-46},{"x":24,"y":1},{"x":-23,"y":-31},{"x":43,"y":-64},{"x":-29,"y":11},{"x":-66,"y":-51},{"x":-11,"y":37},{"x":-38,"y":-15},{"x":49,"y":84},{"x":-26,"y":-15},{"x":-58,"y":45},{"x":-68,"y":-82},{"x":-34,"y":-147},{"x":-6,"y":118},{"x":-26,"y":-1},{"x":20,"y":47},{"x":-116,"y":-72},{"x":61,"y":74},{"x":-36,"y":33},{"x":43,"y":-11},{"x":13,"y":27},{"x":-21,"y":52},{"x":85,"y":52},{"x":-20,"y":86},{"x":-131,"y":39},{"x":-50,"y":67},{"x":-46,"y":-16},{"x":-27,"y":-25},{"x":18,"y":-90},{"x":-62,"y":-66},{"x":-71,"y":-24},{"x":-29,"y":-131},{"x":-47,"y":-37},{"x":27,"y":-83},{"x":50,"y":14},{"x":22,"y":-20},{"x":-118,"y":-30},{"x":23,"y":-204},{"x":-29,"y":-9},{"x":-52,"y":384},{"x":-12,"y":-192},{"x":-577,"y":-366},{"x":-271,"y":-99}],"type":"coastline"},{"arc":[{"x":134149,"y":139247},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134150,"y":139242},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":134157,"y":139237},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":134161,"y":139235},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":134165,"y":139219},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":134169,"y":139215},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":134176,"y":139208},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134177,"y":139205},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134179,"y":139200},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":134188,"y":139201},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":134195,"y":139206},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":134202,"y":139209},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":134221,"y":139213},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":134225,"y":139216},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":134232,"y":139211},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":134234,"y":139209},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":134238,"y":139204},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134241,"y":139202},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134245,"y":139198},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":134247,"y":139196},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134251,"y":139194},{"x":12,"y":-3}],"type":"coastline"},{"arc":[{"x":134263,"y":139191},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":134265,"y":139191},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134268,"y":139189},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":134283,"y":139187},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":134290,"y":139185},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":134291,"y":139190},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":134290,"y":139198},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":134293,"y":139200},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134297,"y":139198},{"x":14,"y":-10}],"type":"coastline"},{"arc":[{"x":134311,"y":139188},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":134316,"y":139187},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134320,"y":139188},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":134327,"y":139189},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":134331,"y":139195},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134328,"y":139197},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":134322,"y":139200},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":134316,"y":139206},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134317,"y":139207},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134321,"y":139206},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134324,"y":139205},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":134331,"y":139203},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":134341,"y":139193},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":134345,"y":139183},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":134346,"y":139183},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":134352,"y":139177},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134353,"y":139175},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134357,"y":139174},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":134367,"y":139167},{"x":21,"y":-9}],"type":"coastline"},{"arc":[{"x":134388,"y":139158},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":134395,"y":139155},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":134397,"y":139155},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":134403,"y":139150},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":134408,"y":139150},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":134411,"y":139152},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":134420,"y":139156},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134421,"y":139157},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134423,"y":139156},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":134425,"y":139152},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":134426,"y":139152},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":134435,"y":139148},{"x":10,"y":-8}],"type":"coastline"},{"arc":[{"x":134445,"y":139140},{"x":6,"y":-17}],"type":"coastline"},{"arc":[{"x":134451,"y":139123},{"x":8,"y":-15}],"type":"coastline"},{"arc":[{"x":134459,"y":139107},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":134460,"y":139095},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134463,"y":139094},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134464,"y":139090},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134465,"y":139088},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134467,"y":139087},{"x":11,"y":-7}],"type":"coastline"},{"arc":[{"x":134478,"y":139080},{"x":4,"y":-13}],"type":"coastline"},{"arc":[{"x":134482,"y":139067},{"x":2,"y":-13}],"type":"coastline"},{"arc":[{"x":134484,"y":139054},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":134486,"y":139052},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":134486,"y":139046},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":134487,"y":139041},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":134492,"y":139039},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":134500,"y":139032},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134504,"y":139030},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":134503,"y":139024},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134504,"y":139023},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134508,"y":139020},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134509,"y":139017},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":134507,"y":139013},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":134502,"y":139009},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":134501,"y":139004},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134504,"y":139003},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":134505,"y":139003},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":134508,"y":139000},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":134513,"y":138990},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":134513,"y":138981},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":134513,"y":138973},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134513,"y":138964},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":134513,"y":138962},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134512,"y":138959},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134514,"y":138958},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":134518,"y":138951},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134521,"y":138949},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134520,"y":138946},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":134517,"y":138945},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":134515,"y":138942},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":134518,"y":138939},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":134520,"y":138935},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":134521,"y":138929},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134522,"y":138927},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134523,"y":138922},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134528,"y":138915},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134529,"y":138910},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":134531,"y":138902},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":134531,"y":138900},{"x":5,"y":-25}],"type":"coastline"},{"arc":[{"x":134536,"y":138875},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":134542,"y":138871},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134546,"y":138867},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":134549,"y":138860},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":134551,"y":138857},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":134559,"y":138850},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":134564,"y":138844},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134565,"y":138835},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":134565,"y":138824},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134567,"y":138819},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":134570,"y":138809},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134571,"y":138806},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":134570,"y":138797},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":134567,"y":138795},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":134562,"y":138794},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":134557,"y":138796},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134555,"y":138798},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134555,"y":138796},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":134560,"y":138790},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":134567,"y":138781},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":134570,"y":138774},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":134573,"y":138770},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134574,"y":138767},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":134579,"y":138762},{"x":4,"y":-15}],"type":"coastline"},{"arc":[{"x":134583,"y":138747},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":134583,"y":138736},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134583,"y":138732},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":134587,"y":138728},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":134591,"y":138726},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134593,"y":138725},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":134594,"y":138727},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":134596,"y":138731},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":134601,"y":138734},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":134606,"y":138739},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":134611,"y":138744},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":134614,"y":138747},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":134624,"y":138748},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134625,"y":138746},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134626,"y":138740},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":134627,"y":138731},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134626,"y":138728},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134625,"y":138727},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":134627,"y":138724},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":134628,"y":138716},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":134628,"y":138713},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":134627,"y":138707},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":134626,"y":138703},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":134625,"y":138698},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":134631,"y":138693},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":134637,"y":138685},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":134640,"y":138682},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":134642,"y":138681},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":134656,"y":138679},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":134660,"y":138674},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":134661,"y":138670},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134663,"y":138667},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134665,"y":138661},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":134667,"y":138659},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134669,"y":138654},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":134672,"y":138649},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":134675,"y":138641},{"x":10,"y":-9}],"type":"coastline"},{"arc":[{"x":134686,"y":138631},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":134695,"y":138626},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134699,"y":138627},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":134703,"y":138625},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":134707,"y":138626},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":134712,"y":138628},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":134716,"y":138631},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":134724,"y":138637},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134728,"y":138636},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":134726,"y":138632},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":134724,"y":138629},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":134724,"y":138619},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134723,"y":138616},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":134722,"y":138598},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134722,"y":138593},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":134720,"y":138586},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134721,"y":138584},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":134718,"y":138574},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":134713,"y":138565},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":134716,"y":138556},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":134719,"y":138549},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134719,"y":138546},{"x":-1,"y":-15}],"type":"coastline"},{"arc":[{"x":134718,"y":138531},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":134720,"y":138528},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":134728,"y":138522},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":134729,"y":138519},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":134727,"y":138512},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":134724,"y":138500},{"x":5,"y":-14}],"type":"coastline"},{"arc":[{"x":134729,"y":138486},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":134728,"y":138479},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134728,"y":138475},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":134731,"y":138470},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":134739,"y":138473},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":134744,"y":138473},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":134747,"y":138473},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":134749,"y":138473},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":134754,"y":138472},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":134763,"y":138478},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":134767,"y":138479},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":134771,"y":138481},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":134774,"y":138486},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":134774,"y":138492},{"x":-3,"y":13}],"type":"coastline"},{"arc":[{"x":134771,"y":138505},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":134775,"y":138509},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134779,"y":138507},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134782,"y":138505},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":134788,"y":138499},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":134794,"y":138488},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":134800,"y":138481},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134802,"y":138476},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":134805,"y":138471},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":134808,"y":138468},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134809,"y":138466},{"x":8,"y":-15}],"type":"coastline"},{"arc":[{"x":134817,"y":138451},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":134819,"y":138444},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134820,"y":138442},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134822,"y":138439},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":134826,"y":138430},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":134831,"y":138420},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134834,"y":138418},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134835,"y":138414},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":134838,"y":138413},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":134842,"y":138410},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":134846,"y":138403},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":134849,"y":138399},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134850,"y":138398},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134850,"y":138395},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134853,"y":138389},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":134857,"y":138386},{"x":3,"y":-14}],"type":"coastline"},{"arc":[{"x":134860,"y":138372},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":134865,"y":138363},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134873,"y":138352},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":134876,"y":138349},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":134880,"y":138346},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":134885,"y":138339},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134886,"y":138336},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":134889,"y":138330},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":134890,"y":138327},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134891,"y":138322},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":134898,"y":138313},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":134899,"y":138300},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":134899,"y":138294},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":134899,"y":138289},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":134900,"y":138287},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":134901,"y":138272},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134902,"y":138263},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":134902,"y":138256},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":134904,"y":138242},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":134910,"y":138236},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134912,"y":138231},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":134911,"y":138227},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134911,"y":138223},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":134915,"y":138217},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":134918,"y":138211},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":134921,"y":138206},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":134927,"y":138195},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":134923,"y":138181},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":134925,"y":138175},{"x":36,"y":-31}],"type":"coastline"},{"arc":[{"x":134961,"y":138144},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":134963,"y":138141},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":134965,"y":138137},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":134962,"y":138127},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":134956,"y":138122},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":134950,"y":138117},{"x":-1,"y":-16}],"type":"coastline"},{"arc":[{"x":134949,"y":138098},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":134949,"y":138094},{"x":8,"y":-27}],"type":"coastline"},{"arc":[{"x":134957,"y":138067},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134957,"y":138063},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":134959,"y":138043},{"x":-1,"y":-17}],"type":"coastline"},{"arc":[{"x":134958,"y":138026},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":134953,"y":138017},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":134953,"y":138014},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134953,"y":138010},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":134953,"y":137995},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":134953,"y":137986},{"x":-2,"y":-13}],"type":"coastline"},{"arc":[{"x":134951,"y":137973},{"x":-6,"y":-14}],"type":"coastline"},{"arc":[{"x":134946,"y":137958},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":134952,"y":137955},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":134953,"y":137951},{"x":-2,"y":-13}],"type":"coastline"},{"arc":[{"x":134952,"y":137934},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":134952,"y":137926},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":134958,"y":137917},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":134956,"y":137911},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":134956,"y":137906},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":134959,"y":137897},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":134964,"y":137894},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":134968,"y":137883},{"x":0,"y":-15}],"type":"coastline"},{"arc":[{"x":134968,"y":137868},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":134974,"y":137862},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134974,"y":137857},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":134975,"y":137848},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134975,"y":137844},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":134970,"y":137836},{"x":3,"y":-17}],"type":"coastline"},{"arc":[{"x":134973,"y":137819},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":134971,"y":137815},{"x":8,"y":-11}],"type":"coastline"},{"arc":[{"x":134979,"y":137799},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134979,"y":137793},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":134986,"y":137784},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":134985,"y":137779},{"x":-5,"y":-29}],"type":"coastline"},{"arc":[{"x":134981,"y":137746},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":134978,"y":137744},{"x":-8,"y":-21}],"type":"coastline"},{"arc":[{"x":134970,"y":137722},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":134969,"y":137717},{"x":-10,"y":-12}],"type":"coastline"},{"arc":[{"x":134957,"y":137703},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":134950,"y":137693},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":134945,"y":137689},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":134939,"y":137685},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":134932,"y":137678},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":134929,"y":137667},{"x":5,"y":-14}],"type":"coastline"},{"arc":[{"x":134934,"y":137653},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":134937,"y":137647},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134938,"y":137642},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":134945,"y":137629},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":134951,"y":137614},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":134946,"y":137601},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":134947,"y":137593},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":134938,"y":137584},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":134929,"y":137579},{"x":-14,"y":-10}],"type":"coastline"},{"arc":[{"x":134915,"y":137569},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":134913,"y":137564},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":134914,"y":137551},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":134912,"y":137529},{"x":1,"y":-25}],"type":"coastline"},{"arc":[{"x":134913,"y":137504},{"x":-1,"y":-15}],"type":"coastline"},{"arc":[{"x":134912,"y":137489},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":134915,"y":137482},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":134921,"y":137479},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":134928,"y":137477},{"x":-2,"y":-21}],"type":"coastline"},{"arc":[{"x":134926,"y":137456},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":134920,"y":137451},{"x":-7,"y":-10}],"type":"coastline"},{"arc":[{"x":134913,"y":137439},{"x":2,"y":-15}],"type":"coastline"},{"arc":[{"x":134915,"y":137409},{"x":-1,"y":-14}],"type":"coastline"},{"arc":[{"x":134914,"y":137394},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":134910,"y":137386},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":134911,"y":137377},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":134911,"y":137372},{"x":-3,"y":-21}],"type":"coastline"},{"arc":[{"x":134908,"y":137349},{"x":-3,"y":-13}],"type":"coastline"},{"arc":[{"x":134904,"y":137335},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":134899,"y":137328},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":134892,"y":137324},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":134884,"y":137320},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":134879,"y":137313},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":134872,"y":137307},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":134873,"y":137300},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":134879,"y":137292},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":134880,"y":137285},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":134880,"y":137272},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":134881,"y":137267},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":134884,"y":137259},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":134881,"y":137251},{"x":-6,"y":-10}],"type":"coastline"},{"arc":[{"x":134870,"y":137237},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":134870,"y":137233},{"x":10,"y":-18}],"type":"coastline"},{"arc":[{"x":134880,"y":137215},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134880,"y":137210},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134881,"y":137205},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":134880,"y":137195},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":134882,"y":137191},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":134879,"y":137185},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":134875,"y":137178},{"x":-4,"y":-14}],"type":"coastline"},{"arc":[{"x":134871,"y":137164},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":134870,"y":137148},{"x":-17,"y":-20}],"type":"coastline"},{"arc":[{"x":134841,"y":137125},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":134837,"y":137121},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":134834,"y":137115},{"x":1,"y":-14}],"type":"coastline"},{"arc":[{"x":134835,"y":137099},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":134842,"y":137079},{"x":42,"y":-24},{"x":144,"y":28},{"x":25,"y":116},{"x":82,"y":71},{"x":93,"y":-38},{"x":93,"y":4},{"x":20,"y":73},{"x":90,"y":19},{"x":-46,"y":124},{"x":106,"y":74},{"x":253,"y":-63},{"x":56,"y":9},{"x":79,"y":75},{"x":25,"y":103},{"x":114,"y":52},{"x":11,"y":89},{"x":76,"y":31},{"x":71,"y":83},{"x":193,"y":-54},{"x":95,"y":63},{"x":134,"y":8},{"x":42,"y":94},{"x":-49,"y":42},{"x":76,"y":82},{"x":86,"y":40},{"x":10,"y":49}],"type":"admin"},{"arc":[{"x":151584,"y":131025},{"x":-30,"y":25},{"x":14,"y":-38},{"x":16,"y":13}],"type":"coastline"},{"arc":[{"x":153329,"y":133156},{"x":-21,"y":-20},{"x":132,"y":113},{"x":-111,"y":-93}],"type":"coastline"},{"arc":[{"x":150391,"y":132321},{"x":-2,"y":-29},{"x":40,"y":-3},{"x":-67,"y":-67},{"x":0,"y":80},{"x":-55,"y":-29},{"x":6,"y":-64},{"x":-40,"y":58},{"x":4,"y":-78},{"x":-34,"y":19},{"x":16,"y":64},{"x":-30,"y":-55},{"x":-26,"y":9},{"x":34,"y":111},{"x":-18,"y":-55},{"x":-57,"y":19},{"x":-28,"y":-90},{"x":47,"y":-17},{"x":-52,"y":7},{"x":1,"y":-82},{"x":39,"y":5},{"x":17,"y":-67},{"x":-50,"y":-65},{"x":-48,"y":-5},{"x":-12,"y":-51},{"x":99,"y":-169},{"x":-53,"y":-47},{"x":33,"y":-21},{"x":-10,"y":-39},{"x":-31,"y":-4},{"x":12,"y":31},{"x":-24,"y":-14},{"x":-9,"y":26},{"x":17,"y":-74},{"x":-24,"y":-21},{"x":44,"y":18},{"x":17,"y":-21},{"x":-75,"y":-128},{"x":62,"y":-2},{"x":18,"y":-66},{"x":59,"y":-49},{"x":51,"y":6},{"x":64,"y":-37},{"x":16,"y":20},{"x":29,"y":-30},{"x":161,"y":-1},{"x":45,"y":-49},{"x":-10,"y":-86},{"x":59,"y":1},{"x":77,"y":-72},{"x":30,"y":21},{"x":15,"y":-43},{"x":109,"y":3},{"x":25,"y":-34},{"x":46,"y":62},{"x":-10,"y":72},{"x":84,"y":17},{"x":52,"y":-47},{"x":-38,"y":-54},{"x":44,"y":-51},{"x":143,"y":2},{"x":33,"y":-60},{"x":48,"y":29},{"x":41,"y":-31},{"x":51,"y":19},{"x":10,"y":-27},{"x":6,"y":38},{"x":27,"y":-20},{"x":76,"y":50},{"x":-238,"y":170},{"x":20,"y":86},{"x":-51,"y":61},{"x":-34,"y":184},{"x":-67,"y":130},{"x":-46,"y":42},{"x":-20,"y":-14},{"x":-30,"y":60},{"x":23,"y":193},{"x":127,"y":245},{"x":247,"y":278},{"x":239,"y":193},{"x":29,"y":16},{"x":18,"y":-28},{"x":7,"y":46},{"x":0,"y":-44},{"x":0,"y":46},{"x":101,"y":72},{"x":359,"y":198},{"x":511,"y":211},{"x":409,"y":126},{"x":61,"y":-1},{"x":13,"y":-63},{"x":158,"y":34},{"x":20,"y":-80},{"x":-29,"y":132},{"x":102,"y":22},{"x":6,"y":-33},{"x":28,"y":5},{"x":-10,"y":39},{"x":-25,"y":-4},{"x":19,"y":29},{"x":-53,"y":2},{"x":48,"y":20},{"x":57,"y":-19},{"x":-6,"y":178},{"x":28,"y":-111},{"x":-5,"y":-76},{"x":11,"y":-30},{"x":-88,"y":-113},{"x":69,"y":76},{"x":19,"y":35},{"x":-1,"y":26},{"x":62,"y":37},{"x":534,"y":106},{"x":572,"y":54},{"x":99,"y":-9},{"x":94,"y":-80},{"x":94,"y":-21},{"x":105,"y":-226},{"x":132,"y":-38},{"x":21,"y":-54},{"x":-32,"y":18},{"x":128,"y":-137},{"x":18,"y":-71},{"x":96,"y":-23},{"x":51,"y":-61}],"type":"coastline"},{"arc":[{"x":155601,"y":136006},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":155590,"y":136006},{"x":-15,"y":-1}],"type":"coastline"},{"arc":[{"x":155575,"y":136005},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":155570,"y":136006},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":155562,"y":136009},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":155555,"y":136007},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":155551,"y":136008},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":155544,"y":136010},{"x":-6,"y":-3}],"type":"area"},{"arc":[{"x":155538,"y":136007},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":155530,"y":136004},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":155520,"y":136000},{"x":-19,"y":-2}],"type":"coastline"},{"arc":[{"x":155501,"y":135998},{"x":-20,"y":-4}],"type":"area"},{"arc":[{"x":155481,"y":135994},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":155472,"y":135999},{"x":-3,"y":13}],"type":"area"},{"arc":[{"x":155469,"y":136012},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":155464,"y":136015},{"x":-18,"y":-7}],"type":"coastline"},{"arc":[{"x":155446,"y":136008},{"x":-5,"y":5}],"type":"area"},{"arc":[{"x":155441,"y":136013},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":155437,"y":136008},{"x":-12,"y":-14}],"type":"coastline"},{"arc":[{"x":155425,"y":135994},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":155421,"y":135993},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":155419,"y":135991},{"x":-31,"y":6}],"type":"coastline"},{"arc":[{"x":155388,"y":135997},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155385,"y":135997},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155382,"y":135997},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":155375,"y":136006},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":155370,"y":136009},{"x":-15,"y":-2}],"type":"coastline"},{"arc":[{"x":155355,"y":136007},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155351,"y":136009},{"x":-13,"y":7}],"type":"coastline"},{"arc":[{"x":155338,"y":136016},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":155331,"y":136017},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":155317,"y":136018},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":155306,"y":136019},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155303,"y":136020},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":155302,"y":136020},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":155295,"y":136015},{"x":-6,"y":0}],"type":"area"},{"arc":[{"x":155289,"y":136015},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":155280,"y":136015},{"x":-18,"y":-21}],"type":"coastline"},{"arc":[{"x":155262,"y":135994},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":155260,"y":135992},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":155258,"y":135990},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":155248,"y":135991},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":155246,"y":135990},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":155238,"y":135991},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":155236,"y":135994},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":155223,"y":135995},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":155221,"y":135994},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":155217,"y":135991},{"x":-5,"y":-1}],"type":"area"},{"arc":[{"x":155212,"y":135990},{"x":-14,"y":-1}],"type":"coastline"},{"arc":[{"x":155198,"y":135989},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":155187,"y":135991},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155183,"y":135993},{"x":-6,"y":2}],"type":"area"},{"arc":[{"x":155177,"y":135995},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":155170,"y":135998},{"x":-6,"y":2}],"type":"area"},{"arc":[{"x":155164,"y":136000},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":155158,"y":136002},{"x":-21,"y":-2}],"type":"coastline"},{"arc":[{"x":155137,"y":136000},{"x":-6,"y":1}],"type":"area"},{"arc":[{"x":155131,"y":136001},{"x":-10,"y":-6}],"type":"coastline"},{"arc":[{"x":155121,"y":135995},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":155110,"y":135993},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155106,"y":135995},{"x":-9,"y":3}],"type":"area"},{"arc":[{"x":155097,"y":135998},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":155090,"y":136001},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":155088,"y":136002},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":155084,"y":136008},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155081,"y":136009},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":155077,"y":136013},{"x":-3,"y":8}],"type":"area"},{"arc":[{"x":155074,"y":136021},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155070,"y":136023},{"x":-21,"y":1}],"type":"coastline"},{"arc":[{"x":155049,"y":136024},{"x":-11,"y":1}],"type":"area"},{"arc":[{"x":155038,"y":136025},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155034,"y":136028},{"x":-13,"y":4}],"type":"coastline"},{"arc":[{"x":155021,"y":136032},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":155019,"y":136034},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":155015,"y":136041},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":155012,"y":136043},{"x":-14,"y":13}],"type":"coastline"},{"arc":[{"x":154998,"y":136056},{"x":-6,"y":10}],"type":"coastline"},{"arc":[{"x":154992,"y":136066},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":154990,"y":136072},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":154990,"y":136078},{"x":2,"y":3}],"type":"area"},{"arc":[{"x":154992,"y":136081},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":154996,"y":136087},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":154996,"y":136097},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":154994,"y":136098},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":154990,"y":136099},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":154985,"y":136102},{"x":-5,"y":11}],"type":"area"},{"arc":[{"x":154980,"y":136113},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":154976,"y":136122},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":154976,"y":136123},{"x":-15,"y":0}],"type":"coastline"},{"arc":[{"x":154961,"y":136123},{"x":-16,"y":20}],"type":"coastline"},{"arc":[{"x":154945,"y":136143},{"x":-18,"y":14}],"type":"coastline"},{"arc":[{"x":154927,"y":136157},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":154920,"y":136162},{"x":-13,"y":7}],"type":"coastline"},{"arc":[{"x":154907,"y":136169},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":154899,"y":136168},{"x":-5,"y":-1}],"type":"area"},{"arc":[{"x":154894,"y":136167},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":154885,"y":136166},{"x":-13,"y":-7}],"type":"coastline"},{"arc":[{"x":154872,"y":136159},{"x":-22,"y":-12}],"type":"coastline"},{"arc":[{"x":154850,"y":136147},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":154841,"y":136151},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":154834,"y":136147},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":154823,"y":136143},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":154817,"y":136139},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":154808,"y":136144},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":154799,"y":136146},{"x":-220,"y":-138},{"x":-162,"y":-17},{"x":-28,"y":-62},{"x":-93,"y":-20},{"x":-118,"y":36},{"x":-163,"y":-34},{"x":-74,"y":-94},{"x":-114,"y":-27},{"x":10,"y":-156},{"x":-161,"y":-110},{"x":-115,"y":73},{"x":-90,"y":-32},{"x":-34,"y":-45},{"x":-9,"y":104},{"x":-49,"y":102},{"x":-32,"y":2},{"x":-61,"y":-111},{"x":11,"y":-90},{"x":-94,"y":-23},{"x":-38,"y":-127},{"x":-178,"y":-11},{"x":-52,"y":38},{"x":-197,"y":-79},{"x":-67,"y":17},{"x":-42,"y":-25},{"x":-82,"y":5},{"x":-57,"y":-38},{"x":-138,"y":80},{"x":-80,"y":-49},{"x":-35,"y":69},{"x":-57,"y":-31},{"x":-82,"y":17},{"x":-16,"y":-31},{"x":-48,"y":4},{"x":-28,"y":-78},{"x":-53,"y":-8},{"x":-30,"y":24},{"x":-60,"y":-49},{"x":-54,"y":43},{"x":-76,"y":-14},{"x":-31,"y":42},{"x":-65,"y":-30},{"x":-46,"y":19},{"x":-49,"y":-61},{"x":-193,"y":-14},{"x":-74,"y":126},{"x":-128,"y":18},{"x":-104,"y":-38},{"x":-90,"y":105},{"x":-75,"y":44},{"x":-44,"y":-5},{"x":-88,"y":72},{"x":-4,"y":132},{"x":-74,"y":26},{"x":-72,"y":-23},{"x":-103,"y":58},{"x":-120,"y":-27},{"x":-85,"y":56},{"x":-130,"y":-44},{"x":-51,"y":53},{"x":-125,"y":11},{"x":-137,"y":-78}],"type":"area"},{"arc":[{"x":149845,"y":135703},{"x":-21,"y":-65},{"x":40,"y":-50},{"x":-75,"y":-88},{"x":22,"y":-194},{"x":243,"y":-180},{"x":58,"y":0},{"x":37,"y":-112},{"x":-23,"y":-73},{"x":-66,"y":1},{"x":-77,"y":-51},{"x":-33,"y":-189},{"x":53,"y":-103},{"x":-48,"y":-59},{"x":3,"y":-114},{"x":67,"y":-97},{"x":-100,"y":-104},{"x":-2,"y":-67},{"x":-57,"y":-29},{"x":85,"y":-43},{"x":-4,"y":-64},{"x":40,"y":-33},{"x":68,"y":-3},{"x":42,"y":-83},{"x":-86,"y":0},{"x":-32,"y":-50},{"x":43,"y":-27},{"x":-25,"y":-59},{"x":-192,"y":48},{"x":-205,"y":8},{"x":-25,"y":-171}],"type":"area"},{"arc":[{"x":149575,"y":133652},{"x":248,"y":-115},{"x":199,"y":-135},{"x":345,"y":-373},{"x":21,"y":-40},{"x":-25,"y":-26},{"x":23,"y":24},{"x":-10,"y":-47},{"x":29,"y":7},{"x":50,"y":-94},{"x":48,"y":-192},{"x":-60,"y":-381},{"x":-52,"y":41}],"type":"coastline"},{"arc":[{"x":149440,"y":133644},{"x":-17,"y":-71},{"x":-66,"y":-27},{"x":66,"y":26},{"x":17,"y":72}],"type":"coastline"},{"arc":[{"x":149845,"y":135703},{"x":-26,"y":77},{"x":-43,"y":26},{"x":-85,"y":-8},{"x":-34,"y":39},{"x":-55,"y":6},{"x":-97,"y":-27},{"x":-6,"y":75},{"x":77,"y":155},{"x":65,"y":69},{"x":72,"y":-11},{"x":161,"y":200},{"x":-11,"y":214},{"x":-55,"y":27},{"x":-43,"y":202},{"x":-46,"y":16},{"x":39,"y":211},{"x":-82,"y":13},{"x":-93,"y":80},{"x":-91,"y":31},{"x":7,"y":42}],"type":"area"},{"arc":[{"x":149499,"y":137140},{"x":-150,"y":76},{"x":-111,"y":127},{"x":-124,"y":25},{"x":-57,"y":45},{"x":-225,"y":-94},{"x":-205,"y":-454},{"x":96,"y":-239},{"x":-75,"y":-59},{"x":-8,"y":-91},{"x":-45,"y":-3},{"x":-47,"y":-94},{"x":-47,"y":-274},{"x":-73,"y":-45},{"x":-80,"y":0},{"x":49,"y":-61},{"x":3,"y":-70},{"x":-103,"y":-138},{"x":-211,"y":10},{"x":11,"y":-107},{"x":63,"y":-24},{"x":-36,"y":-211},{"x":-127,"y":48},{"x":21,"y":102},{"x":-145,"y":-2},{"x":-10,"y":-64},{"x":-80,"y":7},{"x":-56,"y":-73},{"x":-112,"y":-10},{"x":-91,"y":-91},{"x":-99,"y":12},{"x":-46,"y":-99},{"x":-99,"y":-31},{"x":-27,"y":-52},{"x":-77,"y":19},{"x":-36,"y":-62},{"x":-43,"y":7},{"x":-20,"y":133},{"x":-260,"y":49},{"x":-18,"y":90},{"x":-78,"y":58},{"x":-67,"y":-11},{"x":-69,"y":52},{"x":-53,"y":-80},{"x":-142,"y":121},{"x":-96,"y":22},{"x":-3,"y":-33},{"x":-29,"y":17},{"x":-42,"y":-22},{"x":-22,"y":-76}],"type":"area"},{"arc":[{"x":146198,"y":135490},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":146194,"y":135493},{"x":-8,"y":1}],"type":"area"},{"arc":[{"x":146186,"y":135494},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":146181,"y":135493},{"x":-12,"y":8}],"type":"area"},{"arc":[{"x":146169,"y":135501},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":146165,"y":135502},{"x":-33,"y":-9}],"type":"area"},{"arc":[{"x":146132,"y":135493},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":146131,"y":135492},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":146128,"y":135491},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":146128,"y":135490},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":146127,"y":135488},{"x":-5,"y":-4}],"type":"area"},{"arc":[{"x":146122,"y":135484},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":146119,"y":135486},{"x":-17,"y":17}],"type":"area"},{"arc":[{"x":146102,"y":135503},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":146100,"y":135503},{"x":-35,"y":-10}],"type":"area"},{"arc":[{"x":146065,"y":135493},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":146063,"y":135493},{"x":-45,"y":29}],"type":"area"},{"arc":[{"x":146018,"y":135522},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":146017,"y":135524},{"x":-2,"y":8}],"type":"area"},{"arc":[{"x":146015,"y":135532},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":146013,"y":135533},{"x":-31,"y":16}],"type":"area"},{"arc":[{"x":145982,"y":135549},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145981,"y":135549},{"x":-12,"y":10}],"type":"area"},{"arc":[{"x":145969,"y":135559},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":145967,"y":135560},{"x":1,"y":10}],"type":"area"},{"arc":[{"x":145968,"y":135570},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145966,"y":135572},{"x":-3,"y":12}],"type":"area"},{"arc":[{"x":145963,"y":135584},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":145962,"y":135585},{"x":-6,"y":16}],"type":"area"},{"arc":[{"x":145956,"y":135601},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145956,"y":135603},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":145957,"y":135605},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145958,"y":135607},{"x":3,"y":10}],"type":"area"},{"arc":[{"x":145961,"y":135617},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":145959,"y":135618},{"x":-19,"y":23}],"type":"area"},{"arc":[{"x":145940,"y":135641},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":145938,"y":135645},{"x":-18,"y":89}],"type":"area"},{"arc":[{"x":145920,"y":135734},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":145918,"y":135738},{"x":-1,"y":5}],"type":"area"},{"arc":[{"x":145917,"y":135743},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":145916,"y":135746},{"x":-4,"y":3}],"type":"area"},{"arc":[{"x":145912,"y":135749},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":145910,"y":135750},{"x":-17,"y":32}],"type":"area"},{"arc":[{"x":145893,"y":135782},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":145890,"y":135782},{"x":-11,"y":-6}],"type":"area"},{"arc":[{"x":145879,"y":135776},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145878,"y":135774},{"x":-48,"y":-16}],"type":"area"},{"arc":[{"x":145830,"y":135758},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":145829,"y":135760},{"x":-42,"y":-8}],"type":"area"},{"arc":[{"x":145787,"y":135752},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":145784,"y":135754},{"x":-15,"y":-10}],"type":"area"},{"arc":[{"x":145769,"y":135744},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":145767,"y":135742},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":145767,"y":135739},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":145769,"y":135736},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":145770,"y":135732},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":145769,"y":135731},{"x":-27,"y":-48}],"type":"area"},{"arc":[{"x":145742,"y":135683},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":145743,"y":135679},{"x":-13,"y":-19}],"type":"area"},{"arc":[{"x":145730,"y":135660},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":145732,"y":135656},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":145732,"y":135654},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":145732,"y":135650},{"x":-27,"y":-35},{"x":-17,"y":46}],"type":"area"},{"arc":[{"x":145688,"y":135661},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":145688,"y":135664},{"x":-12,"y":13}],"type":"area"},{"arc":[{"x":145676,"y":135677},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":145676,"y":135681},{"x":-3,"y":20}],"type":"area"},{"arc":[{"x":145673,"y":135701},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":145670,"y":135705},{"x":-12,"y":26}],"type":"area"},{"arc":[{"x":145658,"y":135731},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":145657,"y":135733},{"x":-10,"y":26}],"type":"area"},{"arc":[{"x":145647,"y":135759},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145647,"y":135761},{"x":10,"y":12}],"type":"area"},{"arc":[{"x":145657,"y":135773},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145656,"y":135773},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":145655,"y":135776},{"x":1,"y":5}],"type":"area"},{"arc":[{"x":145656,"y":135781},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145656,"y":135783},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":145652,"y":135784},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":145649,"y":135786},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":145648,"y":135787},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145646,"y":135789},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":145646,"y":135790},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":145648,"y":135792},{"x":6,"y":9}],"type":"area"},{"arc":[{"x":145654,"y":135801},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":145655,"y":135805},{"x":-4,"y":4}],"type":"area"},{"arc":[{"x":145651,"y":135809},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":145649,"y":135810},{"x":3,"y":16}],"type":"area"},{"arc":[{"x":145652,"y":135826},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":145648,"y":135827},{"x":-4,"y":6}],"type":"area"},{"arc":[{"x":145644,"y":135833},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145645,"y":135835},{"x":0,"y":20}],"type":"area"},{"arc":[{"x":145645,"y":135855},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":145643,"y":135856},{"x":-15,"y":9}],"type":"area"},{"arc":[{"x":145628,"y":135865},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":145628,"y":135868},{"x":-14,"y":-1}],"type":"area"},{"arc":[{"x":145614,"y":135867},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":145612,"y":135866},{"x":-42,"y":23},{"x":-24,"y":-39}],"type":"area"},{"arc":[{"x":145546,"y":135850},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":145544,"y":135849},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":145541,"y":135847},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":145540,"y":135844},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":145540,"y":135840},{"x":-3,"y":-11}],"type":"area"},{"arc":[{"x":145537,"y":135829},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":145535,"y":135826},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145534,"y":135824},{"x":4,"y":-4}],"type":"area"},{"arc":[{"x":145538,"y":135820},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145538,"y":135818},{"x":4,"y":-11}],"type":"area"},{"arc":[{"x":145542,"y":135807},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":145543,"y":135804},{"x":-5,"y":-27}],"type":"area"},{"arc":[{"x":145538,"y":135777},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":145539,"y":135775},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":145541,"y":135771},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":145540,"y":135768},{"x":-13,"y":-31}],"type":"area"},{"arc":[{"x":145527,"y":135737},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145524,"y":135738},{"x":-9,"y":0}],"type":"area"},{"arc":[{"x":145515,"y":135738},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":145512,"y":135737},{"x":-11,"y":4}],"type":"area"},{"arc":[{"x":145501,"y":135741},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145500,"y":135741},{"x":-7,"y":-4}],"type":"area"},{"arc":[{"x":145493,"y":135737},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":145491,"y":135736},{"x":7,"y":-6}],"type":"area"},{"arc":[{"x":145498,"y":135730},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":145500,"y":135730},{"x":27,"y":-7}],"type":"area"},{"arc":[{"x":145527,"y":135723},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":145530,"y":135721},{"x":6,"y":-14}],"type":"area"},{"arc":[{"x":145536,"y":135707},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":145534,"y":135705},{"x":-6,"y":-8}],"type":"area"},{"arc":[{"x":145528,"y":135697},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":145529,"y":135694},{"x":-8,"y":-10}],"type":"area"},{"arc":[{"x":145521,"y":135684},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":145522,"y":135687},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":145522,"y":135689},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":145522,"y":135693},{"x":-18,"y":7}],"type":"area"},{"arc":[{"x":145504,"y":135700},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145503,"y":135700},{"x":0,"y":-9}],"type":"area"},{"arc":[{"x":145503,"y":135691},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":145501,"y":135689},{"x":-8,"y":4}],"type":"area"},{"arc":[{"x":145493,"y":135693},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145491,"y":135695},{"x":-3,"y":3}],"type":"area"},{"arc":[{"x":145488,"y":135698},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":145487,"y":135699},{"x":-3,"y":-9}],"type":"area"},{"arc":[{"x":145484,"y":135690},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":145482,"y":135689},{"x":29,"y":-12}],"type":"area"},{"arc":[{"x":145511,"y":135677},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":145511,"y":135676},{"x":4,"y":-10}],"type":"area"},{"arc":[{"x":145515,"y":135666},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":145515,"y":135663},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":145514,"y":135660},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145513,"y":135658},{"x":-4,"y":-6}],"type":"area"},{"arc":[{"x":145509,"y":135652},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":145509,"y":135651},{"x":-15,"y":-8}],"type":"area"},{"arc":[{"x":145494,"y":135643},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145493,"y":135643},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":145491,"y":135642},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":145489,"y":135639},{"x":-6,"y":-10}],"type":"area"},{"arc":[{"x":145483,"y":135629},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":145481,"y":135629},{"x":-2,"y":-8}],"type":"area"},{"arc":[{"x":145479,"y":135621},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":145480,"y":135620},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":145483,"y":135619},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":145486,"y":135617},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":145490,"y":135615},{"x":8,"y":-16}],"type":"area"},{"arc":[{"x":145498,"y":135599},{"x":-13,"y":-18}],"type":"area"},{"arc":[{"x":145485,"y":135581},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":145485,"y":135580},{"x":13,"y":-32}],"type":"area"},{"arc":[{"x":145498,"y":135548},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":145498,"y":135547},{"x":9,"y":-17}],"type":"area"},{"arc":[{"x":145507,"y":135530},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145507,"y":135528},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":145508,"y":135526},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":145510,"y":135523},{"x":1,"y":-41}],"type":"area"},{"arc":[{"x":145511,"y":135482},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":145511,"y":135479},{"x":14,"y":-15}],"type":"area"},{"arc":[{"x":145525,"y":135464},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145527,"y":135462},{"x":8,"y":-12}],"type":"area"},{"arc":[{"x":145535,"y":135450},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145538,"y":135449},{"x":-1,"y":-9}],"type":"area"},{"arc":[{"x":145537,"y":135440},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":145536,"y":135442},{"x":-5,"y":1}],"type":"area"},{"arc":[{"x":145531,"y":135443},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145530,"y":135441},{"x":-12,"y":-2}],"type":"area"},{"arc":[{"x":145518,"y":135439},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":145515,"y":135439},{"x":-19,"y":8}],"type":"area"},{"arc":[{"x":145496,"y":135447},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":145493,"y":135447},{"x":-10,"y":6}],"type":"area"},{"arc":[{"x":145483,"y":135453},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145481,"y":135455},{"x":-25,"y":22}],"type":"area"},{"arc":[{"x":145456,"y":135477},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":145454,"y":135477},{"x":-14,"y":-4}],"type":"area"},{"arc":[{"x":145440,"y":135473},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":145436,"y":135471},{"x":-14,"y":5}],"type":"area"},{"arc":[{"x":145422,"y":135476},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":145419,"y":135478},{"x":-38,"y":40}],"type":"area"},{"arc":[{"x":145381,"y":135518},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":145379,"y":135515},{"x":-24,"y":-21}],"type":"area"},{"arc":[{"x":145355,"y":135494},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":145352,"y":135492},{"x":-19,"y":0}],"type":"area"},{"arc":[{"x":145333,"y":135492},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":145328,"y":135490},{"x":-14,"y":0}],"type":"area"},{"arc":[{"x":145314,"y":135490},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":145312,"y":135490},{"x":-17,"y":62}],"type":"area"},{"arc":[{"x":145295,"y":135552},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":145295,"y":135553},{"x":15,"y":15}],"type":"area"},{"arc":[{"x":145310,"y":135568},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":145314,"y":135569},{"x":20,"y":13}],"type":"area"},{"arc":[{"x":145334,"y":135582},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145334,"y":135584},{"x":-25,"y":22}],"type":"area"},{"arc":[{"x":145309,"y":135606},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145308,"y":135606},{"x":0,"y":6}],"type":"area"},{"arc":[{"x":145308,"y":135612},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145309,"y":135614},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":145308,"y":135618},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145305,"y":135619},{"x":3,"y":14}],"type":"area"},{"arc":[{"x":145308,"y":135633},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145309,"y":135635},{"x":-5,"y":8}],"type":"area"},{"arc":[{"x":145304,"y":135643},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":145304,"y":135647},{"x":1,"y":12}],"type":"area"},{"arc":[{"x":145305,"y":135659},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":145305,"y":135664},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":145304,"y":135666},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":145304,"y":135667},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":145300,"y":135667},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":145297,"y":135666},{"x":-4,"y":2}],"type":"area"},{"arc":[{"x":145293,"y":135668},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":145292,"y":135669},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":145291,"y":135673},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145291,"y":135675},{"x":9,"y":30}],"type":"area"},{"arc":[{"x":145300,"y":135705},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145301,"y":135707},{"x":-10,"y":18}],"type":"area"},{"arc":[{"x":145291,"y":135725},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145288,"y":135726},{"x":-16,"y":2}],"type":"area"},{"arc":[{"x":145272,"y":135728},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145269,"y":135729},{"x":-7,"y":2}],"type":"area"},{"arc":[{"x":145262,"y":135731},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145261,"y":135731},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":145257,"y":135731},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":145254,"y":135732},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":145250,"y":135733},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":145248,"y":135733},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145246,"y":135735},{"x":-7,"y":6}],"type":"area"},{"arc":[{"x":145239,"y":135741},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":145234,"y":135743},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":145233,"y":135743},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145230,"y":135744},{"x":3,"y":13}],"type":"area"},{"arc":[{"x":145233,"y":135757},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":145235,"y":135758},{"x":7,"y":6}],"type":"area"},{"arc":[{"x":145242,"y":135764},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":145243,"y":135767},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":145241,"y":135773},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":145239,"y":135776},{"x":15,"y":57}],"type":"area"},{"arc":[{"x":145254,"y":135833},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":145255,"y":135840},{"x":-7,"y":48}],"type":"area"},{"arc":[{"x":145248,"y":135888},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145245,"y":135889},{"x":-15,"y":-5}],"type":"area"},{"arc":[{"x":145230,"y":135884},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":145228,"y":135882},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145228,"y":135880},{"x":-44,"y":64}],"type":"area"},{"arc":[{"x":145184,"y":135944},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":145182,"y":135947},{"x":-8,"y":5}],"type":"area"},{"arc":[{"x":145174,"y":135952},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":145172,"y":135953},{"x":-8,"y":7}],"type":"area"},{"arc":[{"x":145164,"y":135960},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145162,"y":135962},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":145161,"y":135963},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":145159,"y":135963},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":145155,"y":135962},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":145151,"y":135962},{"x":-122,"y":-12}],"type":"area"},{"arc":[{"x":145029,"y":135950},{"x":-5,"y":13}],"type":"coastline"},{"arc":[{"x":145024,"y":135963},{"x":0,"y":19}],"type":"area"},{"arc":[{"x":145024,"y":135982},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":145023,"y":135986},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":145024,"y":135993},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":145025,"y":135996},{"x":4,"y":4}],"type":"area"},{"arc":[{"x":145029,"y":136000},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":145034,"y":136007},{"x":13,"y":11}],"type":"area"},{"arc":[{"x":145047,"y":136018},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":145049,"y":136027},{"x":-3,"y":11}],"type":"area"},{"arc":[{"x":145046,"y":136038},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":145047,"y":136047},{"x":-24,"y":7}],"type":"area"},{"arc":[{"x":145023,"y":136054},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":145014,"y":136051},{"x":-39,"y":1}],"type":"area"},{"arc":[{"x":144975,"y":136052},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":144970,"y":136051},{"x":-8,"y":7}],"type":"area"},{"arc":[{"x":144962,"y":136058},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":144956,"y":136061},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":144952,"y":136059},{"x":-57,"y":2}],"type":"area"},{"arc":[{"x":144895,"y":136061},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":144888,"y":136062},{"x":-28,"y":43}],"type":"area"},{"arc":[{"x":144860,"y":136105},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":144855,"y":136110},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":144853,"y":136116},{"x":-17,"y":25}],"type":"area"},{"arc":[{"x":144836,"y":136141},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":144828,"y":136142},{"x":-71,"y":23},{"x":-12,"y":-102},{"x":-27,"y":-6}],"type":"area"},{"arc":[{"x":144718,"y":136057},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":144713,"y":136050},{"x":-5,"y":-6}],"type":"area"},{"arc":[{"x":144708,"y":136044},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":144707,"y":136042},{"x":-102,"y":0},{"x":-44,"y":-29}],"type":"area"},{"arc":[{"x":144561,"y":136013},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":144553,"y":136007},{"x":-31,"y":-34}],"type":"area"},{"arc":[{"x":144522,"y":135973},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":144512,"y":135974},{"x":-54,"y":-11}],"type":"area"},{"arc":[{"x":144458,"y":135963},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":144455,"y":135961},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":144449,"y":135962},{"x":-4,"y":2}],"type":"area"},{"arc":[{"x":144445,"y":135964},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":144440,"y":135964},{"x":-37,"y":52}],"type":"area"},{"arc":[{"x":144403,"y":136016},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":144399,"y":136024},{"x":-13,"y":33}],"type":"area"},{"arc":[{"x":144386,"y":136057},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":144382,"y":136061},{"x":-56,"y":29}],"type":"area"},{"arc":[{"x":144326,"y":136090},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":144324,"y":136093},{"x":-30,"y":19},{"x":-21,"y":-47}],"type":"area"},{"arc":[{"x":144273,"y":136065},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":144272,"y":136062},{"x":-2,"y":-24}],"type":"area"},{"arc":[{"x":144270,"y":136038},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":144269,"y":136033},{"x":35,"y":-27},{"x":-30,"y":-41}],"type":"area"},{"arc":[{"x":144274,"y":135965},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":144274,"y":135956},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":144274,"y":135946},{"x":12,"y":-80}],"type":"area"},{"arc":[{"x":144286,"y":135866},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":144285,"y":135861},{"x":-3,"y":-28}],"type":"area"},{"arc":[{"x":144282,"y":135833},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":144282,"y":135829},{"x":1,"y":-49}],"type":"area"},{"arc":[{"x":144283,"y":135780},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":144283,"y":135774},{"x":-14,"y":-12}],"type":"area"},{"arc":[{"x":144269,"y":135762},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":144267,"y":135758},{"x":-9,"y":-25}],"type":"area"},{"arc":[{"x":144258,"y":135733},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":144258,"y":135731},{"x":3,"y":-41}],"type":"area"},{"arc":[{"x":144261,"y":135690},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":144259,"y":135685},{"x":-14,"y":-82}],"type":"area"},{"arc":[{"x":144245,"y":135603},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":144243,"y":135601},{"x":-18,"y":-34}],"type":"area"},{"arc":[{"x":144225,"y":135567},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":144225,"y":135558},{"x":-9,"y":-32}],"type":"area"},{"arc":[{"x":144216,"y":135526},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":144218,"y":135518},{"x":-8,"y":-21}],"type":"area"},{"arc":[{"x":144210,"y":135497},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":144207,"y":135499},{"x":-12,"y":-63}],"type":"area"},{"arc":[{"x":144195,"y":135436},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":144192,"y":135435},{"x":-69,"y":-78}],"type":"area"},{"arc":[{"x":144123,"y":135357},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":144112,"y":135360},{"x":-39,"y":-69}],"type":"area"},{"arc":[{"x":144073,"y":135291},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":144073,"y":135286},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":144072,"y":135282},{"x":3,"y":-9}],"type":"area"},{"arc":[{"x":144075,"y":135273},{"x":17,"y":-35}],"type":"area"},{"arc":[{"x":144092,"y":135238},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":144090,"y":135236},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":144088,"y":135232},{"x":-8,"y":-20}],"type":"area"},{"arc":[{"x":144080,"y":135212},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":144080,"y":135210},{"x":9,"y":-16}],"type":"area"},{"arc":[{"x":144089,"y":135194},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":144093,"y":135192},{"x":16,"y":-8}],"type":"area"},{"arc":[{"x":144109,"y":135184},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":144113,"y":135181},{"x":-4,"y":-32}],"type":"area"},{"arc":[{"x":144109,"y":135149},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":144106,"y":135145},{"x":-2,"y":-4}],"type":"area"},{"arc":[{"x":144104,"y":135141},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":144101,"y":135137},{"x":-4,"y":-5}],"type":"area"},{"arc":[{"x":144097,"y":135132},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":144094,"y":135128},{"x":-8,"y":0}],"type":"area"},{"arc":[{"x":144086,"y":135128},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":144082,"y":135127},{"x":-22,"y":3}],"type":"area"},{"arc":[{"x":144060,"y":135130},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":144057,"y":135131},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":144054,"y":135133},{"x":-6,"y":-2}],"type":"area"},{"arc":[{"x":144048,"y":135131},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":144045,"y":135129},{"x":-10,"y":-19}],"type":"area"},{"arc":[{"x":144035,"y":135110},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":144033,"y":135114},{"x":-37,"y":32}],"type":"area"},{"arc":[{"x":143996,"y":135146},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":143996,"y":135148},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":143992,"y":135152},{"x":-27,"y":9}],"type":"area"},{"arc":[{"x":143965,"y":135161},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":143962,"y":135161},{"x":-9,"y":7}],"type":"area"},{"arc":[{"x":143953,"y":135168},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":143951,"y":135171},{"x":-11,"y":11}],"type":"area"},{"arc":[{"x":143940,"y":135182},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":143936,"y":135179},{"x":-32,"y":-1}],"type":"area"},{"arc":[{"x":143904,"y":135178},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":143900,"y":135179},{"x":-74,"y":32}],"type":"area"},{"arc":[{"x":143826,"y":135211},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":143824,"y":135210},{"x":-15,"y":23}],"type":"area"},{"arc":[{"x":143809,"y":135233},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":143806,"y":135232},{"x":-8,"y":2}],"type":"area"},{"arc":[{"x":143798,"y":135234},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":143796,"y":135235},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":143793,"y":135236},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":143790,"y":135238},{"x":-11,"y":14}],"type":"area"},{"arc":[{"x":143779,"y":135252},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":143777,"y":135255},{"x":6,"y":16}],"type":"area"},{"arc":[{"x":143783,"y":135271},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":143783,"y":135275},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":143783,"y":135276},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":143786,"y":135278},{"x":2,"y":7}],"type":"area"},{"arc":[{"x":143788,"y":135285},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":143789,"y":135288},{"x":15,"y":10}],"type":"area"},{"arc":[{"x":143804,"y":135298},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":143807,"y":135300},{"x":-23,"y":48}],"type":"area"},{"arc":[{"x":143784,"y":135348},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":143781,"y":135353},{"x":-23,"y":27}],"type":"area"},{"arc":[{"x":143758,"y":135380},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":143755,"y":135384},{"x":-22,"y":11}],"type":"area"},{"arc":[{"x":143733,"y":135395},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":143730,"y":135400},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":143729,"y":135401},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":143725,"y":135401},{"x":-9,"y":-8}],"type":"area"},{"arc":[{"x":143716,"y":135393},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":143713,"y":135392},{"x":-14,"y":4}],"type":"area"},{"arc":[{"x":143699,"y":135396},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":143698,"y":135397},{"x":-34,"y":3}],"type":"area"},{"arc":[{"x":143664,"y":135400},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":143660,"y":135405},{"x":-76,"y":66}],"type":"area"},{"arc":[{"x":143584,"y":135471},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":143584,"y":135479},{"x":-16,"y":45}],"type":"area"},{"arc":[{"x":143568,"y":135524},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":143565,"y":135526},{"x":-28,"y":14}],"type":"area"},{"arc":[{"x":143537,"y":135540},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":143533,"y":135541},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":143527,"y":135547},{"x":-85,"y":30}],"type":"area"},{"arc":[{"x":143442,"y":135577},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":143441,"y":135578},{"x":-82,"y":22}],"type":"area"},{"arc":[{"x":143359,"y":135600},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":143358,"y":135601},{"x":-34,"y":51}],"type":"area"},{"arc":[{"x":143324,"y":135652},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":143323,"y":135655},{"x":-18,"y":22}],"type":"area"},{"arc":[{"x":143305,"y":135677},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":143301,"y":135678},{"x":-32,"y":24}],"type":"area"},{"arc":[{"x":143269,"y":135702},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":143259,"y":135704},{"x":-25,"y":22}],"type":"area"},{"arc":[{"x":143234,"y":135726},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":143231,"y":135729},{"x":-7,"y":4}],"type":"area"},{"arc":[{"x":143224,"y":135733},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":143220,"y":135737},{"x":-13,"y":18}],"type":"area"},{"arc":[{"x":143207,"y":135755},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":143205,"y":135755},{"x":-16,"y":3}],"type":"area"},{"arc":[{"x":143189,"y":135758},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":143185,"y":135761},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":143183,"y":135762},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":143176,"y":135761},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":143173,"y":135759},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":143165,"y":135761},{"x":-9,"y":-1}],"type":"area"},{"arc":[{"x":143156,"y":135760},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":143154,"y":135759},{"x":-46,"y":5}],"type":"area"},{"arc":[{"x":143108,"y":135764},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":143102,"y":135762},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":143100,"y":135762},{"x":-1,"y":13}],"type":"area"},{"arc":[{"x":143099,"y":135775},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":143092,"y":135782},{"x":-67,"y":42}],"type":"area"},{"arc":[{"x":143025,"y":135824},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":143021,"y":135826},{"x":-22,"y":15}],"type":"area"},{"arc":[{"x":142999,"y":135841},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":142992,"y":135845},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":142989,"y":135847},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":142983,"y":135848},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":142982,"y":135852},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":142979,"y":135856},{"x":-7,"y":-1}],"type":"area"},{"arc":[{"x":142972,"y":135855},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":142968,"y":135852},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":142966,"y":135852},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":142964,"y":135852},{"x":-25,"y":9}],"type":"area"},{"arc":[{"x":142939,"y":135861},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":142937,"y":135862},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":142933,"y":135862},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":142930,"y":135861},{"x":-26,"y":2}],"type":"area"},{"arc":[{"x":142904,"y":135863},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":142901,"y":135867},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":142899,"y":135873},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":142899,"y":135879},{"x":-11,"y":20}],"type":"area"},{"arc":[{"x":142888,"y":135899},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":142888,"y":135901},{"x":6,"y":58}],"type":"area"},{"arc":[{"x":142894,"y":135959},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":142893,"y":135966},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":142892,"y":135970},{"x":-32,"y":28}],"type":"area"},{"arc":[{"x":142860,"y":135998},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":142851,"y":136004},{"x":-12,"y":7}],"type":"area"},{"arc":[{"x":142839,"y":136011},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":142833,"y":136013},{"x":-38,"y":30}],"type":"area"},{"arc":[{"x":142795,"y":136043},{"x":-9,"y":8}],"type":"coastline"},{"arc":[{"x":142786,"y":136051},{"x":-5,"y":3}],"type":"area"},{"arc":[{"x":142781,"y":136054},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":142774,"y":136056},{"x":-41,"y":2}],"type":"area"},{"arc":[{"x":142733,"y":136058},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":142730,"y":136058},{"x":-79,"y":13}],"type":"area"},{"arc":[{"x":142651,"y":136071},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":142647,"y":136070},{"x":-59,"y":-39}],"type":"area"},{"arc":[{"x":142588,"y":136031},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":142585,"y":136030},{"x":-13,"y":-15}],"type":"area"},{"arc":[{"x":142572,"y":136015},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":142568,"y":136014},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":142566,"y":136013},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":142561,"y":136009},{"x":-28,"y":-17}],"type":"area"},{"arc":[{"x":142533,"y":135992},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":142526,"y":135992},{"x":-33,"y":-8}],"type":"area"},{"arc":[{"x":142493,"y":135984},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":142493,"y":135986},{"x":-36,"y":25}],"type":"area"},{"arc":[{"x":142457,"y":136011},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":142455,"y":136013},{"x":-29,"y":32}],"type":"area"},{"arc":[{"x":142426,"y":136045},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":142422,"y":136050},{"x":-8,"y":4}],"type":"area"},{"arc":[{"x":142414,"y":136054},{"x":-12,"y":2}],"type":"coastline"},{"arc":[{"x":142402,"y":136056},{"x":-11,"y":3}],"type":"area"},{"arc":[{"x":142391,"y":136059},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":142387,"y":136061},{"x":-19,"y":-4}],"type":"area"},{"arc":[{"x":142368,"y":136057},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":142368,"y":136056},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":142366,"y":136050},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":142365,"y":136048},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":142361,"y":136045},{"x":-20,"y":-28}],"type":"area"},{"arc":[{"x":142341,"y":136017},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":142337,"y":136010},{"x":-34,"y":-38}],"type":"area"},{"arc":[{"x":142303,"y":135972},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":142301,"y":135968},{"x":-32,"y":-10}],"type":"area"},{"arc":[{"x":142269,"y":135958},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":142269,"y":135954},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":142268,"y":135948},{"x":-32,"y":-68}],"type":"admin"},{"arc":[{"x":142236,"y":135880},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":142234,"y":135877},{"x":-17,"y":-2}],"type":"coastline"},{"arc":[{"x":142217,"y":135875},{"x":-148,"y":-59},{"x":7,"y":-30}],"type":"admin"},{"arc":[{"x":142076,"y":135786},{"x":5,"y":-22}],"type":"coastline"},{"arc":[{"x":142081,"y":135764},{"x":33,"y":-56}],"type":"admin"},{"arc":[{"x":142114,"y":135708},{"x":-2,"y":-13}],"type":"coastline"},{"arc":[{"x":142112,"y":135695},{"x":6,"y":-12}],"type":"admin"},{"arc":[{"x":142118,"y":135683},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":142123,"y":135684},{"x":45,"y":-20}],"type":"admin"},{"arc":[{"x":142168,"y":135664},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":142176,"y":135659},{"x":42,"y":-77}],"type":"admin"},{"arc":[{"x":142218,"y":135582},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":142220,"y":135577},{"x":5,"y":-17}],"type":"admin"},{"arc":[{"x":142225,"y":135560},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":142229,"y":135552},{"x":29,"y":-147}],"type":"admin"},{"arc":[{"x":142258,"y":135405},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":142256,"y":135398},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":142254,"y":135396},{"x":-10,"y":-9}],"type":"coastline"},{"arc":[{"x":142244,"y":135387},{"x":-6,"y":-7}],"type":"admin"},{"arc":[{"x":142238,"y":135380},{"x":-9,"y":-8}],"type":"coastline"},{"arc":[{"x":142229,"y":135372},{"x":-28,"y":-27},{"x":31,"y":-39}],"type":"admin"},{"arc":[{"x":142232,"y":135306},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":142232,"y":135303},{"x":-12,"y":-44}],"type":"admin"},{"arc":[{"x":142220,"y":135259},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":142216,"y":135256},{"x":-20,"y":-92},{"x":53,"y":-115}],"type":"admin"},{"arc":[{"x":142249,"y":135049},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":142252,"y":135043},{"x":12,"y":-26}],"type":"admin"},{"arc":[{"x":142264,"y":135017},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":142266,"y":135014},{"x":3,"y":-31}],"type":"admin"},{"arc":[{"x":142269,"y":134983},{"x":0,"y":-12}],"type":"coastline"},{"arc":[{"x":142269,"y":134971},{"x":148,"y":11}],"type":"admin"},{"arc":[{"x":142417,"y":134982},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":142428,"y":134982},{"x":78,"y":-24}],"type":"admin"},{"arc":[{"x":142506,"y":134958},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":142510,"y":134951},{"x":7,"y":-38}],"type":"admin"},{"arc":[{"x":142517,"y":134913},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":142514,"y":134907},{"x":4,"y":-19}],"type":"admin"},{"arc":[{"x":142518,"y":134888},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":142520,"y":134884},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":142522,"y":134878},{"x":0,"y":-18}],"type":"admin"},{"arc":[{"x":142522,"y":134860},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":142520,"y":134860},{"x":-25,"y":-5},{"x":-11,"y":-100}],"type":"admin"},{"arc":[{"x":142484,"y":134755},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":142483,"y":134754},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":142480,"y":134750},{"x":-52,"y":-38}],"type":"admin"},{"arc":[{"x":142428,"y":134712},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":142429,"y":134702},{"x":25,"y":-46},{"x":-39,"y":-35}],"type":"admin"},{"arc":[{"x":142415,"y":134621},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":142414,"y":134620},{"x":-8,"y":-55}],"type":"admin"},{"arc":[{"x":142406,"y":134565},{"x":154,"y":-101}],"type":"admin"},{"arc":[{"x":142560,"y":134464},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":142561,"y":134463},{"x":-6,"y":-12}],"type":"admin"},{"arc":[{"x":142555,"y":134451},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":142554,"y":134444},{"x":-11,"y":-21}],"type":"admin"},{"arc":[{"x":142543,"y":134423},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":142545,"y":134421},{"x":42,"y":-122},{"x":56,"y":-9}],"type":"admin"},{"arc":[{"x":142643,"y":134290},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":142648,"y":134286},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":142651,"y":134284},{"x":30,"y":-1},{"x":30,"y":-65}],"type":"admin"},{"arc":[{"x":142711,"y":134218},{"x":9,"y":-24}],"type":"coastline"},{"arc":[{"x":142720,"y":134194},{"x":9,"y":-8}],"type":"admin"},{"arc":[{"x":142729,"y":134186},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":142730,"y":134184},{"x":5,"y":-19}],"type":"admin"},{"arc":[{"x":142735,"y":134165},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":142736,"y":134153},{"x":60,"y":-246}],"type":"admin"},{"arc":[{"x":142796,"y":133907},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":142799,"y":133903},{"x":22,"y":-29},{"x":53,"y":37},{"x":69,"y":-29}],"type":"admin"},{"arc":[{"x":142943,"y":133882},{"x":20,"y":-7}],"type":"coastline"},{"arc":[{"x":142963,"y":133875},{"x":12,"y":-4}],"type":"admin"},{"arc":[{"x":142975,"y":133871},{"x":40,"y":-5}],"type":"coastline"},{"arc":[{"x":143015,"y":133866},{"x":191,"y":8},{"x":-99,"y":-427},{"x":-68,"y":-79},{"x":-98,"y":-26},{"x":110,"y":-362},{"x":-41,"y":-19},{"x":57,"y":-309},{"x":-5,"y":-285}],"type":"admin"},{"arc":[{"x":143062,"y":132367},{"x":26,"y":65},{"x":39,"y":-6},{"x":76,"y":62},{"x":56,"y":-29},{"x":59,"y":15},{"x":102,"y":91},{"x":241,"y":78},{"x":151,"y":1},{"x":55,"y":-61},{"x":5,"y":-24},{"x":-30,"y":16},{"x":19,"y":-27},{"x":99,"y":-6},{"x":-16,"y":21},{"x":16,"y":-17},{"x":106,"y":82},{"x":238,"y":93},{"x":49,"y":-41},{"x":9,"y":24},{"x":36,"y":-23},{"x":-45,"y":-17},{"x":202,"y":63},{"x":129,"y":117},{"x":8,"y":151},{"x":16,"y":49},{"x":39,"y":12},{"x":-31,"y":2},{"x":5,"y":23},{"x":36,"y":-17},{"x":-16,"y":57},{"x":206,"y":131},{"x":619,"y":240},{"x":71,"y":4},{"x":-4,"y":-27},{"x":22,"y":26},{"x":4,"y":-37},{"x":-2,"y":46},{"x":26,"y":7},{"x":-14,"y":-48},{"x":22,"y":6},{"x":8,"y":44},{"x":90,"y":41},{"x":604,"y":130},{"x":285,"y":55},{"x":66,"y":-20},{"x":-39,"y":18},{"x":46,"y":4},{"x":5,"y":-22},{"x":13,"y":29},{"x":271,"y":39},{"x":23,"y":-18},{"x":250,"y":56},{"x":829,"y":53},{"x":705,"y":-37},{"x":105,"y":-33},{"x":17,"y":-43},{"x":140,"y":-2},{"x":40,"y":-75},{"x":-4,"y":84},{"x":136,"y":1},{"x":-7,"y":-52},{"x":-88,"y":25},{"x":-14,"y":-24},{"x":53,"y":-45},{"x":8,"y":28},{"x":33,"y":-9},{"x":-27,"y":-93},{"x":22,"y":69},{"x":91,"y":-25},{"x":17,"y":70},{"x":37,"y":-14},{"x":-12,"y":-47},{"x":40,"y":-11},{"x":-10,"y":42},{"x":23,"y":-35},{"x":17,"y":29},{"x":111,"y":-29}],"type":"coastline"},{"arc":[{"x":151045,"y":140013},{"x":157,"y":-268},{"x":-25,"y":-80},{"x":-36,"y":-17},{"x":11,"y":-68},{"x":-63,"y":-87},{"x":-9,"y":-171},{"x":62,"y":-21},{"x":41,"y":-57},{"x":68,"y":43},{"x":34,"y":-9},{"x":36,"y":-68},{"x":83,"y":-52},{"x":25,"y":-50},{"x":-24,"y":-137},{"x":-74,"y":-1},{"x":-51,"y":-117},{"x":-159,"y":-62},{"x":-21,"y":-135},{"x":-43,"y":-9},{"x":-20,"y":38},{"x":-31,"y":-81},{"x":-137,"y":-64},{"x":-74,"y":-101},{"x":8,"y":-81},{"x":-54,"y":-18},{"x":-6,"y":-32},{"x":-40,"y":-6},{"x":-45,"y":53},{"x":-34,"y":-20},{"x":-90,"y":22},{"x":-145,"y":-77},{"x":-78,"y":-113},{"x":41,"y":-60},{"x":-17,"y":-77},{"x":95,"y":-90},{"x":4,"y":-50},{"x":-133,"y":-223},{"x":21,"y":-62},{"x":-134,"y":-55},{"x":-76,"y":33},{"x":-47,"y":-66},{"x":-56,"y":-7},{"x":-33,"y":-104},{"x":-61,"y":-37},{"x":-198,"y":60},{"x":-77,"y":-24},{"x":-58,"y":-202},{"x":-83,"y":-63}],"type":"area"},{"arc":[{"x":154799,"y":136146},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":154808,"y":136144},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":154817,"y":136139},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":154823,"y":136143},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":154834,"y":136147},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":154841,"y":136151},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":154850,"y":136147},{"x":22,"y":12}],"type":"coastline"},{"arc":[{"x":154872,"y":136159},{"x":13,"y":7}],"type":"coastline"},{"arc":[{"x":154885,"y":136166},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":154899,"y":136168},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":154907,"y":136169},{"x":13,"y":-7}],"type":"coastline"},{"arc":[{"x":154920,"y":136162},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":154927,"y":136157},{"x":18,"y":-14}],"type":"coastline"},{"arc":[{"x":154945,"y":136143},{"x":16,"y":-20}],"type":"coastline"},{"arc":[{"x":154961,"y":136123},{"x":15,"y":0}],"type":"coastline"},{"arc":[{"x":154976,"y":136122},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":154985,"y":136102},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":154990,"y":136099},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":154996,"y":136097},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":154996,"y":136087},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":154990,"y":136078},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":154992,"y":136066},{"x":6,"y":-10}],"type":"coastline"},{"arc":[{"x":154998,"y":136056},{"x":14,"y":-13}],"type":"coastline"},{"arc":[{"x":155015,"y":136041},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":155021,"y":136032},{"x":13,"y":-4}],"type":"coastline"},{"arc":[{"x":155034,"y":136028},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155049,"y":136024},{"x":21,"y":-1}],"type":"coastline"},{"arc":[{"x":155070,"y":136023},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155077,"y":136013},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":155081,"y":136009},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":155084,"y":136008},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":155090,"y":136001},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":155106,"y":135995},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155110,"y":135993},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":155121,"y":135995},{"x":10,"y":6}],"type":"coastline"},{"arc":[{"x":155137,"y":136000},{"x":21,"y":2}],"type":"coastline"},{"arc":[{"x":155158,"y":136002},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":155170,"y":135998},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":155183,"y":135993},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155187,"y":135991},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":155198,"y":135989},{"x":14,"y":1}],"type":"coastline"},{"arc":[{"x":155217,"y":135991},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":155223,"y":135995},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":155238,"y":135991},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":155246,"y":135990},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":155248,"y":135991},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":155258,"y":135990},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":155262,"y":135994},{"x":18,"y":21}],"type":"coastline"},{"arc":[{"x":155280,"y":136015},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":155295,"y":136015},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":155303,"y":136020},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":155306,"y":136019},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":155317,"y":136018},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":155331,"y":136017},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":155338,"y":136016},{"x":13,"y":-7}],"type":"coastline"},{"arc":[{"x":155351,"y":136009},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155355,"y":136007},{"x":15,"y":2}],"type":"coastline"},{"arc":[{"x":155370,"y":136009},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":155375,"y":136006},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":155382,"y":135997},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155385,"y":135997},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155388,"y":135997},{"x":31,"y":-6}],"type":"coastline"},{"arc":[{"x":155419,"y":135991},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":155425,"y":135994},{"x":12,"y":14}],"type":"coastline"},{"arc":[{"x":155437,"y":136008},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":155446,"y":136008},{"x":18,"y":7}],"type":"coastline"},{"arc":[{"x":155464,"y":136015},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":155472,"y":135999},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":155501,"y":135998},{"x":19,"y":2}],"type":"coastline"},{"arc":[{"x":155520,"y":136000},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":155530,"y":136004},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":155544,"y":136010},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":155551,"y":136008},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":155555,"y":136007},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":155562,"y":136009},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":155570,"y":136006},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":155575,"y":136005},{"x":15,"y":1}],"type":"coastline"},{"arc":[{"x":155590,"y":136006},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":155601,"y":136006},{"x":14,"y":20}],"type":"coastline"},{"arc":[{"x":155616,"y":136034},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":155623,"y":136037},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155628,"y":136037},{"x":9,"y":12}],"type":"coastline"},{"arc":[{"x":155637,"y":136049},{"x":16,"y":-2}],"type":"coastline"},{"arc":[{"x":155653,"y":136047},{"x":16,"y":8}],"type":"coastline"},{"arc":[{"x":155671,"y":136056},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":155677,"y":136057},{"x":25,"y":-5}],"type":"coastline"},{"arc":[{"x":155702,"y":136052},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":155707,"y":136055},{"x":8,"y":9}],"type":"coastline"},{"arc":[{"x":155715,"y":136064},{"x":8,"y":9}],"type":"coastline"},{"arc":[{"x":155723,"y":136073},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155725,"y":136073},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":155739,"y":136068},{"x":16,"y":1}],"type":"coastline"},{"arc":[{"x":155759,"y":136070},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":155767,"y":136074},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":155781,"y":136071},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155785,"y":136069},{"x":21,"y":-1}],"type":"coastline"},{"arc":[{"x":155806,"y":136068},{"x":6,"y":24}],"type":"coastline"},{"arc":[{"x":155812,"y":136092},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":155816,"y":136101},{"x":34,"y":5}],"type":"coastline"},{"arc":[{"x":155860,"y":136107},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":155868,"y":136104},{"x":8,"y":13}],"type":"coastline"},{"arc":[{"x":155876,"y":136117},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":155878,"y":136127},{"x":20,"y":22}],"type":"coastline"},{"arc":[{"x":155898,"y":136149},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":155913,"y":136152},{"x":9,"y":7}],"type":"coastline"},{"arc":[{"x":155922,"y":136159},{"x":9,"y":12}],"type":"coastline"},{"arc":[{"x":155935,"y":136174},{"x":4,"y":12}],"type":"coastline"},{"arc":[{"x":155939,"y":136186},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":155940,"y":136187},{"x":32,"y":33}],"type":"coastline"},{"arc":[{"x":155972,"y":136220},{"x":-6,"y":26}],"type":"coastline"},{"arc":[{"x":155962,"y":136250},{"x":-9,"y":29}],"type":"coastline"},{"arc":[{"x":155953,"y":136282},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":155952,"y":136293},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":155952,"y":136312},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":155953,"y":136333},{"x":17,"y":14}],"type":"coastline"},{"arc":[{"x":155970,"y":136347},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":155971,"y":136350},{"x":6,"y":13}],"type":"coastline"},{"arc":[{"x":155977,"y":136363},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":155993,"y":136371},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155998,"y":136371},{"x":17,"y":7}],"type":"coastline"},{"arc":[{"x":156018,"y":136379},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":156023,"y":136382},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156025,"y":136383},{"x":14,"y":8}],"type":"coastline"},{"arc":[{"x":156039,"y":136391},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":156053,"y":136409},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":156054,"y":136418},{"x":-13,"y":12}],"type":"coastline"},{"arc":[{"x":156041,"y":136430},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":156038,"y":136435},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":156037,"y":136441},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":156033,"y":136447},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":156035,"y":136458},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":156030,"y":136466},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":156018,"y":136466},{"x":-12,"y":12}],"type":"coastline"},{"arc":[{"x":156006,"y":136478},{"x":-17,"y":6}],"type":"coastline"},{"arc":[{"x":155984,"y":136488},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":155974,"y":136486},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155971,"y":136486},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":155966,"y":136494},{"x":-2,"y":18}],"type":"coastline"},{"arc":[{"x":155963,"y":136514},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":155964,"y":136522},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":155957,"y":136526},{"x":-18,"y":3}],"type":"coastline"},{"arc":[{"x":155939,"y":136529},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":155939,"y":136535},{"x":4,"y":13}],"type":"coastline"},{"arc":[{"x":155943,"y":136549},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":155939,"y":136553},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":155936,"y":136560},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":155939,"y":136577},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":155939,"y":136578},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155947,"y":136591},{"x":6,"y":16}],"type":"coastline"},{"arc":[{"x":155953,"y":136607},{"x":19,"y":26}],"type":"coastline"},{"arc":[{"x":155972,"y":136633},{"x":8,"y":10}],"type":"coastline"},{"arc":[{"x":155980,"y":136643},{"x":9,"y":14}],"type":"coastline"},{"arc":[{"x":155997,"y":136676},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":156000,"y":136684},{"x":4,"y":23}],"type":"coastline"},{"arc":[{"x":156008,"y":136716},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":156011,"y":136724},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":156011,"y":136727},{"x":-9,"y":14}],"type":"coastline"},{"arc":[{"x":156002,"y":136751},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":155992,"y":136763},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":155991,"y":136772},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155992,"y":136776},{"x":-6,"y":16}],"type":"coastline"},{"arc":[{"x":155981,"y":136797},{"x":-11,"y":6}],"type":"coastline"},{"arc":[{"x":155970,"y":136803},{"x":-12,"y":-6}],"type":"coastline"},{"arc":[{"x":155958,"y":136797},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":155951,"y":136795},{"x":-13,"y":-8}],"type":"coastline"},{"arc":[{"x":155936,"y":136786},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":155927,"y":136787},{"x":-10,"y":-10}],"type":"coastline"},{"arc":[{"x":155912,"y":136773},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":155911,"y":136773},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155908,"y":136773},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":155903,"y":136774},{"x":-15,"y":-1}],"type":"coastline"},{"arc":[{"x":155882,"y":136774},{"x":-15,"y":4}],"type":"coastline"},{"arc":[{"x":155867,"y":136778},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":155855,"y":136796},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":155843,"y":136803},{"x":-32,"y":-1}],"type":"coastline"},{"arc":[{"x":155811,"y":136802},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":155802,"y":136800},{"x":-16,"y":8}],"type":"coastline"},{"arc":[{"x":155786,"y":136808},{"x":-13,"y":0}],"type":"coastline"},{"arc":[{"x":155773,"y":136808},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155768,"y":136808},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":155759,"y":136805},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":155743,"y":136813},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":155737,"y":136817},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":155726,"y":136827},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155713,"y":136825},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":155702,"y":136825},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":155702,"y":136839},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155705,"y":136851},{"x":11,"y":11}],"type":"coastline"},{"arc":[{"x":155716,"y":136862},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":155722,"y":136866},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155726,"y":136878},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":155729,"y":136885},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":155737,"y":136891},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":155740,"y":136901},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":155738,"y":136909},{"x":-4,"y":14}],"type":"coastline"},{"arc":[{"x":155734,"y":136923},{"x":10,"y":10}],"type":"coastline"},{"arc":[{"x":155744,"y":136933},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155746,"y":136940},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155747,"y":136944},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155749,"y":136952},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155750,"y":136957},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":155756,"y":136968},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155757,"y":136970},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":155760,"y":136984},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":155759,"y":136987},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":155758,"y":136997},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":155763,"y":137015},{"x":-9,"y":8}],"type":"coastline"},{"arc":[{"x":155748,"y":137026},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":155742,"y":137027},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155740,"y":137027},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":155740,"y":137032},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":155739,"y":137034},{"x":-2,"y":13}],"type":"coastline"},{"arc":[{"x":155737,"y":137047},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":155735,"y":137057},{"x":1,"y":21}],"type":"coastline"},{"arc":[{"x":155736,"y":137078},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":155734,"y":137083},{"x":0,"y":18}],"type":"coastline"},{"arc":[{"x":155734,"y":137101},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":155732,"y":137106},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":155731,"y":137119},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155727,"y":137124},{"x":-6,"y":14}],"type":"coastline"},{"arc":[{"x":155721,"y":137138},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":155716,"y":137146},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":155695,"y":137151},{"x":-12,"y":10}],"type":"coastline"},{"arc":[{"x":155683,"y":137161},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":155677,"y":137167},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":155666,"y":137171},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":155651,"y":137168},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":155638,"y":137166},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155635,"y":137164},{"x":-6,"y":-10}],"type":"coastline"},{"arc":[{"x":155629,"y":137154},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":155625,"y":137147},{"x":-5,"y":15}],"type":"coastline"},{"arc":[{"x":155620,"y":137162},{"x":-8,"y":21}],"type":"coastline"},{"arc":[{"x":155607,"y":137191},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":155600,"y":137200},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":155597,"y":137206},{"x":-6,"y":13}],"type":"coastline"},{"arc":[{"x":155591,"y":137219},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":155588,"y":137223},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":155587,"y":137227},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":155588,"y":137230},{"x":-5,"y":16}],"type":"coastline"},{"arc":[{"x":155583,"y":137246},{"x":-7,"y":14}],"type":"coastline"},{"arc":[{"x":155574,"y":137267},{"x":-2,"y":13}],"type":"coastline"},{"arc":[{"x":155571,"y":137281},{"x":-8,"y":10}],"type":"coastline"},{"arc":[{"x":155562,"y":137291},{"x":-8,"y":11}],"type":"coastline"},{"arc":[{"x":155554,"y":137302},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155551,"y":137305},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":155544,"y":137307},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":155537,"y":137308},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155533,"y":137311},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155531,"y":137311},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":155530,"y":137311},{"x":-10,"y":14}],"type":"coastline"},{"arc":[{"x":155513,"y":137335},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":155508,"y":137345},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155506,"y":137351},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":155499,"y":137358},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":155498,"y":137359},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":155499,"y":137374},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155502,"y":137379},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":155504,"y":137384},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155505,"y":137388},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155504,"y":137392},{"x":-6,"y":10}],"type":"coastline"},{"arc":[{"x":155498,"y":137402},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155499,"y":137404},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155501,"y":137407},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155502,"y":137409},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155502,"y":137412},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":155505,"y":137413},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":155510,"y":137422},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155511,"y":137424},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":155517,"y":137451},{"x":1,"y":21}],"type":"coastline"},{"arc":[{"x":155521,"y":137478},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":155519,"y":137483},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":155519,"y":137488},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":155520,"y":137489},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155520,"y":137492},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":155520,"y":137499},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155521,"y":137502},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":155525,"y":137510},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":155524,"y":137512},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":155519,"y":137522},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155516,"y":137527},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155510,"y":137528},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":155498,"y":137528},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155494,"y":137531},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155491,"y":137533},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":155486,"y":137532},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155482,"y":137534},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":155481,"y":137535},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":155474,"y":137532},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":155467,"y":137530},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155464,"y":137530},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":155459,"y":137528},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":155453,"y":137525},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":155448,"y":137523},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":155437,"y":137525},{"x":-16,"y":2}],"type":"coastline"},{"arc":[{"x":155420,"y":137527},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":155418,"y":137520},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":155413,"y":137496},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":155414,"y":137484},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":155410,"y":137484},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":155399,"y":137484},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":155393,"y":137482},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":155387,"y":137481},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155385,"y":137482},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":155377,"y":137485},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":155372,"y":137486},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":155362,"y":137489},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":155357,"y":137490},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":155351,"y":137490},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":155346,"y":137488},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":155343,"y":137487},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":155340,"y":137486},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":155331,"y":137479},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":155329,"y":137478},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":155324,"y":137482},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155325,"y":137488},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155325,"y":137490},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":155327,"y":137501},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155328,"y":137510},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":155334,"y":137529},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155335,"y":137533},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":155333,"y":137548},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":155328,"y":137555},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":155321,"y":137564},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":155315,"y":137575},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":155309,"y":137577},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155305,"y":137582},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155302,"y":137585},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":155294,"y":137586},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":155286,"y":137587},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":155271,"y":137592},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155269,"y":137595},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155267,"y":137599},{"x":-9,"y":7}],"type":"coastline"},{"arc":[{"x":155258,"y":137606},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":155254,"y":137620},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":155258,"y":137629},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155258,"y":137631},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":155252,"y":137640},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155253,"y":137645},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":155256,"y":137649},{"x":6,"y":11}],"type":"coastline"},{"arc":[{"x":155264,"y":137664},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":155265,"y":137667},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":155259,"y":137670},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":155253,"y":137674},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":155248,"y":137685},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155246,"y":137686},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":155238,"y":137688},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155235,"y":137691},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":155234,"y":137700},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":155227,"y":137720},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155225,"y":137724},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155222,"y":137727},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":155220,"y":137734},{"x":-14,"y":13}],"type":"coastline"},{"arc":[{"x":155202,"y":137749},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":155201,"y":137751},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155199,"y":137753},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155200,"y":137759},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":155205,"y":137768},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155205,"y":137771},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":155205,"y":137780},{"x":6,"y":16}],"type":"coastline"},{"arc":[{"x":155211,"y":137796},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":155209,"y":137802},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155213,"y":137812},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155213,"y":137815},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":155218,"y":137821},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":155225,"y":137827},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":155231,"y":137831},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":155234,"y":137836},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155236,"y":137832},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":155242,"y":137823},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155246,"y":137820},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":155251,"y":137818},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155256,"y":137814},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155259,"y":137810},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155262,"y":137807},{"x":12,"y":4}],"type":"coastline"},{"arc":[{"x":155274,"y":137811},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":155282,"y":137810},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":155290,"y":137809},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":155296,"y":137805},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":155303,"y":137801},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155305,"y":137799},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":155306,"y":137795},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":155306,"y":137793},{"x":10,"y":-7}],"type":"coastline"},{"arc":[{"x":155319,"y":137785},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155322,"y":137782},{"x":2,"y":-11}],"type":"coastline"},{"arc":[{"x":155327,"y":137767},{"x":10,"y":-11}],"type":"coastline"},{"arc":[{"x":155339,"y":137756},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":155342,"y":137755},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":155352,"y":137753},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":155359,"y":137748},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":155363,"y":137741},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":155369,"y":137734},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":155377,"y":137734},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155382,"y":137734},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":155387,"y":137733},{"x":14,"y":-8}],"type":"coastline"},{"arc":[{"x":155401,"y":137725},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":155405,"y":137724},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155411,"y":137718},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155413,"y":137714},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":155416,"y":137710},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":155424,"y":137712},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":155429,"y":137719},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155431,"y":137722},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155435,"y":137723},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":155440,"y":137722},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":155442,"y":137723},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155448,"y":137730},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":155452,"y":137733},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":155457,"y":137737},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":155461,"y":137740},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":155465,"y":137741},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":155471,"y":137745},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155471,"y":137750},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155471,"y":137753},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155472,"y":137758},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155473,"y":137762},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":155474,"y":137770},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":155482,"y":137777},{"x":-10,"y":17}],"type":"coastline"},{"arc":[{"x":155472,"y":137794},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":155471,"y":137800},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155472,"y":137806},{"x":3,"y":15}],"type":"coastline"},{"arc":[{"x":155475,"y":137821},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":155475,"y":137835},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":155474,"y":137843},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155475,"y":137848},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":155475,"y":137852},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155476,"y":137857},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":155475,"y":137870},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":155483,"y":137876},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":155490,"y":137880},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":155491,"y":137880},{"x":13,"y":11}],"type":"coastline"},{"arc":[{"x":155504,"y":137891},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155506,"y":137894},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155505,"y":137897},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":155502,"y":137903},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":155501,"y":137909},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155503,"y":137912},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":155507,"y":137919},{"x":-5,"y":44}],"type":"coastline"},{"arc":[{"x":155502,"y":137963},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155503,"y":137967},{"x":4,"y":12}],"type":"coastline"},{"arc":[{"x":155509,"y":137981},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":155514,"y":137987},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":155521,"y":137990},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":155532,"y":137993},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":155547,"y":137998},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155567,"y":137996},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155569,"y":137995},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":155568,"y":138003},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":155566,"y":138011},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":155564,"y":138018},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":155563,"y":138022},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":155561,"y":138029},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":155555,"y":138042},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155553,"y":138045},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155549,"y":138048},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":155546,"y":138055},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":155544,"y":138061},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":155540,"y":138069},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":155534,"y":138076},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155528,"y":138082},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":155522,"y":138092},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":155516,"y":138100},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155511,"y":138104},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":155502,"y":138105},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":155498,"y":138105},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":155491,"y":138105},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155489,"y":138106},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":155486,"y":138108},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":155484,"y":138113},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":155480,"y":138118},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155477,"y":138119},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":155471,"y":138127},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":155470,"y":138138},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":155469,"y":138139},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155469,"y":138141},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":155468,"y":138142},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":155465,"y":138144},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155463,"y":138146},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":155462,"y":138153},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":155455,"y":138161},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155453,"y":138165},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":155452,"y":138171},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":155453,"y":138178},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":155455,"y":138186},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155456,"y":138188},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":155455,"y":138194},{"x":-4,"y":14}],"type":"coastline"},{"arc":[{"x":155451,"y":138208},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155449,"y":138220},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":155451,"y":138233},{"x":4,"y":16}],"type":"coastline"},{"arc":[{"x":155455,"y":138249},{"x":5,"y":16}],"type":"coastline"},{"arc":[{"x":155458,"y":138266},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155456,"y":138270},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155456,"y":138275},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":155449,"y":138280},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":155431,"y":138275},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":155427,"y":138283},{"x":-10,"y":19}],"type":"coastline"},{"arc":[{"x":155417,"y":138302},{"x":-12,"y":15}],"type":"coastline"},{"arc":[{"x":155405,"y":138317},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":155403,"y":138320},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155399,"y":138323},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":155395,"y":138333},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155391,"y":138334},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":155380,"y":138336},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":155374,"y":138339},{"x":-15,"y":0}],"type":"coastline"},{"arc":[{"x":155355,"y":138340},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":155339,"y":138340},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":155329,"y":138342},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":155322,"y":138346},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":155319,"y":138355},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":155315,"y":138360},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":155307,"y":138356},{"x":-12,"y":-3}],"type":"coastline"},{"arc":[{"x":155295,"y":138353},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":155284,"y":138342},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":155278,"y":138336},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":155270,"y":138331},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":155266,"y":138329},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":155260,"y":138333},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155257,"y":138336},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":155254,"y":138338},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":155251,"y":138346},{"x":7,"y":10}],"type":"coastline"},{"arc":[{"x":155258,"y":138356},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":155262,"y":138364},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155263,"y":138370},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":155266,"y":138378},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":155270,"y":138386},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":155276,"y":138395},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":155275,"y":138399},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155273,"y":138401},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":155272,"y":138403},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":155266,"y":138410},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155261,"y":138417},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":155257,"y":138427},{"x":5,"y":21}],"type":"coastline"},{"arc":[{"x":155262,"y":138448},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":155262,"y":138466},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":155263,"y":138472},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155262,"y":138480},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":155259,"y":138487},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":155261,"y":138495},{"x":11,"y":15}],"type":"coastline"},{"arc":[{"x":155272,"y":138510},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":155270,"y":138519},{"x":3,"y":12}],"type":"coastline"},{"arc":[{"x":155274,"y":138536},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":155276,"y":138541},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":155276,"y":138547},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":155269,"y":138556},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":155273,"y":138559},{"x":12,"y":9}],"type":"coastline"},{"arc":[{"x":155285,"y":138568},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":155293,"y":138578},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":155306,"y":138583},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":155308,"y":138584},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":155313,"y":138589},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":155334,"y":138591},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":155337,"y":138593},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":155337,"y":138598},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":155338,"y":138607},{"x":2,"y":20}],"type":"coastline"},{"arc":[{"x":155340,"y":138627},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":155337,"y":138641},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":155336,"y":138647},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":155341,"y":138652},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":155343,"y":138661},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":155345,"y":138666},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":140888,"y":137662},{"x":109,"y":-91},{"x":-31,"y":-74},{"x":27,"y":-80},{"x":-52,"y":-122},{"x":206,"y":-138},{"x":7,"y":-139},{"x":158,"y":-50},{"x":36,"y":-53},{"x":75,"y":-15},{"x":125,"y":32},{"x":205,"y":-64},{"x":15,"y":-60},{"x":94,"y":-47},{"x":-18,"y":-143},{"x":39,"y":-23},{"x":-27,"y":-124},{"x":30,"y":-144},{"x":143,"y":-96},{"x":157,"y":-14},{"x":-2,"y":-140},{"x":85,"y":-119}],"type":"admin"},{"arc":[{"x":142301,"y":135968},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":142337,"y":136010},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":142361,"y":136045},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":142366,"y":136050},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":142368,"y":136056},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":142387,"y":136061},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":142402,"y":136056},{"x":12,"y":-2}],"type":"coastline"},{"arc":[{"x":142422,"y":136050},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":142455,"y":136013},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":142493,"y":135986},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":142526,"y":135992},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":142561,"y":136009},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":142568,"y":136014},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":142585,"y":136030},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":142647,"y":136070},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":142730,"y":136058},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":142774,"y":136056},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":142786,"y":136051},{"x":9,"y":-8}],"type":"coastline"},{"arc":[{"x":142833,"y":136013},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":142851,"y":136004},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":142892,"y":135970},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":142893,"y":135966},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":142888,"y":135901},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":142899,"y":135879},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":142901,"y":135867},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":142930,"y":135861},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":142937,"y":135862},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":142964,"y":135852},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":142968,"y":135852},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":142979,"y":135856},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":142983,"y":135848},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":142992,"y":135845},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":143021,"y":135826},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":143092,"y":135782},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":143100,"y":135762},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":143102,"y":135762},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":143154,"y":135759},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":143165,"y":135761},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":143176,"y":135761},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":143185,"y":135761},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":143205,"y":135755},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":143220,"y":135737},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":143231,"y":135729},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":143259,"y":135704},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":143301,"y":135678},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":143323,"y":135655},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":143358,"y":135601},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":143441,"y":135578},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":143527,"y":135547},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":143533,"y":135541},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":143565,"y":135526},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":143584,"y":135479},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":143660,"y":135405},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":143698,"y":135397},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":143713,"y":135392},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":143725,"y":135401},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":143730,"y":135400},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":143755,"y":135384},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":143781,"y":135353},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":143807,"y":135300},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":143789,"y":135288},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":143786,"y":135278},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":143783,"y":135275},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":143777,"y":135255},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":143790,"y":135238},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":143796,"y":135235},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":143806,"y":135232},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":143824,"y":135210},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":143900,"y":135179},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":143936,"y":135179},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":143951,"y":135171},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":143962,"y":135161},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":143992,"y":135152},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":143996,"y":135148},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":144033,"y":135114},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":144045,"y":135129},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":144054,"y":135133},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":144057,"y":135131},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":144082,"y":135127},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":144094,"y":135128},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":144101,"y":135137},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":144106,"y":135145},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":144113,"y":135181},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":144093,"y":135192},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":144080,"y":135210},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":144088,"y":135232},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":144090,"y":135236},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":144072,"y":135282},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":144073,"y":135286},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":144112,"y":135360},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":144192,"y":135435},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":144207,"y":135499},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":144218,"y":135518},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":144225,"y":135558},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":144243,"y":135601},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":144259,"y":135685},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":144258,"y":135731},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":144267,"y":135758},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":144283,"y":135774},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":144282,"y":135829},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":144285,"y":135861},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":144274,"y":135946},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":144274,"y":135956},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":144269,"y":136033},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":144272,"y":136062},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":144324,"y":136093},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":144382,"y":136061},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":144399,"y":136024},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":144440,"y":135964},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":144449,"y":135962},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":144455,"y":135961},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":144512,"y":135974},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":144553,"y":136007},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":144707,"y":136042},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":144713,"y":136050},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":144828,"y":136142},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":144853,"y":136116},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":144855,"y":136110},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":144888,"y":136062},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":144952,"y":136059},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":144956,"y":136061},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":144970,"y":136051},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":145014,"y":136051},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":145047,"y":136047},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":145049,"y":136027},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":145034,"y":136007},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":145025,"y":135996},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":145023,"y":135986},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":145024,"y":135963},{"x":5,"y":-13}],"type":"coastline"},{"arc":[{"x":145151,"y":135962},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":145159,"y":135963},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":145162,"y":135962},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145172,"y":135953},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":145182,"y":135947},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":145228,"y":135880},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145228,"y":135882},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":145245,"y":135889},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145255,"y":135840},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":145239,"y":135776},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":145243,"y":135767},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":145235,"y":135758},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":145230,"y":135744},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145234,"y":135743},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":145246,"y":135735},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145250,"y":135733},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":145257,"y":135731},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":145261,"y":135731},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":145269,"y":135729},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145288,"y":135726},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145301,"y":135707},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145291,"y":135675},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145292,"y":135669},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":145297,"y":135666},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":145304,"y":135667},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":145305,"y":135664},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":145304,"y":135647},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":145309,"y":135635},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145305,"y":135619},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145309,"y":135614},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145308,"y":135606},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":145334,"y":135584},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145314,"y":135569},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":145295,"y":135553},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":145312,"y":135490},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":145328,"y":135490},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":145352,"y":135492},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":145379,"y":135515},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":145419,"y":135478},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":145436,"y":135471},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":145454,"y":135477},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":145481,"y":135455},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145493,"y":135447},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":145515,"y":135439},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":145530,"y":135441},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145536,"y":135442},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":145538,"y":135449},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":145527,"y":135462},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":145511,"y":135479},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":145510,"y":135523},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":145507,"y":135528},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145498,"y":135547},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":145485,"y":135580},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":145490,"y":135615},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":145486,"y":135617},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":145480,"y":135620},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":145481,"y":135629},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":145489,"y":135639},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":145493,"y":135643},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":145509,"y":135651},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":145513,"y":135658},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145515,"y":135663},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":145511,"y":135676},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":145482,"y":135689},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":145487,"y":135699},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":145491,"y":135695},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145501,"y":135689},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":145503,"y":135700},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":145522,"y":135693},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":145522,"y":135687},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":145529,"y":135694},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":145534,"y":135705},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":145530,"y":135721},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":145500,"y":135730},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":145491,"y":135736},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":145500,"y":135741},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":145512,"y":135737},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":145524,"y":135738},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":145540,"y":135768},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":145539,"y":135775},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":145543,"y":135804},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":145538,"y":135818},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":145534,"y":135824},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145535,"y":135826},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":145540,"y":135840},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":145540,"y":135844},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":145544,"y":135849},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":145612,"y":135866},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":145628,"y":135868},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":145643,"y":135856},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":145645,"y":135835},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145648,"y":135827},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":145649,"y":135810},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":145655,"y":135805},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":145648,"y":135792},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":145646,"y":135789},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145649,"y":135786},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":145656,"y":135783},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145655,"y":135776},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":145656,"y":135773},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":145647,"y":135761},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145657,"y":135733},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":145670,"y":135705},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":145676,"y":135681},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":145688,"y":135664},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":145732,"y":135650},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":145732,"y":135656},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":145743,"y":135679},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":145769,"y":135731},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":145769,"y":135736},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":145767,"y":135742},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":145784,"y":135754},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":145829,"y":135760},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":145878,"y":135774},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":145890,"y":135782},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":145910,"y":135750},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":145916,"y":135746},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":145918,"y":135738},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":145938,"y":135645},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":145959,"y":135618},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":145958,"y":135607},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":145956,"y":135603},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":145962,"y":135585},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":145966,"y":135572},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":145967,"y":135560},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":145981,"y":135549},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":146013,"y":135533},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":146017,"y":135524},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":146063,"y":135493},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":146100,"y":135503},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":146119,"y":135486},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":146127,"y":135488},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":146128,"y":135491},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":146131,"y":135492},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":146165,"y":135502},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":146181,"y":135493},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":146194,"y":135493},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":141617,"y":131987},{"x":-50,"y":-21},{"x":-116,"y":-134},{"x":117,"y":133},{"x":138,"y":58},{"x":-89,"y":-36}],"type":"coastline"},{"arc":[{"x":142799,"y":133903},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":142736,"y":134153},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":142730,"y":134184},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":142720,"y":134194},{"x":-9,"y":24}],"type":"coastline"},{"arc":[{"x":142651,"y":134284},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":142648,"y":134286},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":142545,"y":134421},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":142554,"y":134444},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":142561,"y":134463},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":142406,"y":134565},{"x":-60,"y":-123},{"x":-86,"y":-30},{"x":-89,"y":-132},{"x":-105,"y":52},{"x":-105,"y":-1},{"x":-13,"y":-23},{"x":-70,"y":2},{"x":29,"y":-39},{"x":-46,"y":-26},{"x":-95,"y":47},{"x":1,"y":166},{"x":-113,"y":78},{"x":-85,"y":-74},{"x":-97,"y":49},{"x":-46,"y":-21},{"x":-4,"y":-114},{"x":-80,"y":-47},{"x":-151,"y":26},{"x":-62,"y":126},{"x":-189,"y":-171},{"x":-66,"y":-20},{"x":-51,"y":22},{"x":-48,"y":-31},{"x":-44,"y":46},{"x":-86,"y":-217},{"x":-50,"y":-31},{"x":-153,"y":-7},{"x":-67,"y":199},{"x":-39,"y":33},{"x":-95,"y":0},{"x":-35,"y":-43},{"x":16,"y":-179},{"x":-46,"y":-96},{"x":-130,"y":66},{"x":-27,"y":-93},{"x":-42,"y":11},{"x":-44,"y":-71},{"x":5,"y":-79},{"x":-138,"y":-150},{"x":24,"y":-33},{"x":-64,"y":-27},{"x":-156,"y":78},{"x":-47,"y":-36},{"x":-52,"y":86},{"x":-30,"y":-17},{"x":-93,"y":28},{"x":-44,"y":77},{"x":-177,"y":-52},{"x":-70,"y":-85},{"x":-33,"y":31},{"x":-125,"y":-1},{"x":-40,"y":-83},{"x":-47,"y":13},{"x":-47,"y":64},{"x":-89,"y":12},{"x":-9,"y":91},{"x":-104,"y":61},{"x":-68,"y":6},{"x":2,"y":44},{"x":-68,"y":20},{"x":3,"y":65},{"x":-43,"y":9},{"x":-14,"y":81},{"x":-54,"y":32},{"x":-30,"y":101},{"x":-63,"y":23},{"x":-48,"y":-40},{"x":-69,"y":-10},{"x":-206,"y":96},{"x":-3,"y":-57},{"x":-54,"y":-21},{"x":-28,"y":-64},{"x":-118,"y":-16},{"x":-11,"y":-109},{"x":-47,"y":-50},{"x":-49,"y":11},{"x":-56,"y":-38},{"x":-68,"y":-127},{"x":-43,"y":-22},{"x":-8,"y":-85},{"x":50,"y":-61}],"type":"area"},{"arc":[{"x":137504,"y":133665},{"x":134,"y":-74},{"x":-72,"y":-146},{"x":20,"y":-35},{"x":-30,"y":-77},{"x":-142,"y":-145},{"x":-75,"y":-159},{"x":-84,"y":-53},{"x":-40,"y":-121},{"x":-74,"y":20},{"x":-53,"y":59},{"x":-87,"y":-125},{"x":-96,"y":50},{"x":-41,"y":-39},{"x":-53,"y":13},{"x":-73,"y":-40},{"x":-37,"y":73},{"x":-138,"y":13},{"x":-126,"y":-61},{"x":-19,"y":-80},{"x":-75,"y":-21},{"x":-160,"y":54},{"x":-135,"y":-89},{"x":-118,"y":59},{"x":-175,"y":-118},{"x":-25,"y":18},{"x":-129,"y":-54},{"x":-57,"y":-116},{"x":-90,"y":-63}],"type":"area"},{"arc":[{"x":135454,"y":132408},{"x":190,"y":-213},{"x":58,"y":10},{"x":18,"y":-166},{"x":54,"y":-13},{"x":53,"y":-74},{"x":-9,"y":-99},{"x":-61,"y":-111},{"x":39,"y":-34},{"x":1,"y":-114},{"x":78,"y":-71},{"x":-16,"y":-90},{"x":116,"y":-139},{"x":53,"y":-28},{"x":40,"y":18},{"x":118,"y":-66},{"x":-67,"y":-100},{"x":127,"y":-50},{"x":201,"y":108},{"x":278,"y":23},{"x":83,"y":-39},{"x":65,"y":30},{"x":32,"y":-44},{"x":68,"y":-16},{"x":80,"y":108},{"x":105,"y":-27},{"x":27,"y":-150},{"x":73,"y":-73},{"x":1,"y":-314},{"x":43,"y":-119},{"x":100,"y":-51},{"x":34,"y":-79},{"x":-33,"y":-167},{"x":103,"y":-141},{"x":63,"y":-35},{"x":-10,"y":-49},{"x":41,"y":-80},{"x":96,"y":-101}],"type":"admin"},{"arc":[{"x":137696,"y":129852},{"x":47,"y":-68},{"x":40,"y":23},{"x":-29,"y":-2},{"x":7,"y":50},{"x":23,"y":-40},{"x":126,"y":113},{"x":42,"y":-9},{"x":120,"y":70},{"x":28,"y":-14},{"x":39,"y":51},{"x":26,"y":-14},{"x":25,"y":45},{"x":60,"y":1},{"x":133,"y":102},{"x":149,"y":36},{"x":-34,"y":-1},{"x":27,"y":34},{"x":61,"y":-7},{"x":167,"y":125},{"x":46,"y":-11},{"x":22,"y":42},{"x":152,"y":93},{"x":-27,"y":64},{"x":87,"y":103},{"x":83,"y":33},{"x":16,"y":62},{"x":84,"y":14},{"x":9,"y":40},{"x":39,"y":12},{"x":-5,"y":95},{"x":5,"y":-33},{"x":47,"y":105},{"x":70,"y":64},{"x":44,"y":-13},{"x":91,"y":93},{"x":54,"y":-11},{"x":82,"y":125},{"x":40,"y":-6},{"x":-5,"y":93},{"x":33,"y":-39},{"x":79,"y":127},{"x":187,"y":100},{"x":362,"y":147},{"x":700,"y":215},{"x":182,"y":30},{"x":30,"y":-64},{"x":69,"y":-41},{"x":-68,"y":42},{"x":-30,"y":63},{"x":41,"y":10},{"x":4,"y":-55},{"x":57,"y":39},{"x":7,"y":63},{"x":56,"y":14},{"x":20,"y":-49},{"x":58,"y":7},{"x":-17,"y":73},{"x":38,"y":17},{"x":26,"y":93},{"x":66,"y":13},{"x":10,"y":-30},{"x":-57,"y":-33},{"x":24,"y":-83},{"x":137,"y":56},{"x":-16,"y":49},{"x":80,"y":49},{"x":671,"y":224},{"x":134,"y":27},{"x":8,"y":-40},{"x":17,"y":-7},{"x":-24,"y":44},{"x":22,"y":-2},{"x":7,"y":22},{"x":11,"y":-71},{"x":-1,"y":48},{"x":29,"y":-18},{"x":39,"y":41},{"x":41,"y":-14},{"x":133,"y":65},{"x":87,"y":-13},{"x":67,"y":-66},{"x":56,"y":3}],"type":"coastline"},{"arc":[{"x":143015,"y":133866},{"x":-40,"y":5}],"type":"coastline"},{"arc":[{"x":142963,"y":133875},{"x":-20,"y":7}],"type":"coastline"},{"arc":[{"x":143918,"y":129872},{"x":-34,"y":66},{"x":8,"y":-28},{"x":-87,"y":72},{"x":-30,"y":-81},{"x":-64,"y":-53},{"x":-36,"y":24},{"x":-13,"y":-50},{"x":14,"y":-23},{"x":118,"y":-15},{"x":50,"y":80},{"x":74,"y":8}],"type":"coastline"},{"arc":[{"x":142514,"y":134907},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":142510,"y":134951},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":142428,"y":134982},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":142269,"y":134971},{"x":0,"y":12}],"type":"coastline"},{"arc":[{"x":142266,"y":135014},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":142252,"y":135043},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":142216,"y":135256},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":142232,"y":135303},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":142229,"y":135372},{"x":9,"y":8}],"type":"coastline"},{"arc":[{"x":142244,"y":135387},{"x":10,"y":9}],"type":"coastline"},{"arc":[{"x":142256,"y":135398},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":142229,"y":135552},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":142220,"y":135577},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":142176,"y":135659},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":142123,"y":135684},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":142112,"y":135695},{"x":2,"y":13}],"type":"coastline"},{"arc":[{"x":142081,"y":135764},{"x":-5,"y":22}],"type":"coastline"},{"arc":[{"x":142217,"y":135875},{"x":17,"y":2}],"type":"coastline"},{"arc":[{"x":142234,"y":135877},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":142268,"y":135948},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":138614,"y":137657},{"x":62,"y":-27},{"x":48,"y":48},{"x":69,"y":-32},{"x":59,"y":10},{"x":101,"y":-54},{"x":26,"y":-72},{"x":57,"y":-43},{"x":-34,"y":-103},{"x":73,"y":-72},{"x":-7,"y":-57},{"x":-55,"y":-30},{"x":38,"y":-61},{"x":-9,"y":-70},{"x":82,"y":-21},{"x":-9,"y":-58},{"x":55,"y":5},{"x":128,"y":-55},{"x":-80,"y":-153},{"x":-128,"y":-118},{"x":48,"y":-74},{"x":-24,"y":-135},{"x":-169,"y":-175},{"x":43,"y":-173},{"x":-93,"y":-167},{"x":29,"y":-93},{"x":-22,"y":-35},{"x":-206,"y":45},{"x":-124,"y":-52},{"x":-44,"y":-109},{"x":-251,"y":18},{"x":-103,"y":-201},{"x":-177,"y":-82},{"x":-49,"y":-70},{"x":-47,"y":-13},{"x":-58,"y":-108},{"x":-165,"y":-43},{"x":-51,"y":-141},{"x":-114,"y":-53},{"x":-18,"y":-211},{"x":37,"y":-41},{"x":-41,"y":-123},{"x":-164,"y":-91},{"x":-97,"y":-207},{"x":-28,"y":-12},{"x":-37,"y":28},{"x":-31,"y":-32},{"x":7,"y":-72},{"x":135,"y":-131},{"x":36,"y":-77},{"x":-141,"y":-239},{"x":16,"y":-113},{"x":58,"y":-52},{"x":111,"y":4},{"x":9,"y":27},{"x":139,"y":-26}],"type":"area"},{"arc":[{"x":142414,"y":134620},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":142429,"y":134702},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":142480,"y":134750},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":142483,"y":134754},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":142520,"y":134860},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":142522,"y":134878},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":142520,"y":134884},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":134842,"y":137079},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134840,"y":137076},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":134836,"y":137072},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":134834,"y":137070},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":134825,"y":137067},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":134820,"y":137067},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":134814,"y":137067},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":134808,"y":137062},{"x":-8,"y":-5}],"type":"coastline"},{"arc":[{"x":134800,"y":137057},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":134786,"y":137057},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":134781,"y":137056},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":134776,"y":137059},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":134769,"y":137056},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":134763,"y":137055},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":134757,"y":137054},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134753,"y":137053},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":134741,"y":137054},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":134731,"y":137057},{"x":-13,"y":4}],"type":"coastline"},{"arc":[{"x":134716,"y":137062},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":134710,"y":137062},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":134700,"y":137065},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134698,"y":137066},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134694,"y":137067},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":134688,"y":137067},{"x":-15,"y":-2}],"type":"coastline"},{"arc":[{"x":134672,"y":137064},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":134671,"y":137063},{"x":-11,"y":-22}],"type":"coastline"},{"arc":[{"x":134660,"y":137041},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":134660,"y":137039},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":134660,"y":137037},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":134657,"y":137037},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":134653,"y":137041},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":134651,"y":137045},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":134650,"y":137045},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":134649,"y":137046},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":134644,"y":137048},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":134641,"y":137050},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134638,"y":137051},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":134631,"y":137052},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134628,"y":137053},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":134620,"y":137053},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":134615,"y":137054},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":134612,"y":137058},{"x":-10,"y":18}],"type":"coastline"},{"arc":[{"x":134602,"y":137076},{"x":-13,"y":12}],"type":"coastline"},{"arc":[{"x":134589,"y":137088},{"x":-16,"y":5}],"type":"coastline"},{"arc":[{"x":134573,"y":137093},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":134567,"y":137092},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":134565,"y":137091},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":134557,"y":137087},{"x":-12,"y":-8}],"type":"coastline"},{"arc":[{"x":134543,"y":137078},{"x":-15,"y":-5}],"type":"coastline"},{"arc":[{"x":134524,"y":137072},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":134511,"y":137070},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":134504,"y":137069},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":134497,"y":137068},{"x":-23,"y":-1}],"type":"coastline"},{"arc":[{"x":134471,"y":137068},{"x":-28,"y":15}],"type":"coastline"},{"arc":[{"x":134441,"y":137085},{"x":-16,"y":-3}],"type":"coastline"},{"arc":[{"x":134425,"y":137082},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":134418,"y":137082},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134414,"y":137081},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":134405,"y":137077},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":134401,"y":137078},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":134390,"y":137086},{"x":-12,"y":7}],"type":"coastline"},{"arc":[{"x":134378,"y":137093},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":134377,"y":137096},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":134377,"y":137099},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134375,"y":137100},{"x":-14,"y":10}],"type":"coastline"},{"arc":[{"x":134361,"y":137110},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":134358,"y":137114},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134356,"y":137115},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":134346,"y":137117},{"x":-11,"y":4}],"type":"coastline"},{"arc":[{"x":134332,"y":137124},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":134329,"y":137125},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":134326,"y":137124},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134322,"y":137123},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":134314,"y":137124},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":134304,"y":137122},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":134297,"y":137129},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":134293,"y":137130},{"x":-15,"y":-7}],"type":"coastline"},{"arc":[{"x":134277,"y":137123},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":134271,"y":137121},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":134269,"y":137119},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":134268,"y":137119},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":134265,"y":137120},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":134253,"y":137121},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":134251,"y":137122},{"x":-11,"y":4}],"type":"coastline"},{"arc":[{"x":134240,"y":137126},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":134221,"y":137127},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":134210,"y":137134},{"x":-13,"y":3}],"type":"coastline"},{"arc":[{"x":134194,"y":137138},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":134181,"y":137139},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":134174,"y":137138},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":134165,"y":137136},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":134158,"y":137130},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":134150,"y":137123},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":134146,"y":137120},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":134134,"y":137108},{"x":-8,"y":-5}],"type":"coastline"},{"arc":[{"x":134126,"y":137103},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":134120,"y":137101},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":134114,"y":137099},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":134112,"y":137094},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":134109,"y":137090},{"x":-15,"y":-9}],"type":"coastline"},{"arc":[{"x":134087,"y":137075},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":134084,"y":137072},{"x":-12,"y":-10}],"type":"coastline"},{"arc":[{"x":134072,"y":137062},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":134064,"y":137056},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":134058,"y":137056},{"x":-12,"y":-1}],"type":"coastline"},{"arc":[{"x":134045,"y":137055},{"x":-16,"y":0}],"type":"coastline"},{"arc":[{"x":134029,"y":137055},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":134024,"y":137053},{"x":-12,"y":-2}],"type":"coastline"},{"arc":[{"x":134012,"y":137051},{"x":-44,"y":-13}],"type":"coastline"},{"arc":[{"x":133968,"y":137038},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":133947,"y":137041},{"x":-15,"y":-14}],"type":"coastline"},{"arc":[{"x":133932,"y":137027},{"x":-6,"y":-29}],"type":"coastline"},{"arc":[{"x":133926,"y":136998},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":133911,"y":136983},{"x":-5,"y":-15}],"type":"coastline"},{"arc":[{"x":133906,"y":136968},{"x":-11,"y":-20}],"type":"coastline"},{"arc":[{"x":133895,"y":136948},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":133887,"y":136926},{"x":-12,"y":-12}],"type":"coastline"},{"arc":[{"x":133875,"y":136914},{"x":-19,"y":-5}],"type":"coastline"},{"arc":[{"x":133844,"y":136903},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":133840,"y":136900},{"x":-25,"y":-24}],"type":"coastline"},{"arc":[{"x":132981,"y":135552},{"x":31,"y":-64},{"x":122,"y":-59},{"x":87,"y":-105},{"x":10,"y":-113},{"x":113,"y":34},{"x":41,"y":-196},{"x":112,"y":-18},{"x":68,"y":-173},{"x":34,"y":15},{"x":33,"y":-39},{"x":97,"y":-15},{"x":-5,"y":33},{"x":28,"y":6},{"x":-44,"y":50},{"x":42,"y":91},{"x":53,"y":28},{"x":79,"y":-60},{"x":129,"y":31},{"x":38,"y":-62},{"x":125,"y":32},{"x":74,"y":-68},{"x":196,"y":-6},{"x":116,"y":-58},{"x":1,"y":-97},{"x":161,"y":-27},{"x":50,"y":-202},{"x":21,"y":-4},{"x":-23,"y":59},{"x":86,"y":-51},{"x":31,"y":-125},{"x":-88,"y":-112},{"x":34,"y":-63},{"x":-96,"y":-124},{"x":264,"y":-145},{"x":-79,"y":-136},{"x":-153,"y":-91},{"x":30,"y":-103},{"x":-44,"y":-131},{"x":-141,"y":-43},{"x":-50,"y":-63},{"x":-163,"y":-37},{"x":-63,"y":-42},{"x":-66,"y":45},{"x":-38,"y":-10},{"x":-81,"y":-123},{"x":179,"y":-154},{"x":49,"y":20},{"x":48,"y":-154},{"x":115,"y":35},{"x":20,"y":-35},{"x":71,"y":26},{"x":33,"y":-93},{"x":119,"y":-122},{"x":157,"y":37},{"x":91,"y":-78},{"x":30,"y":-89}],"type":"area"},{"arc":[{"x":135065,"y":132604},{"x":165,"y":-8},{"x":98,"y":-153},{"x":126,"y":-35}],"type":"admin"},{"arc":[{"x":132226,"y":135574},{"x":-93,"y":-68},{"x":-85,"y":10},{"x":-50,"y":43},{"x":-51,"y":-21},{"x":-56,"y":44},{"x":-142,"y":-35},{"x":-137,"y":-94},{"x":-201,"y":49},{"x":-46,"y":-47},{"x":-184,"y":41},{"x":-42,"y":-35},{"x":-138,"y":14},{"x":-125,"y":-40},{"x":-101,"y":53},{"x":-94,"y":144},{"x":10,"y":31},{"x":-67,"y":58},{"x":-92,"y":-129},{"x":-156,"y":-47},{"x":-25,"y":-80},{"x":-137,"y":-86},{"x":-59,"y":-83},{"x":-114,"y":-56}],"type":"admin"},{"arc":[{"x":130041,"y":135240},{"x":10,"y":-253},{"x":50,"y":-41},{"x":43,"y":-259},{"x":-43,"y":-160},{"x":-139,"y":-41},{"x":-36,"y":-198},{"x":35,"y":-107},{"x":190,"y":-117},{"x":-2,"y":-138},{"x":93,"y":-32},{"x":31,"y":-90},{"x":80,"y":-16},{"x":-108,"y":-109},{"x":9,"y":-47},{"x":-65,"y":-94},{"x":19,"y":-73},{"x":-44,"y":-63},{"x":10,"y":-122},{"x":55,"y":-66},{"x":69,"y":7},{"x":21,"y":-43},{"x":75,"y":-48},{"x":46,"y":12},{"x":68,"y":-68},{"x":96,"y":16},{"x":86,"y":-33},{"x":65,"y":-132},{"x":63,"y":-31},{"x":-7,"y":-71},{"x":-48,"y":16},{"x":-86,"y":-41},{"x":19,"y":-136},{"x":-49,"y":-67},{"x":-11,"y":-95},{"x":11,"y":-56},{"x":67,"y":-24},{"x":87,"y":-146},{"x":-114,"y":-155},{"x":-24,"y":-127},{"x":-83,"y":-91},{"x":21,"y":-45},{"x":92,"y":-7},{"x":25,"y":-67},{"x":135,"y":-92},{"x":-111,"y":-326},{"x":74,"y":-40},{"x":110,"y":-120},{"x":137,"y":-41},{"x":18,"y":-72},{"x":-69,"y":-71},{"x":-17,"y":-129}],"type":"admin"},{"arc":[{"x":130995,"y":130891},{"x":45,"y":-15},{"x":112,"y":-170},{"x":78,"y":-3},{"x":79,"y":-143},{"x":129,"y":-71},{"x":70,"y":19},{"x":162,"y":-55},{"x":116,"y":55},{"x":42,"y":59},{"x":113,"y":29},{"x":55,"y":-23},{"x":97,"y":40},{"x":69,"y":-57},{"x":92,"y":50},{"x":56,"y":-39},{"x":59,"y":44},{"x":34,"y":-10},{"x":16,"y":84},{"x":230,"y":-17},{"x":69,"y":35},{"x":63,"y":-16},{"x":76,"y":199},{"x":61,"y":15},{"x":27,"y":65},{"x":44,"y":18},{"x":76,"y":-51},{"x":95,"y":44},{"x":17,"y":-160},{"x":36,"y":21},{"x":81,"y":-12},{"x":179,"y":80},{"x":74,"y":87},{"x":178,"y":-43},{"x":134,"y":31},{"x":61,"y":-13},{"x":40,"y":-46},{"x":118,"y":-19},{"x":98,"y":41},{"x":32,"y":68},{"x":130,"y":50},{"x":36,"y":-31},{"x":35,"y":114},{"x":-54,"y":136},{"x":10,"y":64},{"x":-85,"y":125},{"x":56,"y":71},{"x":-8,"y":95},{"x":-55,"y":81},{"x":182,"y":191},{"x":186,"y":385},{"x":160,"y":66},{"x":40,"y":55},{"x":90,"y":6},{"x":134,"y":184}],"type":"admin"},{"arc":[{"x":130580,"y":138813},{"x":-52,"y":-4},{"x":-100,"y":-121},{"x":-71,"y":-3},{"x":-10,"y":31},{"x":-80,"y":18},{"x":-103,"y":159},{"x":19,"y":142},{"x":65,"y":101},{"x":-105,"y":2},{"x":-51,"y":-59},{"x":-16,"y":-186},{"x":-63,"y":-52},{"x":-15,"y":-117},{"x":-53,"y":-51},{"x":-78,"y":0},{"x":-54,"y":-55},{"x":-32,"y":18},{"x":-32,"y":-35},{"x":-40,"y":7},{"x":-26,"y":-51},{"x":-89,"y":-2},{"x":7,"y":-57},{"x":-80,"y":-72},{"x":-71,"y":10},{"x":33,"y":77},{"x":-68,"y":28},{"x":-42,"y":60},{"x":-123,"y":-38},{"x":-97,"y":50},{"x":-207,"y":-7},{"x":-83,"y":49},{"x":-152,"y":180},{"x":-46,"y":165},{"x":-74,"y":62},{"x":-200,"y":-103},{"x":10,"y":-118},{"x":-116,"y":5},{"x":-28,"y":-43},{"x":-167,"y":-88},{"x":-142,"y":110},{"x":-25,"y":75},{"x":-192,"y":-109},{"x":-9,"y":85},{"x":-112,"y":220},{"x":1,"y":85},{"x":-52,"y":49},{"x":-26,"y":145},{"x":-27,"y":-17},{"x":-69,"y":58},{"x":34,"y":65},{"x":-67,"y":98},{"x":38,"y":56},{"x":-4,"y":74},{"x":-79,"y":81},{"x":39,"y":119},{"x":-70,"y":10},{"x":-50,"y":75},{"x":-58,"y":-20},{"x":-68,"y":9},{"x":-39,"y":51},{"x":-134,"y":-1},{"x":-120,"y":90},{"x":-55,"y":-31},{"x":-174,"y":14},{"x":-34,"y":-64},{"x":-40,"y":-11},{"x":-32,"y":31},{"x":-44,"y":-30},{"x":106,"y":-270},{"x":-4,"y":-160},{"x":-41,"y":-40},{"x":42,"y":-11},{"x":48,"y":-145},{"x":-35,"y":-48},{"x":89,"y":-67},{"x":7,"y":-98},{"x":71,"y":-19},{"x":34,"y":-92},{"x":-41,"y":-19},{"x":-29,"y":-89},{"x":-39,"y":-18},{"x":-40,"y":24},{"x":-139,"y":-125},{"x":-47,"y":-6},{"x":-37,"y":61},{"x":-101,"y":-40},{"x":-81,"y":43},{"x":-7,"y":41},{"x":-247,"y":84},{"x":-42,"y":-214},{"x":-91,"y":-38},{"x":-52,"y":-5},{"x":-9,"y":35},{"x":-61,"y":3},{"x":-51,"y":-47},{"x":-93,"y":37},{"x":-88,"y":-65},{"x":-321,"y":-22},{"x":-84,"y":-115},{"x":27,"y":-38},{"x":-22,"y":-69},{"x":-80,"y":-56},{"x":-54,"y":-151},{"x":-79,"y":-80},{"x":6,"y":-79},{"x":-53,"y":-17},{"x":-100,"y":20},{"x":-87,"y":-53},{"x":-69,"y":67},{"x":-38,"y":-8},{"x":-65,"y":42},{"x":-63,"y":-18},{"x":-14,"y":72},{"x":-93,"y":24},{"x":114,"y":65},{"x":-105,"y":20},{"x":-99,"y":63},{"x":-104,"y":0},{"x":-49,"y":101},{"x":-24,"y":-22},{"x":-235,"y":93},{"x":-40,"y":-93},{"x":-47,"y":19},{"x":-8,"y":-26},{"x":-18,"y":40},{"x":-31,"y":-1},{"x":-61,"y":-134},{"x":-112,"y":23},{"x":-10,"y":-71},{"x":-61,"y":-69},{"x":-50,"y":21},{"x":-90,"y":-56},{"x":-133,"y":3},{"x":-50,"y":-28},{"x":-23,"y":-41},{"x":28,"y":-106},{"x":-53,"y":35},{"x":-46,"y":-28},{"x":-185,"y":-262},{"x":-112,"y":39},{"x":-82,"y":90},{"x":-190,"y":29}],"type":"area"},{"arc":[{"x":122437,"y":137967},{"x":-82,"y":-146},{"x":-51,"y":25},{"x":-175,"y":-44},{"x":-4,"y":53},{"x":-76,"y":70},{"x":-103,"y":-7},{"x":-128,"y":105},{"x":-67,"y":-10},{"x":18,"y":-25},{"x":-76,"y":-65},{"x":20,"y":-40},{"x":-47,"y":-24},{"x":-50,"y":-268},{"x":-64,"y":-23},{"x":-35,"y":-56},{"x":-80,"y":4},{"x":-35,"y":-73},{"x":-121,"y":-40},{"x":-3,"y":-74},{"x":-48,"y":-24},{"x":2,"y":-105},{"x":-83,"y":10},{"x":-56,"y":-68},{"x":-64,"y":-15},{"x":-54,"y":-107},{"x":287,"y":-207},{"x":-42,"y":-59},{"x":33,"y":-61},{"x":109,"y":-63},{"x":4,"y":-173},{"x":53,"y":-124},{"x":85,"y":-1},{"x":135,"y":-67},{"x":95,"y":32},{"x":124,"y":-57},{"x":7,"y":-147},{"x":60,"y":-155},{"x":158,"y":-38},{"x":239,"y":-226},{"x":22,"y":-60},{"x":-51,"y":-95},{"x":30,"y":-68}],"type":"admin"},{"arc":[{"x":122323,"y":135451},{"x":40,"y":-19},{"x":82,"y":-166},{"x":104,"y":31},{"x":56,"y":67},{"x":104,"y":-74},{"x":48,"y":5},{"x":41,"y":52},{"x":50,"y":-5},{"x":26,"y":-49},{"x":85,"y":-30},{"x":46,"y":46},{"x":48,"y":-9},{"x":0,"y":56},{"x":148,"y":-22},{"x":-19,"y":-192},{"x":-50,"y":-37},{"x":52,"y":-132},{"x":119,"y":-58},{"x":106,"y":32},{"x":85,"y":-71},{"x":34,"y":31},{"x":50,"y":-12},{"x":45,"y":-159},{"x":80,"y":-56},{"x":27,"y":-66},{"x":44,"y":-33},{"x":50,"y":26},{"x":11,"y":-54},{"x":115,"y":-72},{"x":-6,"y":-93},{"x":184,"y":-217},{"x":-19,"y":-89},{"x":57,"y":-184},{"x":-19,"y":-47},{"x":133,"y":-163},{"x":1,"y":-79},{"x":36,"y":-41},{"x":-36,"y":-49},{"x":30,"y":-209},{"x":55,"y":-213},{"x":45,"y":-14}],"type":"admin"},{"arc":[{"x":124411,"y":133083},{"x":72,"y":22},{"x":184,"y":-33},{"x":206,"y":174},{"x":48,"y":-128},{"x":92,"y":-61},{"x":44,"y":-78},{"x":138,"y":32},{"x":103,"y":113},{"x":29,"y":-16},{"x":95,"y":37},{"x":119,"y":-54},{"x":11,"y":127},{"x":93,"y":-21},{"x":132,"y":126},{"x":91,"y":7},{"x":30,"y":49},{"x":82,"y":18},{"x":45,"y":99},{"x":64,"y":3},{"x":10,"y":37},{"x":55,"y":3},{"x":47,"y":41},{"x":-48,"y":90},{"x":106,"y":42},{"x":73,"y":71},{"x":98,"y":21},{"x":214,"y":-55},{"x":245,"y":36},{"x":35,"y":51},{"x":100,"y":43},{"x":42,"y":124},{"x":189,"y":194},{"x":161,"y":75},{"x":-57,"y":150},{"x":2,"y":204},{"x":-60,"y":61},{"x":1,"y":75},{"x":-87,"y":44},{"x":10,"y":143},{"x":147,"y":12},{"x":87,"y":-68},{"x":96,"y":47},{"x":87,"y":-49},{"x":12,"y":-43},{"x":145,"y":23},{"x":27,"y":-91},{"x":136,"y":-100},{"x":29,"y":43},{"x":45,"y":5},{"x":0,"y":58},{"x":90,"y":93},{"x":88,"y":9},{"x":56,"y":86},{"x":25,"y":54},{"x":-74,"y":60},{"x":3,"y":82},{"x":204,"y":94},{"x":129,"y":-15},{"x":84,"y":81},{"x":39,"y":114},{"x":220,"y":168},{"x":98,"y":-32},{"x":171,"y":15},{"x":70,"y":-37},{"x":24,"y":-115},{"x":111,"y":-141},{"x":28,"y":-112},{"x":108,"y":8},{"x":53,"y":38},{"x":78,"y":-2},{"x":74,"y":-49},{"x":128,"y":0},{"x":45,"y":14},{"x":46,"y":96},{"x":107,"y":-55}],"type":"area"},{"arc":[{"x":122154,"y":140420},{"x":-67,"y":-136},{"x":87,"y":188},{"x":-20,"y":-52}],"type":"coastline"},{"arc":[{"x":122375,"y":140499},{"x":-30,"y":-95},{"x":-84,"y":-55},{"x":-113,"y":-21},{"x":112,"y":20},{"x":86,"y":56},{"x":29,"y":95}],"type":"coastline"},{"arc":[{"x":131462,"y":140664},{"x":-157,"y":17},{"x":-251,"y":102},{"x":47,"y":26},{"x":26,"y":99},{"x":-14,"y":42},{"x":0,"y":-93},{"x":-28,"y":8},{"x":-11,"y":-59},{"x":-86,"y":24},{"x":-11,"y":50},{"x":-42,"y":-39},{"x":9,"y":67},{"x":-29,"y":-57},{"x":-68,"y":34},{"x":-8,"y":23},{"x":134,"y":40},{"x":-125,"y":-35},{"x":-32,"y":56},{"x":33,"y":18},{"x":-40,"y":22},{"x":44,"y":-3},{"x":-44,"y":4},{"x":-16,"y":42},{"x":28,"y":-26},{"x":82,"y":-8},{"x":-77,"y":15},{"x":-61,"y":70},{"x":-470,"y":13},{"x":-59,"y":22},{"x":-37,"y":68},{"x":-221,"y":84},{"x":-477,"y":0},{"x":-32,"y":48},{"x":-19,"y":-31},{"x":-92,"y":10},{"x":-28,"y":20},{"x":15,"y":64},{"x":2,"y":52},{"x":-79,"y":69},{"x":77,"y":-70},{"x":-13,"y":-101},{"x":-26,"y":6},{"x":2,"y":8},{"x":-47,"y":11},{"x":26,"y":84},{"x":-42,"y":-102},{"x":-41,"y":-6},{"x":-152,"y":41},{"x":-213,"y":-16},{"x":-162,"y":41},{"x":-174,"y":-19},{"x":-518,"y":40},{"x":-415,"y":77},{"x":-20,"y":40},{"x":1,"y":-33},{"x":-25,"y":28},{"x":-22,"y":-29},{"x":5,"y":38},{"x":-9,"y":-44},{"x":-73,"y":-27},{"x":-168,"y":20},{"x":-186,"y":-37},{"x":-96,"y":49},{"x":63,"y":-44},{"x":-60,"y":-4},{"x":1,"y":14},{"x":-39,"y":0},{"x":32,"y":50},{"x":-35,"y":-45},{"x":-6,"y":-25},{"x":-483,"y":12},{"x":-40,"y":29},{"x":-70,"y":-46},{"x":-118,"y":-8},{"x":-48,"y":-37},{"x":-30,"y":25},{"x":22,"y":-27},{"x":-38,"y":19},{"x":-3,"y":-24},{"x":-86,"y":-9},{"x":-54,"y":83},{"x":30,"y":-68},{"x":-81,"y":5},{"x":53,"y":16},{"x":-35,"y":19},{"x":-18,"y":-25},{"x":49,"y":73},{"x":-51,"y":-55},{"x":-1,"y":-49},{"x":-161,"y":-7},{"x":-424,"y":-92},{"x":-103,"y":2},{"x":-3,"y":61},{"x":-53,"y":19},{"x":-2,"y":-52},{"x":-3,"y":34},{"x":0,"y":-34},{"x":-41,"y":-1},{"x":-9,"y":46},{"x":83,"y":51},{"x":-85,"y":-50},{"x":1,"y":-79},{"x":-275,"y":-77},{"x":-278,"y":-26},{"x":-41,"y":23},{"x":-109,"y":-11},{"x":-73,"y":35},{"x":25,"y":-42},{"x":-52,"y":45},{"x":-5,"y":-32},{"x":-82,"y":-20},{"x":-251,"y":13},{"x":17,"y":-13},{"x":-48,"y":-32},{"x":-29,"y":16},{"x":16,"y":-27},{"x":-44,"y":-39},{"x":-272,"y":-83},{"x":-462,"y":-39},{"x":-102,"y":23},{"x":-10,"y":43},{"x":-21,"y":-12},{"x":31,"y":19},{"x":-49,"y":-20},{"x":-103,"y":27},{"x":-73,"y":-97},{"x":-101,"y":-28},{"x":-39,"y":20},{"x":-31,"y":-84},{"x":-44,"y":-9},{"x":25,"y":32},{"x":-23,"y":-16},{"x":-42,"y":-78},{"x":-57,"y":10},{"x":-2,"y":-70},{"x":-46,"y":-61},{"x":-84,"y":-66},{"x":-55,"y":-7},{"x":-9,"y":-126},{"x":20,"y":48},{"x":26,"y":-36},{"x":14,"y":46},{"x":46,"y":-53},{"x":-43,"y":-33},{"x":35,"y":-16},{"x":-53,"y":-63},{"x":32,"y":5},{"x":-7,"y":-19},{"x":-46,"y":-17},{"x":14,"y":-48},{"x":-38,"y":26},{"x":-12,"y":-72},{"x":-38,"y":28},{"x":-13,"y":-17},{"x":51,"y":-36},{"x":-14,"y":-20},{"x":-48,"y":4},{"x":-2,"y":-39},{"x":-39,"y":26},{"x":27,"y":-42},{"x":-32,"y":-41},{"x":-53,"y":26},{"x":39,"y":-85},{"x":-110,"y":-98},{"x":37,"y":-105},{"x":-40,"y":-90},{"x":-134,"y":-124},{"x":-119,"y":-60},{"x":-209,"y":-28},{"x":-2,"y":32}],"type":"coastline"},{"arc":[{"x":121622,"y":139588},{"x":-30,"y":-58},{"x":55,"y":2},{"x":62,"y":-112},{"x":-33,"y":0},{"x":24,"y":-39},{"x":-44,"y":35},{"x":-12,"y":-42},{"x":54,"y":-5},{"x":-41,"y":-11},{"x":34,"y":4},{"x":-22,"y":-13},{"x":24,"y":-25},{"x":52,"y":3},{"x":-48,"y":-14},{"x":78,"y":-137},{"x":-38,"y":-52},{"x":27,"y":-38},{"x":-32,"y":-47},{"x":17,"y":-70},{"x":151,"y":-150},{"x":80,"y":-305},{"x":37,"y":-9},{"x":-33,"y":-147},{"x":50,"y":-64},{"x":4,"y":-97},{"x":186,"y":-112},{"x":35,"y":-66},{"x":109,"y":13},{"x":14,"y":-40},{"x":55,"y":-25}],"type":"admin"},{"arc":[{"x":124411,"y":133083},{"x":4,"y":-215},{"x":-58,"y":-137},{"x":14,"y":-69},{"x":49,"y":-39},{"x":-9,"y":-61},{"x":-68,"y":-133},{"x":10,"y":-88},{"x":-89,"y":-78},{"x":16,"y":-68},{"x":-60,"y":-68},{"x":5,"y":-56},{"x":-67,"y":-27},{"x":-95,"y":-104},{"x":-52,"y":9},{"x":-27,"y":40},{"x":-108,"y":-24},{"x":-112,"y":30},{"x":-3,"y":-99},{"x":56,"y":-167},{"x":-18,"y":-78},{"x":29,"y":-24},{"x":-152,"y":-93},{"x":-53,"y":-88},{"x":6,"y":-254},{"x":-110,"y":-147},{"x":31,"y":-66},{"x":-46,"y":-147},{"x":-90,"y":-15},{"x":-80,"y":-52},{"x":21,"y":-69},{"x":-94,"y":-133},{"x":11,"y":-104},{"x":-41,"y":-19},{"x":-28,"y":19},{"x":-103,"y":-69},{"x":8,"y":-109},{"x":-40,"y":-54},{"x":31,"y":-108},{"x":-123,"y":-44},{"x":-50,"y":-153},{"x":-41,"y":-18},{"x":11,"y":-52},{"x":-124,"y":-98},{"x":9,"y":-92},{"x":-113,"y":-153},{"x":-16,"y":-77},{"x":71,"y":-77},{"x":-45,"y":-180},{"x":-156,"y":-32},{"x":-118,"y":-177},{"x":-151,"y":-32},{"x":6,"y":-175},{"x":-149,"y":-115}],"type":"admin"},{"arc":[{"x":122110,"y":128644},{"x":5,"y":-78},{"x":67,"y":-81},{"x":-51,"y":-184},{"x":50,"y":5},{"x":87,"y":-60},{"x":-28,"y":-72},{"x":12,"y":-224},{"x":84,"y":-79},{"x":-33,"y":-99},{"x":95,"y":-122},{"x":-83,"y":-88},{"x":-30,"y":-109},{"x":77,"y":-46},{"x":-4,"y":-35},{"x":34,"y":11}],"type":"admin"},{"arc":[{"x":122392,"y":127383},{"x":9,"y":76},{"x":60,"y":19},{"x":20,"y":-18},{"x":56,"y":63},{"x":52,"y":-10},{"x":24,"y":22},{"x":68,"y":-29},{"x":24,"y":39},{"x":66,"y":-43},{"x":78,"y":66},{"x":151,"y":-36},{"x":100,"y":-60},{"x":149,"y":41},{"x":33,"y":36},{"x":52,"y":-3},{"x":33,"y":53},{"x":42,"y":6},{"x":220,"y":-104},{"x":97,"y":15},{"x":84,"y":-80},{"x":36,"y":17},{"x":159,"y":-45},{"x":455,"y":140},{"x":50,"y":-22},{"x":12,"y":28},{"x":51,"y":-83},{"x":107,"y":10},{"x":158,"y":-147},{"x":47,"y":7},{"x":15,"y":-41},{"x":41,"y":-5},{"x":3,"y":-24},{"x":-130,"y":-72},{"x":-16,"y":-92},{"x":101,"y":-17},{"x":261,"y":-223},{"x":69,"y":-9},{"x":161,"y":78},{"x":283,"y":294},{"x":180,"y":42},{"x":37,"y":-15},{"x":103,"y":66},{"x":135,"y":-50},{"x":86,"y":80},{"x":3,"y":43},{"x":276,"y":35},{"x":72,"y":-52},{"x":73,"y":1},{"x":51,"y":-70},{"x":-11,"y":-82},{"x":133,"y":-59},{"x":44,"y":-57},{"x":57,"y":87},{"x":115,"y":-7},{"x":191,"y":123},{"x":-39,"y":102},{"x":72,"y":117}],"type":"admin"},{"arc":[{"x":127251,"y":127534},{"x":-52,"y":57},{"x":59,"y":158},{"x":-32,"y":41},{"x":85,"y":163},{"x":-30,"y":48},{"x":64,"y":121},{"x":-44,"y":70},{"x":24,"y":82},{"x":74,"y":45},{"x":18,"y":85},{"x":-58,"y":88},{"x":-38,"y":185},{"x":59,"y":69},{"x":85,"y":-13},{"x":81,"y":41},{"x":84,"y":-16},{"x":42,"y":48},{"x":79,"y":-22},{"x":47,"y":24},{"x":12,"y":107},{"x":31,"y":11},{"x":-14,"y":76},{"x":45,"y":142},{"x":-146,"y":147},{"x":73,"y":76},{"x":22,"y":86},{"x":-38,"y":132},{"x":57,"y":76},{"x":-24,"y":154},{"x":-98,"y":169},{"x":106,"y":159},{"x":144,"y":43},{"x":19,"y":-93},{"x":86,"y":-66},{"x":44,"y":6},{"x":22,"y":-41},{"x":43,"y":35},{"x":117,"y":-21},{"x":71,"y":38},{"x":171,"y":-64},{"x":85,"y":6},{"x":49,"y":-85},{"x":67,"y":-44},{"x":85,"y":29},{"x":98,"y":-48},{"x":116,"y":72},{"x":75,"y":-47},{"x":39,"y":150},{"x":134,"y":158},{"x":-13,"y":61},{"x":175,"y":101},{"x":43,"y":65},{"x":-5,"y":74},{"x":39,"y":8},{"x":73,"y":-52},{"x":96,"y":20},{"x":59,"y":68},{"x":33,"y":-8},{"x":87,"y":139},{"x":151,"y":73},{"x":95,"y":-8},{"x":20,"y":69},{"x":174,"y":106},{"x":92,"y":127},{"x":105,"y":69},{"x":27,"y":64},{"x":99,"y":63},{"x":78,"y":156},{"x":97,"y":-44},{"x":111,"y":-120},{"x":127,"y":-46},{"x":9,"y":-46},{"x":-59,"y":-86},{"x":-7,"y":-133}],"type":"admin"},{"arc":[{"x":118082,"y":138311},{"x":-48,"y":27},{"x":46,"y":-30},{"x":82,"y":6},{"x":-80,"y":-3}],"type":"coastline"},{"arc":[{"x":121288,"y":139543},{"x":-17,"y":-17},{"x":31,"y":56},{"x":-14,"y":-39}],"type":"coastline"},{"arc":[{"x":121622,"y":139588},{"x":0,"y":38},{"x":-19,"y":-45},{"x":7,"y":45},{"x":-19,"y":-20},{"x":-47,"y":23},{"x":-92,"y":-13},{"x":-20,"y":41},{"x":-67,"y":0},{"x":-15,"y":25},{"x":-44,"y":-102},{"x":8,"y":-32},{"x":19,"y":42},{"x":5,"y":-60},{"x":-38,"y":1},{"x":11,"y":-28},{"x":-40,"y":13},{"x":29,"y":-23},{"x":-28,"y":-67},{"x":-363,"y":-190},{"x":-395,"y":-140},{"x":-233,"y":-28},{"x":-25,"y":18},{"x":-7,"y":-28},{"x":-204,"y":-71},{"x":-182,"y":-18},{"x":-118,"y":18},{"x":-64,"y":-64},{"x":2,"y":-43},{"x":-53,"y":-31},{"x":0,"y":20},{"x":-47,"y":-62},{"x":-224,"y":-32},{"x":-59,"y":-74},{"x":-165,"y":-68},{"x":-26,"y":-39},{"x":-164,"y":-31},{"x":-16,"y":-17},{"x":24,"y":16},{"x":7,"y":-23},{"x":-57,"y":-51},{"x":-204,"y":-71},{"x":-98,"y":22},{"x":-35,"y":-65},{"x":-337,"y":-56},{"x":-31,"y":-12},{"x":42,"y":-3},{"x":-29,"y":-24},{"x":-47,"y":18},{"x":-28,"y":-74},{"x":-54,"y":14},{"x":1,"y":-67},{"x":-44,"y":88},{"x":15,"y":38},{"x":-32,"y":-70},{"x":32,"y":-38},{"x":-138,"y":-36},{"x":-35,"y":52},{"x":23,"y":-47},{"x":-21,"y":34},{"x":-11,"y":-37},{"x":-117,"y":-13},{"x":-87,"y":26},{"x":-23,"y":-18},{"x":13,"y":45},{"x":-3,"y":138},{"x":0,"y":-43},{"x":-98,"y":-1},{"x":1,"y":-134},{"x":-28,"y":-14},{"x":-19,"y":120},{"x":-1,"y":-43},{"x":-45,"y":0},{"x":-2,"y":-43},{"x":-61,"y":0},{"x":32,"y":-1},{"x":0,"y":-28},{"x":-44,"y":-2},{"x":-26,"y":54},{"x":-29,"y":-18},{"x":26,"y":-27},{"x":-51,"y":-1},{"x":0,"y":41},{"x":57,"y":32},{"x":-114,"y":-57},{"x":-117,"y":34},{"x":-31,"y":42},{"x":22,"y":25},{"x":-83,"y":21},{"x":-166,"y":-49},{"x":-58,"y":-88},{"x":-71,"y":-22},{"x":-10,"y":19},{"x":-68,"y":-44},{"x":53,"y":4},{"x":-50,"y":-28},{"x":34,"y":-32},{"x":-34,"y":-21},{"x":-25,"y":33},{"x":-14,"y":-27},{"x":-119,"y":-6},{"x":-117,"y":-67},{"x":-5,"y":-34},{"x":-16,"y":-19},{"x":-43,"y":0},{"x":-14,"y":10},{"x":13,"y":-12},{"x":57,"y":3},{"x":23,"y":48},{"x":-16,"y":-104},{"x":-42,"y":-1},{"x":12,"y":-19},{"x":-42,"y":44},{"x":12,"y":-28},{"x":-60,"y":-72},{"x":-59,"y":-16},{"x":-8,"y":20},{"x":5,"y":-29},{"x":-323,"y":7}],"type":"coastline"},{"arc":[{"x":115893,"y":137759},{"x":43,"y":-20},{"x":13,"y":-104},{"x":41,"y":26},{"x":-24,"y":-25},{"x":35,"y":-19},{"x":-6,"y":-18},{"x":-32,"y":12},{"x":12,"y":19},{"x":-30,"y":-20},{"x":56,"y":-28},{"x":-33,"y":-1},{"x":25,"y":-83},{"x":113,"y":-29},{"x":-22,"y":-205},{"x":-243,"y":-21},{"x":-42,"y":22},{"x":-34,"y":-147},{"x":-59,"y":3},{"x":13,"y":-206},{"x":-83,"y":-33},{"x":11,"y":-44},{"x":21,"y":20},{"x":64,"y":-24},{"x":-102,"y":-68},{"x":35,"y":-92},{"x":-136,"y":-38},{"x":-59,"y":35},{"x":-81,"y":173},{"x":-156,"y":58},{"x":-58,"y":-67},{"x":-244,"y":-56},{"x":-168,"y":-211},{"x":182,"y":-97},{"x":-16,"y":-169},{"x":27,"y":-77},{"x":-253,"y":27},{"x":2,"y":-163},{"x":157,"y":-122},{"x":82,"y":-160},{"x":90,"y":-21},{"x":73,"y":12},{"x":12,"y":55},{"x":35,"y":5},{"x":6,"y":-52},{"x":67,"y":-8},{"x":-17,"y":66},{"x":41,"y":107},{"x":-32,"y":85},{"x":6,"y":26},{"x":32,"y":-7},{"x":46,"y":-66},{"x":-19,"y":-67},{"x":92,"y":-103},{"x":78,"y":-16},{"x":7,"y":-90},{"x":165,"y":-220},{"x":258,"y":66},{"x":-10,"y":121},{"x":88,"y":12},{"x":16,"y":141},{"x":81,"y":-98},{"x":-47,"y":-96},{"x":21,"y":-122},{"x":-25,"y":-56},{"x":39,"y":-72},{"x":115,"y":-77},{"x":-8,"y":-87},{"x":105,"y":-97},{"x":95,"y":-23},{"x":122,"y":-81},{"x":46,"y":-79},{"x":-43,"y":-73},{"x":24,"y":-78},{"x":142,"y":-45},{"x":19,"y":-99},{"x":46,"y":-15},{"x":104,"y":45},{"x":68,"y":-1},{"x":18,"y":90},{"x":104,"y":-14},{"x":113,"y":105},{"x":128,"y":-47}],"type":"area"},{"arc":[{"x":117245,"y":134833},{"x":213,"y":142},{"x":165,"y":-15},{"x":79,"y":37},{"x":73,"y":-27},{"x":26,"y":36},{"x":210,"y":73},{"x":66,"y":82},{"x":109,"y":32},{"x":44,"y":-14},{"x":6,"y":92},{"x":46,"y":10},{"x":4,"y":53},{"x":67,"y":-14},{"x":23,"y":99},{"x":162,"y":-97},{"x":130,"y":-6},{"x":60,"y":36},{"x":79,"y":-61},{"x":17,"y":25},{"x":92,"y":-34},{"x":74,"y":24},{"x":60,"y":-14},{"x":105,"y":41},{"x":106,"y":-5},{"x":136,"y":-69},{"x":-12,"y":-39},{"x":101,"y":-7},{"x":22,"y":71},{"x":84,"y":-29},{"x":51,"y":14},{"x":108,"y":-91},{"x":30,"y":27},{"x":41,"y":-8},{"x":43,"y":-79},{"x":30,"y":-1},{"x":0,"y":28},{"x":92,"y":-36},{"x":119,"y":86},{"x":-20,"y":97},{"x":44,"y":22},{"x":0,"y":168},{"x":43,"y":24},{"x":55,"y":164},{"x":53,"y":-40},{"x":152,"y":-30},{"x":134,"y":-165},{"x":110,"y":-57},{"x":42,"y":3},{"x":30,"y":46},{"x":67,"y":-58},{"x":26,"y":29},{"x":61,"y":-28}],"type":"admin"},{"arc":[{"x":120903,"y":135370},{"x":21,"y":75},{"x":44,"y":23},{"x":187,"y":-24},{"x":72,"y":32},{"x":173,"y":-35},{"x":43,"y":-59},{"x":69,"y":11},{"x":42,"y":-41},{"x":199,"y":41},{"x":456,"y":-66},{"x":80,"y":40},{"x":34,"y":84}],"type":"admin"},{"arc":[{"x":115893,"y":137759},{"x":-264,"y":21},{"x":-9,"y":20},{"x":-51,"y":-14},{"x":-596,"y":127},{"x":-731,"y":246},{"x":-1002,"y":445},{"x":14,"y":40},{"x":-14,"y":-27},{"x":-57,"y":36},{"x":26,"y":37},{"x":-53,"y":-2},{"x":13,"y":28},{"x":34,"y":-10},{"x":-37,"y":15},{"x":5,"y":85},{"x":-63,"y":58},{"x":37,"y":-40},{"x":-18,"y":-85},{"x":-197,"y":90},{"x":-47,"y":56},{"x":-41,"y":-79},{"x":-53,"y":3},{"x":-92,"y":-133},{"x":45,"y":-90},{"x":28,"y":12},{"x":17,"y":-31},{"x":-29,"y":-12},{"x":38,"y":-51},{"x":-28,"y":-19},{"x":-77,"y":137},{"x":-204,"y":37},{"x":-152,"y":95},{"x":18,"y":33},{"x":174,"y":-97},{"x":105,"y":-11},{"x":127,"y":178},{"x":-38,"y":20},{"x":50,"y":60},{"x":263,"y":19},{"x":-265,"y":-18},{"x":-26,"y":-29},{"x":-482,"y":280},{"x":-12,"y":-20},{"x":-64,"y":25},{"x":-887,"y":560},{"x":-175,"y":159},{"x":44,"y":43},{"x":-48,"y":32},{"x":20,"y":-37},{"x":-24,"y":-26},{"x":3,"y":29},{"x":-17,"y":-17},{"x":1,"y":29},{"x":-22,"y":-16},{"x":-21,"y":23},{"x":39,"y":7},{"x":-32,"y":21},{"x":-6,"y":10},{"x":12,"y":9},{"x":103,"y":-20},{"x":-78,"y":25},{"x":-26,"y":-4},{"x":-11,"y":-10},{"x":-19,"y":34}],"type":"coastline"},{"arc":[{"x":111041,"y":140045},{"x":-47,"y":-57},{"x":6,"y":-208},{"x":407,"y":-576},{"x":154,"y":-138},{"x":221,"y":-74},{"x":129,"y":-84},{"x":121,"y":-180},{"x":96,"y":-413},{"x":348,"y":-177},{"x":72,"y":-74},{"x":26,"y":-81},{"x":41,"y":-2},{"x":-12,"y":-22},{"x":77,"y":-36},{"x":64,"y":-77},{"x":152,"y":-279},{"x":177,"y":-185},{"x":-136,"y":-90},{"x":-125,"y":-33},{"x":7,"y":-45},{"x":-32,"y":-20},{"x":-130,"y":28},{"x":-89,"y":94},{"x":42,"y":-149},{"x":157,"y":-198},{"x":-109,"y":-78},{"x":-74,"y":-185},{"x":20,"y":-207},{"x":-66,"y":-175}],"type":"admin"},{"arc":[{"x":112538,"y":136324},{"x":-50,"y":-131},{"x":-132,"y":-84},{"x":-176,"y":-227},{"x":7,"y":-119},{"x":82,"y":-202},{"x":-184,"y":-288},{"x":63,"y":-281},{"x":-150,"y":-295},{"x":-20,"y":-133},{"x":277,"y":-204},{"x":107,"y":-249},{"x":-67,"y":-149},{"x":107,"y":-98},{"x":51,"y":-136},{"x":150,"y":-179},{"x":6,"y":-207},{"x":128,"y":-141},{"x":168,"y":-300},{"x":92,"y":-49},{"x":107,"y":50},{"x":43,"y":-15},{"x":47,"y":-182},{"x":165,"y":-224},{"x":210,"y":-64},{"x":495,"y":-493},{"x":307,"y":-113},{"x":82,"y":-92},{"x":-67,"y":-78},{"x":-60,"y":-4}],"type":"admin"},{"arc":[{"x":114326,"y":131637},{"x":-98,"y":-67},{"x":63,"y":-163},{"x":-4,"y":-120},{"x":33,"y":-25},{"x":165,"y":-9}],"type":"admin"},{"arc":[{"x":114485,"y":131253},{"x":471,"y":-245},{"x":172,"y":-38},{"x":145,"y":27},{"x":87,"y":-50}],"type":"admin"},{"arc":[{"x":115360,"y":130947},{"x":65,"y":36},{"x":-44,"y":109},{"x":82,"y":3},{"x":9,"y":84},{"x":-53,"y":78},{"x":-41,"y":-1},{"x":168,"y":254},{"x":195,"y":484},{"x":235,"y":76},{"x":107,"y":79},{"x":167,"y":-50},{"x":164,"y":99},{"x":0,"y":78},{"x":46,"y":52},{"x":-17,"y":43},{"x":89,"y":35},{"x":-2,"y":47},{"x":-116,"y":-14},{"x":-9,"y":139},{"x":-33,"y":19},{"x":-41,"y":-37},{"x":-28,"y":49},{"x":18,"y":76},{"x":77,"y":37},{"x":10,"y":-37},{"x":253,"y":31},{"x":118,"y":249},{"x":17,"y":144},{"x":157,"y":6},{"x":105,"y":64},{"x":-84,"y":45},{"x":-24,"y":83},{"x":23,"y":15},{"x":-15,"y":82},{"x":81,"y":-15},{"x":-35,"y":83},{"x":43,"y":32},{"x":-26,"y":2},{"x":34,"y":154},{"x":-25,"y":102},{"x":55,"y":114},{"x":71,"y":50},{"x":76,"y":-30},{"x":65,"y":9},{"x":-1,"y":115},{"x":-51,"y":53},{"x":32,"y":34},{"x":-44,"y":73},{"x":9,"y":74},{"x":89,"y":-12},{"x":72,"y":174},{"x":-8,"y":97},{"x":-153,"y":96},{"x":3,"y":224}],"type":"admin"},{"arc":[{"x":120903,"y":135370},{"x":44,"y":-74},{"x":170,"y":-104},{"x":101,"y":-25},{"x":108,"y":32},{"x":90,"y":-9},{"x":-1,"y":-65},{"x":50,"y":-42},{"x":-47,"y":-96},{"x":-128,"y":-54},{"x":-7,"y":-49},{"x":-85,"y":-6},{"x":55,"y":-61},{"x":40,"y":4},{"x":27,"y":-73},{"x":-55,"y":-32},{"x":-45,"y":9},{"x":-28,"y":-46},{"x":-125,"y":-51},{"x":-4,"y":-55},{"x":-71,"y":-33},{"x":-88,"y":-123},{"x":9,"y":-127},{"x":92,"y":-110},{"x":28,"y":-121},{"x":-40,"y":-57},{"x":-47,"y":35},{"x":-31,"y":-15},{"x":-15,"y":-187},{"x":35,"y":-85},{"x":-120,"y":0},{"x":-12,"y":-60},{"x":-49,"y":-7},{"x":78,"y":-132},{"x":66,"y":-10},{"x":7,"y":-81},{"x":40,"y":-49},{"x":136,"y":-80},{"x":-6,"y":-56},{"x":-191,"y":-84},{"x":-107,"y":72},{"x":-51,"y":-83},{"x":-63,"y":-34},{"x":-36,"y":47},{"x":-63,"y":-105},{"x":-56,"y":63},{"x":-123,"y":-45},{"x":-21,"y":-200},{"x":-66,"y":-15},{"x":-7,"y":-83},{"x":51,"y":-299},{"x":-19,"y":-52},{"x":71,"y":-163},{"x":-104,"y":-147},{"x":-126,"y":-3},{"x":-18,"y":-25},{"x":25,"y":-69},{"x":71,"y":14},{"x":-73,"y":-23},{"x":-3,"y":-35},{"x":48,"y":1},{"x":-15,"y":-35},{"x":61,"y":-13},{"x":-34,"y":-46},{"x":18,"y":-36},{"x":-98,"y":-81},{"x":29,"y":-69},{"x":-246,"y":-35},{"x":-170,"y":79},{"x":-129,"y":21},{"x":-79,"y":-28},{"x":13,"y":-64},{"x":-46,"y":-38},{"x":-15,"y":-73},{"x":-80,"y":4},{"x":-10,"y":-124},{"x":-97,"y":-87},{"x":36,"y":-51},{"x":-37,"y":-87},{"x":11,"y":-71},{"x":45,"y":-31},{"x":101,"y":3},{"x":79,"y":61},{"x":58,"y":-98},{"x":37,"y":19},{"x":109,"y":-25},{"x":0,"y":-100},{"x":-60,"y":-105},{"x":61,"y":-50},{"x":-11,"y":-102},{"x":56,"y":-104},{"x":-109,"y":-58},{"x":-2,"y":72},{"x":-60,"y":43},{"x":-130,"y":-111},{"x":133,"y":-226},{"x":-1,"y":-72},{"x":138,"y":-127},{"x":33,"y":-68},{"x":84,"y":-42},{"x":199,"y":-12},{"x":70,"y":20},{"x":90,"y":-109},{"x":-31,"y":-36},{"x":36,"y":-64},{"x":-55,"y":-65},{"x":-12,"y":-130},{"x":-71,"y":18},{"x":-60,"y":-20},{"x":-61,"y":34},{"x":-49,"y":-18},{"x":-19,"y":-70},{"x":-117,"y":-62},{"x":-60,"y":-78},{"x":-111,"y":-20},{"x":-144,"y":103},{"x":-36,"y":-1},{"x":-64,"y":-164},{"x":-68,"y":-19},{"x":10,"y":-55},{"x":-37,"y":7},{"x":-17,"y":-114},{"x":-59,"y":10}],"type":"area"},{"arc":[{"x":119221,"y":129207},{"x":-27,"y":-98},{"x":36,"y":-57},{"x":-61,"y":-138},{"x":74,"y":-188},{"x":-38,"y":22},{"x":-26,"y":-68},{"x":94,"y":-88},{"x":30,"y":-268},{"x":102,"y":-52},{"x":11,"y":-117},{"x":61,"y":-20}],"type":"admin"},{"arc":[{"x":119477,"y":128135},{"x":86,"y":18},{"x":139,"y":-29},{"x":81,"y":61},{"x":84,"y":3},{"x":37,"y":34},{"x":132,"y":-18},{"x":201,"y":189},{"x":31,"y":-11},{"x":74,"y":56},{"x":56,"y":-17},{"x":108,"y":26},{"x":42,"y":34},{"x":41,"y":-129},{"x":92,"y":-5},{"x":31,"y":-35},{"x":54,"y":29},{"x":41,"y":-11},{"x":15,"y":53},{"x":82,"y":60},{"x":10,"y":58},{"x":184,"y":21},{"x":10,"y":86},{"x":42,"y":39},{"x":43,"y":-21},{"x":34,"y":22},{"x":87,"y":101},{"x":70,"y":-64},{"x":-16,"y":-59},{"x":51,"y":-129},{"x":30,"y":-63},{"x":58,"y":-20},{"x":51,"y":-120},{"x":56,"y":56},{"x":182,"y":4},{"x":-34,"y":37},{"x":31,"y":12},{"x":7,"y":61},{"x":108,"y":3},{"x":80,"y":69},{"x":52,"y":115},{"x":70,"y":-7}],"type":"admin"},{"arc":[{"x":115360,"y":130947},{"x":39,"y":-19},{"x":-22,"y":-64},{"x":72,"y":-25},{"x":-19,"y":-76}],"type":"admin"},{"arc":[{"x":115430,"y":130763},{"x":63,"y":43},{"x":93,"y":-36},{"x":-22,"y":-49},{"x":70,"y":5},{"x":19,"y":27},{"x":10,"y":-71},{"x":51,"y":-4},{"x":33,"y":-63},{"x":-47,"y":-31},{"x":62,"y":4},{"x":119,"y":-88},{"x":117,"y":92},{"x":-28,"y":-43},{"x":66,"y":-31},{"x":33,"y":-110},{"x":-60,"y":-81},{"x":-11,"y":-362},{"x":65,"y":-68},{"x":27,"y":18},{"x":27,"y":-21},{"x":12,"y":-36},{"x":-47,"y":-36},{"x":47,"y":-37},{"x":-16,"y":-37},{"x":54,"y":-67},{"x":-61,"y":-103},{"x":26,"y":-75},{"x":-45,"y":-20},{"x":-24,"y":-61},{"x":21,"y":-36},{"x":-44,"y":-57},{"x":48,"y":-56},{"x":-53,"y":-13},{"x":7,"y":-64},{"x":50,"y":-42},{"x":23,"y":78},{"x":76,"y":-60},{"x":11,"y":-134},{"x":50,"y":-1},{"x":30,"y":-42},{"x":-45,"y":-24},{"x":34,"y":-37},{"x":53,"y":8},{"x":22,"y":-36},{"x":25,"y":18},{"x":67,"y":-95},{"x":56,"y":-12},{"x":21,"y":22},{"x":36,"y":-26},{"x":18,"y":32},{"x":-44,"y":21},{"x":22,"y":39},{"x":71,"y":-30},{"x":147,"y":-230},{"x":208,"y":-208},{"x":59,"y":8},{"x":89,"y":-53},{"x":143,"y":113},{"x":134,"y":23},{"x":95,"y":105},{"x":94,"y":20},{"x":24,"y":63},{"x":78,"y":20},{"x":47,"y":54},{"x":75,"y":-29},{"x":37,"y":51},{"x":-46,"y":46},{"x":6,"y":82},{"x":37,"y":-12},{"x":42,"y":54},{"x":85,"y":12},{"x":-32,"y":-55},{"x":99,"y":-11},{"x":25,"y":-29},{"x":55,"y":17},{"x":0,"y":-50},{"x":31,"y":7},{"x":10,"y":-36},{"x":72,"y":8},{"x":39,"y":39},{"x":25,"y":-18},{"x":16,"y":47},{"x":173,"y":110},{"x":26,"y":8},{"x":20,"y":-65},{"x":21,"y":26},{"x":140,"y":10},{"x":-11,"y":103},{"x":35,"y":66},{"x":97,"y":37},{"x":31,"y":67},{"x":61,"y":-1},{"x":47,"y":68},{"x":47,"y":5},{"x":70,"y":-73},{"x":118,"y":-19},{"x":34,"y":-48}],"type":"admin"},{"arc":[{"x":119477,"y":128135},{"x":-96,"y":-126},{"x":-70,"y":-51},{"x":-195,"y":-58},{"x":-54,"y":-74},{"x":-23,"y":-64},{"x":41,"y":-46},{"x":4,"y":-111},{"x":-33,"y":-40},{"x":-2,"y":-101},{"x":-75,"y":-49},{"x":-52,"y":-94},{"x":-38,"y":-227},{"x":-45,"y":-44},{"x":-65,"y":32},{"x":-10,"y":-41},{"x":32,"y":-149},{"x":146,"y":-101},{"x":13,"y":-186},{"x":-44,"y":-90},{"x":61,"y":-89},{"x":-12,"y":-110},{"x":68,"y":-142},{"x":3,"y":-34},{"x":-25,"y":31},{"x":-41,"y":-15},{"x":3,"y":-38},{"x":68,"y":-49},{"x":-28,"y":-69},{"x":55,"y":-141},{"x":-78,"y":-219},{"x":28,"y":-53},{"x":70,"y":-34},{"x":-110,"y":-243},{"x":51,"y":-151},{"x":-46,"y":-79},{"x":63,"y":-66},{"x":-35,"y":-95},{"x":27,"y":-111},{"x":-38,"y":-50},{"x":-64,"y":14},{"x":-27,"y":50},{"x":-91,"y":-13},{"x":-15,"y":-48},{"x":-60,"y":31},{"x":1,"y":72},{"x":-59,"y":33},{"x":20,"y":98},{"x":-48,"y":82},{"x":36,"y":56},{"x":-38,"y":67},{"x":-15,"y":-57},{"x":-136,"y":-33},{"x":-161,"y":-145},{"x":10,"y":-36},{"x":-121,"y":-204},{"x":-180,"y":-88},{"x":-14,"y":-116},{"x":-75,"y":-41},{"x":36,"y":-76},{"x":-40,"y":-188},{"x":36,"y":-275},{"x":-32,"y":-90},{"x":-45,"y":6},{"x":-35,"y":-55},{"x":125,"y":5},{"x":-12,"y":-311},{"x":51,"y":-93},{"x":-88,"y":-196},{"x":9,"y":-74},{"x":-81,"y":-50},{"x":-26,"y":-89},{"x":-85,"y":-65},{"x":2,"y":-34},{"x":-150,"y":-118},{"x":-126,"y":36},{"x":-127,"y":-22}],"type":"area"},{"arc":[{"x":117370,"y":122791},{"x":55,"y":-57},{"x":-15,"y":-94},{"x":66,"y":-95},{"x":17,"y":-161},{"x":-38,"y":-43},{"x":20,"y":-23},{"x":-45,"y":-226},{"x":-145,"y":-125},{"x":5,"y":-75},{"x":112,"y":-189},{"x":-8,"y":-78},{"x":-48,"y":-50},{"x":-76,"y":1},{"x":36,"y":-229},{"x":147,"y":-21},{"x":-8,"y":-78},{"x":139,"y":-356},{"x":171,"y":16},{"x":11,"y":-37},{"x":130,"y":36},{"x":224,"y":-49},{"x":160,"y":70},{"x":137,"y":-15},{"x":98,"y":76},{"x":89,"y":-11}],"type":"admin"},{"arc":[{"x":118604,"y":120978},{"x":18,"y":44},{"x":124,"y":85},{"x":38,"y":-22},{"x":79,"y":18},{"x":50,"y":-64},{"x":130,"y":53},{"x":65,"y":-3},{"x":45,"y":42},{"x":4,"y":73},{"x":55,"y":-19},{"x":49,"y":21},{"x":30,"y":104},{"x":120,"y":44},{"x":79,"y":-12},{"x":23,"y":63},{"x":65,"y":47},{"x":11,"y":63},{"x":-38,"y":70},{"x":87,"y":265},{"x":46,"y":42},{"x":98,"y":41},{"x":101,"y":-128},{"x":123,"y":13},{"x":15,"y":-44},{"x":61,"y":178},{"x":63,"y":51},{"x":30,"y":126},{"x":2,"y":118},{"x":-57,"y":72},{"x":127,"y":91},{"x":-78,"y":119},{"x":133,"y":87},{"x":-8,"y":65},{"x":72,"y":145},{"x":33,"y":213},{"x":75,"y":155}],"type":"admin"},{"arc":[{"x":120474,"y":123194},{"x":-18,"y":70},{"x":25,"y":64},{"x":99,"y":68},{"x":91,"y":-3},{"x":47,"y":44},{"x":-61,"y":165},{"x":-107,"y":150},{"x":-15,"y":172},{"x":125,"y":47},{"x":65,"y":94},{"x":-32,"y":81},{"x":102,"y":71},{"x":33,"y":-14},{"x":172,"y":52},{"x":56,"y":-39},{"x":169,"y":-39},{"x":-4,"y":139},{"x":-53,"y":132},{"x":66,"y":150},{"x":69,"y":49},{"x":65,"y":369},{"x":131,"y":-32},{"x":41,"y":-70},{"x":97,"y":47},{"x":95,"y":-39},{"x":119,"y":48},{"x":32,"y":57},{"x":62,"y":14},{"x":16,"y":65},{"x":2,"y":110},{"x":-77,"y":131},{"x":43,"y":63},{"x":127,"y":1},{"x":75,"y":-41},{"x":73,"y":18},{"x":99,"y":-78},{"x":192,"y":-23},{"x":263,"y":22},{"x":22,"y":33},{"x":-22,"y":230},{"x":87,"y":119},{"x":-45,"y":119},{"x":36,"y":131},{"x":104,"y":53},{"x":97,"y":151},{"x":2,"y":56},{"x":104,"y":81},{"x":236,"y":-6},{"x":134,"y":52},{"x":-33,"y":112},{"x":-73,"y":32},{"x":-3,"y":59},{"x":-204,"y":70},{"x":-42,"y":89},{"x":-114,"y":58},{"x":-69,"y":159},{"x":-110,"y":67},{"x":-162,"y":-34},{"x":-110,"y":58},{"x":-56,"y":183},{"x":51,"y":177},{"x":-139,"y":72},{"x":-57,"y":-47}],"type":"admin"},{"arc":[{"x":115430,"y":130763},{"x":74,"y":-35},{"x":-26,"y":-72},{"x":-137,"y":4},{"x":-25,"y":-176},{"x":-80,"y":-30},{"x":179,"y":-186},{"x":46,"y":-104},{"x":-179,"y":-465},{"x":20,"y":-199},{"x":-39,"y":-316},{"x":204,"y":-332},{"x":54,"y":-7},{"x":64,"y":-80},{"x":55,"y":-146},{"x":145,"y":-105},{"x":83,"y":-136},{"x":5,"y":-93},{"x":-94,"y":-55},{"x":-69,"y":-141},{"x":10,"y":-109},{"x":54,"y":-77},{"x":69,"y":-246},{"x":-75,"y":0},{"x":17,"y":-179},{"x":29,"y":-69},{"x":102,"y":-88},{"x":-19,"y":-97},{"x":49,"y":-6},{"x":17,"y":-121},{"x":149,"y":-246},{"x":-5,"y":-221},{"x":48,"y":-46},{"x":-206,"y":-171},{"x":-31,"y":26},{"x":-56,"y":-29},{"x":-370,"y":-209},{"x":-164,"y":-135},{"x":-86,"y":9},{"x":-64,"y":-64},{"x":-150,"y":15},{"x":-53,"y":43},{"x":-59,"y":-13},{"x":-6,"y":-109},{"x":-40,"y":-43},{"x":-186,"y":-2},{"x":-15,"y":-72},{"x":69,"y":-67},{"x":-29,"y":-38},{"x":29,"y":-34},{"x":-7,"y":-83},{"x":-40,"y":12},{"x":-40,"y":-39},{"x":-1,"y":-61},{"x":-88,"y":-62},{"x":15,"y":-71}],"type":"admin"},{"arc":[{"x":114577,"y":125387},{"x":69,"y":-53},{"x":-3,"y":-87},{"x":-157,"y":-6},{"x":-123,"y":-100},{"x":-62,"y":-106},{"x":53,"y":-119},{"x":-29,"y":-144},{"x":-126,"y":-259},{"x":-71,"y":-44},{"x":-31,"y":-102},{"x":-101,"y":-24},{"x":-79,"y":-85},{"x":-98,"y":-29},{"x":-75,"y":-292},{"x":89,"y":-137},{"x":-41,"y":-149},{"x":-169,"y":-41},{"x":-62,"y":-42},{"x":-35,"y":-56},{"x":-77,"y":-35},{"x":-52,"y":-120},{"x":-71,"y":-33}],"type":"admin"},{"arc":[{"x":113326,"y":123324},{"x":61,"y":-187},{"x":189,"y":-71},{"x":-2,"y":-138},{"x":47,"y":-5},{"x":101,"y":-229},{"x":214,"y":95},{"x":181,"y":-11},{"x":107,"y":-77},{"x":106,"y":-18},{"x":73,"y":114},{"x":73,"y":19},{"x":101,"y":-58},{"x":29,"y":41},{"x":34,"y":-61},{"x":96,"y":-26},{"x":-19,"y":-92},{"x":34,"y":-170},{"x":82,"y":-51},{"x":86,"y":-8},{"x":141,"y":-125},{"x":102,"y":48},{"x":-8,"y":56},{"x":-51,"y":-18},{"x":-66,"y":49},{"x":-40,"y":118},{"x":37,"y":-9},{"x":31,"y":34},{"x":40,"y":141},{"x":-18,"y":39},{"x":33,"y":9},{"x":214,"y":-111},{"x":70,"y":109},{"x":89,"y":-16},{"x":34,"y":-25},{"x":-26,"y":-72},{"x":142,"y":-82},{"x":108,"y":5},{"x":78,"y":-80},{"x":168,"y":29},{"x":110,"y":-44},{"x":11,"y":54},{"x":58,"y":42},{"x":72,"y":250},{"x":94,"y":70},{"x":118,"y":-44},{"x":82,"y":43},{"x":268,"y":-26},{"x":156,"y":56},{"x":95,"y":-59},{"x":157,"y":20},{"x":152,"y":-61}],"type":"admin"},{"arc":[{"x":114485,"y":131253},{"x":6,"y":-51},{"x":-89,"y":-21},{"x":25,"y":-39},{"x":-31,"y":-99},{"x":-69,"y":-56},{"x":-44,"y":17},{"x":-19,"y":-32},{"x":-63,"y":23},{"x":0,"y":86},{"x":-80,"y":34},{"x":-128,"y":-79},{"x":19,"y":-115},{"x":-118,"y":34},{"x":-31,"y":-39},{"x":28,"y":-44},{"x":-37,"y":-55},{"x":31,"y":3},{"x":43,"y":-97},{"x":-28,"y":-27},{"x":-53,"y":38},{"x":-53,"y":-95},{"x":52,"y":-42},{"x":60,"y":-151},{"x":-17,"y":-29},{"x":46,"y":-47},{"x":-40,"y":-60},{"x":-81,"y":-17},{"x":-75,"y":-135},{"x":41,"y":-108},{"x":69,"y":-22},{"x":-47,"y":-47},{"x":73,"y":-46},{"x":11,"y":-98},{"x":125,"y":-161},{"x":-26,"y":-27},{"x":-37,"y":32},{"x":-32,"y":-42},{"x":-120,"y":85},{"x":2,"y":-54},{"x":-29,"y":15},{"x":38,"y":-29},{"x":-50,"y":-50},{"x":35,"y":-42},{"x":11,"y":-127},{"x":-77,"y":80},{"x":-86,"y":-50},{"x":-47,"y":8},{"x":58,"y":-190},{"x":-85,"y":-156},{"x":-54,"y":-5},{"x":-13,"y":-158},{"x":38,"y":-101},{"x":-90,"y":21},{"x":-1,"y":47},{"x":-119,"y":-198},{"x":-7,"y":-154},{"x":-53,"y":-67},{"x":-24,"y":-141},{"x":-138,"y":-156},{"x":26,"y":-132},{"x":192,"y":-157},{"x":81,"y":-166},{"x":-45,"y":-9},{"x":-37,"y":-57},{"x":10,"y":-155},{"x":-70,"y":-52},{"x":-39,"y":-117},{"x":-80,"y":-79},{"x":-68,"y":-9},{"x":-24,"y":-50},{"x":60,"y":-87},{"x":33,"y":-5},{"x":33,"y":-176}],"type":"area"},{"arc":[{"x":113177,"y":126966},{"x":152,"y":-73},{"x":32,"y":42},{"x":96,"y":7},{"x":229,"y":-174},{"x":81,"y":28},{"x":203,"y":-7},{"x":53,"y":27},{"x":227,"y":-28},{"x":54,"y":-34},{"x":17,"y":-90},{"x":50,"y":-22},{"x":212,"y":5},{"x":41,"y":63},{"x":104,"y":18},{"x":-24,"y":94},{"x":84,"y":-14},{"x":85,"y":-251},{"x":-60,"y":-113},{"x":18,"y":-44},{"x":-71,"y":-38},{"x":-7,"y":-69},{"x":-63,"y":-45},{"x":-50,"y":9},{"x":-21,"y":-42},{"x":-27,"y":-85},{"x":59,"y":-140},{"x":-84,"y":-69},{"x":-111,"y":-30},{"x":-36,"y":-51},{"x":-56,"y":-326},{"x":106,"y":-56},{"x":36,"y":-67},{"x":71,"y":-4}],"type":"area"},{"arc":[{"x":114326,"y":131637},{"x":-195,"y":51},{"x":-358,"y":270},{"x":-86,"y":-30},{"x":-192,"y":27},{"x":-56,"y":-21},{"x":-132,"y":97},{"x":-101,"y":-8},{"x":-42,"y":65},{"x":-137,"y":30},{"x":-136,"y":77},{"x":-113,"y":144},{"x":-401,"y":211},{"x":-202,"y":57},{"x":-191,"y":-81},{"x":-112,"y":-11},{"x":-85,"y":-4},{"x":-47,"y":28},{"x":-225,"y":-26},{"x":-112,"y":43}],"type":"admin"},{"arc":[{"x":111403,"y":132556},{"x":-10,"y":-150},{"x":47,"y":-27},{"x":62,"y":42},{"x":38,"y":-25},{"x":-19,"y":-108},{"x":-42,"y":-33},{"x":95,"y":-135},{"x":-71,"y":-94},{"x":54,"y":-49},{"x":118,"y":41},{"x":35,"y":-31},{"x":-35,"y":1},{"x":-26,"y":-50},{"x":-33,"y":-162},{"x":19,"y":-101},{"x":99,"y":-105},{"x":-71,"y":-132},{"x":-121,"y":78},{"x":-97,"y":-42},{"x":-3,"y":-67},{"x":-63,"y":-68},{"x":68,"y":3},{"x":20,"y":-25},{"x":-21,"y":-85},{"x":39,"y":-29},{"x":11,"y":-105},{"x":74,"y":-110},{"x":-2,"y":-311},{"x":-21,"y":-98},{"x":-64,"y":-23},{"x":-62,"y":-78},{"x":-169,"y":-39},{"x":-2,"y":-41},{"x":40,"y":-18},{"x":-17,"y":-134},{"x":56,"y":48},{"x":34,"y":-122},{"x":-70,"y":-51},{"x":-53,"y":-95},{"x":-21,"y":7},{"x":-17,"y":-64}],"type":"admin"},{"arc":[{"x":111202,"y":129969},{"x":-56,"y":-59},{"x":-9,"y":-84},{"x":185,"y":25},{"x":-82,"y":-245},{"x":60,"y":50},{"x":75,"y":158},{"x":79,"y":6},{"x":32,"y":-50},{"x":96,"y":76},{"x":53,"y":-38},{"x":-178,"y":-165},{"x":0,"y":-55},{"x":-93,"y":-135},{"x":28,"y":-8},{"x":-5,"y":-104},{"x":-55,"y":-45},{"x":-82,"y":-248},{"x":28,"y":-49},{"x":-35,"y":-150},{"x":30,"y":-117},{"x":-54,"y":-104},{"x":38,"y":3},{"x":-8,"y":-90},{"x":117,"y":-1},{"x":-6,"y":-76},{"x":14,"y":21},{"x":56,"y":-45},{"x":58,"y":21},{"x":15,"y":-150},{"x":29,"y":-30},{"x":-26,"y":-129}],"type":"admin"},{"arc":[{"x":111506,"y":128152},{"x":31,"y":-50},{"x":165,"y":-70},{"x":102,"y":2},{"x":-25,"y":-82},{"x":119,"y":-28},{"x":-10,"y":-43},{"x":39,"y":-37},{"x":-19,"y":-47},{"x":45,"y":-36},{"x":-45,"y":-155},{"x":6,"y":-138},{"x":37,"y":-29},{"x":-37,"y":-61},{"x":95,"y":-146},{"x":-7,"y":-49},{"x":-45,"y":-25},{"x":-8,"y":-84},{"x":101,"y":-228},{"x":58,"y":-30},{"x":53,"y":-92},{"x":43,"y":-370}],"type":"admin"},{"arc":[{"x":112204,"y":126354},{"x":53,"y":61},{"x":91,"y":20},{"x":122,"y":79},{"x":120,"y":-69},{"x":111,"y":6},{"x":75,"y":-78},{"x":113,"y":308},{"x":47,"y":46},{"x":15,"y":114},{"x":157,"y":115},{"x":69,"y":10}],"type":"area"},{"arc":[{"x":112204,"y":126354},{"x":74,"y":-141},{"x":-32,"y":-80},{"x":19,"y":-81},{"x":225,"y":-294},{"x":9,"y":-83},{"x":-135,"y":-98},{"x":-27,"y":-120},{"x":36,"y":-52},{"x":-96,"y":-191},{"x":-66,"y":-73},{"x":-124,"y":-9}],"type":"admin"},{"arc":[{"x":112087,"y":125132},{"x":-56,"y":-135},{"x":36,"y":-123},{"x":-123,"y":-146},{"x":70,"y":-51},{"x":4,"y":-59},{"x":92,"y":-68},{"x":14,"y":-53}],"type":"admin"},{"arc":[{"x":112124,"y":124497},{"x":-12,"y":-29},{"x":69,"y":-20},{"x":25,"y":-86},{"x":-49,"y":-86},{"x":34,"y":-51},{"x":-33,"y":-112},{"x":73,"y":-40},{"x":51,"y":-129},{"x":156,"y":-10},{"x":73,"y":-82},{"x":20,"y":-243},{"x":40,"y":-80},{"x":-17,"y":-35},{"x":49,"y":-42}],"type":"admin"},{"arc":[{"x":112603,"y":123452},{"x":82,"y":-7},{"x":90,"y":75},{"x":112,"y":12},{"x":57,"y":-63},{"x":110,"y":-34},{"x":83,"y":-99},{"x":189,"y":-12}],"type":"admin"},{"arc":[{"x":111041,"y":140045},{"x":33,"y":60},{"x":-45,"y":-39},{"x":16,"y":46},{"x":-65,"y":54},{"x":17,"y":36},{"x":40,"y":-59},{"x":54,"y":-28},{"x":-51,"y":31},{"x":-32,"y":54},{"x":-98,"y":77},{"x":86,"y":-73},{"x":-18,"y":-36},{"x":-61,"y":15},{"x":15,"y":35},{"x":-27,"y":-49},{"x":13,"y":59},{"x":-17,"y":-60},{"x":-107,"y":27},{"x":-56,"y":-41},{"x":-57,"y":25},{"x":-39,"y":-50},{"x":-98,"y":22},{"x":25,"y":-114},{"x":6,"y":41},{"x":22,"y":-36},{"x":-10,"y":-91},{"x":32,"y":53},{"x":30,"y":-23},{"x":-22,"y":-27},{"x":-1,"y":-18},{"x":40,"y":-21},{"x":-40,"y":23},{"x":1,"y":13},{"x":8,"y":-3},{"x":7,"y":11},{"x":23,"y":-35},{"x":62,"y":10},{"x":-20,"y":-12},{"x":40,"y":-65},{"x":-20,"y":-166},{"x":-183,"y":-529},{"x":-78,"y":-82},{"x":60,"y":17},{"x":34,"y":49},{"x":-45,"y":-65},{"x":38,"y":-10},{"x":68,"y":-100},{"x":-4,"y":-168},{"x":-82,"y":-231},{"x":-247,"y":-402},{"x":-388,"y":-453},{"x":-460,"y":-463},{"x":-330,"y":-225},{"x":-82,"y":14},{"x":42,"y":-15},{"x":-31,"y":-58},{"x":-26,"y":19},{"x":17,"y":-25},{"x":-42,"y":-35},{"x":-286,"y":-180},{"x":-467,"y":-193},{"x":-537,"y":-107},{"x":-361,"y":0},{"x":-227,"y":45}],"type":"coastline"},{"arc":[{"x":107110,"y":136494},{"x":41,"y":-79},{"x":-42,"y":-31},{"x":-12,"y":-88},{"x":135,"y":9},{"x":26,"y":-224},{"x":-37,"y":-57},{"x":34,"y":-152},{"x":-84,"y":-93},{"x":-13,"y":-79},{"x":-137,"y":-56},{"x":-20,"y":-87},{"x":-53,"y":-51},{"x":2,"y":-67},{"x":50,"y":-47},{"x":-16,"y":-27},{"x":68,"y":-15},{"x":28,"y":-40},{"x":-100,"y":-164}],"type":"area"},{"arc":[{"x":106980,"y":135146},{"x":107,"y":-35},{"x":49,"y":-63},{"x":66,"y":9},{"x":185,"y":-62},{"x":57,"y":27},{"x":8,"y":-70},{"x":32,"y":-19},{"x":75,"y":14},{"x":18,"y":56},{"x":104,"y":-46},{"x":25,"y":-51},{"x":104,"y":-46},{"x":30,"y":13},{"x":76,"y":-73},{"x":56,"y":10},{"x":95,"y":-72},{"x":39,"y":75},{"x":51,"y":-2},{"x":25,"y":36},{"x":47,"y":-5},{"x":77,"y":-123},{"x":38,"y":31},{"x":79,"y":-4},{"x":-5,"y":93},{"x":53,"y":1},{"x":-29,"y":85},{"x":74,"y":36},{"x":14,"y":49},{"x":43,"y":-13},{"x":20,"y":42},{"x":-61,"y":195},{"x":14,"y":94},{"x":41,"y":-7},{"x":39,"y":47},{"x":16,"y":-19},{"x":23,"y":91},{"x":74,"y":-20},{"x":-18,"y":78},{"x":-63,"y":15},{"x":173,"y":38},{"x":9,"y":41},{"x":58,"y":31},{"x":-34,"y":49},{"x":48,"y":65},{"x":29,"y":-102},{"x":75,"y":33},{"x":106,"y":-88},{"x":72,"y":8},{"x":-17,"y":80},{"x":71,"y":-8},{"x":46,"y":25},{"x":117,"y":-55},{"x":-2,"y":42},{"x":123,"y":189},{"x":6,"y":172},{"x":39,"y":-18},{"x":-5,"y":-79},{"x":106,"y":-25},{"x":-6,"y":-82},{"x":-59,"y":-53},{"x":70,"y":45},{"x":-1,"y":76},{"x":45,"y":69},{"x":26,"y":-47},{"x":-46,"y":-73},{"x":74,"y":-21},{"x":-18,"y":-23},{"x":41,"y":0},{"x":30,"y":52},{"x":69,"y":-63},{"x":58,"y":69},{"x":-45,"y":71},{"x":51,"y":28},{"x":78,"y":-62},{"x":41,"y":35},{"x":53,"y":-43},{"x":-7,"y":56},{"x":86,"y":-8},{"x":-22,"y":31},{"x":41,"y":23},{"x":2,"y":111},{"x":-33,"y":54},{"x":60,"y":-5},{"x":15,"y":-117},{"x":35,"y":12},{"x":31,"y":70},{"x":49,"y":-19},{"x":71,"y":55},{"x":26,"y":53},{"x":-32,"y":41},{"x":46,"y":15},{"x":-71,"y":43},{"x":-22,"y":-16},{"x":40,"y":49},{"x":-64,"y":102},{"x":26,"y":62},{"x":87,"y":21},{"x":8,"y":31},{"x":29,"y":-6},{"x":0,"y":-79},{"x":-45,"y":-9},{"x":62,"y":-88},{"x":-26,"y":-24},{"x":23,"y":11},{"x":57,"y":-50},{"x":-21,"y":-31},{"x":28,"y":27},{"x":25,"y":-29},{"x":9,"y":100},{"x":47,"y":5},{"x":-15,"y":-17},{"x":59,"y":42},{"x":24,"y":-67},{"x":85,"y":-3},{"x":-16,"y":-49},{"x":27,"y":-41},{"x":128,"y":18},{"x":-14,"y":67},{"x":-85,"y":20},{"x":-54,"y":61},{"x":43,"y":51},{"x":12,"y":-39},{"x":109,"y":-26},{"x":3,"y":-29},{"x":12,"y":170},{"x":30,"y":-22},{"x":76,"y":12},{"x":43,"y":-101},{"x":-15,"y":47},{"x":72,"y":38},{"x":5,"y":-56},{"x":17,"y":19},{"x":23,"y":-47},{"x":-7,"y":33},{"x":67,"y":74},{"x":84,"y":-4},{"x":26,"y":39},{"x":-11,"y":52},{"x":-97,"y":35},{"x":54,"y":138},{"x":50,"y":-24},{"x":21,"y":77},{"x":143,"y":12},{"x":164,"y":184},{"x":-23,"y":-102},{"x":77,"y":8},{"x":80,"y":105},{"x":70,"y":-54},{"x":40,"y":43},{"x":-27,"y":31},{"x":71,"y":4},{"x":-3,"y":-57},{"x":115,"y":-38},{"x":72,"y":-62},{"x":-60,"y":-47},{"x":40,"y":-33},{"x":-46,"y":-29},{"x":2,"y":-84},{"x":-34,"y":-36},{"x":59,"y":-4},{"x":1,"y":-35},{"x":-122,"y":-118},{"x":-6,"y":-68},{"x":29,"y":-12},{"x":-5,"y":44},{"x":21,"y":-33},{"x":7,"y":30},{"x":85,"y":20},{"x":26,"y":-20},{"x":23,"y":23},{"x":131,"y":-75},{"x":-11,"y":-50},{"x":93,"y":-73},{"x":71,"y":2}],"type":"area"},{"arc":[{"x":109553,"y":134102},{"x":-5,"y":89},{"x":-92,"y":16},{"x":-10,"y":35},{"x":-59,"y":17},{"x":-9,"y":-200},{"x":179,"y":-35},{"x":-4,"y":78}],"type":"coastline"},{"arc":[{"x":110419,"y":133126},{"x":4,"y":85},{"x":-34,"y":5},{"x":11,"y":-55},{"x":-69,"y":63},{"x":8,"y":-61},{"x":-26,"y":-6},{"x":-9,"y":43},{"x":9,"y":-43},{"x":28,"y":-13},{"x":-9,"y":-86},{"x":86,"y":20},{"x":1,"y":48}],"type":"coastline"},{"arc":[{"x":106980,"y":135146},{"x":-122,"y":45},{"x":27,"y":-42},{"x":-55,"y":-99},{"x":67,"y":-108},{"x":-86,"y":-3},{"x":-49,"y":43},{"x":-58,"y":-11},{"x":-98,"y":-98},{"x":-25,"y":-96},{"x":-222,"y":-27},{"x":44,"y":-61},{"x":-26,"y":-73},{"x":-27,"y":5},{"x":21,"y":-31},{"x":-38,"y":18},{"x":11,"y":-35},{"x":-143,"y":-47},{"x":15,"y":-23},{"x":-46,"y":-23},{"x":154,"y":-139},{"x":138,"y":-28},{"x":193,"y":13},{"x":65,"y":-47},{"x":231,"y":62},{"x":23,"y":-32},{"x":-34,"y":-81},{"x":52,"y":-50},{"x":25,"y":2},{"x":-16,"y":57},{"x":52,"y":-3},{"x":65,"y":86},{"x":150,"y":79},{"x":39,"y":-43},{"x":70,"y":-9},{"x":31,"y":-38},{"x":22,"y":20},{"x":91,"y":-79},{"x":101,"y":-39},{"x":7,"y":-26},{"x":-56,"y":27},{"x":-36,"y":-25},{"x":51,"y":-98},{"x":142,"y":20},{"x":18,"y":-39},{"x":85,"y":41},{"x":197,"y":-40},{"x":47,"y":-54},{"x":-63,"y":-161},{"x":-21,"y":-215},{"x":52,"y":65},{"x":80,"y":17},{"x":286,"y":-159}],"type":"area"},{"arc":[{"x":108411,"y":133564},{"x":48,"y":-35},{"x":75,"y":-3},{"x":54,"y":-64},{"x":28,"y":45},{"x":-23,"y":36},{"x":28,"y":-32},{"x":67,"y":46},{"x":-21,"y":32},{"x":24,"y":29},{"x":-24,"y":-14},{"x":-27,"y":40},{"x":34,"y":25},{"x":60,"y":-86},{"x":98,"y":68},{"x":-44,"y":65},{"x":39,"y":29},{"x":58,"y":-71},{"x":127,"y":103},{"x":-41,"y":60},{"x":33,"y":23},{"x":48,"y":-52},{"x":127,"y":126},{"x":47,"y":-30},{"x":-171,"y":233},{"x":29,"y":39},{"x":37,"y":-82},{"x":30,"y":28},{"x":15,"y":-56},{"x":46,"y":10},{"x":29,"y":76},{"x":-65,"y":123},{"x":21,"y":15},{"x":103,"y":-191},{"x":31,"y":-2},{"x":30,"y":281},{"x":27,"y":-116},{"x":181,"y":-12},{"x":20,"y":58},{"x":46,"y":-2},{"x":-42,"y":-81},{"x":74,"y":12},{"x":26,"y":-22},{"x":-82,"y":-35},{"x":5,"y":-99},{"x":40,"y":60},{"x":74,"y":14},{"x":-26,"y":-44},{"x":96,"y":-76},{"x":-33,"y":-40},{"x":-82,"y":69},{"x":-47,"y":-22},{"x":242,"y":-222},{"x":-15,"y":-19},{"x":-1,"y":-17},{"x":12,"y":29},{"x":43,"y":-34},{"x":-1,"y":-29},{"x":23,"y":7},{"x":12,"y":-24},{"x":-15,"y":-11},{"x":-19,"y":5},{"x":22,"y":-4},{"x":19,"y":17},{"x":116,"y":-141},{"x":15,"y":15},{"x":4,"y":-33},{"x":14,"y":14},{"x":40,"y":-66},{"x":13,"y":14},{"x":52,"y":-50},{"x":-29,"y":-205},{"x":54,"y":-8},{"x":-4,"y":129},{"x":35,"y":-1},{"x":4,"y":-132},{"x":72,"y":-10},{"x":8,"y":58},{"x":46,"y":-65},{"x":121,"y":35},{"x":10,"y":-29},{"x":-88,"y":-12},{"x":20,"y":-120},{"x":-42,"y":-61},{"x":92,"y":-49},{"x":-110,"y":35},{"x":-54,"y":-38},{"x":88,"y":-50},{"x":-73,"y":-79},{"x":14,"y":-38},{"x":-51,"y":-15},{"x":34,"y":119},{"x":-33,"y":20},{"x":-29,"y":-135},{"x":-106,"y":-95},{"x":-141,"y":166},{"x":-155,"y":-229},{"x":42,"y":-43},{"x":39,"y":6},{"x":-9,"y":-42},{"x":-22,"y":-21},{"x":-60,"y":74},{"x":-61,"y":-72},{"x":82,"y":-37},{"x":-33,"y":-36},{"x":36,"y":-123},{"x":111,"y":19},{"x":13,"y":-28}],"type":"coastline"},{"arc":[{"x":110035,"y":132381},{"x":58,"y":92},{"x":85,"y":29},{"x":242,"y":0},{"x":49,"y":158},{"x":132,"y":92},{"x":92,"y":-21},{"x":162,"y":-145},{"x":183,"y":14},{"x":124,"y":-120},{"x":96,"y":-36},{"x":51,"y":18},{"x":55,"y":94},{"x":39,"y":0}],"type":"admin"},{"arc":[{"x":107551,"y":132409},{"x":0,"y":56},{"x":-1,"y":-96},{"x":1,"y":40}],"type":"coastline"},{"arc":[{"x":107110,"y":136494},{"x":-4,"y":39},{"x":-19,"y":-14},{"x":25,"y":24},{"x":-237,"y":87},{"x":-140,"y":-69},{"x":-202,"y":-48},{"x":-107,"y":7},{"x":-25,"y":40},{"x":0,"y":-30},{"x":-29,"y":20},{"x":17,"y":-30},{"x":-30,"y":40},{"x":46,"y":8},{"x":-56,"y":-1},{"x":-39,"y":-26},{"x":-87,"y":11},{"x":-52,"y":-43},{"x":-199,"y":-57},{"x":-75,"y":14},{"x":-72,"y":-62},{"x":-72,"y":-14},{"x":-80,"y":-80},{"x":-8,"y":-65},{"x":39,"y":-50},{"x":-21,"y":-80},{"x":-155,"y":-128},{"x":-71,"y":0},{"x":-66,"y":-49},{"x":-95,"y":2},{"x":-7,"y":-90},{"x":-37,"y":-40},{"x":118,"y":18},{"x":12,"y":-10},{"x":-2,"y":-10},{"x":-37,"y":3},{"x":44,"y":-3},{"x":19,"y":-92},{"x":-52,"y":-24},{"x":-4,"y":-40},{"x":-50,"y":-2},{"x":-16,"y":27},{"x":-36,"y":-54},{"x":2,"y":-59},{"x":-38,"y":-27},{"x":64,"y":-8},{"x":-33,"y":-90},{"x":32,"y":2},{"x":7,"y":-40},{"x":-32,"y":-8},{"x":-5,"y":-69},{"x":-53,"y":18},{"x":-62,"y":-124},{"x":-49,"y":15},{"x":-26,"y":-223},{"x":-43,"y":-35},{"x":101,"y":-78},{"x":-13,"y":29},{"x":25,"y":-22},{"x":13,"y":30},{"x":43,"y":-49},{"x":-19,"y":-45},{"x":-72,"y":-31},{"x":58,"y":-119},{"x":-18,"y":-68},{"x":-20,"y":18},{"x":16,"y":-53},{"x":-46,"y":-28},{"x":48,"y":-112},{"x":-30,"y":-70},{"x":-153,"y":-168},{"x":-35,"y":22},{"x":-5,"y":-18},{"x":6,"y":25},{"x":-13,"y":-28},{"x":-33,"y":23},{"x":26,"y":-21},{"x":-33,"y":18},{"x":-20,"y":-25},{"x":17,"y":42},{"x":-33,"y":-81},{"x":-23,"y":14},{"x":-27,"y":-26},{"x":-72,"y":31},{"x":-25,"y":-132},{"x":-40,"y":3},{"x":-22,"y":-58},{"x":-43,"y":39},{"x":-2,"y":-58},{"x":-65,"y":-22},{"x":35,"y":-113},{"x":-61,"y":-150},{"x":-167,"y":-166},{"x":-4,"y":-71},{"x":-58,"y":-72},{"x":-135,"y":-121},{"x":-125,"y":-72},{"x":-238,"y":-55},{"x":-82,"y":-57},{"x":-120,"y":15},{"x":-28,"y":17},{"x":44,"y":-1},{"x":-32,"y":12},{"x":-101,"y":-10},{"x":-106,"y":-94},{"x":-5,"y":22},{"x":-69,"y":-78},{"x":11,"y":-32},{"x":-72,"y":1},{"x":-55,"y":-142},{"x":-24,"y":34},{"x":9,"y":-69},{"x":-28,"y":7},{"x":-34,"y":-143},{"x":22,"y":-75},{"x":-62,"y":-40},{"x":39,"y":3},{"x":-7,"y":-121},{"x":39,"y":-57},{"x":-37,"y":-218},{"x":37,"y":-10},{"x":34,"y":-88},{"x":37,"y":-15},{"x":50,"y":26},{"x":10,"y":-24},{"x":63,"y":37},{"x":100,"y":-58},{"x":128,"y":-207},{"x":80,"y":-275},{"x":28,"y":4},{"x":31,"y":-45},{"x":35,"y":20},{"x":43,"y":-21},{"x":39,"y":19},{"x":-35,"y":34},{"x":30,"y":111},{"x":-14,"y":86},{"x":-30,"y":-8},{"x":7,"y":102},{"x":48,"y":77},{"x":10,"y":124},{"x":81,"y":36},{"x":27,"y":-31},{"x":7,"y":147},{"x":-24,"y":27},{"x":-33,"y":-30},{"x":-10,"y":51},{"x":69,"y":65},{"x":178,"y":11},{"x":126,"y":-55},{"x":-16,"y":-40},{"x":26,"y":26},{"x":2,"y":-34},{"x":-25,"y":-1},{"x":87,"y":-83},{"x":-9,"y":-73},{"x":60,"y":-112},{"x":57,"y":40},{"x":-56,"y":61},{"x":26,"y":-9},{"x":-24,"y":18},{"x":46,"y":52},{"x":82,"y":6},{"x":9,"y":-34},{"x":95,"y":-19},{"x":35,"y":-46},{"x":60,"y":16},{"x":60,"y":134},{"x":73,"y":32},{"x":118,"y":-38},{"x":22,"y":-110},{"x":40,"y":32},{"x":25,"y":-29},{"x":23,"y":33},{"x":33,"y":-32},{"x":113,"y":95},{"x":47,"y":-10},{"x":4,"y":34},{"x":24,"y":-9},{"x":-19,"y":-17},{"x":61,"y":6},{"x":127,"y":-67},{"x":32,"y":-90},{"x":91,"y":19},{"x":2,"y":23},{"x":74,"y":-50},{"x":14,"y":22},{"x":109,"y":-14},{"x":113,"y":53},{"x":149,"y":193},{"x":62,"y":145},{"x":107,"y":31},{"x":223,"y":-49},{"x":166,"y":-139},{"x":28,"y":18},{"x":31,"y":-21},{"x":-15,"y":33},{"x":56,"y":22},{"x":49,"y":-19},{"x":135,"y":-193},{"x":106,"y":-330},{"x":17,"y":177},{"x":40,"y":64},{"x":-34,"y":-8},{"x":12,"y":47},{"x":34,"y":-31},{"x":65,"y":49},{"x":64,"y":-16},{"x":-72,"y":26},{"x":-26,"y":-15},{"x":105,"y":148},{"x":32,"y":-26},{"x":-15,"y":-94},{"x":15,"y":22},{"x":81,"y":-49},{"x":121,"y":125},{"x":-116,"y":75},{"x":36,"y":59},{"x":-36,"y":1},{"x":4,"y":22},{"x":34,"y":-20},{"x":-26,"y":32},{"x":182,"y":-156},{"x":78,"y":53},{"x":-79,"y":134},{"x":-83,"y":272},{"x":118,"y":-79},{"x":12,"y":94},{"x":-37,"y":20},{"x":20,"y":39},{"x":44,"y":-23},{"x":-21,"y":-42},{"x":22,"y":-11},{"x":41,"y":130},{"x":35,"y":-9},{"x":-13,"y":38},{"x":53,"y":-27},{"x":2,"y":32},{"x":37,"y":-42},{"x":-18,"y":-51},{"x":-19,"y":10},{"x":28,"y":-20},{"x":97,"y":-12},{"x":2,"y":-26},{"x":31,"y":13},{"x":63,"y":-39},{"x":65,"y":9},{"x":-29,"y":47},{"x":43,"y":-59},{"x":39,"y":1},{"x":18,"y":37},{"x":61,"y":12},{"x":57,"y":113},{"x":36,"y":5},{"x":-34,"y":0},{"x":14,"y":28},{"x":25,"y":-26},{"x":-10,"y":43},{"x":-17,"y":-12},{"x":34,"y":141},{"x":22,"y":-6},{"x":-25,"y":69},{"x":131,"y":18},{"x":25,"y":87},{"x":-77,"y":23},{"x":-23,"y":-66},{"x":46,"y":-35},{"x":-83,"y":16},{"x":40,"y":158},{"x":190,"y":-68},{"x":60,"y":127},{"x":-166,"y":81},{"x":-29,"y":-24},{"x":-10,"y":32},{"x":39,"y":37},{"x":119,"y":-73},{"x":42,"y":30},{"x":-79,"y":52},{"x":22,"y":32},{"x":75,"y":-52},{"x":24,"y":68},{"x":36,"y":-22},{"x":-142,"y":158}],"type":"coastline"},{"arc":[{"x":109035,"y":131953},{"x":-117,"y":-111},{"x":19,"y":-20},{"x":184,"y":156},{"x":-8,"y":48},{"x":-78,"y":-73}],"type":"coastline"},{"arc":[{"x":109431,"y":131543},{"x":-5,"y":75},{"x":-91,"y":-64},{"x":63,"y":-66},{"x":28,"y":3},{"x":5,"y":52}],"type":"coastline"},{"arc":[{"x":109645,"y":132031},{"x":-82,"y":43},{"x":-97,"y":-146},{"x":134,"y":-157},{"x":53,"y":81},{"x":-21,"y":15},{"x":30,"y":-1},{"x":77,"y":115},{"x":-94,"y":50}],"type":"coastline"},{"arc":[{"x":109797,"y":131902},{"x":-45,"y":69},{"x":-155,"y":-223},{"x":135,"y":63},{"x":65,"y":91}],"type":"coastline"},{"arc":[{"x":109836,"y":131471},{"x":-29,"y":54},{"x":-231,"y":116},{"x":-60,"y":-60},{"x":33,"y":30},{"x":-6,"y":2},{"x":-18,"y":-16},{"x":-16,"y":17},{"x":22,"y":22},{"x":-23,"y":-21},{"x":38,"y":34},{"x":-10,"y":49},{"x":-16,"y":-17},{"x":-41,"y":44},{"x":-27,"y":-18},{"x":-1,"y":-145},{"x":37,"y":30},{"x":5,"y":-21},{"x":-42,"y":-41},{"x":11,"y":-66},{"x":131,"y":-45},{"x":243,"y":52}],"type":"coastline"},{"arc":[{"x":109833,"y":131804},{"x":-33,"y":-25},{"x":107,"y":-71},{"x":23,"y":36},{"x":-97,"y":60}],"type":"coastline"},{"arc":[{"x":109964,"y":132136},{"x":-161,"y":-11},{"x":-16,"y":-25},{"x":35,"y":-23},{"x":-40,"y":-35},{"x":73,"y":38},{"x":1,"y":-43},{"x":104,"y":-12},{"x":4,"y":111}],"type":"coastline"},{"arc":[{"x":109989,"y":131495},{"x":-137,"y":13},{"x":-4,"y":-51},{"x":114,"y":6},{"x":27,"y":32}],"type":"coastline"},{"arc":[{"x":110011,"y":131640},{"x":-93,"y":65},{"x":-23,"y":-31},{"x":-136,"y":91},{"x":-73,"y":-46},{"x":128,"y":-107},{"x":47,"y":3},{"x":-15,"y":-22},{"x":32,"y":-23},{"x":35,"y":0},{"x":55,"y":75},{"x":30,"y":-46},{"x":13,"y":41}],"type":"coastline"},{"arc":[{"x":110021,"y":132322},{"x":-42,"y":18},{"x":41,"y":-19},{"x":-24,"y":-44},{"x":25,"y":45}],"type":"coastline"},{"arc":[{"x":110034,"y":132257},{"x":-33,"y":17},{"x":33,"y":-41},{"x":-27,"y":-23},{"x":43,"y":9},{"x":-16,"y":38}],"type":"coastline"},{"arc":[{"x":110045,"y":132017},{"x":6,"y":63},{"x":-60,"y":-92},{"x":48,"y":-8},{"x":36,"y":47},{"x":-30,"y":-10}],"type":"coastline"},{"arc":[{"x":110035,"y":132381},{"x":41,"y":-238},{"x":-86,"y":-6},{"x":-40,"y":-153},{"x":36,"y":5},{"x":11,"y":97},{"x":89,"y":6},{"x":-34,"y":-206},{"x":48,"y":-6},{"x":-82,"y":-3},{"x":-5,"y":-43},{"x":-96,"y":6},{"x":-42,"y":-28},{"x":77,"y":-51},{"x":-25,"y":-37},{"x":95,"y":-68},{"x":56,"y":138},{"x":44,"y":11},{"x":28,"y":-29},{"x":-34,"y":5},{"x":-74,"y":-113},{"x":25,"y":-32},{"x":126,"y":123},{"x":-88,"y":-149},{"x":31,"y":-26},{"x":31,"y":17},{"x":-14,"y":-34},{"x":39,"y":0},{"x":-3,"y":26},{"x":14,"y":-46},{"x":-104,"y":-44},{"x":-82,"y":10},{"x":20,"y":-44},{"x":-128,"y":-35},{"x":-178,"y":4},{"x":-152,"y":-35},{"x":-110,"y":45},{"x":-27,"y":-17},{"x":-67,"y":51},{"x":-24,"y":-52},{"x":-48,"y":41},{"x":27,"y":28},{"x":-37,"y":40},{"x":81,"y":57},{"x":15,"y":113},{"x":-300,"y":186},{"x":-65,"y":-112},{"x":63,"y":-101},{"x":-41,"y":-43}],"type":"coastline"},{"arc":[{"x":109046,"y":131639},{"x":95,"y":-153},{"x":7,"y":-135},{"x":-41,"y":-42},{"x":26,"y":-60},{"x":-53,"y":-72},{"x":-10,"y":-118},{"x":64,"y":-35},{"x":84,"y":46},{"x":99,"y":-195},{"x":251,"y":-110},{"x":26,"y":-106},{"x":205,"y":-255},{"x":44,"y":-221}],"type":"admin"},{"arc":[{"x":109843,"y":130183},{"x":51,"y":-5},{"x":29,"y":36},{"x":136,"y":-76},{"x":47,"y":25},{"x":-2,"y":35},{"x":78,"y":6},{"x":93,"y":-49},{"x":17,"y":28},{"x":45,"y":-13},{"x":28,"y":-47},{"x":6,"y":38},{"x":76,"y":-16},{"x":-4,"y":51},{"x":9,"y":-50},{"x":-4,"y":68},{"x":46,"y":-28},{"x":19,"y":27},{"x":47,"y":-57},{"x":8,"y":27},{"x":101,"y":41},{"x":154,"y":-233},{"x":280,"y":28},{"x":99,"y":-50}],"type":"area"},{"arc":[{"x":109843,"y":130183},{"x":50,"y":-139},{"x":88,"y":-89},{"x":92,"y":-278},{"x":-47,"y":-35},{"x":-51,"y":20},{"x":-17,"y":-49},{"x":-47,"y":-9},{"x":-79,"y":-168},{"x":-112,"y":40},{"x":-10,"y":-82},{"x":84,"y":-103},{"x":61,"y":-5},{"x":51,"y":-99},{"x":-61,"y":-76},{"x":-65,"y":-29},{"x":-69,"y":32},{"x":47,"y":99},{"x":-79,"y":39},{"x":-115,"y":177},{"x":-60,"y":2},{"x":-72,"y":106},{"x":-128,"y":-141},{"x":93,"y":-52},{"x":115,"y":55},{"x":11,"y":-37},{"x":-26,"y":-68},{"x":-118,"y":-53},{"x":-86,"y":5},{"x":-8,"y":37},{"x":28,"y":11},{"x":-63,"y":42},{"x":-122,"y":-12},{"x":-72,"y":51},{"x":-148,"y":-3},{"x":-81,"y":-74},{"x":-70,"y":62},{"x":-16,"y":-134},{"x":145,"y":-34},{"x":27,"y":-60}],"type":"admin"},{"arc":[{"x":108913,"y":129132},{"x":72,"y":20},{"x":133,"y":-103},{"x":41,"y":-91},{"x":124,"y":-86},{"x":23,"y":-49},{"x":127,"y":-55},{"x":17,"y":-60},{"x":70,"y":-13},{"x":201,"y":-467},{"x":-9,"y":-280},{"x":83,"y":-148},{"x":-50,"y":-150},{"x":-54,"y":-10},{"x":-7,"y":-99},{"x":50,"y":-106},{"x":72,"y":-68},{"x":85,"y":-31},{"x":23,"y":-49},{"x":34,"y":14},{"x":72,"y":-48},{"x":102,"y":-13},{"x":49,"y":-118},{"x":-61,"y":-68},{"x":-9,"y":-84},{"x":52,"y":-95},{"x":71,"y":11},{"x":89,"y":-53}],"type":"admin"},{"arc":[{"x":110313,"y":126833},{"x":115,"y":66},{"x":82,"y":11},{"x":-4,"y":219},{"x":229,"y":55},{"x":61,"y":84},{"x":-75,"y":229},{"x":16,"y":76},{"x":-27,"y":76},{"x":50,"y":62},{"x":-34,"y":241},{"x":42,"y":29},{"x":-15,"y":60},{"x":46,"y":27},{"x":-86,"y":74},{"x":167,"y":-4},{"x":53,"y":-65},{"x":165,"y":-72},{"x":37,"y":-113},{"x":109,"y":1},{"x":88,"y":-36},{"x":57,"y":49},{"x":-53,"y":85},{"x":10,"y":90},{"x":41,"y":26},{"x":80,"y":-47},{"x":-24,"y":64},{"x":63,"y":32}],"type":"area"},{"arc":[{"x":110313,"y":126833},{"x":-11,"y":-113},{"x":49,"y":-123}],"type":"admin"},{"arc":[{"x":110351,"y":126597},{"x":181,"y":-199},{"x":41,"y":-264},{"x":231,"y":-370},{"x":292,"y":-154},{"x":47,"y":-98},{"x":117,"y":-64},{"x":138,"y":16},{"x":66,"y":-76},{"x":149,"y":-51},{"x":250,"y":-3},{"x":-18,"y":-56},{"x":68,"y":-73},{"x":59,"y":-45},{"x":65,"y":8},{"x":50,"y":-36}],"type":"admin"},{"arc":[{"x":96247,"y":126150},{"x":-18,"y":15},{"x":-4,"y":-30},{"x":22,"y":15}],"type":"coastline"},{"arc":[{"x":96469,"y":127074},{"x":-32,"y":-2},{"x":26,"y":-23},{"x":6,"y":25}],"type":"coastline"},{"arc":[{"x":96499,"y":127048},{"x":-32,"y":-3},{"x":23,"y":-16},{"x":9,"y":19}],"type":"coastline"},{"arc":[{"x":96795,"y":126690},{"x":-91,"y":191},{"x":-251,"y":66},{"x":-32,"y":-7},{"x":2,"y":-38},{"x":39,"y":-16},{"x":-34,"y":-87},{"x":-27,"y":-20},{"x":-17,"y":22},{"x":-8,"y":-31},{"x":5,"y":41},{"x":-65,"y":-40},{"x":33,"y":-47},{"x":-85,"y":-18},{"x":19,"y":-14},{"x":-38,"y":-10},{"x":13,"y":-72},{"x":-26,"y":-30},{"x":50,"y":-33},{"x":-14,"y":-17},{"x":17,"y":-26},{"x":-6,"y":18},{"x":45,"y":-15},{"x":49,"y":17},{"x":26,"y":81},{"x":49,"y":3},{"x":20,"y":-43},{"x":-9,"y":43},{"x":72,"y":-18},{"x":20,"y":29},{"x":47,"y":-45},{"x":9,"y":57},{"x":34,"y":15},{"x":72,"y":-27},{"x":66,"y":27},{"x":16,"y":44}],"type":"coastline"},{"arc":[{"x":102066,"y":128392},{"x":-27,"y":51},{"x":20,"y":41},{"x":-81,"y":94},{"x":-5,"y":52},{"x":37,"y":-16},{"x":-49,"y":63},{"x":-11,"y":123},{"x":-159,"y":176},{"x":-167,"y":39},{"x":-116,"y":67},{"x":-79,"y":-43},{"x":-158,"y":46},{"x":-111,"y":-48},{"x":-67,"y":50},{"x":-114,"y":-41},{"x":29,"y":-65},{"x":-60,"y":50},{"x":-32,"y":-66},{"x":47,"y":-78},{"x":-9,"y":-181},{"x":168,"y":-224},{"x":16,"y":-113},{"x":80,"y":24},{"x":83,"y":-66},{"x":62,"y":-5},{"x":161,"y":38},{"x":50,"y":-45},{"x":35,"y":14},{"x":8,"y":-34},{"x":10,"y":29},{"x":118,"y":-29},{"x":37,"y":27},{"x":130,"y":-19},{"x":154,"y":89}],"type":"coastline"},{"arc":[{"x":97589,"y":127727},{"x":-21,"y":38},{"x":-8,"y":-30},{"x":29,"y":-8}],"type":"coastline"},{"arc":[{"x":97680,"y":127234},{"x":-26,"y":29},{"x":-19,"y":-18},{"x":20,"y":26},{"x":-40,"y":69},{"x":-64,"y":-10},{"x":-12,"y":-42},{"x":-52,"y":-23},{"x":9,"y":-76},{"x":34,"y":3},{"x":8,"y":-27},{"x":-54,"y":-21},{"x":0,"y":-41},{"x":38,"y":-17},{"x":51,"y":60},{"x":32,"y":-11},{"x":-21,"y":39},{"x":40,"y":28},{"x":34,"y":-21},{"x":22,"y":53}],"type":"coastline"},{"arc":[{"x":98047,"y":127324},{"x":-28,"y":39},{"x":-53,"y":-4},{"x":7,"y":-23},{"x":29,"y":16},{"x":45,"y":-28}],"type":"coastline"},{"arc":[{"x":98576,"y":127753},{"x":-68,"y":91},{"x":-51,"y":12},{"x":-67,"y":-47},{"x":-40,"y":39},{"x":-92,"y":-65},{"x":-14,"y":20},{"x":-57,"y":-61},{"x":-441,"y":-15},{"x":-124,"y":-39},{"x":47,"y":-103},{"x":118,"y":-103},{"x":102,"y":5},{"x":111,"y":-42},{"x":-27,"y":46},{"x":82,"y":52},{"x":152,"y":38},{"x":82,"y":-15},{"x":67,"y":92},{"x":78,"y":18},{"x":19,"y":82},{"x":123,"y":-5}],"type":"coastline"},{"arc":[{"x":99022,"y":127810},{"x":-76,"y":100},{"x":-2,"y":-60},{"x":78,"y":-40}],"type":"coastline"},{"arc":[{"x":99544,"y":127763},{"x":-38,"y":76},{"x":-53,"y":22},{"x":-121,"y":-131},{"x":59,"y":-64},{"x":77,"y":-3},{"x":80,"y":62},{"x":-4,"y":38}],"type":"coastline"},{"arc":[{"x":93543,"y":130288},{"x":-82,"y":117},{"x":-201,"y":104},{"x":-186,"y":-95},{"x":27,"y":-221},{"x":48,"y":-94},{"x":46,"y":-18},{"x":144,"y":-2},{"x":148,"y":95},{"x":19,"y":-16},{"x":37,"y":130}],"type":"coastline"},{"arc":[{"x":95665,"y":129731},{"x":-4,"y":58},{"x":-119,"y":154},{"x":-91,"y":48},{"x":-82,"y":7},{"x":-94,"y":-41},{"x":-34,"y":16},{"x":8,"y":48},{"x":-21,"y":-49},{"x":-91,"y":0},{"x":-100,"y":-97},{"x":-54,"y":-133},{"x":-60,"y":-30},{"x":28,"y":-37},{"x":-40,"y":-183},{"x":68,"y":-109},{"x":-9,"y":-45},{"x":98,"y":-36},{"x":55,"y":34},{"x":1,"y":-35},{"x":28,"y":22},{"x":57,"y":-57},{"x":64,"y":70},{"x":30,"y":-12},{"x":86,"y":63},{"x":72,"y":2},{"x":-25,"y":-1},{"x":26,"y":50},{"x":88,"y":-44},{"x":55,"y":18},{"x":33,"y":54},{"x":-14,"y":112},{"x":41,"y":63},{"x":0,"y":90}],"type":"coastline"},{"arc":[{"x":61221,"y":135762},{"x":-60,"y":70},{"x":-72,"y":7},{"x":-68,"y":-39},{"x":-17,"y":-83},{"x":113,"y":-94},{"x":85,"y":59},{"x":19,"y":80}],"type":"coastline"},{"arc":[{"x":79993,"y":131498},{"x":-42,"y":89},{"x":-110,"y":90},{"x":-95,"y":-15},{"x":-44,"y":-86},{"x":39,"y":-84},{"x":42,"y":-24},{"x":150,"y":-1},{"x":60,"y":31}],"type":"coastline"},{"arc":[{"x":86287,"y":130931},{"x":-84,"y":89},{"x":-109,"y":22},{"x":13,"y":-118},{"x":125,"y":-78},{"x":53,"y":13},{"x":2,"y":72}],"type":"coastline"},{"arc":[{"x":86499,"y":131510},{"x":-10,"y":111},{"x":-146,"y":171},{"x":-85,"y":16},{"x":-11,"y":58},{"x":-7,"y":-28},{"x":-22,"y":30},{"x":41,"y":2},{"x":-98,"y":85},{"x":4,"y":34},{"x":-35,"y":-32},{"x":-29,"y":230},{"x":-170,"y":85},{"x":-73,"y":-24},{"x":-70,"y":39},{"x":-45,"y":-6},{"x":-41,"y":-154},{"x":-78,"y":-44},{"x":-113,"y":1},{"x":-50,"y":28},{"x":-41,"y":-34},{"x":126,"y":-105},{"x":-2,"y":-70},{"x":53,"y":-65},{"x":-15,"y":-45},{"x":66,"y":-94},{"x":57,"y":-37},{"x":183,"y":0},{"x":15,"y":-38},{"x":45,"y":38},{"x":-40,"y":-73},{"x":34,"y":9},{"x":45,"y":-137},{"x":97,"y":-19},{"x":154,"y":-90},{"x":137,"y":-9},{"x":95,"y":56},{"x":29,"y":111}],"type":"coastline"},{"arc":[{"x":1893,"y":144814},{"x":-30,"y":79},{"x":-90,"y":-4},{"x":-50,"y":-23},{"x":-16,"y":-108},{"x":156,"y":0},{"x":30,"y":56}],"type":"coastline"},{"arc":[{"x":2392,"y":242682},{"x":-154,"y":17},{"x":31,"y":-121},{"x":123,"y":104}],"type":"coastline"},{"arc":[{"x":7280,"y":143730},{"x":-122,"y":136},{"x":-198,"y":43},{"x":-78,"y":-79},{"x":-3,"y":-88},{"x":-235,"y":-306},{"x":75,"y":-3},{"x":186,"y":66},{"x":105,"y":-13},{"x":15,"y":-50},{"x":28,"y":0},{"x":187,"y":279},{"x":40,"y":15}],"type":"coastline"},{"arc":[{"x":13318,"y":143422},{"x":-92,"y":67},{"x":-123,"y":6},{"x":-51,"y":-45},{"x":-16,"y":-82},{"x":95,"y":-38},{"x":101,"y":4},{"x":86,"y":88}],"type":"coastline"},{"arc":[{"x":23908,"y":150679},{"x":-14,"y":45},{"x":-59,"y":-24},{"x":-34,"y":-106},{"x":84,"y":11},{"x":23,"y":74}],"type":"coastline"},{"arc":[{"x":23908,"y":150229},{"x":-47,"y":50},{"x":-107,"y":-3},{"x":-48,"y":-33},{"x":45,"y":-47},{"x":22,"y":34},{"x":114,"y":-28},{"x":21,"y":27}],"type":"coastline"},{"arc":[{"x":24014,"y":150820},{"x":-76,"y":73},{"x":-37,"y":-102},{"x":68,"y":-3},{"x":45,"y":32}],"type":"coastline"},{"arc":[{"x":24135,"y":150279},{"x":-48,"y":-22},{"x":-9,"y":-90},{"x":34,"y":18},{"x":23,"y":94}],"type":"coastline"},{"arc":[{"x":24346,"y":150042},{"x":-94,"y":37},{"x":-47,"y":-29},{"x":23,"y":-33},{"x":-25,"y":-21},{"x":39,"y":18},{"x":71,"y":-32},{"x":33,"y":60}],"type":"coastline"},{"arc":[{"x":25330,"y":150002},{"x":-142,"y":67},{"x":-11,"y":66},{"x":100,"y":-8},{"x":-30,"y":66},{"x":33,"y":29},{"x":-51,"y":35},{"x":-11,"y":50},{"x":-83,"y":-147},{"x":-81,"y":3},{"x":-15,"y":45},{"x":59,"y":127},{"x":-157,"y":-54},{"x":-122,"y":19},{"x":-48,"y":114},{"x":40,"y":28},{"x":-3,"y":54},{"x":-57,"y":-33},{"x":10,"y":-82},{"x":-104,"y":-25},{"x":-69,"y":11},{"x":-73,"y":66},{"x":-135,"y":-3},{"x":-24,"y":21},{"x":-39,"y":-39},{"x":6,"y":-39},{"x":68,"y":38},{"x":148,"y":-56},{"x":-6,"y":-73},{"x":91,"y":-8},{"x":-23,"y":-27},{"x":-27,"y":12},{"x":12,"y":-37},{"x":103,"y":-10},{"x":96,"y":-61},{"x":85,"y":34},{"x":12,"y":-62},{"x":88,"y":26},{"x":121,"y":-110},{"x":110,"y":-17},{"x":55,"y":-45},{"x":72,"y":3},{"x":2,"y":22}],"type":"coastline"},{"arc":[{"x":28460,"y":150378},{"x":-118,"y":19},{"x":112,"y":-38},{"x":6,"y":19}],"type":"coastline"},{"arc":[{"x":28951,"y":150903},{"x":-8,"y":49},{"x":-34,"y":11},{"x":-10,"y":-25},{"x":52,"y":-35}],"type":"coastline"},{"arc":[{"x":29046,"y":150528},{"x":-45,"y":199},{"x":-112,"y":49},{"x":-73,"y":-3},{"x":-33,"y":62},{"x":-147,"y":2},{"x":-29,"y":-22},{"x":-54,"y":58},{"x":-40,"y":-4},{"x":68,"y":-64},{"x":-35,"y":-54},{"x":-32,"y":35},{"x":-53,"y":-28},{"x":-78,"y":53},{"x":3,"y":-78},{"x":50,"y":-9},{"x":-32,"y":-55},{"x":56,"y":-39},{"x":15,"y":-55},{"x":-41,"y":-44},{"x":32,"y":-52},{"x":-41,"y":-10},{"x":48,"y":-13},{"x":49,"y":45},{"x":47,"y":-2},{"x":-7,"y":-26},{"x":60,"y":8},{"x":2,"y":63},{"x":25,"y":-34},{"x":35,"y":15},{"x":30,"y":-81},{"x":33,"y":-6},{"x":-16,"y":43},{"x":31,"y":52},{"x":-28,"y":72},{"x":98,"y":41},{"x":39,"y":-50},{"x":59,"y":14},{"x":23,"y":-35},{"x":26,"y":29},{"x":-58,"y":-87},{"x":-32,"y":12},{"x":-13,"y":-53},{"x":50,"y":-32},{"x":94,"y":4},{"x":26,"y":80}],"type":"coastline"},{"arc":[{"x":29195,"y":150334},{"x":-52,"y":29},{"x":-28,"y":-82},{"x":37,"y":32},{"x":42,"y":-20},{"x":1,"y":41}],"type":"coastline"},{"arc":[{"x":29270,"y":150417},{"x":-23,"y":23},{"x":14,"y":-41},{"x":9,"y":18}],"type":"coastline"},{"arc":[{"x":29410,"y":150516},{"x":-110,"y":66},{"x":14,"y":52},{"x":-59,"y":-14},{"x":46,"y":114},{"x":-34,"y":-14},{"x":-51,"y":70},{"x":-71,"y":-6},{"x":-22,"y":75},{"x":-40,"y":0},{"x":1,"y":-272},{"x":82,"y":41},{"x":47,"y":-66},{"x":-18,"y":-82},{"x":32,"y":29},{"x":52,"y":-32},{"x":31,"y":50},{"x":31,"y":-32},{"x":69,"y":21}],"type":"coastline"},{"arc":[{"x":29845,"y":150496},{"x":-69,"y":42},{"x":9,"y":41},{"x":-69,"y":-41},{"x":-75,"y":29},{"x":6,"y":31},{"x":-104,"y":-22},{"x":-76,"y":-90},{"x":-56,"y":2},{"x":39,"y":-66},{"x":19,"y":46},{"x":45,"y":5},{"x":24,"y":-41},{"x":17,"y":28},{"x":117,"y":-5},{"x":5,"y":29},{"x":58,"y":-25},{"x":57,"y":26},{"x":27,"y":-28},{"x":26,"y":39}],"type":"coastline"},{"arc":[{"x":30414,"y":140228},{"x":-28,"y":36},{"x":-29,"y":-32},{"x":19,"y":-27},{"x":38,"y":23}],"type":"coastline"},{"arc":[{"x":32688,"y":150635},{"x":-27,"y":10},{"x":11,"y":-27},{"x":16,"y":17}],"type":"coastline"},{"arc":[{"x":32808,"y":150670},{"x":-122,"y":26},{"x":87,"y":-85},{"x":35,"y":59}],"type":"coastline"},{"arc":[{"x":34077,"y":150386},{"x":-88,"y":83},{"x":-68,"y":-2},{"x":67,"y":-60},{"x":-45,"y":-18},{"x":38,"y":-27},{"x":80,"y":-18},{"x":16,"y":42}],"type":"coastline"},{"arc":[{"x":34504,"y":150010},{"x":-31,"y":-9},{"x":15,"y":-18},{"x":16,"y":27}],"type":"coastline"},{"arc":[{"x":34579,"y":150043},{"x":-31,"y":13},{"x":32,"y":75},{"x":-50,"y":44},{"x":-118,"y":-9},{"x":14,"y":-65},{"x":58,"y":3},{"x":28,"y":-34},{"x":-32,"y":-28},{"x":49,"y":-56},{"x":50,"y":57}],"type":"coastline"},{"arc":[{"x":105282,"y":130336},{"x":-16,"y":111},{"x":-67,"y":49},{"x":35,"y":-157},{"x":48,"y":-3}],"type":"coastline"},{"arc":[{"x":106091,"y":130290},{"x":-28,"y":15},{"x":13,"y":-32},{"x":15,"y":17}],"type":"coastline"},{"arc":[{"x":106847,"y":129343},{"x":-36,"y":42},{"x":-2,"y":-109},{"x":38,"y":67}],"type":"coastline"},{"arc":[{"x":106891,"y":130665},{"x":-52,"y":40},{"x":-73,"y":-57},{"x":60,"y":-47},{"x":65,"y":64}],"type":"coastline"},{"arc":[{"x":107109,"y":130528},{"x":-14,"y":38},{"x":-55,"y":-44},{"x":54,"y":-31},{"x":15,"y":37}],"type":"coastline"},{"arc":[{"x":107188,"y":130618},{"x":-31,"y":30},{"x":-1,"y":-61},{"x":32,"y":31}],"type":"coastline"},{"arc":[{"x":107865,"y":130980},{"x":-51,"y":-53},{"x":-55,"y":30},{"x":82,"y":46},{"x":24,"y":-24},{"x":-23,"y":25},{"x":-73,"y":-35},{"x":-64,"y":-65},{"x":20,"y":-35},{"x":-19,"y":34},{"x":23,"y":24},{"x":30,"y":-30},{"x":29,"y":30},{"x":25,"y":-24},{"x":-45,"y":-46},{"x":18,"y":-40},{"x":81,"y":69},{"x":-12,"y":32},{"x":36,"y":36},{"x":-26,"y":26}],"type":"coastline"},{"arc":[{"x":108389,"y":131000},{"x":-61,"y":-78},{"x":-17,"y":29},{"x":44,"y":75},{"x":-62,"y":33},{"x":15,"y":38},{"x":-84,"y":-105},{"x":19,"y":14},{"x":79,"y":-143},{"x":35,"y":-50},{"x":12,"y":-5},{"x":-24,"y":23},{"x":15,"y":7},{"x":29,"y":-11},{"x":-7,"y":-16},{"x":71,"y":171},{"x":-64,"y":18}],"type":"coastline"},{"arc":[{"x":108479,"y":130617},{"x":-43,"y":80},{"x":-30,"y":-29},{"x":-28,"y":26},{"x":41,"y":-105},{"x":60,"y":28}],"type":"coastline"},{"arc":[{"x":108670,"y":131307},{"x":-169,"y":61},{"x":-121,"y":-227},{"x":137,"y":-98},{"x":153,"y":264}],"type":"coastline"},{"arc":[{"x":108778,"y":131598},{"x":-11,"y":46},{"x":-29,"y":57},{"x":23,"y":-47},{"x":-9,"y":-18},{"x":-37,"y":20},{"x":13,"y":27},{"x":-86,"y":-161},{"x":32,"y":-20},{"x":-11,"y":-22},{"x":-33,"y":16},{"x":-53,"y":-98},{"x":89,"y":-73},{"x":107,"y":195},{"x":5,"y":78}],"type":"coastline"},{"arc":[{"x":108972,"y":131486},{"x":-124,"y":71},{"x":-48,"y":-95},{"x":93,"y":-42},{"x":79,"y":66}],"type":"coastline"},{"arc":[{"x":109046,"y":131639},{"x":-21,"y":-16},{"x":-130,"y":172},{"x":-20,"y":-17},{"x":-31,"y":42},{"x":30,"y":-43},{"x":-28,"y":-20},{"x":-25,"y":35},{"x":10,"y":-15},{"x":-38,"y":-27},{"x":-11,"y":45},{"x":37,"y":27},{"x":-37,"y":-26},{"x":4,"y":-37},{"x":59,"y":-91},{"x":-27,"y":-24},{"x":-7,"y":15},{"x":6,"y":-15},{"x":-7,"y":-7},{"x":-9,"y":20},{"x":12,"y":-27},{"x":23,"y":-25},{"x":23,"y":20},{"x":-16,"y":-29},{"x":54,"y":-32},{"x":39,"y":16},{"x":-9,"y":-28},{"x":79,"y":-34},{"x":29,"y":-72},{"x":-52,"y":32},{"x":-124,"y":-141},{"x":8,"y":67},{"x":-83,"y":18},{"x":-59,"y":-117},{"x":139,"y":-27},{"x":-154,"y":8},{"x":-46,"y":-90},{"x":80,"y":-44},{"x":32,"y":39},{"x":2,"y":-22},{"x":-22,"y":-40},{"x":-97,"y":53},{"x":-92,"y":-170},{"x":38,"y":-11},{"x":28,"y":24},{"x":16,"y":-57},{"x":-42,"y":2},{"x":67,"y":-23},{"x":-42,"y":-7},{"x":-90,"y":45},{"x":-29,"y":-86},{"x":-51,"y":0},{"x":-35,"y":-46},{"x":-6,"y":-64},{"x":48,"y":2},{"x":14,"y":40},{"x":51,"y":-28},{"x":38,"y":35},{"x":-16,"y":-63},{"x":-54,"y":15},{"x":-5,"y":-109},{"x":47,"y":-19},{"x":-11,"y":-25},{"x":-37,"y":27},{"x":-21,"y":-89},{"x":-61,"y":0},{"x":-32,"y":-58},{"x":-16,"y":46},{"x":-41,"y":4},{"x":-28,"y":-33},{"x":14,"y":93},{"x":-75,"y":-28},{"x":39,"y":49},{"x":-53,"y":-27},{"x":-24,"y":44},{"x":59,"y":41},{"x":-38,"y":35},{"x":20,"y":33},{"x":-48,"y":-69},{"x":-30,"y":26},{"x":22,"y":22},{"x":11,"y":-22},{"x":4,"y":9},{"x":-22,"y":20},{"x":77,"y":71},{"x":-110,"y":-32},{"x":61,"y":49},{"x":-43,"y":47},{"x":-91,"y":-46},{"x":-12,"y":23},{"x":111,"y":55},{"x":-27,"y":41},{"x":-113,"y":-29},{"x":27,"y":0},{"x":-48,"y":-44},{"x":24,"y":-16},{"x":-54,"y":10},{"x":15,"y":-42},{"x":-45,"y":37},{"x":-25,"y":-15},{"x":27,"y":29},{"x":-33,"y":-11},{"x":12,"y":24},{"x":-135,"y":-111},{"x":15,"y":-20},{"x":23,"y":21},{"x":13,"y":-82},{"x":48,"y":-48},{"x":-5,"y":-34},{"x":-25,"y":17},{"x":19,"y":-59},{"x":-38,"y":-65},{"x":51,"y":-41},{"x":-28,"y":15},{"x":-10,"y":-28},{"x":-40,"y":24},{"x":19,"y":88},{"x":-38,"y":27},{"x":-13,"y":-152},{"x":-59,"y":-32},{"x":-35,"y":20},{"x":40,"y":56},{"x":-19,"y":-14},{"x":11,"y":50},{"x":-12,"y":-19},{"x":-28,"y":37},{"x":-44,"y":-87},{"x":-20,"y":9},{"x":-18,"y":31},{"x":79,"y":103},{"x":-31,"y":59},{"x":-72,"y":-42},{"x":-7,"y":-36},{"x":-56,"y":57},{"x":52,"y":60},{"x":-36,"y":-33},{"x":-78,"y":19},{"x":-1,"y":-43},{"x":-62,"y":0},{"x":-61,"y":47},{"x":-109,"y":0},{"x":-16,"y":-148},{"x":-41,"y":-33},{"x":-27,"y":28},{"x":-35,"y":-63},{"x":19,"y":-58},{"x":-90,"y":95},{"x":80,"y":52},{"x":-21,"y":165},{"x":-56,"y":-5},{"x":-7,"y":-43},{"x":-37,"y":3},{"x":7,"y":-56},{"x":-26,"y":18},{"x":-28,"y":-50},{"x":-38,"y":1},{"x":29,"y":-65},{"x":-80,"y":42},{"x":-32,"y":-85},{"x":-45,"y":30},{"x":37,"y":61},{"x":-105,"y":49},{"x":32,"y":20},{"x":-59,"y":18},{"x":-22,"y":54},{"x":19,"y":15},{"x":74,"y":-45},{"x":-30,"y":60},{"x":29,"y":6},{"x":73,"y":-32},{"x":3,"y":99},{"x":-52,"y":48},{"x":-27,"y":-21},{"x":-35,"y":60},{"x":-18,"y":-103},{"x":-19,"y":56},{"x":-44,"y":-14},{"x":-49,"y":79},{"x":-12,"y":-22},{"x":-36,"y":27},{"x":25,"y":9},{"x":-57,"y":14},{"x":-31,"y":235},{"x":25,"y":91},{"x":-40,"y":3},{"x":1,"y":48},{"x":-78,"y":61},{"x":-52,"y":-101},{"x":-14,"y":18},{"x":-54,"y":-25},{"x":-12,"y":-69},{"x":62,"y":-60},{"x":-95,"y":61},{"x":-16,"y":-19},{"x":0,"y":21},{"x":24,"y":4},{"x":-39,"y":33},{"x":-86,"y":-6},{"x":1,"y":-53},{"x":31,"y":3},{"x":12,"y":-37},{"x":-43,"y":-33},{"x":-32,"y":-1},{"x":14,"y":53},{"x":-44,"y":-37},{"x":9,"y":58},{"x":-66,"y":18},{"x":-35,"y":-299},{"x":-209,"y":-234},{"x":-102,"y":-13},{"x":-32,"y":39},{"x":-104,"y":16},{"x":-34,"y":134},{"x":-56,"y":20},{"x":-44,"y":-5},{"x":-15,"y":-39},{"x":-53,"y":12},{"x":28,"y":-39},{"x":-27,"y":-23},{"x":69,"y":-29},{"x":-19,"y":-34},{"x":-48,"y":21},{"x":10,"y":-35},{"x":-32,"y":-23},{"x":48,"y":-44},{"x":-43,"y":-38},{"x":1,"y":-54},{"x":40,"y":-14},{"x":-47,"y":-79},{"x":19,"y":-50},{"x":37,"y":17},{"x":-41,"y":-32},{"x":33,"y":-60},{"x":-22,"y":-21},{"x":45,"y":-33},{"x":-17,"y":23},{"x":45,"y":74},{"x":69,"y":-82},{"x":-3,"y":98},{"x":29,"y":-42},{"x":18,"y":34},{"x":-18,"y":-57},{"x":56,"y":-3},{"x":1,"y":152},{"x":16,"y":-104},{"x":89,"y":25},{"x":80,"y":-47},{"x":10,"y":48},{"x":12,"y":-30},{"x":41,"y":-1},{"x":5,"y":-53},{"x":42,"y":-10},{"x":10,"y":-72},{"x":35,"y":58},{"x":31,"y":-21},{"x":51,"y":35},{"x":-21,"y":22},{"x":41,"y":-11},{"x":-24,"y":106},{"x":77,"y":34},{"x":0,"y":-37},{"x":54,"y":-15},{"x":15,"y":-129},{"x":151,"y":-35},{"x":119,"y":-108},{"x":20,"y":-77},{"x":26,"y":29},{"x":79,"y":-34},{"x":25,"y":-63},{"x":19,"y":25},{"x":66,"y":3},{"x":79,"y":-49},{"x":25,"y":68},{"x":42,"y":-6},{"x":26,"y":-36},{"x":-24,"y":-81},{"x":43,"y":-11},{"x":-17,"y":-32},{"x":79,"y":0},{"x":54,"y":-68},{"x":0,"y":-71},{"x":-66,"y":-70},{"x":44,"y":-187},{"x":-14,"y":-87},{"x":20,"y":17},{"x":7,"y":-19},{"x":-27,"y":-87},{"x":31,"y":5},{"x":49,"y":-47},{"x":53,"y":-219},{"x":0,"y":-148},{"x":-36,"y":-92},{"x":31,"y":-91},{"x":-42,"y":-33},{"x":21,"y":-15},{"x":-33,"y":14},{"x":38,"y":-61},{"x":-48,"y":-214},{"x":28,"y":22},{"x":3,"y":-116},{"x":-45,"y":-229},{"x":-38,"y":-43},{"x":-11,"y":28},{"x":10,"y":-66},{"x":-108,"y":-440},{"x":-76,"y":-170}],"type":"coastline"},{"arc":[{"x":106693,"y":127399},{"x":35,"y":2},{"x":-13,"y":26},{"x":94,"y":-18},{"x":19,"y":22},{"x":133,"y":0},{"x":48,"y":-40},{"x":95,"y":128},{"x":59,"y":-38},{"x":-10,"y":-32},{"x":109,"y":-13},{"x":72,"y":97},{"x":20,"y":125},{"x":156,"y":60},{"x":7,"y":133},{"x":76,"y":-11},{"x":-3,"y":80},{"x":68,"y":17},{"x":-48,"y":9},{"x":-131,"y":138},{"x":132,"y":-15},{"x":-41,"y":42},{"x":54,"y":76},{"x":-44,"y":71},{"x":82,"y":15},{"x":-12,"y":21},{"x":-80,"y":-12},{"x":30,"y":57},{"x":81,"y":25},{"x":125,"y":-19},{"x":-85,"y":31},{"x":-3,"y":113},{"x":131,"y":-33},{"x":274,"y":47},{"x":108,"y":-36},{"x":161,"y":73},{"x":249,"y":-47},{"x":-8,"y":107},{"x":52,"y":37},{"x":27,"y":113},{"x":153,"y":107},{"x":-76,"y":68},{"x":124,"y":207}],"type":"area"},{"arc":[{"x":107581,"y":130700},{"x":-13,"y":-23},{"x":29,"y":39},{"x":-16,"y":-16}],"type":"coastline"},{"arc":[{"x":106693,"y":127399},{"x":-95,"y":-214},{"x":-317,"y":-381},{"x":-33,"y":-88},{"x":-33,"y":3},{"x":23,"y":27},{"x":-68,"y":-56},{"x":-216,"y":-5},{"x":-154,"y":-39},{"x":-34,"y":20},{"x":-71,"y":-33},{"x":-123,"y":73},{"x":-57,"y":-40},{"x":-9,"y":24},{"x":-87,"y":19},{"x":-1,"y":-32},{"x":-52,"y":69},{"x":5,"y":57},{"x":-54,"y":32},{"x":-12,"y":-81},{"x":101,"y":-158},{"x":-16,"y":-86},{"x":-75,"y":-68}],"type":"coastline"},{"arc":[{"x":105315,"y":126442},{"x":-11,"y":-170},{"x":90,"y":-325},{"x":3,"y":-147},{"x":66,"y":14},{"x":31,"y":-38},{"x":96,"y":22},{"x":111,"y":-59},{"x":3,"y":-61}],"type":"admin"},{"arc":[{"x":105704,"y":125678},{"x":176,"y":-204},{"x":99,"y":5},{"x":62,"y":-48},{"x":46,"y":11},{"x":122,"y":-59},{"x":36,"y":21},{"x":83,"y":-34},{"x":149,"y":9},{"x":228,"y":161},{"x":20,"y":66},{"x":225,"y":40},{"x":147,"y":73},{"x":88,"y":-66},{"x":83,"y":-15},{"x":110,"y":37},{"x":25,"y":-51},{"x":133,"y":-7},{"x":82,"y":-58},{"x":142,"y":25},{"x":41,"y":-51},{"x":-14,"y":-87},{"x":32,"y":-96},{"x":-57,"y":-223},{"x":14,"y":-210}],"type":"admin"},{"arc":[{"x":107776,"y":124917},{"x":101,"y":13},{"x":91,"y":94},{"x":159,"y":-21},{"x":107,"y":78},{"x":125,"y":167},{"x":42,"y":115},{"x":-26,"y":41},{"x":94,"y":79},{"x":8,"y":149},{"x":50,"y":52},{"x":11,"y":101},{"x":74,"y":25},{"x":97,"y":102},{"x":102,"y":19},{"x":-21,"y":109},{"x":44,"y":201},{"x":191,"y":190},{"x":62,"y":30},{"x":105,"y":-16},{"x":157,"y":140},{"x":140,"y":-17},{"x":56,"y":-49},{"x":72,"y":62},{"x":115,"y":30},{"x":58,"y":-42},{"x":35,"y":52},{"x":70,"y":-86},{"x":163,"y":32},{"x":128,"y":-81},{"x":165,"y":111}],"type":"admin"},{"arc":[{"x":124836,"y":119773},{"x":-24,"y":-38},{"x":36,"y":55},{"x":-12,"y":-17}],"type":"coastline"},{"arc":[{"x":124860,"y":119811},{"x":-1,"y":35},{"x":4,"y":-61},{"x":-3,"y":26}],"type":"coastline"},{"arc":[{"x":124998,"y":119900},{"x":-100,"y":81},{"x":-57,"y":-73},{"x":53,"y":-43},{"x":72,"y":59},{"x":32,"y":-24}],"type":"coastline"},{"arc":[{"x":123244,"y":121855},{"x":-37,"y":-213},{"x":-62,"y":-52},{"x":-3,"y":-278},{"x":-128,"y":-186},{"x":-35,"y":-150},{"x":-38,"y":-13},{"x":-12,"y":-124},{"x":-102,"y":-45},{"x":-56,"y":-80},{"x":-39,"y":28},{"x":-119,"y":-101},{"x":-102,"y":-44},{"x":-81,"y":8},{"x":-104,"y":-56},{"x":-41,"y":-66},{"x":-81,"y":-46},{"x":58,"y":-104},{"x":-16,"y":-97},{"x":-136,"y":-166},{"x":-133,"y":-47},{"x":-96,"y":71},{"x":-169,"y":-85},{"x":-125,"y":60},{"x":-27,"y":-48},{"x":-68,"y":-19},{"x":-46,"y":-99},{"x":16,"y":-24},{"x":122,"y":-2},{"x":48,"y":-26},{"x":29,"y":-78},{"x":61,"y":-28},{"x":-44,"y":-42},{"x":-15,"y":-112},{"x":25,"y":-139},{"x":18,"y":-33},{"x":27,"y":6},{"x":-133,"y":-81},{"x":-51,"y":-202},{"x":-38,"y":-12},{"x":-25,"y":-54},{"x":53,"y":-291},{"x":-11,"y":-152},{"x":-55,"y":-47},{"x":-34,"y":-102},{"x":-96,"y":-92},{"x":-125,"y":-67},{"x":-59,"y":18},{"x":-51,"y":-36},{"x":-49,"y":-129},{"x":71,"y":-21},{"x":12,"y":-138},{"x":78,"y":-39},{"x":17,"y":-92},{"x":71,"y":-106},{"x":152,"y":131},{"x":171,"y":-52},{"x":28,"y":56},{"x":167,"y":91},{"x":98,"y":-10},{"x":17,"y":-121},{"x":104,"y":-15},{"x":64,"y":-175},{"x":-23,"y":-117},{"x":24,"y":-53},{"x":-82,"y":-55},{"x":6,"y":-37},{"x":94,"y":-73},{"x":15,"y":-128},{"x":54,"y":-90},{"x":-95,"y":-214},{"x":55,"y":-200},{"x":-77,"y":-44},{"x":-62,"y":75},{"x":-96,"y":-79},{"x":-42,"y":40},{"x":-88,"y":16},{"x":-38,"y":71},{"x":-68,"y":-10},{"x":-128,"y":-145},{"x":-83,"y":-8},{"x":-233,"y":-198},{"x":-88,"y":6},{"x":-39,"y":-75},{"x":-74,"y":-22},{"x":-110,"y":-208},{"x":-77,"y":-16},{"x":-40,"y":-51},{"x":-28,"y":-123},{"x":-49,"y":-51}],"type":"admin"},{"arc":[{"x":120737,"y":115898},{"x":40,"y":-3},{"x":93,"y":-98},{"x":156,"y":37},{"x":123,"y":-39},{"x":160,"y":-150},{"x":47,"y":34},{"x":355,"y":-3},{"x":215,"y":-161},{"x":120,"y":-7},{"x":34,"y":41},{"x":130,"y":-12},{"x":50,"y":33},{"x":68,"y":-53},{"x":97,"y":-19},{"x":-8,"y":-184},{"x":71,"y":-112},{"x":-4,"y":-54},{"x":178,"y":-117},{"x":102,"y":-129}],"type":"admin"},{"arc":[{"x":122764,"y":114902},{"x":8,"y":126},{"x":129,"y":377},{"x":340,"y":895},{"x":190,"y":253},{"x":-100,"y":-76},{"x":-15,"y":40},{"x":72,"y":29},{"x":145,"y":522},{"x":122,"y":145},{"x":16,"y":74},{"x":104,"y":76},{"x":71,"y":173},{"x":147,"y":180},{"x":22,"y":-4},{"x":39,"y":37},{"x":-53,"y":-31},{"x":13,"y":30},{"x":-23,"y":2},{"x":29,"y":9},{"x":5,"y":-17},{"x":25,"y":52},{"x":7,"y":163},{"x":107,"y":169},{"x":51,"y":41},{"x":41,"y":-24},{"x":-4,"y":54},{"x":64,"y":25},{"x":139,"y":180},{"x":108,"y":33},{"x":-36,"y":6},{"x":70,"y":65},{"x":-24,"y":207},{"x":-64,"y":84},{"x":25,"y":67},{"x":-18,"y":-23},{"x":-31,"y":99},{"x":10,"y":136},{"x":87,"y":234},{"x":-31,"y":64},{"x":57,"y":189},{"x":95,"y":121},{"x":23,"y":-5},{"x":177,"y":53},{"x":30,"y":28},{"x":-206,"y":-79},{"x":-39,"y":23},{"x":19,"y":46},{"x":30,"y":-45},{"x":31,"y":20},{"x":-32,"y":29},{"x":12,"y":18},{"x":29,"y":-25},{"x":63,"y":79},{"x":-34,"y":18},{"x":-26,"y":-23},{"x":32,"y":47},{"x":32,"y":-25},{"x":-29,"y":22},{"x":24,"y":48},{"x":82,"y":105},{"x":27,"y":-19},{"x":-9,"y":35},{"x":111,"y":139},{"x":21,"y":-16},{"x":-8,"y":33},{"x":49,"y":57},{"x":754,"y":775}],"type":"coastline"},{"arc":[{"x":125866,"y":121022},{"x":-36,"y":47},{"x":-80,"y":-45},{"x":-1,"y":34},{"x":83,"y":75},{"x":-88,"y":53},{"x":31,"y":72},{"x":-85,"y":327},{"x":-139,"y":157},{"x":21,"y":120},{"x":-135,"y":131},{"x":7,"y":-61},{"x":-91,"y":-114},{"x":-103,"y":-51},{"x":-32,"y":17},{"x":-91,"y":-83},{"x":-26,"y":0},{"x":-62,"y":157},{"x":-110,"y":5},{"x":-90,"y":85},{"x":53,"y":119},{"x":-72,"y":38},{"x":-62,"y":-20},{"x":-103,"y":116},{"x":-94,"y":-46},{"x":-54,"y":20},{"x":-73,"y":-25},{"x":-158,"y":-158},{"x":-22,"y":-116},{"x":-78,"y":-16},{"x":-45,"y":32},{"x":-117,"y":-49},{"x":-44,"y":11},{"x":-64,"y":75},{"x":-80,"y":5},{"x":-56,"y":76},{"x":-132,"y":-67},{"x":-52,"y":43},{"x":-58,"y":-38},{"x":-147,"y":30},{"x":-95,"y":-118},{"x":-42,"y":-5}],"type":"area"},{"arc":[{"x":120474,"y":123194},{"x":259,"y":-62},{"x":44,"y":-120},{"x":80,"y":-29},{"x":45,"y":21},{"x":64,"y":117},{"x":167,"y":72},{"x":98,"y":-69},{"x":27,"y":-58},{"x":110,"y":83},{"x":210,"y":23},{"x":101,"y":-91},{"x":25,"y":-189},{"x":60,"y":-50},{"x":52,"y":-124},{"x":34,"y":4},{"x":-10,"y":-79},{"x":92,"y":-60},{"x":114,"y":25},{"x":42,"y":-63},{"x":-14,"y":-129},{"x":66,"y":-60},{"x":108,"y":26},{"x":31,"y":-72},{"x":247,"y":32},{"x":319,"y":-2},{"x":76,"y":-85},{"x":237,"y":-78},{"x":22,"y":-103},{"x":-25,"y":-126},{"x":89,"y":-93}],"type":"admin"},{"arc":[{"x":125866,"y":121022},{"x":172,"y":144},{"x":-4,"y":79},{"x":116,"y":111},{"x":1,"y":56},{"x":105,"y":156},{"x":42,"y":1},{"x":11,"y":141},{"x":36,"y":18},{"x":13,"y":75},{"x":25,"y":-3},{"x":25,"y":14},{"x":-30,"y":-10},{"x":8,"y":23},{"x":21,"y":-2},{"x":-11,"y":31},{"x":71,"y":87},{"x":127,"y":55},{"x":-127,"y":-53},{"x":-44,"y":-44},{"x":10,"y":60},{"x":94,"y":37},{"x":-50,"y":-15},{"x":-23,"y":22},{"x":67,"y":17},{"x":0,"y":44},{"x":124,"y":96},{"x":337,"y":200},{"x":123,"y":-39},{"x":46,"y":11},{"x":-168,"y":28},{"x":147,"y":67},{"x":-25,"y":-38},{"x":22,"y":-18},{"x":4,"y":56},{"x":110,"y":65},{"x":201,"y":87},{"x":109,"y":-1},{"x":27,"y":97},{"x":78,"y":30},{"x":102,"y":107},{"x":133,"y":58},{"x":217,"y":205},{"x":-26,"y":-2},{"x":174,"y":250},{"x":317,"y":159},{"x":116,"y":109},{"x":250,"y":101},{"x":80,"y":21},{"x":13,"y":-20},{"x":-7,"y":31},{"x":45,"y":22},{"x":-14,"y":-43},{"x":35,"y":26},{"x":19,"y":-39},{"x":28,"y":23},{"x":-24,"y":-4},{"x":2,"y":37},{"x":41,"y":29},{"x":512,"y":117}],"type":"coastline"},{"arc":[{"x":129669,"y":123894},{"x":-20,"y":36},{"x":42,"y":85},{"x":-26,"y":58},{"x":-50,"y":22},{"x":-144,"y":-51},{"x":-80,"y":7},{"x":-14,"y":-120},{"x":-201,"y":-23},{"x":-19,"y":75},{"x":-19,"y":-45},{"x":-39,"y":69},{"x":-100,"y":63},{"x":20,"y":38},{"x":43,"y":5},{"x":19,"y":73},{"x":-76,"y":28},{"x":-15,"y":-23},{"x":-113,"y":75},{"x":-30,"y":-32},{"x":10,"y":47},{"x":-33,"y":19},{"x":-17,"y":-43},{"x":-89,"y":-55},{"x":-54,"y":20},{"x":24,"y":28},{"x":-97,"y":0},{"x":110,"y":76},{"x":-18,"y":11},{"x":76,"y":73},{"x":111,"y":265},{"x":-4,"y":103},{"x":78,"y":159},{"x":1,"y":107},{"x":44,"y":19},{"x":48,"y":-62},{"x":68,"y":-3},{"x":72,"y":-47},{"x":-69,"y":122},{"x":43,"y":110},{"x":35,"y":-7},{"x":68,"y":57},{"x":114,"y":6},{"x":49,"y":73},{"x":-9,"y":202},{"x":25,"y":-27},{"x":99,"y":15},{"x":108,"y":82},{"x":61,"y":118},{"x":-47,"y":64},{"x":-105,"y":0},{"x":-11,"y":59},{"x":89,"y":5},{"x":162,"y":113},{"x":79,"y":109},{"x":-43,"y":16},{"x":27,"y":12},{"x":-57,"y":0},{"x":48,"y":22},{"x":39,"y":-20},{"x":9,"y":25},{"x":-28,"y":56},{"x":42,"y":50},{"x":-48,"y":-5},{"x":10,"y":48},{"x":30,"y":-2},{"x":10,"y":44},{"x":44,"y":-16},{"x":-45,"y":22},{"x":44,"y":9},{"x":-30,"y":37},{"x":-39,"y":-14},{"x":-38,"y":79},{"x":-60,"y":-74},{"x":-56,"y":-4},{"x":-37,"y":-38},{"x":-105,"y":102},{"x":-178,"y":-63},{"x":-17,"y":22},{"x":-78,"y":-9},{"x":-60,"y":71},{"x":-62,"y":-35},{"x":-50,"y":50},{"x":50,"y":75},{"x":11,"y":96},{"x":-56,"y":12},{"x":-27,"y":-27},{"x":-121,"y":72},{"x":-60,"y":-8},{"x":-37,"y":88},{"x":-167,"y":32},{"x":-42,"y":102},{"x":-50,"y":21},{"x":16,"y":94},{"x":130,"y":104},{"x":-117,"y":183},{"x":-165,"y":35},{"x":-65,"y":60},{"x":-216,"y":23},{"x":-53,"y":65},{"x":-107,"y":43},{"x":-23,"y":85},{"x":-88,"y":-24},{"x":-70,"y":36},{"x":-65,"y":-4},{"x":34,"y":112},{"x":-83,"y":27},{"x":-2,"y":82},{"x":-208,"y":81},{"x":-10,"y":-116},{"x":-76,"y":-51},{"x":-76,"y":-136},{"x":-146,"y":-65}],"type":"area"},{"arc":[{"x":137108,"y":127572},{"x":-37,"y":66},{"x":-45,"y":-46},{"x":-64,"y":-13},{"x":-27,"y":25},{"x":-15,"y":-33},{"x":-57,"y":-17},{"x":25,"y":26},{"x":-27,"y":-6},{"x":-113,"y":-67},{"x":-149,"y":-167},{"x":1,"y":-91},{"x":41,"y":33},{"x":56,"y":-12},{"x":12,"y":61},{"x":46,"y":-20},{"x":27,"y":16},{"x":25,"y":-28},{"x":29,"y":42},{"x":25,"y":-16},{"x":-11,"y":56},{"x":69,"y":54},{"x":45,"y":-11},{"x":144,"y":148}],"type":"coastline"},{"arc":[{"x":129669,"y":123894},{"x":104,"y":-7},{"x":173,"y":86},{"x":74,"y":-25},{"x":-35,"y":30},{"x":32,"y":-1},{"x":-7,"y":-21},{"x":50,"y":48},{"x":80,"y":7},{"x":177,"y":99},{"x":179,"y":52},{"x":123,"y":111},{"x":33,"y":-25},{"x":15,"y":59},{"x":285,"y":278},{"x":216,"y":342},{"x":62,"y":35},{"x":-25,"y":-4},{"x":13,"y":29},{"x":21,"y":-15},{"x":-22,"y":15},{"x":127,"y":233},{"x":237,"y":361},{"x":35,"y":40},{"x":23,"y":-14},{"x":13,"y":66},{"x":28,"y":-5},{"x":-22,"y":8},{"x":31,"y":54},{"x":41,"y":10},{"x":-26,"y":11},{"x":88,"y":116},{"x":34,"y":-10},{"x":-24,"y":25},{"x":46,"y":9},{"x":-17,"y":22},{"x":40,"y":12},{"x":-10,"y":30},{"x":79,"y":69},{"x":-17,"y":24},{"x":134,"y":60},{"x":-125,"y":-52},{"x":-18,"y":48},{"x":47,"y":7},{"x":-27,"y":21},{"x":26,"y":24},{"x":41,"y":-41},{"x":-12,"y":71},{"x":32,"y":110},{"x":33,"y":12},{"x":16,"y":233},{"x":119,"y":336},{"x":35,"y":-5},{"x":16,"y":23},{"x":-17,"y":-22},{"x":0,"y":33},{"x":-29,"y":-21},{"x":10,"y":49},{"x":12,"y":-27},{"x":2,"y":22},{"x":25,"y":-13},{"x":-38,"y":25},{"x":43,"y":56},{"x":-9,"y":42},{"x":29,"y":-6},{"x":-22,"y":27},{"x":18,"y":34},{"x":22,"y":-10},{"x":0,"y":65},{"x":53,"y":21},{"x":43,"y":79},{"x":6,"y":-2},{"x":248,"y":131},{"x":-248,"y":-129},{"x":-8,"y":4},{"x":9,"y":12},{"x":-21,"y":-5},{"x":10,"y":11},{"x":-21,"y":-5},{"x":10,"y":12},{"x":-18,"y":-7},{"x":-2,"y":28},{"x":-131,"y":56},{"x":-43,"y":-51},{"x":-21,"y":9},{"x":13,"y":58},{"x":-46,"y":12},{"x":60,"y":16},{"x":-10,"y":74},{"x":14,"y":-27},{"x":0,"y":43},{"x":53,"y":-84},{"x":36,"y":39},{"x":-7,"y":-71},{"x":106,"y":-40},{"x":31,"y":41},{"x":57,"y":-41},{"x":-21,"y":15},{"x":75,"y":108},{"x":57,"y":-39},{"x":-77,"y":87},{"x":16,"y":17},{"x":31,"y":-23},{"x":-1,"y":-40},{"x":2,"y":40},{"x":-30,"y":23},{"x":32,"y":44},{"x":26,"y":-6},{"x":-14,"y":32},{"x":34,"y":9},{"x":99,"y":168},{"x":148,"y":172},{"x":28,"y":-6},{"x":56,"y":95},{"x":473,"y":414},{"x":484,"y":302},{"x":24,"y":46},{"x":267,"y":140},{"x":45,"y":-51},{"x":-24,"y":45},{"x":48,"y":-9},{"x":-13,"y":29},{"x":27,"y":3},{"x":-37,"y":-91},{"x":55,"y":58},{"x":64,"y":-8},{"x":384,"y":182},{"x":75,"y":-69},{"x":277,"y":63},{"x":173,"y":-23},{"x":141,"y":37},{"x":55,"y":-24},{"x":208,"y":34},{"x":229,"y":-18},{"x":189,"y":78},{"x":10,"y":-27},{"x":110,"y":-7},{"x":161,"y":89},{"x":80,"y":2},{"x":130,"y":115},{"x":121,"y":6},{"x":108,"y":109},{"x":177,"y":51},{"x":21,"y":33},{"x":47,"y":4},{"x":-9,"y":-17},{"x":29,"y":45},{"x":26,"y":-8},{"x":-16,"y":-23},{"x":26,"y":11},{"x":8,"y":31},{"x":101,"y":57},{"x":46,"y":-20},{"x":20,"y":49},{"x":312,"y":188},{"x":87,"y":16},{"x":37,"y":-19}],"type":"coastline"},{"arc":[{"x":133234,"y":121220},{"x":-20,"y":53},{"x":37,"y":-69},{"x":-17,"y":16}],"type":"coastline"},{"arc":[{"x":135601,"y":121685},{"x":-1,"y":93},{"x":-67,"y":17},{"x":-11,"y":39},{"x":-91,"y":-31},{"x":72,"y":13},{"x":-59,"y":-39},{"x":-2,"y":21},{"x":-6,"y":-40},{"x":-184,"y":-33},{"x":-174,"y":-3},{"x":-32,"y":23},{"x":19,"y":-18},{"x":-245,"y":-14},{"x":-271,"y":-110},{"x":-169,"y":0},{"x":-31,"y":-46},{"x":-287,"y":-127},{"x":-73,"y":-77},{"x":-164,"y":-85},{"x":-46,"y":12},{"x":-211,"y":-117},{"x":-139,"y":16},{"x":-98,"y":-29},{"x":-34,"y":45},{"x":28,"y":-45},{"x":-52,"y":19},{"x":14,"y":-21},{"x":-75,"y":35},{"x":-18,"y":65},{"x":-30,"y":-24},{"x":-13,"y":17},{"x":-112,"y":276},{"x":72,"y":83},{"x":13,"y":226},{"x":33,"y":94},{"x":67,"y":20},{"x":-5,"y":138},{"x":65,"y":78},{"x":-90,"y":74},{"x":-47,"y":-2},{"x":1,"y":-24},{"x":-103,"y":41},{"x":-68,"y":-57},{"x":-129,"y":-29},{"x":-107,"y":-80},{"x":-222,"y":-52},{"x":-41,"y":-58},{"x":-72,"y":-19},{"x":-162,"y":-122},{"x":-329,"y":-143},{"x":-223,"y":-22},{"x":-33,"y":-112},{"x":-73,"y":-44},{"x":19,"y":38},{"x":-173,"y":-163},{"x":2,"y":-78},{"x":-98,"y":-102},{"x":-28,"y":-107},{"x":-74,"y":-74},{"x":-30,"y":8},{"x":24,"y":-17},{"x":-37,"y":-53},{"x":2,"y":85},{"x":-70,"y":-165},{"x":-163,"y":-143},{"x":-121,"y":-171},{"x":-53,"y":-120},{"x":19,"y":-291},{"x":-40,"y":48},{"x":41,"y":-61},{"x":-57,"y":-56},{"x":3,"y":-73},{"x":-45,"y":-15},{"x":-26,"y":-59},{"x":-27,"y":58},{"x":-11,"y":-79},{"x":54,"y":-27},{"x":-31,"y":-18},{"x":-6,"y":21},{"x":-80,"y":-161},{"x":-8,"y":-68},{"x":17,"y":19},{"x":-4,"y":-42},{"x":21,"y":9},{"x":24,"y":-54},{"x":-24,"y":-40},{"x":37,"y":-36},{"x":-1,"y":-76},{"x":35,"y":-29},{"x":35,"y":40},{"x":-9,"y":-71},{"x":49,"y":-9},{"x":-10,"y":-23},{"x":45,"y":26},{"x":33,"y":-18},{"x":26,"y":63},{"x":60,"y":24},{"x":-22,"y":67},{"x":48,"y":93},{"x":-24,"y":74},{"x":59,"y":34},{"x":-22,"y":70},{"x":58,"y":74},{"x":198,"y":109},{"x":101,"y":2},{"x":58,"y":50},{"x":112,"y":-4},{"x":96,"y":-86},{"x":115,"y":49},{"x":111,"y":126},{"x":94,"y":52},{"x":83,"y":171},{"x":86,"y":30},{"x":18,"y":17},{"x":-44,"y":-21},{"x":9,"y":30},{"x":82,"y":57},{"x":117,"y":-20},{"x":131,"y":-105},{"x":98,"y":-112},{"x":48,"y":-120},{"x":-48,"y":-187},{"x":-92,"y":-10},{"x":-72,"y":-83},{"x":-85,"y":-29},{"x":8,"y":59},{"x":-12,"y":-59},{"x":-103,"y":-29},{"x":94,"y":-150},{"x":-37,"y":13},{"x":86,"y":-79},{"x":47,"y":15},{"x":-4,"y":44},{"x":49,"y":-24},{"x":31,"y":27},{"x":109,"y":-5},{"x":49,"y":-15},{"x":12,"y":-79},{"x":79,"y":12},{"x":31,"y":-21},{"x":55,"y":134},{"x":127,"y":-19},{"x":7,"y":-24},{"x":49,"y":40},{"x":39,"y":-33},{"x":37,"y":18},{"x":63,"y":-25},{"x":107,"y":99},{"x":24,"y":-21},{"x":13,"y":41},{"x":30,"y":-74},{"x":64,"y":7},{"x":-50,"y":4},{"x":108,"y":78},{"x":28,"y":-13},{"x":-24,"y":49},{"x":34,"y":48},{"x":72,"y":1},{"x":114,"y":94},{"x":38,"y":-36},{"x":53,"y":84},{"x":49,"y":16},{"x":23,"y":69},{"x":82,"y":9},{"x":90,"y":86},{"x":50,"y":-39},{"x":10,"y":44},{"x":89,"y":22},{"x":11,"y":48},{"x":88,"y":13},{"x":152,"y":101},{"x":43,"y":-15},{"x":-5,"y":119},{"x":140,"y":189},{"x":89,"y":80},{"x":56,"y":3},{"x":35,"y":96},{"x":76,"y":31},{"x":50,"y":66},{"x":46,"y":-16},{"x":44,"y":38},{"x":-57,"y":52},{"x":35,"y":25},{"x":-16,"y":26},{"x":35,"y":16},{"x":-1,"y":87},{"x":36,"y":36},{"x":188,"y":86},{"x":85,"y":-31},{"x":54,"y":19},{"x":37,"y":54},{"x":116,"y":30},{"x":53,"y":83},{"x":50,"y":-7},{"x":23,"y":-36},{"x":4,"y":118},{"x":92,"y":92},{"x":3,"y":139}],"type":"coastline"},{"arc":[{"x":135640,"y":121539},{"x":-45,"y":-6},{"x":25,"y":-24},{"x":20,"y":30}],"type":"coastline"},{"arc":[{"x":120737,"y":115898},{"x":-143,"y":-84},{"x":-99,"y":59},{"x":-134,"y":-67},{"x":-207,"y":-5},{"x":-87,"y":52},{"x":-77,"y":-20},{"x":-15,"y":44},{"x":-94,"y":-10},{"x":-95,"y":26},{"x":-78,"y":-66},{"x":-54,"y":24},{"x":-123,"y":-14},{"x":-114,"y":-22},{"x":-25,"y":-41},{"x":-66,"y":-18},{"x":-216,"y":67},{"x":-60,"y":-14},{"x":-19,"y":-209},{"x":-89,"y":-87},{"x":-76,"y":-151},{"x":-66,"y":-48},{"x":-79,"y":14},{"x":-152,"y":-39},{"x":-19,"y":203},{"x":-105,"y":-61},{"x":-65,"y":21},{"x":-68,"y":-87},{"x":35,"y":-132},{"x":-47,"y":-68},{"x":-148,"y":-15},{"x":-7,"y":-71},{"x":-47,"y":-45},{"x":-79,"y":-9},{"x":-91,"y":46},{"x":-105,"y":-10},{"x":-44,"y":-79},{"x":-83,"y":-42},{"x":-165,"y":-26},{"x":-93,"y":-150},{"x":8,"y":-73},{"x":-83,"y":-33},{"x":-78,"y":12},{"x":-122,"y":-101},{"x":1,"y":-40}],"type":"admin"},{"arc":[{"x":117164,"y":114529},{"x":31,"y":-83},{"x":-53,"y":-134},{"x":38,"y":-146},{"x":104,"y":-76},{"x":85,"y":-126},{"x":117,"y":-28},{"x":19,"y":-56},{"x":-3,"y":-236},{"x":-125,"y":-104},{"x":44,"y":-89},{"x":-37,"y":-32},{"x":71,"y":-73},{"x":41,"y":-205},{"x":111,"y":-113},{"x":133,"y":7},{"x":90,"y":-49},{"x":-68,"y":-93},{"x":-26,"y":-129},{"x":-125,"y":-23},{"x":-37,"y":-57},{"x":9,"y":-101},{"x":-89,"y":-145},{"x":5,"y":-49},{"x":102,"y":-66},{"x":56,"y":69},{"x":70,"y":-4},{"x":20,"y":34},{"x":91,"y":-6},{"x":30,"y":-81},{"x":-54,"y":-63},{"x":65,"y":-153},{"x":-132,"y":-177},{"x":100,"y":-72},{"x":-163,"y":-118},{"x":-55,"y":-142},{"x":-76,"y":1},{"x":9,"y":-39},{"x":-39,"y":-26},{"x":87,"y":-6},{"x":107,"y":-92},{"x":68,"y":-11},{"x":-9,"y":-107},{"x":-40,"y":-24},{"x":45,"y":-29},{"x":16,"y":-90},{"x":-83,"y":-54},{"x":-21,"y":-67},{"x":-67,"y":-7},{"x":-37,"y":-87},{"x":-165,"y":-80},{"x":-17,"y":-82},{"x":-153,"y":-75},{"x":-26,"y":-78},{"x":-119,"y":23},{"x":-3,"y":-143},{"x":-111,"y":-142}],"type":"admin"},{"arc":[{"x":116995,"y":110395},{"x":-21,"y":-60},{"x":33,"y":-29},{"x":233,"y":89},{"x":135,"y":-18},{"x":133,"y":48},{"x":110,"y":-59},{"x":140,"y":75},{"x":482,"y":-110},{"x":27,"y":-69},{"x":-57,"y":-79},{"x":51,"y":-24},{"x":82,"y":50},{"x":185,"y":-15},{"x":107,"y":37},{"x":337,"y":18},{"x":40,"y":46},{"x":49,"y":-9},{"x":45,"y":38},{"x":60,"y":3},{"x":-2,"y":34},{"x":172,"y":16},{"x":33,"y":-18},{"x":101,"y":33},{"x":54,"y":58},{"x":62,"y":-53},{"x":11,"y":-55},{"x":102,"y":97},{"x":-21,"y":33},{"x":0,"y":-36},{"x":-26,"y":23},{"x":-23,"y":114},{"x":17,"y":-56},{"x":40,"y":-18},{"x":-9,"y":39},{"x":100,"y":32},{"x":-63,"y":22},{"x":7,"y":29},{"x":233,"y":99},{"x":-28,"y":61},{"x":44,"y":27},{"x":6,"y":81},{"x":102,"y":29},{"x":70,"y":-8},{"x":47,"y":-45},{"x":44,"y":64},{"x":38,"y":-16},{"x":21,"y":48},{"x":51,"y":11},{"x":-8,"y":107},{"x":153,"y":41},{"x":59,"y":210},{"x":106,"y":17}],"type":"area"},{"arc":[{"x":120659,"y":111347},{"x":61,"y":422},{"x":24,"y":-40},{"x":-81,"y":548},{"x":-13,"y":-17},{"x":-13,"y":32},{"x":33,"y":-14},{"x":-9,"y":154},{"x":42,"y":113},{"x":175,"y":111},{"x":250,"y":354},{"x":5,"y":-9},{"x":-1,"y":10},{"x":14,"y":-4},{"x":14,"y":9},{"x":-27,"y":-24},{"x":28,"y":16},{"x":-1,"y":9},{"x":91,"y":-15},{"x":13,"y":20},{"x":18,"y":-17},{"x":-29,"y":-7},{"x":30,"y":5},{"x":228,"y":150},{"x":52,"y":10},{"x":18,"y":-12},{"x":-37,"y":-15},{"x":85,"y":-1},{"x":132,"y":76},{"x":69,"y":2},{"x":88,"y":-32},{"x":25,"y":29},{"x":-8,"y":-26},{"x":-12,"y":-10},{"x":-14,"y":5},{"x":72,"y":-44},{"x":270,"y":156},{"x":-6,"y":-24},{"x":283,"y":522},{"x":88,"y":640},{"x":96,"y":121},{"x":-15,"y":-39},{"x":20,"y":20},{"x":47,"y":371}],"type":"coastline"},{"arc":[{"x":122569,"y":110343},{"x":-179,"y":-189},{"x":-157,"y":39},{"x":-91,"y":-55},{"x":-31,"y":-57},{"x":-150,"y":-70},{"x":-96,"y":-110},{"x":-54,"y":-14},{"x":-19,"y":-65},{"x":-135,"y":26},{"x":1,"y":38},{"x":-6,"y":-34},{"x":-38,"y":5},{"x":39,"y":9},{"x":-27,"y":12},{"x":-35,"y":-9},{"x":58,"y":16},{"x":-86,"y":-13},{"x":-174,"y":141},{"x":-197,"y":276},{"x":-119,"y":94},{"x":46,"y":8},{"x":-43,"y":9},{"x":29,"y":31},{"x":-31,"y":49},{"x":-39,"y":-40},{"x":-95,"y":156},{"x":7,"y":-38},{"x":-37,"y":24},{"x":-20,"y":58},{"x":23,"y":11},{"x":-35,"y":42},{"x":48,"y":-44},{"x":-38,"y":183},{"x":-26,"y":-50},{"x":-46,"y":45},{"x":11,"y":-154},{"x":-40,"y":27},{"x":14,"y":-37},{"x":-30,"y":-1},{"x":-18,"y":153},{"x":-45,"y":-24},{"x":19,"y":38},{"x":-78,"y":150},{"x":35,"y":10},{"x":56,"y":-126},{"x":55,"y":18},{"x":36,"y":-24},{"x":32,"y":34},{"x":-15,"y":-23},{"x":60,"y":0},{"x":-38,"y":8},{"x":-71,"y":166},{"x":6,"y":-36},{"x":-37,"y":11},{"x":25,"y":11},{"x":-23,"y":-2},{"x":-12,"y":78},{"x":-49,"y":51},{"x":-50,"y":192}],"type":"coastline"},{"arc":[{"x":116995,"y":110395},{"x":-55,"y":30},{"x":-196,"y":-104},{"x":-28,"y":77},{"x":-38,"y":-49},{"x":-99,"y":-8},{"x":-101,"y":-109},{"x":8,"y":-139},{"x":-65,"y":-12},{"x":-22,"y":24},{"x":-106,"y":-82},{"x":-46,"y":14},{"x":-59,"y":-77},{"x":-6,"y":-129},{"x":-36,"y":2},{"x":-77,"y":-87},{"x":32,"y":-36},{"x":-24,"y":-22},{"x":26,"y":-80},{"x":303,"y":122},{"x":124,"y":-93},{"x":156,"y":-51},{"x":93,"y":-119},{"x":-9,"y":-54},{"x":120,"y":-198},{"x":-145,"y":-135},{"x":-27,"y":-120},{"x":70,"y":7},{"x":6,"y":-48},{"x":68,"y":53},{"x":91,"y":-40},{"x":-117,"y":-55},{"x":-52,"y":7},{"x":-22,"y":-102},{"x":35,"y":-62},{"x":-37,"y":-54},{"x":-137,"y":42},{"x":-165,"y":-78},{"x":-81,"y":-2},{"x":-41,"y":-48},{"x":0,"y":-131},{"x":35,"y":-41},{"x":-66,"y":-93}],"type":"admin"},{"arc":[{"x":116305,"y":108315},{"x":20,"y":-11}],"type":"admin"},{"arc":[{"x":116325,"y":108304},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":116330,"y":108302},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":116332,"y":108302},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":116341,"y":108306},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":116346,"y":108306},{"x":14,"y":-5}],"type":"admin"},{"arc":[{"x":116360,"y":108301},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":116365,"y":108300},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":116372,"y":108300},{"x":10,"y":-2}],"type":"admin"},{"arc":[{"x":116382,"y":108298},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":116391,"y":108296},{"x":16,"y":-4}],"type":"admin"},{"arc":[{"x":116407,"y":108292},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":116410,"y":108288},{"x":17,"y":-3}],"type":"admin"},{"arc":[{"x":116427,"y":108285},{"x":15,"y":6}],"type":"coastline"},{"arc":[{"x":116442,"y":108291},{"x":4,"y":5}],"type":"admin"},{"arc":[{"x":116446,"y":108296},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":116456,"y":108300},{"x":35,"y":-5}],"type":"admin"},{"arc":[{"x":116491,"y":108295},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":116500,"y":108291},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":116505,"y":108292},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":116509,"y":108296},{"x":17,"y":3}],"type":"admin"},{"arc":[{"x":116526,"y":108299},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":116531,"y":108298},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":116533,"y":108297},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":116540,"y":108295},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":116542,"y":108293},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":116548,"y":108290},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":116550,"y":108288},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":116552,"y":108286},{"x":4,"y":-3}],"type":"admin"},{"arc":[{"x":116556,"y":108283},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":116559,"y":108280},{"x":5,"y":-6}],"type":"admin"},{"arc":[{"x":116564,"y":108274},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":116569,"y":108269},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":116571,"y":108267},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":116575,"y":108265},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":116579,"y":108261},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":116582,"y":108256},{"x":5,"y":-6}],"type":"admin"},{"arc":[{"x":116587,"y":108250},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":116593,"y":108248},{"x":12,"y":14}],"type":"admin"},{"arc":[{"x":116605,"y":108262},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":116607,"y":108264},{"x":28,"y":9}],"type":"admin"},{"arc":[{"x":116635,"y":108273},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":116644,"y":108268},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":116647,"y":108265},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":116652,"y":108267},{"x":6,"y":-1}],"type":"admin"},{"arc":[{"x":116658,"y":108266},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":116668,"y":108263},{"x":38,"y":2}],"type":"admin"},{"arc":[{"x":116706,"y":108265},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":116708,"y":108264},{"x":65,"y":14},{"x":-1,"y":45},{"x":97,"y":116},{"x":110,"y":-62},{"x":294,"y":-40},{"x":125,"y":-127},{"x":6,"y":-70},{"x":130,"y":-10},{"x":38,"y":43},{"x":-18,"y":32},{"x":131,"y":145},{"x":26,"y":-52},{"x":50,"y":-15},{"x":85,"y":80},{"x":22,"y":-27},{"x":43,"y":26},{"x":61,"y":-21},{"x":96,"y":57},{"x":51,"y":-3},{"x":63,"y":-67},{"x":47,"y":25},{"x":84,"y":-16},{"x":259,"y":139},{"x":136,"y":34},{"x":155,"y":-115},{"x":8,"y":-90},{"x":145,"y":34},{"x":48,"y":-9},{"x":29,"y":-46},{"x":101,"y":21},{"x":111,"y":-60},{"x":115,"y":7},{"x":85,"y":123},{"x":97,"y":5},{"x":10,"y":53},{"x":98,"y":23},{"x":116,"y":106},{"x":130,"y":-26},{"x":25,"y":-82},{"x":133,"y":43},{"x":175,"y":-206},{"x":16,"y":30},{"x":84,"y":24},{"x":11,"y":186},{"x":91,"y":16},{"x":47,"y":136},{"x":99,"y":45}],"type":"admin"},{"arc":[{"x":120637,"y":108728},{"x":137,"y":59},{"x":116,"y":-74},{"x":43,"y":59},{"x":74,"y":26},{"x":176,"y":-41},{"x":151,"y":88},{"x":102,"y":-28},{"x":12,"y":41},{"x":63,"y":1},{"x":30,"y":42},{"x":35,"y":-48},{"x":54,"y":10},{"x":23,"y":69},{"x":134,"y":92},{"x":50,"y":-7},{"x":29,"y":28},{"x":35,"y":-36},{"x":101,"y":-25},{"x":65,"y":9},{"x":101,"y":67},{"x":16,"y":40},{"x":58,"y":23},{"x":57,"y":156},{"x":189,"y":121},{"x":51,"y":177},{"x":-111,"y":156},{"x":80,"y":68},{"x":138,"y":36},{"x":-3,"y":72},{"x":-56,"y":69},{"x":12,"y":173},{"x":45,"y":82},{"x":-75,"y":110}],"type":"admin"},{"arc":[{"x":124052,"y":109422},{"x":-6,"y":23},{"x":6,"y":-23},{"x":26,"y":7},{"x":-26,"y":-7}],"type":"coastline"},{"arc":[{"x":124552,"y":110234},{"x":-46,"y":68},{"x":-31,"y":-15},{"x":-25,"y":49},{"x":-36,"y":12},{"x":27,"y":-13},{"x":-26,"y":-13},{"x":-43,"y":40},{"x":-33,"y":-78},{"x":-66,"y":-28},{"x":-73,"y":29},{"x":-17,"y":47},{"x":-76,"y":-12},{"x":-39,"y":-60},{"x":-4,"y":-109},{"x":-52,"y":-43},{"x":29,"y":-19},{"x":-17,"y":-55},{"x":51,"y":-5},{"x":-25,"y":-30},{"x":53,"y":-4},{"x":-3,"y":-30},{"x":-80,"y":11},{"x":60,"y":-73},{"x":-111,"y":-120},{"x":-93,"y":-35},{"x":6,"y":-44},{"x":63,"y":-51},{"x":-124,"y":-140},{"x":100,"y":4},{"x":23,"y":-29},{"x":97,"y":-15},{"x":79,"y":-72},{"x":17,"y":-82},{"x":77,"y":-29},{"x":10,"y":-84},{"x":47,"y":3},{"x":20,"y":-37},{"x":42,"y":35},{"x":18,"y":-36},{"x":50,"y":-2},{"x":16,"y":42},{"x":-44,"y":10},{"x":54,"y":23},{"x":-102,"y":122},{"x":-24,"y":-29},{"x":-108,"y":3},{"x":31,"y":64},{"x":67,"y":11},{"x":-28,"y":14},{"x":21,"y":33},{"x":60,"y":11},{"x":-72,"y":66},{"x":55,"y":26},{"x":-18,"y":73},{"x":41,"y":16},{"x":-65,"y":105},{"x":79,"y":-79},{"x":66,"y":5},{"x":-80,"y":85},{"x":27,"y":26},{"x":8,"y":-18},{"x":4,"y":55},{"x":-82,"y":19},{"x":-68,"y":123},{"x":75,"y":32},{"x":-7,"y":104},{"x":157,"y":28},{"x":88,"y":95}],"type":"coastline"},{"arc":[{"x":126842,"y":109217},{"x":-1,"y":57},{"x":-14,"y":-103},{"x":15,"y":46}],"type":"coastline"},{"arc":[{"x":122360,"y":108021},{"x":73,"y":58},{"x":80,"y":-44},{"x":-23,"y":27},{"x":22,"y":29},{"x":90,"y":36},{"x":178,"y":17},{"x":57,"y":-38},{"x":79,"y":37},{"x":50,"y":-19},{"x":6,"y":-48},{"x":16,"y":27},{"x":28,"y":-53},{"x":-21,"y":-29},{"x":30,"y":11},{"x":-27,"y":-24},{"x":49,"y":-1},{"x":27,"y":-77},{"x":85,"y":-7},{"x":83,"y":35},{"x":-2,"y":-50},{"x":24,"y":-14},{"x":21,"y":32},{"x":65,"y":-73},{"x":76,"y":5},{"x":-16,"y":-26},{"x":74,"y":-69},{"x":47,"y":4},{"x":-15,"y":-24},{"x":35,"y":25},{"x":149,"y":-34},{"x":55,"y":42},{"x":-13,"y":36},{"x":17,"y":-27},{"x":13,"y":22},{"x":4,"y":-46},{"x":111,"y":64},{"x":35,"y":-29},{"x":18,"y":28},{"x":110,"y":-37},{"x":105,"y":35},{"x":66,"y":-31},{"x":18,"y":17},{"x":129,"y":-139},{"x":6,"y":-74},{"x":-87,"y":-31},{"x":11,"y":44},{"x":-24,"y":-15},{"x":15,"y":-34},{"x":-43,"y":-82},{"x":46,"y":4},{"x":-29,"y":-67},{"x":90,"y":-59},{"x":174,"y":57},{"x":46,"y":-31},{"x":58,"y":33},{"x":122,"y":-9},{"x":54,"y":51},{"x":44,"y":-38},{"x":22,"y":39},{"x":48,"y":-21},{"x":44,"y":73},{"x":31,"y":-4},{"x":2,"y":42},{"x":80,"y":13},{"x":0,"y":47},{"x":71,"y":26},{"x":108,"y":-42},{"x":128,"y":166},{"x":224,"y":102},{"x":25,"y":-18},{"x":12,"y":25},{"x":60,"y":-4},{"x":31,"y":-75},{"x":96,"y":-1},{"x":20,"y":24},{"x":16,"y":-34},{"x":99,"y":10},{"x":30,"y":-27},{"x":73,"y":33},{"x":92,"y":104},{"x":97,"y":-9},{"x":-47,"y":88},{"x":69,"y":59},{"x":65,"y":-45},{"x":72,"y":46},{"x":10,"y":130},{"x":45,"y":40},{"x":-23,"y":33},{"x":46,"y":16},{"x":12,"y":58},{"x":32,"y":-6},{"x":-14,"y":83},{"x":99,"y":77},{"x":21,"y":133},{"x":112,"y":113},{"x":-3,"y":70},{"x":67,"y":156},{"x":-60,"y":156},{"x":57,"y":52},{"x":-46,"y":49},{"x":-3,"y":-46},{"x":-3,"y":39},{"x":-39,"y":-5},{"x":-23,"y":169},{"x":167,"y":325},{"x":4,"y":61},{"x":165,"y":270},{"x":22,"y":161},{"x":111,"y":125},{"x":57,"y":5},{"x":-8,"y":93},{"x":56,"y":117},{"x":155,"y":160},{"x":48,"y":-26},{"x":1,"y":40},{"x":20,"y":-10},{"x":8,"y":90},{"x":64,"y":40},{"x":116,"y":265},{"x":39,"y":217},{"x":-33,"y":63},{"x":82,"y":165},{"x":-20,"y":69},{"x":39,"y":63},{"x":58,"y":16},{"x":2,"y":102},{"x":66,"y":43},{"x":-29,"y":-15},{"x":-10,"y":57},{"x":63,"y":17},{"x":-10,"y":37},{"x":59,"y":97},{"x":-28,"y":24},{"x":49,"y":67},{"x":-61,"y":56},{"x":39,"y":45},{"x":-48,"y":74},{"x":31,"y":236},{"x":-60,"y":23},{"x":27,"y":-34},{"x":-61,"y":18},{"x":-38,"y":136},{"x":-44,"y":-22},{"x":-89,"y":66},{"x":-73,"y":-64},{"x":-104,"y":-26},{"x":-168,"y":134},{"x":-136,"y":24},{"x":-70,"y":-90},{"x":-64,"y":-296},{"x":43,"y":-77},{"x":-30,"y":16},{"x":46,"y":-31},{"x":-11,"y":-127},{"x":-43,"y":-120},{"x":-46,"y":-18},{"x":24,"y":-9},{"x":-25,"y":-17},{"x":-29,"y":27},{"x":35,"y":-47},{"x":-45,"y":-48},{"x":-180,"y":-71},{"x":-118,"y":17},{"x":-63,"y":-69},{"x":-103,"y":0},{"x":-74,"y":17},{"x":-31,"y":46},{"x":-38,"y":-25},{"x":-59,"y":53},{"x":5,"y":-31},{"x":-41,"y":28},{"x":-13,"y":41},{"x":50,"y":94},{"x":-44,"y":8},{"x":-78,"y":-43},{"x":-45,"y":-72},{"x":-22,"y":51},{"x":28,"y":48},{"x":-41,"y":20},{"x":-63,"y":-48},{"x":-44,"y":22},{"x":-74,"y":-103},{"x":-96,"y":-33},{"x":-45,"y":-64},{"x":38,"y":5},{"x":46,"y":-72},{"x":-56,"y":39},{"x":5,"y":-57},{"x":-26,"y":9},{"x":-18,"y":58},{"x":-7,"y":-64},{"x":-22,"y":53},{"x":-37,"y":-8},{"x":26,"y":-41},{"x":-36,"y":-59},{"x":31,"y":7},{"x":11,"y":-56},{"x":-34,"y":-11},{"x":8,"y":-35},{"x":-15,"y":51},{"x":-1,"y":-28},{"x":18,"y":-59},{"x":61,"y":28},{"x":-38,"y":-101},{"x":30,"y":-35},{"x":-14,"y":-155},{"x":49,"y":-54},{"x":-39,"y":-18},{"x":-17,"y":25},{"x":9,"y":-56},{"x":-26,"y":-13},{"x":51,"y":16},{"x":40,"y":-54},{"x":-60,"y":28},{"x":-38,"y":-36},{"x":-11,"y":34},{"x":9,"y":-77},{"x":26,"y":-6},{"x":-194,"y":-357},{"x":-139,"y":-32},{"x":-16,"y":-30},{"x":-55,"y":32},{"x":-103,"y":-142},{"x":-132,"y":-64},{"x":-130,"y":12},{"x":-44,"y":-76},{"x":-50,"y":-16},{"x":27,"y":-55},{"x":-58,"y":-196},{"x":-21,"y":52},{"x":-31,"y":-28},{"x":-35,"y":39},{"x":-16,"y":-48},{"x":-59,"y":-18},{"x":36,"y":-61},{"x":-78,"y":-51},{"x":4,"y":-39},{"x":206,"y":-181},{"x":-42,"y":-12},{"x":1,"y":-79},{"x":78,"y":-33},{"x":-54,"y":-12},{"x":48,"y":-64},{"x":42,"y":13},{"x":28,"y":-47},{"x":36,"y":10},{"x":-33,"y":-63},{"x":120,"y":84},{"x":40,"y":76},{"x":32,"y":-34},{"x":-30,"y":-112},{"x":-29,"y":12},{"x":-56,"y":-48},{"x":44,"y":-14},{"x":-30,"y":-28},{"x":41,"y":-4},{"x":-3,"y":-36},{"x":28,"y":9},{"x":-29,"y":-49},{"x":39,"y":-26},{"x":-41,"y":-8},{"x":-58,"y":84},{"x":-28,"y":-13},{"x":1,"y":-101},{"x":68,"y":-27},{"x":-91,"y":-75},{"x":-1,"y":78},{"x":-47,"y":-9},{"x":13,"y":61},{"x":-44,"y":2},{"x":-34,"y":54},{"x":-73,"y":-35},{"x":68,"y":-10},{"x":-54,"y":-71},{"x":30,"y":-70},{"x":-84,"y":51},{"x":-30,"y":-55},{"x":-56,"y":-11},{"x":-12,"y":-32},{"x":-16,"y":16},{"x":-124,"y":-104},{"x":-33,"y":5},{"x":-23,"y":-48},{"x":-144,"y":-30},{"x":-24,"y":-51},{"x":-99,"y":51},{"x":45,"y":11},{"x":-3,"y":39},{"x":30,"y":-19},{"x":14,"y":19},{"x":-78,"y":113},{"x":-74,"y":-37},{"x":-167,"y":-23},{"x":41,"y":-77},{"x":-52,"y":-21},{"x":42,"y":-51},{"x":-26,"y":-50},{"x":-130,"y":-16},{"x":-98,"y":51},{"x":-35,"y":-75},{"x":-69,"y":-25},{"x":-75,"y":224},{"x":57,"y":16},{"x":-27,"y":53},{"x":21,"y":40},{"x":53,"y":34},{"x":39,"y":-20},{"x":52,"y":23},{"x":27,"y":70},{"x":-58,"y":99},{"x":-18,"y":121},{"x":-59,"y":-41},{"x":13,"y":-24},{"x":-74,"y":11},{"x":-30,"y":29},{"x":-6,"y":173},{"x":-96,"y":-54},{"x":-66,"y":83},{"x":-24,"y":73},{"x":52,"y":5},{"x":-50,"y":74},{"x":23,"y":-6},{"x":23,"y":34},{"x":-15,"y":-21},{"x":1,"y":57},{"x":36,"y":-4},{"x":-20,"y":-28},{"x":32,"y":-10},{"x":42,"y":67},{"x":14,"y":31},{"x":-23,"y":-46},{"x":-45,"y":39},{"x":19,"y":39},{"x":51,"y":15},{"x":-8,"y":-23},{"x":12,"y":26},{"x":18,"y":-53},{"x":112,"y":50},{"x":-31,"y":36},{"x":130,"y":-1},{"x":138,"y":80},{"x":51,"y":66},{"x":-34,"y":36},{"x":43,"y":59},{"x":-17,"y":81},{"x":26,"y":38},{"x":-48,"y":-8},{"x":-25,"y":-56},{"x":-60,"y":26},{"x":-124,"y":-18},{"x":-64,"y":31},{"x":-149,"y":-43},{"x":-144,"y":-14},{"x":-35,"y":20},{"x":21,"y":-18},{"x":-20,"y":14},{"x":-27,"y":-28},{"x":-153,"y":51},{"x":-101,"y":-46},{"x":-75,"y":8},{"x":-77,"y":52},{"x":-78,"y":-41},{"x":-87,"y":32},{"x":-12,"y":-19},{"x":-79,"y":49},{"x":-83,"y":-38}],"type":"coastline"},{"arc":[{"x":120637,"y":108728},{"x":67,"y":-86},{"x":176,"y":-17},{"x":-19,"y":-32},{"x":40,"y":-72},{"x":-63,"y":62},{"x":-90,"y":-79},{"x":68,"y":-89},{"x":3,"y":-120},{"x":41,"y":4},{"x":2,"y":-68},{"x":71,"y":-37},{"x":-35,"y":-170},{"x":13,"y":-48},{"x":68,"y":-2},{"x":-17,"y":-190}],"type":"area"},{"arc":[{"x":120962,"y":107784},{"x":500,"y":203},{"x":572,"y":136},{"x":161,"y":-19},{"x":38,"y":-44},{"x":-26,"y":-31},{"x":33,"y":17},{"x":-8,"y":-34},{"x":-32,"y":11},{"x":69,"y":-40},{"x":91,"y":38}],"type":"coastline"},{"arc":[{"x":128772,"y":109156},{"x":-39,"y":20},{"x":10,"y":-41},{"x":29,"y":21}],"type":"coastline"},{"arc":[{"x":131074,"y":109329},{"x":-42,"y":21},{"x":-61,"y":-91},{"x":57,"y":1},{"x":46,"y":69}],"type":"coastline"},{"arc":[{"x":119380,"y":106798},{"x":-23,"y":17},{"x":26,"y":-20},{"x":191,"y":13},{"x":-194,"y":-10}],"type":"coastline"},{"arc":[{"x":116708,"y":108264},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":116668,"y":108263},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":116652,"y":108267},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":116647,"y":108265},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":116644,"y":108268},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":116607,"y":108264},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":116593,"y":108248},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":116582,"y":108256},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":116575,"y":108265},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":116569,"y":108269},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":116559,"y":108280},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":116552,"y":108286},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":116548,"y":108290},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":116540,"y":108295},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":116531,"y":108298},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":116509,"y":108296},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":116505,"y":108292},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":116500,"y":108291},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":116456,"y":108300},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":116442,"y":108291},{"x":-15,"y":-6}],"type":"coastline"},{"arc":[{"x":116410,"y":108288},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":116391,"y":108296},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":116372,"y":108300},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":116365,"y":108300},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":116346,"y":108306},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":116341,"y":108306},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":116330,"y":108302},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":116305,"y":108315},{"x":-7,"y":0}],"type":"admin"},{"arc":[{"x":116298,"y":108315},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":116291,"y":108321},{"x":-29,"y":15}],"type":"admin"},{"arc":[{"x":116262,"y":108336},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":116256,"y":108339},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":116249,"y":108339},{"x":-8,"y":1}],"type":"admin"},{"arc":[{"x":116241,"y":108340},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":116236,"y":108352},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":116233,"y":108356},{"x":-11,"y":24}],"type":"admin"},{"arc":[{"x":116222,"y":108380},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":116217,"y":108385},{"x":-5,"y":3}],"type":"admin"},{"arc":[{"x":116212,"y":108388},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":116208,"y":108390},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":116203,"y":108393},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":116197,"y":108395},{"x":-19,"y":13}],"type":"admin"},{"arc":[{"x":116178,"y":108408},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":116175,"y":108409},{"x":-6,"y":7}],"type":"admin"},{"arc":[{"x":116169,"y":108416},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":116167,"y":108420},{"x":-8,"y":3}],"type":"admin"},{"arc":[{"x":116159,"y":108423},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":116154,"y":108423},{"x":-14,"y":0}],"type":"admin"},{"arc":[{"x":116140,"y":108423},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":116134,"y":108422},{"x":-12,"y":-3}],"type":"admin"},{"arc":[{"x":116122,"y":108419},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":116116,"y":108419},{"x":-21,"y":2}],"type":"admin"},{"arc":[{"x":116095,"y":108421},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":116091,"y":108422},{"x":-4,"y":0}],"type":"admin"},{"arc":[{"x":116087,"y":108422},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":116082,"y":108422},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":116079,"y":108429},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":116075,"y":108437},{"x":-3,"y":4}],"type":"admin"},{"arc":[{"x":116072,"y":108441},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":116068,"y":108446},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":116065,"y":108451},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":116060,"y":108459},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":116059,"y":108461},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":116053,"y":108466},{"x":-4,"y":4}],"type":"admin"},{"arc":[{"x":116049,"y":108470},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":116044,"y":108474},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":116043,"y":108476},{"x":-9,"y":9}],"type":"coastline"},{"arc":[{"x":116034,"y":108485},{"x":-4,"y":3}],"type":"admin"},{"arc":[{"x":116030,"y":108488},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":116024,"y":108490},{"x":-9,"y":3}],"type":"admin"},{"arc":[{"x":116015,"y":108493},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":116007,"y":108493},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":116002,"y":108492},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":115996,"y":108490},{"x":-9,"y":29}],"type":"admin"},{"arc":[{"x":115987,"y":108519},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":115987,"y":108529},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":115986,"y":108536},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":115986,"y":108538},{"x":6,"y":12}],"type":"coastline"},{"arc":[{"x":115992,"y":108550},{"x":-1,"y":13}],"type":"admin"},{"arc":[{"x":115991,"y":108563},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":115989,"y":108570},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":115989,"y":108571},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":115987,"y":108576},{"x":3,"y":34}],"type":"admin"},{"arc":[{"x":115990,"y":108610},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":115991,"y":108620},{"x":-2,"y":16}],"type":"admin"},{"arc":[{"x":115989,"y":108636},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":115988,"y":108639},{"x":-16,"y":3}],"type":"admin"},{"arc":[{"x":115972,"y":108642},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":115968,"y":108644},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":115965,"y":108647},{"x":-4,"y":4}],"type":"admin"},{"arc":[{"x":115961,"y":108651},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":115955,"y":108654},{"x":-5,"y":4}],"type":"admin"},{"arc":[{"x":115950,"y":108658},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":115943,"y":108666},{"x":-5,"y":9}],"type":"admin"},{"arc":[{"x":115938,"y":108675},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":115941,"y":108683},{"x":0,"y":6}],"type":"admin"},{"arc":[{"x":115941,"y":108689},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":115935,"y":108698},{"x":-4,"y":3}],"type":"admin"},{"arc":[{"x":115931,"y":108701},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":115929,"y":108703},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":115927,"y":108705},{"x":-2,"y":17}],"type":"admin"},{"arc":[{"x":115925,"y":108722},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":115919,"y":108723},{"x":-6,"y":-3}],"type":"admin"},{"arc":[{"x":115913,"y":108720},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":115903,"y":108720},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":115900,"y":108721},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":115891,"y":108723},{"x":-10,"y":0}],"type":"admin"},{"arc":[{"x":115881,"y":108723},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":115873,"y":108727},{"x":-13,"y":26}],"type":"admin"},{"arc":[{"x":115860,"y":108753},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":115857,"y":108763},{"x":0,"y":3}],"type":"admin"},{"arc":[{"x":115857,"y":108766},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":115854,"y":108772},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":115853,"y":108773},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":115844,"y":108772},{"x":-12,"y":1}],"type":"admin"},{"arc":[{"x":115832,"y":108773},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":115830,"y":108773},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":115825,"y":108777},{"x":-9,"y":3}],"type":"admin"},{"arc":[{"x":115816,"y":108780},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":115811,"y":108780},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":115809,"y":108780},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":115807,"y":108778},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":115809,"y":108771},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":115809,"y":108766},{"x":-28,"y":-24}],"type":"admin"},{"arc":[{"x":115781,"y":108742},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":115775,"y":108741},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":115770,"y":108742},{"x":-12,"y":-4}],"type":"admin"},{"arc":[{"x":115758,"y":108738},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":115757,"y":108738},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":115756,"y":108738},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":115750,"y":108735},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":115750,"y":108734},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":115742,"y":108730},{"x":-4,"y":-5}],"type":"admin"},{"arc":[{"x":115738,"y":108725},{"x":-15,"y":-6}],"type":"coastline"},{"arc":[{"x":115723,"y":108719},{"x":-17,"y":-8}],"type":"admin"},{"arc":[{"x":115706,"y":108711},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":115702,"y":108707},{"x":-5,"y":-2}],"type":"admin"},{"arc":[{"x":115697,"y":108705},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":115692,"y":108704},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":115690,"y":108703},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":115688,"y":108701},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":115683,"y":108693},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":115681,"y":108691},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":115679,"y":108690},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":115679,"y":108689},{"x":-7,"y":-3}],"type":"admin"},{"arc":[{"x":115672,"y":108686},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":115667,"y":108689},{"x":-43,"y":-28}],"type":"admin"},{"arc":[{"x":115624,"y":108661},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":115615,"y":108656},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":115612,"y":108655},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":115608,"y":108650},{"x":-3,"y":-9}],"type":"admin"},{"arc":[{"x":115605,"y":108641},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":115600,"y":108637},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":115600,"y":108636},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":115598,"y":108636},{"x":-7,"y":-6}],"type":"admin"},{"arc":[{"x":115591,"y":108630},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":115582,"y":108628},{"x":-16,"y":-1}],"type":"admin"},{"arc":[{"x":115566,"y":108627},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":115557,"y":108628},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":115554,"y":108628},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":115549,"y":108626},{"x":-20,"y":-4}],"type":"admin"},{"arc":[{"x":115529,"y":108622},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":115523,"y":108616},{"x":-6,"y":-12}],"type":"admin"},{"arc":[{"x":115517,"y":108604},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":115513,"y":108596},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":115508,"y":108588},{"x":-4,"y":-4}],"type":"admin"},{"arc":[{"x":115504,"y":108584},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":115501,"y":108581},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":115496,"y":108580},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":115493,"y":108578},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":115490,"y":108574},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":115488,"y":108571},{"x":-8,"y":-15}],"type":"admin"},{"arc":[{"x":115480,"y":108556},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":115476,"y":108552},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":115473,"y":108549},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":115471,"y":108547},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":115469,"y":108545},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":115465,"y":108540},{"x":-21,"y":-7}],"type":"admin"},{"arc":[{"x":115444,"y":108533},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":115442,"y":108533},{"x":-16,"y":-5}],"type":"admin"},{"arc":[{"x":115426,"y":108528},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":115422,"y":108529},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":115418,"y":108530},{"x":-22,"y":14}],"type":"admin"},{"arc":[{"x":115396,"y":108544},{"x":-6,"y":8}],"type":"coastline"},{"arc":[{"x":115390,"y":108552},{"x":-18,"y":-4}],"type":"admin"},{"arc":[{"x":115372,"y":108548},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":115365,"y":108539},{"x":3,"y":-9}],"type":"admin"},{"arc":[{"x":115368,"y":108530},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":115371,"y":108526},{"x":-7,"y":-20}],"type":"admin"},{"arc":[{"x":115364,"y":108506},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":115362,"y":108501},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":115359,"y":108497},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":115356,"y":108495},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":115351,"y":108490},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":115349,"y":108489},{"x":-3,"y":-4}],"type":"admin"},{"arc":[{"x":115346,"y":108485},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":115340,"y":108477},{"x":-4,"y":-6}],"type":"admin"},{"arc":[{"x":115336,"y":108471},{"x":-7,"y":-10}],"type":"coastline"},{"arc":[{"x":115329,"y":108461},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":115327,"y":108459},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":115321,"y":108458},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":115320,"y":108457},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":115319,"y":108456},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":115318,"y":108456},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":115314,"y":108453},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":115311,"y":108452},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":115306,"y":108449},{"x":-10,"y":-6}],"type":"admin"},{"arc":[{"x":115296,"y":108443},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":115295,"y":108441},{"x":-3,"y":-6}],"type":"admin"},{"arc":[{"x":115292,"y":108435},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":115290,"y":108432},{"x":-7,"y":-3}],"type":"admin"},{"arc":[{"x":115283,"y":108429},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":115275,"y":108426},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":115270,"y":108425},{"x":-15,"y":-16}],"type":"admin"},{"arc":[{"x":115255,"y":108409},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":115254,"y":108407},{"x":-5,"y":-8}],"type":"admin"},{"arc":[{"x":115249,"y":108399},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":115247,"y":108397},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":115240,"y":108391},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":115238,"y":108391},{"x":-22,"y":-10}],"type":"admin"},{"arc":[{"x":115216,"y":108381},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":115212,"y":108379},{"x":-4,"y":-1}],"type":"admin"},{"arc":[{"x":115208,"y":108378},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":115205,"y":108377},{"x":-7,"y":-2}],"type":"admin"},{"arc":[{"x":115198,"y":108375},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":115194,"y":108375},{"x":-18,"y":-2}],"type":"admin"},{"arc":[{"x":115176,"y":108373},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":115172,"y":108375},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":115169,"y":108376},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":115167,"y":108376},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":115165,"y":108377},{"x":-19,"y":0}],"type":"admin"},{"arc":[{"x":115146,"y":108377},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":115142,"y":108376},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":115139,"y":108374},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":115134,"y":108371},{"x":-13,"y":-1}],"type":"admin"},{"arc":[{"x":115121,"y":108370},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":115115,"y":108367},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":115112,"y":108366},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":115104,"y":108363},{"x":-3,"y":-4}],"type":"admin"},{"arc":[{"x":115101,"y":108359},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":115095,"y":108354},{"x":-2,"y":-3}],"type":"admin"},{"arc":[{"x":115093,"y":108351},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":115092,"y":108348},{"x":-6,"y":-21}],"type":"admin"},{"arc":[{"x":115086,"y":108327},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":115084,"y":108321},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":115083,"y":108318},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":115082,"y":108315},{"x":-2,"y":-5}],"type":"admin"},{"arc":[{"x":115080,"y":108310},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":115079,"y":108310},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":115078,"y":108308},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":115076,"y":108305},{"x":-6,"y":-5}],"type":"admin"},{"arc":[{"x":115070,"y":108300},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":115067,"y":108296},{"x":-6,"y":-6}],"type":"admin"},{"arc":[{"x":115061,"y":108290},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":115056,"y":108284},{"x":-12,"y":-11}],"type":"admin"},{"arc":[{"x":115044,"y":108273},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":115041,"y":108268},{"x":3,"y":-19}],"type":"admin"},{"arc":[{"x":115044,"y":108249},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":115045,"y":108245},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":115047,"y":108243},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":115047,"y":108241},{"x":0,"y":-14}],"type":"admin"},{"arc":[{"x":115047,"y":108227},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":115047,"y":108224},{"x":-2,"y":-18}],"type":"admin"},{"arc":[{"x":115045,"y":108206},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":115044,"y":108198},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":115043,"y":108196},{"x":-8,"y":-6}],"type":"admin"},{"arc":[{"x":115035,"y":108190},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":115033,"y":108187},{"x":-5,"y":-7}],"type":"admin"},{"arc":[{"x":115028,"y":108180},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":115025,"y":108175},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":115023,"y":108167},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":115022,"y":108162},{"x":-1,"y":-7}],"type":"admin"},{"arc":[{"x":115021,"y":108155},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":115021,"y":108153},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":115019,"y":108148},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":115018,"y":108146},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":115018,"y":108143},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":115019,"y":108139},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":115020,"y":108139},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":115023,"y":108139},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":115023,"y":108133},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":115023,"y":108129},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":115023,"y":108128},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":115022,"y":108126},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":115019,"y":108123},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":115015,"y":108121},{"x":-6,"y":-6}],"type":"admin"},{"arc":[{"x":115009,"y":108115},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":115009,"y":108114},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":115007,"y":108113},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":115004,"y":108113},{"x":-12,"y":-3}],"type":"admin"},{"arc":[{"x":114992,"y":108110},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":114989,"y":108110},{"x":-4,"y":5}],"type":"admin"},{"arc":[{"x":114985,"y":108115},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":114983,"y":108120},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":114981,"y":108121},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":114979,"y":108123},{"x":-6,"y":4}],"type":"admin"},{"arc":[{"x":114973,"y":108127},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114972,"y":108130},{"x":-1,"y":14}],"type":"admin"},{"arc":[{"x":114971,"y":108144},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114971,"y":108147},{"x":-1,"y":4}],"type":"admin"},{"arc":[{"x":114970,"y":108151},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":114970,"y":108153},{"x":-3,"y":3}],"type":"admin"},{"arc":[{"x":114967,"y":108156},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114965,"y":108157},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114964,"y":108160},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":114962,"y":108164},{"x":-3,"y":3}],"type":"admin"},{"arc":[{"x":114959,"y":108167},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114957,"y":108168},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":114956,"y":108168},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":114956,"y":108166},{"x":-15,"y":-10}],"type":"admin"},{"arc":[{"x":114941,"y":108156},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":114939,"y":108156},{"x":-7,"y":3}],"type":"admin"},{"arc":[{"x":114932,"y":108159},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114929,"y":108161},{"x":-17,"y":8}],"type":"admin"},{"arc":[{"x":114912,"y":108169},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":114909,"y":108170},{"x":-10,"y":-1}],"type":"admin"},{"arc":[{"x":114899,"y":108169},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":114895,"y":108170},{"x":-7,"y":16}],"type":"admin"},{"arc":[{"x":114888,"y":108186},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114886,"y":108187},{"x":-9,"y":4}],"type":"admin"},{"arc":[{"x":114877,"y":108191},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":114873,"y":108190},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":114870,"y":108188},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":114867,"y":108184},{"x":-14,"y":1}],"type":"admin"},{"arc":[{"x":114853,"y":108185},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":114847,"y":108185},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":114844,"y":108185},{"x":-7,"y":1}],"type":"admin"},{"arc":[{"x":114837,"y":108186},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":114833,"y":108186},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":114830,"y":108187},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":114828,"y":108191},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":114827,"y":108193},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":114827,"y":108198},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":114826,"y":108199},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":114822,"y":108201},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114819,"y":108203},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":114817,"y":108206},{"x":-1,"y":7}],"type":"admin"},{"arc":[{"x":114816,"y":108213},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":114814,"y":108218},{"x":-6,"y":7}],"type":"admin"},{"arc":[{"x":114808,"y":108225},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":114804,"y":108224},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":114802,"y":108222},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":114796,"y":108220},{"x":-8,"y":-2}],"type":"admin"},{"arc":[{"x":114788,"y":108218},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":114786,"y":108218},{"x":-23,"y":1}],"type":"admin"},{"arc":[{"x":114763,"y":108219},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":114757,"y":108216},{"x":-21,"y":3}],"type":"admin"},{"arc":[{"x":114736,"y":108219},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":114733,"y":108216},{"x":-8,"y":-7}],"type":"admin"},{"arc":[{"x":114725,"y":108209},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114722,"y":108208},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":114720,"y":108206},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":114719,"y":108203},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":114714,"y":108199},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":114712,"y":108198},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":114707,"y":108201},{"x":-8,"y":5}],"type":"admin"},{"arc":[{"x":114699,"y":108206},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":114695,"y":108208},{"x":-11,"y":-20}],"type":"admin"},{"arc":[{"x":114684,"y":108188},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":114681,"y":108186},{"x":-5,"y":-5}],"type":"admin"},{"arc":[{"x":114676,"y":108181},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114673,"y":108180},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":114671,"y":108179},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":114667,"y":108177},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":114665,"y":108176},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":114663,"y":108172},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114663,"y":108169},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":114662,"y":108165},{"x":-4,"y":-6}],"type":"admin"},{"arc":[{"x":114658,"y":108159},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":114656,"y":108159},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":114654,"y":108159},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":114651,"y":108156},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":114649,"y":108155},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":114642,"y":108150},{"x":-6,"y":-3}],"type":"admin"},{"arc":[{"x":114636,"y":108147},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":114634,"y":108146},{"x":-9,"y":-1}],"type":"admin"},{"arc":[{"x":114625,"y":108145},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":114621,"y":108144},{"x":-28,"y":-3}],"type":"admin"},{"arc":[{"x":114593,"y":108141},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":114586,"y":108138},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":114583,"y":108138},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":114578,"y":108139},{"x":-6,"y":4}],"type":"admin"},{"arc":[{"x":114572,"y":108143},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114570,"y":108144},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":114568,"y":108145},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":114564,"y":108145},{"x":-11,"y":-5}],"type":"admin"},{"arc":[{"x":114553,"y":108140},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":114549,"y":108140},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114546,"y":108139},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":114543,"y":108136},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":114539,"y":108134},{"x":-14,"y":-6}],"type":"admin"},{"arc":[{"x":114525,"y":108128},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":114523,"y":108126},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":114522,"y":108125},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":114520,"y":108125},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":114519,"y":108124},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":114514,"y":108119},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114511,"y":108118},{"x":-10,"y":-1}],"type":"admin"},{"arc":[{"x":114501,"y":108117},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":114499,"y":108115},{"x":-6,"y":-4}],"type":"admin"},{"arc":[{"x":114493,"y":108111},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":114486,"y":108107},{"x":-8,"y":-2}],"type":"admin"},{"arc":[{"x":114478,"y":108105},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":114474,"y":108105},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":114471,"y":108105},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":114469,"y":108104},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":114468,"y":108103},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":114465,"y":108095},{"x":-8,"y":-11}],"type":"admin"},{"arc":[{"x":114457,"y":108084},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":114454,"y":108081},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":114450,"y":108075},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":114446,"y":108071},{"x":-11,"y":-10}],"type":"admin"},{"arc":[{"x":114435,"y":108061},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":114431,"y":108058},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":114427,"y":108056},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":114422,"y":108053},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":114419,"y":108050},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":114414,"y":108045},{"x":-2,"y":-3}],"type":"admin"},{"arc":[{"x":114412,"y":108042},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":114411,"y":108039},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":114408,"y":108035},{"x":-11,"y":-3}],"type":"admin"},{"arc":[{"x":114397,"y":108032},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":114391,"y":108030},{"x":-11,"y":1}],"type":"admin"},{"arc":[{"x":114380,"y":108031},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":114374,"y":108033},{"x":-7,"y":2}],"type":"admin"},{"arc":[{"x":114367,"y":108035},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":114365,"y":108035},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":114364,"y":108034},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":114353,"y":108030},{"x":-10,"y":-3}],"type":"admin"},{"arc":[{"x":114343,"y":108027},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":114335,"y":108024},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114332,"y":108023},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":114330,"y":108022},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":114327,"y":108018},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":114323,"y":108016},{"x":-6,"y":0}],"type":"admin"},{"arc":[{"x":114317,"y":108016},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":114306,"y":108019},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":114300,"y":108022},{"x":-16,"y":-4}],"type":"admin"},{"arc":[{"x":114284,"y":108018},{"x":-7,"y":-8}],"type":"admin"},{"arc":[{"x":114277,"y":108010},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":114276,"y":108007},{"x":3,"y":-5}],"type":"admin"},{"arc":[{"x":114279,"y":108002},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":114281,"y":108000},{"x":1,"y":-6}],"type":"admin"},{"arc":[{"x":114282,"y":107994},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":114281,"y":107985},{"x":-3,"y":-8}],"type":"admin"},{"arc":[{"x":114278,"y":107977},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":114276,"y":107968},{"x":-2,"y":-15}],"type":"admin"},{"arc":[{"x":114274,"y":107953},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":114273,"y":107948},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":114267,"y":107942},{"x":-20,"y":-21}],"type":"admin"},{"arc":[{"x":114247,"y":107921},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":114246,"y":107920},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":114241,"y":107914},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":114239,"y":107910},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":114236,"y":107903},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":114233,"y":107901},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":114229,"y":107898},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":114228,"y":107894},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":114228,"y":107890},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":114226,"y":107885},{"x":4,"y":-22}],"type":"admin"},{"arc":[{"x":114230,"y":107863},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114230,"y":107860},{"x":-1,"y":-6}],"type":"admin"},{"arc":[{"x":114229,"y":107854},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":114228,"y":107853},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114228,"y":107850},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":114229,"y":107845},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":114231,"y":107842},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":114235,"y":107838},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":114237,"y":107834},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":114238,"y":107829},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114238,"y":107826},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114239,"y":107823},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":114240,"y":107821},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":114237,"y":107813},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":114235,"y":107806},{"x":4,"y":-7}],"type":"admin"},{"arc":[{"x":114239,"y":107799},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":114244,"y":107793},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":114246,"y":107789},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":114246,"y":107787},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114246,"y":107785},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":114244,"y":107776},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114244,"y":107773},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":114244,"y":107768},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114244,"y":107766},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":114244,"y":107760},{"x":2,"y":-7}],"type":"admin"},{"arc":[{"x":114246,"y":107753},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":114246,"y":107748},{"x":-4,"y":-24}],"type":"admin"},{"arc":[{"x":114242,"y":107724},{"x":2,"y":-10}],"type":"admin"},{"arc":[{"x":114244,"y":107714},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":114242,"y":107709},{"x":-10,"y":-10}],"type":"admin"},{"arc":[{"x":114232,"y":107699},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":114234,"y":107690},{"x":-3,"y":-12}],"type":"admin"},{"arc":[{"x":114231,"y":107678},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":114226,"y":107676},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":114225,"y":107675},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":114225,"y":107673},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":114222,"y":107670},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":114218,"y":107660},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114218,"y":107658},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114218,"y":107655},{"x":2,"y":-6}],"type":"admin"},{"arc":[{"x":114220,"y":107649},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":114217,"y":107645},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":114216,"y":107644},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":114211,"y":107638},{"x":-8,"y":-9}],"type":"admin"},{"arc":[{"x":114203,"y":107629},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":114198,"y":107622},{"x":-14,"y":-14}],"type":"admin"},{"arc":[{"x":114184,"y":107608},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":114180,"y":107607},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":114177,"y":107604},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":114176,"y":107604},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":114171,"y":107597},{"x":-5,"y":-12}],"type":"admin"},{"arc":[{"x":114166,"y":107585},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":114166,"y":107581},{"x":-2,"y":-7}],"type":"admin"},{"arc":[{"x":114164,"y":107574},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":114166,"y":107571},{"x":-1,"y":-20}],"type":"admin"},{"arc":[{"x":114165,"y":107551},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":114163,"y":107549},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":114161,"y":107547},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":114157,"y":107543},{"x":-8,"y":-16}],"type":"admin"},{"arc":[{"x":114149,"y":107527},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":114153,"y":107524},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114156,"y":107522},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":114160,"y":107517},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":114161,"y":107514},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":114160,"y":107511},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":114156,"y":107505},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":114155,"y":107503},{"x":-6,"y":-20}],"type":"admin"},{"arc":[{"x":114149,"y":107483},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":114148,"y":107482},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":114142,"y":107477},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":114141,"y":107474},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":114142,"y":107467},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114142,"y":107464},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":114140,"y":107458},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":114139,"y":107454},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114139,"y":107451},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":114141,"y":107444},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":114140,"y":107441},{"x":-5,"y":-11}],"type":"admin"},{"arc":[{"x":114135,"y":107430},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":114134,"y":107426},{"x":-5,"y":-7}],"type":"admin"},{"arc":[{"x":114129,"y":107419},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":114123,"y":107418},{"x":-7,"y":-2}],"type":"admin"},{"arc":[{"x":114116,"y":107416},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":114111,"y":107410},{"x":-4,"y":-14}],"type":"admin"},{"arc":[{"x":114107,"y":107396},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":114103,"y":107393},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":114107,"y":107389},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":114109,"y":107385},{"x":9,"y":-12}],"type":"admin"},{"arc":[{"x":114118,"y":107373},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":114123,"y":107367},{"x":-13,"y":-15}],"type":"admin"},{"arc":[{"x":114110,"y":107352},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":114108,"y":107349},{"x":4,"y":-13}],"type":"admin"},{"arc":[{"x":114112,"y":107336},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114112,"y":107333},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":114110,"y":107328},{"x":-1,"y":-8}],"type":"admin"},{"arc":[{"x":114109,"y":107320},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":114107,"y":107314},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114107,"y":107311},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":114106,"y":107303},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":114108,"y":107297},{"x":5,"y":-8}],"type":"admin"},{"arc":[{"x":114113,"y":107289},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":114117,"y":107279},{"x":2,"y":-5}],"type":"admin"},{"arc":[{"x":114119,"y":107274},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":114124,"y":107271},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":114125,"y":107270},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114128,"y":107271},{"x":7,"y":3}],"type":"admin"},{"arc":[{"x":114135,"y":107274},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":114141,"y":107272},{"x":5,"y":-1}],"type":"admin"},{"arc":[{"x":114146,"y":107271},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":114152,"y":107269},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":114153,"y":107268},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":114158,"y":107267},{"x":15,"y":-4}],"type":"admin"},{"arc":[{"x":114173,"y":107263},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114176,"y":107261},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":114177,"y":107261},{"x":19,"y":-18}],"type":"admin"},{"arc":[{"x":114196,"y":107243},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":114203,"y":107242},{"x":8,"y":5}],"type":"admin"},{"arc":[{"x":114211,"y":107247},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":114217,"y":107252},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":114218,"y":107253},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":114224,"y":107254},{"x":15,"y":1}],"type":"admin"},{"arc":[{"x":114239,"y":107255},{"x":14,"y":4}],"type":"coastline"},{"arc":[{"x":114253,"y":107259},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114256,"y":107260},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":114259,"y":107259},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":114263,"y":107258},{"x":18,"y":-24}],"type":"admin"},{"arc":[{"x":114281,"y":107234},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":114289,"y":107230},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":114293,"y":107229},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":114300,"y":107226},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":114309,"y":107222},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":114312,"y":107218},{"x":16,"y":-1}],"type":"coastline"},{"arc":[{"x":114328,"y":107217},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":114331,"y":107217},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":114335,"y":107217},{"x":19,"y":-33}],"type":"admin"},{"arc":[{"x":114354,"y":107184},{"x":8,"y":-12}],"type":"coastline"},{"arc":[{"x":114362,"y":107172},{"x":16,"y":-13}],"type":"admin"},{"arc":[{"x":114378,"y":107159},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":114386,"y":107153},{"x":10,"y":-14}],"type":"admin"},{"arc":[{"x":114396,"y":107139},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":114397,"y":107135},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":114402,"y":107129},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":114404,"y":107126},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":114405,"y":107118},{"x":-6,"y":-16}],"type":"admin"},{"arc":[{"x":114399,"y":107102},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":114399,"y":107094},{"x":7,"y":-19}],"type":"admin"},{"arc":[{"x":114406,"y":107075},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":114406,"y":107073},{"x":4,"y":-11}],"type":"admin"},{"arc":[{"x":114410,"y":107062},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":114414,"y":107060},{"x":7,"y":-5}],"type":"admin"},{"arc":[{"x":114421,"y":107055},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":114424,"y":107052},{"x":13,"y":-8}],"type":"admin"},{"arc":[{"x":114437,"y":107044},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":114441,"y":107035},{"x":13,"y":-27}],"type":"admin"},{"arc":[{"x":114454,"y":107008},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":114456,"y":107006},{"x":15,"y":-15}],"type":"admin"},{"arc":[{"x":114471,"y":106991},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":114473,"y":106988},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":114475,"y":106987},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":114477,"y":106977},{"x":1,"y":-13}],"type":"admin"},{"arc":[{"x":114478,"y":106964},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":114477,"y":106960},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":114477,"y":106955},{"x":1,"y":-6}],"type":"admin"},{"arc":[{"x":114478,"y":106949},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":114482,"y":106946},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":114485,"y":106943},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":114486,"y":106942},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114486,"y":106940},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":114488,"y":106935},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":114489,"y":106933},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":114491,"y":106930},{"x":29,"y":-13}],"type":"admin"},{"arc":[{"x":114520,"y":106917},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":114524,"y":106915},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":114524,"y":106909},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":114525,"y":106905},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":114528,"y":106904},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":114532,"y":106903},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":114536,"y":106902},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":114537,"y":106903},{"x":29,"y":7}],"type":"admin"},{"arc":[{"x":114566,"y":106910},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":114569,"y":106910},{"x":6,"y":-6}],"type":"admin"},{"arc":[{"x":114575,"y":106904},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114575,"y":106901},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":114577,"y":106898},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114579,"y":106897},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":114580,"y":106895},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":114581,"y":106894},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":114582,"y":106893},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":114586,"y":106891},{"x":7,"y":-14}],"type":"admin"},{"arc":[{"x":114593,"y":106877},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":114596,"y":106876},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":114599,"y":106875},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":114601,"y":106872},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":114602,"y":106868},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":114603,"y":106867},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114604,"y":106864},{"x":7,"y":-7}],"type":"admin"},{"arc":[{"x":114611,"y":106857},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":114616,"y":106857},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":114619,"y":106855},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114620,"y":106852},{"x":4,"y":-5}],"type":"admin"},{"arc":[{"x":114624,"y":106847},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":114627,"y":106846},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":114629,"y":106846},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":114633,"y":106847},{"x":7,"y":2}],"type":"admin"},{"arc":[{"x":114640,"y":106849},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":114646,"y":106849},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":114649,"y":106849},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114651,"y":106848},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":114653,"y":106846},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114655,"y":106845},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":114659,"y":106840},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114661,"y":106839},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":114665,"y":106837},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":114667,"y":106836},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":114673,"y":106836},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":114676,"y":106839},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":114677,"y":106839},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":114679,"y":106839},{"x":12,"y":-11}],"type":"admin"},{"arc":[{"x":114691,"y":106828},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114694,"y":106826},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":114698,"y":106819},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114701,"y":106817},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":114702,"y":106815},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":114703,"y":106811},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":114704,"y":106808},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":114705,"y":106802},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":114706,"y":106791},{"x":8,"y":-7}],"type":"admin"},{"arc":[{"x":114714,"y":106784},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114717,"y":106782},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":114717,"y":106781},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":114718,"y":106774},{"x":2,"y":-46}],"type":"admin"},{"arc":[{"x":114720,"y":106728},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":114722,"y":106725},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114723,"y":106722},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":114723,"y":106718},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114723,"y":106715},{"x":3,"y":-5}],"type":"admin"},{"arc":[{"x":114726,"y":106710},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":114727,"y":106709},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":114729,"y":106709},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":114730,"y":106710},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":114731,"y":106710},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":114735,"y":106711},{"x":4,"y":-3}],"type":"admin"},{"arc":[{"x":114739,"y":106708},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114740,"y":106705},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":114743,"y":106702},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":114747,"y":106698},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":114751,"y":106695},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":114755,"y":106694},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":114756,"y":106689},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":114756,"y":106682},{"x":2,"y":-9}],"type":"admin"},{"arc":[{"x":114758,"y":106673},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":114759,"y":106667},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":114760,"y":106666},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":114762,"y":106662},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":114763,"y":106661},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114765,"y":106660},{"x":16,"y":-12}],"type":"admin"},{"arc":[{"x":114781,"y":106648},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":114783,"y":106646},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":114784,"y":106644},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114787,"y":106642},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":114790,"y":106641},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114793,"y":106639},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":114799,"y":106638},{"x":7,"y":-2}],"type":"admin"},{"arc":[{"x":114806,"y":106636},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":114809,"y":106633},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":114811,"y":106631},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":114814,"y":106628},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":114815,"y":106626},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114815,"y":106624},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":114814,"y":106621},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":114814,"y":106617},{"x":8,"y":-11}],"type":"admin"},{"arc":[{"x":114822,"y":106606},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":114823,"y":106602},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114823,"y":106600},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":114826,"y":106594},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":114827,"y":106593},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":114825,"y":106588},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114825,"y":106586},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":114826,"y":106584},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":114827,"y":106582},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":114831,"y":106577},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":114833,"y":106573},{"x":3,"y":-5}],"type":"admin"},{"arc":[{"x":114836,"y":106568},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114836,"y":106565},{"x":-4,"y":-18}],"type":"admin"},{"arc":[{"x":114832,"y":106547},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":114832,"y":106543},{"x":3,"y":-8}],"type":"admin"},{"arc":[{"x":114835,"y":106535},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":114837,"y":106529},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":114837,"y":106527},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":114837,"y":106524},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":114840,"y":106523},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":114842,"y":106523},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":114849,"y":106524},{"x":29,"y":-10}],"type":"admin"},{"arc":[{"x":114878,"y":106514},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":114884,"y":106512},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":114888,"y":106510},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":114897,"y":106505},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":114901,"y":106504},{"x":16,"y":-4}],"type":"admin"},{"arc":[{"x":114917,"y":106500},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":114918,"y":106496},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114918,"y":106494},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114918,"y":106491},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":114919,"y":106487},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":114918,"y":106485},{"x":-4,"y":-5}],"type":"admin"},{"arc":[{"x":114914,"y":106480},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114915,"y":106477},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":114917,"y":106473},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":114916,"y":106465},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":114916,"y":106463},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":114917,"y":106461},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":114918,"y":106458},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":114920,"y":106455},{"x":10,"y":-14}],"type":"admin"},{"arc":[{"x":114930,"y":106441},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":114934,"y":106438},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":114935,"y":106436},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":114935,"y":106435},{"x":-13,"y":-86},{"x":-57,"y":-62},{"x":37,"y":-88},{"x":-50,"y":-85},{"x":34,"y":-108},{"x":89,"y":-71},{"x":-204,"y":-184},{"x":-13,"y":-59},{"x":43,"y":-63},{"x":-34,"y":-62},{"x":46,"y":-19},{"x":50,"y":-82},{"x":68,"y":-27},{"x":20,"y":-78},{"x":148,"y":-39},{"x":-45,"y":-150},{"x":23,"y":-166},{"x":-45,"y":-85},{"x":74,"y":-108},{"x":113,"y":-67},{"x":90,"y":4},{"x":138,"y":-64},{"x":199,"y":34},{"x":47,"y":-120},{"x":105,"y":-13},{"x":9,"y":-54},{"x":109,"y":-56},{"x":32,"y":-123},{"x":41,"y":-21},{"x":-8,"y":-125},{"x":45,"y":12},{"x":-8,"y":-41},{"x":37,"y":-13},{"x":51,"y":22},{"x":13,"y":-62},{"x":92,"y":18},{"x":56,"y":-115}],"type":"admin"},{"arc":[{"x":116267,"y":104029},{"x":242,"y":260},{"x":99,"y":27},{"x":201,"y":147},{"x":-5,"y":110},{"x":129,"y":258},{"x":294,"y":333},{"x":312,"y":288},{"x":543,"y":410},{"x":35,"y":-7},{"x":-18,"y":23},{"x":23,"y":-14},{"x":303,"y":283},{"x":720,"y":550},{"x":85,"y":-34},{"x":-61,"y":41},{"x":30,"y":-14},{"x":31,"y":30},{"x":4,"y":-25},{"x":72,"y":56},{"x":-1,"y":62},{"x":50,"y":3},{"x":-23,"y":14},{"x":56,"y":52},{"x":38,"y":-42},{"x":113,"y":63},{"x":-23,"y":34},{"x":26,"y":34},{"x":169,"y":134},{"x":496,"y":302},{"x":755,"y":377}],"type":"coastline"},{"arc":[{"x":115871,"y":103066},{"x":-28,"y":2},{"x":-5,"y":-31},{"x":33,"y":29}],"type":"coastline"},{"arc":[{"x":114935,"y":106435},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":114935,"y":106436},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":114934,"y":106438},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":114920,"y":106455},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":114917,"y":106461},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":114916,"y":106465},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":114915,"y":106477},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114918,"y":106485},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":114918,"y":106491},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114918,"y":106496},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":114901,"y":106504},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":114897,"y":106505},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":114884,"y":106512},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":114849,"y":106524},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":114840,"y":106523},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":114837,"y":106527},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":114837,"y":106529},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":114832,"y":106543},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":114836,"y":106565},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114833,"y":106573},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":114831,"y":106577},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":114826,"y":106584},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":114825,"y":106588},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":114826,"y":106594},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":114823,"y":106602},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":114814,"y":106617},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":114814,"y":106621},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":114815,"y":106626},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":114811,"y":106631},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":114809,"y":106633},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":114799,"y":106638},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":114793,"y":106639},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114787,"y":106642},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114783,"y":106646},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":114765,"y":106660},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114762,"y":106662},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":114759,"y":106667},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":114756,"y":106682},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":114756,"y":106689},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":114751,"y":106695},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":114747,"y":106698},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":114740,"y":106705},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114735,"y":106711},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":114730,"y":106710},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":114727,"y":106709},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":114723,"y":106715},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114723,"y":106718},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":114723,"y":106722},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114722,"y":106725},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":114718,"y":106774},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":114717,"y":106782},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114706,"y":106791},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":114705,"y":106802},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":114703,"y":106811},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":114701,"y":106817},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114698,"y":106819},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":114694,"y":106826},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114679,"y":106839},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":114676,"y":106839},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":114673,"y":106836},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":114665,"y":106837},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":114661,"y":106839},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114659,"y":106840},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":114655,"y":106845},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114653,"y":106846},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":114651,"y":106848},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114649,"y":106849},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":114646,"y":106849},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":114633,"y":106847},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":114627,"y":106846},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":114620,"y":106852},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114616,"y":106857},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":114604,"y":106864},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114602,"y":106868},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":114599,"y":106875},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":114596,"y":106876},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":114586,"y":106891},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":114581,"y":106894},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":114579,"y":106897},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":114575,"y":106901},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114569,"y":106910},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":114537,"y":106903},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":114532,"y":106903},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":114525,"y":106905},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":114524,"y":106915},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":114491,"y":106930},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":114488,"y":106935},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":114486,"y":106942},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":114482,"y":106946},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":114477,"y":106955},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":114477,"y":106960},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":114477,"y":106977},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":114473,"y":106988},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":114456,"y":107006},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":114441,"y":107035},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":114424,"y":107052},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":114414,"y":107060},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":114406,"y":107073},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":114399,"y":107094},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":114405,"y":107118},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":114402,"y":107129},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":114397,"y":107135},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":114386,"y":107153},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":114362,"y":107172},{"x":-8,"y":12}],"type":"coastline"},{"arc":[{"x":114335,"y":107217},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":114328,"y":107217},{"x":-16,"y":1}],"type":"coastline"},{"arc":[{"x":114309,"y":107222},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":114300,"y":107226},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":114289,"y":107230},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":114263,"y":107258},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":114256,"y":107260},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114253,"y":107259},{"x":-14,"y":-4}],"type":"coastline"},{"arc":[{"x":114224,"y":107254},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":114217,"y":107252},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":114203,"y":107242},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":114177,"y":107261},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":114176,"y":107261},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114158,"y":107267},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":114153,"y":107268},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":114152,"y":107269},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":114141,"y":107272},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":114128,"y":107271},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":114124,"y":107271},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":114117,"y":107279},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":114108,"y":107297},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":114106,"y":107303},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":114107,"y":107314},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":114110,"y":107328},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":114112,"y":107333},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114108,"y":107349},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":114123,"y":107367},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":114109,"y":107385},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":114103,"y":107393},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":114111,"y":107410},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":114123,"y":107418},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":114134,"y":107426},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":114140,"y":107441},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":114141,"y":107444},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":114139,"y":107454},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":114140,"y":107458},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":114142,"y":107467},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":114142,"y":107477},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":114148,"y":107482},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":114155,"y":107503},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":114156,"y":107505},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":114160,"y":107511},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":114160,"y":107517},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":114156,"y":107522},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":114153,"y":107524},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":114157,"y":107543},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":114163,"y":107549},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":114166,"y":107571},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":114166,"y":107581},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":114171,"y":107597},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":114176,"y":107604},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":114180,"y":107607},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":114198,"y":107622},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":114211,"y":107638},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":114217,"y":107645},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":114218,"y":107655},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114218,"y":107660},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":114225,"y":107673},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":114226,"y":107676},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":114234,"y":107690},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":114242,"y":107709},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":114246,"y":107748},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":114244,"y":107760},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":114244,"y":107768},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":114244,"y":107776},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":114246,"y":107787},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":114244,"y":107793},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":114235,"y":107806},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":114237,"y":107813},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":114239,"y":107823},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":114238,"y":107829},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":114235,"y":107838},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":114229,"y":107845},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":114228,"y":107853},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":114230,"y":107860},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":114226,"y":107885},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":114228,"y":107890},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":114228,"y":107894},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":114233,"y":107901},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":114236,"y":107903},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":114239,"y":107910},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":114241,"y":107914},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":114246,"y":107920},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":114267,"y":107942},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":114273,"y":107948},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":114276,"y":107968},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":114281,"y":107985},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":114281,"y":108000},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":114276,"y":108007},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":114284,"y":108018},{"x":-113,"y":76},{"x":-64,"y":2}],"type":"admin"},{"arc":[{"x":114107,"y":108096},{"x":-72,"y":-153},{"x":-106,"y":-93},{"x":-11,"y":21},{"x":-147,"y":2},{"x":-345,"y":-70},{"x":-69,"y":199},{"x":-192,"y":11},{"x":-46,"y":-37},{"x":-67,"y":31},{"x":-100,"y":316},{"x":-192,"y":-73},{"x":-141,"y":232},{"x":-172,"y":79},{"x":-106,"y":-37},{"x":-68,"y":55},{"x":-144,"y":49},{"x":-71,"y":-10},{"x":-61,"y":-46},{"x":-16,"y":-181},{"x":-148,"y":-38},{"x":-98,"y":11},{"x":-174,"y":-72},{"x":-6,"y":-104},{"x":75,"y":-13},{"x":37,"y":-82},{"x":-11,"y":-69},{"x":-80,"y":-109},{"x":68,"y":-138},{"x":-76,"y":-22},{"x":-77,"y":-83},{"x":19,"y":-101},{"x":-45,"y":-57},{"x":37,"y":-100},{"x":-77,"y":-85},{"x":-15,"y":-66},{"x":36,"y":-30},{"x":108,"y":-10},{"x":77,"y":-57},{"x":-90,"y":-58},{"x":-5,"y":-87},{"x":-57,"y":7},{"x":-38,"y":-43},{"x":19,"y":-83},{"x":92,"y":-96},{"x":-28,"y":-75},{"x":-56,"y":-34},{"x":-50,"y":6},{"x":-66,"y":-119},{"x":34,"y":-117},{"x":-21,"y":-85},{"x":89,"y":-173},{"x":-122,"y":-74},{"x":-124,"y":3},{"x":-113,"y":-61},{"x":248,"y":-158},{"x":-36,"y":-102},{"x":61,"y":-107},{"x":-59,"y":-103},{"x":20,"y":-116},{"x":71,"y":-97},{"x":-24,"y":-73},{"x":89,"y":-70},{"x":-12,"y":-84},{"x":37,"y":-5},{"x":31,"y":-95},{"x":-80,"y":-153},{"x":-102,"y":-83},{"x":-9,"y":-145},{"x":-228,"y":-75},{"x":-70,"y":54},{"x":-116,"y":14},{"x":-85,"y":-52},{"x":-55,"y":28},{"x":-45,"y":-96},{"x":-80,"y":-17},{"x":-111,"y":-92},{"x":-13,"y":-46},{"x":-63,"y":1},{"x":-59,"y":54},{"x":-59,"y":-79},{"x":-52,"y":14},{"x":-70,"y":-77}],"type":"admin"},{"arc":[{"x":110224,"y":104317},{"x":97,"y":-89},{"x":71,"y":-146},{"x":-24,"y":-47},{"x":83,"y":-80},{"x":-18,"y":-66},{"x":38,"y":-68},{"x":-27,"y":-36},{"x":55,"y":-34},{"x":21,"y":-78},{"x":121,"y":-57},{"x":9,"y":-181},{"x":-68,"y":-24},{"x":39,"y":-63},{"x":-26,"y":-50}],"type":"admin"},{"arc":[{"x":110595,"y":103298},{"x":47,"y":-39},{"x":19,"y":29},{"x":59,"y":-3},{"x":113,"y":-130},{"x":139,"y":4},{"x":137,"y":-110},{"x":117,"y":-34},{"x":11,"y":-124}],"type":"area"},{"arc":[{"x":111237,"y":102891},{"x":126,"y":15},{"x":303,"y":-183},{"x":131,"y":-46},{"x":156,"y":-184},{"x":-22,"y":11},{"x":101,"y":-65},{"x":366,"y":-366},{"x":87,"y":14},{"x":-16,"y":-27},{"x":75,"y":46},{"x":94,"y":-22},{"x":208,"y":18},{"x":71,"y":-72},{"x":-63,"y":31},{"x":80,"y":-50},{"x":71,"y":-1},{"x":-28,"y":-6},{"x":66,"y":-27},{"x":64,"y":-92},{"x":55,"y":-8},{"x":76,"y":-78},{"x":20,"y":17},{"x":41,"y":-24},{"x":42,"y":42},{"x":33,"y":-18},{"x":14,"y":36},{"x":51,"y":-12},{"x":110,"y":170},{"x":231,"y":196},{"x":107,"y":8},{"x":-9,"y":-27},{"x":52,"y":63},{"x":213,"y":40},{"x":6,"y":34},{"x":21,"y":-17},{"x":115,"y":55},{"x":89,"y":-22},{"x":88,"y":73},{"x":44,"y":89},{"x":75,"y":0},{"x":33,"y":45},{"x":76,"y":3},{"x":60,"y":139},{"x":167,"y":163},{"x":45,"y":16},{"x":26,"y":-39},{"x":305,"y":187},{"x":121,"y":-14},{"x":-120,"y":15},{"x":-30,"y":52},{"x":19,"y":61},{"x":27,"y":-12},{"x":98,"y":54},{"x":-10,"y":-43},{"x":-50,"y":-19},{"x":20,"y":-61},{"x":127,"y":106},{"x":49,"y":-19},{"x":-12,"y":-18},{"x":42,"y":60},{"x":144,"y":-78},{"x":45,"y":46},{"x":66,"y":-68},{"x":24,"y":181},{"x":37,"y":25},{"x":-28,"y":7},{"x":-26,"y":86},{"x":36,"y":113},{"x":209,"y":329},{"x":186,"y":210}],"type":"coastline"},{"arc":[{"x":110042,"y":100599},{"x":-3,"y":20},{"x":-69,"y":-7},{"x":-16,"y":-31},{"x":88,"y":18}],"type":"coastline"},{"arc":[{"x":110595,"y":103298},{"x":-88,"y":-11},{"x":-180,"y":-113},{"x":-95,"y":123},{"x":-99,"y":8},{"x":-134,"y":68},{"x":-92,"y":-1},{"x":-62,"y":55},{"x":-192,"y":78},{"x":-34,"y":4},{"x":-117,"y":-86},{"x":-65,"y":34},{"x":-92,"y":-7},{"x":52,"y":-58},{"x":-8,"y":-137},{"x":48,"y":-46},{"x":5,"y":-139},{"x":64,"y":-57},{"x":-85,"y":-8},{"x":-54,"y":-39},{"x":-81,"y":20},{"x":-40,"y":-39},{"x":-100,"y":31},{"x":-64,"y":-28},{"x":-88,"y":5},{"x":110,"y":-184},{"x":-95,"y":-46},{"x":-41,"y":-59},{"x":79,"y":-163},{"x":-42,"y":-18},{"x":-6,"y":-155},{"x":-58,"y":18},{"x":-108,"y":-66},{"x":-3,"y":-41},{"x":-139,"y":-29},{"x":-58,"y":-55},{"x":16,"y":-116},{"x":-58,"y":-65},{"x":130,"y":-67},{"x":57,"y":-158},{"x":135,"y":-42},{"x":1,"y":-58},{"x":-268,"y":-75},{"x":-26,"y":-44},{"x":-129,"y":-21},{"x":-48,"y":-45},{"x":-181,"y":-11},{"x":-46,"y":-37},{"x":-18,"y":26},{"x":-123,"y":8},{"x":-26,"y":-90},{"x":-91,"y":-76},{"x":-158,"y":-18},{"x":-83,"y":-203},{"x":60,"y":-81},{"x":102,"y":-9},{"x":17,"y":-309},{"x":-265,"y":-48},{"x":12,"y":-129},{"x":-72,"y":-1},{"x":-54,"y":-93},{"x":-70,"y":-9},{"x":-95,"y":-70}],"type":"admin"},{"arc":[{"x":107352,"y":100316},{"x":-27,"y":-72},{"x":50,"y":-151},{"x":-41,"y":4},{"x":-33,"y":-73},{"x":46,"y":-102},{"x":-112,"y":-137},{"x":63,"y":-201},{"x":64,"y":-54},{"x":-6,"y":-57},{"x":100,"y":-148},{"x":-30,"y":-44},{"x":69,"y":-167},{"x":-40,"y":-30},{"x":46,"y":-33},{"x":12,"y":-88},{"x":-44,"y":-59},{"x":64,"y":-69},{"x":25,"y":-117},{"x":-2,"y":-233}],"type":"admin"},{"arc":[{"x":107556,"y":98485},{"x":25,"y":-54},{"x":56,"y":-12},{"x":66,"y":44},{"x":90,"y":-51},{"x":59,"y":38},{"x":112,"y":-33},{"x":39,"y":-118},{"x":-43,"y":-68},{"x":58,"y":-53},{"x":65,"y":43},{"x":42,"y":-22},{"x":16,"y":-76},{"x":90,"y":-16},{"x":51,"y":-119},{"x":136,"y":-99},{"x":198,"y":95},{"x":3,"y":45},{"x":111,"y":-28},{"x":41,"y":28},{"x":145,"y":-205},{"x":50,"y":-4},{"x":213,"y":86},{"x":90,"y":204}],"type":"admin"},{"arc":[{"x":109269,"y":98110},{"x":-64,"y":-63},{"x":-73,"y":7},{"x":-26,"y":-48},{"x":-26,"y":12},{"x":-73,"y":-47},{"x":16,"y":38},{"x":-25,"y":9},{"x":56,"y":52},{"x":-26,"y":18},{"x":-63,"y":-45},{"x":-33,"y":15},{"x":1,"y":57},{"x":76,"y":30},{"x":-29,"y":23},{"x":-43,"y":-11},{"x":11,"y":74},{"x":87,"y":6},{"x":13,"y":55},{"x":50,"y":-46},{"x":-13,"y":-76},{"x":36,"y":62},{"x":108,"y":-25},{"x":-40,"y":37},{"x":17,"y":98},{"x":-40,"y":18},{"x":-108,"y":-34},{"x":-13,"y":24},{"x":-26,"y":-33},{"x":-50,"y":33},{"x":-29,"y":-37},{"x":-58,"y":14},{"x":-35,"y":-42},{"x":-44,"y":13},{"x":-25,"y":-27},{"x":-52,"y":56},{"x":-43,"y":-2},{"x":-42,"y":86},{"x":-28,"y":87},{"x":52,"y":64},{"x":-13,"y":50},{"x":15,"y":-16},{"x":26,"y":25},{"x":-66,"y":38},{"x":20,"y":126},{"x":17,"y":21},{"x":12,"y":-13},{"x":9,"y":9},{"x":-16,"y":21},{"x":22,"y":-16},{"x":1,"y":-15},{"x":25,"y":26},{"x":-17,"y":25},{"x":45,"y":95},{"x":120,"y":86},{"x":39,"y":122},{"x":70,"y":5},{"x":104,"y":95},{"x":-8,"y":39},{"x":102,"y":187},{"x":-44,"y":20},{"x":2,"y":-49},{"x":-14,"y":62},{"x":-30,"y":9},{"x":-34,"y":-53},{"x":-21,"y":57},{"x":-79,"y":22},{"x":-5,"y":-40},{"x":68,"y":-67},{"x":-105,"y":-152},{"x":20,"y":-43},{"x":-42,"y":22},{"x":15,"y":63},{"x":-60,"y":-35},{"x":-48,"y":39},{"x":-66,"y":-69},{"x":-117,"y":-51},{"x":55,"y":-271},{"x":-43,"y":-88},{"x":4,"y":89},{"x":-67,"y":91},{"x":27,"y":131},{"x":-45,"y":42},{"x":20,"y":24},{"x":-36,"y":34},{"x":-15,"y":107},{"x":21,"y":55},{"x":126,"y":64},{"x":-36,"y":27},{"x":13,"y":47},{"x":-30,"y":6},{"x":-8,"y":69},{"x":5,"y":81},{"x":65,"y":69},{"x":-49,"y":11},{"x":-54,"y":121},{"x":78,"y":23},{"x":30,"y":77},{"x":-18,"y":43},{"x":48,"y":37},{"x":24,"y":-52},{"x":31,"y":58},{"x":13,"y":-36},{"x":8,"y":55},{"x":110,"y":35},{"x":-39,"y":7},{"x":169,"y":12},{"x":20,"y":36},{"x":-31,"y":54},{"x":34,"y":22},{"x":45,"y":-50},{"x":-10,"y":-63},{"x":-44,"y":-20},{"x":34,"y":-15},{"x":-6,"y":-55},{"x":-92,"y":-29},{"x":-14,"y":-35},{"x":-7,"y":17},{"x":-42,"y":-119},{"x":200,"y":-9},{"x":34,"y":-110},{"x":-17,"y":-68},{"x":35,"y":-42},{"x":170,"y":148},{"x":2,"y":37},{"x":52,"y":19},{"x":14,"y":166},{"x":-10,"y":44},{"x":-56,"y":25},{"x":21,"y":40},{"x":-81,"y":23},{"x":-28,"y":-22},{"x":-23,"y":34},{"x":-26,"y":-14},{"x":-63,"y":35},{"x":5,"y":101},{"x":35,"y":10},{"x":32,"y":-55},{"x":61,"y":14},{"x":-72,"y":67},{"x":5,"y":40},{"x":-83,"y":56},{"x":0,"y":51},{"x":-66,"y":-58},{"x":-41,"y":37},{"x":6,"y":37},{"x":-56,"y":24},{"x":77,"y":49},{"x":-52,"y":18},{"x":17,"y":63},{"x":78,"y":-19},{"x":-39,"y":73},{"x":20,"y":89},{"x":63,"y":-19},{"x":-8,"y":-34},{"x":36,"y":20},{"x":13,"y":-28},{"x":51,"y":3},{"x":-8,"y":-34},{"x":54,"y":-23},{"x":18,"y":-53},{"x":50,"y":2},{"x":5,"y":-61},{"x":65,"y":-24},{"x":-15,"y":50},{"x":73,"y":28},{"x":-57,"y":32},{"x":16,"y":54},{"x":-87,"y":44},{"x":-7,"y":93},{"x":73,"y":21},{"x":6,"y":53},{"x":57,"y":-9},{"x":42,"y":73},{"x":49,"y":-25},{"x":23,"y":25},{"x":30,"y":-42},{"x":72,"y":27},{"x":27,"y":-19},{"x":-15,"y":-67},{"x":57,"y":-12},{"x":-42,"y":-88},{"x":62,"y":-41},{"x":59,"y":94},{"x":47,"y":2},{"x":31,"y":-117},{"x":69,"y":-2},{"x":-4,"y":74},{"x":62,"y":-82},{"x":-50,"y":-61},{"x":95,"y":-1},{"x":18,"y":64},{"x":-50,"y":38},{"x":-32,"y":145},{"x":-87,"y":-20},{"x":-33,"y":39},{"x":8,"y":83},{"x":-83,"y":-19},{"x":-65,"y":84},{"x":22,"y":73},{"x":53,"y":19},{"x":17,"y":45},{"x":-58,"y":66},{"x":98,"y":16},{"x":31,"y":88},{"x":-78,"y":29},{"x":15,"y":-21},{"x":-37,"y":0},{"x":-16,"y":37},{"x":-28,"y":-3},{"x":1,"y":109},{"x":39,"y":99},{"x":129,"y":98},{"x":36,"y":-28},{"x":21,"y":16},{"x":3,"y":39},{"x":-49,"y":-2},{"x":-63,"y":60},{"x":22,"y":94},{"x":80,"y":68},{"x":89,"y":24},{"x":115,"y":-89},{"x":15,"y":-53},{"x":-28,"y":-1},{"x":36,"y":-36},{"x":115,"y":45},{"x":49,"y":-28},{"x":22,"y":54},{"x":83,"y":39},{"x":101,"y":-10},{"x":76,"y":-53},{"x":48,"y":11},{"x":-14,"y":17},{"x":42,"y":-16},{"x":-66,"y":-79},{"x":15,"y":41},{"x":-54,"y":3},{"x":18,"y":-81},{"x":39,"y":29},{"x":87,"y":0},{"x":55,"y":-42},{"x":129,"y":107},{"x":-24,"y":103},{"x":56,"y":29},{"x":-12,"y":-30},{"x":106,"y":99},{"x":10,"y":59},{"x":59,"y":33},{"x":-18,"y":33},{"x":95,"y":69},{"x":-118,"y":104},{"x":-120,"y":47},{"x":91,"y":-123},{"x":-209,"y":128},{"x":-76,"y":-19},{"x":-61,"y":37},{"x":-24,"y":-24},{"x":-41,"y":53},{"x":-59,"y":-29},{"x":-13,"y":28},{"x":-63,"y":-1},{"x":33,"y":-47},{"x":-19,"y":-41},{"x":-117,"y":-57},{"x":-93,"y":128},{"x":-122,"y":30},{"x":28,"y":206},{"x":34,"y":-34},{"x":-5,"y":-42},{"x":6,"y":-35},{"x":-4,"y":32},{"x":39,"y":4},{"x":1,"y":6},{"x":-27,"y":52},{"x":20,"y":33},{"x":101,"y":0},{"x":14,"y":-85},{"x":1,"y":109},{"x":48,"y":69},{"x":43,"y":-37},{"x":98,"y":2},{"x":36,"y":-25},{"x":72,"y":109},{"x":57,"y":-11},{"x":84,"y":60},{"x":93,"y":-17},{"x":35,"y":-84},{"x":70,"y":111},{"x":98,"y":11},{"x":79,"y":-24}],"type":"coastline"},{"arc":[{"x":112124,"y":124497},{"x":-166,"y":21},{"x":-59,"y":-42},{"x":-33,"y":8},{"x":-33,"y":-70},{"x":-40,"y":-7},{"x":-71,"y":68},{"x":-76,"y":-37},{"x":-25,"y":65},{"x":-100,"y":17},{"x":-6,"y":33},{"x":-111,"y":-15},{"x":-66,"y":-170},{"x":-3,"y":-234},{"x":-38,"y":27},{"x":-53,"y":-7},{"x":-104,"y":72},{"x":-59,"y":136},{"x":-148,"y":69},{"x":-28,"y":45},{"x":-149,"y":-38},{"x":-246,"y":37},{"x":-152,"y":-101},{"x":-219,"y":31},{"x":-81,"y":-43},{"x":-57,"y":-109},{"x":-58,"y":-12},{"x":15,"y":-57},{"x":-80,"y":-61},{"x":11,"y":-88},{"x":-56,"y":-79},{"x":4,"y":-61},{"x":-121,"y":-81},{"x":3,"y":-65},{"x":-117,"y":56},{"x":-60,"y":-12},{"x":-11,"y":96},{"x":-50,"y":30},{"x":-52,"y":-15},{"x":-47,"y":50},{"x":-86,"y":-12},{"x":0,"y":-179},{"x":-68,"y":-76},{"x":-180,"y":-493},{"x":-142,"y":-150},{"x":-61,"y":-314},{"x":-105,"y":-125},{"x":25,"y":-142},{"x":-88,"y":-62},{"x":-116,"y":11},{"x":-44,"y":-110},{"x":-313,"y":0}],"type":"area"},{"arc":[{"x":108204,"y":122302},{"x":-46,"y":-35},{"x":-64,"y":-144},{"x":-105,"y":-46},{"x":-131,"y":-167},{"x":-184,"y":33},{"x":-103,"y":-61},{"x":-29,"y":20},{"x":-250,"y":-10},{"x":-83,"y":43},{"x":-98,"y":1},{"x":-162,"y":-179},{"x":-97,"y":5},{"x":-185,"y":70},{"x":-123,"y":-11},{"x":-82,"y":-47},{"x":-65,"y":50},{"x":-304,"y":90},{"x":-62,"y":-38},{"x":-153,"y":45},{"x":-30,"y":-36},{"x":16,"y":-47}],"type":"admin"},{"arc":[{"x":105864,"y":121838},{"x":-10,"y":-56},{"x":-72,"y":-12},{"x":-211,"y":-174},{"x":93,"y":-106},{"x":21,"y":-367},{"x":180,"y":-99},{"x":34,"y":-84},{"x":-25,"y":-69},{"x":64,"y":-33},{"x":372,"y":-65},{"x":228,"y":-150},{"x":64,"y":18},{"x":127,"y":-20},{"x":86,"y":45},{"x":97,"y":-39},{"x":37,"y":-66},{"x":38,"y":-5},{"x":-18,"y":-78},{"x":103,"y":-100},{"x":11,"y":-77},{"x":-87,"y":-132},{"x":-20,"y":-102},{"x":-115,"y":-83},{"x":149,"y":-239},{"x":111,"y":-46},{"x":69,"y":65},{"x":236,"y":-47},{"x":71,"y":-149},{"x":126,"y":39},{"x":64,"y":70},{"x":82,"y":4},{"x":71,"y":91},{"x":234,"y":9},{"x":117,"y":-30},{"x":27,"y":-56},{"x":108,"y":-33},{"x":98,"y":87},{"x":349,"y":39},{"x":81,"y":69},{"x":118,"y":-41},{"x":40,"y":-50},{"x":209,"y":17},{"x":82,"y":-109},{"x":80,"y":1},{"x":59,"y":-41},{"x":72,"y":-14},{"x":130,"y":36},{"x":72,"y":-20},{"x":22,"y":-44},{"x":130,"y":14},{"x":57,"y":-68},{"x":124,"y":32},{"x":55,"y":-28},{"x":-13,"y":-79}],"type":"admin"},{"arc":[{"x":110091,"y":119463},{"x":105,"y":-82},{"x":81,"y":-20},{"x":76,"y":-96},{"x":235,"y":3},{"x":166,"y":-106},{"x":342,"y":328},{"x":72,"y":116},{"x":234,"y":-242},{"x":-11,"y":-59}],"type":"admin"},{"arc":[{"x":111391,"y":119305},{"x":30,"y":-58},{"x":61,"y":-45},{"x":42,"y":3},{"x":192,"y":157},{"x":117,"y":-8},{"x":279,"y":173},{"x":173,"y":44},{"x":68,"y":49},{"x":20,"y":100},{"x":-97,"y":112},{"x":-93,"y":55},{"x":-54,"y":84},{"x":103,"y":98},{"x":161,"y":87},{"x":154,"y":150},{"x":132,"y":52},{"x":84,"y":71},{"x":145,"y":22},{"x":89,"y":116},{"x":110,"y":15},{"x":86,"y":68},{"x":0,"y":86},{"x":-201,"y":494},{"x":-111,"y":76},{"x":-197,"y":-78},{"x":-170,"y":79},{"x":36,"y":44},{"x":-71,"y":89},{"x":25,"y":86},{"x":-23,"y":59},{"x":69,"y":42},{"x":73,"y":-6},{"x":8,"y":63},{"x":96,"y":61},{"x":-74,"y":144},{"x":-8,"y":87},{"x":52,"y":119},{"x":-27,"y":7},{"x":10,"y":64},{"x":-56,"y":94},{"x":53,"y":35},{"x":26,"y":79},{"x":-95,"y":91},{"x":-6,"y":75},{"x":-146,"y":-57},{"x":-145,"y":14},{"x":-46,"y":32},{"x":-30,"y":86},{"x":28,"y":50},{"x":-32,"y":46},{"x":45,"y":65},{"x":11,"y":117},{"x":-58,"y":146},{"x":228,"y":76},{"x":151,"y":173},{"x":-5,"y":164}],"type":"admin"},{"arc":[{"x":107776,"y":124917},{"x":-136,"y":-223},{"x":-5,"y":-70},{"x":-63,"y":-37},{"x":104,"y":-89},{"x":-20,"y":-51},{"x":24,"y":-40},{"x":-69,"y":-145},{"x":-87,"y":-85},{"x":24,"y":-177},{"x":-131,"y":-534},{"x":26,"y":-92},{"x":-75,"y":-301},{"x":334,"y":-73},{"x":51,"y":-59},{"x":1,"y":-193},{"x":-49,"y":-233},{"x":375,"y":-92},{"x":40,"y":-70},{"x":84,"y":-51}],"type":"admin"},{"arc":[{"x":118604,"y":120978},{"x":-2,"y":-36},{"x":117,"y":-127},{"x":10,"y":-96},{"x":-51,"y":-179},{"x":-76,"y":-35},{"x":-37,"y":-140},{"x":84,"y":-81},{"x":1,"y":-63},{"x":38,"y":-34},{"x":-171,"y":-136},{"x":32,"y":-126},{"x":-213,"y":-88},{"x":23,"y":-130},{"x":-54,"y":-24},{"x":-5,"y":-58},{"x":45,"y":-77},{"x":-67,"y":-67},{"x":43,"y":-162},{"x":-101,"y":12},{"x":-99,"y":139},{"x":-71,"y":17},{"x":-34,"y":71},{"x":-147,"y":-15},{"x":-49,"y":88},{"x":-76,"y":14},{"x":-64,"y":62},{"x":-103,"y":-9},{"x":-37,"y":-254},{"x":-95,"y":-344},{"x":-39,"y":-26},{"x":178,"y":-226},{"x":40,"y":-86},{"x":-13,"y":-57},{"x":116,"y":-29},{"x":96,"y":-93},{"x":90,"y":0},{"x":45,"y":-162},{"x":41,"y":14},{"x":46,"y":-106},{"x":78,"y":8},{"x":39,"y":-222},{"x":-95,"y":-100},{"x":-45,"y":-219},{"x":-185,"y":-220},{"x":7,"y":-68},{"x":20,"y":-38},{"x":43,"y":8},{"x":-1,"y":-41},{"x":137,"y":-78},{"x":25,"y":30},{"x":28,"y":-16},{"x":2,"y":-91},{"x":-95,"y":-20},{"x":-66,"y":-83},{"x":-40,"y":31},{"x":1,"y":52},{"x":-154,"y":-59},{"x":-109,"y":-189},{"x":-135,"y":110},{"x":-31,"y":-44},{"x":-92,"y":88},{"x":-5,"y":-64},{"x":-22,"y":12},{"x":-63,"y":-67},{"x":-96,"y":46},{"x":-29,"y":-23},{"x":46,"y":-43},{"x":-19,"y":-42},{"x":-155,"y":31},{"x":-75,"y":48},{"x":18,"y":-42},{"x":-58,"y":-143},{"x":215,"y":-163},{"x":68,"y":-109},{"x":-121,"y":-175},{"x":96,"y":-45},{"x":35,"y":-118},{"x":-26,"y":-153},{"x":53,"y":-112},{"x":-49,"y":-64},{"x":100,"y":-111},{"x":73,"y":0},{"x":72,"y":-53},{"x":66,"y":-157},{"x":-79,"y":-116},{"x":-160,"y":24},{"x":-124,"y":-70},{"x":-97,"y":21},{"x":-112,"y":-62},{"x":-22,"y":-64},{"x":-66,"y":-41},{"x":-164,"y":-49},{"x":-10,"y":-176},{"x":37,"y":-103}],"type":"area"},{"arc":[{"x":116704,"y":114985},{"x":12,"y":-80},{"x":214,"y":-136},{"x":65,"y":-242},{"x":169,"y":2}],"type":"admin"},{"arc":[{"x":111391,"y":119305},{"x":0,"y":-83},{"x":44,"y":-80},{"x":72,"y":-28},{"x":280,"y":12},{"x":90,"y":41},{"x":59,"y":-38},{"x":49,"y":6},{"x":130,"y":96},{"x":50,"y":-9},{"x":43,"y":-84},{"x":55,"y":52},{"x":44,"y":-47},{"x":106,"y":25},{"x":13,"y":-52},{"x":135,"y":-38},{"x":85,"y":34},{"x":60,"y":-66},{"x":57,"y":4},{"x":70,"y":-38},{"x":75,"y":-111},{"x":88,"y":45},{"x":33,"y":-15},{"x":75,"y":-131},{"x":101,"y":-85},{"x":21,"y":-76},{"x":-68,"y":-90},{"x":-1,"y":-73},{"x":-70,"y":-42},{"x":3,"y":-57},{"x":-97,"y":-44},{"x":-38,"y":-134},{"x":67,"y":-101},{"x":77,"y":-71},{"x":20,"y":72},{"x":74,"y":37},{"x":273,"y":-27},{"x":12,"y":-67},{"x":71,"y":-20},{"x":32,"y":24},{"x":20,"y":-102},{"x":-45,"y":-74},{"x":41,"y":-68},{"x":-26,"y":-42},{"x":27,"y":-68},{"x":85,"y":40},{"x":168,"y":20},{"x":119,"y":56},{"x":9,"y":-19},{"x":-94,"y":-193},{"x":93,"y":-157},{"x":3,"y":-70},{"x":88,"y":-6},{"x":-19,"y":-86},{"x":-81,"y":-6},{"x":-37,"y":-82},{"x":-65,"y":-3},{"x":-120,"y":-210},{"x":-49,"y":-29},{"x":-61,"y":61},{"x":-166,"y":-195},{"x":-277,"y":-137},{"x":-33,"y":-84},{"x":-62,"y":-14},{"x":-44,"y":-82},{"x":-97,"y":-72},{"x":-82,"y":-7},{"x":-92,"y":46},{"x":-37,"y":126},{"x":-75,"y":56},{"x":-249,"y":-85},{"x":-135,"y":81},{"x":-156,"y":-27},{"x":-27,"y":-61},{"x":-208,"y":9},{"x":-206,"y":-182},{"x":148,"y":-62},{"x":53,"y":-81},{"x":114,"y":39},{"x":39,"y":-50},{"x":150,"y":32},{"x":34,"y":-16},{"x":83,"y":75},{"x":144,"y":-38},{"x":45,"y":-53},{"x":152,"y":18},{"x":71,"y":-44},{"x":141,"y":4},{"x":219,"y":-49},{"x":89,"y":41},{"x":43,"y":64},{"x":57,"y":-30},{"x":173,"y":31},{"x":169,"y":-7},{"x":359,"y":61},{"x":38,"y":-103},{"x":64,"y":14},{"x":38,"y":-51},{"x":91,"y":-9},{"x":4,"y":-59},{"x":-50,"y":-57},{"x":115,"y":-176},{"x":-16,"y":-73},{"x":-137,"y":-114},{"x":-212,"y":19},{"x":-16,"y":-45},{"x":-189,"y":-95},{"x":-147,"y":-134},{"x":48,"y":-60},{"x":19,"y":-106},{"x":-58,"y":-72},{"x":1,"y":-54},{"x":26,"y":-66},{"x":66,"y":-40},{"x":60,"y":-144},{"x":-79,"y":-161},{"x":65,"y":-45},{"x":6,"y":-60}],"type":"area"},{"arc":[{"x":113711,"y":114624},{"x":156,"y":-13},{"x":60,"y":59},{"x":68,"y":13},{"x":36,"y":52},{"x":75,"y":-22},{"x":84,"y":24},{"x":-5,"y":-134},{"x":48,"y":-31},{"x":64,"y":-152},{"x":239,"y":-181},{"x":49,"y":54},{"x":116,"y":27},{"x":94,"y":-46},{"x":71,"y":104},{"x":76,"y":20},{"x":77,"y":159},{"x":79,"y":33},{"x":132,"y":-33},{"x":45,"y":33},{"x":65,"y":-129},{"x":200,"y":-43},{"x":17,"y":77},{"x":61,"y":2},{"x":16,"y":50},{"x":137,"y":53},{"x":55,"y":74},{"x":152,"y":69},{"x":18,"y":49},{"x":113,"y":63},{"x":99,"y":147},{"x":70,"y":-8},{"x":78,"y":49},{"x":43,"y":-33},{"x":122,"y":28},{"x":78,"y":-47},{"x":105,"y":-6}],"type":"admin"},{"arc":[{"x":110091,"y":119463},{"x":-95,"y":-63},{"x":-23,"y":-56},{"x":-131,"y":-8},{"x":-96,"y":29},{"x":-128,"y":-84},{"x":-170,"y":-45},{"x":-35,"y":-41},{"x":88,"y":-105},{"x":-11,"y":-69},{"x":-78,"y":-38},{"x":-20,"y":-42},{"x":-131,"y":-44},{"x":-19,"y":-37},{"x":-16,"y":100},{"x":-80,"y":41},{"x":-217,"y":-166},{"x":-34,"y":63},{"x":-165,"y":-53},{"x":-71,"y":196},{"x":-65,"y":-49},{"x":-119,"y":-17},{"x":-51,"y":32},{"x":-85,"y":-26},{"x":-9,"y":-124},{"x":-54,"y":-74},{"x":31,"y":-70},{"x":-30,"y":-22},{"x":-169,"y":32},{"x":-52,"y":-28},{"x":-71,"y":152},{"x":-141,"y":-39},{"x":-17,"y":76},{"x":-84,"y":67},{"x":-257,"y":-90},{"x":-46,"y":-95},{"x":27,"y":-42},{"x":-18,"y":-46},{"x":-114,"y":-166},{"x":-40,"y":-25},{"x":-26,"y":24},{"x":-72,"y":-6},{"x":-16,"y":-92},{"x":90,"y":-109},{"x":-32,"y":-114},{"x":-75,"y":-30},{"x":-23,"y":-105},{"x":-72,"y":6},{"x":-55,"y":-102},{"x":-84,"y":12},{"x":-99,"y":-70}],"type":"admin"},{"arc":[{"x":106831,"y":117901},{"x":31,"y":-102},{"x":-25,"y":-106},{"x":-89,"y":-76},{"x":8,"y":-68},{"x":-98,"y":-53},{"x":2,"y":-118},{"x":-65,"y":-61},{"x":-7,"y":-115},{"x":-142,"y":-35},{"x":-60,"y":-50},{"x":36,"y":-179},{"x":-76,"y":-90},{"x":-80,"y":-17},{"x":-50,"y":24},{"x":-160,"y":-89},{"x":37,"y":-112},{"x":-14,"y":-93},{"x":-54,"y":-78},{"x":-35,"y":6}],"type":"admin"},{"arc":[{"x":105990,"y":116489},{"x":32,"y":-118},{"x":-112,"y":-216},{"x":18,"y":-92},{"x":-26,"y":-75},{"x":64,"y":-62},{"x":80,"y":16},{"x":35,"y":-67},{"x":-31,"y":-124},{"x":37,"y":-64},{"x":-10,"y":-96},{"x":87,"y":-12},{"x":-19,"y":-76},{"x":49,"y":-59},{"x":-31,"y":-134},{"x":43,"y":-45},{"x":-41,"y":-21},{"x":-34,"y":-83},{"x":-5,"y":-111},{"x":-86,"y":-2},{"x":-38,"y":-70},{"x":-45,"y":-2},{"x":30,"y":-88},{"x":-16,"y":-144},{"x":-106,"y":-183},{"x":-8,"y":-100}],"type":"admin"},{"arc":[{"x":105857,"y":114461},{"x":199,"y":1},{"x":151,"y":-126},{"x":47,"y":-79},{"x":108,"y":-51},{"x":69,"y":13},{"x":60,"y":80},{"x":88,"y":-17},{"x":78,"y":118},{"x":68,"y":-30},{"x":-6,"y":-39}],"type":"admin"},{"arc":[{"x":106719,"y":114331},{"x":59,"y":-44},{"x":63,"y":23},{"x":73,"y":-18},{"x":9,"y":63},{"x":72,"y":50},{"x":6,"y":93},{"x":110,"y":57},{"x":25,"y":104},{"x":86,"y":-28},{"x":152,"y":17},{"x":76,"y":-37},{"x":121,"y":6},{"x":100,"y":-95},{"x":8,"y":-71},{"x":91,"y":-17},{"x":-61,"y":121},{"x":-18,"y":215},{"x":91,"y":131},{"x":89,"y":-22},{"x":16,"y":-83},{"x":173,"y":-46},{"x":156,"y":-177},{"x":197,"y":197},{"x":22,"y":106},{"x":225,"y":-57},{"x":65,"y":1},{"x":8,"y":29},{"x":80,"y":26},{"x":222,"y":-186},{"x":-24,"y":-42},{"x":133,"y":-222},{"x":156,"y":-15},{"x":70,"y":-62},{"x":148,"y":56},{"x":33,"y":-163},{"x":-30,"y":-101},{"x":43,"y":-51},{"x":40,"y":8},{"x":140,"y":-143},{"x":98,"y":24},{"x":10,"y":46},{"x":89,"y":39},{"x":52,"y":-9},{"x":41,"y":93},{"x":79,"y":10},{"x":40,"y":45},{"x":140,"y":-79},{"x":215,"y":-298},{"x":92,"y":3},{"x":74,"y":-93},{"x":178,"y":-4},{"x":17,"y":-48},{"x":139,"y":-98},{"x":144,"y":-14},{"x":67,"y":-95},{"x":-39,"y":-21},{"x":-7,"y":-76},{"x":119,"y":-45},{"x":39,"y":-85},{"x":24,"y":-237},{"x":28,"y":-16},{"x":44,"y":45},{"x":126,"y":-40},{"x":26,"y":-85},{"x":-51,"y":-161}],"type":"admin"},{"arc":[{"x":111528,"y":112755},{"x":53,"y":-61},{"x":-28,"y":-124},{"x":102,"y":-34},{"x":25,"y":-61},{"x":278,"y":63},{"x":28,"y":27},{"x":-17,"y":155},{"x":74,"y":61},{"x":228,"y":35},{"x":44,"y":-30},{"x":129,"y":129},{"x":114,"y":302},{"x":5,"y":142},{"x":-46,"y":9},{"x":-64,"y":70},{"x":-39,"y":85},{"x":46,"y":140},{"x":60,"y":42},{"x":148,"y":18},{"x":121,"y":106},{"x":105,"y":45},{"x":25,"y":164},{"x":181,"y":63},{"x":48,"y":74},{"x":154,"y":11},{"x":122,"y":201},{"x":-2,"y":51},{"x":105,"y":114},{"x":184,"y":72}],"type":"admin"},{"arc":[{"x":111528,"y":112755},{"x":-299,"y":-206},{"x":-128,"y":-31},{"x":-30,"y":-41},{"x":-127,"y":46},{"x":-226,"y":-2},{"x":-69,"y":-198},{"x":-78,"y":-38},{"x":-37,"y":-121},{"x":3,"y":-85},{"x":64,"y":-48},{"x":-83,"y":-142},{"x":-95,"y":-10},{"x":-46,"y":-40},{"x":67,"y":-191},{"x":-41,"y":-107},{"x":-90,"y":-92},{"x":-117,"y":34},{"x":-18,"y":-57},{"x":-55,"y":-16},{"x":24,"y":-68},{"x":-49,"y":-6},{"x":-79,"y":-71},{"x":-48,"y":-210},{"x":-54,"y":-5},{"x":-59,"y":-83},{"x":28,"y":-11},{"x":-20,"y":-139},{"x":39,"y":-28},{"x":0,"y":-98},{"x":61,"y":-40}],"type":"area"},{"arc":[{"x":109966,"y":110651},{"x":87,"y":35},{"x":87,"y":-76},{"x":57,"y":26},{"x":18,"y":55},{"x":201,"y":40},{"x":-15,"y":-148},{"x":68,"y":-27},{"x":7,"y":-106},{"x":56,"y":-37},{"x":29,"y":-76},{"x":44,"y":-8},{"x":27,"y":138},{"x":110,"y":-8},{"x":31,"y":38},{"x":34,"y":-19},{"x":52,"y":37},{"x":-26,"y":19},{"x":35,"y":163},{"x":35,"y":9},{"x":3,"y":74},{"x":44,"y":31},{"x":9,"y":97},{"x":46,"y":-7},{"x":2,"y":69},{"x":267,"y":-3},{"x":71,"y":-32},{"x":95,"y":41},{"x":31,"y":-31},{"x":281,"y":0},{"x":146,"y":-49},{"x":142,"y":100},{"x":7,"y":70},{"x":-51,"y":87},{"x":17,"y":75},{"x":44,"y":18},{"x":100,"y":-25},{"x":146,"y":-133},{"x":47,"y":-1},{"x":19,"y":-83},{"x":241,"y":-107},{"x":4,"y":-40},{"x":40,"y":-10},{"x":2,"y":-65},{"x":119,"y":-62},{"x":8,"y":-49},{"x":-96,"y":-30},{"x":-145,"y":21},{"x":-41,"y":-17},{"x":-9,"y":-45},{"x":97,"y":-5},{"x":91,"y":-112},{"x":149,"y":-35},{"x":61,"y":29},{"x":81,"y":-86},{"x":119,"y":-64},{"x":-65,"y":-81},{"x":66,"y":-120},{"x":-12,"y":-37},{"x":-64,"y":-20},{"x":-15,"y":-66},{"x":-113,"y":-82},{"x":-98,"y":4},{"x":-8,"y":-51},{"x":-97,"y":-62},{"x":14,"y":-48},{"x":50,"y":-44},{"x":130,"y":4},{"x":98,"y":-32},{"x":79,"y":24},{"x":39,"y":-42},{"x":167,"y":-53},{"x":47,"y":-115},{"x":67,"y":-23},{"x":-15,"y":-35},{"x":160,"y":-51},{"x":69,"y":-188},{"x":31,"y":11},{"x":19,"y":-34},{"x":50,"y":-6},{"x":39,"y":-66},{"x":-91,"y":-98},{"x":-92,"y":-286},{"x":-67,"y":-59},{"x":95,"y":-64},{"x":5,"y":-114},{"x":157,"y":-64},{"x":29,"y":-76},{"x":109,"y":37},{"x":76,"y":-46},{"x":16,"y":-147},{"x":47,"y":-71},{"x":95,"y":-30}],"type":"area"},{"arc":[{"x":114300,"y":108022},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":114306,"y":108019},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":114323,"y":108016},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":114327,"y":108018},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":114332,"y":108023},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114335,"y":108024},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":114353,"y":108030},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":114365,"y":108035},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":114374,"y":108033},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":114391,"y":108030},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":114408,"y":108035},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":114411,"y":108039},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":114414,"y":108045},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":114422,"y":108053},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":114431,"y":108058},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":114446,"y":108071},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":114450,"y":108075},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":114454,"y":108081},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":114465,"y":108095},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":114469,"y":108104},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":114474,"y":108105},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":114486,"y":108107},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":114499,"y":108115},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":114511,"y":108118},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114514,"y":108119},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":114520,"y":108125},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":114523,"y":108126},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":114539,"y":108134},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":114546,"y":108139},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114549,"y":108140},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":114564,"y":108145},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":114570,"y":108144},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114578,"y":108139},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":114586,"y":108138},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":114621,"y":108144},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":114634,"y":108146},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":114642,"y":108150},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":114651,"y":108156},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":114656,"y":108159},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":114662,"y":108165},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":114663,"y":108172},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":114667,"y":108177},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":114673,"y":108180},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114681,"y":108186},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":114695,"y":108208},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":114707,"y":108201},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":114714,"y":108199},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":114719,"y":108203},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":114722,"y":108208},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":114733,"y":108216},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":114757,"y":108216},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":114786,"y":108218},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":114796,"y":108220},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":114804,"y":108224},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":114814,"y":108218},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":114817,"y":108206},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":114819,"y":108203},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114822,"y":108201},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":114827,"y":108198},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":114828,"y":108191},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":114830,"y":108187},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":114833,"y":108186},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":114844,"y":108185},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":114847,"y":108185},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":114867,"y":108184},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":114873,"y":108190},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":114886,"y":108187},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114895,"y":108170},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":114909,"y":108170},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":114929,"y":108161},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":114939,"y":108156},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":114956,"y":108166},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":114957,"y":108168},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114962,"y":108164},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":114964,"y":108160},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114965,"y":108157},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":114970,"y":108153},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":114971,"y":108147},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":114972,"y":108130},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":114979,"y":108123},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":114983,"y":108120},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":114989,"y":108110},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":115004,"y":108113},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":115009,"y":108114},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":115015,"y":108121},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":115019,"y":108123},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":115023,"y":108128},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":115023,"y":108129},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":115023,"y":108139},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":115020,"y":108139},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":115019,"y":108139},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":115018,"y":108143},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":115019,"y":108148},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":115021,"y":108153},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":115022,"y":108162},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":115023,"y":108167},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":115025,"y":108175},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":115033,"y":108187},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":115043,"y":108196},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":115044,"y":108198},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":115047,"y":108224},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":115047,"y":108241},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":115047,"y":108243},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":115045,"y":108245},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":115041,"y":108268},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":115056,"y":108284},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":115067,"y":108296},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":115076,"y":108305},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":115079,"y":108310},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":115082,"y":108315},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":115084,"y":108321},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":115092,"y":108348},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":115095,"y":108354},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":115104,"y":108363},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":115115,"y":108367},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":115134,"y":108371},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":115142,"y":108376},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":115165,"y":108377},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":115169,"y":108376},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":115172,"y":108375},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":115194,"y":108375},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":115205,"y":108377},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":115212,"y":108379},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":115238,"y":108391},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":115240,"y":108391},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":115247,"y":108397},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":115254,"y":108407},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":115270,"y":108425},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":115275,"y":108426},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":115290,"y":108432},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":115295,"y":108441},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":115306,"y":108449},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":115314,"y":108453},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":115319,"y":108456},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":115320,"y":108457},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":115321,"y":108458},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":115329,"y":108461},{"x":7,"y":10}],"type":"coastline"},{"arc":[{"x":115340,"y":108477},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":115349,"y":108489},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":115351,"y":108490},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":115356,"y":108495},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":115359,"y":108497},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":115362,"y":108501},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":115371,"y":108526},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":115365,"y":108539},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":115390,"y":108552},{"x":6,"y":-8}],"type":"coastline"},{"arc":[{"x":115418,"y":108530},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":115422,"y":108529},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":115442,"y":108533},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":115465,"y":108540},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":115469,"y":108545},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":115471,"y":108547},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":115476,"y":108552},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":115488,"y":108571},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":115490,"y":108574},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":115496,"y":108580},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":115501,"y":108581},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":115508,"y":108588},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":115513,"y":108596},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":115523,"y":108616},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":115549,"y":108626},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":115557,"y":108628},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":115582,"y":108628},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":115598,"y":108636},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":115600,"y":108637},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":115608,"y":108650},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":115615,"y":108656},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":115667,"y":108689},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":115679,"y":108689},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":115681,"y":108691},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":115683,"y":108693},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":115688,"y":108701},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":115690,"y":108703},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":115692,"y":108704},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":115702,"y":108707},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":115723,"y":108719},{"x":15,"y":6}],"type":"coastline"},{"arc":[{"x":115742,"y":108730},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":115750,"y":108735},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":115757,"y":108738},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":115770,"y":108742},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":115775,"y":108741},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":115809,"y":108766},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":115809,"y":108771},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":115807,"y":108778},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":115811,"y":108780},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":115825,"y":108777},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":115830,"y":108773},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":115844,"y":108772},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":115854,"y":108772},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":115857,"y":108763},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":115873,"y":108727},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":115891,"y":108723},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":115903,"y":108720},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":115919,"y":108723},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":115927,"y":108705},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":115929,"y":108703},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":115935,"y":108698},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":115941,"y":108683},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":115943,"y":108666},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":115955,"y":108654},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":115965,"y":108647},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":115968,"y":108644},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":115988,"y":108639},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":115991,"y":108620},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":115987,"y":108576},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":115989,"y":108570},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":115992,"y":108550},{"x":-6,"y":-12}],"type":"coastline"},{"arc":[{"x":115986,"y":108536},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":115987,"y":108529},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":115996,"y":108490},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":116002,"y":108492},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":116007,"y":108493},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":116024,"y":108490},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":116034,"y":108485},{"x":9,"y":-9}],"type":"coastline"},{"arc":[{"x":116044,"y":108474},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":116053,"y":108466},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":116060,"y":108459},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":116065,"y":108451},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":116068,"y":108446},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":116075,"y":108437},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":116079,"y":108429},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":116082,"y":108422},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":116091,"y":108422},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":116116,"y":108419},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":116134,"y":108422},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":116154,"y":108423},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":116167,"y":108420},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":116175,"y":108409},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":116197,"y":108395},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":116203,"y":108393},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":116208,"y":108390},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":116217,"y":108385},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":116233,"y":108356},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":116236,"y":108352},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":116249,"y":108339},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":116256,"y":108339},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":116291,"y":108321},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":106719,"y":114331},{"x":-58,"y":-2},{"x":10,"y":-81},{"x":-35,"y":-59},{"x":26,"y":-194},{"x":-93,"y":13},{"x":14,"y":-35},{"x":-114,"y":-89},{"x":12,"y":-61},{"x":-48,"y":0},{"x":-55,"y":-160},{"x":-125,"y":-123},{"x":3,"y":-58},{"x":-51,"y":-23},{"x":-14,"y":-67},{"x":-86,"y":-49},{"x":-16,"y":-45},{"x":165,"y":-100},{"x":-52,"y":-67},{"x":66,"y":-60},{"x":-8,"y":-107},{"x":61,"y":-34},{"x":45,"y":32},{"x":77,"y":-29},{"x":-13,"y":-42},{"x":44,"y":-41},{"x":-53,"y":-222},{"x":37,"y":8},{"x":26,"y":-40},{"x":58,"y":50},{"x":29,"y":-14},{"x":29,"y":-105},{"x":137,"y":-180},{"x":-33,"y":-199},{"x":26,"y":-59},{"x":-42,"y":-29},{"x":-8,"y":-68},{"x":-121,"y":-43},{"x":-36,"y":-106},{"x":-40,"y":-11},{"x":2,"y":-54},{"x":-80,"y":-89},{"x":40,"y":-23},{"x":-4,"y":-68},{"x":-66,"y":-41},{"x":0,"y":-161},{"x":113,"y":-106},{"x":41,"y":33},{"x":134,"y":-93},{"x":-34,"y":-153},{"x":131,"y":-109},{"x":76,"y":-230},{"x":-105,"y":-49},{"x":16,"y":-115},{"x":122,"y":4},{"x":37,"y":-117},{"x":87,"y":-26},{"x":79,"y":74},{"x":87,"y":-37},{"x":33,"y":-54},{"x":-45,"y":-89},{"x":23,"y":-22},{"x":131,"y":-15},{"x":85,"y":36},{"x":62,"y":-22},{"x":18,"y":-102},{"x":77,"y":-44},{"x":-4,"y":-65},{"x":56,"y":-40},{"x":-2,"y":-99},{"x":94,"y":-30},{"x":34,"y":-65},{"x":60,"y":-9},{"x":19,"y":-83},{"x":116,"y":69},{"x":43,"y":-6},{"x":41,"y":54},{"x":-27,"y":-216},{"x":-65,"y":-35}],"type":"admin"},{"arc":[{"x":107908,"y":109635},{"x":13,"y":-82},{"x":105,"y":12},{"x":23,"y":-29},{"x":26,"y":52},{"x":289,"y":60},{"x":55,"y":2},{"x":48,"y":-72},{"x":100,"y":79},{"x":44,"y":-101},{"x":70,"y":-2},{"x":29,"y":-28},{"x":76,"y":14},{"x":-12,"y":97},{"x":48,"y":172},{"x":-38,"y":40},{"x":12,"y":30},{"x":86,"y":1},{"x":2,"y":62},{"x":155,"y":81},{"x":56,"y":141},{"x":131,"y":58},{"x":-36,"y":61},{"x":89,"y":56},{"x":104,"y":152},{"x":30,"y":16},{"x":22,"y":-69},{"x":41,"y":12},{"x":45,"y":-61},{"x":75,"y":-8},{"x":10,"y":-28},{"x":90,"y":17},{"x":23,"y":32},{"x":170,"y":15},{"x":3,"y":77},{"x":31,"y":-2},{"x":61,"y":120},{"x":-18,"y":39}],"type":"area"},{"arc":[{"x":107908,"y":109635},{"x":-147,"y":-1},{"x":-189,"y":-304},{"x":-12,"y":-262},{"x":-50,"y":-185},{"x":-158,"y":-241},{"x":47,"y":-261},{"x":24,"y":-61},{"x":46,"y":12},{"x":10,"y":-169},{"x":-78,"y":-85},{"x":-622,"y":-283},{"x":-147,"y":-139},{"x":-204,"y":-93},{"x":-156,"y":-140},{"x":-379,"y":41},{"x":-128,"y":-86},{"x":-513,"y":3}],"type":"admin"},{"arc":[{"x":105252,"y":107381},{"x":-9,"y":-25},{"x":261,"y":-110},{"x":43,"y":-71},{"x":-202,"y":-9},{"x":50,"y":-87},{"x":-38,"y":-81},{"x":39,"y":-64},{"x":267,"y":-104},{"x":-9,"y":-39},{"x":90,"y":-36},{"x":-20,"y":-39},{"x":95,"y":-19},{"x":22,"y":-61},{"x":52,"y":-11},{"x":41,"y":-127},{"x":133,"y":-22},{"x":-3,"y":-75},{"x":121,"y":24},{"x":42,"y":-75},{"x":79,"y":4},{"x":17,"y":-38},{"x":90,"y":-18},{"x":-30,"y":-142},{"x":-145,"y":-41},{"x":-34,"y":-38},{"x":27,"y":-69},{"x":-22,"y":-60},{"x":40,"y":-54},{"x":-46,"y":-11},{"x":24,"y":-63},{"x":-45,"y":-22},{"x":51,"y":-31},{"x":-199,"y":-188},{"x":32,"y":-60},{"x":85,"y":-28},{"x":-111,"y":-124}],"type":"admin"},{"arc":[{"x":106040,"y":105367},{"x":115,"y":-177},{"x":41,"y":-3},{"x":9,"y":-50},{"x":77,"y":-66},{"x":138,"y":154},{"x":39,"y":-26},{"x":174,"y":19},{"x":92,"y":-39},{"x":146,"y":124},{"x":42,"y":-2},{"x":55,"y":44},{"x":128,"y":-7},{"x":184,"y":86},{"x":52,"y":-7},{"x":-13,"y":-85},{"x":42,"y":-7},{"x":29,"y":30},{"x":96,"y":-12},{"x":83,"y":191},{"x":98,"y":62},{"x":110,"y":-128},{"x":115,"y":-60},{"x":54,"y":-67},{"x":36,"y":1},{"x":51,"y":55},{"x":54,"y":-25},{"x":60,"y":58},{"x":87,"y":24},{"x":64,"y":-37},{"x":101,"y":-9},{"x":35,"y":-146},{"x":104,"y":-28},{"x":71,"y":-87},{"x":170,"y":56},{"x":69,"y":47},{"x":-1,"y":44},{"x":75,"y":-52},{"x":42,"y":21},{"x":52,"y":-18},{"x":37,"y":-132},{"x":230,"y":-71},{"x":-7,"y":-85},{"x":-178,"y":-46},{"x":-36,"y":-84},{"x":11,"y":-40},{"x":123,"y":-28},{"x":6,"y":-60},{"x":-62,"y":-56},{"x":29,"y":-39},{"x":90,"y":-10},{"x":119,"y":51},{"x":140,"y":14},{"x":165,"y":-33},{"x":41,"y":-41},{"x":100,"y":68},{"x":66,"y":-62},{"x":-56,"y":-136},{"x":30,"y":-77},{"x":71,"y":-9},{"x":81,"y":-64},{"x":67,"y":30},{"x":89,"y":-53},{"x":52,"y":35}],"type":"admin"},{"arc":[{"x":100796,"y":125159},{"x":-23,"y":5},{"x":9,"y":-26},{"x":14,"y":21}],"type":"coastline"},{"arc":[{"x":104382,"y":126896},{"x":-39,"y":52},{"x":-22,"y":-67},{"x":61,"y":-29},{"x":0,"y":44}],"type":"coastline"},{"arc":[{"x":105315,"y":126442},{"x":-105,"y":-18},{"x":-125,"y":-94},{"x":-42,"y":-72},{"x":-53,"y":-9},{"x":-89,"y":-78},{"x":-56,"y":-17},{"x":-28,"y":28},{"x":31,"y":-7},{"x":20,"y":32},{"x":-80,"y":4},{"x":-68,"y":-61},{"x":-89,"y":43},{"x":-148,"y":-81},{"x":-66,"y":37},{"x":-19,"y":94},{"x":47,"y":22},{"x":2,"y":37},{"x":-48,"y":54},{"x":-268,"y":-24},{"x":-72,"y":20},{"x":-11,"y":-108},{"x":-66,"y":-26},{"x":-138,"y":101},{"x":-81,"y":-16},{"x":-77,"y":93},{"x":17,"y":26},{"x":22,"y":-39},{"x":-47,"y":192},{"x":-64,"y":19},{"x":-32,"y":-20},{"x":-64,"y":35},{"x":30,"y":108},{"x":-94,"y":1},{"x":-43,"y":-28},{"x":-44,"y":42},{"x":-29,"y":-23},{"x":-26,"y":19},{"x":-86,"y":-61},{"x":-112,"y":1},{"x":-105,"y":-68},{"x":-72,"y":70},{"x":-28,"y":-44},{"x":-97,"y":-39},{"x":-62,"y":-106},{"x":-14,"y":-110},{"x":-114,"y":-34},{"x":6,"y":-87},{"x":-43,"y":-32},{"x":-117,"y":-47},{"x":-208,"y":11},{"x":-178,"y":-127},{"x":-151,"y":-29},{"x":-104,"y":-131},{"x":-27,"y":15},{"x":25,"y":29},{"x":-52,"y":9},{"x":-9,"y":-161},{"x":-125,"y":-56},{"x":-13,"y":-111},{"x":-92,"y":-75},{"x":-66,"y":34},{"x":-61,"y":-22},{"x":-15,"y":-44},{"x":-56,"y":-12},{"x":11,"y":-20},{"x":-53,"y":33},{"x":-84,"y":-107},{"x":-170,"y":-45},{"x":-86,"y":32},{"x":-6,"y":31},{"x":-66,"y":-68},{"x":-25,"y":48},{"x":-38,"y":-7},{"x":13,"y":61},{"x":-30,"y":13},{"x":-21,"y":-25},{"x":-52,"y":25},{"x":33,"y":-49},{"x":-82,"y":-33},{"x":37,"y":-75},{"x":-41,"y":-14},{"x":1,"y":-59},{"x":114,"y":2},{"x":8,"y":-26},{"x":8,"y":38},{"x":31,"y":-4},{"x":30,"y":38},{"x":38,"y":-46},{"x":-29,"y":-78},{"x":-41,"y":10},{"x":-2,"y":39},{"x":-40,"y":-68},{"x":31,"y":-40},{"x":-14,"y":-36},{"x":-45,"y":43},{"x":-15,"y":-86},{"x":-75,"y":-96},{"x":-45,"y":-20},{"x":-29,"y":18},{"x":-129,"y":-81},{"x":-19,"y":-24},{"x":54,"y":-105},{"x":-37,"y":-25},{"x":-25,"y":26},{"x":-39,"y":-13},{"x":28,"y":-27},{"x":-41,"y":-2},{"x":16,"y":-62},{"x":-66,"y":-46},{"x":21,"y":-51},{"x":-44,"y":-52},{"x":-27,"y":7},{"x":10,"y":-85},{"x":-87,"y":-9},{"x":43,"y":-43},{"x":-64,"y":31},{"x":-11,"y":-23},{"x":47,"y":-32},{"x":-23,"y":-8},{"x":32,"y":-18},{"x":-24,"y":4},{"x":15,"y":-84},{"x":91,"y":-9},{"x":-33,"y":-29},{"x":39,"y":-54},{"x":114,"y":-32},{"x":-55,"y":-118},{"x":112,"y":-5},{"x":42,"y":-34},{"x":15,"y":-102},{"x":84,"y":-41},{"x":62,"y":13},{"x":-5,"y":49},{"x":71,"y":37},{"x":-25,"y":52},{"x":86,"y":-5},{"x":-17,"y":-96},{"x":81,"y":-4},{"x":58,"y":-60},{"x":-11,"y":-26},{"x":46,"y":3},{"x":59,"y":-77},{"x":-41,"y":-112},{"x":28,"y":-27},{"x":31,"y":34},{"x":64,"y":1},{"x":45,"y":-32},{"x":120,"y":29},{"x":86,"y":-31},{"x":13,"y":64},{"x":79,"y":18},{"x":-35,"y":41},{"x":64,"y":4},{"x":-1,"y":48},{"x":72,"y":-52},{"x":-8,"y":31},{"x":61,"y":41},{"x":-16,"y":20},{"x":51,"y":76},{"x":42,"y":1},{"x":-9,"y":-29},{"x":26,"y":22},{"x":57,"y":-13},{"x":17,"y":-83},{"x":37,"y":59},{"x":19,"y":-44},{"x":57,"y":19},{"x":94,"y":-91},{"x":48,"y":13},{"x":33,"y":-41},{"x":32,"y":38},{"x":-24,"y":-4},{"x":9,"y":44},{"x":25,"y":-20},{"x":28,"y":46},{"x":38,"y":-8},{"x":0,"y":-71},{"x":83,"y":-36},{"x":84,"y":74},{"x":-10,"y":40},{"x":-25,"y":-32},{"x":-39,"y":33},{"x":10,"y":25},{"x":191,"y":-72},{"x":4,"y":44},{"x":57,"y":43},{"x":-26,"y":-8},{"x":5,"y":19},{"x":61,"y":28},{"x":35,"y":-14},{"x":4,"y":-53},{"x":43,"y":-11},{"x":-6,"y":-57},{"x":63,"y":-45},{"x":26,"y":42},{"x":139,"y":-13},{"x":101,"y":79},{"x":15,"y":47},{"x":-25,"y":6},{"x":55,"y":60},{"x":47,"y":4},{"x":20,"y":63},{"x":113,"y":-33},{"x":71,"y":-60},{"x":112,"y":-14}],"type":"coastline"},{"arc":[{"x":103396,"y":123820},{"x":8,"y":109},{"x":72,"y":78},{"x":-23,"y":93},{"x":34,"y":33},{"x":-51,"y":167},{"x":285,"y":-4},{"x":147,"y":305},{"x":141,"y":110},{"x":-13,"y":45},{"x":52,"y":93},{"x":54,"y":-39},{"x":107,"y":72},{"x":66,"y":-72},{"x":52,"y":70},{"x":210,"y":-43},{"x":29,"y":54},{"x":67,"y":25},{"x":10,"y":44},{"x":78,"y":3},{"x":-13,"y":24},{"x":24,"y":-4},{"x":49,"y":83},{"x":57,"y":-13},{"x":-12,"y":91},{"x":188,"y":65},{"x":261,"y":195},{"x":56,"y":90},{"x":73,"y":3},{"x":9,"y":52},{"x":87,"y":49},{"x":4,"y":-31},{"x":71,"y":29},{"x":129,"y":82}],"type":"area"},{"arc":[{"x":104315,"y":124683},{"x":-47,"y":31},{"x":12,"y":-32},{"x":35,"y":1}],"type":"coastline"},{"arc":[{"x":103396,"y":123820},{"x":124,"y":-80},{"x":188,"y":-29},{"x":54,"y":40},{"x":-51,"y":-22},{"x":-13,"y":100},{"x":78,"y":-13},{"x":31,"y":-53},{"x":179,"y":87},{"x":112,"y":-13},{"x":161,"y":70},{"x":-2,"y":18},{"x":-33,"y":-29},{"x":-27,"y":14},{"x":-42,"y":182},{"x":35,"y":23},{"x":7,"y":119},{"x":-44,"y":42},{"x":-3,"y":66},{"x":-42,"y":17},{"x":60,"y":98},{"x":6,"y":103},{"x":64,"y":54},{"x":-79,"y":7},{"x":55,"y":50},{"x":-60,"y":1},{"x":-19,"y":49},{"x":65,"y":56},{"x":22,"y":-38},{"x":56,"y":-12},{"x":61,"y":54},{"x":50,"y":-13},{"x":49,"y":76},{"x":18,"y":-65},{"x":-24,"y":-19},{"x":28,"y":4},{"x":4,"y":-40},{"x":-36,"y":2},{"x":-16,"y":-46},{"x":214,"y":-93},{"x":47,"y":-51},{"x":-21,"y":-35},{"x":85,"y":-67},{"x":-17,"y":-23},{"x":49,"y":43},{"x":-24,"y":-26},{"x":33,"y":-18},{"x":-46,"y":-5},{"x":63,"y":2},{"x":124,"y":-91},{"x":135,"y":-200},{"x":115,"y":-290},{"x":78,"y":-300},{"x":11,"y":-301},{"x":44,"y":-34},{"x":28,"y":39},{"x":-16,"y":-40},{"x":33,"y":1},{"x":2,"y":-78},{"x":-100,"y":97},{"x":-21,"y":-133},{"x":-149,"y":-332}],"type":"coastline"},{"arc":[{"x":105079,"y":122745},{"x":163,"y":-67},{"x":-44,"y":-146},{"x":30,"y":-46},{"x":108,"y":-44},{"x":0,"y":-149},{"x":83,"y":-93},{"x":-11,"y":-39},{"x":77,"y":-42},{"x":-43,"y":-33},{"x":-29,"y":-122},{"x":87,"y":-19},{"x":50,"y":-82},{"x":92,"y":2},{"x":81,"y":-59},{"x":141,"y":32}],"type":"area"},{"arc":[{"x":100417,"y":119433},{"x":-34,"y":-44}],"type":"area"},{"arc":[{"x":100383,"y":119389},{"x":19,"y":12},{"x":25,"y":-16},{"x":-12,"y":-21},{"x":23,"y":17},{"x":-11,"y":10},{"x":20,"y":-11},{"x":14,"y":20},{"x":-44,"y":33}],"type":"coastline"},{"arc":[{"x":102727,"y":120392},{"x":-50,"y":-55},{"x":-86,"y":-5},{"x":86,"y":4},{"x":50,"y":56}],"type":"coastline"},{"arc":[{"x":104322,"y":121837},{"x":-85,"y":-22},{"x":97,"y":25},{"x":25,"y":34},{"x":-37,"y":-37}],"type":"coastline"},{"arc":[{"x":105079,"y":122745},{"x":-46,"y":-472},{"x":-101,"y":-172},{"x":-36,"y":-7},{"x":17,"y":28},{"x":-61,"y":-57},{"x":-272,"y":-90},{"x":-76,"y":-44},{"x":-78,"y":-120},{"x":-48,"y":36},{"x":-44,"y":-61},{"x":49,"y":-37},{"x":-74,"y":1},{"x":86,"y":-22},{"x":-23,"y":-30},{"x":-81,"y":30},{"x":-21,"y":-21},{"x":49,"y":-36},{"x":-49,"y":11},{"x":-15,"y":-17},{"x":46,"y":-22},{"x":-43,"y":-35},{"x":23,"y":40},{"x":-143,"y":-7},{"x":47,"y":-50},{"x":-108,"y":47},{"x":-1,"y":-27},{"x":-6,"y":32},{"x":-133,"y":0},{"x":-60,"y":83},{"x":25,"y":-95},{"x":-65,"y":61},{"x":11,"y":36},{"x":56,"y":24},{"x":43,"y":-12},{"x":-32,"y":-40},{"x":36,"y":37},{"x":44,"y":-66},{"x":11,"y":44},{"x":33,"y":-32},{"x":52,"y":-3},{"x":29,"y":14},{"x":-3,"y":63},{"x":1,"y":-60},{"x":-25,"y":-8},{"x":1,"y":86},{"x":23,"y":-13},{"x":-68,"y":39},{"x":123,"y":-15},{"x":-68,"y":137},{"x":-179,"y":-52},{"x":-165,"y":-150},{"x":-195,"y":-351},{"x":-135,"y":-375},{"x":-133,"y":-148},{"x":-77,"y":-186},{"x":36,"y":-37},{"x":-46,"y":32},{"x":-56,"y":-121},{"x":-173,"y":-57},{"x":-63,"y":-70},{"x":-84,"y":-10},{"x":-57,"y":-54},{"x":-20,"y":27},{"x":-38,"y":-8},{"x":40,"y":-22},{"x":-30,"y":-5},{"x":6,"y":-30},{"x":38,"y":17},{"x":-9,"y":-33},{"x":-48,"y":4},{"x":5,"y":35},{"x":-148,"y":-32},{"x":-37,"y":31},{"x":1,"y":-42},{"x":-38,"y":19},{"x":16,"y":27},{"x":72,"y":15},{"x":-147,"y":49},{"x":-96,"y":-3},{"x":-406,"y":-265},{"x":-64,"y":-14},{"x":4,"y":-51},{"x":47,"y":-8},{"x":-28,"y":-44},{"x":-47,"y":48},{"x":11,"y":85},{"x":-270,"y":-299},{"x":75,"y":33},{"x":-26,"y":-51},{"x":2,"y":20},{"x":-41,"y":-8},{"x":6,"y":-30},{"x":-133,"y":-180},{"x":-217,"y":-186},{"x":-140,"y":-16},{"x":33,"y":25},{"x":-132,"y":-77},{"x":-20,"y":21},{"x":-14,"y":-20},{"x":13,"y":28},{"x":-127,"y":-93},{"x":-212,"y":-46},{"x":-150,"y":20},{"x":-31,"y":56},{"x":-5,"y":-32},{"x":-102,"y":62}],"type":"coastline"},{"arc":[{"x":100370,"y":119371},{"x":-13,"y":-97},{"x":60,"y":-72},{"x":-18,"y":-120},{"x":193,"y":-10},{"x":137,"y":110},{"x":80,"y":6},{"x":66,"y":-102},{"x":77,"y":24},{"x":87,"y":-79},{"x":66,"y":-140},{"x":163,"y":1},{"x":104,"y":-43},{"x":145,"y":15},{"x":91,"y":-79},{"x":114,"y":18},{"x":30,"y":46},{"x":103,"y":21},{"x":285,"y":-71},{"x":5,"y":-37},{"x":-64,"y":9},{"x":-73,"y":-59},{"x":183,"y":-110},{"x":-17,"y":-60},{"x":79,"y":11},{"x":14,"y":-34},{"x":51,"y":-11},{"x":58,"y":20},{"x":73,"y":-43},{"x":40,"y":-180},{"x":129,"y":-2},{"x":21,"y":-177},{"x":208,"y":-16},{"x":128,"y":86},{"x":113,"y":10},{"x":51,"y":-85},{"x":70,"y":-42},{"x":38,"y":20},{"x":77,"y":-58},{"x":-3,"y":-52},{"x":53,"y":-34},{"x":-15,"y":-37},{"x":49,"y":-69},{"x":71,"y":33},{"x":139,"y":-32},{"x":66,"y":14},{"x":42,"y":-32},{"x":68,"y":12},{"x":169,"y":190},{"x":175,"y":-79},{"x":54,"y":-95},{"x":16,"y":75},{"x":135,"y":189},{"x":95,"y":0},{"x":174,"y":-70},{"x":51,"y":53},{"x":142,"y":-4},{"x":100,"y":41},{"x":66,"y":69},{"x":229,"y":-235},{"x":-14,"y":-135},{"x":144,"y":-39},{"x":31,"y":-55},{"x":192,"y":10},{"x":16,"y":32},{"x":205,"y":88},{"x":62,"y":99},{"x":51,"y":-9},{"x":88,"y":70},{"x":93,"y":-27},{"x":72,"y":24},{"x":128,"y":-185},{"x":101,"y":27},{"x":61,"y":-21},{"x":24,"y":-99},{"x":117,"y":108},{"x":142,"y":-16},{"x":54,"y":47},{"x":64,"y":4}],"type":"area"},{"arc":[{"x":100417,"y":119433},{"x":12,"y":31},{"x":-36,"y":34},{"x":-43,"y":-31},{"x":33,"y":-78}],"type":"coastline"},{"arc":[{"x":100370,"y":119371},{"x":-38,"y":74},{"x":3,"y":-25},{"x":-37,"y":27},{"x":16,"y":22},{"x":20,"y":-21},{"x":-20,"y":27},{"x":-40,"y":1},{"x":-5,"y":-23},{"x":-20,"y":24},{"x":22,"y":5},{"x":-26,"y":31},{"x":70,"y":-22},{"x":-70,"y":46},{"x":12,"y":26},{"x":-88,"y":12},{"x":-40,"y":-51},{"x":55,"y":-271},{"x":378,"y":-829},{"x":145,"y":-455},{"x":87,"y":-421},{"x":29,"y":-381},{"x":-17,"y":-104},{"x":-44,"y":-33},{"x":51,"y":26},{"x":-4,"y":-44},{"x":-20,"y":9},{"x":25,"y":-52},{"x":-68,"y":62},{"x":57,"y":-61},{"x":-187,"y":-777},{"x":12,"y":-179},{"x":109,"y":-263},{"x":111,"y":-557},{"x":41,"y":-576},{"x":27,"y":0},{"x":19,"y":-130},{"x":-55,"y":-759}],"type":"coastline"},{"arc":[{"x":100880,"y":113729},{"x":94,"y":-2},{"x":45,"y":36},{"x":130,"y":19},{"x":133,"y":-31},{"x":46,"y":-46},{"x":134,"y":-29},{"x":50,"y":18},{"x":88,"y":-50},{"x":204,"y":39},{"x":32,"y":-19},{"x":70,"y":41},{"x":44,"y":86},{"x":146,"y":11},{"x":90,"y":-57},{"x":104,"y":111},{"x":48,"y":-18},{"x":55,"y":29},{"x":24,"y":123},{"x":72,"y":89},{"x":-15,"y":98},{"x":93,"y":73},{"x":-22,"y":278},{"x":92,"y":63},{"x":126,"y":17},{"x":27,"y":147},{"x":169,"y":196},{"x":112,"y":-6},{"x":33,"y":46},{"x":98,"y":4},{"x":74,"y":48},{"x":65,"y":-16},{"x":91,"y":55},{"x":50,"y":82},{"x":-26,"y":57},{"x":90,"y":56},{"x":17,"y":51},{"x":128,"y":40},{"x":16,"y":97},{"x":118,"y":-57},{"x":96,"y":65},{"x":39,"y":-49},{"x":46,"y":-6},{"x":107,"y":30},{"x":121,"y":91},{"x":72,"y":5},{"x":50,"y":90},{"x":159,"y":97},{"x":195,"y":269},{"x":122,"y":-17},{"x":87,"y":38},{"x":-41,"y":113},{"x":72,"y":19},{"x":29,"y":47},{"x":186,"y":-17},{"x":29,"y":-53},{"x":58,"y":5},{"x":16,"y":35},{"x":-53,"y":29},{"x":3,"y":38},{"x":90,"y":71},{"x":38,"y":-21},{"x":74,"y":19},{"x":-42,"y":56},{"x":40,"y":57},{"x":59,"y":-61},{"x":93,"y":32},{"x":64,"y":-62},{"x":-1,"y":-55},{"x":82,"y":-56},{"x":41,"y":32},{"x":1,"y":70},{"x":150,"y":44},{"x":15,"y":71},{"x":57,"y":-26},{"x":11,"y":81}],"type":"admin"},{"arc":[{"x":101272,"y":111918},{"x":-38,"y":-13},{"x":6,"y":-40},{"x":32,"y":53}],"type":"coastline"},{"arc":[{"x":101503,"y":112088},{"x":-21,"y":-32},{"x":84,"y":123},{"x":-63,"y":-91}],"type":"coastline"},{"arc":[{"x":101586,"y":112430},{"x":-146,"y":-1},{"x":18,"y":-83},{"x":129,"y":49},{"x":-1,"y":35}],"type":"coastline"},{"arc":[{"x":101975,"y":111781},{"x":-27,"y":-8},{"x":11,"y":-47},{"x":16,"y":55}],"type":"coastline"},{"arc":[{"x":102169,"y":112273},{"x":-46,"y":73},{"x":-57,"y":26},{"x":-10,"y":-77},{"x":113,"y":-22}],"type":"coastline"},{"arc":[{"x":100880,"y":113729},{"x":-328,"y":-1381},{"x":-274,"y":-791},{"x":-55,"y":-118},{"x":-41,"y":-22},{"x":77,"y":-19},{"x":-60,"y":3},{"x":4,"y":-59},{"x":-121,"y":-286},{"x":-27,"y":-201},{"x":36,"y":-165},{"x":-120,"y":-452},{"x":12,"y":-177},{"x":92,"y":36},{"x":-44,"y":-14},{"x":-8,"y":19},{"x":63,"y":50},{"x":176,"y":50},{"x":420,"y":203},{"x":76,"y":68},{"x":16,"y":61},{"x":-48,"y":119},{"x":-78,"y":-11},{"x":-24,"y":-38},{"x":16,"y":47},{"x":-58,"y":120},{"x":-30,"y":-33},{"x":-64,"y":2},{"x":41,"y":23},{"x":-27,"y":108},{"x":107,"y":168},{"x":89,"y":-109},{"x":-7,"y":168},{"x":30,"y":76},{"x":-20,"y":-12},{"x":-3,"y":49},{"x":40,"y":96},{"x":102,"y":97},{"x":-11,"y":80},{"x":90,"y":74},{"x":-17,"y":141},{"x":58,"y":55},{"x":15,"y":-24},{"x":46,"y":27},{"x":-1,"y":85},{"x":98,"y":-85},{"x":67,"y":100},{"x":30,"y":0},{"x":-30,"y":1},{"x":-10,"y":52},{"x":-89,"y":66},{"x":122,"y":49},{"x":67,"y":-66},{"x":144,"y":206},{"x":-27,"y":126},{"x":-325,"y":-1},{"x":-1,"y":-81},{"x":-134,"y":-27},{"x":40,"y":56},{"x":-38,"y":103},{"x":83,"y":66},{"x":28,"y":-59},{"x":45,"y":25},{"x":-17,"y":90},{"x":75,"y":16},{"x":-38,"y":-103},{"x":36,"y":-26},{"x":217,"y":-1},{"x":-3,"y":153},{"x":26,"y":1},{"x":-80,"y":38},{"x":79,"y":78},{"x":1,"y":69},{"x":44,"y":-35},{"x":-33,"y":-66},{"x":40,"y":-145},{"x":355,"y":2},{"x":8,"y":41},{"x":90,"y":41},{"x":48,"y":-43},{"x":-52,"y":-45},{"x":-13,"y":-88},{"x":135,"y":-41},{"x":45,"y":105},{"x":99,"y":-79},{"x":19,"y":-43},{"x":23,"y":-109},{"x":-21,"y":59},{"x":-56,"y":-17},{"x":0,"y":-92},{"x":53,"y":1},{"x":-2,"y":-42},{"x":-58,"y":43},{"x":20,"y":-50},{"x":-20,"y":-32},{"x":-20,"y":20},{"x":20,"y":-23},{"x":51,"y":-16},{"x":-52,"y":-10},{"x":16,"y":-120},{"x":85,"y":-39},{"x":6,"y":-30},{"x":-18,"y":26},{"x":-28,"y":-16},{"x":125,"y":-218},{"x":-72,"y":59},{"x":3,"y":-71},{"x":-32,"y":36},{"x":-90,"y":-42},{"x":27,"y":-1},{"x":-30,"y":-31},{"x":45,"y":-82},{"x":34,"y":-4},{"x":-23,"y":-21},{"x":-17,"y":19},{"x":19,"y":-38},{"x":-50,"y":17},{"x":-45,"y":-34},{"x":-6,"y":18},{"x":-5,"y":-30},{"x":-36,"y":1},{"x":35,"y":-13},{"x":-54,"y":-19},{"x":9,"y":37},{"x":-49,"y":-31},{"x":12,"y":37},{"x":-9,"y":-27},{"x":-54,"y":-7},{"x":-49,"y":24},{"x":-109,"y":-95},{"x":15,"y":-74},{"x":45,"y":-7},{"x":-16,"y":48},{"x":82,"y":13},{"x":-4,"y":23},{"x":86,"y":-77}],"type":"coastline"},{"arc":[{"x":101957,"y":111255},{"x":231,"y":21},{"x":29,"y":-58},{"x":107,"y":116},{"x":-32,"y":12},{"x":8,"y":46},{"x":-46,"y":15},{"x":19,"y":28},{"x":36,"y":-7},{"x":5,"y":71},{"x":74,"y":-62},{"x":81,"y":49},{"x":66,"y":-40},{"x":76,"y":100},{"x":62,"y":-4},{"x":43,"y":49},{"x":26,"y":106},{"x":-53,"y":50},{"x":20,"y":57},{"x":-60,"y":131},{"x":39,"y":21},{"x":46,"y":-15},{"x":48,"y":48},{"x":94,"y":29},{"x":6,"y":65},{"x":-40,"y":69},{"x":52,"y":107},{"x":-81,"y":52},{"x":99,"y":154},{"x":0,"y":77},{"x":56,"y":31},{"x":40,"y":100},{"x":-66,"y":18},{"x":-2,"y":50},{"x":-51,"y":19},{"x":76,"y":114},{"x":-92,"y":121},{"x":8,"y":55},{"x":87,"y":50},{"x":81,"y":-10},{"x":65,"y":133},{"x":50,"y":8},{"x":123,"y":-79},{"x":179,"y":-4},{"x":15,"y":-67},{"x":97,"y":46},{"x":66,"y":-136},{"x":128,"y":117},{"x":46,"y":-129},{"x":57,"y":-4},{"x":0,"y":-39},{"x":50,"y":78},{"x":128,"y":38},{"x":43,"y":86},{"x":-43,"y":132},{"x":144,"y":-3},{"x":62,"y":75},{"x":81,"y":-44},{"x":64,"y":18},{"x":64,"y":-22},{"x":108,"y":125},{"x":80,"y":8},{"x":7,"y":-25},{"x":35,"y":17},{"x":46,"y":-20},{"x":57,"y":-73},{"x":158,"y":-32},{"x":75,"y":120},{"x":131,"y":30},{"x":100,"y":-37},{"x":-25,"y":106},{"x":120,"y":127},{"x":38,"y":9},{"x":95,"y":-100},{"x":184,"y":166},{"x":54,"y":-8},{"x":99,"y":66},{"x":15,"y":96},{"x":-118,"y":-23},{"x":5,"y":99},{"x":-70,"y":43},{"x":132,"y":170},{"x":-46,"y":55},{"x":17,"y":129},{"x":-31,"y":92},{"x":45,"y":46},{"x":78,"y":-19}],"type":"area"},{"arc":[{"x":100943,"y":109983},{"x":-14,"y":-27},{"x":31,"y":-3},{"x":2,"y":17},{"x":-19,"y":-4},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":100989,"y":110004},{"x":-78,"y":14},{"x":-25,"y":-38},{"x":-75,"y":6},{"x":-3,"y":-22},{"x":36,"y":-9},{"x":1,"y":-31},{"x":73,"y":10},{"x":7,"y":59},{"x":30,"y":-8},{"x":5,"y":-12},{"x":29,"y":31}],"type":"coastline"},{"arc":[{"x":101212,"y":109998},{"x":-24,"y":48},{"x":-37,"y":-23},{"x":-12,"y":-114},{"x":36,"y":-2},{"x":30,"y":84},{"x":3,"y":-45},{"x":4,"y":52}],"type":"coastline"},{"arc":[{"x":101433,"y":110259},{"x":-47,"y":104},{"x":-35,"y":-39},{"x":-12,"y":54},{"x":-64,"y":-29},{"x":-18,"y":-45},{"x":50,"y":27},{"x":70,"y":-48},{"x":-21,"y":-50},{"x":-38,"y":0},{"x":31,"y":-51},{"x":23,"y":24},{"x":18,"y":-30},{"x":43,"y":83}],"type":"coastline"},{"arc":[{"x":101785,"y":110739},{"x":-25,"y":7},{"x":-8,"y":-37},{"x":33,"y":30}],"type":"coastline"},{"arc":[{"x":101933,"y":111037},{"x":-1,"y":-26},{"x":3,"y":47},{"x":-2,"y":-21}],"type":"coastline"},{"arc":[{"x":102337,"y":109604},{"x":-85,"y":-108},{"x":59,"y":21},{"x":53,"y":69},{"x":-27,"y":18}],"type":"coastline"},{"arc":[{"x":102812,"y":108421},{"x":-100,"y":110},{"x":-54,"y":22},{"x":-2,"y":-29},{"x":-25,"y":5},{"x":6,"y":30},{"x":-59,"y":6},{"x":-40,"y":2},{"x":-19,"y":-93},{"x":-63,"y":12},{"x":-8,"y":-42},{"x":345,"y":-81},{"x":19,"y":58}],"type":"coastline"},{"arc":[{"x":103602,"y":108548},{"x":-4,"y":29},{"x":-101,"y":-43},{"x":47,"y":-72},{"x":91,"y":60},{"x":-33,"y":26}],"type":"coastline"},{"arc":[{"x":104050,"y":108545},{"x":-72,"y":-49},{"x":-28,"y":34},{"x":27,"y":-34},{"x":-41,"y":-27},{"x":71,"y":-92},{"x":40,"y":31},{"x":16,"y":-19},{"x":-15,"y":19},{"x":93,"y":137},{"x":-91,"y":0}],"type":"coastline"},{"arc":[{"x":104442,"y":108617},{"x":-182,"y":63},{"x":-34,"y":-220},{"x":208,"y":-23},{"x":8,"y":180}],"type":"coastline"},{"arc":[{"x":104505,"y":108756},{"x":-7,"y":49},{"x":-109,"y":-23},{"x":16,"y":-46},{"x":-46,"y":32},{"x":9,"y":-48},{"x":-46,"y":32},{"x":-27,"y":-21},{"x":170,"y":-59},{"x":40,"y":21},{"x":0,"y":63}],"type":"coastline"},{"arc":[{"x":104656,"y":108986},{"x":-24,"y":32},{"x":-149,"y":-45},{"x":-38,"y":-26},{"x":3,"y":-61},{"x":171,"y":32},{"x":37,"y":68}],"type":"coastline"},{"arc":[{"x":101957,"y":111255},{"x":-25,"y":-1},{"x":16,"y":-57},{"x":-27,"y":25},{"x":-23,"y":-91},{"x":42,"y":-65},{"x":-4,"y":30},{"x":30,"y":-20},{"x":5,"y":-73},{"x":-68,"y":-48},{"x":70,"y":-118},{"x":10,"y":18},{"x":9,"y":-82},{"x":-39,"y":8},{"x":-3,"y":-38},{"x":-25,"y":21},{"x":-5,"y":-54},{"x":-82,"y":-81},{"x":114,"y":-94},{"x":-103,"y":-241},{"x":-12,"y":-122},{"x":10,"y":23},{"x":16,"y":-57},{"x":93,"y":-88},{"x":19,"y":47},{"x":13,"y":-51},{"x":49,"y":-12},{"x":78,"y":-92},{"x":96,"y":-29},{"x":-11,"y":38},{"x":91,"y":-291},{"x":100,"y":-59},{"x":143,"y":-20},{"x":18,"y":78},{"x":26,"y":3},{"x":17,"y":-73},{"x":191,"y":100},{"x":-7,"y":61},{"x":31,"y":-41},{"x":151,"y":48},{"x":-1,"y":55},{"x":36,"y":-6},{"x":-23,"y":-44},{"x":30,"y":-4},{"x":268,"y":14},{"x":32,"y":27},{"x":61,"y":-20},{"x":148,"y":53},{"x":0,"y":-24},{"x":5,"y":24},{"x":47,"y":-42},{"x":-126,"y":-24},{"x":7,"y":-26},{"x":-24,"y":23},{"x":-231,"y":-34},{"x":-27,"y":-38},{"x":-27,"y":33},{"x":-31,"y":-6},{"x":-260,"y":-114},{"x":-44,"y":55},{"x":-51,"y":-43},{"x":48,"y":-7},{"x":45,"y":-107},{"x":-60,"y":-77},{"x":-4,"y":92},{"x":-121,"y":-50},{"x":33,"y":-93},{"x":-60,"y":2},{"x":-24,"y":67},{"x":-72,"y":-13},{"x":-15,"y":-40},{"x":51,"y":-2},{"x":-8,"y":-26},{"x":-50,"y":8},{"x":-2,"y":27},{"x":-65,"y":-10},{"x":-31,"y":51},{"x":-55,"y":-4},{"x":-6,"y":-91},{"x":24,"y":-6},{"x":-40,"y":-7},{"x":-1,"y":37},{"x":-61,"y":-6},{"x":-3,"y":93},{"x":3,"y":-92},{"x":-68,"y":-7},{"x":-27,"y":-41},{"x":-170,"y":11},{"x":-192,"y":-55},{"x":-69,"y":39},{"x":-16,"y":59},{"x":-66,"y":3},{"x":-89,"y":121},{"x":-85,"y":56},{"x":-64,"y":130},{"x":-69,"y":27},{"x":-41,"y":-63},{"x":-29,"y":85},{"x":-72,"y":-41},{"x":11,"y":20},{"x":-59,"y":24},{"x":13,"y":23},{"x":-42,"y":12},{"x":-21,"y":-55},{"x":-17,"y":32},{"x":-28,"y":-21},{"x":61,"y":-59},{"x":-8,"y":-165},{"x":75,"y":-61},{"x":-36,"y":-20},{"x":-4,"y":28},{"x":-9,"y":-54},{"x":258,"y":-457},{"x":65,"y":-37},{"x":13,"y":-59},{"x":40,"y":-1},{"x":201,"y":-146},{"x":334,"y":139},{"x":380,"y":67},{"x":109,"y":-41},{"x":36,"y":-45},{"x":-13,"y":22},{"x":119,"y":-25},{"x":98,"y":-141},{"x":24,"y":-7},{"x":-5,"y":38},{"x":62,"y":-25},{"x":-28,"y":-23},{"x":-24,"y":4},{"x":-56,"y":-27},{"x":-11,"y":-13},{"x":24,"y":19},{"x":20,"y":-23},{"x":-35,"y":-2},{"x":109,"y":-62},{"x":10,"y":7},{"x":27,"y":-4},{"x":-18,"y":-10},{"x":42,"y":24},{"x":22,"y":24},{"x":109,"y":-43},{"x":-4,"y":26},{"x":32,"y":-33},{"x":200,"y":30},{"x":47,"y":-22},{"x":65,"y":33},{"x":200,"y":24},{"x":48,"y":-68},{"x":116,"y":85},{"x":-22,"y":40},{"x":35,"y":20},{"x":21,"y":-37},{"x":40,"y":22},{"x":71,"y":-89},{"x":-69,"y":96},{"x":116,"y":67},{"x":-6,"y":41},{"x":41,"y":24},{"x":20,"y":-84},{"x":59,"y":44},{"x":-20,"y":129},{"x":-39,"y":9},{"x":33,"y":20},{"x":42,"y":7},{"x":36,"y":-145},{"x":240,"y":134},{"x":5,"y":157},{"x":31,"y":0},{"x":18,"y":-78},{"x":175,"y":56},{"x":44,"y":-25},{"x":39,"y":16},{"x":-40,"y":34},{"x":60,"y":4},{"x":-2,"y":47},{"x":12,"y":-47},{"x":45,"y":1},{"x":24,"y":50},{"x":11,"y":-51},{"x":60,"y":15},{"x":11,"y":-30},{"x":-46,"y":-27},{"x":28,"y":-43},{"x":-34,"y":-84},{"x":-87,"y":-8},{"x":-48,"y":-22},{"x":51,"y":-9},{"x":-42,"y":-20},{"x":-48,"y":13},{"x":25,"y":-48},{"x":48,"y":-11},{"x":-78,"y":0},{"x":-9,"y":38},{"x":-112,"y":-35},{"x":26,"y":-101},{"x":182,"y":57},{"x":44,"y":-20},{"x":-6,"y":-154},{"x":-45,"y":-48},{"x":-52,"y":17},{"x":-2,"y":-30},{"x":-71,"y":-9},{"x":-12,"y":39},{"x":47,"y":0},{"x":-41,"y":78},{"x":-130,"y":-27},{"x":12,"y":-260},{"x":-65,"y":0},{"x":1,"y":30},{"x":-33,"y":0},{"x":0,"y":-30},{"x":-26,"y":0},{"x":4,"y":31},{"x":-94,"y":-3},{"x":63,"y":-112},{"x":-21,"y":-42},{"x":-108,"y":125},{"x":-73,"y":-22},{"x":-19,"y":23},{"x":68,"y":-87},{"x":18,"y":-118}],"type":"coastline"},{"arc":[{"x":104177,"y":108146},{"x":28,"y":16},{"x":126,"y":-92},{"x":145,"y":-59},{"x":259,"y":-25},{"x":162,"y":-148},{"x":74,"y":-134},{"x":186,"y":-149},{"x":39,"y":-146},{"x":56,"y":-28}],"type":"admin"},{"arc":[{"x":103513,"y":107272},{"x":135,"y":23},{"x":7,"y":64},{"x":-7,"y":-63},{"x":-135,"y":-24}],"type":"coastline"},{"arc":[{"x":103954,"y":107383},{"x":-43,"y":-92},{"x":-61,"y":128},{"x":-134,"y":-94},{"x":42,"y":-121},{"x":148,"y":18},{"x":87,"y":179},{"x":-39,"y":-18}],"type":"coastline"},{"arc":[{"x":104177,"y":108146},{"x":-2,"y":-57},{"x":145,"y":-108},{"x":-103,"y":-152},{"x":-51,"y":-253},{"x":-124,"y":18},{"x":-31,"y":-108},{"x":56,"y":-30},{"x":-28,"y":-2},{"x":22,"y":-48},{"x":-108,"y":-158},{"x":-63,"y":-42},{"x":-140,"y":-34},{"x":-23,"y":38},{"x":-142,"y":-37},{"x":5,"y":-65},{"x":-61,"y":1},{"x":30,"y":30},{"x":-23,"y":24},{"x":-19,"y":-51},{"x":-28,"y":22},{"x":-1,"y":-57},{"x":-69,"y":41},{"x":16,"y":13},{"x":-43,"y":3},{"x":77,"y":57},{"x":-13,"y":116},{"x":-31,"y":-4},{"x":-4,"y":37},{"x":-46,"y":-5},{"x":-26,"y":-167},{"x":-74,"y":-5},{"x":-10,"y":28},{"x":-87,"y":-32},{"x":-121,"y":20},{"x":-80,"y":-77},{"x":-106,"y":-33},{"x":17,"y":31},{"x":-290,"y":-153},{"x":-9,"y":-49},{"x":8,"y":59},{"x":-206,"y":-175},{"x":-32,"y":8},{"x":-4,"y":-53},{"x":-2,"y":54},{"x":-235,"y":-210}],"type":"coastline"},{"arc":[{"x":102118,"y":106581},{"x":94,"y":-146},{"x":-29,"y":-2},{"x":-35,"y":-79},{"x":2,"y":-95},{"x":50,"y":-36},{"x":-49,"y":-71},{"x":36,"y":-22},{"x":-59,"y":-9},{"x":4,"y":-91},{"x":-68,"y":-67},{"x":82,"y":-70},{"x":-45,"y":-40},{"x":54,"y":12},{"x":-15,"y":-26},{"x":51,"y":-31},{"x":-41,"y":-37},{"x":24,"y":10},{"x":6,"y":-45},{"x":41,"y":-6},{"x":-42,"y":-88},{"x":108,"y":-112},{"x":166,"y":-10},{"x":44,"y":-97},{"x":-43,"y":-27},{"x":32,"y":-87},{"x":-16,"y":-39},{"x":-40,"y":1},{"x":-15,"y":-108},{"x":-151,"y":-121},{"x":28,"y":-68},{"x":-45,"y":-240},{"x":38,"y":-59},{"x":-28,"y":-30},{"x":-66,"y":-3},{"x":4,"y":-65},{"x":-55,"y":-14},{"x":58,"y":-144},{"x":-22,"y":-128},{"x":73,"y":-82},{"x":30,"y":81},{"x":127,"y":9},{"x":57,"y":90},{"x":140,"y":-44},{"x":36,"y":-52},{"x":103,"y":47}],"type":"area"},{"arc":[{"x":102742,"y":104340},{"x":46,"y":167},{"x":52,"y":62},{"x":60,"y":2},{"x":25,"y":45},{"x":-9,"y":59},{"x":65,"y":101},{"x":-7,"y":52},{"x":97,"y":156},{"x":161,"y":14},{"x":25,"y":58},{"x":29,"y":-28},{"x":108,"y":29},{"x":31,"y":-21},{"x":99,"y":101},{"x":-10,"y":74},{"x":166,"y":63},{"x":108,"y":99},{"x":112,"y":4},{"x":29,"y":-23},{"x":45,"y":62},{"x":184,"y":-33},{"x":19,"y":34},{"x":75,"y":23},{"x":12,"y":-51},{"x":179,"y":-1},{"x":159,"y":186},{"x":154,"y":-49},{"x":33,"y":53},{"x":54,"y":-31},{"x":93,"y":30},{"x":144,"y":-15},{"x":68,"y":63},{"x":67,"y":-98},{"x":78,"y":58},{"x":97,"y":10},{"x":30,"y":84},{"x":128,"y":-20},{"x":3,"y":-56},{"x":47,"y":-5},{"x":8,"y":-46},{"x":119,"y":-112},{"x":-18,"y":-38},{"x":43,"y":-85}],"type":"admin"},{"arc":[{"x":105750,"y":105317},{"x":157,"y":73},{"x":133,"y":-23}],"type":"admin"},{"arc":[{"x":102118,"y":106581},{"x":-80,"y":-63},{"x":-4,"y":27},{"x":2,"y":-29},{"x":-156,"y":-111},{"x":-4,"y":19},{"x":-112,"y":-75},{"x":-35,"y":6},{"x":5,"y":-22},{"x":-12,"y":26},{"x":-39,"y":-43},{"x":-204,"y":-60},{"x":-72,"y":7},{"x":-156,"y":-42},{"x":-28,"y":24},{"x":-8,"y":-27},{"x":-2,"y":39},{"x":0,"y":-37},{"x":-10,"y":20},{"x":-27,"y":-34},{"x":-167,"y":-3},{"x":-99,"y":114},{"x":57,"y":37},{"x":-29,"y":43},{"x":-53,"y":-35},{"x":-36,"y":54},{"x":49,"y":34},{"x":43,"y":-23},{"x":-87,"y":54},{"x":-49,"y":-72},{"x":-43,"y":21},{"x":-121,"y":-27},{"x":-103,"y":18},{"x":-156,"y":-40},{"x":19,"y":-42},{"x":-71,"y":-15},{"x":2,"y":-45},{"x":-56,"y":-36},{"x":5,"y":113},{"x":-38,"y":-6},{"x":34,"y":13},{"x":-35,"y":49},{"x":76,"y":44},{"x":7,"y":33},{"x":-32,"y":-29},{"x":-18,"y":41},{"x":59,"y":9},{"x":-73,"y":2},{"x":-12,"y":26},{"x":22,"y":66},{"x":-71,"y":115},{"x":-42,"y":327},{"x":-24,"y":-3},{"x":23,"y":6},{"x":-38,"y":-1},{"x":-48,"y":138},{"x":-214,"y":99}],"type":"coastline"},{"arc":[{"x":99857,"y":107285},{"x":-91,"y":-36},{"x":-49,"y":22},{"x":-57,"y":-90},{"x":-88,"y":-14},{"x":-74,"y":118},{"x":-71,"y":6},{"x":25,"y":-52},{"x":-48,"y":-25},{"x":53,"y":-7},{"x":-28,"y":-31},{"x":-50,"y":11},{"x":31,"y":-29},{"x":-34,"y":-143},{"x":19,"y":-95},{"x":-95,"y":-6},{"x":-40,"y":-87},{"x":22,"y":-14},{"x":-40,"y":13},{"x":20,"y":-31},{"x":-43,"y":35},{"x":-70,"y":-114},{"x":-62,"y":-44},{"x":-44,"y":5},{"x":0,"y":-28},{"x":-132,"y":38},{"x":-67,"y":-40},{"x":-75,"y":0},{"x":-19,"y":-223},{"x":36,"y":-28},{"x":59,"y":9},{"x":-76,"y":-288},{"x":28,"y":-37},{"x":-56,"y":8},{"x":-37,"y":-96},{"x":-53,"y":29},{"x":-34,"y":-233},{"x":-26,"y":-34},{"x":-49,"y":16},{"x":-70,"y":-109},{"x":-47,"y":-153},{"x":36,"y":-111},{"x":-30,"y":-160},{"x":-89,"y":-157},{"x":-37,"y":-9},{"x":46,"y":-138},{"x":-31,"y":-133},{"x":31,"y":-101},{"x":-37,"y":-48},{"x":40,"y":-196},{"x":-27,"y":-60},{"x":15,"y":-138},{"x":-206,"y":-129},{"x":-156,"y":114},{"x":-36,"y":-92},{"x":-92,"y":-50},{"x":-65,"y":-294},{"x":18,"y":-61},{"x":-43,"y":-96},{"x":-53,"y":-71},{"x":-146,"y":18},{"x":-4,"y":-175},{"x":-30,"y":-44},{"x":-72,"y":-17},{"x":26,"y":-225}],"type":"area"},{"arc":[{"x":97483,"y":103135},{"x":95,"y":-62},{"x":27,"y":-96},{"x":69,"y":-56},{"x":409,"y":-124},{"x":94,"y":-132},{"x":176,"y":67},{"x":78,"y":96},{"x":120,"y":-12},{"x":62,"y":56},{"x":4,"y":120},{"x":68,"y":55},{"x":24,"y":83},{"x":-41,"y":120},{"x":8,"y":56},{"x":68,"y":55},{"x":-34,"y":149},{"x":49,"y":86},{"x":-19,"y":139},{"x":309,"y":73},{"x":111,"y":112},{"x":80,"y":-119},{"x":138,"y":40},{"x":124,"y":-36},{"x":-47,"y":-199},{"x":-69,"y":-60},{"x":31,"y":-114},{"x":166,"y":27},{"x":88,"y":-87},{"x":17,"y":15},{"x":106,"y":-49},{"x":-6,"y":-35},{"x":-37,"y":-5},{"x":55,"y":-96},{"x":-122,"y":-112},{"x":-21,"y":-74},{"x":103,"y":-32},{"x":23,"y":-208},{"x":72,"y":-77},{"x":24,"y":-104},{"x":79,"y":-13},{"x":25,"y":-70},{"x":49,"y":-26},{"x":14,"y":33},{"x":59,"y":11},{"x":71,"y":-43},{"x":184,"y":124},{"x":22,"y":50},{"x":119,"y":37},{"x":159,"y":-68},{"x":7,"y":-113},{"x":86,"y":-85},{"x":23,"y":11},{"x":-112,"y":183},{"x":54,"y":47},{"x":10,"y":58},{"x":158,"y":68},{"x":213,"y":-90},{"x":19,"y":-120},{"x":44,"y":-46},{"x":98,"y":135},{"x":27,"y":-29},{"x":59,"y":6},{"x":140,"y":-98}],"type":"admin"},{"arc":[{"x":101492,"y":102557},{"x":104,"y":-128},{"x":66,"y":-8},{"x":9,"y":-75},{"x":201,"y":41},{"x":35,"y":-87},{"x":40,"y":-21},{"x":48,"y":18}],"type":"admin"},{"arc":[{"x":101995,"y":102297},{"x":23,"y":129},{"x":71,"y":62},{"x":-23,"y":38},{"x":44,"y":45},{"x":-37,"y":41},{"x":118,"y":219},{"x":65,"y":36},{"x":176,"y":-72},{"x":28,"y":144},{"x":114,"y":21},{"x":88,"y":151},{"x":44,"y":-29},{"x":33,"y":25},{"x":24,"y":-15},{"x":-27,"y":-163},{"x":72,"y":-137},{"x":50,"y":31},{"x":41,"y":-33},{"x":36,"y":17},{"x":-13,"y":82},{"x":65,"y":29},{"x":55,"y":71},{"x":-31,"y":35},{"x":-52,"y":-2},{"x":-95,"y":126},{"x":50,"y":44},{"x":-62,"y":87},{"x":57,"y":140},{"x":-7,"y":99},{"x":-69,"y":2},{"x":-20,"y":76},{"x":-44,"y":16},{"x":-115,"y":289},{"x":-27,"y":205},{"x":61,"y":112},{"x":91,"y":71},{"x":-37,"y":51}],"type":"admin"},{"arc":[{"x":95063,"y":104155},{"x":-28,"y":27},{"x":16,"y":-59},{"x":12,"y":32}],"type":"coastline"},{"arc":[{"x":96035,"y":104499},{"x":-34,"y":27},{"x":-34,"y":-56},{"x":58,"y":-1},{"x":10,"y":30}],"type":"coastline"},{"arc":[{"x":96109,"y":104620},{"x":-58,"y":30},{"x":7,"y":-29},{"x":51,"y":-1}],"type":"coastline"},{"arc":[{"x":96143,"y":104616},{"x":-14,"y":23},{"x":-15,"y":-31},{"x":29,"y":8}],"type":"coastline"},{"arc":[{"x":96850,"y":106427},{"x":-13,"y":32},{"x":-50,"y":4},{"x":14,"y":-64},{"x":49,"y":28}],"type":"coastline"},{"arc":[{"x":97038,"y":108671},{"x":-17,"y":29},{"x":-8,"y":-30},{"x":25,"y":1}],"type":"coastline"},{"arc":[{"x":97200,"y":108575},{"x":-21,"y":6},{"x":15,"y":-35},{"x":6,"y":29}],"type":"coastline"},{"arc":[{"x":97247,"y":108617},{"x":-20,"y":15},{"x":5,"y":-39},{"x":15,"y":24}],"type":"coastline"},{"arc":[{"x":97264,"y":108515},{"x":-10,"y":36},{"x":-45,"y":-28},{"x":25,"y":-6},{"x":-23,"y":-85},{"x":53,"y":83}],"type":"coastline"},{"arc":[{"x":97288,"y":108550},{"x":-16,"y":30},{"x":-29,"y":-17},{"x":13,"y":33},{"x":-32,"y":-15},{"x":-6,"y":-31},{"x":41,"y":18},{"x":14,"y":-39},{"x":15,"y":21}],"type":"coastline"},{"arc":[{"x":97332,"y":108570},{"x":-49,"y":4},{"x":18,"y":-46},{"x":31,"y":42}],"type":"coastline"},{"arc":[{"x":97438,"y":108533},{"x":-42,"y":48},{"x":-8,"y":-119},{"x":50,"y":71}],"type":"coastline"},{"arc":[{"x":97715,"y":107739},{"x":-34,"y":7},{"x":-27,"y":-48},{"x":61,"y":41}],"type":"coastline"},{"arc":[{"x":97973,"y":108972},{"x":-52,"y":15},{"x":-47,"y":-39},{"x":72,"y":-55},{"x":24,"y":37},{"x":-44,"y":11},{"x":45,"y":5},{"x":2,"y":26}],"type":"coastline"},{"arc":[{"x":98857,"y":109140},{"x":-51,"y":-21},{"x":8,"y":-28},{"x":43,"y":49}],"type":"coastline"},{"arc":[{"x":99140,"y":108841},{"x":-13,"y":50},{"x":-67,"y":-57},{"x":22,"y":8},{"x":-26,"y":-19},{"x":52,"y":-48},{"x":32,"y":66}],"type":"coastline"},{"arc":[{"x":99257,"y":109189},{"x":-18,"y":43},{"x":-114,"y":-22},{"x":-2,"y":-60},{"x":-83,"y":-90},{"x":-34,"y":4},{"x":10,"y":-32},{"x":38,"y":-3},{"x":-10,"y":-31},{"x":33,"y":11},{"x":-3,"y":-62},{"x":89,"y":25},{"x":45,"y":161},{"x":49,"y":56}],"type":"coastline"},{"arc":[{"x":99420,"y":108723},{"x":-5,"y":28},{"x":-28,"y":-97},{"x":33,"y":69}],"type":"coastline"},{"arc":[{"x":99428,"y":108826},{"x":-3,"y":41},{"x":-11,"y":-87},{"x":14,"y":46}],"type":"coastline"},{"arc":[{"x":99595,"y":109146},{"x":-69,"y":42},{"x":13,"y":-22},{"x":-47,"y":9},{"x":21,"y":25},{"x":-48,"y":-36},{"x":-52,"y":24},{"x":-11,"y":-37},{"x":31,"y":-22},{"x":7,"y":26},{"x":7,"y":-43},{"x":-67,"y":-65},{"x":-13,"y":-63},{"x":-53,"y":-20},{"x":16,"y":-60},{"x":-39,"y":-14},{"x":-9,"y":-60},{"x":20,"y":-95},{"x":81,"y":53},{"x":13,"y":135},{"x":70,"y":19},{"x":14,"y":55},{"x":2,"y":-109},{"x":24,"y":24},{"x":9,"y":125},{"x":11,"y":-16},{"x":69,"y":125}],"type":"coastline"},{"arc":[{"x":99607,"y":107854},{"x":-48,"y":19},{"x":18,"y":-36},{"x":30,"y":17}],"type":"coastline"},{"arc":[{"x":99649,"y":109286},{"x":-43,"y":-29},{"x":28,"y":-50},{"x":15,"y":79}],"type":"coastline"},{"arc":[{"x":99723,"y":109795},{"x":-25,"y":47},{"x":-90,"y":-43},{"x":67,"y":-45},{"x":40,"y":40},{"x":-16,"y":-43},{"x":24,"y":44}],"type":"coastline"},{"arc":[{"x":91855,"y":102216},{"x":129,"y":-253},{"x":-37,"y":-60},{"x":-92,"y":35},{"x":13,"y":-106},{"x":98,"y":-164},{"x":210,"y":-26},{"x":-29,"y":-79},{"x":42,"y":-59},{"x":78,"y":-31},{"x":7,"y":-81},{"x":313,"y":-110},{"x":100,"y":-226},{"x":80,"y":-59},{"x":103,"y":23},{"x":62,"y":-25},{"x":116,"y":38},{"x":127,"y":-57},{"x":53,"y":43},{"x":50,"y":-7}],"type":"admin"},{"arc":[{"x":93278,"y":101012},{"x":32,"y":33},{"x":-131,"y":1},{"x":-36,"y":78},{"x":25,"y":21}],"type":"admin"},{"arc":[{"x":93168,"y":101145},{"x":98,"y":29},{"x":-21,"y":149},{"x":117,"y":31},{"x":113,"y":-72},{"x":-114,"y":4},{"x":18,"y":-59},{"x":109,"y":23},{"x":67,"y":-58},{"x":67,"y":-1}],"type":"admin"},{"arc":[{"x":93622,"y":101191},{"x":-29,"y":111},{"x":59,"y":23},{"x":73,"y":-31},{"x":-17,"y":118}],"type":"admin"},{"arc":[{"x":93708,"y":101412},{"x":12,"y":65},{"x":-53,"y":38},{"x":31,"y":89},{"x":52,"y":-12},{"x":-29,"y":-66},{"x":35,"y":-49},{"x":101,"y":33},{"x":-7,"y":76},{"x":76,"y":-17},{"x":-18,"y":118},{"x":-107,"y":185},{"x":181,"y":75},{"x":135,"y":-20},{"x":48,"y":18},{"x":15,"y":77},{"x":-118,"y":97},{"x":64,"y":30},{"x":41,"y":67},{"x":77,"y":10},{"x":244,"y":-140},{"x":15,"y":73},{"x":52,"y":18},{"x":21,"y":-26}],"type":"admin"},{"arc":[{"x":94576,"y":102151},{"x":93,"y":29},{"x":46,"y":60},{"x":107,"y":26},{"x":-38,"y":105},{"x":86,"y":45},{"x":-42,"y":12},{"x":40,"y":34},{"x":-46,"y":6},{"x":-35,"y":65},{"x":33,"y":18},{"x":-32,"y":61},{"x":15,"y":80},{"x":-51,"y":44},{"x":3,"y":58},{"x":-60,"y":83},{"x":32,"y":60},{"x":127,"y":-22},{"x":87,"y":-73},{"x":88,"y":40},{"x":79,"y":-29},{"x":120,"y":27},{"x":39,"y":-28},{"x":38,"y":35},{"x":-42,"y":163},{"x":131,"y":-128},{"x":67,"y":44},{"x":32,"y":-30},{"x":81,"y":0},{"x":36,"y":-36},{"x":75,"y":70},{"x":138,"y":-50},{"x":31,"y":35},{"x":75,"y":-6},{"x":79,"y":70},{"x":120,"y":-79},{"x":110,"y":35},{"x":49,"y":-128},{"x":116,"y":38},{"x":113,"y":162},{"x":83,"y":-7},{"x":11,"y":-60},{"x":37,"y":0},{"x":14,"y":48},{"x":97,"y":53},{"x":29,"y":60},{"x":86,"y":12},{"x":82,"y":-107},{"x":91,"y":19},{"x":100,"y":-67},{"x":77,"y":-110},{"x":120,"y":-23},{"x":39,"y":42},{"x":-5,"y":88},{"x":106,"y":140}],"type":"admin"},{"arc":[{"x":99857,"y":107285},{"x":-73,"y":46},{"x":-50,"y":169},{"x":-24,"y":1},{"x":24,"y":2},{"x":-60,"y":46},{"x":-13,"y":187},{"x":-11,"y":-17},{"x":-179,"y":247},{"x":12,"y":37},{"x":-12,"y":-37},{"x":-32,"y":7},{"x":23,"y":40},{"x":-140,"y":152},{"x":-33,"y":174},{"x":15,"y":115},{"x":-84,"y":9},{"x":-26,"y":43},{"x":-44,"y":-29},{"x":-13,"y":36},{"x":-57,"y":-11},{"x":23,"y":95},{"x":30,"y":-34},{"x":26,"y":38},{"x":108,"y":-46},{"x":17,"y":77},{"x":-101,"y":34},{"x":-36,"y":-19},{"x":-25,"y":23},{"x":35,"y":36},{"x":-41,"y":-2},{"x":31,"y":31},{"x":-82,"y":-10},{"x":-22,"y":20},{"x":-25,"y":86},{"x":30,"y":65},{"x":-60,"y":18},{"x":-4,"y":66},{"x":-34,"y":-45},{"x":-84,"y":6},{"x":-11,"y":-63},{"x":-32,"y":64},{"x":-28,"y":-53},{"x":19,"y":86},{"x":-56,"y":-11},{"x":-6,"y":74},{"x":-93,"y":-31},{"x":-12,"y":-40},{"x":-36,"y":62},{"x":-60,"y":-61},{"x":69,"y":90},{"x":-10,"y":28},{"x":48,"y":-64},{"x":42,"y":30},{"x":-9,"y":39},{"x":43,"y":-1},{"x":-2,"y":64},{"x":27,"y":-52},{"x":26,"y":25},{"x":-18,"y":92},{"x":40,"y":25},{"x":-99,"y":64},{"x":17,"y":26},{"x":-56,"y":11},{"x":-22,"y":-35},{"x":-29,"y":29},{"x":-57,"y":-4},{"x":-34,"y":-30},{"x":-120,"y":76},{"x":-22,"y":-68},{"x":-76,"y":-17},{"x":-46,"y":-66},{"x":-96,"y":10},{"x":-10,"y":34},{"x":9,"y":-45},{"x":-28,"y":-18},{"x":-47,"y":48},{"x":-41,"y":-2},{"x":4,"y":-101},{"x":35,"y":25},{"x":-13,"y":-42},{"x":72,"y":13},{"x":30,"y":-23},{"x":-57,"y":-73},{"x":78,"y":13},{"x":-30,"y":-74},{"x":-29,"y":38},{"x":-50,"y":-28},{"x":64,"y":-84},{"x":-149,"y":56},{"x":36,"y":-82},{"x":-42,"y":39},{"x":-21,"y":-87},{"x":-44,"y":-20},{"x":39,"y":-10},{"x":46,"y":-75},{"x":-8,"y":-44},{"x":-37,"y":25},{"x":-9,"y":-51},{"x":-52,"y":-34},{"x":58,"y":-166},{"x":-30,"y":8},{"x":-15,"y":73},{"x":-41,"y":-25},{"x":-56,"y":55},{"x":22,"y":83},{"x":51,"y":39},{"x":45,"y":-14},{"x":22,"y":49},{"x":27,"y":0},{"x":-28,"y":52},{"x":-104,"y":-25},{"x":77,"y":111},{"x":-48,"y":0},{"x":-27,"y":44},{"x":-50,"y":-71},{"x":-1,"y":40},{"x":-81,"y":7},{"x":69,"y":27},{"x":-8,"y":22},{"x":29,"y":-7},{"x":86,"y":92},{"x":-42,"y":32},{"x":46,"y":-1},{"x":-22,"y":29},{"x":29,"y":-26},{"x":32,"y":27},{"x":-43,"y":38},{"x":39,"y":5},{"x":-25,"y":34},{"x":47,"y":37},{"x":-23,"y":23},{"x":-156,"y":-135},{"x":-33,"y":-81},{"x":-95,"y":-31},{"x":-102,"y":13},{"x":-85,"y":104},{"x":-160,"y":-67},{"x":-137,"y":141},{"x":8,"y":-27},{"x":-70,"y":-5},{"x":58,"y":41},{"x":-74,"y":-23},{"x":-26,"y":-239},{"x":-79,"y":22},{"x":-37,"y":-160},{"x":-40,"y":-30},{"x":-98,"y":-5},{"x":54,"y":-55},{"x":-15,"y":-169},{"x":53,"y":-237},{"x":43,"y":-53},{"x":-9,"y":-129},{"x":79,"y":-29},{"x":18,"y":-92},{"x":87,"y":149},{"x":-11,"y":73},{"x":-33,"y":-8},{"x":34,"y":101},{"x":-28,"y":-16},{"x":-40,"y":42},{"x":66,"y":-5},{"x":-27,"y":68},{"x":-48,"y":14},{"x":34,"y":58},{"x":-15,"y":24},{"x":-40,"y":-23},{"x":-17,"y":25},{"x":-5,"y":-37},{"x":-23,"y":20},{"x":16,"y":44},{"x":64,"y":22},{"x":22,"y":-21},{"x":-13,"y":42},{"x":-28,"y":-12},{"x":26,"y":45},{"x":-30,"y":-9},{"x":22,"y":23},{"x":-24,"y":6},{"x":-42,"y":-36},{"x":-54,"y":39},{"x":73,"y":-3},{"x":4,"y":45},{"x":-77,"y":-3},{"x":61,"y":37},{"x":-20,"y":11},{"x":33,"y":2},{"x":-4,"y":24},{"x":11,"y":-16},{"x":-1,"y":21},{"x":17,"y":-5},{"x":16,"y":42},{"x":-4,"y":-19},{"x":30,"y":13},{"x":-3,"y":20},{"x":-32,"y":-14},{"x":-20,"y":-21},{"x":-40,"y":11},{"x":49,"y":22},{"x":-30,"y":60},{"x":41,"y":-55},{"x":24,"y":8},{"x":-17,"y":73},{"x":26,"y":-40},{"x":26,"y":36},{"x":-26,"y":-52},{"x":29,"y":-23},{"x":35,"y":54},{"x":13,"y":-37},{"x":-26,"y":4},{"x":-29,"y":-64},{"x":57,"y":-19},{"x":-95,"y":-8},{"x":-4,"y":-44},{"x":39,"y":28},{"x":2,"y":-20},{"x":-47,"y":-46},{"x":32,"y":-4},{"x":0,"y":28},{"x":15,"y":-47},{"x":79,"y":24},{"x":14,"y":-42},{"x":-7,"y":82},{"x":67,"y":-37},{"x":6,"y":26},{"x":-26,"y":-2},{"x":15,"y":44},{"x":-57,"y":100},{"x":33,"y":89},{"x":33,"y":-23},{"x":-39,"y":-55},{"x":17,"y":-44},{"x":31,"y":20},{"x":-16,"y":-45},{"x":28,"y":24},{"x":29,"y":-37},{"x":42,"y":41},{"x":-8,"y":-40},{"x":-59,"y":-30},{"x":31,"y":-12},{"x":-23,"y":-23},{"x":22,"y":8},{"x":-1,"y":-74},{"x":26,"y":34},{"x":14,"y":-15},{"x":-9,"y":-39},{"x":53,"y":45},{"x":-52,"y":63},{"x":64,"y":-9},{"x":-37,"y":67},{"x":37,"y":19},{"x":21,"y":-81},{"x":41,"y":60},{"x":0,"y":-49},{"x":-65,"y":-34},{"x":21,"y":-92},{"x":63,"y":-7},{"x":-61,"y":-105},{"x":40,"y":-4},{"x":-54,"y":-40},{"x":50,"y":29},{"x":45,"y":-51},{"x":18,"y":28},{"x":68,"y":6},{"x":-6,"y":32},{"x":13,"y":-29},{"x":-81,"y":-75},{"x":-37,"y":41},{"x":-10,"y":-49},{"x":-53,"y":10},{"x":-5,"y":-48},{"x":-8,"y":53},{"x":-30,"y":6},{"x":13,"y":38},{"x":-32,"y":-14},{"x":12,"y":29},{"x":-55,"y":43},{"x":-4,"y":-87},{"x":-72,"y":-15},{"x":22,"y":-30},{"x":-39,"y":-20},{"x":35,"y":-113},{"x":28,"y":28},{"x":21,"y":-16},{"x":20,"y":41},{"x":16,"y":-28},{"x":-49,"y":-62},{"x":66,"y":-3},{"x":28,"y":73},{"x":-1,"y":-61},{"x":30,"y":-17},{"x":19,"y":21},{"x":23,"y":-17},{"x":16,"y":43},{"x":-9,"y":-62},{"x":-43,"y":-9},{"x":62,"y":-52},{"x":-28,"y":-28},{"x":1,"y":35},{"x":-27,"y":-13},{"x":-48,"y":30},{"x":18,"y":-47},{"x":-58,"y":8},{"x":20,"y":-44},{"x":-27,"y":12},{"x":-13,"y":-33},{"x":-6,"y":63},{"x":-68,"y":42},{"x":43,"y":-75},{"x":-29,"y":-21},{"x":12,"y":-40},{"x":76,"y":-76},{"x":24,"y":-135},{"x":-34,"y":-61},{"x":-38,"y":15},{"x":-27,"y":-22},{"x":4,"y":-47},{"x":-36,"y":-14},{"x":22,"y":-44},{"x":-84,"y":-88},{"x":97,"y":-39},{"x":-28,"y":23},{"x":18,"y":-11},{"x":5,"y":51},{"x":119,"y":-17},{"x":43,"y":25},{"x":-26,"y":35},{"x":44,"y":31},{"x":11,"y":-60},{"x":52,"y":12},{"x":-15,"y":59},{"x":32,"y":8},{"x":18,"y":-40},{"x":26,"y":37},{"x":-79,"y":57},{"x":36,"y":7},{"x":75,"y":-51},{"x":14,"y":49},{"x":-34,"y":11},{"x":42,"y":1},{"x":-86,"y":40},{"x":48,"y":-4},{"x":11,"y":26},{"x":24,"y":-34},{"x":20,"y":114},{"x":9,"y":-62},{"x":87,"y":36},{"x":3,"y":-32},{"x":-55,"y":-9},{"x":43,"y":-22},{"x":-29,"y":-26},{"x":75,"y":-16},{"x":-38,"y":-3},{"x":6,"y":-26},{"x":-20,"y":23},{"x":-41,"y":-14},{"x":-11,"y":-31},{"x":47,"y":18},{"x":8,"y":-37},{"x":66,"y":28},{"x":-28,"y":-69},{"x":33,"y":-3},{"x":-16,"y":-53},{"x":-44,"y":42},{"x":-24,"y":-31},{"x":-11,"y":25},{"x":-42,"y":-9},{"x":-14,"y":-47},{"x":-94,"y":-46},{"x":36,"y":-19},{"x":54,"y":51},{"x":-1,"y":-37},{"x":29,"y":43},{"x":12,"y":-78},{"x":11,"y":55},{"x":65,"y":46},{"x":1,"y":-46},{"x":-65,"y":-70},{"x":7,"y":-33},{"x":44,"y":5},{"x":17,"y":-84},{"x":-52,"y":-45},{"x":-31,"y":116},{"x":-50,"y":-3},{"x":-24,"y":-48},{"x":-48,"y":63},{"x":38,"y":-111},{"x":-79,"y":13},{"x":-12,"y":-37},{"x":44,"y":-33},{"x":-70,"y":-13},{"x":6,"y":-29},{"x":-46,"y":-24},{"x":10,"y":-39},{"x":-37,"y":-6},{"x":28,"y":22},{"x":-42,"y":7},{"x":20,"y":38},{"x":35,"y":-4},{"x":-25,"y":23},{"x":57,"y":41},{"x":-23,"y":61},{"x":-35,"y":-44},{"x":-12,"y":37},{"x":31,"y":58},{"x":49,"y":-27},{"x":-7,"y":59},{"x":-37,"y":-21},{"x":-6,"y":19},{"x":42,"y":45},{"x":-101,"y":-97},{"x":-60,"y":-2},{"x":1,"y":-59},{"x":-44,"y":-31},{"x":-21,"y":16},{"x":-6,"y":-38},{"x":-26,"y":3},{"x":32,"y":40},{"x":-39,"y":36},{"x":-35,"y":-187},{"x":-85,"y":-3},{"x":-30,"y":-138},{"x":-139,"y":-103},{"x":-11,"y":-150},{"x":113,"y":-58},{"x":57,"y":9},{"x":-82,"y":72},{"x":48,"y":12},{"x":64,"y":-94},{"x":-26,"y":-56},{"x":69,"y":26},{"x":28,"y":51},{"x":-64,"y":-7},{"x":70,"y":68},{"x":-70,"y":28},{"x":21,"y":25},{"x":20,"y":-22},{"x":16,"y":45},{"x":19,"y":-53},{"x":36,"y":42},{"x":42,"y":-46},{"x":-63,"y":-15},{"x":4,"y":-39},{"x":27,"y":11},{"x":18,"y":-29},{"x":-38,"y":-27},{"x":-19,"y":21},{"x":18,"y":-44},{"x":-31,"y":-12},{"x":24,"y":-24},{"x":-25,"y":-40},{"x":-16,"y":16},{"x":5,"y":-72},{"x":-32,"y":-15},{"x":-62,"y":24},{"x":72,"y":-83},{"x":-147,"y":72},{"x":-80,"y":-35},{"x":4,"y":-46},{"x":-43,"y":-3},{"x":-14,"y":26},{"x":-34,"y":-22},{"x":63,"y":-85},{"x":90,"y":42},{"x":60,"y":-5},{"x":2,"y":-23},{"x":57,"y":15},{"x":-30,"y":-41},{"x":-66,"y":-8},{"x":-1,"y":-36},{"x":-79,"y":-27},{"x":38,"y":-10},{"x":58,"y":50},{"x":30,"y":-9},{"x":-22,"y":-27},{"x":30,"y":-38},{"x":-65,"y":20},{"x":-5,"y":-18},{"x":43,"y":-88},{"x":23,"y":30},{"x":44,"y":-10},{"x":8,"y":-63},{"x":-34,"y":-13},{"x":15,"y":-25},{"x":-31,"y":46},{"x":-80,"y":-14},{"x":-24,"y":35},{"x":-100,"y":-10},{"x":-111,"y":85},{"x":-23,"y":-18},{"x":26,"y":-1},{"x":14,"y":-53},{"x":58,"y":-2},{"x":59,"y":-91},{"x":43,"y":21},{"x":-29,"y":-30},{"x":23,"y":-32},{"x":-42,"y":15},{"x":0,"y":-38},{"x":-38,"y":25},{"x":19,"y":53},{"x":-87,"y":39},{"x":-8,"y":-103},{"x":36,"y":-27},{"x":-62,"y":-28},{"x":18,"y":33},{"x":-67,"y":3},{"x":41,"y":37},{"x":-13,"y":97},{"x":-41,"y":5},{"x":2,"y":24},{"x":-37,"y":-15},{"x":19,"y":-69},{"x":-53,"y":-11},{"x":-55,"y":-132},{"x":74,"y":17},{"x":-1,"y":-65},{"x":46,"y":-35},{"x":-12,"y":-49},{"x":66,"y":-32},{"x":61,"y":-2},{"x":41,"y":51},{"x":-3,"y":57},{"x":25,"y":-56},{"x":38,"y":-3},{"x":14,"y":29},{"x":4,"y":-29},{"x":-107,"y":-76},{"x":36,"y":-57},{"x":-21,"y":-72},{"x":-28,"y":23},{"x":16,"y":39},{"x":-35,"y":-11},{"x":30,"y":50},{"x":-27,"y":20},{"x":-138,"y":-24},{"x":-35,"y":62},{"x":-47,"y":-59},{"x":1,"y":-180},{"x":-55,"y":-5},{"x":8,"y":-58},{"x":-34,"y":-26},{"x":23,"y":-15},{"x":-54,"y":-27},{"x":-48,"y":-113},{"x":64,"y":-14},{"x":27,"y":-46},{"x":45,"y":51},{"x":-32,"y":37},{"x":49,"y":-15},{"x":-30,"y":-53},{"x":33,"y":-20},{"x":-31,"y":-55},{"x":-65,"y":28},{"x":-40,"y":-67},{"x":-48,"y":-13},{"x":-101,"y":-101},{"x":93,"y":-47},{"x":-42,"y":-67},{"x":70,"y":16},{"x":24,"y":-22},{"x":31,"y":89},{"x":5,"y":-50},{"x":36,"y":-7},{"x":-71,"y":-109},{"x":-30,"y":7},{"x":-34,"y":-23},{"x":16,"y":-67},{"x":-32,"y":-50},{"x":-25,"y":13},{"x":33,"y":45},{"x":-36,"y":7},{"x":35,"y":7},{"x":3,"y":52},{"x":26,"y":27},{"x":-10,"y":-5},{"x":-6,"y":-16},{"x":-11,"y":-8},{"x":-50,"y":5},{"x":-33,"y":-46},{"x":-56,"y":30},{"x":-20,"y":-39},{"x":55,"y":-76},{"x":-58,"y":-17},{"x":0,"y":-121},{"x":-85,"y":-64},{"x":-34,"y":30},{"x":-26,"y":-75},{"x":-75,"y":-8},{"x":60,"y":-46},{"x":-24,"y":-41},{"x":-33,"y":24},{"x":-41,"y":-12},{"x":-30,"y":56},{"x":-75,"y":-68},{"x":-51,"y":-5},{"x":0,"y":21},{"x":-61,"y":9},{"x":-15,"y":44},{"x":40,"y":19},{"x":-53,"y":31},{"x":-42,"y":-75},{"x":-44,"y":6},{"x":-4,"y":56},{"x":-29,"y":-14},{"x":-23,"y":49},{"x":8,"y":24},{"x":10,"y":-32},{"x":42,"y":29},{"x":8,"y":69},{"x":-36,"y":66},{"x":-20,"y":-62},{"x":-78,"y":-1},{"x":-41,"y":-42},{"x":-33,"y":18},{"x":-20,"y":-35},{"x":-80,"y":-17},{"x":16,"y":-51},{"x":62,"y":23},{"x":18,"y":-33},{"x":-33,"y":-28},{"x":8,"y":-50},{"x":-81,"y":-3},{"x":-40,"y":-99},{"x":26,"y":45},{"x":126,"y":-63},{"x":44,"y":70},{"x":-32,"y":-112},{"x":-82,"y":10},{"x":-26,"y":-27},{"x":64,"y":-60},{"x":83,"y":-11},{"x":92,"y":145},{"x":20,"y":-18},{"x":19,"y":45},{"x":47,"y":-1},{"x":-1,"y":45},{"x":71,"y":-59},{"x":-164,"y":-121},{"x":-35,"y":-91},{"x":-28,"y":23},{"x":-44,"y":-124},{"x":-107,"y":69},{"x":-32,"y":-10},{"x":-78,"y":-215},{"x":-47,"y":-16},{"x":44,"y":5},{"x":-13,"y":-46},{"x":-39,"y":2},{"x":-21,"y":51},{"x":-63,"y":25},{"x":28,"y":241},{"x":-23,"y":1},{"x":31,"y":17},{"x":-34,"y":2},{"x":-14,"y":66},{"x":-21,"y":-75},{"x":-200,"y":10},{"x":-80,"y":200},{"x":-73,"y":91},{"x":-30,"y":8},{"x":-10,"y":-63},{"x":-71,"y":-87},{"x":-2,"y":-44},{"x":64,"y":-58},{"x":-23,"y":-65},{"x":-15,"y":69},{"x":-77,"y":46},{"x":-3,"y":126},{"x":-44,"y":-27},{"x":13,"y":-20},{"x":-77,"y":-9},{"x":42,"y":-69},{"x":-37,"y":32},{"x":-52,"y":-6},{"x":-5,"y":100},{"x":-53,"y":-27},{"x":-93,"y":20},{"x":-12,"y":-55},{"x":-39,"y":-17},{"x":11,"y":-54},{"x":-38,"y":-20},{"x":79,"y":-35},{"x":-32,"y":-88},{"x":117,"y":-12},{"x":-10,"y":128},{"x":20,"y":-26},{"x":24,"y":18},{"x":34,"y":-194},{"x":82,"y":-81},{"x":23,"y":15},{"x":-2,"y":-59},{"x":-155,"y":37},{"x":-113,"y":-98},{"x":-3,"y":-88},{"x":-75,"y":86},{"x":108,"y":148},{"x":-87,"y":-40},{"x":14,"y":65},{"x":-86,"y":2},{"x":-27,"y":36},{"x":-41,"y":-16},{"x":-42,"y":32},{"x":13,"y":-112},{"x":-60,"y":20},{"x":-34,"y":-41},{"x":-21,"y":32},{"x":0,"y":-39},{"x":-42,"y":-6},{"x":6,"y":-38},{"x":39,"y":-4},{"x":28,"y":43},{"x":58,"y":-96},{"x":-28,"y":-3},{"x":-27,"y":-76},{"x":6,"y":-68},{"x":-55,"y":57},{"x":14,"y":64},{"x":-94,"y":-26},{"x":-50,"y":39},{"x":-19,"y":-108},{"x":-51,"y":-44},{"x":5,"y":-78},{"x":107,"y":-27},{"x":14,"y":47},{"x":50,"y":-172},{"x":-49,"y":-23},{"x":-58,"y":59},{"x":-12,"y":-30},{"x":-59,"y":7},{"x":-38,"y":-104},{"x":-80,"y":94},{"x":-27,"y":-11},{"x":16,"y":-119},{"x":-70,"y":36},{"x":-62,"y":-64},{"x":112,"y":-40},{"x":23,"y":-50},{"x":-45,"y":-29},{"x":-41,"y":11},{"x":3,"y":-72},{"x":-79,"y":-76},{"x":-233,"y":-164},{"x":-494,"y":-241},{"x":-461,"y":-166},{"x":-171,"y":-32},{"x":-10,"y":19},{"x":-34,"y":-70},{"x":-20,"y":33},{"x":30,"y":36},{"x":-116,"y":-86}],"type":"coastline"},{"arc":[{"x":105750,"y":105317},{"x":91,"y":-153},{"x":-57,"y":-12},{"x":-13,"y":-63},{"x":-72,"y":-35},{"x":-115,"y":6},{"x":-175,"y":122},{"x":-104,"y":-94},{"x":-50,"y":-114},{"x":14,"y":-43},{"x":-51,"y":-36},{"x":47,"y":-109},{"x":70,"y":-56},{"x":-62,"y":-66},{"x":16,"y":-48},{"x":72,"y":19},{"x":109,"y":-140},{"x":-50,"y":-171},{"x":64,"y":-179},{"x":-57,"y":-41},{"x":28,"y":-43},{"x":-49,"y":-9},{"x":83,"y":-106},{"x":-14,"y":-35},{"x":-61,"y":27},{"x":-79,"y":-41},{"x":44,"y":-82},{"x":-32,"y":-17},{"x":43,"y":-34},{"x":-12,"y":-45},{"x":129,"y":2},{"x":77,"y":-60},{"x":141,"y":-6},{"x":51,"y":-32},{"x":49,"y":-110},{"x":94,"y":-95},{"x":16,"y":-191},{"x":56,"y":-60},{"x":37,"y":-168},{"x":335,"y":-210},{"x":67,"y":-12},{"x":19,"y":-37},{"x":-205,"y":-407},{"x":-76,"y":-83},{"x":315,"y":-176},{"x":75,"y":-79},{"x":51,"y":-212},{"x":-33,"y":-61},{"x":-66,"y":-27},{"x":-2,"y":-37},{"x":-61,"y":-26},{"x":-22,"y":-73},{"x":22,"y":-69},{"x":51,"y":-15},{"x":-17,"y":-55},{"x":62,"y":-43},{"x":47,"y":7},{"x":75,"y":-140},{"x":-33,"y":-169},{"x":27,"y":-40}],"type":"area"},{"arc":[{"x":106659,"y":101035},{"x":58,"y":-29},{"x":-89,"y":-62},{"x":-39,"y":-71},{"x":11,"y":-82},{"x":133,"y":-74},{"x":60,"y":10},{"x":115,"y":-88},{"x":69,"y":-7},{"x":67,"y":-141},{"x":162,"y":-81},{"x":38,"y":-131},{"x":108,"y":37}],"type":"admin"},{"arc":[{"x":101995,"y":102297},{"x":59,"y":-50},{"x":-18,"y":-36},{"x":36,"y":-9},{"x":108,"y":51},{"x":46,"y":93},{"x":55,"y":-5},{"x":68,"y":-91},{"x":-35,"y":-32},{"x":12,"y":-52},{"x":60,"y":-25},{"x":110,"y":13},{"x":-62,"y":-267},{"x":78,"y":18},{"x":42,"y":-73},{"x":40,"y":-11},{"x":-29,"y":-117},{"x":116,"y":-43},{"x":105,"y":22},{"x":61,"y":-32},{"x":117,"y":11},{"x":-95,"y":-139},{"x":-1,"y":-83},{"x":-91,"y":-41},{"x":-26,"y":-74},{"x":41,"y":-101},{"x":41,"y":28},{"x":32,"y":-13},{"x":84,"y":-158},{"x":107,"y":-29},{"x":63,"y":64},{"x":90,"y":-20},{"x":143,"y":88},{"x":82,"y":-30},{"x":37,"y":21},{"x":75,"y":-35},{"x":25,"y":-81},{"x":125,"y":-89},{"x":111,"y":33},{"x":22,"y":-59},{"x":66,"y":1},{"x":-5,"y":-175},{"x":91,"y":43},{"x":4,"y":32},{"x":78,"y":-30},{"x":-7,"y":-65},{"x":61,"y":-32},{"x":-27,"y":119},{"x":93,"y":-7},{"x":0,"y":-56},{"x":79,"y":2},{"x":140,"y":-101},{"x":98,"y":157},{"x":151,"y":-23},{"x":137,"y":62},{"x":52,"y":-37},{"x":278,"y":116},{"x":130,"y":18},{"x":75,"y":-27},{"x":140,"y":63},{"x":80,"y":-90},{"x":157,"y":-40},{"x":75,"y":13},{"x":290,"y":-98},{"x":54,"y":68},{"x":143,"y":-27},{"x":26,"y":42},{"x":126,"y":48},{"x":46,"y":-11},{"x":89,"y":80},{"x":110,"y":46}],"type":"admin"},{"arc":[{"x":108478,"y":96920},{"x":-36,"y":-1},{"x":-4,"y":-37},{"x":40,"y":38}],"type":"coastline"},{"arc":[{"x":108695,"y":96983},{"x":-12,"y":42},{"x":-25,"y":-74},{"x":45,"y":7},{"x":-8,"y":25}],"type":"coastline"},{"arc":[{"x":109458,"y":97374},{"x":-14,"y":23},{"x":-28,"y":-12},{"x":42,"y":-11}],"type":"coastline"},{"arc":[{"x":109717,"y":98050},{"x":-116,"y":10},{"x":20,"y":-45},{"x":96,"y":35}],"type":"coastline"},{"arc":[{"x":110498,"y":97630},{"x":-57,"y":20},{"x":-48,"y":-33},{"x":37,"y":-17},{"x":68,"y":30}],"type":"coastline"},{"arc":[{"x":107556,"y":98485},{"x":-71,"y":-17},{"x":-3,"y":-83},{"x":-47,"y":-42},{"x":-44,"y":-126},{"x":-100,"y":44},{"x":-19,"y":-48},{"x":-51,"y":-13},{"x":33,"y":-92},{"x":-10,"y":-222},{"x":37,"y":-20},{"x":-66,"y":-110},{"x":7,"y":-100},{"x":-72,"y":-91},{"x":-58,"y":-20},{"x":-21,"y":-86},{"x":-109,"y":-146},{"x":-119,"y":-44},{"x":-98,"y":-91},{"x":-24,"y":-123},{"x":-72,"y":-51},{"x":-25,"y":-61},{"x":-78,"y":-39},{"x":26,"y":-107},{"x":-182,"y":44},{"x":-101,"y":-166},{"x":-84,"y":-29},{"x":-5,"y":-82},{"x":-133,"y":83},{"x":-15,"y":-49},{"x":-81,"y":54},{"x":-115,"y":-48},{"x":0,"y":-82},{"x":-246,"y":46}],"type":"area"},{"arc":[{"x":105610,"y":96568},{"x":-10,"y":-46},{"x":56,"y":-74},{"x":2,"y":-326},{"x":-115,"y":-33},{"x":-45,"y":-170},{"x":101,"y":-89},{"x":18,"y":-62},{"x":95,"y":25},{"x":67,"y":-27},{"x":32,"y":97},{"x":89,"y":-16},{"x":36,"y":-64},{"x":87,"y":-51},{"x":-13,"y":-56},{"x":54,"y":-33},{"x":-2,"y":-61},{"x":61,"y":-65},{"x":45,"y":56},{"x":86,"y":38},{"x":166,"y":-38},{"x":31,"y":-35},{"x":40,"y":-154},{"x":-43,"y":-71},{"x":53,"y":-156},{"x":-71,"y":-77},{"x":9,"y":-43},{"x":-127,"y":-82},{"x":-86,"y":-117},{"x":208,"y":-95},{"x":51,"y":8},{"x":-25,"y":-56},{"x":20,"y":-57},{"x":-32,"y":-38},{"x":84,"y":-208},{"x":109,"y":7},{"x":59,"y":-93},{"x":35,"y":-6},{"x":-18,"y":-49},{"x":84,"y":-256},{"x":90,"y":-112},{"x":2,"y":-64}],"type":"admin"},{"arc":[{"x":106893,"y":93819},{"x":71,"y":-125},{"x":146,"y":51},{"x":59,"y":-20},{"x":38,"y":-66},{"x":89,"y":14},{"x":37,"y":36},{"x":102,"y":-35},{"x":143,"y":64},{"x":137,"y":-29},{"x":113,"y":70},{"x":68,"y":107},{"x":-41,"y":105},{"x":-95,"y":89},{"x":-26,"y":114},{"x":-101,"y":43},{"x":81,"y":220},{"x":152,"y":85},{"x":-23,"y":149},{"x":115,"y":8},{"x":73,"y":-25},{"x":143,"y":38},{"x":293,"y":-85},{"x":30,"y":-46},{"x":48,"y":40},{"x":100,"y":20},{"x":47,"y":-83},{"x":108,"y":102},{"x":91,"y":-12},{"x":118,"y":-58},{"x":76,"y":6},{"x":16,"y":-54},{"x":-63,"y":-172},{"x":6,"y":-117},{"x":-97,"y":-106},{"x":1,"y":-61},{"x":-106,"y":-87},{"x":30,"y":-50},{"x":-34,"y":-213},{"x":87,"y":-30},{"x":57,"y":-62},{"x":99,"y":32},{"x":68,"y":-37},{"x":39,"y":-90},{"x":63,"y":-17},{"x":76,"y":-154},{"x":94,"y":-42},{"x":21,"y":-62},{"x":34,"y":9},{"x":69,"y":-50},{"x":20,"y":-69},{"x":94,"y":91},{"x":137,"y":8},{"x":71,"y":58},{"x":147,"y":-20},{"x":18,"y":-43},{"x":108,"y":15},{"x":18,"y":-28},{"x":63,"y":27}],"type":"admin"},{"arc":[{"x":110221,"y":93272},{"x":8,"y":116},{"x":-25,"y":-18},{"x":2,"y":44},{"x":-100,"y":-10},{"x":25,"y":61},{"x":-32,"y":23},{"x":38,"y":42},{"x":-39,"y":68},{"x":29,"y":173},{"x":134,"y":250},{"x":62,"y":30},{"x":27,"y":-28},{"x":9,"y":30},{"x":19,"y":-16},{"x":9,"y":53},{"x":69,"y":13},{"x":-10,"y":40},{"x":103,"y":52},{"x":-28,"y":59},{"x":42,"y":174},{"x":-39,"y":-4},{"x":35,"y":20},{"x":-41,"y":63},{"x":22,"y":34},{"x":86,"y":21},{"x":-12,"y":77},{"x":78,"y":150},{"x":98,"y":50},{"x":3,"y":58},{"x":70,"y":77},{"x":53,"y":20},{"x":80,"y":-17},{"x":-17,"y":56},{"x":46,"y":12},{"x":-11,"y":67},{"x":49,"y":58},{"x":-31,"y":29},{"x":19,"y":80},{"x":113,"y":111},{"x":-74,"y":60},{"x":22,"y":65},{"x":31,"y":1},{"x":-13,"y":61},{"x":52,"y":26},{"x":-23,"y":35},{"x":50,"y":46},{"x":-17,"y":56},{"x":55,"y":23},{"x":-29,"y":27},{"x":42,"y":32},{"x":-36,"y":102},{"x":75,"y":118},{"x":42,"y":-22},{"x":28,"y":33},{"x":-208,"y":182},{"x":16,"y":66},{"x":-72,"y":-33},{"x":-65,"y":47},{"x":-17,"y":138},{"x":-112,"y":-9},{"x":-13,"y":89},{"x":-49,"y":32},{"x":-181,"y":-23},{"x":9,"y":46},{"x":-67,"y":115},{"x":-54,"y":16},{"x":-4,"y":-29},{"x":-130,"y":-50},{"x":-163,"y":35},{"x":-24,"y":-64},{"x":46,"y":-55},{"x":62,"y":57},{"x":45,"y":-60},{"x":-74,"y":-59},{"x":38,"y":-35},{"x":-43,"y":-3},{"x":-19,"y":-70},{"x":-45,"y":-20},{"x":7,"y":20},{"x":-152,"y":-116},{"x":-238,"y":-51},{"x":-39,"y":-73},{"x":-146,"y":-99},{"x":-28,"y":-67},{"x":-150,"y":-69},{"x":-106,"y":-97},{"x":-124,"y":-49},{"x":-100,"y":7},{"x":-69,"y":40},{"x":-30,"y":56},{"x":58,"y":73},{"x":80,"y":10},{"x":36,"y":-50},{"x":40,"y":2},{"x":92,"y":176},{"x":73,"y":27},{"x":82,"y":-17},{"x":-38,"y":76},{"x":34,"y":35},{"x":23,"y":-11},{"x":61,"y":79},{"x":52,"y":12},{"x":-9,"y":29},{"x":-97,"y":1},{"x":-13,"y":-69},{"x":-66,"y":4},{"x":-23,"y":43},{"x":-64,"y":-22},{"x":-30,"y":34},{"x":-2,"y":103},{"x":-69,"y":52},{"x":-62,"y":-103},{"x":20,"y":-58},{"x":-31,"y":-3},{"x":27,"y":-35},{"x":51,"y":14},{"x":-5,"y":-68},{"x":-95,"y":-46},{"x":-115,"y":41},{"x":-43,"y":213},{"x":-86,"y":26},{"x":-81,"y":135},{"x":-34,"y":164},{"x":98,"y":50},{"x":30,"y":50},{"x":-74,"y":27},{"x":-19,"y":39},{"x":-108,"y":23},{"x":-90,"y":-21},{"x":-47,"y":-61},{"x":-89,"y":4},{"x":-12,"y":-63},{"x":-33,"y":0},{"x":20,"y":25},{"x":-23,"y":15},{"x":-41,"y":-52},{"x":0,"y":39},{"x":-120,"y":-32},{"x":-7,"y":-41},{"x":-66,"y":45},{"x":12,"y":40},{"x":53,"y":-5},{"x":-13,"y":37},{"x":68,"y":-3},{"x":47,"y":43},{"x":62,"y":129},{"x":37,"y":-14},{"x":24,"y":26},{"x":-17,"y":-64},{"x":62,"y":68},{"x":76,"y":-16},{"x":-65,"y":102},{"x":27,"y":148},{"x":-54,"y":25},{"x":-32,"y":-78},{"x":-43,"y":-7},{"x":13,"y":89},{"x":-29,"y":22},{"x":33,"y":-5},{"x":40,"y":51},{"x":-50,"y":17},{"x":13,"y":32},{"x":55,"y":-26},{"x":149,"y":47},{"x":-7,"y":-54},{"x":76,"y":-26},{"x":66,"y":53},{"x":21,"y":-18},{"x":-5,"y":-49},{"x":-132,"y":-69},{"x":36,"y":-59},{"x":-37,"y":-132},{"x":17,"y":-94},{"x":23,"y":14},{"x":8,"y":-25},{"x":23,"y":41},{"x":56,"y":-27},{"x":33,"y":46},{"x":35,"y":-87},{"x":-16,"y":48},{"x":38,"y":-56},{"x":68,"y":-11},{"x":146,"y":19},{"x":39,"y":30},{"x":-69,"y":11},{"x":-16,"y":34},{"x":85,"y":153},{"x":97,"y":90},{"x":-52,"y":84},{"x":40,"y":71},{"x":56,"y":-5},{"x":-52,"y":29},{"x":86,"y":85},{"x":-36,"y":107},{"x":76,"y":-13},{"x":26,"y":29},{"x":30,"y":-21},{"x":16,"y":73},{"x":83,"y":-11},{"x":0,"y":82},{"x":25,"y":39},{"x":56,"y":10},{"x":-9,"y":29},{"x":51,"y":62},{"x":-106,"y":5},{"x":29,"y":-42},{"x":-35,"y":-5},{"x":-12,"y":-42},{"x":-56,"y":34},{"x":-60,"y":-64},{"x":-93,"y":25},{"x":24,"y":109},{"x":-48,"y":27},{"x":-40,"y":-21},{"x":14,"y":57},{"x":-61,"y":1},{"x":9,"y":104}],"type":"coastline"},{"arc":[{"x":101492,"y":102557},{"x":-24,"y":-98},{"x":-151,"y":-28},{"x":-66,"y":-82},{"x":-65,"y":-1},{"x":14,"y":-117},{"x":83,"y":-35},{"x":-42,"y":-135},{"x":29,"y":-46},{"x":181,"y":-19},{"x":65,"y":-60},{"x":20,"y":-79},{"x":-28,"y":-57},{"x":76,"y":-31},{"x":-102,"y":-92},{"x":27,"y":-136},{"x":42,"y":-19},{"x":113,"y":46},{"x":9,"y":-36},{"x":-44,"y":-27},{"x":6,"y":-38},{"x":-197,"y":-102},{"x":-19,"y":-44},{"x":-214,"y":-57},{"x":50,"y":-39},{"x":3,"y":-70},{"x":-72,"y":-97},{"x":-3,"y":-115},{"x":70,"y":-135},{"x":-16,"y":-92},{"x":26,"y":-76},{"x":30,"y":14},{"x":52,"y":-101},{"x":-24,"y":-22},{"x":41,"y":-39},{"x":-17,"y":-106},{"x":42,"y":-174},{"x":81,"y":11},{"x":99,"y":-76},{"x":33,"y":-84},{"x":51,"y":1},{"x":-4,"y":-26},{"x":219,"y":-36}],"type":"admin"},{"arc":[{"x":101866,"y":100002},{"x":99,"y":95},{"x":145,"y":41},{"x":178,"y":-106},{"x":8,"y":-65},{"x":247,"y":-128},{"x":23,"y":-43},{"x":-33,"y":-58},{"x":78,"y":-33},{"x":42,"y":33},{"x":5,"y":-27},{"x":71,"y":-2},{"x":35,"y":-70},{"x":48,"y":10},{"x":35,"y":-28},{"x":62,"y":22},{"x":67,"y":-59},{"x":41,"y":5},{"x":98,"y":-213},{"x":69,"y":-2},{"x":4,"y":41},{"x":75,"y":-32},{"x":91,"y":-130},{"x":1,"y":-71},{"x":-69,"y":-67},{"x":7,"y":-124},{"x":73,"y":32},{"x":54,"y":76},{"x":156,"y":44},{"x":124,"y":-43},{"x":-14,"y":-144},{"x":-35,"y":-19},{"x":102,"y":-77},{"x":-53,"y":-77},{"x":-69,"y":-11},{"x":-32,"y":55},{"x":-45,"y":2},{"x":-21,"y":-121},{"x":-180,"y":-45},{"x":-15,"y":14},{"x":88,"y":44},{"x":-85,"y":-15},{"x":54,"y":70},{"x":-19,"y":72},{"x":-139,"y":2},{"x":-57,"y":-69},{"x":-8,"y":-149},{"x":28,"y":-30},{"x":-31,"y":-64},{"x":49,"y":-41},{"x":47,"y":16},{"x":77,"y":-163},{"x":101,"y":-21},{"x":22,"y":-81},{"x":-53,"y":-77},{"x":84,"y":-103},{"x":71,"y":48},{"x":76,"y":-42},{"x":15,"y":40},{"x":-27,"y":-6},{"x":39,"y":36},{"x":-7,"y":-21},{"x":138,"y":-40},{"x":68,"y":78},{"x":177,"y":-414},{"x":-52,"y":-149},{"x":89,"y":-88},{"x":-46,"y":-51},{"x":37,"y":-45},{"x":-3,"y":-124},{"x":95,"y":-31},{"x":69,"y":34},{"x":108,"y":-15},{"x":60,"y":-69}],"type":"admin"},{"arc":[{"x":104403,"y":97209},{"x":91,"y":-20},{"x":58,"y":68},{"x":48,"y":-6},{"x":96,"y":180},{"x":93,"y":3},{"x":27,"y":33},{"x":67,"y":-55},{"x":12,"y":-72},{"x":106,"y":9},{"x":24,"y":32},{"x":87,"y":-57},{"x":83,"y":30},{"x":2,"y":-135},{"x":73,"y":-139},{"x":-7,"y":-96},{"x":77,"y":-40},{"x":14,"y":27},{"x":44,"y":-3},{"x":-71,"y":-412},{"x":80,"y":-73},{"x":-2,"y":39},{"x":92,"y":67},{"x":113,"y":-21}],"type":"admin"},{"arc":[{"x":100445,"y":97353},{"x":-72,"y":77},{"x":-11,"y":147},{"x":-83,"y":18},{"x":-1,"y":-152},{"x":74,"y":-1},{"x":93,"y":-89}],"type":"coastline"},{"arc":[{"x":100367,"y":97038},{"x":-26,"y":-29},{"x":45,"y":-17},{"x":98,"y":76},{"x":-46,"y":42},{"x":-71,"y":-72}],"type":"coastline"},{"arc":[{"x":100601,"y":97566},{"x":-33,"y":175},{"x":-122,"y":20},{"x":-61,"y":-154},{"x":37,"y":-13},{"x":0,"y":-79},{"x":34,"y":-23},{"x":51,"y":57},{"x":23,"y":-20},{"x":-81,"y":-123},{"x":96,"y":9},{"x":56,"y":151}],"type":"coastline"},{"arc":[{"x":100755,"y":97274},{"x":-68,"y":195},{"x":-117,"y":-92},{"x":17,"y":-108},{"x":84,"y":-47},{"x":84,"y":52}],"type":"coastline"},{"arc":[{"x":100870,"y":97455},{"x":-40,"y":52},{"x":-93,"y":3},{"x":35,"y":-179},{"x":58,"y":11},{"x":40,"y":113}],"type":"coastline"},{"arc":[{"x":101866,"y":100002},{"x":-34,"y":-62},{"x":53,"y":-40},{"x":4,"y":-46},{"x":-76,"y":-24},{"x":-8,"y":27},{"x":-168,"y":1},{"x":-51,"y":-28},{"x":11,"y":-68},{"x":-57,"y":-9},{"x":-189,"y":57},{"x":-210,"y":-243},{"x":-109,"y":1},{"x":-117,"y":44},{"x":-252,"y":-113},{"x":-346,"y":-41},{"x":-66,"y":-70},{"x":-43,"y":24},{"x":-15,"y":176},{"x":-119,"y":11},{"x":-42,"y":37},{"x":-46,"y":-80},{"x":-88,"y":11},{"x":-79,"y":-126},{"x":-146,"y":-29}],"type":"admin"},{"arc":[{"x":99673,"y":99412},{"x":37,"y":-133},{"x":63,"y":3},{"x":-55,"y":-53},{"x":-1,"y":-57},{"x":170,"y":-4},{"x":76,"y":45},{"x":70,"y":-104},{"x":29,"y":1},{"x":8,"y":-48},{"x":-51,"y":-25},{"x":1,"y":-31},{"x":29,"y":-19},{"x":-5,"y":-89},{"x":38,"y":-13},{"x":38,"y":-108},{"x":-67,"y":-20},{"x":81,"y":-17},{"x":-3,"y":-184},{"x":40,"y":-1},{"x":0,"y":-40},{"x":-11,"y":-54},{"x":-70,"y":-7},{"x":52,"y":-33},{"x":-97,"y":-189},{"x":81,"y":-60},{"x":128,"y":-445}],"type":"area"},{"arc":[{"x":100254,"y":97727},{"x":25,"y":0},{"x":0,"y":-111},{"x":78,"y":0},{"x":-57,"y":25},{"x":0,"y":50},{"x":91,"y":-15},{"x":34,"y":80},{"x":-109,"y":46},{"x":152,"y":8},{"x":-14,"y":42},{"x":114,"y":-51},{"x":39,"y":29},{"x":26,"y":-120},{"x":13,"y":41},{"x":13,"y":-24},{"x":-9,"y":-89},{"x":48,"y":14},{"x":24,"y":-36},{"x":-39,"y":-33},{"x":65,"y":10},{"x":-81,"y":-48},{"x":93,"y":17},{"x":60,"y":77},{"x":-39,"y":-71},{"x":91,"y":-4},{"x":-10,"y":-70},{"x":25,"y":-5},{"x":45,"y":118},{"x":166,"y":-117}],"type":"coastline"},{"arc":[{"x":101098,"y":97490},{"x":202,"y":304},{"x":145,"y":12},{"x":-5,"y":99},{"x":170,"y":-3},{"x":6,"y":-26},{"x":83,"y":-3},{"x":-21,"y":-34},{"x":77,"y":-12},{"x":21,"y":-44},{"x":215,"y":-15},{"x":114,"y":-111},{"x":-10,"y":-38},{"x":148,"y":-61},{"x":103,"y":58},{"x":81,"y":7},{"x":144,"y":-58},{"x":39,"y":113},{"x":47,"y":-9},{"x":341,"y":122},{"x":16,"y":-17},{"x":-62,"y":-100},{"x":34,"y":13},{"x":95,"y":-41},{"x":28,"y":-67},{"x":110,"y":162},{"x":-21,"y":189},{"x":75,"y":39},{"x":34,"y":-125},{"x":91,"y":-85},{"x":-52,"y":-181},{"x":75,"y":-8},{"x":-18,"y":-56},{"x":29,"y":14},{"x":24,"y":-23},{"x":-27,"y":12},{"x":17,"y":-115},{"x":-29,"y":-28},{"x":138,"y":-76},{"x":-14,"y":-174},{"x":77,"y":-48},{"x":20,"y":-62},{"x":136,"y":26},{"x":33,"y":77},{"x":75,"y":-54},{"x":327,"y":16},{"x":10,"y":-116},{"x":65,"y":-26},{"x":24,"y":-49},{"x":79,"y":61},{"x":22,"y":84},{"x":50,"y":10},{"x":-56,"y":166}],"type":"admin"},{"arc":[{"x":98602,"y":96131},{"x":-24,"y":-2},{"x":139,"y":175},{"x":-10,"y":18},{"x":10,"y":-20},{"x":-20,"y":-27},{"x":6,"y":7},{"x":-6,"y":-6},{"x":-2,"y":17},{"x":6,"y":0},{"x":-10,"y":43},{"x":-55,"y":43},{"x":-230,"y":-292},{"x":83,"y":-67},{"x":72,"y":88},{"x":10,"y":-8},{"x":-21,"y":-21},{"x":46,"y":-40},{"x":-98,"y":-121},{"x":-29,"y":23},{"x":76,"y":-62},{"x":257,"y":316},{"x":-37,"y":31},{"x":-1,"y":68},{"x":-162,"y":-163}],"type":"coastline"},{"arc":[{"x":98936,"y":96957},{"x":-101,"y":64},{"x":-132,"y":-115},{"x":35,"y":-43},{"x":176,"y":108},{"x":22,"y":-15},{"x":60,"y":1},{"x":-60,"y":0}],"type":"coastline"},{"arc":[{"x":99120,"y":97080},{"x":-57,"y":9},{"x":-24,"y":-23},{"x":-61,"y":52},{"x":26,"y":12},{"x":39,"y":-10},{"x":-2,"y":9},{"x":39,"y":-10},{"x":21,"y":-20},{"x":-3,"y":7},{"x":-32,"y":19},{"x":-64,"y":6},{"x":-84,"y":-50},{"x":-17,"y":-30},{"x":37,"y":-26},{"x":-6,"y":30},{"x":98,"y":11},{"x":-76,"y":-58},{"x":109,"y":72},{"x":57,"y":0}],"type":"coastline"},{"arc":[{"x":99531,"y":97409},{"x":-61,"y":46},{"x":-59,"y":-18},{"x":-19,"y":-42},{"x":49,"y":2},{"x":-8,"y":-37},{"x":32,"y":16},{"x":-2,"y":-44},{"x":68,"y":77}],"type":"coastline"},{"arc":[{"x":99755,"y":97728},{"x":-12,"y":26},{"x":-58,"y":-3},{"x":-221,"y":-148},{"x":50,"y":-134},{"x":46,"y":22},{"x":14,"y":-64},{"x":176,"y":79},{"x":-48,"y":51},{"x":-76,"y":-35},{"x":-38,"y":70},{"x":150,"y":81},{"x":17,"y":55}],"type":"coastline"},{"arc":[{"x":100177,"y":97399},{"x":-42,"y":8},{"x":58,"y":-12},{"x":26,"y":-44},{"x":-26,"y":45},{"x":-16,"y":3}],"type":"coastline"},{"arc":[{"x":99673,"y":99412},{"x":-27,"y":-22},{"x":-25,"y":24},{"x":23,"y":48},{"x":-133,"y":23},{"x":7,"y":58},{"x":-52,"y":56},{"x":-146,"y":3},{"x":-66,"y":-35},{"x":-31,"y":42},{"x":-100,"y":17},{"x":-34,"y":33},{"x":-49,"y":-28},{"x":-182,"y":6},{"x":-91,"y":39},{"x":-178,"y":-62},{"x":-90,"y":-115},{"x":-91,"y":40},{"x":2,"y":62},{"x":-44,"y":22},{"x":-35,"y":-32},{"x":-50,"y":1},{"x":-28,"y":-96},{"x":-134,"y":-100}],"type":"admin"},{"arc":[{"x":98119,"y":99396},{"x":-16,"y":-115},{"x":28,"y":-129},{"x":-74,"y":-48},{"x":35,"y":-126},{"x":-53,"y":-35},{"x":12,"y":-125},{"x":-64,"y":-107},{"x":-93,"y":-69},{"x":-19,"y":-117},{"x":-199,"y":-249},{"x":15,"y":-43},{"x":29,"y":20},{"x":86,"y":-24},{"x":48,"y":-93},{"x":72,"y":-35},{"x":-91,"y":-62},{"x":-56,"y":-92},{"x":12,"y":-237},{"x":-82,"y":-82},{"x":17,"y":-125},{"x":-75,"y":-26},{"x":-33,"y":-67},{"x":25,"y":-46},{"x":-37,"y":-34},{"x":-2,"y":-189},{"x":39,"y":-28},{"x":-24,"y":-102},{"x":45,"y":-60},{"x":-56,"y":7},{"x":-53,"y":-88},{"x":-67,"y":20},{"x":23,"y":-49},{"x":-52,"y":-158},{"x":-86,"y":-11},{"x":-51,"y":-72},{"x":177,"y":-82},{"x":-56,"y":-83},{"x":23,"y":-182},{"x":-102,"y":-105},{"x":-27,"y":-82},{"x":70,"y":-133},{"x":-189,"y":-23},{"x":-16,"y":-104},{"x":-74,"y":-58},{"x":11,"y":-137},{"x":-54,"y":-102},{"x":64,"y":8},{"x":27,"y":-63},{"x":-33,"y":-26},{"x":14,"y":-29},{"x":-79,"y":-24},{"x":-10,"y":-42},{"x":47,"y":-44},{"x":-53,"y":-111},{"x":63,"y":-32},{"x":52,"y":10},{"x":17,"y":-56},{"x":103,"y":-37},{"x":114,"y":73},{"x":24,"y":-20},{"x":-31,"y":-48},{"x":39,"y":-35}],"type":"admin"},{"arc":[{"x":97443,"y":95033},{"x":29,"y":-7},{"x":-4,"y":49},{"x":49,"y":30},{"x":34,"y":141},{"x":-33,"y":20},{"x":36,"y":-17},{"x":24,"y":78},{"x":-31,"y":21},{"x":-23,"y":-24},{"x":-1,"y":89},{"x":-26,"y":-10},{"x":128,"y":99},{"x":3,"y":85},{"x":88,"y":128},{"x":-19,"y":25},{"x":18,"y":-23},{"x":-15,"y":-16},{"x":-5,"y":5},{"x":5,"y":-6},{"x":-14,"y":-12},{"x":-9,"y":81},{"x":77,"y":170},{"x":-15,"y":-21},{"x":13,"y":93},{"x":83,"y":88},{"x":153,"y":92},{"x":-28,"y":-14},{"x":2,"y":30},{"x":17,"y":-16},{"x":81,"y":61},{"x":58,"y":82},{"x":-20,"y":-19},{"x":1,"y":54},{"x":169,"y":146},{"x":-28,"y":42},{"x":36,"y":-24},{"x":-24,"y":28},{"x":41,"y":-21},{"x":53,"y":57},{"x":75,"y":12},{"x":7,"y":59},{"x":69,"y":64},{"x":-34,"y":-30},{"x":-23,"y":24},{"x":50,"y":42},{"x":-13,"y":37},{"x":54,"y":-46},{"x":42,"y":37},{"x":-23,"y":39},{"x":-27,"y":-22},{"x":-13,"y":17},{"x":22,"y":21},{"x":30,"y":23},{"x":31,"y":-57},{"x":36,"y":30},{"x":-30,"y":47},{"x":81,"y":24},{"x":5,"y":36},{"x":28,"y":-12},{"x":41,"y":50},{"x":-18,"y":25},{"x":138,"y":36},{"x":-113,"y":16},{"x":101,"y":58},{"x":9,"y":-62},{"x":94,"y":77},{"x":-21,"y":18},{"x":-34,"y":-23},{"x":45,"y":36},{"x":-34,"y":27},{"x":38,"y":16},{"x":-6,"y":-34},{"x":85,"y":-20},{"x":-65,"y":83},{"x":19,"y":9},{"x":58,"y":-41},{"x":49,"y":44},{"x":35,"y":-60},{"x":40,"y":21},{"x":80,"y":-12},{"x":77,"y":60},{"x":58,"y":-89},{"x":151,"y":92},{"x":-147,"y":55},{"x":-55,"y":-33},{"x":15,"y":57},{"x":-46,"y":-22},{"x":-28,"y":30},{"x":65,"y":20},{"x":10,"y":25},{"x":-12,"y":-21},{"x":6,"y":26},{"x":-35,"y":4},{"x":17,"y":27},{"x":30,"y":-25},{"x":44,"y":37},{"x":-78,"y":26},{"x":31,"y":36},{"x":32,"y":-27},{"x":56,"y":30},{"x":-35,"y":65},{"x":114,"y":105},{"x":189,"y":91},{"x":58,"y":8},{"x":24,"y":-64},{"x":9,"y":-203},{"x":-28,"y":-10},{"x":400,"y":-56},{"x":-59,"y":107},{"x":-228,"y":39},{"x":10,"y":67},{"x":179,"y":-25},{"x":-28,"y":59},{"x":-38,"y":5},{"x":3,"y":56},{"x":-151,"y":27},{"x":-21,"y":58},{"x":30,"y":-23},{"x":66,"y":15},{"x":8,"y":32},{"x":-30,"y":10},{"x":29,"y":7},{"x":14,"y":-46},{"x":62,"y":-13},{"x":-9,"y":122},{"x":41,"y":-128},{"x":28,"y":25},{"x":-25,"y":77},{"x":71,"y":-14},{"x":-46,"y":-12},{"x":18,"y":-57},{"x":-31,"y":-110},{"x":45,"y":-95},{"x":110,"y":-15},{"x":-65,"y":170},{"x":35,"y":9},{"x":27,"y":-75},{"x":33,"y":5}],"type":"coastline"},{"arc":[{"x":106893,"y":93819},{"x":-68,"y":5},{"x":-107,"y":-101},{"x":-112,"y":-18},{"x":-43,"y":-58},{"x":-60,"y":-3},{"x":-117,"y":-95},{"x":-148,"y":6},{"x":-38,"y":42},{"x":-54,"y":-19},{"x":-26,"y":-58},{"x":-59,"y":100},{"x":-76,"y":52},{"x":-63,"y":-26},{"x":-36,"y":-70},{"x":-67,"y":-39}],"type":"area"},{"arc":[{"x":105819,"y":93537},{"x":11,"y":-92},{"x":-195,"y":-80},{"x":-123,"y":-275},{"x":-124,"y":1},{"x":-138,"y":-146},{"x":89,"y":-69},{"x":-37,"y":-90},{"x":24,"y":-118},{"x":-162,"y":-126},{"x":103,"y":-59},{"x":86,"y":7},{"x":-83,"y":-96},{"x":42,"y":-156},{"x":59,"y":-45},{"x":120,"y":-47},{"x":55,"y":40},{"x":129,"y":-87},{"x":133,"y":84},{"x":23,"y":-54},{"x":62,"y":-9},{"x":28,"y":-48},{"x":65,"y":-28},{"x":-12,"y":-54},{"x":35,"y":-45},{"x":134,"y":0},{"x":58,"y":-58},{"x":67,"y":53},{"x":67,"y":-21},{"x":-68,"y":-97},{"x":81,"y":-92},{"x":58,"y":-15},{"x":-42,"y":-58},{"x":14,"y":-56},{"x":199,"y":-97},{"x":61,"y":-106},{"x":-26,"y":-63},{"x":-81,"y":-50},{"x":-27,"y":-99},{"x":109,"y":-137},{"x":170,"y":-28},{"x":108,"y":-143},{"x":19,"y":-88},{"x":66,"y":-43},{"x":9,"y":-69},{"x":46,"y":-11},{"x":7,"y":-45},{"x":62,"y":-39},{"x":86,"y":-130}],"type":"area"},{"arc":[{"x":107186,"y":90453},{"x":146,"y":53},{"x":56,"y":-74},{"x":59,"y":-10},{"x":18,"y":-109},{"x":64,"y":-110},{"x":51,"y":-27},{"x":220,"y":71},{"x":69,"y":7},{"x":37,"y":-37},{"x":87,"y":-6},{"x":35,"y":32},{"x":91,"y":-135},{"x":-3,"y":-82},{"x":66,"y":-97},{"x":169,"y":-13},{"x":49,"y":-35},{"x":92,"y":35},{"x":194,"y":-84},{"x":56,"y":27},{"x":59,"y":-25},{"x":59,"y":-117},{"x":256,"y":101},{"x":28,"y":-37},{"x":67,"y":33},{"x":104,"y":-27},{"x":0,"y":-91},{"x":73,"y":-39},{"x":176,"y":25},{"x":86,"y":-118},{"x":32,"y":-2},{"x":67,"y":-167},{"x":58,"y":-12}],"type":"admin"},{"arc":[{"x":109807,"y":89383},{"x":-28,"y":93},{"x":19,"y":43},{"x":38,"y":-7},{"x":22,"y":58},{"x":-41,"y":89},{"x":40,"y":47},{"x":-18,"y":32},{"x":63,"y":35},{"x":-38,"y":106},{"x":27,"y":18},{"x":14,"y":-29},{"x":31,"y":19},{"x":15,"y":-20},{"x":57,"y":53},{"x":-25,"y":32},{"x":-44,"y":-13},{"x":-9,"y":24},{"x":36,"y":-10},{"x":-26,"y":22},{"x":35,"y":-22},{"x":-34,"y":76},{"x":108,"y":68},{"x":-13,"y":85},{"x":34,"y":12},{"x":-24,"y":27},{"x":63,"y":17},{"x":95,"y":127},{"x":-8,"y":55},{"x":53,"y":17},{"x":-28,"y":65},{"x":29,"y":45},{"x":47,"y":-14},{"x":-37,"y":19},{"x":44,"y":28},{"x":-15,"y":73},{"x":47,"y":49},{"x":-189,"y":165},{"x":60,"y":32},{"x":9,"y":46},{"x":-52,"y":56},{"x":82,"y":10},{"x":-10,"y":73},{"x":-41,"y":23},{"x":29,"y":61},{"x":-26,"y":64},{"x":-66,"y":1},{"x":-4,"y":60},{"x":-45,"y":-12},{"x":-42,"y":27},{"x":21,"y":87},{"x":47,"y":3},{"x":-42,"y":13},{"x":52,"y":12},{"x":-8,"y":-36},{"x":30,"y":8},{"x":55,"y":77},{"x":-77,"y":-27},{"x":22,"y":41},{"x":38,"y":-8},{"x":-34,"y":33},{"x":93,"y":38},{"x":49,"y":71},{"x":1,"y":77},{"x":-92,"y":-10},{"x":24,"y":-55},{"x":-95,"y":43},{"x":92,"y":42},{"x":-10,"y":23},{"x":39,"y":23},{"x":-56,"y":33},{"x":26,"y":26},{"x":-19,"y":35},{"x":92,"y":14},{"x":-29,"y":62},{"x":-26,"y":-32},{"x":-47,"y":20},{"x":-16,"y":79},{"x":67,"y":47},{"x":65,"y":-25},{"x":-23,"y":85},{"x":24,"y":55},{"x":-86,"y":68},{"x":30,"y":13},{"x":-15,"y":62},{"x":47,"y":-11},{"x":16,"y":26},{"x":-60,"y":24},{"x":41,"y":26},{"x":-28,"y":43},{"x":12,"y":25},{"x":9,"y":-34},{"x":107,"y":55},{"x":-100,"y":-19},{"x":21,"y":17},{"x":-27,"y":-11},{"x":-27,"y":26},{"x":0,"y":145},{"x":57,"y":5},{"x":34,"y":119},{"x":-31,"y":-7},{"x":-33,"y":126},{"x":-42,"y":59},{"x":-27,"y":-8},{"x":-5,"y":139},{"x":-66,"y":-44},{"x":14,"y":46},{"x":-28,"y":-31},{"x":-46,"y":41},{"x":163,"y":91},{"x":-13,"y":119}],"type":"coastline"},{"arc":[{"x":100403,"y":94701},{"x":-5,"y":43},{"x":7,"y":-81},{"x":-2,"y":38}],"type":"coastline"},{"arc":[{"x":100564,"y":96156},{"x":-73,"y":31},{"x":-28,"y":-244},{"x":93,"y":30},{"x":8,"y":183}],"type":"coastline"},{"arc":[{"x":100664,"y":96497},{"x":-1,"y":-26},{"x":135,"y":-18},{"x":6,"y":46},{"x":-139,"y":19},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":100816,"y":96239},{"x":-35,"y":25},{"x":58,"y":-43},{"x":-23,"y":18}],"type":"coastline"},{"arc":[{"x":100863,"y":97118},{"x":39,"y":-46},{"x":11,"y":-287},{"x":-10,"y":287},{"x":-40,"y":46}],"type":"coastline"},{"arc":[{"x":100962,"y":96027},{"x":-46,"y":43},{"x":-27,"y":-72},{"x":-23,"y":11},{"x":30,"y":80},{"x":-22,"y":30},{"x":-36,"y":-96},{"x":-23,"y":11},{"x":36,"y":97},{"x":-3,"y":94},{"x":-13,"y":-89},{"x":-39,"y":19},{"x":-31,"y":-84},{"x":-38,"y":19},{"x":31,"y":84},{"x":-99,"y":49},{"x":0,"y":34},{"x":-7,"y":-252},{"x":58,"y":-101},{"x":166,"y":-23},{"x":21,"y":22},{"x":-2,"y":-20},{"x":67,"y":144}],"type":"coastline"},{"arc":[{"x":101100,"y":96506},{"x":-6,"y":53},{"x":-55,"y":8},{"x":15,"y":-85},{"x":-26,"y":4},{"x":-16,"y":84},{"x":-60,"y":8},{"x":-37,"y":-282},{"x":147,"y":-18},{"x":43,"y":94},{"x":-5,"y":134}],"type":"coastline"},{"arc":[{"x":101133,"y":93303},{"x":-107,"y":115},{"x":14,"y":-23},{"x":-62,"y":-45},{"x":72,"y":-158},{"x":49,"y":34},{"x":-13,"y":57},{"x":25,"y":11},{"x":21,"y":-51},{"x":21,"y":8},{"x":-20,"y":52}],"type":"coastline"},{"arc":[{"x":101196,"y":96905},{"x":-1,"y":20},{"x":1,"y":-74},{"x":16,"y":-7},{"x":-15,"y":7},{"x":-1,"y":54}],"type":"coastline"},{"arc":[{"x":101223,"y":93179},{"x":-27,"y":50},{"x":-126,"y":-69},{"x":30,"y":-131},{"x":-5,"y":28},{"x":109,"y":46},{"x":-24,"y":56},{"x":24,"y":10},{"x":38,"y":-51},{"x":-19,"y":61}],"type":"coastline"},{"arc":[{"x":101272,"y":96990},{"x":-77,"y":76},{"x":-42,"y":-46},{"x":119,"y":-30}],"type":"coastline"},{"arc":[{"x":101240,"y":96825},{"x":-34,"y":-1},{"x":34,"y":-12},{"x":-35,"y":-36},{"x":-4,"y":48},{"x":-29,"y":-8},{"x":12,"y":-110},{"x":68,"y":-6},{"x":30,"y":124},{"x":-42,"y":1}],"type":"coastline"},{"arc":[{"x":101221,"y":96683},{"x":-41,"y":1},{"x":-9,"y":-84},{"x":129,"y":3},{"x":-14,"y":75},{"x":-65,"y":5}],"type":"coastline"},{"arc":[{"x":101336,"y":96889},{"x":-39,"y":81},{"x":-67,"y":-15},{"x":-3,"y":-33},{"x":-23,"y":0},{"x":-4,"y":40},{"x":-43,"y":11},{"x":42,"y":-12},{"x":4,"y":-40},{"x":21,"y":0},{"x":0,"y":-74},{"x":-17,"y":3},{"x":80,"y":-4},{"x":49,"y":43}],"type":"coastline"},{"arc":[{"x":100763,"y":93875},{"x":110,"y":-164},{"x":25,"y":-115},{"x":-25,"y":12},{"x":148,"y":-117},{"x":37,"y":-49},{"x":-21,"y":-21},{"x":24,"y":16},{"x":-12,"y":-25},{"x":208,"y":-212},{"x":16,"y":-93},{"x":39,"y":14},{"x":-39,"y":-25},{"x":33,"y":13},{"x":23,"y":-23},{"x":-133,"y":-56},{"x":26,"y":-63},{"x":-35,"y":-15},{"x":-79,"y":39},{"x":78,"y":-39},{"x":115,"y":-139},{"x":122,"y":50},{"x":7,"y":-33},{"x":-148,"y":-36},{"x":148,"y":35},{"x":-3,"y":-80},{"x":40,"y":-11},{"x":-58,"y":-15},{"x":98,"y":-79},{"x":43,"y":38},{"x":22,"y":-21},{"x":-61,"y":-32},{"x":104,"y":-124},{"x":10,"y":-24},{"x":-39,"y":-24},{"x":32,"y":-47},{"x":65,"y":28},{"x":11,"y":41},{"x":22,"y":-38}],"type":"coastline"},{"arc":[{"x":101716,"y":92441},{"x":188,"y":47},{"x":109,"y":-77},{"x":-53,"y":16},{"x":-44,"y":-56},{"x":-91,"y":-17},{"x":134,"y":-39},{"x":26,"y":26},{"x":79,"y":-45},{"x":70,"y":29},{"x":-71,"y":4},{"x":-32,"y":36},{"x":11,"y":100},{"x":111,"y":72},{"x":47,"y":-16},{"x":37,"y":63},{"x":61,"y":-30},{"x":-16,"y":-55},{"x":33,"y":-40},{"x":47,"y":8},{"x":-15,"y":81},{"x":23,"y":-16},{"x":75,"y":24},{"x":-22,"y":80},{"x":33,"y":32},{"x":-3,"y":67},{"x":44,"y":-3},{"x":0,"y":55},{"x":22,"y":-35},{"x":80,"y":3},{"x":99,"y":-55},{"x":-36,"y":83},{"x":50,"y":67},{"x":70,"y":-39},{"x":63,"y":-151},{"x":71,"y":-26},{"x":64,"y":63},{"x":97,"y":21},{"x":102,"y":-28},{"x":32,"y":21},{"x":91,"y":-12},{"x":53,"y":49},{"x":181,"y":-34},{"x":189,"y":116},{"x":101,"y":18},{"x":26,"y":65},{"x":47,"y":8},{"x":-20,"y":61},{"x":74,"y":30},{"x":70,"y":-14},{"x":161,"y":125},{"x":146,"y":-83},{"x":92,"y":80},{"x":159,"y":-102},{"x":59,"y":58},{"x":130,"y":20},{"x":49,"y":88},{"x":141,"y":-52},{"x":84,"y":29},{"x":46,"y":95},{"x":65,"y":2},{"x":40,"y":53},{"x":102,"y":23},{"x":64,"y":119},{"x":140,"y":101},{"x":74,"y":-9},{"x":28,"y":-38},{"x":98,"y":43},{"x":6,"y":33},{"x":58,"y":1},{"x":54,"y":-47}],"type":"area"},{"arc":[{"x":101098,"y":97490},{"x":-162,"y":-119},{"x":-33,"y":-124},{"x":20,"y":-18},{"x":91,"y":148},{"x":103,"y":65},{"x":21,"y":-68},{"x":-41,"y":11},{"x":-48,"y":-35},{"x":8,"y":-32},{"x":35,"y":1},{"x":-51,"y":-29},{"x":15,"y":-32},{"x":-50,"y":-18},{"x":-24,"y":19},{"x":-39,"y":-50},{"x":23,"y":-22},{"x":93,"y":41},{"x":32,"y":-41},{"x":-22,"y":12},{"x":-2,"y":-37},{"x":-11,"y":28},{"x":-40,"y":-44},{"x":80,"y":-73},{"x":45,"y":71},{"x":35,"y":7},{"x":161,"y":-195},{"x":46,"y":-11},{"x":-51,"y":-22},{"x":39,"y":-96},{"x":-74,"y":12},{"x":-34,"y":-139},{"x":39,"y":-6},{"x":20,"y":-106},{"x":-56,"y":-5},{"x":-22,"y":-74},{"x":-5,"y":39},{"x":-75,"y":10},{"x":-17,"y":-126},{"x":45,"y":-31},{"x":-49,"y":2},{"x":-17,"y":-314},{"x":-14,"y":54},{"x":-50,"y":27},{"x":-15,"y":-112},{"x":36,"y":-40},{"x":-26,"y":-35},{"x":-26,"y":29},{"x":-54,"y":-83},{"x":7,"y":-44},{"x":-61,"y":4},{"x":49,"y":-13},{"x":-35,"y":-9},{"x":25,"y":-45},{"x":-32,"y":-5},{"x":59,"y":0},{"x":-1,"y":-24},{"x":-62,"y":-11},{"x":29,"y":-34},{"x":-38,"y":13},{"x":-11,"y":-31},{"x":0,"y":38},{"x":-57,"y":14},{"x":-26,"y":-91},{"x":-12,"y":81},{"x":-49,"y":-37},{"x":21,"y":-41},{"x":-80,"y":25},{"x":36,"y":28},{"x":-48,"y":1},{"x":18,"y":13},{"x":-32,"y":12},{"x":-31,"y":-33},{"x":-32,"y":-250},{"x":28,"y":-16},{"x":-12,"y":-24},{"x":-20,"y":34},{"x":-44,"y":-109},{"x":13,"y":-52},{"x":-27,"y":12},{"x":28,"y":-32},{"x":-14,"y":-134},{"x":-96,"y":-279},{"x":-25,"y":0},{"x":-8,"y":-130},{"x":-31,"y":-15},{"x":9,"y":-20},{"x":20,"y":30},{"x":-26,"y":-44},{"x":28,"y":-104},{"x":149,"y":-154},{"x":-14,"y":-214},{"x":31,"y":27},{"x":7,"y":-47},{"x":-42,"y":14},{"x":-11,"y":-67},{"x":67,"y":-142},{"x":-30,"y":19},{"x":169,"y":-168}],"type":"coastline"},{"arc":[{"x":100176,"y":90274},{"x":-55,"y":-10},{"x":-8,"y":-51},{"x":60,"y":26},{"x":3,"y":35}],"type":"coastline"},{"arc":[{"x":100297,"y":90182},{"x":-18,"y":19},{"x":-15,"y":-20},{"x":33,"y":1}],"type":"coastline"},{"arc":[{"x":100519,"y":90407},{"x":-61,"y":-30},{"x":55,"y":5},{"x":6,"y":25}],"type":"coastline"},{"arc":[{"x":100588,"y":91068},{"x":-56,"y":19},{"x":64,"y":-37},{"x":-8,"y":18}],"type":"coastline"},{"arc":[{"x":100618,"y":90663},{"x":-31,"y":5},{"x":-5,"y":-40},{"x":36,"y":35}],"type":"coastline"},{"arc":[{"x":100688,"y":89939},{"x":-47,"y":3},{"x":-6,"y":-64},{"x":53,"y":61}],"type":"coastline"},{"arc":[{"x":100742,"y":90521},{"x":-101,"y":21},{"x":20,"y":-35},{"x":-30,"y":-32},{"x":-2,"y":25},{"x":-38,"y":-10},{"x":8,"y":49},{"x":-22,"y":-27},{"x":-11,"y":34},{"x":-54,"y":-26},{"x":81,"y":-114},{"x":71,"y":22},{"x":27,"y":80},{"x":-1,"y":-21},{"x":52,"y":34}],"type":"coastline"},{"arc":[{"x":100856,"y":90300},{"x":-34,"y":68},{"x":-91,"y":-47},{"x":9,"y":40},{"x":-63,"y":-13},{"x":0,"y":37},{"x":-82,"y":15},{"x":11,"y":-57},{"x":-39,"y":-68},{"x":62,"y":52},{"x":-12,"y":-63},{"x":34,"y":-12},{"x":-92,"y":-106},{"x":47,"y":-71},{"x":17,"y":25},{"x":110,"y":-5},{"x":-17,"y":30},{"x":70,"y":-9},{"x":27,"y":48},{"x":-52,"y":-22},{"x":-34,"y":64},{"x":55,"y":26},{"x":-52,"y":29},{"x":43,"y":38},{"x":78,"y":-23},{"x":5,"y":24}],"type":"coastline"},{"arc":[{"x":100904,"y":90973},{"x":-106,"y":139},{"x":-98,"y":-50},{"x":10,"y":-48},{"x":-51,"y":-21},{"x":15,"y":-39},{"x":110,"y":-70},{"x":45,"y":-4},{"x":75,"y":93}],"type":"coastline"},{"arc":[{"x":100930,"y":91242},{"x":-40,"y":23},{"x":16,"y":-34},{"x":24,"y":11}],"type":"coastline"},{"arc":[{"x":100998,"y":90677},{"x":-18,"y":16},{"x":-45,"y":-28},{"x":15,"y":-41},{"x":-40,"y":-10},{"x":-5,"y":37},{"x":-37,"y":1},{"x":63,"y":27},{"x":-21,"y":40},{"x":24,"y":39},{"x":-93,"y":-23},{"x":-71,"y":23},{"x":-41,"y":-31},{"x":2,"y":-47},{"x":79,"y":-75},{"x":-21,"y":-30},{"x":30,"y":0},{"x":4,"y":-39},{"x":87,"y":-74},{"x":88,"y":215}],"type":"coastline"},{"arc":[{"x":101007,"y":91477},{"x":-39,"y":15},{"x":20,"y":-29},{"x":19,"y":14}],"type":"coastline"},{"arc":[{"x":101350,"y":89486},{"x":0,"y":-10},{"x":21,"y":-30},{"x":-22,"y":37},{"x":23,"y":19},{"x":-22,"y":-16}],"type":"coastline"},{"arc":[{"x":101732,"y":89928},{"x":-24,"y":-12},{"x":19,"y":-22},{"x":5,"y":34}],"type":"coastline"},{"arc":[{"x":101798,"y":91978},{"x":-103,"y":-32},{"x":-23,"y":-89},{"x":25,"y":34},{"x":77,"y":14},{"x":24,"y":73}],"type":"coastline"},{"arc":[{"x":101811,"y":91224},{"x":-55,"y":6},{"x":-44,"y":-82},{"x":-20,"y":50},{"x":-2,"y":-44},{"x":95,"y":-27},{"x":-13,"y":-26},{"x":10,"y":14},{"x":29,"y":109}],"type":"coastline"},{"arc":[{"x":101747,"y":91676},{"x":-21,"y":-83},{"x":18,"y":35},{"x":70,"y":39},{"x":-22,"y":41},{"x":-45,"y":-32}],"type":"coastline"},{"arc":[{"x":101716,"y":92441},{"x":-36,"y":-21},{"x":49,"y":8},{"x":50,"y":-104},{"x":-22,"y":-39},{"x":24,"y":-54},{"x":-29,"y":-10},{"x":46,"y":5},{"x":-27,"y":-20},{"x":85,"y":-183},{"x":-42,"y":-32},{"x":36,"y":20},{"x":14,"y":-47},{"x":-50,"y":21},{"x":-20,"y":-61},{"x":7,"y":-58},{"x":57,"y":14},{"x":10,"y":-29},{"x":-58,"y":-18},{"x":13,"y":-51},{"x":-37,"y":-10},{"x":-35,"y":43},{"x":35,"y":-44},{"x":50,"y":9},{"x":16,"y":-23},{"x":-56,"y":-46},{"x":30,"y":-63},{"x":2,"y":-14},{"x":57,"y":96},{"x":47,"y":-54},{"x":-136,"y":-102},{"x":157,"y":60},{"x":13,"y":-18},{"x":-54,"y":-11},{"x":-32,"y":-64},{"x":-121,"y":-4},{"x":6,"y":-95},{"x":-33,"y":-36},{"x":33,"y":35},{"x":96,"y":-10},{"x":27,"y":93},{"x":30,"y":0},{"x":3,"y":-168},{"x":-32,"y":0},{"x":-19,"y":49},{"x":-50,"y":0},{"x":0,"y":-37},{"x":-35,"y":-1},{"x":21,"y":-27},{"x":-36,"y":-70},{"x":68,"y":-21},{"x":27,"y":35},{"x":15,"y":-61},{"x":-42,"y":-2},{"x":-60,"y":-159},{"x":-65,"y":13},{"x":-42,"y":-129},{"x":35,"y":-37},{"x":-36,"y":6},{"x":65,"y":-60},{"x":50,"y":9},{"x":36,"y":-91},{"x":-29,"y":-55},{"x":121,"y":-104},{"x":-187,"y":-145},{"x":-14,"y":-54},{"x":58,"y":-10},{"x":-17,"y":36},{"x":27,"y":-37},{"x":38,"y":22},{"x":15,"y":-27},{"x":-31,"y":-54},{"x":-49,"y":-14},{"x":29,"y":-30},{"x":-18,"y":-41},{"x":-70,"y":-8},{"x":-44,"y":-55},{"x":110,"y":-39},{"x":77,"y":26},{"x":89,"y":-22},{"x":30,"y":60},{"x":50,"y":-73},{"x":48,"y":17},{"x":52,"y":-41},{"x":55,"y":6},{"x":-43,"y":-9},{"x":-12,"y":-39},{"x":-45,"y":65},{"x":-75,"y":-11},{"x":-39,"y":-16},{"x":20,"y":-26},{"x":-27,"y":-30},{"x":-51,"y":-5},{"x":-126,"y":25},{"x":-29,"y":35},{"x":-98,"y":-106},{"x":40,"y":-9},{"x":96,"y":46},{"x":-18,"y":-175},{"x":-35,"y":-26},{"x":-56,"y":22},{"x":-21,"y":-52},{"x":-64,"y":66},{"x":-33,"y":-63},{"x":-145,"y":-96},{"x":-26,"y":-41},{"x":33,"y":-29},{"x":-21,"y":-25},{"x":30,"y":-112},{"x":-42,"y":-17},{"x":45,"y":-91},{"x":50,"y":49},{"x":-31,"y":-51},{"x":61,"y":-8},{"x":-14,"y":-38},{"x":14,"y":38},{"x":52,"y":-30},{"x":61,"y":-76},{"x":-44,"y":-6},{"x":-14,"y":-44},{"x":11,"y":81},{"x":-65,"y":9},{"x":-39,"y":-171},{"x":30,"y":20},{"x":-25,"y":-23},{"x":31,"y":-15},{"x":-163,"y":-141}],"type":"coastline"},{"arc":[{"x":101334,"y":89006},{"x":98,"y":16},{"x":58,"y":-84},{"x":221,"y":66},{"x":71,"y":104},{"x":113,"y":-148},{"x":59,"y":27},{"x":45,"y":-26},{"x":94,"y":9},{"x":7,"y":-49},{"x":84,"y":-31},{"x":96,"y":-148},{"x":68,"y":-4},{"x":-20,"y":-185},{"x":86,"y":-16},{"x":45,"y":28},{"x":108,"y":-98},{"x":175,"y":48},{"x":49,"y":64},{"x":84,"y":-33},{"x":-7,"y":55},{"x":52,"y":-5},{"x":82,"y":155},{"x":93,"y":46},{"x":90,"y":-86},{"x":39,"y":4},{"x":31,"y":-76},{"x":51,"y":10},{"x":27,"y":-23},{"x":37,"y":-45},{"x":12,"y":-37},{"x":-35,"y":-30},{"x":35,"y":-37},{"x":79,"y":1}],"type":"admin"},{"arc":[{"x":103461,"y":88478},{"x":163,"y":178},{"x":40,"y":-28},{"x":89,"y":28},{"x":17,"y":-57},{"x":45,"y":8},{"x":121,"y":125},{"x":88,"y":-168},{"x":57,"y":-14},{"x":10,"y":40},{"x":39,"y":-33},{"x":14,"y":34},{"x":34,"y":-8},{"x":18,"y":62},{"x":131,"y":47},{"x":3,"y":86},{"x":52,"y":37},{"x":-28,"y":62},{"x":55,"y":20},{"x":-23,"y":71},{"x":165,"y":-18},{"x":75,"y":56},{"x":138,"y":-22},{"x":27,"y":109},{"x":49,"y":34},{"x":-25,"y":25},{"x":22,"y":78},{"x":78,"y":37},{"x":135,"y":-17},{"x":64,"y":61},{"x":40,"y":-36},{"x":214,"y":88},{"x":38,"y":59},{"x":17,"y":151},{"x":-51,"y":99},{"x":50,"y":40},{"x":59,"y":8},{"x":63,"y":-54},{"x":115,"y":50},{"x":80,"y":-6},{"x":80,"y":-225},{"x":141,"y":-24},{"x":116,"y":19},{"x":56,"y":114},{"x":129,"y":46}],"type":"admin"},{"arc":[{"x":106261,"y":89640},{"x":-37,"y":156},{"x":-75,"y":95},{"x":82,"y":100},{"x":-10,"y":123},{"x":68,"y":-14},{"x":52,"y":123},{"x":126,"y":70},{"x":-13,"y":28},{"x":151,"y":198},{"x":159,"y":-47},{"x":130,"y":43},{"x":102,"y":-89},{"x":74,"y":-12},{"x":116,"y":39}],"type":"admin"},{"arc":[{"x":96186,"y":92911},{"x":-73,"y":74},{"x":-71,"y":-2},{"x":-67,"y":-59},{"x":-11,"y":-82},{"x":85,"y":-8},{"x":46,"y":39},{"x":-23,"y":2},{"x":5,"y":22},{"x":4,"y":-20},{"x":35,"y":20},{"x":-13,"y":20},{"x":48,"y":-24},{"x":35,"y":18}],"type":"coastline"},{"arc":[{"x":96374,"y":92755},{"x":-9,"y":-38},{"x":26,"y":52},{"x":-17,"y":-14}],"type":"coastline"},{"arc":[{"x":97311,"y":93899},{"x":-53,"y":38},{"x":-37,"y":7},{"x":-55,"y":34},{"x":-46,"y":5},{"x":-15,"y":-11},{"x":7,"y":-8},{"x":8,"y":8},{"x":36,"y":8},{"x":57,"y":-45},{"x":43,"y":-2},{"x":30,"y":-52},{"x":25,"y":18}],"type":"coastline"},{"arc":[{"x":100256,"y":94340},{"x":-163,"y":95},{"x":-22,"y":58},{"x":-141,"y":6},{"x":-132,"y":-87},{"x":-92,"y":-90},{"x":4,"y":-28},{"x":-13,"y":27},{"x":-60,"y":-59},{"x":3,"y":19},{"x":-177,"y":-18},{"x":-115,"y":-65},{"x":-10,"y":21},{"x":-10,"y":-40},{"x":-99,"y":-56},{"x":-106,"y":-140},{"x":-291,"y":-189},{"x":8,"y":49},{"x":-127,"y":-116},{"x":50,"y":-16},{"x":-59,"y":-57},{"x":-7,"y":66},{"x":-101,"y":-79},{"x":37,"y":-31},{"x":-47,"y":-43},{"x":-32,"y":-1},{"x":6,"y":47},{"x":-94,"y":-95},{"x":-4,"y":31},{"x":-57,"y":-26},{"x":33,"y":-37},{"x":-53,"y":15},{"x":10,"y":19},{"x":-126,"y":-35},{"x":-289,"y":26},{"x":-129,"y":-28},{"x":-16,"y":18},{"x":-10,"y":-25},{"x":-34,"y":28},{"x":13,"y":31},{"x":-31,"y":-32},{"x":-2,"y":37},{"x":-22,"y":-11},{"x":27,"y":22},{"x":-30,"y":-17},{"x":-29,"y":23},{"x":-28,"y":80},{"x":-66,"y":-13},{"x":-11,"y":18},{"x":36,"y":0},{"x":-210,"y":47},{"x":-117,"y":175},{"x":-117,"y":49},{"x":-119,"y":-5},{"x":26,"y":49},{"x":-100,"y":-28},{"x":-136,"y":-416},{"x":-202,"y":-409},{"x":-83,"y":-126},{"x":-134,"y":-118},{"x":-81,"y":-158},{"x":-20,"y":22},{"x":30,"y":-172},{"x":-112,"y":-323},{"x":9,"y":-38},{"x":87,"y":25},{"x":83,"y":-20},{"x":78,"y":-106},{"x":12,"y":-120},{"x":40,"y":-8},{"x":179,"y":84},{"x":30,"y":34},{"x":-17,"y":52},{"x":105,"y":-12},{"x":29,"y":19},{"x":-33,"y":-117},{"x":-42,"y":-35},{"x":-31,"y":31},{"x":-30,"y":-48},{"x":62,"y":-46},{"x":5,"y":-110},{"x":-35,"y":-54},{"x":16,"y":-50},{"x":-54,"y":-75},{"x":141,"y":140},{"x":154,"y":-55},{"x":6,"y":-75},{"x":149,"y":28},{"x":51,"y":-29},{"x":-3,"y":-39},{"x":36,"y":62},{"x":196,"y":92},{"x":26,"y":63},{"x":103,"y":42},{"x":-64,"y":48},{"x":6,"y":60},{"x":-38,"y":42},{"x":41,"y":95},{"x":24,"y":-12},{"x":51,"y":54},{"x":-45,"y":-6},{"x":29,"y":20},{"x":-31,"y":6},{"x":12,"y":23},{"x":29,"y":-34},{"x":6,"y":35},{"x":106,"y":55},{"x":309,"y":98},{"x":81,"y":43},{"x":-9,"y":41},{"x":43,"y":42},{"x":252,"y":77},{"x":30,"y":16},{"x":-53,"y":17},{"x":33,"y":28},{"x":308,"y":116},{"x":3,"y":39},{"x":189,"y":123},{"x":-22,"y":43},{"x":33,"y":47},{"x":-42,"y":-30},{"x":32,"y":30},{"x":-32,"y":25},{"x":50,"y":64},{"x":513,"y":284},{"x":-70,"y":-20},{"x":126,"y":96},{"x":-20,"y":85},{"x":76,"y":85},{"x":-34,"y":-22},{"x":22,"y":54},{"x":101,"y":68},{"x":27,"y":101},{"x":458,"y":319},{"x":88,"y":128},{"x":13,"y":93}],"type":"coastline"},{"arc":[{"x":94576,"y":102151},{"x":-38,"y":-20},{"x":-23,"y":-81},{"x":-111,"y":-44},{"x":-54,"y":-78},{"x":-52,"y":-217},{"x":-47,"y":-46},{"x":48,"y":-14},{"x":7,"y":-102},{"x":-82,"y":-84},{"x":-64,"y":-6},{"x":-29,"y":-66},{"x":-71,"y":-15},{"x":-13,"y":-58},{"x":-80,"y":-38},{"x":-195,"y":53},{"x":-24,"y":82},{"x":-40,"y":-5}],"type":"admin"},{"arc":[{"x":93622,"y":101191},{"x":79,"y":-3},{"x":41,"y":-114},{"x":-74,"y":25},{"x":-124,"y":-80},{"x":-131,"y":16},{"x":13,"y":83},{"x":-94,"y":88},{"x":-80,"y":-73},{"x":-84,"y":12}],"type":"admin"},{"arc":[{"x":93278,"y":101012},{"x":39,"y":-37},{"x":100,"y":17},{"x":62,"y":-31},{"x":11,"y":-120},{"x":104,"y":-214},{"x":-33,"y":-41},{"x":-69,"y":-13},{"x":-72,"y":-188},{"x":25,"y":-91},{"x":-53,"y":-77},{"x":41,"y":-34},{"x":5,"y":-75},{"x":126,"y":-142},{"x":6,"y":-298},{"x":-55,"y":-56},{"x":21,"y":-61},{"x":-27,"y":-81},{"x":-80,"y":13},{"x":-116,"y":-111},{"x":8,"y":-78},{"x":-53,"y":-158},{"x":107,"y":68},{"x":138,"y":-29},{"x":11,"y":-130},{"x":33,"y":-40},{"x":55,"y":-9},{"x":47,"y":83},{"x":114,"y":28},{"x":64,"y":-37},{"x":45,"y":14},{"x":5,"y":46},{"x":156,"y":-1},{"x":-41,"y":89},{"x":11,"y":70},{"x":78,"y":-13},{"x":82,"y":37},{"x":168,"y":-13},{"x":143,"y":-113},{"x":65,"y":9},{"x":25,"y":-25},{"x":4,"y":-79},{"x":33,"y":-28},{"x":-6,"y":-114},{"x":62,"y":-18},{"x":119,"y":63},{"x":116,"y":-41},{"x":25,"y":-53},{"x":104,"y":-56},{"x":-5,"y":-105},{"x":57,"y":-29},{"x":46,"y":-118}],"type":"admin"},{"arc":[{"x":95129,"y":98592},{"x":72,"y":-67},{"x":87,"y":79},{"x":146,"y":-19},{"x":29,"y":87},{"x":45,"y":-9},{"x":42,"y":62},{"x":31,"y":103},{"x":312,"y":93},{"x":92,"y":247},{"x":96,"y":-10},{"x":80,"y":62},{"x":23,"y":72},{"x":87,"y":55},{"x":93,"y":-84},{"x":60,"y":3},{"x":44,"y":52},{"x":47,"y":5},{"x":45,"y":49},{"x":-26,"y":57},{"x":20,"y":56},{"x":58,"y":66},{"x":-24,"y":96},{"x":-130,"y":194},{"x":119,"y":152},{"x":72,"y":21},{"x":353,"y":-109},{"x":121,"y":-186},{"x":-64,"y":-25},{"x":-9,"y":-66},{"x":104,"y":-63},{"x":81,"y":22},{"x":100,"y":-65},{"x":58,"y":14},{"x":52,"y":-26},{"x":28,"y":26},{"x":74,"y":-1},{"x":29,"y":-10},{"x":9,"y":-59},{"x":56,"y":-9},{"x":214,"y":36},{"x":103,"y":-60},{"x":161,"y":-37}],"type":"admin"},{"arc":[{"x":93184,"y":95427},{"x":-26,"y":24},{"x":17,"y":70},{"x":-27,"y":6},{"x":-25,"y":-66},{"x":61,"y":-34}],"type":"coastline"},{"arc":[{"x":94014,"y":94885},{"x":-19,"y":19},{"x":-15,"y":-23},{"x":34,"y":4}],"type":"coastline"},{"arc":[{"x":94403,"y":94988},{"x":-46,"y":19},{"x":24,"y":-62},{"x":22,"y":43}],"type":"coastline"},{"arc":[{"x":94556,"y":95039},{"x":-36,"y":69},{"x":-10,"y":-73},{"x":46,"y":4}],"type":"coastline"},{"arc":[{"x":94668,"y":95255},{"x":-19,"y":58},{"x":-21,"y":-49},{"x":29,"y":-29},{"x":11,"y":20}],"type":"coastline"},{"arc":[{"x":95575,"y":94911},{"x":-24,"y":49},{"x":-25,"y":-39},{"x":29,"y":-29},{"x":20,"y":19}],"type":"coastline"},{"arc":[{"x":95603,"y":95111},{"x":-36,"y":-10},{"x":-43,"y":30},{"x":-10,"y":-55},{"x":63,"y":-4},{"x":26,"y":39}],"type":"coastline"},{"arc":[{"x":95930,"y":95744},{"x":-4,"y":-54},{"x":28,"y":5},{"x":6,"y":22},{"x":-6,"y":32},{"x":-24,"y":-5}],"type":"coastline"},{"arc":[{"x":95991,"y":95694},{"x":-30,"y":37},{"x":-5,"y":-26},{"x":25,"y":-1},{"x":-1,"y":-19},{"x":11,"y":9}],"type":"coastline"},{"arc":[{"x":95971,"y":95673},{"x":1,"y":13},{"x":-18,"y":0},{"x":0,"y":8},{"x":-18,"y":-1},{"x":-13,"y":-7},{"x":24,"y":-19},{"x":-37,"y":-12},{"x":90,"y":24},{"x":-29,"y":-6}],"type":"coastline"},{"arc":[{"x":97264,"y":94469},{"x":-4,"y":23},{"x":-64,"y":-27},{"x":-96,"y":-72},{"x":37,"y":-93},{"x":47,"y":36},{"x":-8,"y":71},{"x":88,"y":62}],"type":"coastline"},{"arc":[{"x":97269,"y":94519},{"x":-25,"y":-4},{"x":15,"y":-23},{"x":10,"y":27}],"type":"coastline"},{"arc":[{"x":97322,"y":94739},{"x":-17,"y":39},{"x":-47,"y":-101},{"x":26,"y":-116},{"x":32,"y":37},{"x":6,"y":141}],"type":"coastline"},{"arc":[{"x":95129,"y":98592},{"x":-82,"y":-81},{"x":-103,"y":-43},{"x":-20,"y":-181},{"x":-70,"y":-36},{"x":-27,"y":28},{"x":-118,"y":1},{"x":-15,"y":158},{"x":-101,"y":75},{"x":-121,"y":-67},{"x":-47,"y":58},{"x":-168,"y":45},{"x":-24,"y":37},{"x":-73,"y":-16},{"x":-133,"y":-173},{"x":8,"y":-56},{"x":-120,"y":-235},{"x":19,"y":-77},{"x":-59,"y":-66},{"x":97,"y":-93},{"x":10,"y":-120},{"x":-71,"y":-64},{"x":54,"y":11},{"x":5,"y":-71},{"x":-142,"y":-71},{"x":-14,"y":-139},{"x":-122,"y":-35},{"x":-98,"y":38},{"x":-42,"y":-48},{"x":-62,"y":9},{"x":-10,"y":67},{"x":-62,"y":-7},{"x":-62,"y":48},{"x":-13,"y":172},{"x":-150,"y":-3},{"x":13,"y":92},{"x":-28,"y":32},{"x":-48,"y":-2},{"x":-42,"y":162},{"x":-140,"y":-32},{"x":30,"y":-124},{"x":-29,"y":-158},{"x":-47,"y":-75},{"x":39,"y":-189},{"x":-82,"y":-127},{"x":-139,"y":-78},{"x":-51,"y":-68},{"x":9,"y":-65},{"x":-27,"y":-17},{"x":-42,"y":33},{"x":-240,"y":-5},{"x":-25,"y":-31},{"x":-80,"y":10},{"x":-120,"y":-51},{"x":-7,"y":-27},{"x":-70,"y":-2}],"type":"area"},{"arc":[{"x":92067,"y":96935},{"x":-22,"y":-50},{"x":-10,"y":37},{"x":-1,"y":-57},{"x":51,"y":12},{"x":36,"y":-43},{"x":80,"y":11},{"x":87,"y":-82},{"x":-49,"y":-141},{"x":38,"y":13},{"x":35,"y":-22},{"x":107,"y":-191},{"x":-10,"y":-281},{"x":72,"y":-9},{"x":40,"y":31},{"x":52,"y":-20},{"x":55,"y":-112},{"x":33,"y":3},{"x":19,"y":-51},{"x":13,"y":31},{"x":25,"y":-11},{"x":-50,"y":-71},{"x":101,"y":-171},{"x":57,"y":-32},{"x":15,"y":23},{"x":47,"y":-81},{"x":74,"y":1},{"x":52,"y":-93},{"x":19,"y":35},{"x":50,"y":-13},{"x":61,"y":-58},{"x":46,"y":6},{"x":11,"y":-42},{"x":21,"y":42},{"x":25,"y":-7},{"x":142,"y":-126},{"x":81,"y":-229},{"x":-63,"y":-181},{"x":3,"y":-60},{"x":37,"y":-13},{"x":-83,"y":-91},{"x":-23,"y":-84},{"x":79,"y":-10},{"x":34,"y":62},{"x":37,"y":5},{"x":51,"y":-55},{"x":37,"y":8},{"x":12,"y":96},{"x":-30,"y":38},{"x":70,"y":62},{"x":32,"y":-44},{"x":56,"y":32},{"x":-19,"y":-57},{"x":49,"y":1},{"x":12,"y":34},{"x":33,"y":-18},{"x":-36,"y":-52},{"x":24,"y":-47},{"x":49,"y":25},{"x":36,"y":134},{"x":40,"y":12},{"x":16,"y":-43},{"x":15,"y":71},{"x":61,"y":-13},{"x":4,"y":94},{"x":63,"y":38},{"x":4,"y":71},{"x":6,"y":-24},{"x":28,"y":52},{"x":-11,"y":-78},{"x":36,"y":21},{"x":-3,"y":-69},{"x":41,"y":1},{"x":-48,"y":-3},{"x":-41,"y":-47},{"x":-16,"y":-126},{"x":31,"y":-61},{"x":23,"y":94},{"x":69,"y":15},{"x":77,"y":-141},{"x":23,"y":160},{"x":71,"y":12},{"x":16,"y":37},{"x":16,"y":-25},{"x":29,"y":15},{"x":-3,"y":111},{"x":-29,"y":-15},{"x":-7,"y":32},{"x":9,"y":-17},{"x":7,"y":41},{"x":45,"y":-2},{"x":33,"y":48},{"x":1,"y":116},{"x":80,"y":79},{"x":-24,"y":9},{"x":17,"y":50},{"x":64,"y":-37},{"x":33,"y":-72},{"x":15,"y":115},{"x":69,"y":4},{"x":18,"y":151},{"x":91,"y":-30},{"x":-23,"y":-1},{"x":29,"y":-71},{"x":23,"y":32},{"x":55,"y":-13},{"x":-8,"y":-116},{"x":85,"y":11},{"x":32,"y":-76},{"x":66,"y":-14},{"x":1,"y":-97},{"x":62,"y":-150},{"x":-40,"y":-126},{"x":64,"y":-76},{"x":20,"y":28},{"x":-30,"y":52},{"x":43,"y":-6},{"x":8,"y":22},{"x":-26,"y":-9},{"x":52,"y":52},{"x":-32,"y":-76},{"x":39,"y":74},{"x":110,"y":3},{"x":23,"y":22},{"x":-46,"y":15},{"x":80,"y":32},{"x":-21,"y":44},{"x":13,"y":-24},{"x":205,"y":61},{"x":-48,"y":56},{"x":-18,"y":109},{"x":-31,"y":7},{"x":38,"y":15},{"x":-40,"y":19},{"x":13,"y":32},{"x":63,"y":-33},{"x":6,"y":-70},{"x":154,"y":-3},{"x":-60,"y":-40},{"x":19,"y":-47},{"x":63,"y":35},{"x":23,"y":225},{"x":-31,"y":31},{"x":8,"y":78},{"x":-22,"y":-14},{"x":-11,"y":26},{"x":108,"y":112},{"x":-16,"y":104},{"x":67,"y":35},{"x":-5,"y":57},{"x":20,"y":-66},{"x":-42,"y":-143},{"x":82,"y":30},{"x":28,"y":54},{"x":-5,"y":-85},{"x":131,"y":-5},{"x":73,"y":-35},{"x":69,"y":19},{"x":13,"y":-50},{"x":-44,"y":-11},{"x":-137,"y":64},{"x":170,"y":-115},{"x":-48,"y":-122},{"x":70,"y":-27},{"x":-21,"y":-23},{"x":-8,"y":19},{"x":14,"y":-46},{"x":141,"y":-29},{"x":-40,"y":64},{"x":-32,"y":-15},{"x":-3,"y":59},{"x":52,"y":-2},{"x":-13,"y":-37},{"x":96,"y":-31},{"x":29,"y":24},{"x":21,"y":-76},{"x":4,"y":79},{"x":41,"y":-8},{"x":18,"y":-27},{"x":-51,"y":-51},{"x":20,"y":6},{"x":13,"y":-8},{"x":-20,"y":-47},{"x":42,"y":101},{"x":38,"y":-7},{"x":15,"y":-228},{"x":82,"y":-78},{"x":-4,"y":138},{"x":-75,"y":79},{"x":25,"y":36},{"x":-5,"y":-38},{"x":19,"y":28},{"x":99,"y":-65},{"x":-13,"y":-21},{"x":57,"y":-33},{"x":-21,"y":-16},{"x":-62,"y":35},{"x":159,"y":-190},{"x":18,"y":42},{"x":-14,"y":-36},{"x":25,"y":7},{"x":31,"y":-51},{"x":25,"y":-220},{"x":163,"y":45},{"x":-55,"y":0},{"x":22,"y":24},{"x":-15,"y":-2},{"x":-4,"y":19},{"x":30,"y":14},{"x":-17,"y":-26},{"x":27,"y":-2},{"x":-6,"y":21},{"x":35,"y":6},{"x":28,"y":-48},{"x":27,"y":31},{"x":27,"y":-31},{"x":133,"y":48},{"x":23,"y":104},{"x":43,"y":43}],"type":"coastline"},{"arc":[{"x":89286,"y":100706},{"x":-32,"y":11},{"x":-34,"y":-32},{"x":40,"y":-29},{"x":26,"y":50}],"type":"coastline"},{"arc":[{"x":89559,"y":100651},{"x":-48,"y":19},{"x":10,"y":148},{"x":-60,"y":137},{"x":17,"y":-13},{"x":-11,"y":110},{"x":-52,"y":-75},{"x":-60,"y":2},{"x":5,"y":-103},{"x":-65,"y":-7},{"x":20,"y":-11},{"x":-27,"y":-13},{"x":32,"y":-57},{"x":-69,"y":20},{"x":31,"y":-78},{"x":90,"y":11},{"x":-9,"y":-71},{"x":32,"y":8},{"x":-9,"y":-45},{"x":26,"y":-10},{"x":-13,"y":-51},{"x":-28,"y":0},{"x":19,"y":-31},{"x":84,"y":22},{"x":85,"y":88}],"type":"coastline"},{"arc":[{"x":89759,"y":98927},{"x":-45,"y":14},{"x":22,"y":-28},{"x":23,"y":14}],"type":"coastline"},{"arc":[{"x":91397,"y":102029},{"x":-42,"y":-10},{"x":60,"y":20},{"x":-18,"y":-10}],"type":"coastline"},{"arc":[{"x":91855,"y":102216},{"x":-211,"y":-152},{"x":-51,"y":5},{"x":-60,"y":-50},{"x":-37,"y":38},{"x":-31,"y":-4},{"x":-11,"y":-9},{"x":-12,"y":2},{"x":9,"y":-34},{"x":14,"y":14},{"x":-9,"y":8},{"x":6,"y":17},{"x":16,"y":2},{"x":2,"y":-7},{"x":3,"y":7},{"x":13,"y":-16},{"x":-122,"y":-135},{"x":-32,"y":33},{"x":7,"y":-23},{"x":-102,"y":31},{"x":18,"y":69},{"x":39,"y":9},{"x":-41,"y":16},{"x":1,"y":-24},{"x":-55,"y":2},{"x":-62,"y":-56},{"x":62,"y":1},{"x":22,"y":-30},{"x":-23,"y":-55},{"x":-16,"y":72},{"x":-20,"y":-49},{"x":29,"y":-84},{"x":-51,"y":-29},{"x":5,"y":-64},{"x":-68,"y":-91},{"x":-79,"y":32},{"x":-12,"y":90},{"x":-103,"y":9},{"x":-41,"y":-16},{"x":121,"y":-8},{"x":-23,"y":-45},{"x":-65,"y":-27},{"x":-35,"y":36},{"x":-24,"y":-46},{"x":34,"y":-32},{"x":-44,"y":18},{"x":-39,"y":-98},{"x":-46,"y":2},{"x":-1,"y":26},{"x":-18,"y":-18},{"x":-30,"y":44},{"x":-34,"y":-19},{"x":-28,"y":31},{"x":54,"y":15},{"x":57,"y":69},{"x":-14,"y":29},{"x":-41,"y":-27},{"x":-73,"y":41},{"x":23,"y":-60},{"x":-28,"y":21},{"x":-11,"y":39},{"x":53,"y":90},{"x":-106,"y":-35},{"x":-20,"y":16},{"x":-37,"y":-43},{"x":3,"y":-109},{"x":-45,"y":-7},{"x":26,"y":-123},{"x":-67,"y":-18},{"x":12,"y":-56},{"x":-75,"y":-65},{"x":3,"y":-47},{"x":-58,"y":-68},{"x":62,"y":181},{"x":-11,"y":67},{"x":-29,"y":10},{"x":-10,"y":-62},{"x":-51,"y":2},{"x":-72,"y":-151},{"x":-57,"y":-27},{"x":3,"y":-49},{"x":-104,"y":-70},{"x":64,"y":-54},{"x":-31,"y":7},{"x":-93,"y":-154},{"x":-47,"y":18},{"x":34,"y":-60},{"x":-38,"y":-43},{"x":-44,"y":12},{"x":-13,"y":-57},{"x":29,"y":-1},{"x":4,"y":-89},{"x":-114,"y":-96},{"x":-25,"y":-103},{"x":-140,"y":-35},{"x":-4,"y":-33},{"x":-97,"y":-53},{"x":9,"y":16},{"x":-72,"y":12},{"x":23,"y":-38},{"x":-41,"y":15},{"x":-17,"y":-24},{"x":-15,"y":38},{"x":23,"y":1},{"x":-62,"y":27},{"x":34,"y":55},{"x":-38,"y":-57},{"x":-120,"y":68},{"x":30,"y":-56},{"x":-38,"y":15},{"x":6,"y":-33},{"x":-68,"y":-7},{"x":78,"y":-72},{"x":9,"y":-69},{"x":-133,"y":-55},{"x":36,"y":-72},{"x":70,"y":20},{"x":49,"y":-46},{"x":114,"y":202},{"x":122,"y":-33},{"x":37,"y":26},{"x":6,"y":-41},{"x":-60,"y":-29},{"x":90,"y":5},{"x":-3,"y":-49},{"x":27,"y":-9},{"x":-39,"y":-57},{"x":20,"y":-40},{"x":-56,"y":-63},{"x":91,"y":-20},{"x":-84,"y":-90},{"x":81,"y":-90},{"x":-74,"y":-34},{"x":40,"y":-20},{"x":53,"y":30},{"x":-22,"y":-13},{"x":23,"y":-36},{"x":51,"y":-16},{"x":-64,"y":-39},{"x":34,"y":-114},{"x":-22,"y":-54},{"x":38,"y":-42},{"x":-12,"y":-51},{"x":34,"y":1},{"x":60,"y":-70},{"x":20,"y":-113},{"x":63,"y":-82},{"x":-62,"y":-20},{"x":55,"y":-117},{"x":-24,"y":-14},{"x":36,"y":-30},{"x":-62,"y":-50},{"x":38,"y":-26},{"x":1,"y":-47},{"x":-45,"y":-6},{"x":53,"y":-43},{"x":-7,"y":-48},{"x":83,"y":-31},{"x":-19,"y":-114},{"x":20,"y":-102},{"x":45,"y":-25},{"x":-30,"y":-74},{"x":48,"y":-64},{"x":-8,"y":-64},{"x":36,"y":-57},{"x":50,"y":32},{"x":36,"y":-32},{"x":3,"y":-72},{"x":52,"y":-9},{"x":20,"y":-101},{"x":19,"y":52},{"x":55,"y":-45},{"x":-39,"y":5},{"x":20,"y":-21},{"x":-38,"y":-43},{"x":53,"y":-2},{"x":11,"y":-26},{"x":-49,"y":-75},{"x":23,"y":-35},{"x":-24,"y":-32},{"x":68,"y":1},{"x":-40,"y":-98},{"x":71,"y":22},{"x":-2,"y":-32},{"x":73,"y":-16},{"x":64,"y":-114},{"x":-15,"y":-28},{"x":24,"y":10},{"x":-17,"y":-21},{"x":26,"y":-7},{"x":-33,"y":-23},{"x":112,"y":-18},{"x":-53,"y":-33},{"x":23,"y":-58},{"x":34,"y":6},{"x":-1,"y":-28},{"x":73,"y":8},{"x":-43,"y":-46},{"x":63,"y":-53},{"x":15,"y":24},{"x":5,"y":-32},{"x":21,"y":19},{"x":-7,"y":-26},{"x":34,"y":30},{"x":18,"y":-55},{"x":34,"y":29},{"x":43,"y":-15},{"x":-1,"y":41},{"x":58,"y":-3},{"x":18,"y":40},{"x":25,"y":-65},{"x":58,"y":61},{"x":47,"y":-9},{"x":14,"y":27},{"x":1,"y":-22},{"x":-39,"y":-26},{"x":55,"y":-23},{"x":11,"y":20},{"x":78,"y":-9},{"x":31,"y":-71},{"x":39,"y":3},{"x":3,"y":-40},{"x":29,"y":-6},{"x":-9,"y":-79},{"x":34,"y":-25},{"x":-26,"y":-11},{"x":50,"y":-151},{"x":116,"y":-107},{"x":100,"y":115},{"x":28,"y":-31},{"x":41,"y":37},{"x":43,"y":-92},{"x":23,"y":19},{"x":0,"y":160},{"x":-74,"y":-9},{"x":7,"y":35},{"x":-49,"y":-48},{"x":-10,"y":22},{"x":38,"y":18},{"x":-62,"y":16},{"x":2,"y":36},{"x":27,"y":-17},{"x":7,"y":33},{"x":26,"y":-6},{"x":-31,"y":89},{"x":65,"y":-41},{"x":15,"y":81},{"x":35,"y":-46},{"x":4,"y":24},{"x":74,"y":18},{"x":-16,"y":26},{"x":-47,"y":-24},{"x":-18,"y":43},{"x":37,"y":-19},{"x":47,"y":80},{"x":60,"y":-27},{"x":15,"y":37},{"x":36,"y":-24},{"x":53,"y":47},{"x":24,"y":-33},{"x":-29,"y":-27},{"x":-48,"y":9},{"x":-5,"y":-52},{"x":51,"y":-69},{"x":91,"y":-40},{"x":-14,"y":-76},{"x":32,"y":39},{"x":-18,"y":-32},{"x":30,"y":-8},{"x":-42,"y":-46},{"x":-19,"y":40},{"x":2,"y":-71},{"x":52,"y":-43},{"x":22,"y":1},{"x":-1,"y":13},{"x":-21,"y":-11},{"x":-25,"y":25},{"x":12,"y":-8},{"x":11,"y":27},{"x":27,"y":-18},{"x":27,"y":46},{"x":34,"y":-6},{"x":59,"y":-61},{"x":-27,"y":-22},{"x":11,"y":-77}],"type":"coastline"},{"arc":[{"x":106261,"y":89640},{"x":88,"y":-38},{"x":18,"y":-63},{"x":-61,"y":-133},{"x":-77,"y":15},{"x":-56,"y":-46},{"x":-115,"y":-252},{"x":-62,"y":-13},{"x":-107,"y":-108},{"x":0,"y":-174},{"x":-47,"y":-160},{"x":42,"y":-63},{"x":67,"y":-19},{"x":25,"y":-59},{"x":-26,"y":-50},{"x":-72,"y":-34},{"x":-33,"y":-171},{"x":-64,"y":-47},{"x":-13,"y":-222},{"x":-126,"y":-27},{"x":-58,"y":-137},{"x":22,"y":-39},{"x":77,"y":11},{"x":68,"y":-26},{"x":85,"y":-98},{"x":301,"y":88},{"x":62,"y":-47},{"x":-29,"y":-112},{"x":68,"y":-51},{"x":41,"y":64},{"x":74,"y":-20},{"x":69,"y":59},{"x":108,"y":-100},{"x":51,"y":28},{"x":39,"y":-12},{"x":41,"y":-43},{"x":-29,"y":-56},{"x":32,"y":-89},{"x":211,"y":-141},{"x":16,"y":-88},{"x":-44,"y":-19},{"x":-2,"y":-69},{"x":-50,"y":-39},{"x":55,"y":-63},{"x":-48,"y":-79},{"x":93,"y":-186},{"x":-22,"y":-51},{"x":25,"y":-106},{"x":63,"y":-68},{"x":100,"y":37},{"x":83,"y":89},{"x":60,"y":-37},{"x":54,"y":39},{"x":41,"y":-8}],"type":"admin"},{"arc":[{"x":107299,"y":86607},{"x":53,"y":39},{"x":73,"y":-6},{"x":51,"y":65},{"x":-26,"y":47},{"x":107,"y":70},{"x":145,"y":-393},{"x":98,"y":24},{"x":32,"y":45},{"x":82,"y":-51},{"x":72,"y":13},{"x":-22,"y":-55},{"x":45,"y":-85},{"x":-30,"y":-56},{"x":48,"y":-57},{"x":7,"y":-92},{"x":77,"y":-1},{"x":17,"y":-31},{"x":124,"y":46},{"x":105,"y":-59},{"x":229,"y":76},{"x":107,"y":3},{"x":145,"y":116},{"x":54,"y":-4},{"x":44,"y":-42}],"type":"area"},{"arc":[{"x":108936,"y":86219},{"x":-7,"y":114},{"x":31,"y":22},{"x":-28,"y":11},{"x":28,"y":59},{"x":-21,"y":28},{"x":33,"y":48},{"x":38,"y":11},{"x":-6,"y":-26},{"x":75,"y":66},{"x":-133,"y":93},{"x":-22,"y":-14},{"x":19,"y":22},{"x":-37,"y":8},{"x":-12,"y":94},{"x":130,"y":999},{"x":36,"y":127},{"x":40,"y":2},{"x":14,"y":45},{"x":-33,"y":-36},{"x":8,"y":59},{"x":-60,"y":73},{"x":43,"y":-13},{"x":25,"y":-56},{"x":34,"y":0},{"x":-23,"y":34},{"x":58,"y":0},{"x":-68,"y":23},{"x":28,"y":11},{"x":-10,"y":104},{"x":163,"y":470},{"x":130,"y":61},{"x":16,"y":98},{"x":45,"y":-30},{"x":21,"y":14},{"x":-36,"y":15},{"x":35,"y":-1},{"x":-10,"y":57},{"x":42,"y":-37},{"x":-20,"y":-50},{"x":64,"y":62},{"x":24,"y":131},{"x":45,"y":49},{"x":-5,"y":20},{"x":-26,"y":-50},{"x":-8,"y":174},{"x":54,"y":44},{"x":23,"y":-26},{"x":20,"y":26},{"x":54,"y":-7},{"x":8,"y":44},{"x":-26,"y":15},{"x":-18,"y":-21},{"x":-36,"y":38},{"x":11,"y":128},{"x":39,"y":40},{"x":82,"y":-8}],"type":"coastline"},{"arc":[{"x":107299,"y":86607},{"x":24,"y":-134},{"x":-91,"y":-140},{"x":43,"y":-79},{"x":-56,"y":-109},{"x":-89,"y":-81},{"x":24,"y":-88},{"x":-101,"y":-47},{"x":-77,"y":30},{"x":-90,"y":-52},{"x":3,"y":-133},{"x":-28,"y":-80},{"x":-95,"y":-93},{"x":-17,"y":-187},{"x":-53,"y":-9},{"x":-19,"y":42},{"x":-74,"y":-23},{"x":-46,"y":20},{"x":-60,"y":-99},{"x":-116,"y":-75},{"x":-40,"y":7},{"x":-6,"y":-98},{"x":37,"y":-110},{"x":62,"y":1},{"x":106,"y":-83},{"x":62,"y":14},{"x":73,"y":-61},{"x":76,"y":-12},{"x":8,"y":-81},{"x":39,"y":1},{"x":-27,"y":-48},{"x":155,"y":-166},{"x":-28,"y":-42},{"x":31,"y":-49},{"x":77,"y":-43},{"x":-29,"y":-23},{"x":24,"y":-37},{"x":-22,"y":-67},{"x":99,"y":-249},{"x":-66,"y":-46},{"x":-12,"y":-101},{"x":42,"y":-33},{"x":17,"y":-83},{"x":105,"y":-108},{"x":35,"y":-131},{"x":-30,"y":-83},{"x":78,"y":-202}],"type":"admin"},{"arc":[{"x":107247,"y":83337},{"x":60,"y":-21},{"x":5,"y":-63},{"x":68,"y":-41},{"x":10,"y":-31},{"x":-46,"y":-37},{"x":58,"y":-38},{"x":23,"y":-62},{"x":165,"y":15},{"x":-20,"y":138},{"x":31,"y":-15},{"x":57,"y":47},{"x":193,"y":8},{"x":201,"y":-69},{"x":-23,"y":68},{"x":121,"y":46},{"x":87,"y":72},{"x":240,"y":-8},{"x":285,"y":44},{"x":65,"y":-38},{"x":53,"y":65},{"x":49,"y":12}],"type":"area"},{"arc":[{"x":108929,"y":83429},{"x":-61,"y":331},{"x":-35,"y":60},{"x":0,"y":-20},{"x":-27,"y":11},{"x":23,"y":42},{"x":-26,"y":-8},{"x":-21,"y":58},{"x":16,"y":282},{"x":-52,"y":154},{"x":-21,"y":439},{"x":44,"y":683},{"x":39,"y":59},{"x":-27,"y":-4},{"x":39,"y":242},{"x":-29,"y":14},{"x":12,"y":144},{"x":38,"y":82},{"x":36,"y":-2},{"x":-21,"y":21},{"x":38,"y":1},{"x":10,"y":72},{"x":-30,"y":22},{"x":24,"y":63},{"x":62,"y":1},{"x":-24,"y":43}],"type":"coastline"},{"arc":[{"x":109181,"y":80823},{"x":-119,"y":-109},{"x":-136,"y":48},{"x":136,"y":-49},{"x":119,"y":110}],"type":"coastline"},{"arc":[{"x":107247,"y":83337},{"x":-75,"y":-63},{"x":-61,"y":31},{"x":-154,"y":-121},{"x":-162,"y":6},{"x":-99,"y":-56},{"x":-54,"y":14},{"x":-39,"y":-28},{"x":-43,"y":25},{"x":-60,"y":-39},{"x":-89,"y":10},{"x":-23,"y":-45},{"x":-73,"y":-13},{"x":-47,"y":-45},{"x":13,"y":-86},{"x":-61,"y":-71},{"x":37,"y":-142},{"x":-118,"y":-87},{"x":-168,"y":125},{"x":-133,"y":11},{"x":-88,"y":48},{"x":-41,"y":-23},{"x":-1,"y":-54},{"x":75,"y":-24},{"x":23,"y":-64},{"x":-5,"y":-58},{"x":-56,"y":-36},{"x":10,"y":-49},{"x":-50,"y":-56},{"x":-5,"y":-61},{"x":-63,"y":-56},{"x":24,"y":-59},{"x":-45,"y":-27},{"x":-17,"y":-70},{"x":58,"y":-151},{"x":-12,"y":-48},{"x":81,"y":-51},{"x":11,"y":-64},{"x":-47,"y":-86},{"x":-46,"y":-16},{"x":-34,"y":20},{"x":-45,"y":-29},{"x":-28,"y":38},{"x":-204,"y":53},{"x":-43,"y":50},{"x":-167,"y":4},{"x":-65,"y":-66},{"x":-12,"y":-238},{"x":-116,"y":-141},{"x":55,"y":-130},{"x":-125,"y":-99},{"x":45,"y":-98},{"x":-19,"y":-20},{"x":74,"y":-91},{"x":-23,"y":-44},{"x":-71,"y":-42},{"x":-219,"y":24},{"x":-53,"y":-52},{"x":7,"y":-57},{"x":-80,"y":-61}],"type":"admin"},{"arc":[{"x":104521,"y":80779},{"x":202,"y":-153},{"x":-15,"y":-134},{"x":-71,"y":8},{"x":-18,"y":-26},{"x":59,"y":-150},{"x":-65,"y":-333},{"x":64,"y":-57},{"x":-89,"y":-148},{"x":46,"y":-45},{"x":44,"y":1}],"type":"admin"},{"arc":[{"x":104678,"y":79742},{"x":19,"y":38},{"x":28,"y":-14},{"x":20,"y":21},{"x":88,"y":-43},{"x":137,"y":69},{"x":124,"y":-42},{"x":53,"y":51},{"x":72,"y":-12},{"x":83,"y":26},{"x":85,"y":70},{"x":74,"y":207},{"x":124,"y":86},{"x":140,"y":-43},{"x":34,"y":-57},{"x":69,"y":20},{"x":56,"y":-21},{"x":76,"y":-103},{"x":-52,"y":-126},{"x":144,"y":-1},{"x":146,"y":227},{"x":69,"y":238},{"x":70,"y":83},{"x":-24,"y":75},{"x":37,"y":87},{"x":91,"y":77},{"x":-20,"y":175},{"x":43,"y":50},{"x":-16,"y":76},{"x":68,"y":147},{"x":131,"y":-25},{"x":97,"y":-62},{"x":109,"y":59},{"x":164,"y":-113},{"x":42,"y":47},{"x":36,"y":-23},{"x":194,"y":3},{"x":156,"y":91},{"x":-3,"y":65},{"x":75,"y":20},{"x":6,"y":47},{"x":127,"y":-86},{"x":79,"y":60},{"x":138,"y":-5},{"x":196,"y":-93},{"x":144,"y":-286},{"x":324,"y":-387},{"x":438,"y":-188},{"x":84,"y":20},{"x":105,"y":136},{"x":27,"y":204}],"type":"admin"},{"arc":[{"x":109185,"y":80587},{"x":-26,"y":41},{"x":57,"y":172},{"x":-144,"y":-168},{"x":-57,"y":-6},{"x":37,"y":-39},{"x":-39,"y":4},{"x":-6,"y":22},{"x":-25,"y":-12},{"x":5,"y":74},{"x":-81,"y":37},{"x":-42,"y":-74},{"x":-107,"y":69},{"x":-227,"y":232},{"x":-133,"y":260},{"x":-126,"y":617},{"x":85,"y":198},{"x":30,"y":1},{"x":-6,"y":-32},{"x":14,"y":41},{"x":112,"y":46},{"x":27,"y":-25},{"x":66,"y":91},{"x":70,"y":34},{"x":40,"y":199},{"x":160,"y":197},{"x":47,"y":171},{"x":-12,"y":90},{"x":43,"y":39},{"x":-24,"y":78},{"x":25,"y":84},{"x":53,"y":71},{"x":9,"y":-16},{"x":12,"y":207},{"x":-50,"y":34},{"x":-43,"y":105}],"type":"coastline"},{"arc":[{"x":106556,"y":75356},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":106558,"y":75354},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":109367,"y":79089},{"x":-40,"y":-8},{"x":31,"y":-29},{"x":9,"y":37}],"type":"coastline"},{"arc":[{"x":109502,"y":80557},{"x":-10,"y":32},{"x":-28,"y":-14},{"x":8,"y":-62},{"x":30,"y":44}],"type":"coastline"},{"arc":[{"x":109632,"y":79663},{"x":-5,"y":20},{"x":-31,"y":-38},{"x":-42,"y":13},{"x":12,"y":-50},{"x":66,"y":55}],"type":"coastline"},{"arc":[{"x":104678,"y":79742},{"x":25,"y":-77},{"x":76,"y":-55},{"x":-25,"y":-136},{"x":30,"y":-45},{"x":-70,"y":-82},{"x":32,"y":-196},{"x":-112,"y":-75},{"x":-13,"y":-142},{"x":86,"y":-61},{"x":10,"y":-69},{"x":89,"y":-15},{"x":24,"y":-86},{"x":66,"y":-27},{"x":39,"y":-72},{"x":-35,"y":-65},{"x":-104,"y":-21},{"x":-35,"y":-41},{"x":-72,"y":-190},{"x":81,"y":-126},{"x":-32,"y":-63},{"x":35,"y":-20},{"x":18,"y":-110},{"x":177,"y":-111},{"x":-24,"y":-173},{"x":-62,"y":-93},{"x":-65,"y":-22},{"x":-255,"y":-237},{"x":-91,"y":70},{"x":-52,"y":-3},{"x":1,"y":-72},{"x":-62,"y":-107},{"x":-114,"y":-39},{"x":-121,"y":-158},{"x":-104,"y":-6},{"x":-77,"y":-173},{"x":-36,"y":-18},{"x":-85,"y":42},{"x":-64,"y":-100},{"x":-4,"y":-84},{"x":-95,"y":61},{"x":-9,"y":-29},{"x":-53,"y":3},{"x":-37,"y":-56},{"x":56,"y":-30},{"x":-135,"y":-143},{"x":67,"y":-102},{"x":-34,"y":-41},{"x":20,"y":-30},{"x":-29,"y":-103}],"type":"admin"},{"arc":[{"x":103504,"y":76214},{"x":86,"y":-26},{"x":64,"y":28},{"x":-19,"y":-120},{"x":40,"y":-100},{"x":62,"y":-20},{"x":53,"y":23},{"x":51,"y":-66},{"x":34,"y":52},{"x":-28,"y":74},{"x":51,"y":20},{"x":28,"y":-35},{"x":127,"y":6},{"x":24,"y":82},{"x":68,"y":37},{"x":21,"y":64},{"x":44,"y":-9},{"x":40,"y":74},{"x":-42,"y":39},{"x":14,"y":76},{"x":-34,"y":14},{"x":3,"y":38},{"x":59,"y":-17},{"x":42,"y":23},{"x":63,"y":-47},{"x":104,"y":82},{"x":54,"y":-39},{"x":7,"y":-106},{"x":139,"y":-97},{"x":-29,"y":-71},{"x":72,"y":-39},{"x":-7,"y":-55},{"x":62,"y":13},{"x":16,"y":-20},{"x":12,"y":-91},{"x":113,"y":69},{"x":47,"y":14},{"x":44,"y":-38},{"x":46,"y":55},{"x":55,"y":10},{"x":32,"y":-37},{"x":-25,"y":-104},{"x":61,"y":-28},{"x":111,"y":-166},{"x":96,"y":69},{"x":40,"y":101},{"x":185,"y":79},{"x":0,"y":42},{"x":147,"y":1},{"x":59,"y":-44},{"x":72,"y":-8},{"x":107,"y":-84},{"x":-25,"y":-70},{"x":-75,"y":12},{"x":15,"y":-81},{"x":65,"y":-38},{"x":6,"y":-67},{"x":37,"y":-21},{"x":-13,"y":-42},{"x":52,"y":-9},{"x":-2,"y":-63},{"x":137,"y":-147},{"x":48,"y":-13},{"x":93,"y":36},{"x":242,"y":-71}],"type":"area"},{"arc":[{"x":106555,"y":75358},{"x":83,"y":310},{"x":68,"y":104},{"x":205,"y":163},{"x":203,"y":103},{"x":70,"y":8},{"x":-18,"y":10},{"x":342,"y":78},{"x":255,"y":-17},{"x":34,"y":-31},{"x":-18,"y":-36},{"x":25,"y":19},{"x":120,"y":-171},{"x":25,"y":-172},{"x":154,"y":51},{"x":-38,"y":77},{"x":38,"y":25},{"x":-19,"y":31},{"x":23,"y":12},{"x":56,"y":-46},{"x":-34,"y":68},{"x":34,"y":0},{"x":-25,"y":6},{"x":26,"y":16},{"x":-11,"y":47},{"x":42,"y":-6},{"x":-33,"y":20},{"x":33,"y":31},{"x":-54,"y":2},{"x":35,"y":2},{"x":-25,"y":22},{"x":37,"y":-9},{"x":36,"y":66},{"x":-6,"y":25},{"x":-40,"y":-4},{"x":11,"y":41},{"x":-33,"y":23},{"x":105,"y":-14},{"x":-30,"y":130},{"x":-16,"y":26},{"x":-24,"y":-17},{"x":-30,"y":57},{"x":56,"y":106},{"x":0,"y":156},{"x":46,"y":26},{"x":-42,"y":52},{"x":85,"y":45},{"x":35,"y":-81},{"x":-33,"y":-9},{"x":42,"y":0},{"x":90,"y":-163},{"x":10,"y":150},{"x":52,"y":60},{"x":-17,"y":37},{"x":77,"y":330},{"x":47,"y":8},{"x":83,"y":90},{"x":0,"y":97},{"x":76,"y":48},{"x":-26,"y":59},{"x":73,"y":133},{"x":-27,"y":30},{"x":56,"y":38},{"x":-29,"y":91},{"x":17,"y":252},{"x":77,"y":91},{"x":-39,"y":38},{"x":-14,"y":113},{"x":43,"y":115},{"x":-38,"y":68},{"x":8,"y":61},{"x":45,"y":31},{"x":37,"y":-26},{"x":-9,"y":31},{"x":39,"y":-9},{"x":-23,"y":-26},{"x":36,"y":-20},{"x":-35,"y":-18},{"x":65,"y":26},{"x":108,"y":-12},{"x":-27,"y":95},{"x":49,"y":-19},{"x":-27,"y":91},{"x":41,"y":2},{"x":-29,"y":13},{"x":-4,"y":64},{"x":-42,"y":-11},{"x":28,"y":28},{"x":-44,"y":48},{"x":15,"y":50},{"x":24,"y":-5},{"x":-32,"y":114},{"x":43,"y":23},{"x":82,"y":-42},{"x":38,"y":23},{"x":-23,"y":21},{"x":23,"y":19},{"x":20,"y":-18},{"x":20,"y":70},{"x":-47,"y":-4},{"x":-9,"y":63},{"x":22,"y":17},{"x":33,"y":-29},{"x":4,"y":51},{"x":42,"y":0},{"x":1,"y":54},{"x":70,"y":4},{"x":57,"y":-100},{"x":-5,"y":52},{"x":44,"y":42},{"x":-60,"y":56},{"x":79,"y":16},{"x":-56,"y":190},{"x":17,"y":39},{"x":40,"y":-44},{"x":21,"y":12},{"x":1,"y":-31},{"x":20,"y":63},{"x":22,"y":-37},{"x":70,"y":-3},{"x":-23,"y":-22},{"x":47,"y":-50},{"x":27,"y":49},{"x":2,"y":68},{"x":-59,"y":-5},{"x":-1,"y":109},{"x":-79,"y":24},{"x":-4,"y":-24},{"x":-120,"y":100},{"x":38,"y":31},{"x":7,"y":90},{"x":-37,"y":-82},{"x":-89,"y":83},{"x":-46,"y":-12},{"x":-21,"y":22},{"x":14,"y":53},{"x":-26,"y":24},{"x":38,"y":23},{"x":-26,"y":16},{"x":21,"y":27},{"x":24,"y":-30},{"x":63,"y":38},{"x":-7,"y":27},{"x":-77,"y":13},{"x":29,"y":32},{"x":-25,"y":3},{"x":9,"y":38},{"x":39,"y":-5},{"x":3,"y":40},{"x":-51,"y":34},{"x":-14,"y":59},{"x":92,"y":-18},{"x":6,"y":-23},{"x":11,"y":26},{"x":38,"y":-24},{"x":25,"y":38},{"x":-31,"y":39},{"x":-88,"y":-13},{"x":25,"y":19},{"x":-31,"y":110},{"x":31,"y":36},{"x":49,"y":-21},{"x":1,"y":26},{"x":57,"y":2},{"x":-37,"y":24},{"x":29,"y":47},{"x":-29,"y":9},{"x":13,"y":59},{"x":-33,"y":-72},{"x":-48,"y":-9},{"x":25,"y":90},{"x":-31,"y":5},{"x":4,"y":61},{"x":51,"y":55},{"x":-27,"y":19},{"x":-22,"y":-31},{"x":-8,"y":47},{"x":52,"y":23},{"x":-28,"y":51},{"x":50,"y":5},{"x":14,"y":31},{"x":-71,"y":80},{"x":55,"y":-2},{"x":-33,"y":80},{"x":39,"y":28},{"x":-67,"y":33},{"x":34,"y":17},{"x":-33,"y":34},{"x":49,"y":22},{"x":-64,"y":63},{"x":-15,"y":88},{"x":-94,"y":-140},{"x":44,"y":-2},{"x":-42,"y":-3},{"x":-39,"y":-433},{"x":-47,"y":-65}],"type":"coastline"},{"arc":[{"x":102430,"y":69559},{"x":-30,"y":67},{"x":22,"y":-98},{"x":8,"y":31}],"type":"coastline"},{"arc":[{"x":103022,"y":71266},{"x":-18,"y":12},{"x":-15,"y":-36},{"x":33,"y":24}],"type":"coastline"},{"arc":[{"x":103069,"y":71341},{"x":-64,"y":12},{"x":-4,"y":-21},{"x":59,"y":-34},{"x":9,"y":43}],"type":"coastline"},{"arc":[{"x":103082,"y":71257},{"x":-34,"y":2},{"x":-7,"y":-51},{"x":41,"y":49}],"type":"coastline"},{"arc":[{"x":106556,"y":75356},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":103504,"y":76214},{"x":-170,"y":-72},{"x":-116,"y":-192},{"x":-152,"y":-74},{"x":-19,"y":-65},{"x":-37,"y":24},{"x":9,"y":149},{"x":-91,"y":58},{"x":43,"y":96},{"x":-93,"y":38},{"x":-37,"y":169},{"x":-293,"y":69},{"x":-67,"y":-98},{"x":13,"y":-40},{"x":62,"y":-12},{"x":10,"y":-86},{"x":-60,"y":-62},{"x":-121,"y":-25},{"x":-2,"y":-77},{"x":77,"y":-56},{"x":-29,"y":-65},{"x":53,"y":-100},{"x":0,"y":-129},{"x":-52,"y":-30},{"x":-44,"y":11},{"x":-23,"y":-62},{"x":29,"y":-40},{"x":-119,"y":-72},{"x":18,"y":-32},{"x":-57,"y":-28},{"x":-51,"y":-102},{"x":-52,"y":-12},{"x":20,"y":-107},{"x":-111,"y":-81},{"x":-15,"y":-44},{"x":86,"y":-143},{"x":-76,"y":-111},{"x":52,"y":-82},{"x":-41,"y":-87},{"x":49,"y":-97},{"x":-15,"y":-135},{"x":63,"y":19},{"x":129,"y":-156},{"x":-64,"y":-53},{"x":-4,"y":-71},{"x":-139,"y":31},{"x":-13,"y":-80},{"x":-174,"y":-140},{"x":41,"y":-30},{"x":19,"y":-89},{"x":87,"y":12},{"x":57,"y":-68},{"x":-27,"y":-174},{"x":-77,"y":-137},{"x":33,"y":-87},{"x":77,"y":-39},{"x":-79,"y":-98},{"x":-34,"y":7},{"x":-125,"y":-69},{"x":66,"y":-138},{"x":61,"y":-7},{"x":20,"y":-37},{"x":66,"y":27},{"x":-6,"y":-65},{"x":81,"y":-80},{"x":-5,"y":-137},{"x":-45,"y":-29},{"x":-26,"y":42},{"x":-150,"y":-8},{"x":-66,"y":-77},{"x":-23,"y":12},{"x":-36,"y":-72},{"x":-47,"y":14},{"x":-44,"y":-37},{"x":-27,"y":20},{"x":-75,"y":-18},{"x":-44,"y":-98},{"x":36,"y":-57},{"x":-40,"y":-54},{"x":-58,"y":6},{"x":-45,"y":-57},{"x":30,"y":-87},{"x":-53,"y":-31},{"x":-142,"y":-240},{"x":-59,"y":-14},{"x":-19,"y":-84},{"x":-82,"y":-10},{"x":-74,"y":99},{"x":8,"y":126},{"x":-88,"y":28},{"x":-41,"y":-55},{"x":-291,"y":-138},{"x":-61,"y":-74},{"x":-120,"y":24},{"x":-158,"y":-113},{"x":-102,"y":10},{"x":-59,"y":94},{"x":-59,"y":-40},{"x":-58,"y":8}],"type":"admin"},{"arc":[{"x":100017,"y":71841},{"x":-44,"y":-59},{"x":-58,"y":8},{"x":-93,"y":-40},{"x":-73,"y":-109},{"x":-165,"y":-125},{"x":-69,"y":-247},{"x":-86,"y":-36},{"x":-55,"y":8},{"x":-127,"y":-95},{"x":-30,"y":122},{"x":-63,"y":59},{"x":-96,"y":-20},{"x":-137,"y":89}],"type":"admin"},{"arc":[{"x":98921,"y":71396},{"x":11,"y":-231},{"x":-52,"y":-33},{"x":-10,"y":-76},{"x":-97,"y":-75},{"x":-139,"y":6},{"x":-58,"y":-51},{"x":-33,"y":-96},{"x":-137,"y":-59},{"x":-60,"y":59},{"x":-197,"y":75},{"x":-41,"y":50},{"x":-102,"y":0},{"x":-62,"y":-46},{"x":1,"y":-76},{"x":-119,"y":-65},{"x":-26,"y":-59},{"x":-59,"y":-10},{"x":-19,"y":-51},{"x":-91,"y":10},{"x":-79,"y":-41},{"x":-24,"y":-73},{"x":-70,"y":21},{"x":-68,"y":-34},{"x":136,"y":-113},{"x":28,"y":5},{"x":40,"y":-97},{"x":51,"y":-24},{"x":46,"y":-83},{"x":-190,"y":-154},{"x":87,"y":-94},{"x":-57,"y":-28},{"x":-98,"y":14},{"x":-22,"y":-35}],"type":"admin"},{"arc":[{"x":97411,"y":69932},{"x":-38,"y":-166},{"x":60,"y":-116},{"x":-25,"y":-32},{"x":28,"y":-54},{"x":-82,"y":-22},{"x":25,"y":-62},{"x":-27,"y":-24},{"x":77,"y":-32},{"x":69,"y":-147},{"x":87,"y":-12},{"x":59,"y":-147},{"x":41,"y":-20},{"x":61,"y":37},{"x":60,"y":-2},{"x":131,"y":-108},{"x":98,"y":16},{"x":62,"y":-30},{"x":62,"y":73},{"x":105,"y":45},{"x":13,"y":49},{"x":126,"y":18},{"x":116,"y":55},{"x":103,"y":-3},{"x":8,"y":-180},{"x":-32,"y":-73},{"x":63,"y":-47},{"x":-111,"y":-137},{"x":39,"y":-66},{"x":-40,"y":-129},{"x":71,"y":-84},{"x":-7,"y":-37},{"x":81,"y":-28},{"x":81,"y":41},{"x":22,"y":-28},{"x":103,"y":-13},{"x":44,"y":39},{"x":65,"y":2},{"x":44,"y":-44},{"x":-25,"y":-87},{"x":135,"y":-2},{"x":103,"y":-110}],"type":"admin"},{"arc":[{"x":99266,"y":68265},{"x":63,"y":10},{"x":74,"y":95},{"x":-14,"y":34},{"x":151,"y":164},{"x":46,"y":-47},{"x":68,"y":38},{"x":58,"y":-37},{"x":81,"y":35},{"x":52,"y":-20},{"x":-21,"y":81},{"x":71,"y":27},{"x":16,"y":61},{"x":42,"y":25},{"x":62,"y":-60},{"x":289,"y":-12},{"x":-5,"y":-92},{"x":74,"y":-93},{"x":270,"y":45},{"x":-3,"y":-44},{"x":68,"y":3},{"x":8,"y":-51},{"x":60,"y":9},{"x":54,"y":-47},{"x":29,"y":35},{"x":87,"y":18}],"type":"admin"},{"arc":[{"x":100946,"y":68442},{"x":-37,"y":3},{"x":-17,"y":95},{"x":-4,"y":-24},{"x":-24,"y":32},{"x":46,"y":145},{"x":-35,"y":18},{"x":20,"y":172},{"x":144,"y":471},{"x":194,"y":328},{"x":63,"y":49},{"x":46,"y":-10},{"x":-2,"y":55},{"x":94,"y":74},{"x":70,"y":-15},{"x":27,"y":46},{"x":30,"y":-47},{"x":92,"y":-31},{"x":43,"y":73},{"x":-21,"y":124},{"x":50,"y":-10},{"x":-6,"y":42},{"x":63,"y":-6},{"x":61,"y":30},{"x":-22,"y":108},{"x":36,"y":20},{"x":-33,"y":-12},{"x":5,"y":19},{"x":89,"y":18},{"x":106,"y":102},{"x":-58,"y":-54},{"x":-72,"y":23},{"x":24,"y":48},{"x":61,"y":24},{"x":24,"y":87},{"x":83,"y":17},{"x":41,"y":42},{"x":50,"y":-20},{"x":21,"y":39},{"x":32,"y":-12},{"x":108,"y":269},{"x":70,"y":41},{"x":62,"y":0},{"x":53,"y":108},{"x":113,"y":57},{"x":39,"y":-66},{"x":50,"y":11},{"x":40,"y":102},{"x":-49,"y":-32},{"x":21,"y":24},{"x":-31,"y":7},{"x":51,"y":6},{"x":29,"y":68},{"x":37,"y":-18},{"x":-8,"y":45},{"x":39,"y":14},{"x":-29,"y":93},{"x":-53,"y":-51},{"x":-6,"y":120},{"x":46,"y":24},{"x":3,"y":-47},{"x":53,"y":-4},{"x":8,"y":44},{"x":86,"y":-24},{"x":-43,"y":14},{"x":20,"y":44},{"x":27,"y":-17},{"x":-14,"y":34},{"x":36,"y":-11},{"x":-51,"y":25},{"x":13,"y":27},{"x":65,"y":-51},{"x":57,"y":-5},{"x":32,"y":48},{"x":-31,"y":62},{"x":65,"y":6},{"x":-4,"y":33},{"x":11,"y":-42},{"x":-40,"y":-20},{"x":49,"y":-29},{"x":10,"y":26},{"x":34,"y":-11},{"x":71,"y":99},{"x":48,"y":-7},{"x":40,"y":165},{"x":55,"y":22},{"x":48,"y":-30},{"x":15,"y":42},{"x":54,"y":19},{"x":-18,"y":40},{"x":126,"y":222},{"x":122,"y":46},{"x":118,"y":241},{"x":112,"y":83},{"x":213,"y":244},{"x":65,"y":11},{"x":-56,"y":-3},{"x":14,"y":42},{"x":67,"y":2},{"x":38,"y":27},{"x":-57,"y":-26},{"x":35,"y":43},{"x":26,"y":122},{"x":33,"y":18},{"x":-32,"y":49},{"x":12,"y":64},{"x":169,"y":319},{"x":156,"y":60},{"x":37,"y":78},{"x":62,"y":-35},{"x":52,"y":6},{"x":76,"y":68},{"x":-50,"y":44},{"x":-3,"y":53},{"x":65,"y":-61},{"x":9,"y":38},{"x":26,"y":-16},{"x":3,"y":52},{"x":31,"y":-1},{"x":-25,"y":19},{"x":42,"y":-6},{"x":17,"y":25},{"x":-33,"y":23},{"x":52,"y":38},{"x":19,"y":-15},{"x":7,"y":60},{"x":69,"y":-4},{"x":-24,"y":46},{"x":39,"y":-11},{"x":0,"y":53},{"x":26,"y":-22},{"x":4,"y":81},{"x":47,"y":44},{"x":77,"y":19},{"x":66,"y":-78},{"x":-2,"y":72},{"x":88,"y":20},{"x":18,"y":49},{"x":-30,"y":-6},{"x":46,"y":42},{"x":84,"y":-20},{"x":-11,"y":20},{"x":71,"y":18},{"x":24,"y":80},{"x":34,"y":-23},{"x":33,"y":17},{"x":-6,"y":48},{"x":71,"y":-34},{"x":-7,"y":96},{"x":83,"y":157},{"x":103,"y":121},{"x":73,"y":12},{"x":52,"y":149},{"x":74,"y":7},{"x":-20,"y":109},{"x":90,"y":57},{"x":41,"y":150},{"x":100,"y":19},{"x":186,"y":353}],"type":"coastline"},{"arc":[{"x":113465,"y":79279},{"x":-30,"y":21},{"x":-36,"y":-17},{"x":66,"y":-4}],"type":"coastline"},{"arc":[{"x":113485,"y":79100},{"x":-87,"y":-33},{"x":79,"y":-17},{"x":8,"y":50}],"type":"coastline"},{"arc":[{"x":113777,"y":78705},{"x":-30,"y":150},{"x":26,"y":32},{"x":-90,"y":109},{"x":38,"y":-2},{"x":-61,"y":14},{"x":-73,"y":97},{"x":-25,"y":142},{"x":-38,"y":-59},{"x":-99,"y":2},{"x":-18,"y":-38},{"x":30,"y":-46},{"x":76,"y":21},{"x":-5,"y":-84},{"x":41,"y":11},{"x":40,"y":-52},{"x":-117,"y":-26},{"x":55,"y":-42},{"x":-63,"y":-24},{"x":64,"y":-52},{"x":-46,"y":-108},{"x":23,"y":-31},{"x":55,"y":31},{"x":58,"y":-49},{"x":24,"y":35},{"x":17,"y":-42},{"x":25,"y":28},{"x":77,"y":-49},{"x":16,"y":32}],"type":"coastline"},{"arc":[{"x":114547,"y":79960},{"x":-16,"y":24},{"x":-58,"y":-18},{"x":-6,"y":29},{"x":-57,"y":-24},{"x":50,"y":-73},{"x":87,"y":62}],"type":"coastline"},{"arc":[{"x":114605,"y":79555},{"x":-15,"y":15},{"x":-14,"y":-33},{"x":6,"y":39},{"x":-28,"y":-4},{"x":-34,"y":139},{"x":-25,"y":12},{"x":-28,"y":-61},{"x":-34,"y":76},{"x":-38,"y":-73},{"x":-72,"y":9},{"x":-55,"y":-80},{"x":-30,"y":11},{"x":13,"y":105},{"x":26,"y":-10},{"x":7,"y":34},{"x":-37,"y":80},{"x":-75,"y":55},{"x":1,"y":-62},{"x":73,"y":-53},{"x":-84,"y":-49},{"x":34,"y":-27},{"x":-25,"y":-38},{"x":45,"y":-43},{"x":-5,"y":-38},{"x":-44,"y":34},{"x":-11,"y":-19},{"x":-21,"y":26},{"x":-61,"y":-9},{"x":76,"y":-158},{"x":-76,"y":89},{"x":-32,"y":-5},{"x":2,"y":-60},{"x":-30,"y":34},{"x":-7,"y":-64},{"x":-43,"y":29},{"x":7,"y":40},{"x":-31,"y":-8},{"x":26,"y":-129},{"x":-70,"y":1},{"x":-5,"y":-91},{"x":-34,"y":48},{"x":-32,"y":-12},{"x":-30,"y":-93},{"x":146,"y":31},{"x":76,"y":-20},{"x":36,"y":65},{"x":49,"y":-30},{"x":15,"y":42},{"x":60,"y":-25},{"x":-23,"y":-43},{"x":30,"y":-29},{"x":42,"y":59},{"x":28,"y":-41},{"x":19,"y":23},{"x":81,"y":-57},{"x":68,"y":-10},{"x":-4,"y":38},{"x":57,"y":45},{"x":-38,"y":51},{"x":59,"y":-32},{"x":53,"y":45},{"x":-55,"y":44},{"x":-106,"y":-17},{"x":-9,"y":36},{"x":63,"y":-4},{"x":29,"y":41},{"x":28,"y":-30},{"x":9,"y":44},{"x":10,"y":-56},{"x":64,"y":24},{"x":23,"y":149}],"type":"coastline"},{"arc":[{"x":114794,"y":80043},{"x":-29,"y":37},{"x":-36,"y":-88},{"x":65,"y":51}],"type":"coastline"},{"arc":[{"x":114820,"y":79217},{"x":-26,"y":5},{"x":20,"y":91},{"x":-41,"y":-11},{"x":11,"y":101},{"x":-89,"y":-55},{"x":-40,"y":10},{"x":-112,"y":-133},{"x":-4,"y":-176},{"x":-33,"y":-52},{"x":-29,"y":19},{"x":-16,"y":-28},{"x":-55,"y":49},{"x":-35,"y":-14},{"x":5,"y":44},{"x":-124,"y":55},{"x":-39,"y":-53},{"x":-93,"y":19},{"x":-26,"y":-44},{"x":-51,"y":-7},{"x":42,"y":-76},{"x":-20,"y":-109},{"x":101,"y":-58},{"x":3,"y":-60},{"x":36,"y":25},{"x":43,"y":-39},{"x":27,"y":20},{"x":48,"y":-22},{"x":70,"y":59},{"x":75,"y":-52},{"x":-66,"y":14},{"x":-55,"y":-24},{"x":-23,"y":-55},{"x":19,"y":-62},{"x":-84,"y":14},{"x":30,"y":-54},{"x":62,"y":6},{"x":-91,"y":-72},{"x":-50,"y":51},{"x":-20,"y":-18},{"x":-64,"y":36},{"x":-11,"y":-18},{"x":-22,"y":39},{"x":-138,"y":39},{"x":-75,"y":62},{"x":-55,"y":-20},{"x":105,"y":-97},{"x":34,"y":-88},{"x":45,"y":-12},{"x":12,"y":-147},{"x":37,"y":-37},{"x":24,"y":44},{"x":-2,"y":-72},{"x":111,"y":61},{"x":-2,"y":-46},{"x":33,"y":-17},{"x":2,"y":38},{"x":99,"y":40},{"x":20,"y":99},{"x":27,"y":8},{"x":15,"y":-61},{"x":168,"y":125},{"x":16,"y":65},{"x":-80,"y":-7},{"x":62,"y":74},{"x":-3,"y":42},{"x":-60,"y":50},{"x":46,"y":3},{"x":36,"y":51},{"x":201,"y":10},{"x":-33,"y":68},{"x":42,"y":35},{"x":-33,"y":125},{"x":-73,"y":15},{"x":46,"y":71},{"x":-53,"y":5},{"x":153,"y":109}],"type":"coastline"},{"arc":[{"x":114963,"y":80666},{"x":-19,"y":-19},{"x":40,"y":8},{"x":-21,"y":11}],"type":"coastline"},{"arc":[{"x":116776,"y":80857},{"x":-19,"y":39},{"x":-101,"y":32},{"x":-23,"y":58},{"x":-58,"y":15},{"x":-20,"y":43},{"x":38,"y":27},{"x":-10,"y":26},{"x":-55,"y":1},{"x":10,"y":-33},{"x":-43,"y":25},{"x":81,"y":95},{"x":-74,"y":-23},{"x":-39,"y":59},{"x":-67,"y":-9},{"x":39,"y":82},{"x":-20,"y":68},{"x":-40,"y":-54},{"x":-2,"y":31},{"x":-30,"y":-9},{"x":-19,"y":40},{"x":-37,"y":0},{"x":0,"y":150},{"x":-42,"y":-13},{"x":23,"y":-23},{"x":-37,"y":-26},{"x":-25,"y":18},{"x":13,"y":42},{"x":-60,"y":-31},{"x":-45,"y":23},{"x":-7,"y":47},{"x":33,"y":21},{"x":-43,"y":18},{"x":-10,"y":44},{"x":-57,"y":-27},{"x":-19,"y":79},{"x":-61,"y":-77},{"x":-31,"y":14},{"x":-75,"y":-42},{"x":-23,"y":26},{"x":-50,"y":-21},{"x":-12,"y":27},{"x":-92,"y":10},{"x":-98,"y":-49},{"x":-152,"y":-12},{"x":-20,"y":-121},{"x":-38,"y":9},{"x":-23,"y":-26},{"x":-11,"y":-101},{"x":101,"y":78},{"x":20,"y":-33},{"x":33,"y":53},{"x":20,"y":-53},{"x":25,"y":-4},{"x":9,"y":38},{"x":24,"y":-47},{"x":40,"y":12},{"x":-39,"y":-60},{"x":-42,"y":22},{"x":-41,"y":-37},{"x":-42,"y":26},{"x":-60,"y":-21},{"x":40,"y":-156},{"x":-59,"y":-77},{"x":-53,"y":29},{"x":58,"y":-5},{"x":-38,"y":96},{"x":49,"y":26},{"x":-34,"y":83},{"x":-45,"y":-8},{"x":-45,"y":34},{"x":-56,"y":-18},{"x":-106,"y":42},{"x":-33,"y":-129},{"x":48,"y":-112},{"x":64,"y":-22},{"x":-56,"y":4},{"x":-16,"y":-46},{"x":48,"y":-15},{"x":22,"y":-41},{"x":-29,"y":-9},{"x":39,"y":-31},{"x":-50,"y":-17},{"x":-29,"y":22},{"x":-6,"y":-30},{"x":73,"y":-19},{"x":-33,"y":-32},{"x":108,"y":11},{"x":17,"y":-20},{"x":-75,"y":-29},{"x":-102,"y":15},{"x":-3,"y":-78},{"x":-56,"y":-62},{"x":82,"y":29},{"x":-24,"y":-34},{"x":33,"y":-10},{"x":-130,"y":-67},{"x":64,"y":-11},{"x":51,"y":40},{"x":39,"y":-31},{"x":1,"y":-49},{"x":-30,"y":39},{"x":-53,"y":-57},{"x":-8,"y":18},{"x":33,"y":-100},{"x":56,"y":84},{"x":43,"y":-33},{"x":33,"y":14},{"x":2,"y":56},{"x":62,"y":-8},{"x":-16,"y":-162},{"x":90,"y":-121},{"x":111,"y":-3},{"x":15,"y":-103},{"x":32,"y":-14},{"x":-22,"y":-86},{"x":23,"y":24},{"x":89,"y":-13},{"x":65,"y":55},{"x":123,"y":-8},{"x":-14,"y":21},{"x":26,"y":3},{"x":41,"y":-35},{"x":11,"y":-86},{"x":66,"y":-1},{"x":66,"y":60},{"x":95,"y":24},{"x":82,"y":2},{"x":47,"y":-69},{"x":14,"y":51},{"x":-96,"y":96},{"x":1,"y":49},{"x":76,"y":-38},{"x":20,"y":128},{"x":7,"y":-193},{"x":11,"y":24},{"x":97,"y":14},{"x":-29,"y":39},{"x":17,"y":71},{"x":78,"y":-24},{"x":57,"y":72},{"x":-12,"y":71},{"x":44,"y":53},{"x":43,"y":-51},{"x":57,"y":-8},{"x":54,"y":179},{"x":-66,"y":70},{"x":25,"y":20},{"x":-20,"y":34},{"x":119,"y":130},{"x":49,"y":7},{"x":28,"y":-39},{"x":3,"y":25}],"type":"coastline"},{"arc":[{"x":103461,"y":88478},{"x":23,"y":-67},{"x":-66,"y":4},{"x":-39,"y":-82},{"x":-90,"y":-3},{"x":-42,"y":-70},{"x":-61,"y":5},{"x":-18,"y":-25},{"x":-59,"y":27},{"x":-28,"y":-46},{"x":49,"y":-46},{"x":-10,"y":-74},{"x":45,"y":-29},{"x":0,"y":-47},{"x":-129,"y":-10},{"x":-54,"y":40},{"x":-40,"y":-16},{"x":14,"y":-76},{"x":56,"y":-7},{"x":4,"y":-120},{"x":-173,"y":-54},{"x":65,"y":-88},{"x":18,"y":-91},{"x":-25,"y":-37},{"x":33,"y":-103},{"x":217,"y":26},{"x":34,"y":-42},{"x":-57,"y":-99},{"x":103,"y":-34},{"x":72,"y":-135},{"x":73,"y":27},{"x":49,"y":-18},{"x":-9,"y":-129},{"x":-43,"y":-41},{"x":25,"y":-65},{"x":-26,"y":-77},{"x":135,"y":-188},{"x":-49,"y":-52},{"x":-43,"y":7},{"x":-54,"y":-43},{"x":-174,"y":-23},{"x":-59,"y":-71},{"x":-74,"y":-11},{"x":-79,"y":32},{"x":-81,"y":-196},{"x":-87,"y":-56},{"x":-71,"y":-212},{"x":27,"y":-134},{"x":114,"y":83},{"x":97,"y":-140},{"x":63,"y":19},{"x":53,"y":-111},{"x":-51,"y":-55},{"x":77,"y":-61},{"x":37,"y":2},{"x":44,"y":93},{"x":40,"y":-45},{"x":41,"y":64},{"x":108,"y":-19},{"x":80,"y":48},{"x":21,"y":-37},{"x":-57,"y":-67},{"x":10,"y":-84},{"x":43,"y":-43},{"x":-79,"y":-59},{"x":-24,"y":-62},{"x":-48,"y":15},{"x":106,"y":-64},{"x":-4,"y":-84},{"x":-41,"y":19},{"x":-43,"y":-20},{"x":99,"y":-45},{"x":2,"y":-69},{"x":59,"y":-25},{"x":17,"y":-84},{"x":-122,"y":-116},{"x":-7,"y":-66},{"x":-51,"y":5},{"x":-59,"y":-67},{"x":13,"y":-83},{"x":58,"y":-16},{"x":18,"y":-89},{"x":145,"y":-36},{"x":-4,"y":-50},{"x":-64,"y":-45},{"x":3,"y":-58},{"x":45,"y":-68},{"x":-13,"y":-92},{"x":52,"y":-16},{"x":52,"y":-111},{"x":-54,"y":-18},{"x":-52,"y":-66},{"x":25,"y":-157},{"x":-45,"y":7},{"x":-11,"y":-36},{"x":-30,"y":5},{"x":-39,"y":-108},{"x":41,"y":-63},{"x":-47,"y":-43},{"x":-211,"y":45},{"x":-54,"y":-129},{"x":-70,"y":-22},{"x":-20,"y":-89},{"x":12,"y":-16},{"x":64,"y":34},{"x":206,"y":-28},{"x":91,"y":-85},{"x":119,"y":-21},{"x":8,"y":-27},{"x":-55,"y":-132},{"x":-101,"y":46},{"x":-66,"y":-32},{"x":-4,"y":-137},{"x":-77,"y":-2},{"x":-62,"y":-51},{"x":-157,"y":64},{"x":-11,"y":-45},{"x":-100,"y":3},{"x":-51,"y":-111},{"x":10,"y":-53},{"x":-47,"y":-61},{"x":-1,"y":-92},{"x":-65,"y":-16},{"x":-38,"y":-59},{"x":120,"y":-172},{"x":-64,"y":-81},{"x":134,"y":-73},{"x":-87,"y":-57},{"x":-26,"y":-113},{"x":97,"y":-71},{"x":-39,"y":-51},{"x":60,"y":-83},{"x":-89,"y":-66},{"x":25,"y":-42},{"x":-55,"y":-49},{"x":11,"y":-47},{"x":-56,"y":-65},{"x":81,"y":-289},{"x":-79,"y":-71},{"x":1,"y":-57},{"x":-49,"y":15},{"x":-80,"y":-63}],"type":"area"},{"arc":[{"x":102606,"y":81260},{"x":29,"y":-57},{"x":52,"y":5},{"x":115,"y":-132},{"x":126,"y":-80},{"x":126,"y":-22},{"x":99,"y":73},{"x":145,"y":-12},{"x":78,"y":59},{"x":180,"y":-95},{"x":85,"y":60},{"x":68,"y":-14},{"x":109,"y":133},{"x":214,"y":12},{"x":60,"y":-48},{"x":27,"y":-87},{"x":198,"y":-107},{"x":131,"y":-170},{"x":73,"y":1}],"type":"admin"},{"arc":[{"x":97422,"y":82882},{"x":-22,"y":19},{"x":-85,"y":-52},{"x":40,"y":-61},{"x":51,"y":7},{"x":16,"y":87}],"type":"coastline"},{"arc":[{"x":97810,"y":82570},{"x":-68,"y":90},{"x":-82,"y":-12},{"x":53,"y":-86},{"x":97,"y":8}],"type":"coastline"},{"arc":[{"x":97825,"y":82714},{"x":-40,"y":46},{"x":-47,"y":1},{"x":7,"y":-31},{"x":80,"y":-16}],"type":"coastline"},{"arc":[{"x":97934,"y":83265},{"x":-45,"y":31},{"x":-8,"y":-53},{"x":-68,"y":-29},{"x":-31,"y":-55},{"x":32,"y":-51},{"x":81,"y":49},{"x":-42,"y":46},{"x":71,"y":21},{"x":10,"y":41}],"type":"coastline"},{"arc":[{"x":98014,"y":83258},{"x":12,"y":-21},{"x":23,"y":19},{"x":-35,"y":2}],"type":"coastline"},{"arc":[{"x":98100,"y":83278},{"x":-41,"y":-24},{"x":17,"y":-28},{"x":24,"y":52}],"type":"coastline"},{"arc":[{"x":98298,"y":82917},{"x":-86,"y":71},{"x":30,"y":47},{"x":-28,"y":3},{"x":-22,"y":-62},{"x":-102,"y":-43},{"x":-45,"y":30},{"x":13,"y":89},{"x":-92,"y":-9},{"x":-2,"y":-110},{"x":148,"y":-218},{"x":80,"y":32},{"x":-27,"y":51},{"x":45,"y":17},{"x":33,"y":40},{"x":-20,"y":12},{"x":67,"y":10},{"x":8,"y":40}],"type":"coastline"},{"arc":[{"x":98434,"y":82777},{"x":-6,"y":18},{"x":-92,"y":-28},{"x":-66,"y":18},{"x":-86,"y":-109},{"x":161,"y":-54},{"x":-4,"y":57},{"x":45,"y":34},{"x":-27,"y":16},{"x":51,"y":7},{"x":24,"y":41}],"type":"coastline"},{"arc":[{"x":98457,"y":85907},{"x":-3,"y":-40}],"type":"coastline"},{"arc":[{"x":98454,"y":85867},{"x":31,"y":25},{"x":-28,"y":15}],"type":"coastline"},{"arc":[{"x":98520,"y":85216},{"x":-75,"y":-46},{"x":59,"y":-24},{"x":16,"y":70}],"type":"coastline"},{"arc":[{"x":98575,"y":84625},{"x":-52,"y":60},{"x":9,"y":46},{"x":-49,"y":17},{"x":-17,"y":-101},{"x":109,"y":-22}],"type":"coastline"},{"arc":[{"x":98613,"y":82679},{"x":-4,"y":40},{"x":-57,"y":-9},{"x":-47,"y":-128},{"x":68,"y":9},{"x":7,"y":77},{"x":33,"y":11}],"type":"coastline"},{"arc":[{"x":98619,"y":82580},{"x":-48,"y":-5},{"x":2,"y":-24},{"x":46,"y":29}],"type":"coastline"},{"arc":[{"x":98755,"y":85345},{"x":-51,"y":1},{"x":41,"y":-21},{"x":10,"y":20}],"type":"coastline"},{"arc":[{"x":98889,"y":84266},{"x":-30,"y":12},{"x":25,"y":-74},{"x":5,"y":62}],"type":"coastline"},{"arc":[{"x":99268,"y":84025},{"x":-131,"y":-7},{"x":2,"y":-113},{"x":-29,"y":-1},{"x":-2,"y":96},{"x":1,"y":-97},{"x":138,"y":3},{"x":21,"y":119}],"type":"coastline"},{"arc":[{"x":99292,"y":86678},{"x":-103,"y":-57},{"x":20,"y":-71}],"type":"admin"},{"arc":[{"x":99209,"y":86550},{"x":84,"y":80},{"x":-1,"y":48}],"type":"coastline"},{"arc":[{"x":99836,"y":87339},{"x":-34,"y":19},{"x":2,"y":-23},{"x":32,"y":4}],"type":"coastline"},{"arc":[{"x":99870,"y":87306},{"x":-66,"y":18},{"x":-12,"y":-75},{"x":28,"y":-13},{"x":50,"y":70}],"type":"coastline"},{"arc":[{"x":99846,"y":87259},{"x":-2,"y":-26},{"x":28,"y":3},{"x":-26,"y":23}],"type":"coastline"},{"arc":[{"x":100182,"y":87738},{"x":-11,"y":29},{"x":-23,"y":-41},{"x":34,"y":12}],"type":"coastline"},{"arc":[{"x":100199,"y":87983},{"x":-30,"y":81},{"x":-41,"y":-61},{"x":25,"y":-29},{"x":46,"y":9}],"type":"coastline"},{"arc":[{"x":100340,"y":88046},{"x":-24,"y":19},{"x":-87,"y":-81},{"x":-14,"y":-209},{"x":46,"y":0},{"x":38,"y":75},{"x":-39,"y":29},{"x":80,"y":167}],"type":"coastline"},{"arc":[{"x":100920,"y":88384},{"x":-6,"y":24},{"x":-50,"y":-6},{"x":8,"y":-56},{"x":-35,"y":-32},{"x":20,"y":-24},{"x":-37,"y":-40},{"x":63,"y":-52},{"x":23,"y":48},{"x":-52,"y":14},{"x":73,"y":23},{"x":-7,"y":101}],"type":"coastline"},{"arc":[{"x":100988,"y":88772},{"x":-18,"y":54},{"x":30,"y":18},{"x":-41,"y":12},{"x":-22,"y":-60},{"x":41,"y":-40},{"x":10,"y":16}],"type":"coastline"},{"arc":[{"x":101006,"y":88499},{"x":-52,"y":58},{"x":15,"y":67},{"x":-28,"y":5},{"x":-55,"y":-91},{"x":47,"y":-44},{"x":-21,"y":-35},{"x":25,"y":-71},{"x":38,"y":35},{"x":-22,"y":41},{"x":53,"y":35}],"type":"coastline"},{"arc":[{"x":101111,"y":89004},{"x":-25,"y":21},{"x":-28,"y":-22},{"x":53,"y":1}],"type":"coastline"},{"arc":[{"x":101165,"y":88729},{"x":-10,"y":36},{"x":-62,"y":9},{"x":6,"y":-70},{"x":27,"y":9},{"x":28,"y":-38},{"x":11,"y":54}],"type":"coastline"},{"arc":[{"x":101192,"y":88516},{"x":-8,"y":39},{"x":-29,"y":-17},{"x":-18,"y":53},{"x":-49,"y":23},{"x":25,"y":-67},{"x":-50,"y":-34},{"x":-17,"y":25},{"x":-13,"y":-51},{"x":22,"y":-36},{"x":20,"y":35},{"x":10,"y":-45},{"x":61,"y":30},{"x":34,"y":-23},{"x":12,"y":68}],"type":"coastline"},{"arc":[{"x":101259,"y":88560},{"x":-52,"y":32},{"x":13,"y":-167},{"x":39,"y":135}],"type":"coastline"},{"arc":[{"x":101372,"y":88156},{"x":-44,"y":50},{"x":-16,"y":-77},{"x":60,"y":27}],"type":"coastline"},{"arc":[{"x":101412,"y":88823},{"x":-29,"y":100},{"x":-123,"y":92},{"x":84,"y":68},{"x":-6,"y":27},{"x":-135,"y":93},{"x":-47,"y":-41},{"x":76,"y":-37},{"x":-26,"y":-41},{"x":36,"y":-43},{"x":-38,"y":-26},{"x":-38,"y":16},{"x":-13,"y":-64},{"x":27,"y":-64},{"x":47,"y":14},{"x":44,"y":-35},{"x":-27,"y":-33},{"x":-41,"y":10},{"x":-18,"y":-103},{"x":10,"y":-66},{"x":57,"y":44},{"x":-37,"y":-57},{"x":39,"y":-39},{"x":77,"y":15},{"x":-32,"y":77},{"x":56,"y":-9},{"x":57,"y":102}],"type":"coastline"},{"arc":[{"x":101334,"y":89006},{"x":97,"y":-50},{"x":42,"y":-135},{"x":-23,"y":-94},{"x":-40,"y":-27},{"x":44,"y":-56},{"x":-60,"y":7},{"x":-19,"y":-41},{"x":48,"y":-6},{"x":-10,"y":-21},{"x":-74,"y":25},{"x":-31,"y":-17},{"x":-37,"y":-195},{"x":55,"y":-75},{"x":-13,"y":-69},{"x":33,"y":56},{"x":77,"y":-27},{"x":-8,"y":-196},{"x":71,"y":-135},{"x":49,"y":-5},{"x":-95,"y":-51},{"x":7,"y":81},{"x":-68,"y":119},{"x":-37,"y":-5},{"x":-27,"y":-95},{"x":-29,"y":18},{"x":-7,"y":154},{"x":-79,"y":-132},{"x":28,"y":64},{"x":-28,"y":97},{"x":66,"y":83},{"x":1,"y":55},{"x":-44,"y":1},{"x":-71,"y":72},{"x":-32,"y":-21},{"x":-12,"y":21},{"x":-28,"y":-30},{"x":47,"y":-27},{"x":-82,"y":-17},{"x":3,"y":-72},{"x":-40,"y":7},{"x":-25,"y":-106},{"x":-39,"y":75},{"x":0,"y":-30},{"x":-20,"y":14},{"x":-55,"y":-58},{"x":13,"y":-72},{"x":-54,"y":17},{"x":13,"y":33},{"x":-34,"y":-8},{"x":18,"y":-32},{"x":-48,"y":-34},{"x":19,"y":-73},{"x":-57,"y":50},{"x":-69,"y":-58},{"x":-8,"y":-62},{"x":56,"y":-42},{"x":-34,"y":-11},{"x":-6,"y":-46},{"x":-204,"y":27},{"x":52,"y":79},{"x":-52,"y":25},{"x":-13,"y":-67},{"x":-156,"y":-68},{"x":35,"y":-184},{"x":-50,"y":16},{"x":-39,"y":-111},{"x":-82,"y":30},{"x":-10,"y":-86},{"x":-90,"y":-56},{"x":9,"y":-129},{"x":-45,"y":-19},{"x":31,"y":2},{"x":-51,"y":-36},{"x":-23,"y":-85},{"x":58,"y":-48},{"x":-18,"y":-153},{"x":19,"y":-47},{"x":90,"y":-7},{"x":71,"y":37},{"x":14,"y":51},{"x":34,"y":-11},{"x":-36,"y":-100},{"x":-71,"y":-18},{"x":19,"y":-29},{"x":86,"y":-16},{"x":7,"y":-76},{"x":-13,"y":1},{"x":-36,"y":-10},{"x":39,"y":9},{"x":-15,"y":-24},{"x":-22,"y":2},{"x":53,"y":-83},{"x":36,"y":-174},{"x":-64,"y":-124},{"x":3,"y":56},{"x":-5,"y":-34},{"x":-45,"y":-7},{"x":10,"y":-37},{"x":-26,"y":28},{"x":29,"y":-69},{"x":-41,"y":-35},{"x":-20,"y":-92},{"x":57,"y":-33},{"x":-34,"y":-49},{"x":-44,"y":28},{"x":17,"y":38},{"x":-26,"y":-50},{"x":-95,"y":89},{"x":60,"y":27},{"x":43,"y":86},{"x":-14,"y":226},{"x":48,"y":68},{"x":7,"y":134},{"x":-107,"y":94},{"x":-72,"y":-16},{"x":-32,"y":66},{"x":-4,"y":-63},{"x":-54,"y":-62},{"x":-113,"y":-8},{"x":-7,"y":31},{"x":-33,"y":-43},{"x":-34,"y":23},{"x":16,"y":-59},{"x":-78,"y":-26},{"x":15,"y":-43},{"x":47,"y":-7},{"x":-50,"y":-103},{"x":-114,"y":-45},{"x":-37,"y":47},{"x":-34,"y":-45},{"x":-65,"y":32},{"x":7,"y":23},{"x":-25,"y":-8},{"x":-8,"y":44},{"x":-46,"y":-30},{"x":66,"y":-81},{"x":111,"y":-39},{"x":25,"y":-68},{"x":-22,"y":-77},{"x":-74,"y":-78},{"x":-38,"y":22},{"x":-38,"y":-42},{"x":9,"y":43},{"x":-92,"y":-47},{"x":-104,"y":66},{"x":-28,"y":-26},{"x":12,"y":-53},{"x":-28,"y":9},{"x":-1,"y":-24},{"x":23,"y":0},{"x":4,"y":-43},{"x":-3,"y":22},{"x":-60,"y":-8},{"x":17,"y":-25},{"x":-33,"y":13},{"x":-59,"y":-95},{"x":-30,"y":29},{"x":-10,"y":-38},{"x":-65,"y":18},{"x":14,"y":18},{"x":-44,"y":37},{"x":-86,"y":-3},{"x":-41,"y":-65},{"x":50,"y":-63},{"x":-14,"y":-15},{"x":-22,"y":37},{"x":-25,"y":-82},{"x":72,"y":-169},{"x":-11,"y":-123},{"x":105,"y":-115},{"x":7,"y":-57},{"x":-28,"y":4},{"x":41,"y":-34},{"x":-4,"y":-122},{"x":12,"y":-36},{"x":41,"y":5},{"x":-42,"y":-38},{"x":54,"y":-13},{"x":-50,"y":-17},{"x":-12,"y":-68},{"x":-31,"y":-12},{"x":17,"y":-19},{"x":-33,"y":21},{"x":-34,"y":-20},{"x":9,"y":-46},{"x":-38,"y":-14},{"x":8,"y":27},{"x":-169,"y":5},{"x":26,"y":16},{"x":-40,"y":20},{"x":-6,"y":-18},{"x":-85,"y":66},{"x":94,"y":-245},{"x":-39,"y":-35},{"x":188,"y":-119},{"x":27,"y":29},{"x":40,"y":-6},{"x":2,"y":-57},{"x":93,"y":-3},{"x":-36,"y":-66},{"x":45,"y":-14},{"x":19,"y":21},{"x":7,"y":-23},{"x":93,"y":27},{"x":34,"y":-88},{"x":114,"y":-45},{"x":100,"y":22},{"x":54,"y":-49},{"x":72,"y":2},{"x":-253,"y":-34},{"x":50,"y":-125},{"x":-71,"y":0},{"x":-55,"y":142},{"x":-190,"y":49},{"x":38,"y":-83},{"x":-33,"y":-12},{"x":4,"y":-53},{"x":-27,"y":71},{"x":87,"y":-231},{"x":429,"y":10},{"x":-3,"y":-114},{"x":27,"y":-24},{"x":-23,"y":-70},{"x":-33,"y":94},{"x":-141,"y":-3},{"x":72,"y":1},{"x":1,"y":-51},{"x":-51,"y":1},{"x":2,"y":-108},{"x":51,"y":1},{"x":10,"y":53},{"x":43,"y":-1},{"x":24,"y":-137},{"x":-49,"y":-20},{"x":-33,"y":-70},{"x":-20,"y":25},{"x":-57,"y":-20},{"x":-25,"y":-174},{"x":-97,"y":-70},{"x":40,"y":-64},{"x":-47,"y":-123},{"x":-76,"y":-37},{"x":-92,"y":97},{"x":-33,"y":-57},{"x":12,"y":-118},{"x":-47,"y":-20},{"x":23,"y":-135},{"x":-29,"y":-10},{"x":-34,"y":-134},{"x":96,"y":-86},{"x":59,"y":-2},{"x":10,"y":-37},{"x":-39,"y":0},{"x":39,"y":-46},{"x":110,"y":-12},{"x":64,"y":-69},{"x":26,"y":9},{"x":-8,"y":-38},{"x":57,"y":-15},{"x":-36,"y":-14},{"x":120,"y":-118},{"x":-68,"y":25},{"x":-65,"y":96},{"x":-253,"y":142},{"x":-46,"y":67},{"x":-93,"y":-26},{"x":-45,"y":22},{"x":-24,"y":-25},{"x":-22,"y":-79},{"x":27,"y":-102},{"x":-103,"y":-93},{"x":16,"y":-124},{"x":76,"y":0},{"x":75,"y":132},{"x":70,"y":-46},{"x":-109,"y":-169},{"x":1,"y":-50},{"x":217,"y":-8},{"x":27,"y":-66}],"type":"coastline"},{"arc":[{"x":99040,"y":82168},{"x":187,"y":75},{"x":64,"y":-24},{"x":-8,"y":-66},{"x":56,"y":12},{"x":5,"y":27},{"x":78,"y":-21},{"x":104,"y":56},{"x":78,"y":-44},{"x":158,"y":-20},{"x":122,"y":-152},{"x":165,"y":-36},{"x":1,"y":-70},{"x":78,"y":-127},{"x":160,"y":-33},{"x":48,"y":-63},{"x":79,"y":1},{"x":59,"y":56},{"x":48,"y":-37},{"x":67,"y":10},{"x":82,"y":62},{"x":188,"y":54},{"x":80,"y":-161},{"x":43,"y":31},{"x":100,"y":-98},{"x":260,"y":-35},{"x":38,"y":-62},{"x":62,"y":-28},{"x":129,"y":95},{"x":66,"y":-27},{"x":17,"y":-39},{"x":56,"y":45},{"x":55,"y":-23},{"x":66,"y":21},{"x":71,"y":74},{"x":70,"y":-56},{"x":75,"y":62},{"x":107,"y":4},{"x":53,"y":-28},{"x":9,"y":-47},{"x":39,"y":-5},{"x":8,"y":-72},{"x":103,"y":-45},{"x":9,"y":-46},{"x":-27,"y":9},{"x":57,"y":-96},{"x":54,"y":-26},{"x":66,"y":15},{"x":53,"y":-44}],"type":"admin"},{"arc":[{"x":102578,"y":81246},{"x":28,"y":14}],"type":"admin"},{"arc":[{"x":102578,"y":81246},{"x":-54,"y":-150},{"x":62,"y":-252},{"x":-37,"y":-38},{"x":-23,"y":36},{"x":-86,"y":-35},{"x":-26,"y":26},{"x":-143,"y":-230},{"x":-94,"y":-10},{"x":86,"y":-50},{"x":27,"y":-68},{"x":46,"y":41},{"x":66,"y":-9},{"x":19,"y":-36},{"x":67,"y":8},{"x":7,"y":-41},{"x":13,"y":17},{"x":105,"y":-49},{"x":13,"y":-42},{"x":33,"y":-2},{"x":-98,"y":-165},{"x":-22,"y":-145},{"x":49,"y":-100},{"x":-94,"y":-58},{"x":-48,"y":-106},{"x":-92,"y":0},{"x":-30,"y":-56},{"x":-156,"y":77},{"x":-111,"y":-33},{"x":13,"y":-23},{"x":-48,"y":-20},{"x":-77,"y":22},{"x":-39,"y":88},{"x":-146,"y":144},{"x":-111,"y":-14},{"x":23,"y":-49},{"x":-33,"y":-80},{"x":15,"y":-112},{"x":-140,"y":-119},{"x":-52,"y":-6},{"x":4,"y":-85},{"x":-38,"y":-48},{"x":-119,"y":-31},{"x":-79,"y":30},{"x":-75,"y":-41},{"x":-95,"y":37},{"x":-34,"y":-60},{"x":-103,"y":-16},{"x":-25,"y":-46},{"x":-148,"y":-10},{"x":-80,"y":-174},{"x":66,"y":-17},{"x":-15,"y":-96},{"x":100,"y":-98},{"x":46,"y":-112},{"x":69,"y":-46},{"x":-36,"y":-46},{"x":9,"y":-188},{"x":-78,"y":-23},{"x":-38,"y":-100},{"x":-101,"y":11},{"x":55,"y":-99},{"x":-80,"y":-32},{"x":31,"y":-4},{"x":22,"y":-67},{"x":45,"y":18},{"x":14,"y":-53},{"x":57,"y":22},{"x":123,"y":-39},{"x":-65,"y":-100},{"x":50,"y":-85},{"x":25,"y":-188},{"x":-25,"y":-22},{"x":-13,"y":23},{"x":-43,"y":-9},{"x":-109,"y":-90},{"x":-172,"y":26},{"x":11,"y":-70},{"x":-89,"y":-3},{"x":-55,"y":50},{"x":-49,"y":-50},{"x":-38,"y":9},{"x":20,"y":-23},{"x":-29,"y":-23},{"x":-68,"y":70}],"type":"area"},{"arc":[{"x":100310,"y":77709},{"x":-46,"y":-105},{"x":41,"y":-27},{"x":-31,"y":-56},{"x":19,"y":-33},{"x":-57,"y":-20},{"x":-9,"y":-71},{"x":51,"y":-12},{"x":3,"y":-80},{"x":124,"y":-118},{"x":-15,"y":-76},{"x":-241,"y":-122},{"x":-162,"y":-6},{"x":-54,"y":-233},{"x":-161,"y":-139},{"x":10,"y":-70},{"x":-48,"y":-38},{"x":9,"y":-98},{"x":-47,"y":-55},{"x":-29,"y":26},{"x":-83,"y":-31},{"x":-26,"y":-98},{"x":62,"y":-19},{"x":43,"y":42},{"x":105,"y":-36},{"x":25,"y":31},{"x":59,"y":-66},{"x":171,"y":85},{"x":54,"y":-4},{"x":136,"y":-111},{"x":25,"y":-60},{"x":43,"y":12},{"x":-96,"y":-106},{"x":-18,"y":-58},{"x":29,"y":-54},{"x":-58,"y":-88},{"x":49,"y":-162},{"x":-52,"y":-39},{"x":-34,"y":19},{"x":-57,"y":-20},{"x":-38,"y":-138},{"x":-58,"y":6},{"x":-44,"y":-29},{"x":-81,"y":-108},{"x":93,"y":-36},{"x":147,"y":-300},{"x":58,"y":21},{"x":41,"y":-46},{"x":79,"y":-25},{"x":3,"y":-38},{"x":-101,"y":-60},{"x":-27,"y":-96},{"x":72,"y":-28},{"x":62,"y":-134},{"x":47,"y":3},{"x":11,"y":-115},{"x":-100,"y":-57},{"x":-107,"y":-143},{"x":106,"y":-103},{"x":-39,"y":-84},{"x":38,"y":-66},{"x":-33,"y":-21},{"x":43,"y":-33},{"x":-112,"y":-72},{"x":-66,"y":11},{"x":-22,"y":-35},{"x":-115,"y":27},{"x":-159,"y":-32},{"x":-31,"y":-93},{"x":-104,"y":-62},{"x":-17,"y":-54},{"x":61,"y":32},{"x":137,"y":-27},{"x":-64,"y":-17},{"x":28,"y":-214},{"x":-63,"y":-279},{"x":-126,"y":-202},{"x":-52,"y":-157},{"x":-123,"y":-77},{"x":-86,"y":7},{"x":65,"y":-196},{"x":-55,"y":-82},{"x":-90,"y":-7},{"x":-29,"y":-62},{"x":19,"y":-59},{"x":138,"y":-76},{"x":90,"y":-94},{"x":122,"y":116},{"x":70,"y":26},{"x":-2,"y":-168},{"x":64,"y":-57},{"x":83,"y":-9},{"x":64,"y":-42},{"x":-12,"y":-55},{"x":84,"y":-35},{"x":104,"y":-98}],"type":"area"},{"arc":[{"x":97189,"y":79072},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":97189,"y":79066},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":97489,"y":82323},{"x":-15,"y":31},{"x":-47,"y":-5},{"x":22,"y":-36},{"x":-29,"y":-34},{"x":49,"y":-27},{"x":20,"y":71}],"type":"coastline"},{"arc":[{"x":97490,"y":79719},{"x":-21,"y":57},{"x":-116,"y":61},{"x":-143,"y":-13},{"x":-124,"y":-247},{"x":-91,"y":-33},{"x":8,"y":-36},{"x":-86,"y":-100},{"x":-6,"y":-88},{"x":60,"y":-100},{"x":46,"y":-20},{"x":111,"y":39},{"x":4,"y":-19},{"x":320,"y":152},{"x":10,"y":33},{"x":-6,"y":31},{"x":2,"y":-19},{"x":-62,"y":9},{"x":-7,"y":50},{"x":101,"y":243}],"type":"coastline"},{"arc":[{"x":97643,"y":79290},{"x":-188,"y":67},{"x":-93,"y":-42},{"x":-8,"y":-100},{"x":50,"y":-49},{"x":96,"y":0},{"x":75,"y":27},{"x":68,"y":97}],"type":"coastline"},{"arc":[{"x":97817,"y":82087},{"x":-93,"y":92},{"x":4,"y":37},{"x":-41,"y":13},{"x":20,"y":-42},{"x":-41,"y":-27},{"x":35,"y":-120},{"x":51,"y":-21},{"x":31,"y":21},{"x":17,"y":-25},{"x":-17,"y":47},{"x":34,"y":25}],"type":"coastline"},{"arc":[{"x":97874,"y":79763},{"x":-13,"y":28},{"x":-44,"y":-8},{"x":57,"y":-20}],"type":"coastline"},{"arc":[{"x":97877,"y":80911},{"x":-5,"y":20},{"x":-68,"y":-7},{"x":3,"y":21},{"x":-21,"y":-32},{"x":-93,"y":-3},{"x":-57,"y":-184},{"x":54,"y":34},{"x":52,"y":-9},{"x":8,"y":-28},{"x":32,"y":14},{"x":95,"y":174}],"type":"coastline"},{"arc":[{"x":97885,"y":79861},{"x":3,"y":11},{"x":-12,"y":3},{"x":-3,"y":-8},{"x":-9,"y":27},{"x":28,"y":46},{"x":-13,"y":93},{"x":-44,"y":30},{"x":-25,"y":-22},{"x":-85,"y":28},{"x":-56,"y":83},{"x":21,"y":65},{"x":-178,"y":49},{"x":-3,"y":58},{"x":-47,"y":4},{"x":-61,"y":-102},{"x":-67,"y":-38},{"x":-28,"y":8},{"x":-5,"y":123},{"x":-66,"y":-74},{"x":-31,"y":2},{"x":-8,"y":-38},{"x":-63,"y":26},{"x":-37,"y":-27},{"x":50,"y":-121},{"x":146,"y":-94},{"x":24,"y":-98},{"x":244,"y":-103},{"x":43,"y":-65},{"x":64,"y":-1},{"x":45,"y":57},{"x":21,"y":-40},{"x":35,"y":9},{"x":14,"y":61},{"x":-25,"y":13},{"x":94,"y":18},{"x":19,"y":-21},{"x":8,"y":6},{"x":13,"y":54},{"x":-6,"y":-22}],"type":"coastline"},{"arc":[{"x":97900,"y":79592},{"x":-214,"y":77},{"x":-132,"y":-55},{"x":-61,"y":-78},{"x":21,"y":-41},{"x":32,"y":-1},{"x":8,"y":-68},{"x":66,"y":-10},{"x":-46,"y":32},{"x":5,"y":36},{"x":131,"y":-49},{"x":51,"y":51},{"x":103,"y":-1},{"x":36,"y":107}],"type":"coastline"},{"arc":[{"x":97978,"y":79515},{"x":-53,"y":4},{"x":-29,"y":-69},{"x":45,"y":2},{"x":37,"y":63}],"type":"coastline"},{"arc":[{"x":98002,"y":79813},{"x":-72,"y":-4},{"x":-24,"y":-92},{"x":65,"y":33},{"x":31,"y":63}],"type":"coastline"},{"arc":[{"x":98018,"y":81169},{"x":-48,"y":7},{"x":-17,"y":42},{"x":-55,"y":-1},{"x":54,"y":51},{"x":46,"y":2},{"x":-20,"y":35},{"x":25,"y":46},{"x":-137,"y":-32},{"x":-28,"y":-133},{"x":-107,"y":-145},{"x":22,"y":-51},{"x":108,"y":-58},{"x":59,"y":38},{"x":72,"y":86},{"x":26,"y":113}],"type":"coastline"},{"arc":[{"x":98085,"y":80564},{"x":-42,"y":38},{"x":-41,"y":-17},{"x":33,"y":-48},{"x":50,"y":27}],"type":"coastline"},{"arc":[{"x":98131,"y":80715},{"x":-61,"y":78},{"x":21,"y":67},{"x":-184,"y":-73},{"x":49,"y":-87},{"x":42,"y":17},{"x":43,"y":-33},{"x":90,"y":31}],"type":"coastline"},{"arc":[{"x":98170,"y":81796},{"x":-54,"y":37},{"x":-48,"y":-22},{"x":55,"y":-107},{"x":45,"y":33},{"x":2,"y":59}],"type":"coastline"},{"arc":[{"x":98198,"y":79944},{"x":-18,"y":47},{"x":-97,"y":34},{"x":-63,"y":-12},{"x":30,"y":-50},{"x":-15,"y":-68},{"x":55,"y":-4},{"x":16,"y":-31},{"x":92,"y":84}],"type":"coastline"},{"arc":[{"x":98365,"y":80360},{"x":-34,"y":169},{"x":-26,"y":-17},{"x":-44,"y":35},{"x":-65,"y":-20},{"x":27,"y":-50},{"x":-76,"y":-14},{"x":-55,"y":-76},{"x":-158,"y":-9},{"x":-5,"y":-41},{"x":-67,"y":-4},{"x":52,"y":-36},{"x":-30,"y":-186},{"x":51,"y":-14},{"x":25,"y":-59},{"x":46,"y":17},{"x":152,"y":-51},{"x":52,"y":17},{"x":31,"y":54},{"x":-17,"y":40},{"x":91,"y":111},{"x":50,"y":134}],"type":"coastline"},{"arc":[{"x":98567,"y":80740},{"x":-121,"y":-50},{"x":120,"y":48},{"x":-19,"y":-48},{"x":20,"y":50}],"type":"coastline"},{"arc":[{"x":99040,"y":82168},{"x":59,"y":-21},{"x":-348,"y":10},{"x":-44,"y":-21},{"x":133,"y":-221},{"x":182,"y":6},{"x":1,"y":-53},{"x":-75,"y":23},{"x":-83,"y":-37},{"x":-43,"y":12},{"x":-134,"y":208},{"x":-32,"y":-14},{"x":-34,"y":59},{"x":-115,"y":-73},{"x":131,"y":-162},{"x":-22,"y":-45},{"x":-69,"y":23},{"x":-54,"y":-165},{"x":-261,"y":-50},{"x":-128,"y":29},{"x":5,"y":-43},{"x":-29,"y":9},{"x":-28,"y":-34},{"x":-1,"y":32},{"x":-15,"y":-63},{"x":-55,"y":-34},{"x":-30,"y":-162},{"x":70,"y":16},{"x":52,"y":-31},{"x":25,"y":-73},{"x":-14,"y":-83},{"x":-29,"y":-12},{"x":105,"y":-131},{"x":-20,"y":-47},{"x":-23,"y":8},{"x":29,"y":-30},{"x":-29,"y":-5},{"x":3,"y":-47},{"x":76,"y":-67},{"x":1,"y":22},{"x":33,"y":-35},{"x":15,"y":22},{"x":48,"y":-13},{"x":-19,"y":-33},{"x":-41,"y":-9},{"x":-10,"y":22},{"x":-22,"y":-81},{"x":29,"y":-51},{"x":-62,"y":-61},{"x":13,"y":-61},{"x":99,"y":-21},{"x":-20,"y":33},{"x":32,"y":44},{"x":-47,"y":34},{"x":70,"y":18},{"x":-3,"y":53},{"x":42,"y":45},{"x":235,"y":-19},{"x":31,"y":-101},{"x":57,"y":-11},{"x":-5,"y":-37},{"x":-158,"y":34},{"x":-20,"y":-32},{"x":129,"y":-33},{"x":-4,"y":-40},{"x":-114,"y":26},{"x":-72,"y":-102},{"x":-45,"y":13},{"x":-14,"y":-209},{"x":-86,"y":-152},{"x":-81,"y":-317},{"x":-94,"y":-155},{"x":-2,"y":-106},{"x":56,"y":-17},{"x":70,"y":-210},{"x":-65,"y":64},{"x":-56,"y":-19},{"x":-34,"y":48},{"x":-7,"y":-82},{"x":-156,"y":-8},{"x":-161,"y":-50},{"x":-19,"y":-202},{"x":-46,"y":-17},{"x":-11,"y":-49},{"x":-31,"y":9},{"x":-25,"y":-45},{"x":21,"y":30},{"x":-10,"y":-36},{"x":33,"y":-12},{"x":-64,"y":-211}],"type":"coastline"},{"arc":[{"x":97606,"y":78759},{"x":133,"y":-2},{"x":60,"y":-62},{"x":24,"y":-94},{"x":-51,"y":-41},{"x":-6,"y":-74},{"x":110,"y":-121},{"x":-51,"y":-42},{"x":-2,"y":-37},{"x":57,"y":-37},{"x":-22,"y":-30},{"x":170,"y":-8},{"x":66,"y":-46},{"x":-5,"y":-67},{"x":50,"y":9},{"x":14,"y":-36},{"x":-16,"y":-75},{"x":64,"y":0},{"x":66,"y":-64},{"x":80,"y":30},{"x":177,"y":-16},{"x":34,"y":-22},{"x":-10,"y":-63},{"x":59,"y":-16},{"x":71,"y":46},{"x":-11,"y":33},{"x":65,"y":0},{"x":10,"y":-31},{"x":94,"y":-58},{"x":15,"y":28},{"x":42,"y":-52},{"x":6,"y":72},{"x":-54,"y":48},{"x":-26,"y":109},{"x":30,"y":-14},{"x":69,"y":31},{"x":78,"y":-71},{"x":90,"y":-1},{"x":-3,"y":-58},{"x":166,"y":-80},{"x":38,"y":14},{"x":114,"y":-74},{"x":56,"y":-232},{"x":84,"y":-14},{"x":17,"y":-29},{"x":35,"y":16},{"x":17,"y":-45},{"x":22,"y":39},{"x":71,"y":9},{"x":-30,"y":49},{"x":78,"y":170},{"x":37,"y":21},{"x":159,"y":-46},{"x":-19,"y":68},{"x":88,"y":70},{"x":115,"y":-19},{"x":25,"y":-50},{"x":46,"y":-15},{"x":7,"y":-60},{"x":88,"y":65},{"x":13,"y":-75}],"type":"area"},{"arc":[{"x":94914,"y":74720},{"x":-50,"y":-14},{"x":-56,"y":-70},{"x":28,"y":-7},{"x":78,"y":91}],"type":"coastline"},{"arc":[{"x":95186,"y":75028},{"x":-73,"y":48},{"x":-169,"y":-35},{"x":-23,"y":-43},{"x":61,"y":-77},{"x":51,"y":55},{"x":61,"y":0},{"x":92,"y":52}],"type":"coastline"},{"arc":[{"x":95236,"y":75154},{"x":-67,"y":-3},{"x":27,"y":57},{"x":-40,"y":19},{"x":-22,"y":-139},{"x":102,"y":66}],"type":"coastline"},{"arc":[{"x":95645,"y":77030},{"x":-32,"y":30},{"x":12,"y":57},{"x":-57,"y":-41},{"x":-6,"y":-64},{"x":83,"y":18}],"type":"coastline"},{"arc":[{"x":95611,"y":73356},{"x":31,"y":-47}],"type":"admin"},{"arc":[{"x":95642,"y":73309},{"x":18,"y":36},{"x":-49,"y":11}],"type":"coastline"},{"arc":[{"x":95752,"y":74158},{"x":-45,"y":-25},{"x":13,"y":-23},{"x":32,"y":48}],"type":"coastline"},{"arc":[{"x":95981,"y":76007},{"x":-67,"y":-54},{"x":50,"y":1},{"x":17,"y":53}],"type":"coastline"},{"arc":[{"x":95958,"y":76917},{"x":-69,"y":-121},{"x":57,"y":-4},{"x":40,"y":105},{"x":-28,"y":20}],"type":"coastline"},{"arc":[{"x":95998,"y":76106},{"x":-63,"y":22},{"x":-25,"y":-22},{"x":35,"y":-44},{"x":53,"y":44}],"type":"coastline"},{"arc":[{"x":96005,"y":74293},{"x":-70,"y":28},{"x":-62,"y":-104},{"x":75,"y":-3},{"x":57,"y":79}],"type":"coastline"},{"arc":[{"x":96079,"y":75377},{"x":-88,"y":10},{"x":-37,"y":-54},{"x":51,"y":-19},{"x":74,"y":63}],"type":"coastline"},{"arc":[{"x":96167,"y":73873},{"x":-65,"y":97},{"x":24,"y":34},{"x":-51,"y":35},{"x":18,"y":50},{"x":-27,"y":-19},{"x":-81,"y":52},{"x":-74,"y":-29},{"x":-41,"y":-126},{"x":31,"y":-78},{"x":66,"y":-34},{"x":141,"y":-13},{"x":59,"y":31}],"type":"coastline"},{"arc":[{"x":96075,"y":77074},{"x":-55,"y":-65},{"x":-10,"y":-113},{"x":146,"y":-7},{"x":104,"y":76},{"x":13,"y":47},{"x":-115,"y":99},{"x":-83,"y":-37}],"type":"coastline"},{"arc":[{"x":96333,"y":77524},{"x":-28,"y":1},{"x":5,"y":-29},{"x":23,"y":28}],"type":"coastline"},{"arc":[{"x":96345,"y":77496},{"x":-39,"y":-10},{"x":-55,"y":80},{"x":-32,"y":-19},{"x":-27,"y":99},{"x":-64,"y":0},{"x":-127,"y":-169},{"x":2,"y":-59},{"x":-89,"y":-149},{"x":38,"y":-136},{"x":35,"y":-24},{"x":39,"y":55},{"x":84,"y":-27},{"x":62,"y":28},{"x":85,"y":126},{"x":1,"y":40},{"x":-32,"y":4},{"x":60,"y":31},{"x":59,"y":130}],"type":"coastline"},{"arc":[{"x":96332,"y":77269},{"x":-27,"y":10},{"x":-45,"y":-52},{"x":5,"y":-74},{"x":17,"y":37},{"x":40,"y":-11},{"x":10,"y":90}],"type":"coastline"},{"arc":[{"x":96374,"y":74881},{"x":-39,"y":7},{"x":-31,"y":-32},{"x":70,"y":25}],"type":"coastline"},{"arc":[{"x":96374,"y":73177},{"x":-55,"y":48},{"x":50,"y":67},{"x":-85,"y":65},{"x":-31,"y":-22},{"x":-20,"y":-124},{"x":45,"y":0},{"x":-2,"y":-66},{"x":98,"y":32}],"type":"coastline"},{"arc":[{"x":96385,"y":75040},{"x":-16,"y":26},{"x":-95,"y":-34},{"x":-15,"y":143},{"x":-50,"y":-1},{"x":-19,"y":38},{"x":-64,"y":17},{"x":-26,"y":-16},{"x":58,"y":-80},{"x":-41,"y":-48},{"x":-77,"y":-5},{"x":-24,"y":-48},{"x":35,"y":-11},{"x":-8,"y":-35},{"x":-66,"y":-51},{"x":-31,"y":3},{"x":-5,"y":63},{"x":-35,"y":-21},{"x":-32,"y":38},{"x":45,"y":128},{"x":-97,"y":3},{"x":71,"y":26},{"x":18,"y":44},{"x":-100,"y":-70},{"x":-145,"y":-28},{"x":-35,"y":-59},{"x":-55,"y":31},{"x":-73,"y":-20},{"x":41,"y":66},{"x":51,"y":13},{"x":-2,"y":89},{"x":102,"y":123},{"x":-39,"y":59},{"x":-42,"y":-25},{"x":-69,"y":18},{"x":-12,"y":45},{"x":42,"y":34},{"x":-62,"y":-25},{"x":-19,"y":-59},{"x":87,"y":-50},{"x":-3,"y":-45},{"x":-174,"y":-18},{"x":-163,"y":-89},{"x":-2,"y":-56},{"x":97,"y":-13},{"x":20,"y":-38},{"x":55,"y":23},{"x":16,"y":-33},{"x":-18,"y":-16},{"x":-12,"y":21},{"x":-11,"y":-54},{"x":82,"y":-23},{"x":-87,"y":-58},{"x":7,"y":-79},{"x":-42,"y":-14},{"x":76,"y":6},{"x":40,"y":-32},{"x":1,"y":-60},{"x":-118,"y":-27},{"x":2,"y":-108},{"x":-21,"y":25},{"x":-35,"y":-45},{"x":41,"y":-35},{"x":-69,"y":-134},{"x":111,"y":-50},{"x":0,"y":-49},{"x":136,"y":-4},{"x":65,"y":62},{"x":12,"y":84},{"x":50,"y":10},{"x":-30,"y":41},{"x":66,"y":9},{"x":-18,"y":29},{"x":109,"y":168},{"x":-14,"y":44},{"x":59,"y":25},{"x":40,"y":-21},{"x":-28,"y":22},{"x":29,"y":2},{"x":32,"y":-25},{"x":3,"y":-77},{"x":50,"y":-16},{"x":257,"y":54},{"x":72,"y":45},{"x":44,"y":101},{"x":66,"y":51},{"x":11,"y":76}],"type":"coastline"},{"arc":[{"x":96387,"y":73358},{"x":-38,"y":6},{"x":-16,"y":-36},{"x":39,"y":-2},{"x":15,"y":32}],"type":"coastline"},{"arc":[{"x":96402,"y":76135},{"x":2,"y":20},{"x":-65,"y":-20},{"x":6,"y":40},{"x":-16,"y":13},{"x":-5,"y":-26},{"x":-3,"y":34},{"x":-58,"y":13},{"x":-123,"y":-66},{"x":-50,"y":-104},{"x":41,"y":4},{"x":23,"y":-51},{"x":-53,"y":-48},{"x":4,"y":-48},{"x":149,"y":34},{"x":91,"y":58},{"x":57,"y":147}],"type":"coastline"},{"arc":[{"x":96416,"y":76425},{"x":-64,"y":71},{"x":30,"y":29},{"x":-48,"y":129},{"x":26,"y":-36},{"x":-6,"y":27},{"x":-41,"y":35},{"x":6,"y":99},{"x":-28,"y":19},{"x":-81,"y":-45},{"x":1,"y":84},{"x":-50,"y":4},{"x":-122,"y":-83},{"x":-4,"y":-102},{"x":-56,"y":-23},{"x":34,"y":-25},{"x":60,"y":62},{"x":54,"y":-38},{"x":-10,"y":-107},{"x":-29,"y":-18},{"x":32,"y":-46},{"x":79,"y":-27},{"x":16,"y":-214},{"x":52,"y":22},{"x":79,"y":-17},{"x":74,"y":95},{"x":-4,"y":105}],"type":"coastline"},{"arc":[{"x":96603,"y":76307},{"x":-48,"y":32},{"x":-9,"y":-59},{"x":45,"y":-10},{"x":12,"y":37}],"type":"coastline"},{"arc":[{"x":96667,"y":77132},{"x":-16,"y":15},{"x":-27,"y":-26},{"x":43,"y":11}],"type":"coastline"},{"arc":[{"x":96777,"y":73634},{"x":-58,"y":21},{"x":37,"y":-35},{"x":21,"y":14}],"type":"coastline"},{"arc":[{"x":96961,"y":76982},{"x":-6,"y":36},{"x":-46,"y":-4},{"x":19,"y":-52},{"x":33,"y":20}],"type":"coastline"},{"arc":[{"x":97030,"y":76913},{"x":-33,"y":5},{"x":-10,"y":-32},{"x":43,"y":27}],"type":"coastline"},{"arc":[{"x":97058,"y":77656},{"x":-32,"y":53},{"x":-64,"y":-22},{"x":-28,"y":35},{"x":-34,"y":-22},{"x":26,"y":-32},{"x":-6,"y":-18},{"x":24,"y":-18},{"x":-18,"y":22},{"x":16,"y":-11},{"x":40,"y":10},{"x":4,"y":-45},{"x":72,"y":48}],"type":"coastline"},{"arc":[{"x":97061,"y":77798},{"x":-19,"y":23},{"x":-9,"y":-24},{"x":28,"y":1}],"type":"coastline"},{"arc":[{"x":97125,"y":77973},{"x":-50,"y":5},{"x":-21,"y":-35},{"x":62,"y":2},{"x":9,"y":28}],"type":"coastline"},{"arc":[{"x":97138,"y":73756},{"x":-6,"y":61},{"x":-31,"y":6},{"x":-25,"y":-112},{"x":29,"y":-29},{"x":33,"y":74}],"type":"coastline"},{"arc":[{"x":97153,"y":77160},{"x":1,"y":24},{"x":-54,"y":16},{"x":-70,"y":-63},{"x":49,"y":-105},{"x":74,"y":128}],"type":"coastline"},{"arc":[{"x":97183,"y":78136},{"x":-68,"y":88},{"x":-280,"y":-97},{"x":-105,"y":-79},{"x":-19,"y":-50},{"x":-9,"y":27},{"x":-60,"y":9},{"x":-75,"y":-18},{"x":-53,"y":40},{"x":-16,"y":-215},{"x":-62,"y":-106},{"x":5,"y":-122},{"x":17,"y":-64},{"x":30,"y":8},{"x":13,"y":-50},{"x":100,"y":-67},{"x":47,"y":-16},{"x":18,"y":52},{"x":36,"y":1},{"x":78,"y":-66},{"x":-9,"y":41},{"x":39,"y":45},{"x":-51,"y":67},{"x":31,"y":21},{"x":56,"y":-37},{"x":-43,"y":46},{"x":35,"y":25},{"x":10,"y":97},{"x":-49,"y":49},{"x":57,"y":-7},{"x":15,"y":-44},{"x":100,"y":82},{"x":-49,"y":54},{"x":-71,"y":-22},{"x":20,"y":22},{"x":-41,"y":44},{"x":13,"y":26},{"x":38,"y":-19},{"x":70,"y":61},{"x":37,"y":-10},{"x":195,"y":184}],"type":"coastline"},{"arc":[{"x":97213,"y":78226},{"x":-41,"y":13},{"x":11,"y":-66},{"x":30,"y":53}],"type":"coastline"},{"arc":[{"x":97235,"y":77766},{"x":-100,"y":34},{"x":-38,"y":-29},{"x":47,"y":-28},{"x":19,"y":31},{"x":47,"y":-24},{"x":25,"y":16}],"type":"coastline"},{"arc":[{"x":97294,"y":74609},{"x":-79,"y":19},{"x":-46,"y":64},{"x":-152,"y":67},{"x":-116,"y":-15},{"x":-74,"y":-49},{"x":-51,"y":28},{"x":5,"y":26},{"x":-215,"y":-65},{"x":-149,"y":7},{"x":-30,"y":-53},{"x":-85,"y":-30},{"x":26,"y":-49},{"x":-112,"y":-11},{"x":-15,"y":21},{"x":-15,"y":-20},{"x":-5,"y":20},{"x":-1,"y":-26},{"x":-5,"y":50},{"x":-168,"y":81},{"x":-106,"y":23},{"x":-54,"y":-36},{"x":-16,"y":28},{"x":25,"y":-62},{"x":-101,"y":-168},{"x":23,"y":-87},{"x":-40,"y":-25},{"x":69,"y":-1},{"x":-106,"y":-135},{"x":227,"y":131},{"x":16,"y":-21},{"x":121,"y":22},{"x":-22,"y":12},{"x":33,"y":-7},{"x":-3,"y":26},{"x":18,"y":-47},{"x":91,"y":10},{"x":17,"y":49},{"x":-52,"y":39},{"x":23,"y":8},{"x":113,"y":-116},{"x":52,"y":2},{"x":7,"y":-39},{"x":-217,"y":-69},{"x":62,"y":-9},{"x":10,"y":-42},{"x":164,"y":-17},{"x":61,"y":-99},{"x":-22,"y":7},{"x":230,"y":-187},{"x":48,"y":42},{"x":83,"y":-5},{"x":121,"y":-86},{"x":-5,"y":26},{"x":14,"y":-51},{"x":45,"y":-22},{"x":58,"y":40},{"x":-43,"y":5},{"x":-14,"y":35},{"x":-21,"y":-16},{"x":42,"y":74},{"x":-28,"y":235},{"x":-32,"y":44},{"x":-182,"y":74},{"x":10,"y":18},{"x":-109,"y":15},{"x":-11,"y":76},{"x":36,"y":8},{"x":-11,"y":35},{"x":43,"y":27},{"x":-139,"y":54},{"x":-75,"y":73},{"x":221,"y":44},{"x":122,"y":-69},{"x":60,"y":-92},{"x":56,"y":-23},{"x":-16,"y":-34},{"x":-77,"y":-12},{"x":-15,"y":-80},{"x":47,"y":-54},{"x":34,"y":-3},{"x":120,"y":102},{"x":83,"y":-79},{"x":102,"y":-12},{"x":31,"y":60},{"x":-44,"y":50},{"x":29,"y":103},{"x":-7,"y":92},{"x":-33,"y":12},{"x":15,"y":45},{"x":106,"y":-6}],"type":"coastline"},{"arc":[{"x":97287,"y":77154},{"x":-29,"y":6},{"x":19,"y":-31},{"x":10,"y":25}],"type":"coastline"},{"arc":[{"x":97331,"y":78016},{"x":-11,"y":22},{"x":-19,"y":-30},{"x":-63,"y":16},{"x":68,"y":58},{"x":-28,"y":17},{"x":-87,"y":-9},{"x":-55,"y":-67},{"x":75,"y":-72},{"x":-26,"y":-19},{"x":94,"y":20},{"x":52,"y":64}],"type":"coastline"},{"arc":[{"x":97429,"y":78512},{"x":-19,"y":24},{"x":-36,"y":-15},{"x":55,"y":-9}],"type":"coastline"},{"arc":[{"x":97436,"y":73467},{"x":-59,"y":8},{"x":-23,"y":51},{"x":-47,"y":-8},{"x":-45,"y":66},{"x":-116,"y":-10},{"x":-27,"y":-49},{"x":-48,"y":-5},{"x":-143,"y":-205},{"x":-133,"y":-87},{"x":-116,"y":-226},{"x":154,"y":-34},{"x":39,"y":-59},{"x":43,"y":13},{"x":-1,"y":59},{"x":50,"y":11},{"x":14,"y":35},{"x":231,"y":100},{"x":86,"y":154},{"x":-9,"y":81},{"x":62,"y":11},{"x":88,"y":94}],"type":"coastline"},{"arc":[{"x":97480,"y":78590},{"x":-76,"y":77},{"x":-53,"y":-39},{"x":129,"y":-38}],"type":"coastline"},{"arc":[{"x":97489,"y":74479},{"x":-60,"y":10},{"x":18,"y":-31},{"x":42,"y":21}],"type":"coastline"},{"arc":[{"x":97562,"y":78184},{"x":-6,"y":44},{"x":-75,"y":48},{"x":-63,"y":-2},{"x":144,"y":-90}],"type":"coastline"},{"arc":[{"x":97575,"y":74306},{"x":-93,"y":56},{"x":-79,"y":-28},{"x":-17,"y":-49},{"x":-86,"y":36},{"x":36,"y":-48},{"x":-33,"y":-29},{"x":53,"y":-67},{"x":-30,"y":-71},{"x":78,"y":102},{"x":45,"y":5},{"x":12,"y":35},{"x":59,"y":-8},{"x":55,"y":66}],"type":"coastline"},{"arc":[{"x":97775,"y":74623},{"x":-75,"y":42},{"x":-85,"y":-48},{"x":148,"y":-31},{"x":12,"y":37}],"type":"coastline"},{"arc":[{"x":97820,"y":74455},{"x":-85,"y":44},{"x":-28,"y":-22},{"x":55,"y":-40},{"x":58,"y":18}],"type":"coastline"},{"arc":[{"x":97606,"y":78759},{"x":80,"y":-127},{"x":-61,"y":-88},{"x":61,"y":-158},{"x":-34,"y":-20},{"x":28,"y":-79},{"x":32,"y":4},{"x":-139,"y":-171},{"x":9,"y":-88},{"x":30,"y":-8},{"x":5,"y":27},{"x":24,"y":-26},{"x":-48,"y":-41},{"x":-7,"y":25},{"x":-29,"y":-204},{"x":-46,"y":-15},{"x":23,"y":38},{"x":-58,"y":-48},{"x":14,"y":-55},{"x":-37,"y":-8},{"x":25,"y":-17},{"x":-32,"y":-47},{"x":-56,"y":25},{"x":4,"y":32},{"x":-44,"y":-19},{"x":28,"y":-44},{"x":-70,"y":-49},{"x":21,"y":-48},{"x":-63,"y":-25},{"x":-16,"y":-45},{"x":76,"y":-7},{"x":-13,"y":-28},{"x":60,"y":-61},{"x":78,"y":21},{"x":-2,"y":-38},{"x":33,"y":13},{"x":-18,"y":-82},{"x":25,"y":-75},{"x":-21,"y":-22},{"x":-30,"y":17},{"x":-26,"y":-99},{"x":36,"y":-15},{"x":-13,"y":-22},{"x":-25,"y":34},{"x":-23,"y":-33},{"x":-96,"y":-8},{"x":-92,"y":-62},{"x":-79,"y":10},{"x":16,"y":-19},{"x":-38,"y":-14},{"x":49,"y":-72},{"x":-15,"y":-43},{"x":32,"y":-63},{"x":-27,"y":-45},{"x":25,"y":-12},{"x":-63,"y":-5},{"x":-79,"y":48},{"x":-75,"y":-53},{"x":-24,"y":23},{"x":53,"y":70},{"x":-69,"y":66},{"x":-83,"y":-117},{"x":-59,"y":16},{"x":-16,"y":-56},{"x":44,"y":-101},{"x":-76,"y":-312},{"x":21,"y":7},{"x":-143,"y":-127},{"x":-115,"y":-5},{"x":87,"y":-133},{"x":-2,"y":-56},{"x":-49,"y":-21},{"x":-54,"y":27},{"x":-63,"y":-157},{"x":43,"y":-111},{"x":38,"y":3},{"x":30,"y":-50},{"x":-26,"y":-25},{"x":130,"y":-14},{"x":-3,"y":-30},{"x":-53,"y":-22},{"x":15,"y":-49},{"x":61,"y":23},{"x":44,"y":-79},{"x":-108,"y":-44},{"x":-29,"y":47},{"x":-49,"y":-27},{"x":-18,"y":-35},{"x":27,"y":42},{"x":16,"y":-33},{"x":-1,"y":-9},{"x":-33,"y":7},{"x":8,"y":-39},{"x":-129,"y":-125},{"x":13,"y":-43},{"x":-57,"y":-148},{"x":9,"y":-45},{"x":161,"y":43},{"x":105,"y":-92},{"x":61,"y":52},{"x":-34,"y":80},{"x":125,"y":79},{"x":40,"y":-53},{"x":-21,"y":-52},{"x":21,"y":-27},{"x":32,"y":32},{"x":18,"y":-48},{"x":-46,"y":-2},{"x":-13,"y":-61},{"x":45,"y":-55},{"x":35,"y":48},{"x":51,"y":-6},{"x":35,"y":-43},{"x":-20,"y":-76},{"x":244,"y":33},{"x":31,"y":-48},{"x":35,"y":15},{"x":47,"y":-70},{"x":37,"y":14},{"x":169,"y":-103},{"x":88,"y":68},{"x":104,"y":11},{"x":14,"y":-42},{"x":-38,"y":-20},{"x":27,"y":-37},{"x":108,"y":36},{"x":23,"y":52},{"x":-64,"y":105},{"x":84,"y":-60},{"x":64,"y":126},{"x":32,"y":-19},{"x":-16,"y":-28},{"x":38,"y":-15},{"x":-89,"y":-84},{"x":14,"y":-70},{"x":-39,"y":-115},{"x":94,"y":-13},{"x":39,"y":-41},{"x":-98,"y":23},{"x":-46,"y":-66},{"x":8,"y":-138},{"x":-16,"y":-22},{"x":-97,"y":1},{"x":-3,"y":-47},{"x":46,"y":-46},{"x":66,"y":16},{"x":69,"y":-128},{"x":1,"y":-68},{"x":-28,"y":-7},{"x":57,"y":-75},{"x":-24,"y":-16},{"x":24,"y":15},{"x":25,"y":-39},{"x":-28,"y":-9},{"x":-4,"y":-131},{"x":-21,"y":-48},{"x":-71,"y":13},{"x":-46,"y":-95},{"x":78,"y":-34},{"x":22,"y":47},{"x":20,"y":-31},{"x":-69,"y":-150},{"x":13,"y":-38},{"x":-24,"y":37},{"x":20,"y":87},{"x":-42,"y":18},{"x":-19,"y":-162},{"x":-52,"y":25},{"x":32,"y":154},{"x":31,"y":-14},{"x":-13,"y":-29},{"x":13,"y":30},{"x":-31,"y":14},{"x":-72,"y":-172},{"x":61,"y":-27},{"x":0,"y":-51},{"x":-47,"y":-53},{"x":-20,"y":27},{"x":-7,"y":-29},{"x":-124,"y":-6},{"x":-89,"y":-108},{"x":13,"y":37},{"x":-94,"y":-72},{"x":-39,"y":-77},{"x":-175,"y":-93},{"x":-11,"y":-55},{"x":-26,"y":16},{"x":-22,"y":-27},{"x":43,"y":-31},{"x":-81,"y":-17},{"x":12,"y":-37},{"x":-87,"y":-78},{"x":-83,"y":-145},{"x":5,"y":26},{"x":-98,"y":-65},{"x":-16,"y":22},{"x":-86,"y":-12},{"x":10,"y":-33},{"x":-35,"y":-20},{"x":-53,"y":143},{"x":-115,"y":67},{"x":-42,"y":-15}],"type":"coastline"},{"arc":[{"x":96481,"y":72779},{"x":-24,"y":-195},{"x":-52,"y":-82},{"x":49,"y":-62},{"x":-32,"y":-53},{"x":25,"y":-16},{"x":205,"y":90},{"x":-33,"y":-41},{"x":52,"y":-14},{"x":-2,"y":-37},{"x":-38,"y":3},{"x":33,"y":-100},{"x":-45,"y":-69},{"x":26,"y":-36},{"x":11,"y":28},{"x":43,"y":0},{"x":3,"y":-86},{"x":-38,"y":4},{"x":-6,"y":-27},{"x":75,"y":-52},{"x":-3,"y":-46},{"x":189,"y":16},{"x":36,"y":-49},{"x":109,"y":-51},{"x":122,"y":50},{"x":91,"y":-80},{"x":-34,"y":-33},{"x":49,"y":23},{"x":5,"y":-35},{"x":70,"y":43},{"x":61,"y":-54},{"x":89,"y":11},{"x":25,"y":41},{"x":100,"y":-15},{"x":-47,"y":-155},{"x":81,"y":-51},{"x":82,"y":3},{"x":64,"y":-106},{"x":56,"y":-20},{"x":-14,"y":-121},{"x":138,"y":5},{"x":27,"y":35},{"x":33,"y":-19},{"x":102,"y":42},{"x":29,"y":-63},{"x":106,"y":38},{"x":132,"y":-46},{"x":90,"y":68},{"x":59,"y":-20},{"x":109,"y":48},{"x":232,"y":-97}],"type":"admin"},{"arc":[{"x":94846,"y":91181},{"x":74,"y":39},{"x":2,"y":33},{"x":-3,"y":-33},{"x":-73,"y":-39}],"type":"coastline"},{"arc":[{"x":94965,"y":91104},{"x":-15,"y":46},{"x":-52,"y":-19},{"x":67,"y":-27}],"type":"coastline"},{"arc":[{"x":95130,"y":91181},{"x":-60,"y":51},{"x":-104,"y":-25},{"x":45,"y":-1},{"x":12,"y":-28},{"x":-42,"y":-43},{"x":-18,"y":23},{"x":39,"y":-62},{"x":128,"y":85}],"type":"coastline"},{"arc":[{"x":96755,"y":91522},{"x":-311,"y":-131},{"x":-191,"y":-9},{"x":-7,"y":-31},{"x":81,"y":-52},{"x":78,"y":-197},{"x":57,"y":-17},{"x":31,"y":22},{"x":-7,"y":101},{"x":45,"y":55},{"x":-15,"y":37},{"x":-41,"y":-1},{"x":5,"y":50},{"x":74,"y":24},{"x":6,"y":-73},{"x":40,"y":-17},{"x":57,"y":40},{"x":28,"y":-12},{"x":4,"y":144},{"x":66,"y":67}],"type":"coastline"},{"arc":[{"x":94347,"y":91588},{"x":-36,"y":-61},{"x":-173,"y":-67},{"x":25,"y":-78},{"x":32,"y":-8},{"x":-81,"y":-87},{"x":-101,"y":-13},{"x":-55,"y":-291},{"x":-66,"y":-74},{"x":17,"y":-36},{"x":48,"y":72},{"x":170,"y":-25},{"x":-70,"y":-244},{"x":47,"y":-30},{"x":19,"y":-170},{"x":75,"y":-110},{"x":-51,"y":-108},{"x":16,"y":-42},{"x":-136,"y":-66},{"x":16,"y":-238},{"x":39,"y":-56},{"x":-43,"y":-174},{"x":-20,"y":-58},{"x":-61,"y":-4},{"x":-41,"y":-91},{"x":14,"y":-61},{"x":-161,"y":-314},{"x":88,"y":-122},{"x":-78,"y":-86},{"x":-3,"y":-83},{"x":-146,"y":-37},{"x":-35,"y":-34},{"x":2,"y":-33},{"x":79,"y":-31},{"x":17,"y":-283},{"x":-86,"y":-145},{"x":-154,"y":60},{"x":-30,"y":-152},{"x":-73,"y":-86},{"x":44,"y":-140},{"x":-75,"y":-105},{"x":-98,"y":-63},{"x":-14,"y":-117},{"x":29,"y":-83},{"x":-109,"y":-146},{"x":-44,"y":-114},{"x":22,"y":-117},{"x":-105,"y":-79},{"x":19,"y":-56},{"x":-112,"y":-225},{"x":7,"y":-81},{"x":-62,"y":-48}],"type":"area"},{"arc":[{"x":92853,"y":86748},{"x":-62,"y":-158},{"x":-7,"y":-117},{"x":66,"y":-59},{"x":121,"y":-39},{"x":-59,"y":-198},{"x":-54,"y":-68},{"x":-128,"y":13},{"x":-111,"y":-41},{"x":-44,"y":-49},{"x":14,"y":-128},{"x":-89,"y":-90},{"x":38,"y":-42},{"x":-11,"y":-52},{"x":103,"y":-62},{"x":-18,"y":-48},{"x":30,"y":-116},{"x":38,"y":1},{"x":232,"y":-147},{"x":27,"y":-72},{"x":74,"y":-47},{"x":-5,"y":-78},{"x":-70,"y":-84},{"x":-11,"y":-228},{"x":59,"y":-23},{"x":-53,"y":-294},{"x":124,"y":-78},{"x":-1,"y":-285},{"x":63,"y":-54},{"x":21,"y":-136},{"x":111,"y":-112},{"x":109,"y":-17}],"type":"admin"},{"arc":[{"x":93360,"y":83840},{"x":41,"y":12},{"x":66,"y":122},{"x":96,"y":-27},{"x":60,"y":24},{"x":64,"y":101},{"x":90,"y":-38},{"x":6,"y":-77},{"x":62,"y":6},{"x":83,"y":107},{"x":49,"y":20},{"x":77,"y":-45},{"x":71,"y":42},{"x":21,"y":-73},{"x":53,"y":-21},{"x":59,"y":30},{"x":65,"y":-15},{"x":3,"y":-56},{"x":101,"y":17},{"x":89,"y":66},{"x":85,"y":-48}],"type":"admin"},{"arc":[{"x":94601,"y":83987},{"x":2,"y":94},{"x":49,"y":70},{"x":-24,"y":67},{"x":65,"y":95},{"x":135,"y":14},{"x":73,"y":46},{"x":89,"y":153},{"x":73,"y":80},{"x":90,"y":43},{"x":18,"y":65},{"x":65,"y":46},{"x":-13,"y":104},{"x":-24,"y":-13},{"x":-55,"y":60},{"x":23,"y":155},{"x":132,"y":47},{"x":66,"y":-6},{"x":44,"y":88},{"x":-26,"y":63},{"x":98,"y":128},{"x":-6,"y":45},{"x":-43,"y":21},{"x":77,"y":202},{"x":-77,"y":80},{"x":136,"y":150},{"x":9,"y":132},{"x":-72,"y":-12},{"x":-58,"y":53},{"x":-90,"y":9},{"x":-39,"y":85},{"x":-53,"y":21},{"x":-10,"y":76},{"x":-80,"y":33},{"x":26,"y":38},{"x":-30,"y":125},{"x":25,"y":59},{"x":56,"y":7},{"x":52,"y":60},{"x":-15,"y":127},{"x":65,"y":-5},{"x":85,"y":112},{"x":89,"y":17},{"x":68,"y":60}],"type":"admin"},{"arc":[{"x":95596,"y":86881},{"x":-13,"y":59},{"x":-48,"y":32},{"x":17,"y":74},{"x":80,"y":67},{"x":-63,"y":117},{"x":40,"y":217},{"x":145,"y":133},{"x":166,"y":-32},{"x":130,"y":87},{"x":44,"y":135},{"x":68,"y":79},{"x":-49,"y":167},{"x":34,"y":27},{"x":-26,"y":47},{"x":68,"y":128},{"x":-11,"y":207},{"x":43,"y":146},{"x":-64,"y":87},{"x":25,"y":117},{"x":-100,"y":45},{"x":22,"y":83},{"x":60,"y":47},{"x":-46,"y":231},{"x":109,"y":31},{"x":13,"y":58},{"x":-128,"y":157},{"x":5,"y":58},{"x":-68,"y":19},{"x":-15,"y":64},{"x":43,"y":65},{"x":-106,"y":86},{"x":8,"y":48},{"x":76,"y":47},{"x":36,"y":68},{"x":84,"y":0},{"x":46,"y":-36},{"x":74,"y":77},{"x":160,"y":9}],"type":"admin"},{"arc":[{"x":96455,"y":89932},{"x":-24,"y":96},{"x":32,"y":149},{"x":106,"y":113},{"x":56,"y":158},{"x":10,"y":204},{"x":-56,"y":208},{"x":39,"y":52},{"x":-25,"y":52},{"x":40,"y":6},{"x":38,"y":-57},{"x":44,"y":17},{"x":41,"y":167},{"x":-69,"y":-24},{"x":-77,"y":34},{"x":-111,"y":-70},{"x":-102,"y":30},{"x":-80,"y":114},{"x":-15,"y":91},{"x":3,"y":-39},{"x":-108,"y":139},{"x":-6,"y":136},{"x":-312,"y":-176},{"x":-15,"y":14},{"x":-11,"y":-38},{"x":-20,"y":66},{"x":-37,"y":-49},{"x":-18,"y":55},{"x":-80,"y":-16},{"x":6,"y":-56},{"x":-47,"y":-32},{"x":16,"y":-36},{"x":-81,"y":-31},{"x":-6,"y":26},{"x":0,"y":-28},{"x":-85,"y":-15},{"x":-33,"y":60},{"x":32,"y":-60},{"x":-42,"y":64},{"x":-93,"y":-38},{"x":-23,"y":25},{"x":1,"y":-22},{"x":-171,"y":-61},{"x":-31,"y":21},{"x":16,"y":-15},{"x":-35,"y":3},{"x":-144,"y":-101},{"x":-16,"y":33},{"x":-74,"y":-45},{"x":-31,"y":14},{"x":57,"y":15},{"x":-9,"y":25},{"x":-58,"y":-14},{"x":45,"y":33},{"x":-76,"y":-51},{"x":-22,"y":73},{"x":-8,"y":-54},{"x":-31,"y":-6},{"x":-103,"y":98},{"x":-37,"y":-12},{"x":19,"y":-60},{"x":-8,"y":17},{"x":-39,"y":-39},{"x":-21,"y":28},{"x":-7,"y":-34},{"x":-7,"y":74},{"x":-55,"y":-5},{"x":-39,"y":43},{"x":-2,"y":95},{"x":-42,"y":-42},{"x":9,"y":-34},{"x":-20,"y":35},{"x":-64,"y":-36},{"x":-21,"y":19},{"x":86,"y":27},{"x":23,"y":113},{"x":-29,"y":-37},{"x":-20,"y":11},{"x":22,"y":44},{"x":51,"y":-14},{"x":-32,"y":68},{"x":29,"y":-36},{"x":15,"y":7},{"x":17,"y":-17},{"x":-15,"y":15},{"x":14,"y":-1},{"x":-16,"y":11},{"x":20,"y":3},{"x":-4,"y":-7},{"x":7,"y":-5},{"x":-8,"y":-19},{"x":10,"y":22},{"x":26,"y":-11},{"x":5,"y":-37},{"x":48,"y":9},{"x":23,"y":46},{"x":-131,"y":132},{"x":-112,"y":26}],"type":"coastline"},{"arc":[{"x":96870,"y":91237},{"x":-32,"y":68},{"x":-144,"y":11},{"x":-39,"y":-65},{"x":41,"y":-2},{"x":-183,"y":-138},{"x":79,"y":-5},{"x":9,"y":28},{"x":83,"y":-47},{"x":101,"y":43},{"x":85,"y":107}],"type":"coastline"},{"arc":[{"x":90117,"y":88948},{"x":2,"y":-1},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":90201,"y":88975},{"x":-84,"y":47},{"x":13,"y":-54},{"x":71,"y":7}],"type":"coastline"},{"arc":[{"x":91039,"y":89791},{"x":-13,"y":34},{"x":-67,"y":-7},{"x":16,"y":-30},{"x":64,"y":3}],"type":"coastline"},{"arc":[{"x":91064,"y":90009},{"x":-26,"y":-10},{"x":16,"y":-31},{"x":10,"y":41}],"type":"coastline"},{"arc":[{"x":91116,"y":90289},{"x":-69,"y":91},{"x":18,"y":57},{"x":-95,"y":-64},{"x":29,"y":-105},{"x":39,"y":-12},{"x":-6,"y":52},{"x":38,"y":-43},{"x":46,"y":24}],"type":"coastline"},{"arc":[{"x":92237,"y":91127},{"x":-41,"y":3},{"x":-5,"y":-22},{"x":46,"y":19}],"type":"coastline"},{"arc":[{"x":93045,"y":92721},{"x":-54,"y":36},{"x":33,"y":-75},{"x":21,"y":39}],"type":"coastline"},{"arc":[{"x":93085,"y":92277},{"x":-30,"y":4},{"x":-21,"y":-103},{"x":51,"y":99}],"type":"coastline"},{"arc":[{"x":93131,"y":92898},{"x":-80,"y":9},{"x":-27,"y":-37},{"x":-27,"y":23},{"x":-33,"y":-77},{"x":58,"y":-43},{"x":109,"y":125}],"type":"coastline"},{"arc":[{"x":93132,"y":92043},{"x":-18,"y":34},{"x":-29,"y":-41},{"x":47,"y":7}],"type":"coastline"},{"arc":[{"x":93224,"y":91624},{"x":-13,"y":48},{"x":-45,"y":9},{"x":-2,"y":-35},{"x":-70,"y":-38},{"x":3,"y":-42},{"x":72,"y":-19},{"x":55,"y":77}],"type":"coastline"},{"arc":[{"x":93245,"y":91804},{"x":-76,"y":-13},{"x":-17,"y":-41},{"x":73,"y":-10},{"x":-24,"y":24},{"x":44,"y":40}],"type":"coastline"},{"arc":[{"x":93317,"y":91706},{"x":-8,"y":50},{"x":2,"y":-69},{"x":6,"y":19}],"type":"coastline"},{"arc":[{"x":90197,"y":88880},{"x":50,"y":7},{"x":-7,"y":-79},{"x":44,"y":-6},{"x":31,"y":-109},{"x":-4,"y":-63},{"x":-54,"y":-25},{"x":17,"y":-64},{"x":-36,"y":-100},{"x":30,"y":-62},{"x":-38,"y":-29},{"x":148,"y":-151},{"x":-57,"y":-198},{"x":65,"y":18},{"x":69,"y":-60},{"x":123,"y":-24},{"x":80,"y":-111},{"x":47,"y":-2},{"x":50,"y":44},{"x":42,"y":-156},{"x":51,"y":-30},{"x":57,"y":22},{"x":38,"y":-44},{"x":38,"y":16},{"x":41,"y":99},{"x":129,"y":158},{"x":80,"y":-101},{"x":39,"y":32},{"x":87,"y":-50},{"x":52,"y":53},{"x":76,"y":-9},{"x":37,"y":-84},{"x":-31,"y":-126},{"x":104,"y":-170},{"x":-68,"y":-461},{"x":19,"y":-66},{"x":32,"y":-15},{"x":40,"y":63},{"x":78,"y":0},{"x":45,"y":42},{"x":78,"y":-39}],"type":"admin"},{"arc":[{"x":91819,"y":87000},{"x":94,"y":26},{"x":56,"y":-52},{"x":155,"y":-45},{"x":92,"y":24},{"x":188,"y":-7},{"x":80,"y":-95},{"x":88,"y":6},{"x":100,"y":-105},{"x":105,"y":28},{"x":76,"y":-32}],"type":"admin"},{"arc":[{"x":94347,"y":91588},{"x":-225,"y":127},{"x":-33,"y":121},{"x":-82,"y":102},{"x":41,"y":17},{"x":-56,"y":-16},{"x":-151,"y":51},{"x":-15,"y":59},{"x":8,"y":-49},{"x":-57,"y":53},{"x":36,"y":-56},{"x":-34,"y":9},{"x":-14,"y":47},{"x":14,"y":-47},{"x":-36,"y":-31},{"x":-71,"y":-14},{"x":-8,"y":26},{"x":-37,"y":-42},{"x":-34,"y":10},{"x":-60,"y":-91},{"x":-193,"y":-95},{"x":66,"y":-5},{"x":-22,"y":0},{"x":9,"y":-43},{"x":-62,"y":-22},{"x":35,"y":-101},{"x":-63,"y":58},{"x":-48,"y":-68},{"x":45,"y":-57},{"x":-37,"y":7},{"x":-20,"y":-45},{"x":33,"y":-20},{"x":-19,"y":-16},{"x":-17,"y":26},{"x":2,"y":-29},{"x":-118,"y":-48},{"x":22,"y":77},{"x":42,"y":4},{"x":27,"y":59},{"x":-127,"y":-32},{"x":-7,"y":43},{"x":-64,"y":-69},{"x":-26,"y":31},{"x":16,"y":81},{"x":40,"y":30},{"x":-50,"y":36},{"x":45,"y":10},{"x":-1,"y":30},{"x":-42,"y":15},{"x":60,"y":35},{"x":-33,"y":34},{"x":44,"y":16},{"x":-12,"y":50},{"x":42,"y":48},{"x":-58,"y":-2},{"x":20,"y":147},{"x":-51,"y":72},{"x":-21,"y":-187},{"x":-84,"y":-91},{"x":3,"y":-45},{"x":-38,"y":9},{"x":15,"y":116},{"x":43,"y":44},{"x":-3,"y":121},{"x":-45,"y":28},{"x":103,"y":171},{"x":-79,"y":68},{"x":-203,"y":-429},{"x":-66,"y":-49},{"x":-35,"y":-157},{"x":-120,"y":-147},{"x":-2,"y":-75},{"x":-79,"y":6},{"x":56,"y":-44},{"x":0,"y":-123},{"x":-57,"y":-23},{"x":16,"y":-32},{"x":-27,"y":-33},{"x":-30,"y":9},{"x":-40,"y":-63},{"x":-75,"y":2},{"x":38,"y":-75},{"x":43,"y":14},{"x":2,"y":-23},{"x":-45,"y":3},{"x":33,"y":-76},{"x":-88,"y":-10},{"x":4,"y":-59},{"x":28,"y":-3},{"x":-35,"y":-21},{"x":-77,"y":42},{"x":-117,"y":-65},{"x":-85,"y":-3},{"x":14,"y":-94},{"x":33,"y":23},{"x":41,"y":-22},{"x":-62,"y":-28},{"x":21,"y":-48},{"x":-93,"y":-35},{"x":-27,"y":32},{"x":-11,"y":-23},{"x":-45,"y":11},{"x":-134,"y":-180},{"x":7,"y":-27},{"x":-41,"y":1},{"x":-19,"y":-94},{"x":-46,"y":-13},{"x":-13,"y":-94},{"x":-60,"y":-36},{"x":-150,"y":-306},{"x":-73,"y":-45},{"x":25,"y":2},{"x":-50,"y":-130},{"x":22,"y":-26},{"x":17,"y":33},{"x":11,"y":-46},{"x":-89,"y":-21},{"x":-23,"y":-44},{"x":56,"y":-64},{"x":-45,"y":-29},{"x":16,"y":-23},{"x":-63,"y":-3},{"x":1,"y":-58},{"x":-24,"y":18},{"x":-104,"y":-118},{"x":-68,"y":13},{"x":46,"y":-60},{"x":-42,"y":-1},{"x":1,"y":-34},{"x":-30,"y":11},{"x":9,"y":-38},{"x":-37,"y":19},{"x":4,"y":108},{"x":38,"y":-3},{"x":-31,"y":9},{"x":-20,"y":81},{"x":-42,"y":-53},{"x":-40,"y":2},{"x":-46,"y":-91},{"x":-74,"y":-58},{"x":-53,"y":-21},{"x":-36,"y":17},{"x":1,"y":-32},{"x":-12,"y":37},{"x":-27,"y":-5},{"x":-52,"y":-251},{"x":3,"y":178},{"x":-31,"y":72},{"x":-20,"y":-184},{"x":36,"y":-174},{"x":-38,"y":14},{"x":-6,"y":-61},{"x":-52,"y":-25},{"x":-78,"y":0},{"x":-9,"y":25},{"x":-6,"y":-57},{"x":3,"y":62},{"x":-58,"y":1},{"x":22,"y":19},{"x":-32,"y":38},{"x":-12,"y":-31},{"x":-78,"y":-15},{"x":28,"y":-66}],"type":"coastline"},{"arc":[{"x":97883,"y":86491},{"x":-3,"y":-54},{"x":46,"y":1},{"x":-43,"y":53}],"type":"coastline"},{"arc":[{"x":98245,"y":85886},{"x":-44,"y":14},{"x":17,"y":-25},{"x":27,"y":11}],"type":"coastline"},{"arc":[{"x":98238,"y":87863},{"x":-53,"y":2},{"x":26,"y":-26},{"x":47,"y":10},{"x":-20,"y":14}],"type":"coastline"},{"arc":[{"x":95596,"y":86881},{"x":94,"y":-109},{"x":97,"y":-27},{"x":20,"y":-62},{"x":149,"y":-10},{"x":36,"y":-39},{"x":18,"y":57},{"x":77,"y":25},{"x":89,"y":-47},{"x":86,"y":22},{"x":21,"y":-66},{"x":207,"y":-33},{"x":290,"y":-222},{"x":198,"y":84},{"x":36,"y":-47},{"x":-46,"y":-12},{"x":40,"y":-30},{"x":-9,"y":-93},{"x":-40,"y":9},{"x":-8,"y":-31},{"x":31,"y":10},{"x":22,"y":-36},{"x":59,"y":-171},{"x":270,"y":-35},{"x":145,"y":-111},{"x":49,"y":42},{"x":10,"y":83},{"x":33,"y":11},{"x":-14,"y":86},{"x":28,"y":-19},{"x":49,"y":18},{"x":49,"y":-52},{"x":87,"y":-26},{"x":21,"y":-49},{"x":207,"y":-13},{"x":67,"y":-53},{"x":116,"y":-10}],"type":"area"},{"arc":[{"x":98180,"y":85925},{"x":-77,"y":84},{"x":-60,"y":7},{"x":2,"y":48},{"x":38,"y":-10},{"x":16,"y":35},{"x":-33,"y":84},{"x":-144,"y":49},{"x":102,"y":87},{"x":-157,"y":125},{"x":-12,"y":61},{"x":-38,"y":-1},{"x":75,"y":24},{"x":-22,"y":114},{"x":-8,"y":-66},{"x":-17,"y":45},{"x":-25,"y":-6},{"x":12,"y":36},{"x":33,"y":0},{"x":-29,"y":110},{"x":-46,"y":-31},{"x":8,"y":67},{"x":33,"y":-32},{"x":-3,"y":72},{"x":85,"y":69},{"x":-57,"y":-35},{"x":-35,"y":79},{"x":-35,"y":-8},{"x":30,"y":26},{"x":-34,"y":0},{"x":56,"y":33},{"x":26,"y":-70},{"x":39,"y":30},{"x":-37,"y":-16},{"x":10,"y":58},{"x":47,"y":-7},{"x":19,"y":49},{"x":-126,"y":-1},{"x":0,"y":41},{"x":100,"y":2},{"x":-4,"y":38},{"x":-108,"y":-9},{"x":16,"y":55},{"x":131,"y":47},{"x":183,"y":0},{"x":-119,"y":128},{"x":-106,"y":47},{"x":9,"y":31},{"x":-30,"y":-22},{"x":17,"y":56},{"x":147,"y":-47},{"x":33,"y":60},{"x":74,"y":7},{"x":-3,"y":32},{"x":44,"y":-23},{"x":-34,"y":-28},{"x":84,"y":-24},{"x":-9,"y":60},{"x":40,"y":74},{"x":-107,"y":180},{"x":-63,"y":32},{"x":-66,"y":3},{"x":-94,"y":-54},{"x":-136,"y":17},{"x":-79,"y":-21},{"x":25,"y":-5},{"x":-19,"y":-22},{"x":-160,"y":88},{"x":-20,"y":100},{"x":13,"y":31},{"x":7,"y":-21},{"x":61,"y":5},{"x":-18,"y":89},{"x":22,"y":-45},{"x":108,"y":20},{"x":22,"y":-34},{"x":53,"y":-2},{"x":-29,"y":57},{"x":-55,"y":17},{"x":27,"y":52},{"x":-36,"y":32},{"x":39,"y":63},{"x":35,"y":20},{"x":152,"y":-73},{"x":25,"y":52},{"x":-72,"y":45},{"x":-121,"y":16},{"x":-113,"y":117},{"x":7,"y":37},{"x":7,"y":-26},{"x":20,"y":49},{"x":103,"y":69},{"x":-49,"y":54},{"x":-91,"y":8},{"x":-6,"y":64},{"x":-65,"y":-35},{"x":-98,"y":28},{"x":-115,"y":-149},{"x":-97,"y":46},{"x":27,"y":-26},{"x":-25,"y":-12},{"x":9,"y":22},{"x":-121,"y":62},{"x":-21,"y":79},{"x":49,"y":-5},{"x":20,"y":26},{"x":-90,"y":58},{"x":-55,"y":84},{"x":-8,"y":54},{"x":43,"y":77},{"x":-189,"y":216},{"x":-14,"y":65},{"x":-46,"y":11},{"x":34,"y":-5},{"x":-35,"y":40},{"x":16,"y":65},{"x":-39,"y":103},{"x":39,"y":61},{"x":52,"y":-13},{"x":21,"y":25},{"x":-95,"y":116},{"x":-89,"y":42},{"x":-43,"y":-14},{"x":-20,"y":115},{"x":-29,"y":4},{"x":-19,"y":-60},{"x":-57,"y":54},{"x":28,"y":-42},{"x":-27,"y":15},{"x":-139,"y":175},{"x":-20,"y":77}],"type":"coastline"},{"arc":[{"x":98366,"y":86912},{"x":-104,"y":25},{"x":-81,"y":-19},{"x":-2,"y":-46},{"x":-96,"y":-85},{"x":71,"y":-4},{"x":212,"y":129}],"type":"coastline"},{"arc":[{"x":98395,"y":87560},{"x":-23,"y":10},{"x":0,"y":-32},{"x":23,"y":22}],"type":"coastline"},{"arc":[{"x":98398,"y":87437},{"x":-20,"y":15},{"x":-4,"y":-25},{"x":24,"y":10}],"type":"coastline"},{"arc":[{"x":98417,"y":87315},{"x":-93,"y":50},{"x":-43,"y":-87},{"x":55,"y":40},{"x":81,"y":-3}],"type":"coastline"},{"arc":[{"x":98457,"y":85907},{"x":-3,"y":-40}],"type":"coastline"},{"arc":[{"x":98479,"y":87478},{"x":-48,"y":3},{"x":2,"y":-32},{"x":46,"y":29}],"type":"coastline"},{"arc":[{"x":98594,"y":86981},{"x":-106,"y":18},{"x":-55,"y":-77},{"x":62,"y":-17},{"x":85,"y":37},{"x":14,"y":39}],"type":"coastline"},{"arc":[{"x":98680,"y":86598},{"x":-61,"y":-28},{"x":22,"y":-45},{"x":35,"y":20},{"x":4,"y":53}],"type":"coastline"},{"arc":[{"x":98865,"y":86221},{"x":-70,"y":18},{"x":16,"y":-86},{"x":43,"y":-2},{"x":-18,"y":40},{"x":29,"y":30}],"type":"coastline"},{"arc":[{"x":98969,"y":87972},{"x":-56,"y":-35},{"x":33,"y":-3},{"x":23,"y":38}],"type":"coastline"},{"arc":[{"x":98973,"y":86525},{"x":-38,"y":-1},{"x":9,"y":46},{"x":-90,"y":-66},{"x":86,"y":-25},{"x":33,"y":46}],"type":"coastline"},{"arc":[{"x":99017,"y":86130},{"x":-89,"y":39},{"x":48,"y":-63},{"x":41,"y":24}],"type":"coastline"},{"arc":[{"x":98982,"y":88844},{"x":12,"y":-27},{"x":23,"y":11},{"x":-19,"y":28},{"x":-16,"y":-12}],"type":"coastline"},{"arc":[{"x":99016,"y":86460},{"x":-19,"y":33},{"x":-49,"y":-21},{"x":61,"y":-45},{"x":7,"y":33}],"type":"coastline"},{"arc":[{"x":99019,"y":86255},{"x":-47,"y":21},{"x":36,"y":79},{"x":-46,"y":4},{"x":-105,"y":128},{"x":-95,"y":19},{"x":33,"y":72},{"x":-32,"y":8},{"x":-74,"y":-84},{"x":31,"y":-52},{"x":-39,"y":-25},{"x":41,"y":-33},{"x":8,"y":-44},{"x":-18,"y":21},{"x":-7,"y":-20},{"x":72,"y":-66},{"x":35,"y":15},{"x":132,"y":-77},{"x":52,"y":-4},{"x":23,"y":38}],"type":"coastline"},{"arc":[{"x":99043,"y":86275},{"x":-21,"y":41},{"x":-43,"y":-37},{"x":64,"y":-4}],"type":"coastline"},{"arc":[{"x":99059,"y":87485},{"x":-58,"y":-12},{"x":-38,"y":-68},{"x":22,"y":-67},{"x":45,"y":9},{"x":29,"y":138}],"type":"coastline"},{"arc":[{"x":99102,"y":86445},{"x":-69,"y":-38},{"x":54,"y":8},{"x":15,"y":30}],"type":"coastline"},{"arc":[{"x":99181,"y":86328},{"x":-28,"y":13},{"x":11,"y":36},{"x":-52,"y":-28},{"x":38,"y":-39},{"x":31,"y":18}],"type":"coastline"},{"arc":[{"x":99222,"y":87160},{"x":-85,"y":62},{"x":15,"y":81},{"x":-50,"y":6},{"x":-73,"y":-15},{"x":-76,"y":-88},{"x":-106,"y":-50},{"x":4,"y":-54},{"x":98,"y":-102},{"x":42,"y":-165},{"x":41,"y":-12},{"x":-17,"y":-37},{"x":34,"y":-14},{"x":20,"y":42},{"x":58,"y":15},{"x":-5,"y":121},{"x":-21,"y":-10},{"x":108,"y":91},{"x":13,"y":129}],"type":"coastline"},{"arc":[{"x":99267,"y":86319},{"x":-31,"y":9},{"x":-26,"y":-38},{"x":37,"y":-6},{"x":20,"y":35}],"type":"coastline"},{"arc":[{"x":99292,"y":86678},{"x":-270,"y":-25},{"x":85,"y":-76},{"x":102,"y":-27}],"type":"coastline"},{"arc":[{"x":99346,"y":86285},{"x":-57,"y":22},{"x":-25,"y":-56},{"x":61,"y":-1},{"x":21,"y":35}],"type":"coastline"},{"arc":[{"x":99424,"y":87673},{"x":-22,"y":13},{"x":-22,"y":-26},{"x":12,"y":-36},{"x":30,"y":0},{"x":2,"y":49}],"type":"coastline"},{"arc":[{"x":99437,"y":87779},{"x":-55,"y":-12},{"x":14,"y":-58},{"x":41,"y":70}],"type":"coastline"},{"arc":[{"x":99843,"y":89202},{"x":-17,"y":37},{"x":-25,"y":-43},{"x":-44,"y":10},{"x":49,"y":70},{"x":3,"y":83},{"x":-35,"y":-32},{"x":-1,"y":-64},{"x":-63,"y":-54},{"x":-63,"y":6},{"x":8,"y":-39},{"x":-41,"y":11},{"x":-23,"y":53},{"x":31,"y":82},{"x":-23,"y":-54},{"x":-52,"y":38},{"x":-97,"y":-43},{"x":-117,"y":14},{"x":-96,"y":-71},{"x":-88,"y":36},{"x":-32,"y":-72},{"x":-55,"y":10},{"x":-59,"y":77},{"x":-157,"y":-40},{"x":-111,"y":-104},{"x":-97,"y":39},{"x":-47,"y":-21},{"x":25,"y":-38},{"x":97,"y":-23},{"x":116,"y":-80},{"x":-34,"y":-44},{"x":27,"y":-96},{"x":-67,"y":-28},{"x":-79,"y":-110},{"x":47,"y":-46},{"x":7,"y":66},{"x":125,"y":-19},{"x":25,"y":94},{"x":-35,"y":39},{"x":32,"y":51},{"x":-32,"y":69},{"x":29,"y":-14},{"x":34,"y":26},{"x":39,"y":-25},{"x":8,"y":22},{"x":59,"y":-59},{"x":7,"y":-65},{"x":-16,"y":-7},{"x":16,"y":-19},{"x":8,"y":2},{"x":6,"y":-22},{"x":-83,"y":-103},{"x":-27,"y":-118},{"x":-127,"y":-64},{"x":-53,"y":24},{"x":-90,"y":-86},{"x":-92,"y":-39},{"x":-53,"y":36},{"x":-91,"y":-123},{"x":6,"y":-34},{"x":93,"y":-52},{"x":29,"y":65},{"x":38,"y":-1},{"x":-19,"y":40},{"x":66,"y":-4},{"x":11,"y":-108},{"x":55,"y":89},{"x":57,"y":33},{"x":51,"y":-11},{"x":31,"y":41},{"x":41,"y":-16},{"x":-1,"y":-36},{"x":71,"y":-1},{"x":-14,"y":-54},{"x":70,"y":33},{"x":40,"y":-40},{"x":-71,"y":-94},{"x":91,"y":-53},{"x":-25,"y":-59},{"x":44,"y":-59},{"x":-49,"y":-23},{"x":35,"y":-21},{"x":-34,"y":-4},{"x":-4,"y":26},{"x":-46,"y":-23},{"x":47,"y":-11},{"x":-41,"y":-40},{"x":15,"y":-50},{"x":-29,"y":-37},{"x":-85,"y":-22},{"x":-47,"y":-131},{"x":72,"y":-21},{"x":22,"y":-61},{"x":95,"y":32},{"x":127,"y":94},{"x":7,"y":75},{"x":-59,"y":112},{"x":120,"y":-123},{"x":66,"y":-3},{"x":-21,"y":-70},{"x":77,"y":82},{"x":27,"y":-23},{"x":-18,"y":29},{"x":48,"y":-16},{"x":94,"y":51},{"x":-102,"y":49},{"x":-22,"y":70},{"x":54,"y":50},{"x":-5,"y":121},{"x":79,"y":106},{"x":-24,"y":49},{"x":26,"y":81},{"x":52,"y":17},{"x":76,"y":119},{"x":40,"y":-5},{"x":57,"y":68},{"x":-3,"y":41},{"x":-32,"y":-12},{"x":-19,"y":28},{"x":-8,"y":184},{"x":25,"y":77},{"x":89,"y":65},{"x":49,"y":122},{"x":9,"y":139}],"type":"coastline"},{"arc":[{"x":95778,"y":82796},{"x":-51,"y":68},{"x":15,"y":38},{"x":-39,"y":8},{"x":-45,"y":-76},{"x":92,"y":-49},{"x":28,"y":11}],"type":"coastline"},{"arc":[{"x":95961,"y":82216},{"x":-12,"y":31},{"x":-12,"y":-29},{"x":24,"y":-2}],"type":"coastline"},{"arc":[{"x":96331,"y":83626},{"x":-5,"y":24},{"x":-17,"y":-43},{"x":22,"y":19}],"type":"coastline"},{"arc":[{"x":96413,"y":83584},{"x":-72,"y":14},{"x":51,"y":-62},{"x":21,"y":48}],"type":"coastline"},{"arc":[{"x":97087,"y":83950},{"x":-40,"y":74},{"x":-27,"y":-27},{"x":11,"y":-74},{"x":32,"y":-9},{"x":24,"y":36}],"type":"coastline"},{"arc":[{"x":97206,"y":83574},{"x":-13,"y":33},{"x":-69,"y":-18},{"x":-54,"y":52},{"x":-1,"y":47},{"x":81,"y":49},{"x":1,"y":68},{"x":-54,"y":-31},{"x":-48,"y":21},{"x":-27,"y":-31},{"x":40,"y":-76},{"x":-20,"y":-60},{"x":-132,"y":-104},{"x":95,"y":-20},{"x":53,"y":73},{"x":43,"y":7},{"x":51,"y":-56},{"x":54,"y":46}],"type":"coastline"},{"arc":[{"x":97572,"y":83868},{"x":-115,"y":150},{"x":-73,"y":-27},{"x":28,"y":-79},{"x":116,"y":-59},{"x":44,"y":15}],"type":"coastline"},{"arc":[{"x":97655,"y":83729},{"x":14,"y":-65},{"x":17,"y":34},{"x":-31,"y":31}],"type":"coastline"},{"arc":[{"x":97845,"y":83532},{"x":-147,"y":81},{"x":-77,"y":-42},{"x":27,"y":-50},{"x":166,"y":-20},{"x":31,"y":31}],"type":"coastline"},{"arc":[{"x":97951,"y":84769},{"x":-14,"y":46},{"x":-60,"y":9},{"x":-6,"y":-98},{"x":68,"y":15},{"x":12,"y":28}],"type":"coastline"},{"arc":[{"x":98030,"y":85338},{"x":-30,"y":19},{"x":21,"y":-38},{"x":9,"y":19}],"type":"coastline"},{"arc":[{"x":98120,"y":83752},{"x":-67,"y":36},{"x":-29,"y":-17},{"x":44,"y":-76},{"x":52,"y":57}],"type":"coastline"},{"arc":[{"x":94601,"y":83987},{"x":53,"y":-11},{"x":86,"y":-101},{"x":27,"y":-66},{"x":-39,"y":-136},{"x":113,"y":-99},{"x":-53,"y":-105},{"x":35,"y":-71},{"x":73,"y":-45}],"type":"admin"},{"arc":[{"x":94896,"y":83353},{"x":53,"y":188},{"x":104,"y":68},{"x":106,"y":20},{"x":96,"y":-25},{"x":-33,"y":48},{"x":55,"y":-35},{"x":65,"y":47},{"x":39,"y":-40},{"x":-17,"y":47},{"x":18,"y":-35},{"x":177,"y":19},{"x":52,"y":-71},{"x":4,"y":38},{"x":42,"y":-9},{"x":9,"y":58},{"x":-2,"y":-64},{"x":26,"y":60},{"x":1,"y":-40},{"x":37,"y":50},{"x":167,"y":22},{"x":67,"y":-29},{"x":-3,"y":51},{"x":4,"y":-28},{"x":28,"y":29},{"x":120,"y":16},{"x":96,"y":-21},{"x":41,"y":33},{"x":67,"y":-5},{"x":-16,"y":-39},{"x":81,"y":-44},{"x":0,"y":-28},{"x":41,"y":35},{"x":-18,"y":-34},{"x":75,"y":1},{"x":34,"y":-68},{"x":-20,"y":-22},{"x":82,"y":-39},{"x":21,"y":-66},{"x":103,"y":-31},{"x":96,"y":-174},{"x":-5,"y":-82},{"x":53,"y":53},{"x":32,"y":-49},{"x":56,"y":8},{"x":39,"y":-136},{"x":33,"y":118},{"x":-46,"y":68},{"x":-1,"y":83},{"x":-14,"y":-23},{"x":-34,"y":19},{"x":-52,"y":174},{"x":-53,"y":39},{"x":-75,"y":-10},{"x":-9,"y":41},{"x":37,"y":94},{"x":-60,"y":96},{"x":5,"y":64},{"x":48,"y":24},{"x":19,"y":72},{"x":59,"y":45},{"x":-61,"y":-3},{"x":-1,"y":21},{"x":1,"y":-37},{"x":-59,"y":-26},{"x":-74,"y":37},{"x":101,"y":28},{"x":-8,"y":25},{"x":-113,"y":-32},{"x":-11,"y":-27},{"x":-12,"y":23},{"x":114,"y":60},{"x":-7,"y":50},{"x":37,"y":1},{"x":-11,"y":107},{"x":241,"y":227},{"x":2,"y":40},{"x":21,"y":14},{"x":91,"y":-60},{"x":87,"y":49},{"x":-80,"y":22},{"x":-23,"y":35},{"x":40,"y":-16},{"x":2,"y":49},{"x":55,"y":-59},{"x":32,"y":50},{"x":-63,"y":39},{"x":79,"y":71},{"x":-31,"y":19},{"x":47,"y":29},{"x":-3,"y":44},{"x":109,"y":-84},{"x":48,"y":52},{"x":-149,"y":70},{"x":69,"y":-17},{"x":33,"y":63},{"x":57,"y":-88},{"x":45,"y":83},{"x":-112,"y":56},{"x":-41,"y":-15},{"x":-6,"y":39},{"x":54,"y":-11},{"x":19,"y":40},{"x":61,"y":-60},{"x":18,"y":28},{"x":-38,"y":35},{"x":107,"y":142},{"x":21,"y":-12},{"x":-25,"y":22},{"x":18,"y":33},{"x":22,"y":-11},{"x":26,"y":32},{"x":-35,"y":30},{"x":59,"y":2},{"x":-15,"y":-44},{"x":213,"y":2},{"x":57,"y":-22},{"x":-45,"y":28},{"x":39,"y":11},{"x":76,"y":128},{"x":-44,"y":0},{"x":-79,"y":-88},{"x":-52,"y":-4},{"x":125,"y":141},{"x":-34,"y":7},{"x":58,"y":0},{"x":25,"y":46},{"x":-59,"y":45},{"x":-80,"y":-14},{"x":-63,"y":-70},{"x":-5,"y":-80},{"x":-35,"y":31},{"x":-33,"y":-91},{"x":3,"y":25},{"x":-77,"y":20},{"x":62,"y":109},{"x":-51,"y":-20},{"x":32,"y":54},{"x":-19,"y":23},{"x":50,"y":14},{"x":-44,"y":36},{"x":48,"y":-17},{"x":53,"y":46},{"x":11,"y":46},{"x":58,"y":36},{"x":-29,"y":45},{"x":22,"y":-17},{"x":73,"y":67},{"x":22,"y":-18},{"x":34,"y":12},{"x":-48,"y":0},{"x":14,"y":35},{"x":26,"y":-20},{"x":-21,"y":25},{"x":48,"y":-34},{"x":46,"y":17},{"x":101,"y":-37},{"x":45,"y":22},{"x":29,"y":40},{"x":-49,"y":35},{"x":6,"y":55},{"x":35,"y":17},{"x":-41,"y":88},{"x":113,"y":52}],"type":"coastline"},{"arc":[{"x":98231,"y":85158},{"x":-77,"y":17},{"x":39,"y":-33},{"x":38,"y":16}],"type":"coastline"},{"arc":[{"x":98234,"y":85088},{"x":-49,"y":32},{"x":-77,"y":-5},{"x":18,"y":-64},{"x":61,"y":-26},{"x":47,"y":63}],"type":"coastline"},{"arc":[{"x":98270,"y":84229},{"x":-26,"y":65},{"x":-36,"y":-9},{"x":-209,"y":101},{"x":-77,"y":-63},{"x":8,"y":-83},{"x":-94,"y":-23},{"x":-17,"y":-74},{"x":96,"y":-118},{"x":38,"y":34},{"x":131,"y":19},{"x":-8,"y":48},{"x":77,"y":17},{"x":4,"y":75},{"x":113,"y":11}],"type":"coastline"},{"arc":[{"x":98288,"y":84754},{"x":-53,"y":99},{"x":-37,"y":-2},{"x":-34,"y":40},{"x":-6,"y":-50},{"x":-34,"y":0},{"x":31,"y":-40},{"x":-34,"y":31},{"x":-53,"y":-117},{"x":-84,"y":-64},{"x":10,"y":-73},{"x":83,"y":39},{"x":90,"y":-58},{"x":98,"y":0},{"x":-82,"y":68},{"x":105,"y":127}],"type":"coastline"},{"arc":[{"x":98347,"y":84803},{"x":-34,"y":43},{"x":-21,"y":-81},{"x":55,"y":38}],"type":"coastline"},{"arc":[{"x":98361,"y":85022},{"x":-42,"y":-6},{"x":3,"y":-26},{"x":39,"y":32}],"type":"coastline"},{"arc":[{"x":98381,"y":83926},{"x":-14,"y":33},{"x":-100,"y":-38},{"x":13,"y":48},{"x":-50,"y":6},{"x":-116,"y":-93},{"x":82,"y":-39},{"x":67,"y":5},{"x":97,"y":-86},{"x":-20,"y":65},{"x":41,"y":99}],"type":"coastline"},{"arc":[{"x":98422,"y":84774},{"x":-27,"y":29},{"x":17,"y":-70},{"x":10,"y":41}],"type":"coastline"},{"arc":[{"x":98538,"y":84964},{"x":-62,"y":36},{"x":-57,"y":-23},{"x":-1,"y":31},{"x":-19,"y":-26},{"x":119,"y":-88},{"x":20,"y":70}],"type":"coastline"},{"arc":[{"x":94467,"y":82857},{"x":-33,"y":-1},{"x":80,"y":-11},{"x":-47,"y":12}],"type":"coastline"},{"arc":[{"x":94556,"y":81546},{"x":-22,"y":27},{"x":-124,"y":-20},{"x":18,"y":-23},{"x":-14,"y":16},{"x":-33,"y":-46},{"x":50,"y":-23},{"x":17,"y":-62},{"x":85,"y":33},{"x":-17,"y":52},{"x":40,"y":46}],"type":"coastline"},{"arc":[{"x":94712,"y":79449},{"x":-49,"y":-29},{"x":33,"y":-40},{"x":16,"y":69}],"type":"coastline"},{"arc":[{"x":95063,"y":79431},{"x":-13,"y":63},{"x":-32,"y":3},{"x":13,"y":-68},{"x":32,"y":2}],"type":"coastline"},{"arc":[{"x":95544,"y":80092},{"x":-47,"y":81},{"x":-40,"y":-29},{"x":6,"y":-41},{"x":47,"y":1},{"x":-6,"y":-39},{"x":40,"y":27}],"type":"coastline"},{"arc":[{"x":95640,"y":78626},{"x":-83,"y":14},{"x":-10,"y":-35},{"x":62,"y":-16},{"x":31,"y":37}],"type":"coastline"},{"arc":[{"x":95653,"y":80171},{"x":-33,"y":-40},{"x":-32,"y":11},{"x":-2,"y":-57},{"x":56,"y":27},{"x":11,"y":59}],"type":"coastline"},{"arc":[{"x":95660,"y":79922},{"x":-59,"y":-7},{"x":46,"y":-28},{"x":13,"y":35}],"type":"coastline"},{"arc":[{"x":95705,"y":78533},{"x":-13,"y":17},{"x":-42,"y":-26},{"x":-9,"y":-56},{"x":50,"y":15},{"x":14,"y":50}],"type":"coastline"},{"arc":[{"x":93360,"y":83840},{"x":15,"y":-136},{"x":-108,"y":-125},{"x":84,"y":-129},{"x":-6,"y":-103},{"x":-119,"y":-115},{"x":18,"y":-91},{"x":121,"y":-113},{"x":-3,"y":-53},{"x":-32,"y":-78},{"x":-122,"y":-32},{"x":-39,"y":-79},{"x":-76,"y":3},{"x":-60,"y":-64},{"x":-2,"y":-77},{"x":-108,"y":-2},{"x":-64,"y":-70},{"x":32,"y":-56},{"x":-26,"y":-41},{"x":68,"y":-126},{"x":-22,"y":-57},{"x":23,"y":-68},{"x":-35,"y":-43},{"x":63,"y":-264},{"x":-35,"y":-113},{"x":-113,"y":-73},{"x":95,"y":-280},{"x":-90,"y":-78},{"x":-32,"y":-94},{"x":-64,"y":-62},{"x":11,"y":-120},{"x":123,"y":-131},{"x":20,"y":-127},{"x":-65,"y":-75},{"x":-124,"y":-55},{"x":-97,"y":1},{"x":-113,"y":-76},{"x":-82,"y":-239},{"x":135,"y":-116},{"x":-5,"y":-99},{"x":-260,"y":-81},{"x":-154,"y":-194}],"type":"admin"},{"arc":[{"x":92112,"y":79909},{"x":98,"y":-173},{"x":39,"y":-18},{"x":16,"y":-127},{"x":61,"y":-64},{"x":-35,"y":-53},{"x":-66,"y":-13},{"x":-55,"y":-137},{"x":23,"y":-75},{"x":-34,"y":-119},{"x":101,"y":-303},{"x":128,"y":-20},{"x":58,"y":50},{"x":172,"y":-79},{"x":93,"y":-2},{"x":35,"y":-139},{"x":-50,"y":-69},{"x":147,"y":-51},{"x":26,"y":-51},{"x":155,"y":-42},{"x":92,"y":53},{"x":118,"y":-46},{"x":63,"y":-71},{"x":89,"y":-23},{"x":92,"y":30},{"x":98,"y":-11},{"x":36,"y":-83},{"x":-62,"y":-91},{"x":35,"y":-88},{"x":213,"y":-4},{"x":81,"y":-36},{"x":13,"y":-77},{"x":126,"y":-184},{"x":95,"y":-16},{"x":80,"y":5},{"x":33,"y":33},{"x":69,"y":-20},{"x":77,"y":19},{"x":72,"y":-71},{"x":-3,"y":-177},{"x":92,"y":-122},{"x":-59,"y":-79},{"x":59,"y":-100},{"x":26,"y":11},{"x":100,"y":-97}],"type":"area"},{"arc":[{"x":94659,"y":77179},{"x":98,"y":149},{"x":63,"y":38},{"x":-18,"y":-11},{"x":-8,"y":30},{"x":52,"y":22},{"x":-42,"y":3},{"x":77,"y":19},{"x":28,"y":108},{"x":92,"y":24},{"x":43,"y":60},{"x":-28,"y":39},{"x":22,"y":123},{"x":93,"y":111},{"x":-57,"y":93},{"x":34,"y":81},{"x":18,"y":-21},{"x":40,"y":16},{"x":6,"y":-23},{"x":-1,"y":24},{"x":91,"y":9},{"x":40,"y":-27},{"x":10,"y":77},{"x":46,"y":18},{"x":169,"y":-36},{"x":-25,"y":-20},{"x":42,"y":-32},{"x":15,"y":-115},{"x":-40,"y":-56},{"x":31,"y":-28},{"x":41,"y":9},{"x":14,"y":-36},{"x":29,"y":183},{"x":-43,"y":30},{"x":-2,"y":50},{"x":63,"y":24},{"x":34,"y":63},{"x":152,"y":44},{"x":-185,"y":110},{"x":8,"y":-25},{"x":-55,"y":98},{"x":-108,"y":30},{"x":86,"y":34},{"x":-3,"y":40},{"x":-116,"y":12},{"x":-137,"y":110},{"x":-65,"y":6},{"x":-156,"y":93},{"x":82,"y":-7},{"x":-127,"y":105},{"x":37,"y":7},{"x":-23,"y":20},{"x":-120,"y":18},{"x":31,"y":57},{"x":34,"y":2},{"x":-74,"y":12},{"x":-31,"y":-33},{"x":-61,"y":57},{"x":-287,"y":103},{"x":-128,"y":80},{"x":-123,"y":46},{"x":-32,"y":-43},{"x":-37,"y":12},{"x":-24,"y":78},{"x":-3,"y":-28},{"x":-142,"y":139},{"x":-115,"y":12},{"x":38,"y":54},{"x":-24,"y":23},{"x":22,"y":23},{"x":-31,"y":-26},{"x":16,"y":-22},{"x":-21,"y":17},{"x":-48,"y":-28},{"x":29,"y":34},{"x":-26,"y":25},{"x":67,"y":52},{"x":-64,"y":90},{"x":-100,"y":-54},{"x":-57,"y":52},{"x":116,"y":8},{"x":46,"y":45},{"x":-93,"y":1},{"x":-44,"y":58},{"x":22,"y":1},{"x":-15,"y":51},{"x":98,"y":218},{"x":26,"y":-9},{"x":-79,"y":36},{"x":-48,"y":0},{"x":31,"y":43},{"x":103,"y":-47},{"x":2,"y":74},{"x":54,"y":-16},{"x":18,"y":60},{"x":-54,"y":16},{"x":21,"y":61},{"x":-96,"y":17},{"x":-2,"y":29},{"x":100,"y":-19},{"x":49,"y":239},{"x":58,"y":-5},{"x":-58,"y":10},{"x":6,"y":43},{"x":39,"y":-4},{"x":7,"y":59},{"x":-39,"y":5},{"x":-4,"y":31},{"x":71,"y":-5},{"x":-37,"y":57},{"x":45,"y":-41},{"x":33,"y":42},{"x":2,"y":-36},{"x":104,"y":-10},{"x":52,"y":55},{"x":-1,"y":52},{"x":-36,"y":-23},{"x":-152,"y":34},{"x":86,"y":1},{"x":-14,"y":58},{"x":40,"y":-34},{"x":15,"y":96},{"x":61,"y":-107},{"x":30,"y":36},{"x":-22,"y":68},{"x":71,"y":0},{"x":-82,"y":55},{"x":46,"y":42},{"x":-21,"y":-10},{"x":-15,"y":37},{"x":6,"y":58},{"x":50,"y":103},{"x":55,"y":35},{"x":-4,"y":-26},{"x":17,"y":38},{"x":-37,"y":58},{"x":24,"y":42},{"x":-89,"y":-8},{"x":-16,"y":-39},{"x":-16,"y":65},{"x":9,"y":28},{"x":107,"y":-30},{"x":-11,"y":71},{"x":-62,"y":42},{"x":-28,"y":-28},{"x":17,"y":33},{"x":-44,"y":57},{"x":60,"y":230},{"x":56,"y":59},{"x":-28,"y":58},{"x":22,"y":65},{"x":-45,"y":24},{"x":15,"y":123},{"x":-59,"y":166},{"x":27,"y":17},{"x":-87,"y":94},{"x":19,"y":48},{"x":-24,"y":-11},{"x":-15,"y":119},{"x":-36,"y":30},{"x":47,"y":194},{"x":-39,"y":-13},{"x":77,"y":66},{"x":-26,"y":17},{"x":42,"y":-1},{"x":69,"y":77},{"x":-30,"y":47},{"x":23,"y":9},{"x":20,"y":-49},{"x":63,"y":36},{"x":-87,"y":44},{"x":49,"y":36},{"x":17,"y":-19},{"x":23,"y":50},{"x":79,"y":-87},{"x":41,"y":37},{"x":-65,"y":75},{"x":91,"y":-52},{"x":23,"y":21},{"x":-38,"y":75},{"x":59,"y":9},{"x":-19,"y":25},{"x":35,"y":28},{"x":16,"y":-36},{"x":73,"y":38},{"x":-57,"y":-11},{"x":45,"y":23},{"x":-74,"y":10},{"x":61,"y":1},{"x":2,"y":59},{"x":35,"y":-28},{"x":37,"y":17},{"x":-18,"y":38},{"x":47,"y":22},{"x":-7,"y":40},{"x":94,"y":56}],"type":"coastline"},{"arc":[{"x":95987,"y":78659},{"x":-53,"y":101},{"x":-47,"y":-11},{"x":30,"y":-152},{"x":32,"y":0},{"x":38,"y":62}],"type":"coastline"},{"arc":[{"x":96134,"y":81486},{"x":-67,"y":52},{"x":-39,"y":-22},{"x":106,"y":-30}],"type":"coastline"},{"arc":[{"x":96226,"y":81093},{"x":-48,"y":93},{"x":18,"y":35},{"x":-67,"y":20},{"x":-30,"y":-98},{"x":88,"y":-65},{"x":39,"y":15}],"type":"coastline"},{"arc":[{"x":96325,"y":77934},{"x":-14,"y":24},{"x":-36,"y":-8},{"x":-26,"y":-80},{"x":31,"y":-7},{"x":45,"y":71}],"type":"coastline"},{"arc":[{"x":96331,"y":79366},{"x":-23,"y":44},{"x":-43,"y":-4},{"x":-58,"y":-77},{"x":47,"y":-9},{"x":77,"y":46}],"type":"coastline"},{"arc":[{"x":96335,"y":78965},{"x":-33,"y":246},{"x":-53,"y":57},{"x":-88,"y":3},{"x":-72,"y":56},{"x":22,"y":-6},{"x":-16,"y":55},{"x":33,"y":21},{"x":9,"y":114},{"x":40,"y":52},{"x":-85,"y":-22},{"x":-101,"y":-73},{"x":-17,"y":-114},{"x":-117,"y":-59},{"x":-99,"y":-142},{"x":-94,"y":-43},{"x":-39,"y":-78},{"x":-66,"y":-19},{"x":-5,"y":-45},{"x":-51,"y":-17},{"x":17,"y":-160},{"x":44,"y":-13},{"x":47,"y":60},{"x":61,"y":18},{"x":18,"y":-67},{"x":85,"y":38},{"x":56,"y":-33},{"x":53,"y":63},{"x":100,"y":26},{"x":-21,"y":56},{"x":-48,"y":-2},{"x":7,"y":36},{"x":-39,"y":-28},{"x":22,"y":51},{"x":199,"y":-49},{"x":14,"y":-64},{"x":65,"y":-46},{"x":62,"y":57},{"x":70,"y":15},{"x":20,"y":56}],"type":"coastline"},{"arc":[{"x":96344,"y":79268},{"x":-29,"y":10},{"x":26,"y":-39},{"x":3,"y":29}],"type":"coastline"},{"arc":[{"x":96355,"y":77684},{"x":-60,"y":71},{"x":10,"y":73},{"x":-72,"y":20},{"x":0,"y":-79},{"x":-93,"y":-28},{"x":177,"y":-149},{"x":38,"y":92}],"type":"coastline"},{"arc":[{"x":96381,"y":80804},{"x":-145,"y":35},{"x":-22,"y":-66},{"x":137,"y":-27},{"x":30,"y":58}],"type":"coastline"},{"arc":[{"x":96400,"y":78080},{"x":-183,"y":73},{"x":38,"y":-117},{"x":23,"y":-3},{"x":-11,"y":37},{"x":99,"y":-27},{"x":34,"y":37}],"type":"coastline"},{"arc":[{"x":96433,"y":78179},{"x":-46,"y":10},{"x":-16,"y":-43},{"x":18,"y":-12},{"x":44,"y":45}],"type":"coastline"},{"arc":[{"x":96671,"y":79910},{"x":-139,"y":-70},{"x":58,"y":-10},{"x":81,"y":80}],"type":"coastline"},{"arc":[{"x":96720,"y":80705},{"x":-18,"y":31},{"x":-39,"y":-14},{"x":-2,"y":-89},{"x":59,"y":72}],"type":"coastline"},{"arc":[{"x":96776,"y":79518},{"x":-77,"y":29},{"x":-19,"y":-38},{"x":-42,"y":27},{"x":-58,"y":-21},{"x":-63,"y":203},{"x":61,"y":56},{"x":-96,"y":-19},{"x":18,"y":-51},{"x":-64,"y":-57},{"x":22,"y":-14},{"x":-24,"y":-41},{"x":-30,"y":15},{"x":28,"y":22},{"x":-96,"y":35},{"x":-7,"y":-95},{"x":-35,"y":-37},{"x":130,"y":-100},{"x":-113,"y":-120},{"x":156,"y":-92},{"x":-26,"y":-77},{"x":22,"y":-33},{"x":32,"y":-13},{"x":31,"y":26},{"x":33,"y":77},{"x":82,"y":-64},{"x":74,"y":41},{"x":14,"y":49},{"x":-53,"y":18},{"x":-14,"y":53},{"x":82,"y":108},{"x":-26,"y":71},{"x":58,"y":42}],"type":"coastline"},{"arc":[{"x":96820,"y":79955},{"x":-44,"y":66},{"x":-72,"y":-39},{"x":-12,"y":-117},{"x":84,"y":-11},{"x":44,"y":101}],"type":"coastline"},{"arc":[{"x":96849,"y":78283},{"x":-17,"y":46},{"x":-42,"y":14},{"x":-13,"y":-101},{"x":72,"y":41}],"type":"coastline"},{"arc":[{"x":96924,"y":80185},{"x":-28,"y":43},{"x":-82,"y":-20},{"x":-33,"y":-45},{"x":-79,"y":13},{"x":-68,"y":-90},{"x":40,"y":-34},{"x":9,"y":53},{"x":62,"y":-21},{"x":59,"y":36},{"x":77,"y":1},{"x":43,"y":64}],"type":"coastline"},{"arc":[{"x":97143,"y":79867},{"x":-90,"y":71},{"x":-20,"y":-20},{"x":-121,"y":57},{"x":-100,"y":-111},{"x":-44,"y":-151},{"x":154,"y":-22},{"x":77,"y":20},{"x":136,"y":89},{"x":8,"y":67}],"type":"coastline"},{"arc":[{"x":97189,"y":79072},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":97193,"y":80019},{"x":-82,"y":75},{"x":-78,"y":27},{"x":6,"y":26},{"x":-32,"y":-5},{"x":16,"y":-18},{"x":-88,"y":6},{"x":-25,"y":-60},{"x":22,"y":-51},{"x":66,"y":-18},{"x":54,"y":28},{"x":21,"y":-50},{"x":28,"y":21},{"x":49,"y":-33},{"x":43,"y":52}],"type":"coastline"},{"arc":[{"x":97211,"y":79960},{"x":-29,"y":-4},{"x":28,"y":-24},{"x":32,"y":15},{"x":-31,"y":13}],"type":"coastline"},{"arc":[{"x":97251,"y":80466},{"x":-138,"y":61},{"x":-101,"y":-78},{"x":-76,"y":-140},{"x":-80,"y":26},{"x":-5,"y":54},{"x":-54,"y":-41},{"x":-55,"y":-64},{"x":18,"y":-43},{"x":89,"y":-5},{"x":83,"y":35},{"x":14,"y":-35},{"x":87,"y":-6},{"x":69,"y":88},{"x":83,"y":21},{"x":66,"y":127}],"type":"coastline"},{"arc":[{"x":97326,"y":78766},{"x":-61,"y":142},{"x":-71,"y":43},{"x":-82,"y":6},{"x":-96,"y":69},{"x":22,"y":-24},{"x":-73,"y":19},{"x":-35,"y":104},{"x":-152,"y":-46},{"x":-140,"y":6},{"x":-68,"y":48},{"x":-109,"y":-203},{"x":25,"y":-96},{"x":-17,"y":-155},{"x":-75,"y":-66},{"x":-96,"y":-226},{"x":15,"y":-114},{"x":105,"y":20},{"x":3,"y":-77},{"x":177,"y":101},{"x":-34,"y":89},{"x":39,"y":-1},{"x":-1,"y":-26},{"x":40,"y":16},{"x":10,"y":129},{"x":-42,"y":10},{"x":7,"y":68},{"x":112,"y":-4},{"x":63,"y":33},{"x":44,"y":-56},{"x":-6,"y":65},{"x":43,"y":-3},{"x":4,"y":-47},{"x":80,"y":17},{"x":25,"y":-35},{"x":-52,"y":-118},{"x":58,"y":-56},{"x":60,"y":47},{"x":-6,"y":111},{"x":97,"y":6},{"x":61,"y":-38},{"x":39,"y":27},{"x":-12,"y":95},{"x":99,"y":120}],"type":"coastline"},{"arc":[{"x":93084,"y":75033},{"x":-79,"y":-17},{"x":70,"y":-47},{"x":8,"y":-78},{"x":29,"y":108},{"x":-28,"y":34}],"type":"coastline"},{"arc":[{"x":93483,"y":75853},{"x":-36,"y":56},{"x":-36,"y":-7},{"x":1,"y":-37},{"x":71,"y":-12}],"type":"coastline"},{"arc":[{"x":93784,"y":76262},{"x":-3,"y":90},{"x":-33,"y":-6},{"x":-7,"y":-53},{"x":-87,"y":-13},{"x":8,"y":-22},{"x":-92,"y":20},{"x":-32,"y":-82},{"x":23,"y":-38},{"x":-82,"y":-44},{"x":-85,"y":83},{"x":-45,"y":-15},{"x":-46,"y":69},{"x":-25,"y":-57},{"x":19,"y":-75},{"x":-45,"y":-36},{"x":65,"y":-52},{"x":200,"y":48},{"x":47,"y":-49},{"x":-31,"y":-67},{"x":103,"y":56},{"x":-4,"y":146},{"x":100,"y":4},{"x":8,"y":76},{"x":44,"y":17}],"type":"coastline"},{"arc":[{"x":93800,"y":75228},{"x":-19,"y":29},{"x":18,"y":-52},{"x":1,"y":23}],"type":"coastline"},{"arc":[{"x":93895,"y":75157},{"x":-16,"y":35},{"x":-30,"y":-7},{"x":-10,"y":-83},{"x":-52,"y":-58},{"x":6,"y":-137},{"x":48,"y":-18},{"x":40,"y":47},{"x":-32,"y":124},{"x":46,"y":97}],"type":"coastline"},{"arc":[{"x":94233,"y":76032},{"x":-36,"y":70},{"x":22,"y":18},{"x":-195,"y":13},{"x":52,"y":-68},{"x":-53,"y":-32},{"x":-8,"y":-41},{"x":62,"y":-56},{"x":79,"y":11},{"x":77,"y":85}],"type":"coastline"},{"arc":[{"x":94258,"y":76843},{"x":-32,"y":13},{"x":-13,"y":-26},{"x":26,"y":-15},{"x":19,"y":28}],"type":"coastline"},{"arc":[{"x":94267,"y":76249},{"x":-12,"y":38},{"x":-99,"y":27},{"x":-7,"y":-90},{"x":75,"y":-29},{"x":-7,"y":49},{"x":24,"y":9},{"x":2,"y":-25},{"x":24,"y":21}],"type":"coastline"},{"arc":[{"x":94390,"y":74866},{"x":-4,"y":78},{"x":-32,"y":4},{"x":-48,"y":-79},{"x":-59,"y":0},{"x":-7,"y":-54},{"x":-37,"y":-6},{"x":-54,"y":-97},{"x":51,"y":-15},{"x":-3,"y":53},{"x":41,"y":22},{"x":66,"y":-39},{"x":21,"y":41},{"x":58,"y":16},{"x":-21,"y":43},{"x":28,"y":33}],"type":"coastline"},{"arc":[{"x":94438,"y":74909},{"x":-41,"y":30},{"x":6,"y":-28},{"x":35,"y":-2}],"type":"coastline"},{"arc":[{"x":94427,"y":75250},{"x":4,"y":42},{"x":-44,"y":-32},{"x":-31,"y":15},{"x":-4,"y":-60},{"x":-71,"y":-10},{"x":-44,"y":-48},{"x":-43,"y":-3},{"x":-9,"y":-42},{"x":-72,"y":-26},{"x":74,"y":-56},{"x":50,"y":61},{"x":44,"y":-50},{"x":36,"y":19},{"x":59,"y":-19},{"x":51,"y":209}],"type":"coastline"},{"arc":[{"x":94655,"y":75906},{"x":-45,"y":54},{"x":-83,"y":-91},{"x":-100,"y":-5},{"x":-123,"y":39},{"x":-30,"y":-85},{"x":-40,"y":4},{"x":37,"y":-12},{"x":-31,"y":-28},{"x":-52,"y":28},{"x":33,"y":3},{"x":-12,"y":51},{"x":-98,"y":31},{"x":-40,"y":-19},{"x":-29,"y":-74},{"x":38,"y":-57},{"x":-10,"y":-25},{"x":-14,"y":17},{"x":17,"y":-78},{"x":-133,"y":-114},{"x":70,"y":-63},{"x":72,"y":-2},{"x":102,"y":-103},{"x":22,"y":95},{"x":35,"y":5},{"x":94,"y":113},{"x":67,"y":-3},{"x":35,"y":38},{"x":-31,"y":43},{"x":9,"y":58},{"x":123,"y":81},{"x":38,"y":93},{"x":79,"y":6}],"type":"coastline"},{"arc":[{"x":92112,"y":79909},{"x":-180,"y":26},{"x":-149,"y":-167},{"x":-107,"y":36},{"x":-58,"y":-149},{"x":-73,"y":-39},{"x":-156,"y":9},{"x":-132,"y":-38},{"x":-34,"y":-78},{"x":11,"y":-125},{"x":-68,"y":-122},{"x":-275,"y":-61},{"x":-123,"y":97},{"x":-123,"y":-180},{"x":-185,"y":-78},{"x":-139,"y":123},{"x":-72,"y":-16},{"x":-110,"y":30},{"x":-154,"y":-206},{"x":-135,"y":-27},{"x":-205,"y":-165},{"x":-89,"y":17}],"type":"admin"},{"arc":[{"x":89556,"y":78796},{"x":-140,"y":-436},{"x":3,"y":-62},{"x":51,"y":-60},{"x":-41,"y":-223},{"x":26,"y":-116}],"type":"admin"},{"arc":[{"x":89455,"y":77899},{"x":55,"y":-37},{"x":58,"y":43},{"x":147,"y":-43},{"x":57,"y":34},{"x":101,"y":2},{"x":32,"y":72},{"x":88,"y":50},{"x":31,"y":-16},{"x":31,"y":57},{"x":77,"y":-34},{"x":178,"y":73},{"x":71,"y":-86},{"x":81,"y":-33},{"x":-13,"y":-35},{"x":48,"y":-64},{"x":77,"y":-13},{"x":29,"y":-129},{"x":-24,"y":-106},{"x":19,"y":-33},{"x":36,"y":34},{"x":11,"y":-22},{"x":-30,"y":-122},{"x":141,"y":-32},{"x":26,"y":55},{"x":88,"y":48},{"x":137,"y":-50},{"x":58,"y":-89},{"x":-99,"y":-118},{"x":-12,"y":-93},{"x":-43,"y":8},{"x":7,"y":-67},{"x":-55,"y":-68},{"x":53,"y":-90},{"x":-61,"y":1},{"x":-99,"y":-126},{"x":190,"y":-146},{"x":-35,"y":-99},{"x":30,"y":-28},{"x":-20,"y":-45},{"x":-117,"y":-53},{"x":-64,"y":-102},{"x":108,"y":-138},{"x":-12,"y":-98},{"x":49,"y":-16},{"x":-46,"y":-117},{"x":44,"y":-24},{"x":-6,"y":-34},{"x":28,"y":-23},{"x":146,"y":29},{"x":129,"y":-21},{"x":25,"y":-98},{"x":-55,"y":-79},{"x":7,"y":-83},{"x":-219,"y":-128},{"x":-35,"y":7},{"x":31,"y":-174},{"x":-230,"y":-160},{"x":39,"y":-53},{"x":82,"y":0},{"x":61,"y":-36},{"x":13,"y":-39},{"x":144,"y":-100}],"type":"area"},{"arc":[{"x":91043,"y":75012},{"x":111,"y":316},{"x":48,"y":53},{"x":-34,"y":-37},{"x":25,"y":94},{"x":225,"y":253},{"x":25,"y":71},{"x":96,"y":68},{"x":24,"y":87},{"x":105,"y":96},{"x":271,"y":126},{"x":122,"y":12},{"x":70,"y":125},{"x":76,"y":5},{"x":-52,"y":38},{"x":73,"y":12},{"x":-30,"y":-39},{"x":107,"y":39},{"x":109,"y":-24},{"x":40,"y":-37},{"x":-20,"y":56},{"x":33,"y":22},{"x":-17,"y":-63},{"x":70,"y":-48},{"x":21,"y":35},{"x":123,"y":-71},{"x":66,"y":13},{"x":-62,"y":39},{"x":35,"y":-1},{"x":-14,"y":48},{"x":54,"y":-25},{"x":6,"y":-37},{"x":64,"y":37},{"x":94,"y":-43},{"x":27,"y":22},{"x":-24,"y":36},{"x":127,"y":-19},{"x":-76,"y":19},{"x":-1,"y":28},{"x":34,"y":-8},{"x":-42,"y":27},{"x":69,"y":-7},{"x":22,"y":-36},{"x":68,"y":5},{"x":-34,"y":3},{"x":3,"y":40},{"x":96,"y":-14},{"x":-96,"y":14},{"x":2,"y":34},{"x":15,"y":36},{"x":68,"y":-17},{"x":-23,"y":34},{"x":76,"y":-47},{"x":-19,"y":97},{"x":24,"y":-69},{"x":68,"y":-21},{"x":30,"y":-69},{"x":84,"y":14},{"x":75,"y":47},{"x":-15,"y":12},{"x":135,"y":14},{"x":-31,"y":159},{"x":-41,"y":8},{"x":47,"y":-8},{"x":3,"y":115},{"x":62,"y":81},{"x":120,"y":12},{"x":364,"y":118},{"x":119,"y":-17},{"x":16,"y":23},{"x":-6,"y":-22},{"x":142,"y":39},{"x":73,"y":-72},{"x":12,"y":59},{"x":87,"y":99},{"x":13,"y":114},{"x":79,"y":64}],"type":"coastline"},{"arc":[{"x":94780,"y":75519},{"x":-47,"y":-4},{"x":-16,"y":-58},{"x":63,"y":62}],"type":"coastline"},{"arc":[{"x":95170,"y":76411},{"x":-33,"y":10},{"x":7,"y":-45},{"x":-39,"y":-32},{"x":62,"y":25},{"x":3,"y":42}],"type":"coastline"},{"arc":[{"x":84161,"y":75237},{"x":-20,"y":31},{"x":12,"y":-56},{"x":8,"y":25}],"type":"coastline"},{"arc":[{"x":84479,"y":74028},{"x":-106,"y":12},{"x":-12,"y":-28},{"x":118,"y":16}],"type":"coastline"},{"arc":[{"x":84536,"y":74417},{"x":-32,"y":29},{"x":-56,"y":-26},{"x":-29,"y":-156},{"x":39,"y":5},{"x":30,"y":110},{"x":48,"y":38}],"type":"coastline"},{"arc":[{"x":86031,"y":73458},{"x":-34,"y":34},{"x":-35,"y":-148},{"x":53,"y":15},{"x":16,"y":99}],"type":"coastline"},{"arc":[{"x":86070,"y":74159},{"x":-23,"y":36},{"x":-3,"y":-83},{"x":-47,"y":18},{"x":-35,"y":-27},{"x":30,"y":-55},{"x":46,"y":29},{"x":32,"y":82}],"type":"coastline"},{"arc":[{"x":86523,"y":73509},{"x":-19,"y":49},{"x":-64,"y":-179},{"x":83,"y":130}],"type":"coastline"},{"arc":[{"x":86545,"y":73274},{"x":-5,"y":21},{"x":-60,"y":-51},{"x":-39,"y":3},{"x":-7,"y":75},{"x":-39,"y":-37},{"x":60,"y":-136},{"x":58,"y":-46},{"x":23,"y":18},{"x":-42,"y":30},{"x":30,"y":31},{"x":-26,"y":37},{"x":47,"y":55}],"type":"coastline"},{"arc":[{"x":86581,"y":73963},{"x":-51,"y":-8},{"x":13,"y":-30},{"x":38,"y":38}],"type":"coastline"},{"arc":[{"x":86731,"y":74013},{"x":-5,"y":30},{"x":-43,"y":-68},{"x":38,"y":3},{"x":10,"y":35}],"type":"coastline"},{"arc":[{"x":86743,"y":72918},{"x":-31,"y":27},{"x":-74,"y":-4},{"x":-8,"y":24},{"x":52,"y":17},{"x":-66,"y":47},{"x":50,"y":31},{"x":-29,"y":35},{"x":62,"y":66},{"x":-80,"y":14},{"x":6,"y":-24},{"x":-89,"y":-25},{"x":62,"y":-61},{"x":-10,"y":-126},{"x":55,"y":-27},{"x":77,"y":16},{"x":18,"y":-28},{"x":5,"y":18}],"type":"coastline"},{"arc":[{"x":86768,"y":73739},{"x":-12,"y":39},{"x":-36,"y":6},{"x":-11,"y":-41},{"x":59,"y":-4}],"type":"coastline"},{"arc":[{"x":87080,"y":74701},{"x":-49,"y":-26},{"x":-9,"y":-85},{"x":52,"y":49},{"x":-27,"y":14},{"x":33,"y":48}],"type":"coastline"},{"arc":[{"x":87094,"y":73791},{"x":-33,"y":40},{"x":-90,"y":19},{"x":-58,"y":-167},{"x":-47,"y":12},{"x":-3,"y":-28},{"x":-4,"y":30},{"x":-27,"y":-18},{"x":-39,"y":36},{"x":-20,"y":-13},{"x":13,"y":-47},{"x":139,"y":-26},{"x":26,"y":-104},{"x":19,"y":59},{"x":-37,"y":59},{"x":29,"y":74},{"x":43,"y":3},{"x":52,"y":89},{"x":37,"y":-18}],"type":"coastline"},{"arc":[{"x":87193,"y":73688},{"x":-79,"y":20},{"x":50,"y":-67},{"x":29,"y":47}],"type":"coastline"},{"arc":[{"x":87279,"y":74906},{"x":-26,"y":68},{"x":-137,"y":59},{"x":-57,"y":-111},{"x":99,"y":-93},{"x":121,"y":77}],"type":"coastline"},{"arc":[{"x":88291,"y":73849},{"x":-67,"y":-28},{"x":45,"y":-13},{"x":22,"y":41}],"type":"coastline"},{"arc":[{"x":88606,"y":73546},{"x":-29,"y":22},{"x":-10,"y":168},{"x":-77,"y":-77},{"x":48,"y":-21},{"x":-11,"y":-55},{"x":79,"y":-37}],"type":"coastline"},{"arc":[{"x":88749,"y":73533},{"x":-8,"y":34},{"x":-81,"y":-47},{"x":-57,"y":18},{"x":101,"y":-56},{"x":45,"y":51}],"type":"coastline"},{"arc":[{"x":89171,"y":73740},{"x":-11,"y":18},{"x":-3,"y":-103},{"x":14,"y":85}],"type":"coastline"},{"arc":[{"x":89340,"y":73614},{"x":-52,"y":-31},{"x":13,"y":-39},{"x":42,"y":22},{"x":-3,"y":48}],"type":"coastline"},{"arc":[{"x":89455,"y":77899},{"x":29,"y":-92},{"x":-14,"y":-180},{"x":68,"y":-148},{"x":-46,"y":-59},{"x":17,"y":-54},{"x":-34,"y":-94},{"x":-57,"y":-12},{"x":-17,"y":-74},{"x":-73,"y":-23},{"x":-106,"y":156},{"x":-217,"y":-12},{"x":-27,"y":71},{"x":-107,"y":-19},{"x":-93,"y":43},{"x":-7,"y":136},{"x":-61,"y":14},{"x":-34,"y":-25},{"x":-188,"y":54},{"x":-58,"y":186},{"x":-177,"y":130},{"x":-124,"y":24},{"x":-59,"y":-35},{"x":-101,"y":-9},{"x":-84,"y":-198},{"x":-146,"y":-179},{"x":-1,"y":-99},{"x":-59,"y":-71},{"x":4,"y":-85},{"x":-86,"y":-190},{"x":-317,"y":-162},{"x":-83,"y":25},{"x":-109,"y":-33},{"x":-143,"y":37},{"x":-42,"y":-132},{"x":0,"y":-140},{"x":-53,"y":-19},{"x":-59,"y":27},{"x":-32,"y":-36},{"x":-43,"y":4},{"x":-113,"y":-76},{"x":-31,"y":-67},{"x":-130,"y":-71},{"x":-62,"y":-92},{"x":-84,"y":-22},{"x":-24,"y":-73},{"x":150,"y":-102},{"x":34,"y":-86},{"x":164,"y":-121},{"x":12,"y":-57},{"x":52,"y":-40},{"x":75,"y":9},{"x":-52,"y":-127},{"x":-70,"y":1},{"x":-42,"y":-36},{"x":-188,"y":136},{"x":-148,"y":-30},{"x":-12,"y":70},{"x":-156,"y":68},{"x":-74,"y":139},{"x":-150,"y":42},{"x":-110,"y":-21},{"x":-91,"y":22},{"x":-134,"y":-92},{"x":-184,"y":161},{"x":-257,"y":-11},{"x":-119,"y":79},{"x":-40,"y":-44},{"x":-170,"y":46},{"x":-23,"y":34},{"x":-53,"y":-42},{"x":-46,"y":2},{"x":10,"y":-42},{"x":-164,"y":18},{"x":-38,"y":-42},{"x":-32,"y":-200},{"x":-136,"y":24}],"type":"admin"},{"arc":[{"x":84280,"y":75983},{"x":26,"y":-83},{"x":-145,"y":-360},{"x":35,"y":-31},{"x":53,"y":35},{"x":30,"y":-70},{"x":127,"y":-34},{"x":40,"y":114},{"x":47,"y":13},{"x":-19,"y":-94},{"x":-33,"y":-14},{"x":19,"y":-71},{"x":-29,"y":16},{"x":-24,"y":-29},{"x":79,"y":-35},{"x":3,"y":-72},{"x":-35,"y":0},{"x":38,"y":-48},{"x":-34,"y":-17},{"x":-3,"y":-31},{"x":35,"y":4},{"x":-21,"y":-32},{"x":-59,"y":14},{"x":-52,"y":99},{"x":17,"y":26},{"x":-56,"y":12},{"x":60,"y":-214},{"x":27,"y":7},{"x":19,"y":-43},{"x":75,"y":5},{"x":-31,"y":-75},{"x":40,"y":-14},{"x":8,"y":-94},{"x":-47,"y":-41},{"x":17,"y":-21},{"x":-52,"y":0},{"x":-2,"y":90},{"x":-41,"y":10},{"x":-39,"y":74},{"x":-7,"y":-85},{"x":-128,"y":-150},{"x":-38,"y":62},{"x":56,"y":175},{"x":-52,"y":-2},{"x":-30,"y":-61},{"x":-28,"y":23},{"x":-52,"y":-46},{"x":19,"y":-133},{"x":-22,"y":-55},{"x":-50,"y":-10},{"x":63,"y":-44},{"x":16,"y":-104},{"x":37,"y":43},{"x":49,"y":-20},{"x":63,"y":22},{"x":18,"y":-37},{"x":108,"y":-20},{"x":28,"y":-78},{"x":45,"y":43},{"x":-37,"y":7},{"x":30,"y":84},{"x":-40,"y":-2},{"x":3,"y":36},{"x":61,"y":21},{"x":-47,"y":59},{"x":35,"y":28},{"x":41,"y":-13},{"x":7,"y":44},{"x":71,"y":24},{"x":53,"y":-166},{"x":59,"y":-5},{"x":18,"y":-87},{"x":34,"y":58},{"x":-16,"y":54},{"x":29,"y":25},{"x":55,"y":-24},{"x":70,"y":101},{"x":-22,"y":20},{"x":-31,"y":-49},{"x":14,"y":39},{"x":-38,"y":53},{"x":-2,"y":-42},{"x":-44,"y":-29},{"x":-20,"y":66},{"x":-9,"y":-49},{"x":-24,"y":26},{"x":-43,"y":-70},{"x":-17,"y":99},{"x":35,"y":0},{"x":16,"y":46},{"x":-70,"y":40},{"x":39,"y":58},{"x":-34,"y":-3},{"x":-15,"y":35},{"x":56,"y":24},{"x":-84,"y":147},{"x":33,"y":32},{"x":45,"y":-71},{"x":93,"y":-56},{"x":-62,"y":-3},{"x":56,"y":-42},{"x":-35,"y":-12},{"x":16,"y":-52},{"x":50,"y":6},{"x":-34,"y":-24},{"x":18,"y":-58},{"x":22,"y":7},{"x":-14,"y":-29},{"x":40,"y":6},{"x":119,"y":-89},{"x":109,"y":43},{"x":68,"y":-78},{"x":60,"y":-9},{"x":-33,"y":-35},{"x":-38,"y":5},{"x":0,"y":-50},{"x":181,"y":-26},{"x":164,"y":26},{"x":4,"y":-70},{"x":-54,"y":3},{"x":-24,"y":-43},{"x":98,"y":-3},{"x":-37,"y":-91},{"x":31,"y":-19},{"x":-8,"y":-48},{"x":-67,"y":-9},{"x":-23,"y":52},{"x":-35,"y":-26},{"x":45,"y":-20},{"x":17,"y":-55},{"x":50,"y":8},{"x":40,"y":-37},{"x":-2,"y":-53},{"x":-52,"y":-15},{"x":76,"y":-12},{"x":42,"y":-95},{"x":-47,"y":-74},{"x":-84,"y":30},{"x":-36,"y":-18},{"x":-15,"y":28},{"x":-43,"y":-63},{"x":-71,"y":54},{"x":23,"y":-53},{"x":-23,"y":-34},{"x":-128,"y":-32},{"x":64,"y":-17},{"x":-16,"y":-81},{"x":30,"y":-35},{"x":55,"y":45},{"x":1,"y":90},{"x":81,"y":21},{"x":27,"y":-29},{"x":28,"y":18},{"x":-18,"y":44},{"x":97,"y":11},{"x":41,"y":-58},{"x":75,"y":75},{"x":68,"y":-22},{"x":24,"y":95},{"x":-68,"y":-27},{"x":-24,"y":39},{"x":48,"y":61},{"x":-50,"y":29},{"x":-34,"y":-24},{"x":-21,"y":54},{"x":-32,"y":4},{"x":41,"y":84},{"x":79,"y":-2},{"x":4,"y":28},{"x":-100,"y":12},{"x":14,"y":60},{"x":55,"y":43},{"x":-24,"y":80},{"x":46,"y":50},{"x":-82,"y":8},{"x":2,"y":35},{"x":63,"y":-14},{"x":26,"y":51},{"x":48,"y":-72},{"x":49,"y":51},{"x":-2,"y":-53},{"x":78,"y":-5},{"x":-26,"y":-50},{"x":-25,"y":21},{"x":-84,"y":-21},{"x":58,"y":-19},{"x":0,"y":-66},{"x":53,"y":71},{"x":45,"y":-27},{"x":-5,"y":-45},{"x":71,"y":11},{"x":-34,"y":44},{"x":72,"y":101},{"x":20,"y":-82},{"x":65,"y":35},{"x":50,"y":-76},{"x":61,"y":11},{"x":45,"y":-56},{"x":-11,"y":-81},{"x":25,"y":-22},{"x":25,"y":176},{"x":-54,"y":32},{"x":-35,"y":-37},{"x":-26,"y":16},{"x":61,"y":27},{"x":-16,"y":65},{"x":51,"y":12},{"x":-43,"y":56},{"x":1,"y":63},{"x":89,"y":29},{"x":-20,"y":-53},{"x":93,"y":30},{"x":-4,"y":-112},{"x":46,"y":-58},{"x":-66,"y":-22},{"x":62,"y":-30},{"x":-38,"y":-91},{"x":48,"y":-51},{"x":-56,"y":22},{"x":-46,"y":-33},{"x":59,"y":-88},{"x":48,"y":27},{"x":1,"y":-19},{"x":20,"y":-8},{"x":-20,"y":25},{"x":46,"y":-4},{"x":-17,"y":-13},{"x":23,"y":10},{"x":71,"y":-142},{"x":25,"y":28},{"x":-47,"y":39},{"x":128,"y":17},{"x":22,"y":-31},{"x":-16,"y":89},{"x":82,"y":51},{"x":-44,"y":4},{"x":-5,"y":48},{"x":-33,"y":9},{"x":40,"y":57},{"x":119,"y":-137},{"x":77,"y":4},{"x":-71,"y":-72},{"x":117,"y":-20},{"x":105,"y":-107},{"x":-45,"y":-58},{"x":12,"y":-89},{"x":-48,"y":1},{"x":-3,"y":45},{"x":-39,"y":-14},{"x":6,"y":89},{"x":-71,"y":-24},{"x":5,"y":-66},{"x":-43,"y":-62},{"x":23,"y":-31},{"x":73,"y":26},{"x":29,"y":-72},{"x":37,"y":36},{"x":28,"y":-8},{"x":27,"y":173},{"x":68,"y":39},{"x":-59,"y":57},{"x":14,"y":51},{"x":-91,"y":99},{"x":93,"y":99},{"x":-29,"y":23},{"x":-35,"y":-60},{"x":-25,"y":45},{"x":-23,"y":-30},{"x":-24,"y":27},{"x":-32,"y":-44},{"x":-7,"y":49},{"x":-16,"y":-28},{"x":-56,"y":8},{"x":-76,"y":102},{"x":70,"y":37},{"x":19,"y":56},{"x":-35,"y":18},{"x":-55,"y":-50},{"x":-5,"y":51},{"x":-53,"y":-66},{"x":-25,"y":70},{"x":-29,"y":6},{"x":13,"y":34},{"x":51,"y":-4},{"x":-27,"y":19},{"x":33,"y":32},{"x":121,"y":-35},{"x":-44,"y":95},{"x":-92,"y":-30},{"x":7,"y":113},{"x":51,"y":-46},{"x":104,"y":7},{"x":23,"y":-19},{"x":-20,"y":-28},{"x":59,"y":34},{"x":-31,"y":-67},{"x":15,"y":-49},{"x":55,"y":-44},{"x":17,"y":6},{"x":7,"y":17},{"x":-39,"y":-6},{"x":-22,"y":93},{"x":34,"y":27},{"x":64,"y":-46},{"x":-16,"y":27},{"x":43,"y":8},{"x":-9,"y":33},{"x":96,"y":54},{"x":-32,"y":21},{"x":11,"y":101},{"x":31,"y":8},{"x":-34,"y":92},{"x":125,"y":-34},{"x":-1,"y":34},{"x":-54,"y":20},{"x":-10,"y":88},{"x":49,"y":-56},{"x":18,"y":24},{"x":-14,"y":-27},{"x":43,"y":9},{"x":0,"y":30},{"x":13,"y":-26},{"x":43,"y":6},{"x":-30,"y":-50},{"x":20,"y":-58},{"x":42,"y":-47},{"x":45,"y":1},{"x":8,"y":-78},{"x":34,"y":-23},{"x":40,"y":26},{"x":54,"y":137},{"x":123,"y":11},{"x":3,"y":-43},{"x":-49,"y":12},{"x":-45,"y":-87},{"x":32,"y":-110},{"x":-49,"y":19},{"x":-10,"y":-49},{"x":19,"y":-43},{"x":85,"y":-22},{"x":-7,"y":-103},{"x":41,"y":-3},{"x":12,"y":-34},{"x":-49,"y":-57},{"x":-36,"y":64},{"x":-30,"y":-59},{"x":-74,"y":-19},{"x":-7,"y":-48},{"x":117,"y":56},{"x":55,"y":-18},{"x":90,"y":86},{"x":72,"y":-10},{"x":121,"y":154},{"x":-23,"y":13},{"x":60,"y":34},{"x":-15,"y":133},{"x":48,"y":25},{"x":58,"y":-43},{"x":30,"y":-84},{"x":-67,"y":-109},{"x":130,"y":-50},{"x":-42,"y":-39},{"x":-49,"y":27},{"x":32,"y":-170},{"x":-43,"y":-27},{"x":-14,"y":46},{"x":-42,"y":-130},{"x":22,"y":-106},{"x":83,"y":-74},{"x":-157,"y":-78},{"x":55,"y":-161},{"x":66,"y":-11},{"x":29,"y":-40},{"x":0,"y":-187},{"x":54,"y":-9},{"x":122,"y":63},{"x":3,"y":50},{"x":51,"y":15},{"x":-55,"y":8},{"x":19,"y":45},{"x":72,"y":0},{"x":-24,"y":30},{"x":21,"y":84},{"x":-36,"y":33},{"x":95,"y":-17},{"x":23,"y":88},{"x":61,"y":-33},{"x":-17,"y":-76},{"x":42,"y":36},{"x":92,"y":4},{"x":45,"y":39},{"x":-8,"y":35},{"x":46,"y":-11},{"x":9,"y":-68},{"x":-48,"y":-6},{"x":-37,"y":-55},{"x":-43,"y":17},{"x":-6,"y":-68},{"x":-74,"y":-93},{"x":93,"y":37},{"x":132,"y":-81},{"x":128,"y":141},{"x":50,"y":-57},{"x":20,"y":32},{"x":63,"y":4},{"x":41,"y":-62},{"x":-13,"y":-55},{"x":129,"y":137},{"x":-50,"y":72},{"x":60,"y":-14},{"x":114,"y":95},{"x":-3,"y":-266},{"x":38,"y":203},{"x":51,"y":21},{"x":1,"y":51},{"x":42,"y":4},{"x":22,"y":-28},{"x":43,"y":51},{"x":-69,"y":-113},{"x":33,"y":-22},{"x":-7,"y":-104},{"x":-36,"y":12},{"x":44,"y":-36},{"x":68,"y":16},{"x":22,"y":21},{"x":-36,"y":65},{"x":56,"y":14},{"x":21,"y":-45},{"x":32,"y":6},{"x":-24,"y":-20},{"x":26,"y":-33},{"x":-72,"y":-88},{"x":-97,"y":-7},{"x":12,"y":-39},{"x":118,"y":-12},{"x":64,"y":-53},{"x":43,"y":-98},{"x":43,"y":9},{"x":-35,"y":-91},{"x":-102,"y":95},{"x":-12,"y":-232},{"x":-203,"y":-57},{"x":206,"y":-82},{"x":13,"y":-51},{"x":-93,"y":-38},{"x":-27,"y":-69},{"x":-43,"y":10},{"x":-34,"y":-42},{"x":-65,"y":-12},{"x":-56,"y":-200},{"x":-26,"y":3},{"x":-19,"y":-55},{"x":-105,"y":-88},{"x":-2,"y":-125},{"x":-102,"y":-146},{"x":-24,"y":-159},{"x":-205,"y":-219},{"x":-167,"y":-7},{"x":28,"y":-65},{"x":-114,"y":-121},{"x":-17,"y":-202},{"x":97,"y":-6},{"x":29,"y":20},{"x":-43,"y":56},{"x":16,"y":38},{"x":61,"y":-44},{"x":35,"y":30},{"x":-12,"y":40},{"x":68,"y":1},{"x":28,"y":-37},{"x":-35,"y":-168},{"x":-72,"y":-85},{"x":0,"y":-57},{"x":-49,"y":-32},{"x":11,"y":-45},{"x":-73,"y":-66},{"x":-20,"y":-71},{"x":-27,"y":11},{"x":27,"y":-19},{"x":-82,"y":28},{"x":-130,"y":-209},{"x":4,"y":-95},{"x":49,"y":108},{"x":171,"y":105},{"x":194,"y":303},{"x":97,"y":45},{"x":96,"y":181},{"x":112,"y":100},{"x":-35,"y":60},{"x":-92,"y":-5},{"x":-37,"y":59},{"x":176,"y":26},{"x":-50,"y":72},{"x":-84,"y":45},{"x":39,"y":97},{"x":78,"y":26},{"x":123,"y":-165},{"x":72,"y":69},{"x":-92,"y":57},{"x":-38,"y":76},{"x":23,"y":25},{"x":166,"y":-33},{"x":26,"y":62},{"x":-65,"y":108},{"x":22,"y":28},{"x":74,"y":-27},{"x":36,"y":39},{"x":-100,"y":84},{"x":-12,"y":32},{"x":31,"y":27},{"x":-29,"y":54},{"x":140,"y":8},{"x":29,"y":50},{"x":-22,"y":57},{"x":54,"y":20},{"x":-5,"y":37},{"x":-57,"y":30},{"x":28,"y":-26},{"x":-39,"y":-30},{"x":-5,"y":57},{"x":-57,"y":23},{"x":-11,"y":55},{"x":65,"y":34},{"x":98,"y":5},{"x":59,"y":-57},{"x":-6,"y":72},{"x":43,"y":39},{"x":-42,"y":37},{"x":82,"y":38},{"x":-33,"y":18},{"x":86,"y":84},{"x":-12,"y":74},{"x":67,"y":26},{"x":0,"y":79},{"x":58,"y":27},{"x":34,"y":143},{"x":43,"y":22},{"x":146,"y":260},{"x":76,"y":69},{"x":-18,"y":42},{"x":35,"y":3},{"x":64,"y":93},{"x":33,"y":-1},{"x":-22,"y":25},{"x":43,"y":102},{"x":139,"y":117},{"x":82,"y":-4},{"x":192,"y":179},{"x":62,"y":7},{"x":113,"y":138},{"x":114,"y":39},{"x":9,"y":78},{"x":-28,"y":-57},{"x":-18,"y":17},{"x":20,"y":51},{"x":125,"y":134},{"x":-30,"y":21},{"x":100,"y":160}],"type":"coastline"},{"arc":[{"x":92002,"y":74649},{"x":-22,"y":58},{"x":-33,"y":-140},{"x":41,"y":16},{"x":14,"y":66}],"type":"coastline"},{"arc":[{"x":90197,"y":88880},{"x":-37,"y":-25},{"x":47,"y":-5},{"x":-16,"y":-37},{"x":-60,"y":59},{"x":-7,"y":-53},{"x":-32,"y":14},{"x":46,"y":-30},{"x":-32,"y":-40},{"x":-10,"y":29},{"x":-122,"y":-86},{"x":-41,"y":10},{"x":-6,"y":41},{"x":-164,"y":-153},{"x":-81,"y":-18},{"x":-86,"y":-89},{"x":-203,"y":-114},{"x":-130,"y":-5},{"x":-438,"y":-219},{"x":-109,"y":-15},{"x":30,"y":-20},{"x":-58,"y":38},{"x":-70,"y":-3},{"x":-129,"y":-61},{"x":-231,"y":-53},{"x":-177,"y":-18},{"x":-7,"y":20},{"x":-51,"y":-44},{"x":-112,"y":-4},{"x":-126,"y":-50},{"x":-323,"y":-20},{"x":16,"y":22},{"x":-122,"y":-41},{"x":-50,"y":-46},{"x":175,"y":-102},{"x":-19,"y":39},{"x":65,"y":-21},{"x":-36,"y":-15},{"x":41,"y":-28},{"x":-46,"y":6},{"x":55,"y":-13},{"x":9,"y":16},{"x":114,"y":-67},{"x":44,"y":-79},{"x":-44,"y":83},{"x":42,"y":-45},{"x":2,"y":22},{"x":-2,"y":-40},{"x":89,"y":-42},{"x":33,"y":-74},{"x":1,"y":-67},{"x":-52,"y":-79},{"x":32,"y":-35},{"x":-10,"y":30},{"x":14,"y":-23},{"x":78,"y":20},{"x":216,"y":-62},{"x":85,"y":-167},{"x":193,"y":-109},{"x":111,"y":-111},{"x":17,"y":-124},{"x":85,"y":-22},{"x":42,"y":3},{"x":-35,"y":1},{"x":21,"y":22},{"x":102,"y":6},{"x":176,"y":-53},{"x":66,"y":-133},{"x":8,"y":45},{"x":37,"y":-36},{"x":-42,"y":-21},{"x":184,"y":-309},{"x":27,"y":-119},{"x":203,"y":-127},{"x":113,"y":22},{"x":112,"y":-76},{"x":102,"y":-270},{"x":9,"y":-109},{"x":9,"y":48},{"x":16,"y":-21},{"x":9,"y":-59},{"x":-28,"y":22},{"x":32,"y":-33},{"x":35,"y":-293},{"x":72,"y":-101},{"x":18,"y":-470}],"type":"coastline"},{"arc":[{"x":89886,"y":84694},{"x":120,"y":83},{"x":53,"y":-8},{"x":19,"y":47},{"x":125,"y":62},{"x":11,"y":72},{"x":71,"y":41},{"x":3,"y":58},{"x":87,"y":50},{"x":68,"y":-36},{"x":52,"y":26},{"x":34,"y":70},{"x":-65,"y":108},{"x":159,"y":166},{"x":98,"y":-60},{"x":80,"y":149},{"x":76,"y":-28},{"x":74,"y":59},{"x":126,"y":-28},{"x":111,"y":79},{"x":49,"y":94},{"x":-124,"y":38},{"x":34,"y":45},{"x":-45,"y":80},{"x":113,"y":196},{"x":49,"y":11},{"x":48,"y":112},{"x":206,"y":125},{"x":55,"y":113},{"x":141,"y":42},{"x":39,"y":46},{"x":-2,"y":137},{"x":62,"y":61},{"x":-67,"y":66},{"x":73,"y":230}],"type":"area"},{"arc":[{"x":88338,"y":81176},{"x":-24,"y":35},{"x":-24,"y":-12},{"x":48,"y":-23}],"type":"coastline"},{"arc":[{"x":88395,"y":81085},{"x":-24,"y":22},{"x":12,"y":-53},{"x":12,"y":31}],"type":"coastline"},{"arc":[{"x":88447,"y":81034},{"x":-19,"y":26},{"x":-45,"y":-25},{"x":38,"y":-33},{"x":26,"y":32}],"type":"coastline"},{"arc":[{"x":88552,"y":80955},{"x":0,"y":-20},{"x":1,"y":41},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":89245,"y":82182},{"x":-4,"y":14},{"x":-9,"y":-44},{"x":-28,"y":-27},{"x":-55,"y":77},{"x":41,"y":-78},{"x":17,"y":0},{"x":26,"y":12},{"x":12,"y":46}],"type":"coastline"},{"arc":[{"x":89732,"y":83261},{"x":-6,"y":51},{"x":5,"y":-83},{"x":1,"y":32}],"type":"coastline"},{"arc":[{"x":89886,"y":84694},{"x":45,"y":-126},{"x":39,"y":9},{"x":32,"y":-40},{"x":-15,"y":20},{"x":25,"y":15},{"x":-9,"y":24},{"x":20,"y":-17},{"x":-22,"y":-29},{"x":29,"y":36},{"x":46,"y":-51},{"x":28,"y":-144},{"x":-21,"y":-64},{"x":30,"y":-19},{"x":-26,"y":7},{"x":1,"y":-144},{"x":-34,"y":-78},{"x":10,"y":13},{"x":27,"y":-10},{"x":-7,"y":-25},{"x":-3,"y":24},{"x":-20,"y":-1},{"x":-30,"y":-266},{"x":-115,"y":-473},{"x":-29,"y":-62},{"x":-23,"y":15},{"x":-69,"y":-67},{"x":24,"y":16},{"x":38,"y":-38},{"x":-78,"y":-53},{"x":-36,"y":-67},{"x":26,"y":-27},{"x":52,"y":36},{"x":-18,"y":-30},{"x":47,"y":12},{"x":-10,"y":35},{"x":39,"y":32},{"x":-4,"y":-67},{"x":157,"y":4},{"x":42,"y":12},{"x":10,"y":50},{"x":-3,"y":-29},{"x":26,"y":15},{"x":41,"y":-42},{"x":-44,"y":-55},{"x":19,"y":-50},{"x":-38,"y":-7},{"x":-6,"y":64},{"x":-42,"y":12},{"x":-58,"y":-102},{"x":-33,"y":-16},{"x":-12,"y":37},{"x":-33,"y":-41},{"x":-85,"y":108},{"x":-90,"y":-14},{"x":-4,"y":57},{"x":-20,"y":-10},{"x":43,"y":151},{"x":-242,"y":-541},{"x":-62,"y":-77},{"x":-5,"y":31},{"x":-151,"y":-338},{"x":-88,"y":-61},{"x":56,"y":-14},{"x":25,"y":-63},{"x":-20,"y":18},{"x":-5,"y":-65},{"x":-107,"y":-39},{"x":-6,"y":-44},{"x":24,"y":-54},{"x":91,"y":10},{"x":0,"y":-50},{"x":-54,"y":-6},{"x":-9,"y":-48},{"x":46,"y":-46},{"x":-44,"y":-3},{"x":23,"y":-57},{"x":-27,"y":-19},{"x":-3,"y":39},{"x":-40,"y":2},{"x":12,"y":55},{"x":-69,"y":-20},{"x":15,"y":-35},{"x":-66,"y":-77},{"x":14,"y":-36},{"x":37,"y":-1},{"x":-36,"y":-175},{"x":-68,"y":-26},{"x":-49,"y":-80},{"x":0,"y":111},{"x":-42,"y":2},{"x":-23,"y":-49},{"x":-22,"y":62},{"x":48,"y":31},{"x":85,"y":-15},{"x":42,"y":24},{"x":-34,"y":15},{"x":7,"y":37},{"x":-68,"y":-1},{"x":-41,"y":47},{"x":97,"y":0},{"x":11,"y":37},{"x":-48,"y":32},{"x":71,"y":15},{"x":-95,"y":72},{"x":84,"y":-14},{"x":47,"y":21},{"x":-45,"y":11},{"x":6,"y":34},{"x":29,"y":-31},{"x":19,"y":40},{"x":47,"y":-7},{"x":50,"y":49},{"x":-97,"y":50},{"x":9,"y":41},{"x":-33,"y":25},{"x":48,"y":13},{"x":-31,"y":13},{"x":43,"y":-5},{"x":17,"y":67},{"x":16,"y":-25},{"x":35,"y":14},{"x":-79,"y":93},{"x":-13,"y":70},{"x":-30,"y":-38},{"x":-71,"y":-5},{"x":13,"y":-91},{"x":-85,"y":-42},{"x":25,"y":-89},{"x":-68,"y":5},{"x":47,"y":-36},{"x":-4,"y":-37},{"x":-50,"y":0},{"x":36,"y":-63},{"x":-46,"y":2},{"x":-21,"y":-40},{"x":-55,"y":18},{"x":-6,"y":-35},{"x":69,"y":-30},{"x":-33,"y":-51},{"x":46,"y":-35},{"x":-44,"y":-109},{"x":-82,"y":18},{"x":1,"y":-24},{"x":88,"y":-32},{"x":-14,"y":-202},{"x":-45,"y":-43},{"x":-33,"y":18},{"x":-52,"y":-102},{"x":-105,"y":30},{"x":-74,"y":-50},{"x":-55,"y":36},{"x":-4,"y":-76},{"x":-66,"y":-21},{"x":17,"y":-54},{"x":25,"y":43},{"x":69,"y":-49},{"x":-37,"y":65},{"x":21,"y":32},{"x":49,"y":-36},{"x":-7,"y":36},{"x":63,"y":-22},{"x":30,"y":28},{"x":36,"y":-52},{"x":-67,"y":-30},{"x":42,"y":-62},{"x":-60,"y":-52},{"x":50,"y":-2},{"x":32,"y":-74},{"x":82,"y":117},{"x":108,"y":-82},{"x":32,"y":5},{"x":-11,"y":-35},{"x":-22,"y":-18},{"x":-122,"y":60},{"x":-44,"y":-119},{"x":-2,"y":22},{"x":-20,"y":-33},{"x":-57,"y":18},{"x":-15,"y":-58},{"x":-48,"y":-10},{"x":16,"y":-36},{"x":-41,"y":-1},{"x":23,"y":-29},{"x":-38,"y":-41},{"x":-61,"y":44},{"x":-58,"y":-22},{"x":-31,"y":21},{"x":-23,"y":-34},{"x":-67,"y":29}],"type":"coastline"},{"arc":[{"x":88223,"y":80738},{"x":165,"y":-157},{"x":64,"y":-21},{"x":43,"y":-77},{"x":96,"y":-28},{"x":-8,"y":-105},{"x":35,"y":-44},{"x":-42,"y":-101},{"x":7,"y":-156},{"x":44,"y":27},{"x":148,"y":-29},{"x":18,"y":58},{"x":-39,"y":101},{"x":77,"y":108},{"x":54,"y":-24},{"x":175,"y":12},{"x":21,"y":290},{"x":66,"y":89},{"x":33,"y":13},{"x":46,"y":-58},{"x":78,"y":-10},{"x":65,"y":-123},{"x":6,"y":-99},{"x":46,"y":-52},{"x":-2,"y":-67},{"x":73,"y":-71},{"x":-33,"y":-50},{"x":16,"y":-57},{"x":-77,"y":-59},{"x":24,"y":-135},{"x":-57,"y":-56},{"x":-50,"y":-218},{"x":-122,"y":-172},{"x":88,"y":-88},{"x":5,"y":-130},{"x":125,"y":-40},{"x":43,"y":-63},{"x":90,"y":-11},{"x":-50,"y":-114},{"x":52,"y":-80},{"x":10,"y":-145}],"type":"area"},{"arc":[{"x":82556,"y":74688},{"x":-36,"y":38},{"x":-51,"y":-89},{"x":87,"y":51}],"type":"coastline"},{"arc":[{"x":82602,"y":75561},{"x":-32,"y":21},{"x":0,"y":-44},{"x":32,"y":23}],"type":"coastline"},{"arc":[{"x":82666,"y":75124},{"x":-75,"y":54},{"x":12,"y":45},{"x":-55,"y":0},{"x":-19,"y":70},{"x":-43,"y":32},{"x":-86,"y":-37},{"x":-100,"y":50},{"x":-30,"y":-10},{"x":-103,"y":-223},{"x":39,"y":-21},{"x":51,"y":70},{"x":43,"y":9},{"x":124,"y":-125},{"x":13,"y":59},{"x":52,"y":7},{"x":24,"y":40},{"x":35,"y":-32},{"x":36,"y":25},{"x":45,"y":-28},{"x":37,"y":15}],"type":"coastline"},{"arc":[{"x":82831,"y":75779},{"x":-29,"y":-24},{"x":-22,"y":28},{"x":-15,"y":-97},{"x":56,"y":24},{"x":10,"y":69}],"type":"coastline"},{"arc":[{"x":83164,"y":74670},{"x":-22,"y":97},{"x":-37,"y":-45},{"x":-38,"y":20},{"x":-4,"y":-130},{"x":101,"y":58}],"type":"coastline"},{"arc":[{"x":84219,"y":76298},{"x":-18,"y":34},{"x":10,"y":30},{"x":-31,"y":8},{"x":-42,"y":-70},{"x":38,"y":-64},{"x":41,"y":0},{"x":2,"y":62}],"type":"coastline"},{"arc":[{"x":84218,"y":75999},{"x":-36,"y":12},{"x":-2,"y":-46},{"x":38,"y":34}],"type":"coastline"},{"arc":[{"x":84242,"y":76042},{"x":-37,"y":27},{"x":4,"y":-28},{"x":33,"y":1}],"type":"coastline"},{"arc":[{"x":88223,"y":80738},{"x":0,"y":-43},{"x":-70,"y":-8},{"x":4,"y":-60},{"x":-55,"y":-2},{"x":65,"y":-47},{"x":-76,"y":-92},{"x":-34,"y":5},{"x":13,"y":38},{"x":-85,"y":70},{"x":-20,"y":109},{"x":-41,"y":7},{"x":-31,"y":-95},{"x":-58,"y":21},{"x":15,"y":-54},{"x":-44,"y":-47},{"x":-44,"y":58},{"x":-24,"y":-26},{"x":-98,"y":8},{"x":17,"y":-24},{"x":-66,"y":24},{"x":12,"y":47},{"x":30,"y":0},{"x":-16,"y":18},{"x":24,"y":0},{"x":2,"y":-31},{"x":3,"y":91},{"x":-117,"y":-34},{"x":-96,"y":70},{"x":-38,"y":-65},{"x":-34,"y":-4},{"x":-2,"y":-61},{"x":-70,"y":-2},{"x":-41,"y":68},{"x":-27,"y":-43},{"x":-50,"y":-3},{"x":12,"y":29},{"x":-51,"y":19},{"x":-92,"y":-138},{"x":-117,"y":-31},{"x":-65,"y":51},{"x":14,"y":-62},{"x":-41,"y":-115},{"x":-85,"y":-59},{"x":-41,"y":0},{"x":-96,"y":105},{"x":-24,"y":-40},{"x":-63,"y":-3},{"x":34,"y":-35},{"x":-111,"y":67},{"x":-38,"y":-117},{"x":34,"y":21},{"x":62,"y":-42},{"x":53,"y":12},{"x":24,"y":-105},{"x":-162,"y":-179},{"x":-237,"y":-91},{"x":-4,"y":-35},{"x":-256,"y":-86},{"x":-113,"y":-201},{"x":-69,"y":-45},{"x":-13,"y":17},{"x":-32,"y":9},{"x":27,"y":-8},{"x":-6,"y":-13},{"x":-19,"y":10},{"x":17,"y":-36},{"x":-28,"y":-32},{"x":-36,"y":38},{"x":-63,"y":-7},{"x":-30,"y":-64},{"x":-55,"y":-26},{"x":-186,"y":-36},{"x":-90,"y":27},{"x":18,"y":-114},{"x":106,"y":-86},{"x":-1,"y":-265},{"x":-146,"y":-150},{"x":-72,"y":-47},{"x":-19,"y":27},{"x":-15,"y":1},{"x":26,"y":-18},{"x":-26,"y":-2},{"x":2,"y":-12},{"x":32,"y":0},{"x":-30,"y":-12},{"x":-13,"y":34},{"x":12,"y":-46},{"x":-38,"y":14},{"x":-103,"y":-35},{"x":18,"y":21},{"x":-169,"y":-70},{"x":-60,"y":49},{"x":-24,"y":-45},{"x":-60,"y":2},{"x":-29,"y":-37},{"x":-95,"y":-18},{"x":-85,"y":58},{"x":-19,"y":-31},{"x":-50,"y":5},{"x":-5,"y":-28},{"x":-38,"y":9},{"x":-11,"y":48},{"x":-18,"y":-28},{"x":-47,"y":1},{"x":-105,"y":92},{"x":-115,"y":-26},{"x":-183,"y":28},{"x":-15,"y":-59},{"x":-164,"y":-64},{"x":54,"y":-51},{"x":-35,"y":-37},{"x":3,"y":-169},{"x":-59,"y":-32},{"x":25,"y":0},{"x":-11,"y":-45},{"x":-38,"y":-12},{"x":-53,"y":62},{"x":-53,"y":-38},{"x":-45,"y":38},{"x":-40,"y":-29},{"x":-60,"y":58},{"x":-39,"y":-73},{"x":-45,"y":-11},{"x":-73,"y":12},{"x":-79,"y":53},{"x":4,"y":35},{"x":-57,"y":19},{"x":-80,"y":249},{"x":-18,"y":-17},{"x":-23,"y":18},{"x":26,"y":10},{"x":-18,"y":31},{"x":-47,"y":-7},{"x":-140,"y":66},{"x":-56,"y":60},{"x":-64,"y":-29},{"x":-100,"y":42},{"x":-167,"y":23},{"x":-31,"y":-19},{"x":-18,"y":-136},{"x":114,"y":-124},{"x":-32,"y":-24},{"x":31,"y":-84},{"x":-38,"y":-57},{"x":198,"y":36},{"x":3,"y":-72},{"x":70,"y":21},{"x":-13,"y":-73},{"x":59,"y":-18},{"x":86,"y":42},{"x":19,"y":68},{"x":38,"y":27},{"x":-29,"y":-35},{"x":17,"y":-51},{"x":24,"y":18},{"x":-2,"y":-42},{"x":-88,"y":-5},{"x":11,"y":-25},{"x":-57,"y":-51},{"x":105,"y":-46},{"x":34,"y":12},{"x":6,"y":51},{"x":2,"y":-41},{"x":28,"y":10},{"x":35,"y":-65},{"x":-33,"y":-23},{"x":-47,"y":20},{"x":45,"y":-36},{"x":-6,"y":-50},{"x":-42,"y":-30},{"x":62,"y":4},{"x":21,"y":-32},{"x":26,"y":-289},{"x":-20,"y":-34},{"x":-41,"y":41},{"x":-78,"y":-34},{"x":-48,"y":25},{"x":-41,"y":-85},{"x":50,"y":5},{"x":4,"y":-30},{"x":49,"y":48},{"x":87,"y":2},{"x":22,"y":-36},{"x":-29,"y":-9},{"x":54,"y":-31},{"x":-45,"y":-12},{"x":7,"y":-61},{"x":-81,"y":-51},{"x":31,"y":-50},{"x":-58,"y":-48},{"x":-22,"y":23},{"x":-68,"y":-25},{"x":-4,"y":-48},{"x":-39,"y":9},{"x":4,"y":-101},{"x":-79,"y":3},{"x":-4,"y":-90},{"x":-58,"y":-13},{"x":10,"y":-87},{"x":85,"y":-35},{"x":-26,"y":-57},{"x":75,"y":-71},{"x":-21,"y":-41},{"x":-36,"y":4},{"x":-27,"y":-64},{"x":189,"y":-110},{"x":-8,"y":-33},{"x":75,"y":-88},{"x":51,"y":-6},{"x":5,"y":-44},{"x":49,"y":9},{"x":63,"y":-32},{"x":-37,"y":-21},{"x":49,"y":-40},{"x":-37,"y":-29},{"x":11,"y":-63},{"x":-45,"y":-90},{"x":39,"y":-33},{"x":-66,"y":24},{"x":15,"y":68},{"x":-38,"y":31},{"x":-18,"y":-16},{"x":37,"y":-48},{"x":-69,"y":-57},{"x":32,"y":-116},{"x":-37,"y":-45},{"x":6,"y":-65},{"x":-52,"y":-50},{"x":-95,"y":15},{"x":13,"y":-100},{"x":-49,"y":-54},{"x":44,"y":-10},{"x":28,"y":88},{"x":142,"y":-52},{"x":-12,"y":67},{"x":34,"y":18},{"x":95,"y":-141},{"x":46,"y":32},{"x":-9,"y":140},{"x":38,"y":3},{"x":-32,"y":56},{"x":47,"y":-6},{"x":26,"y":-118},{"x":9,"y":52},{"x":94,"y":-23},{"x":-9,"y":46},{"x":100,"y":31},{"x":-53,"y":25},{"x":78,"y":27},{"x":-6,"y":27},{"x":76,"y":-34},{"x":10,"y":113},{"x":131,"y":-134},{"x":75,"y":100},{"x":23,"y":-15},{"x":5,"y":53},{"x":51,"y":32},{"x":38,"y":89},{"x":37,"y":9},{"x":17,"y":-25},{"x":63,"y":65},{"x":-19,"y":23},{"x":35,"y":63},{"x":-123,"y":0},{"x":63,"y":49},{"x":-22,"y":18},{"x":-43,"y":-18},{"x":54,"y":70},{"x":44,"y":-74},{"x":26,"y":23},{"x":0,"y":-37},{"x":73,"y":-58},{"x":-26,"y":98},{"x":53,"y":43},{"x":36,"y":-17},{"x":-23,"y":-1},{"x":-3,"y":-65},{"x":88,"y":14},{"x":-6,"y":32},{"x":66,"y":-27},{"x":-10,"y":-20},{"x":109,"y":-23},{"x":-36,"y":-6},{"x":36,"y":5},{"x":-25,"y":-42},{"x":-45,"y":-2},{"x":-9,"y":-21},{"x":29,"y":-5},{"x":-2,"y":-39},{"x":76,"y":15},{"x":-28,"y":-61},{"x":-45,"y":24},{"x":-11,"y":-42},{"x":32,"y":-18},{"x":-29,"y":-6},{"x":15,"y":-28},{"x":42,"y":-15},{"x":-57,"y":11},{"x":32,"y":-56},{"x":-44,"y":1},{"x":2,"y":-38},{"x":54,"y":-10},{"x":-25,"y":-13},{"x":30,"y":-66}],"type":"coastline"},{"arc":[{"x":98223,"y":65037},{"x":-7,"y":22},{"x":-30,"y":-39},{"x":37,"y":17}],"type":"coastline"},{"arc":[{"x":98453,"y":65136},{"x":-49,"y":45},{"x":-30,"y":-7},{"x":5,"y":-45},{"x":74,"y":7}],"type":"coastline"},{"arc":[{"x":98590,"y":65537},{"x":-18,"y":24},{"x":-44,"y":-13},{"x":12,"y":-30},{"x":50,"y":19}],"type":"coastline"},{"arc":[{"x":98642,"y":64969},{"x":-6,"y":56},{"x":-47,"y":7},{"x":-27,"y":54},{"x":-71,"y":-36},{"x":-53,"y":29},{"x":10,"y":-63},{"x":55,"y":17},{"x":20,"y":-48},{"x":-35,"y":-44},{"x":15,"y":-80},{"x":-67,"y":-78},{"x":102,"y":41},{"x":0,"y":-25},{"x":-100,"y":-97},{"x":-37,"y":14},{"x":-10,"y":-49},{"x":-106,"y":56},{"x":12,"y":-33},{"x":-39,"y":-50},{"x":2,"y":-64},{"x":44,"y":7},{"x":-39,"y":-64},{"x":87,"y":-119},{"x":144,"y":-9},{"x":57,"y":-45},{"x":31,"y":5},{"x":-33,"y":10},{"x":28,"y":31},{"x":-39,"y":0},{"x":12,"y":49},{"x":-51,"y":57},{"x":7,"y":54},{"x":48,"y":26},{"x":-34,"y":28},{"x":0,"y":137},{"x":120,"y":226}],"type":"coastline"},{"arc":[{"x":98912,"y":65982},{"x":-44,"y":30},{"x":3,"y":-36},{"x":41,"y":6}],"type":"coastline"},{"arc":[{"x":99112,"y":66019},{"x":-34,"y":7},{"x":-24,"y":-44},{"x":58,"y":37}],"type":"coastline"},{"arc":[{"x":99262,"y":65730},{"x":-46,"y":15},{"x":9,"y":-55},{"x":37,"y":10},{"x":0,"y":30}],"type":"coastline"},{"arc":[{"x":99351,"y":66268},{"x":-23,"y":33},{"x":-156,"y":18},{"x":-46,"y":-90},{"x":78,"y":-54},{"x":95,"y":26},{"x":52,"y":67}],"type":"coastline"},{"arc":[{"x":99398,"y":65214},{"x":-59,"y":46},{"x":-4,"y":82},{"x":-60,"y":-18},{"x":-28,"y":-88},{"x":-47,"y":-21},{"x":85,"y":-54},{"x":113,"y":53}],"type":"coastline"},{"arc":[{"x":99453,"y":66088},{"x":-38,"y":23},{"x":-71,"y":-44},{"x":85,"y":-23},{"x":24,"y":44}],"type":"coastline"},{"arc":[{"x":99863,"y":67070},{"x":-27,"y":12},{"x":11,"y":-31},{"x":16,"y":19}],"type":"coastline"},{"arc":[{"x":99941,"y":66774},{"x":0,"y":27},{"x":-27,"y":-6},{"x":27,"y":-21}],"type":"coastline"},{"arc":[{"x":99266,"y":68265},{"x":4,"y":-82},{"x":-42,"y":-29},{"x":-10,"y":-59},{"x":-80,"y":34},{"x":-33,"y":-37},{"x":-71,"y":55},{"x":-28,"y":-27},{"x":-65,"y":4},{"x":-53,"y":-91},{"x":-45,"y":17},{"x":-39,"y":-47},{"x":-100,"y":-2},{"x":-14,"y":-53},{"x":-98,"y":-39},{"x":-10,"y":-43},{"x":-64,"y":-17},{"x":-69,"y":-72},{"x":-79,"y":7},{"x":-22,"y":-220},{"x":58,"y":-71},{"x":-44,"y":-204},{"x":59,"y":-18},{"x":-43,"y":-33},{"x":-97,"y":13},{"x":-109,"y":78},{"x":-105,"y":-117},{"x":-83,"y":6},{"x":-70,"y":154},{"x":-155,"y":54},{"x":-107,"y":-19},{"x":-56,"y":64},{"x":-190,"y":-66},{"x":-19,"y":-44},{"x":-68,"y":-22},{"x":55,"y":-68},{"x":-52,"y":-61},{"x":-50,"y":-6},{"x":-46,"y":-82},{"x":-71,"y":36},{"x":-36,"y":-98},{"x":-42,"y":19},{"x":-141,"y":-96},{"x":-70,"y":27},{"x":-31,"y":-54},{"x":-44,"y":15},{"x":-27,"y":-26},{"x":-6,"y":-90},{"x":47,"y":-48},{"x":-65,"y":-138},{"x":-56,"y":-8},{"x":-5,"y":-53},{"x":-88,"y":-75},{"x":0,"y":-106},{"x":-44,"y":-43},{"x":9,"y":-39},{"x":-75,"y":-49},{"x":-10,"y":-87},{"x":-62,"y":1},{"x":-22,"y":-32},{"x":-34,"y":35},{"x":-77,"y":-56},{"x":-77,"y":23},{"x":-4,"y":-75},{"x":-70,"y":-19},{"x":-63,"y":-82},{"x":-85,"y":3},{"x":-63,"y":-77},{"x":-58,"y":64},{"x":-67,"y":-61}],"type":"area"},{"arc":[{"x":95789,"y":65933},{"x":27,"y":-54},{"x":-32,"y":-119},{"x":125,"y":-143},{"x":-1,"y":-84},{"x":99,"y":53},{"x":58,"y":-54},{"x":-54,"y":-59},{"x":53,"y":-133},{"x":-48,"y":-37},{"x":2,"y":-40},{"x":-193,"y":-73},{"x":-14,"y":-92},{"x":47,"y":-58},{"x":-51,"y":-72},{"x":15,"y":-37},{"x":-43,"y":-30},{"x":-92,"y":-1},{"x":-66,"y":-177},{"x":-64,"y":-35},{"x":58,"y":-158},{"x":-11,"y":-72},{"x":-65,"y":-58},{"x":-179,"y":-70},{"x":-29,"y":-64},{"x":17,"y":-71},{"x":-37,"y":-8},{"x":-42,"y":-164},{"x":50,"y":-53},{"x":46,"y":4},{"x":57,"y":-70},{"x":86,"y":26},{"x":95,"y":-104},{"x":47,"y":10},{"x":16,"y":-75},{"x":58,"y":-58},{"x":155,"y":-13},{"x":60,"y":60},{"x":126,"y":9},{"x":-37,"y":85},{"x":-50,"y":19},{"x":20,"y":94},{"x":75,"y":-14},{"x":188,"y":-127},{"x":100,"y":81},{"x":70,"y":-16},{"x":48,"y":91},{"x":97,"y":78},{"x":44,"y":125},{"x":64,"y":32},{"x":-9,"y":88},{"x":102,"y":5},{"x":136,"y":90},{"x":75,"y":2},{"x":-18,"y":-63},{"x":85,"y":-74},{"x":11,"y":-121},{"x":-75,"y":-128},{"x":-5,"y":-89},{"x":37,"y":-45},{"x":-55,"y":-28},{"x":51,"y":-119},{"x":160,"y":-28},{"x":86,"y":-69},{"x":-13,"y":-57},{"x":80,"y":-71},{"x":46,"y":-3},{"x":61,"y":-175},{"x":97,"y":-23},{"x":35,"y":-96},{"x":55,"y":-4},{"x":84,"y":-49},{"x":52,"y":-85},{"x":66,"y":-13},{"x":104,"y":-161}],"type":"area"},{"arc":[{"x":97932,"y":62891},{"x":100,"y":160},{"x":-34,"y":36},{"x":41,"y":118},{"x":-40,"y":111},{"x":79,"y":14},{"x":-6,"y":-21},{"x":63,"y":4},{"x":41,"y":-40},{"x":20,"y":-66},{"x":132,"y":-38},{"x":-73,"y":-103},{"x":18,"y":-178},{"x":79,"y":-61},{"x":-21,"y":-120},{"x":23,"y":13},{"x":-49,"y":-68},{"x":-56,"y":53},{"x":-76,"y":-12},{"x":-12,"y":-79},{"x":45,"y":-81},{"x":107,"y":22},{"x":-3,"y":71},{"x":81,"y":96},{"x":79,"y":-13},{"x":61,"y":25},{"x":51,"y":102},{"x":98,"y":-8},{"x":-67,"y":65},{"x":-69,"y":174},{"x":-122,"y":14},{"x":-39,"y":118},{"x":-1,"y":208},{"x":100,"y":132},{"x":-29,"y":41},{"x":59,"y":45},{"x":-48,"y":102},{"x":6,"y":80},{"x":-104,"y":119},{"x":27,"y":121},{"x":51,"y":5},{"x":3,"y":23},{"x":-64,"y":-9},{"x":-101,"y":67},{"x":-88,"y":-15},{"x":-100,"y":47},{"x":0,"y":38},{"x":-73,"y":45},{"x":-8,"y":70},{"x":31,"y":95},{"x":52,"y":30},{"x":-52,"y":-13},{"x":22,"y":31},{"x":25,"y":-15},{"x":3,"y":67},{"x":162,"y":88},{"x":-72,"y":23},{"x":23,"y":21},{"x":-30,"y":5},{"x":-6,"y":-27},{"x":2,"y":34},{"x":-17,"y":-30},{"x":-64,"y":51},{"x":-52,"y":-31},{"x":-38,"y":74},{"x":75,"y":82},{"x":66,"y":-30},{"x":72,"y":32},{"x":-45,"y":36},{"x":23,"y":45},{"x":-90,"y":98},{"x":23,"y":62},{"x":54,"y":-1},{"x":-52,"y":47},{"x":58,"y":104},{"x":-18,"y":35},{"x":-46,"y":6},{"x":35,"y":47},{"x":-21,"y":33},{"x":-46,"y":10},{"x":35,"y":36},{"x":-14,"y":62},{"x":47,"y":21},{"x":51,"y":140},{"x":207,"y":47},{"x":35,"y":47},{"x":-31,"y":58},{"x":25,"y":25},{"x":-67,"y":67},{"x":47,"y":154},{"x":68,"y":12},{"x":-4,"y":51},{"x":-52,"y":26},{"x":30,"y":69},{"x":80,"y":38},{"x":-2,"y":82},{"x":-28,"y":6},{"x":49,"y":22},{"x":-15,"y":-34},{"x":42,"y":-12},{"x":25,"y":62},{"x":47,"y":-25},{"x":-33,"y":49},{"x":43,"y":5},{"x":53,"y":-75},{"x":-27,"y":-22},{"x":9,"y":-63},{"x":27,"y":-35},{"x":72,"y":-14},{"x":43,"y":23},{"x":-8,"y":29},{"x":-66,"y":48},{"x":-34,"y":75},{"x":33,"y":3},{"x":17,"y":63},{"x":115,"y":78},{"x":56,"y":-25},{"x":-12,"y":73},{"x":36,"y":30},{"x":31,"y":-13},{"x":-15,"y":31},{"x":66,"y":-52},{"x":20,"y":51},{"x":-51,"y":53},{"x":56,"y":63},{"x":110,"y":41},{"x":16,"y":-30},{"x":16,"y":28},{"x":-13,"y":-53},{"x":83,"y":-32},{"x":-18,"y":-46},{"x":47,"y":36},{"x":51,"y":-38},{"x":-2,"y":26},{"x":83,"y":15},{"x":49,"y":62},{"x":73,"y":27},{"x":-53,"y":43},{"x":-10,"y":207},{"x":28,"y":48},{"x":174,"y":79},{"x":18,"y":48},{"x":22,"y":-10},{"x":-13,"y":31},{"x":68,"y":119},{"x":61,"y":11},{"x":99,"y":112},{"x":27,"y":-8},{"x":-21,"y":-12},{"x":74,"y":29},{"x":50,"y":-41},{"x":74,"y":57},{"x":59,"y":-25},{"x":76,"y":18},{"x":57,"y":65},{"x":-11,"y":116},{"x":49,"y":-10},{"x":-17,"y":67},{"x":-19,"y":-23},{"x":-25,"y":37},{"x":36,"y":25},{"x":1,"y":82},{"x":4,"y":-32},{"x":44,"y":27},{"x":-1,"y":37},{"x":58,"y":-35},{"x":-44,"y":4},{"x":19,"y":-32},{"x":-30,"y":-6},{"x":58,"y":-23},{"x":-56,"y":-25},{"x":45,"y":-25},{"x":42,"y":44},{"x":79,"y":-32},{"x":7,"y":45},{"x":146,"y":59},{"x":47,"y":71},{"x":-35,"y":60},{"x":11,"y":110},{"x":-83,"y":71},{"x":-93,"y":-43},{"x":-17,"y":45},{"x":-33,"y":2},{"x":2,"y":49},{"x":15,"y":-22},{"x":38,"y":34},{"x":6,"y":-64},{"x":58,"y":16},{"x":2,"y":75},{"x":41,"y":4},{"x":-22,"y":57},{"x":35,"y":6},{"x":5,"y":49},{"x":51,"y":13},{"x":-3,"y":22},{"x":64,"y":-54},{"x":43,"y":0},{"x":9,"y":36},{"x":-35,"y":3},{"x":-1,"y":34},{"x":32,"y":17},{"x":-17,"y":40},{"x":60,"y":48}],"type":"coastline"},{"arc":[{"x":102062,"y":64065},{"x":-98,"y":88},{"x":14,"y":55},{"x":-39,"y":12},{"x":-41,"y":-54},{"x":23,"y":45},{"x":-44,"y":-25},{"x":-39,"y":86},{"x":30,"y":52},{"x":-140,"y":-23},{"x":-1,"y":-58},{"x":-33,"y":-5},{"x":-1,"y":21},{"x":-9,"y":-34},{"x":25,"y":-5},{"x":-30,"y":-16},{"x":3,"y":-92},{"x":104,"y":-46},{"x":225,"y":-30},{"x":51,"y":29}],"type":"coastline"},{"arc":[{"x":93876,"y":62488},{"x":-18,"y":23},{"x":-34,"y":-10},{"x":52,"y":-13}],"type":"coastline"},{"arc":[{"x":94047,"y":62358},{"x":-32,"y":42},{"x":-77,"y":-37},{"x":-42,"y":14},{"x":-14,"y":78},{"x":-29,"y":-22},{"x":-71,"y":51},{"x":-114,"y":-38},{"x":-30,"y":-98},{"x":62,"y":-78},{"x":35,"y":62},{"x":47,"y":9},{"x":-42,"y":-85},{"x":165,"y":-44},{"x":-11,"y":-41},{"x":79,"y":-108},{"x":0,"y":24},{"x":69,"y":40},{"x":-67,"y":56},{"x":-13,"y":80},{"x":57,"y":22},{"x":-7,"y":43},{"x":35,"y":30}],"type":"coastline"},{"arc":[{"x":94055,"y":62088},{"x":-34,"y":12},{"x":-39,"y":-27},{"x":24,"y":-23},{"x":49,"y":38}],"type":"coastline"},{"arc":[{"x":94301,"y":61985},{"x":-59,"y":32},{"x":-44,"y":-19},{"x":-1,"y":-43},{"x":56,"y":-6},{"x":48,"y":36}],"type":"coastline"},{"arc":[{"x":94416,"y":62225},{"x":-30,"y":79},{"x":5,"y":-50},{"x":-52,"y":-5},{"x":2,"y":-25},{"x":74,"y":-3},{"x":-45,"y":-39},{"x":-47,"y":-4},{"x":62,"y":6},{"x":37,"y":35},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":95575,"y":61315},{"x":-85,"y":39},{"x":23,"y":47},{"x":-38,"y":47},{"x":-44,"y":34},{"x":-24,"y":-20},{"x":-41,"y":17},{"x":-6,"y":-34},{"x":69,"y":-25},{"x":-22,"y":-74},{"x":49,"y":-42},{"x":91,"y":-20},{"x":28,"y":31}],"type":"coastline"},{"arc":[{"x":96158,"y":62273},{"x":-59,"y":27},{"x":11,"y":-57},{"x":48,"y":30}],"type":"coastline"},{"arc":[{"x":95789,"y":65933},{"x":-44,"y":14},{"x":-12,"y":38},{"x":-51,"y":-10},{"x":-48,"y":34},{"x":-61,"y":-27},{"x":-35,"y":-73},{"x":-38,"y":24},{"x":-23,"y":-67},{"x":44,"y":-69},{"x":-17,"y":-55},{"x":-86,"y":52},{"x":-105,"y":12},{"x":-58,"y":-60},{"x":-62,"y":31},{"x":-77,"y":-87},{"x":-147,"y":-44},{"x":-48,"y":-56},{"x":5,"y":-56},{"x":-52,"y":-34},{"x":-14,"y":21},{"x":-34,"y":-16},{"x":-42,"y":-64},{"x":-61,"y":5},{"x":-11,"y":-38},{"x":-50,"y":-8},{"x":-10,"y":34},{"x":-28,"y":-7},{"x":-40,"y":-79},{"x":-91,"y":-22},{"x":-48,"y":36},{"x":24,"y":82},{"x":-45,"y":15},{"x":57,"y":125},{"x":-24,"y":54},{"x":51,"y":131},{"x":-53,"y":34},{"x":-2,"y":79}],"type":"area"},{"arc":[{"x":94453,"y":65882},{"x":-96,"y":-12},{"x":2,"y":-67},{"x":-60,"y":-41},{"x":-136,"y":63},{"x":-3,"y":-59},{"x":-132,"y":-145},{"x":21,"y":-107},{"x":-47,"y":-17},{"x":0,"y":-58},{"x":-83,"y":-49},{"x":-21,"y":-70},{"x":-29,"y":31},{"x":18,"y":-86},{"x":-17,"y":74},{"x":-120,"y":-197},{"x":8,"y":-50},{"x":18,"y":20},{"x":15,"y":-26},{"x":-29,"y":2},{"x":9,"y":-62},{"x":-43,"y":-38},{"x":-8,"y":-52},{"x":55,"y":18},{"x":-40,"y":14},{"x":22,"y":35},{"x":50,"y":-18},{"x":-24,"y":-28},{"x":24,"y":28},{"x":23,"y":-13},{"x":30,"y":42},{"x":-24,"y":30},{"x":46,"y":-27},{"x":-92,"y":-155},{"x":31,"y":-18},{"x":57,"y":29},{"x":62,"y":116},{"x":-14,"y":-43},{"x":44,"y":22},{"x":-17,"y":-29},{"x":68,"y":-27},{"x":-32,"y":-45},{"x":-45,"y":12},{"x":-54,"y":-27},{"x":-37,"y":-69},{"x":28,"y":-56},{"x":76,"y":93},{"x":88,"y":47},{"x":33,"y":-18},{"x":-102,"y":-38},{"x":167,"y":12},{"x":-145,"y":-28},{"x":7,"y":-49},{"x":74,"y":10},{"x":-15,"y":-56},{"x":28,"y":-23},{"x":-137,"y":12},{"x":-52,"y":-201},{"x":-70,"y":6},{"x":-12,"y":-39},{"x":218,"y":-178},{"x":75,"y":6},{"x":22,"y":88},{"x":8,"y":-75},{"x":52,"y":14},{"x":-5,"y":88},{"x":19,"y":-41},{"x":30,"y":52},{"x":4,"y":-41},{"x":32,"y":-2},{"x":-42,"y":-63},{"x":37,"y":4},{"x":10,"y":43},{"x":74,"y":-51},{"x":55,"y":72},{"x":42,"y":2},{"x":-76,"y":-110},{"x":60,"y":-76},{"x":79,"y":34},{"x":8,"y":-128},{"x":-50,"y":-2},{"x":-62,"y":44},{"x":-20,"y":-48},{"x":58,"y":-9},{"x":62,"y":-85},{"x":283,"y":-165},{"x":38,"y":-49},{"x":-18,"y":-10},{"x":-2,"y":-28},{"x":15,"y":32},{"x":6,"y":-34},{"x":-16,"y":3},{"x":24,"y":-32},{"x":-39,"y":-15},{"x":81,"y":-280},{"x":78,"y":3},{"x":31,"y":-39},{"x":34,"y":4},{"x":-3,"y":-51},{"x":-108,"y":-66},{"x":-60,"y":17},{"x":-64,"y":-94},{"x":-61,"y":-23},{"x":8,"y":-27},{"x":-65,"y":71},{"x":-77,"y":-52},{"x":-23,"y":-23},{"x":66,"y":-65},{"x":-73,"y":-22},{"x":-55,"y":45},{"x":-38,"y":-22},{"x":47,"y":-46},{"x":-84,"y":-6},{"x":1,"y":-30},{"x":-10,"y":29},{"x":-42,"y":1},{"x":-321,"y":-422},{"x":-65,"y":-38},{"x":-16,"y":-104},{"x":-37,"y":21},{"x":-7,"y":-31},{"x":-12,"y":46},{"x":-30,"y":-7},{"x":5,"y":-103},{"x":130,"y":38},{"x":25,"y":-55},{"x":-10,"y":-56},{"x":88,"y":61},{"x":66,"y":-7},{"x":77,"y":32},{"x":133,"y":-64},{"x":258,"y":60},{"x":55,"y":-37},{"x":-2,"y":-63},{"x":172,"y":84},{"x":148,"y":-17},{"x":46,"y":-43},{"x":-34,"y":-41},{"x":75,"y":10},{"x":24,"y":-55},{"x":-70,"y":-28},{"x":19,"y":-29},{"x":64,"y":-2},{"x":82,"y":-97},{"x":38,"y":45},{"x":49,"y":-56},{"x":-33,"y":-26},{"x":-19,"y":24},{"x":18,"y":-28},{"x":41,"y":29},{"x":76,"y":-10},{"x":51,"y":-86},{"x":64,"y":-11},{"x":32,"y":38},{"x":215,"y":11},{"x":-6,"y":93},{"x":53,"y":16},{"x":3,"y":41},{"x":-57,"y":-4},{"x":-1,"y":87},{"x":53,"y":55},{"x":56,"y":8},{"x":0,"y":-33},{"x":48,"y":-6},{"x":6,"y":-29},{"x":-1,"y":70},{"x":155,"y":161},{"x":44,"y":19},{"x":27,"y":-14},{"x":-9,"y":21},{"x":20,"y":-3},{"x":-13,"y":-24},{"x":33,"y":5},{"x":85,"y":60},{"x":173,"y":-20},{"x":53,"y":-17},{"x":20,"y":-99},{"x":101,"y":49},{"x":136,"y":-9},{"x":137,"y":-162},{"x":110,"y":-33},{"x":63,"y":-53},{"x":145,"y":-178},{"x":72,"y":47},{"x":-1,"y":72},{"x":68,"y":31},{"x":37,"y":-24},{"x":42,"y":15},{"x":23,"y":23},{"x":-34,"y":14},{"x":7,"y":29},{"x":69,"y":-19},{"x":-4,"y":53},{"x":16,"y":-49},{"x":56,"y":51},{"x":-5,"y":-51},{"x":77,"y":18},{"x":-1,"y":-32},{"x":114,"y":1},{"x":97,"y":77},{"x":-11,"y":19},{"x":19,"y":-21},{"x":72,"y":13},{"x":4,"y":41},{"x":-113,"y":62},{"x":21,"y":56},{"x":-118,"y":51},{"x":103,"y":56},{"x":1,"y":107},{"x":107,"y":248}],"type":"coastline"},{"arc":[{"x":98029,"y":62007},{"x":-15,"y":32},{"x":-54,"y":7},{"x":13,"y":36},{"x":-37,"y":27},{"x":-99,"y":-22},{"x":-4,"y":-146},{"x":-115,"y":-90},{"x":29,"y":-4},{"x":14,"y":-53},{"x":91,"y":0},{"x":-4,"y":131},{"x":45,"y":70},{"x":55,"y":37},{"x":81,"y":-25}],"type":"coastline"},{"arc":[{"x":92015,"y":71097},{"x":-37,"y":-3},{"x":-7,"y":-53},{"x":44,"y":56}],"type":"coastline"},{"arc":[{"x":92241,"y":72039},{"x":-92,"y":-36},{"x":-51,"y":48},{"x":-86,"y":-49},{"x":-117,"y":54},{"x":-63,"y":-30},{"x":-75,"y":-123},{"x":63,"y":-54},{"x":71,"y":53},{"x":33,"y":90},{"x":67,"y":2},{"x":13,"y":-39},{"x":71,"y":-9},{"x":166,"y":93}],"type":"coastline"},{"arc":[{"x":92390,"y":71270},{"x":-40,"y":19},{"x":-35,"y":-28},{"x":34,"y":-32},{"x":-3,"y":28},{"x":44,"y":13}],"type":"coastline"},{"arc":[{"x":92536,"y":70346},{"x":-26,"y":40},{"x":-48,"y":-7},{"x":25,"y":-63},{"x":49,"y":30}],"type":"coastline"},{"arc":[{"x":92564,"y":70630},{"x":-97,"y":156},{"x":-76,"y":23},{"x":-106,"y":-230},{"x":26,"y":-98},{"x":91,"y":-35},{"x":13,"y":113},{"x":112,"y":4},{"x":37,"y":67}],"type":"coastline"},{"arc":[{"x":92722,"y":73994},{"x":-33,"y":-24},{"x":-68,"y":12},{"x":-19,"y":-44},{"x":57,"y":-15},{"x":63,"y":71}],"type":"coastline"},{"arc":[{"x":92738,"y":72883},{"x":-82,"y":-27},{"x":-9,"y":-28},{"x":71,"y":-19},{"x":20,"y":74}],"type":"coastline"},{"arc":[{"x":92748,"y":72496},{"x":-16,"y":94},{"x":-68,"y":14},{"x":-17,"y":75},{"x":-85,"y":27},{"x":-32,"y":63},{"x":18,"y":32},{"x":-158,"y":88},{"x":3,"y":107},{"x":-128,"y":-133},{"x":45,"y":2},{"x":105,"y":-129},{"x":-11,"y":-193},{"x":62,"y":-21},{"x":53,"y":-84},{"x":81,"y":-27},{"x":-11,"y":24},{"x":34,"y":-35},{"x":0,"y":-52},{"x":-89,"y":-126},{"x":21,"y":-12},{"x":65,"y":-4},{"x":40,"y":37},{"x":26,"y":68},{"x":-28,"y":69},{"x":61,"y":42},{"x":29,"y":74}],"type":"coastline"},{"arc":[{"x":92809,"y":71792},{"x":-71,"y":25},{"x":-49,"y":-34},{"x":56,"y":16},{"x":25,"y":-28},{"x":39,"y":21}],"type":"coastline"},{"arc":[{"x":93055,"y":72271},{"x":-11,"y":36},{"x":-41,"y":-8},{"x":20,"y":-46},{"x":32,"y":18}],"type":"coastline"},{"arc":[{"x":93063,"y":72428},{"x":-12,"y":21},{"x":-27,"y":-19},{"x":24,"y":-20},{"x":15,"y":18}],"type":"coastline"},{"arc":[{"x":93138,"y":71418},{"x":-125,"y":87},{"x":-4,"y":43},{"x":38,"y":27},{"x":-51,"y":36},{"x":-1,"y":67},{"x":-81,"y":-1},{"x":24,"y":29},{"x":-55,"y":26},{"x":-14,"y":54},{"x":-18,"y":-82},{"x":-33,"y":-16},{"x":9,"y":-142},{"x":-96,"y":-19},{"x":-21,"y":-80},{"x":-97,"y":-19},{"x":-12,"y":-107},{"x":-77,"y":-27},{"x":-43,"y":18},{"x":-44,"y":-62},{"x":53,"y":-60},{"x":-32,"y":-43},{"x":16,"y":-33},{"x":36,"y":9},{"x":23,"y":-45},{"x":36,"y":209},{"x":49,"y":33},{"x":149,"y":12},{"x":-5,"y":51},{"x":34,"y":3},{"x":52,"y":90},{"x":79,"y":18},{"x":66,"y":-87},{"x":49,"y":-18},{"x":96,"y":29}],"type":"coastline"},{"arc":[{"x":93140,"y":73668},{"x":-34,"y":49},{"x":-34,"y":-1},{"x":14,"y":50},{"x":-45,"y":8},{"x":-13,"y":-57},{"x":70,"y":-90},{"x":42,"y":41}],"type":"coastline"},{"arc":[{"x":93225,"y":73319},{"x":-50,"y":-10},{"x":22,"y":-39},{"x":28,"y":49}],"type":"coastline"},{"arc":[{"x":93258,"y":70733},{"x":-15,"y":15},{"x":-13,"y":-43},{"x":28,"y":28}],"type":"coastline"},{"arc":[{"x":93261,"y":70994},{"x":-55,"y":5},{"x":-34,"y":41},{"x":-27,"y":-17},{"x":-69,"y":22},{"x":8,"y":-134},{"x":45,"y":-70},{"x":37,"y":21},{"x":-18,"y":124},{"x":90,"y":-19},{"x":23,"y":27}],"type":"coastline"},{"arc":[{"x":93377,"y":71366},{"x":-123,"y":44},{"x":-37,"y":-68},{"x":66,"y":-3},{"x":29,"y":-38},{"x":51,"y":17},{"x":14,"y":48}],"type":"coastline"},{"arc":[{"x":93420,"y":71297},{"x":-7,"y":23},{"x":-30,"y":-13},{"x":37,"y":-10}],"type":"coastline"},{"arc":[{"x":93541,"y":71203},{"x":-55,"y":78},{"x":-73,"y":-16},{"x":82,"y":-82},{"x":46,"y":20}],"type":"coastline"},{"arc":[{"x":93789,"y":74414},{"x":-31,"y":62},{"x":-87,"y":26},{"x":61,"y":-92},{"x":57,"y":4}],"type":"coastline"},{"arc":[{"x":93982,"y":72161},{"x":-20,"y":18},{"x":-55,"y":-41},{"x":1,"y":-71},{"x":61,"y":18},{"x":13,"y":76}],"type":"coastline"},{"arc":[{"x":94088,"y":74700},{"x":-49,"y":-5},{"x":13,"y":-34},{"x":36,"y":39}],"type":"coastline"},{"arc":[{"x":94096,"y":73578},{"x":13,"y":27},{"x":-77,"y":33},{"x":-73,"y":-13},{"x":-32,"y":22},{"x":-21,"y":-31},{"x":62,"y":-54},{"x":3,"y":22},{"x":15,"y":-93},{"x":81,"y":13},{"x":49,"y":84},{"x":-20,"y":-10}],"type":"coastline"},{"arc":[{"x":94164,"y":74539},{"x":-70,"y":85},{"x":-44,"y":-26},{"x":-9,"y":-35},{"x":57,"y":-30},{"x":43,"y":-89},{"x":-13,"y":66},{"x":36,"y":29}],"type":"coastline"},{"arc":[{"x":94174,"y":72689},{"x":-45,"y":85},{"x":-85,"y":33},{"x":-48,"y":104},{"x":62,"y":184},{"x":-142,"y":17},{"x":-100,"y":106},{"x":-89,"y":-7},{"x":-54,"y":91},{"x":75,"y":57},{"x":-87,"y":27},{"x":-71,"y":-51},{"x":-31,"y":40},{"x":36,"y":13},{"x":-50,"y":60},{"x":2,"y":31},{"x":14,"y":10},{"x":-4,"y":-16},{"x":24,"y":70},{"x":35,"y":-15},{"x":-14,"y":14},{"x":-28,"y":4},{"x":26,"y":81},{"x":36,"y":29},{"x":64,"y":-35},{"x":7,"y":62},{"x":95,"y":67},{"x":-35,"y":63},{"x":38,"y":189},{"x":41,"y":29},{"x":78,"y":-30},{"x":114,"y":121},{"x":-14,"y":166},{"x":-64,"y":-8},{"x":-29,"y":61},{"x":15,"y":94},{"x":44,"y":47},{"x":-16,"y":35},{"x":39,"y":25},{"x":-23,"y":8},{"x":-66,"y":-115},{"x":-86,"y":-54},{"x":-7,"y":-56},{"x":-35,"y":-6},{"x":43,"y":-56},{"x":-57,"y":-28},{"x":-10,"y":-84},{"x":-56,"y":-9},{"x":-23,"y":-70},{"x":-69,"y":-22},{"x":58,"y":-25},{"x":20,"y":-47},{"x":-16,"y":-65},{"x":-45,"y":-2},{"x":34,"y":-69},{"x":-40,"y":-77},{"x":-69,"y":1},{"x":-8,"y":-42},{"x":-61,"y":-32},{"x":-36,"y":37},{"x":-94,"y":-30},{"x":-56,"y":48},{"x":-82,"y":-9},{"x":-57,"y":30},{"x":-13,"y":-86},{"x":86,"y":-109},{"x":-112,"y":-118},{"x":0,"y":-43},{"x":105,"y":-3},{"x":88,"y":91},{"x":40,"y":-1},{"x":39,"y":-49},{"x":-46,"y":-37},{"x":59,"y":13},{"x":32,"y":-26},{"x":8,"y":-123},{"x":42,"y":-65},{"x":0,"y":-39},{"x":-55,"y":-49},{"x":70,"y":22},{"x":38,"y":-31},{"x":-20,"y":-73},{"x":-6,"y":24},{"x":-49,"y":-33},{"x":-45,"y":-78},{"x":-126,"y":1},{"x":-51,"y":87},{"x":23,"y":-72},{"x":-42,"y":-46},{"x":88,"y":-57},{"x":-36,"y":-114},{"x":30,"y":-42},{"x":-28,"y":-132},{"x":-169,"y":-94},{"x":138,"y":-67},{"x":7,"y":39},{"x":67,"y":-4},{"x":66,"y":-111},{"x":69,"y":-21},{"x":12,"y":-86},{"x":36,"y":31},{"x":43,"y":-40},{"x":154,"y":15},{"x":43,"y":-33},{"x":64,"y":26},{"x":-13,"y":49},{"x":52,"y":49},{"x":182,"y":-31},{"x":13,"y":66},{"x":-56,"y":98},{"x":35,"y":54},{"x":107,"y":2},{"x":14,"y":25},{"x":-48,"y":16},{"x":-16,"y":92},{"x":83,"y":34}],"type":"coastline"},{"arc":[{"x":94233,"y":73585},{"x":-63,"y":53},{"x":-57,"y":-31},{"x":18,"y":-25},{"x":64,"y":0},{"x":17,"y":-36},{"x":21,"y":39}],"type":"coastline"},{"arc":[{"x":94516,"y":73447},{"x":-43,"y":42},{"x":-72,"y":-16},{"x":22,"y":-43},{"x":93,"y":17}],"type":"coastline"},{"arc":[{"x":94575,"y":72921},{"x":-51,"y":52},{"x":-35,"y":-21},{"x":-15,"y":34},{"x":-53,"y":-33},{"x":21,"y":-30},{"x":50,"y":9},{"x":21,"y":-52},{"x":35,"y":0},{"x":27,"y":41}],"type":"coastline"},{"arc":[{"x":94573,"y":74233},{"x":-55,"y":-10},{"x":-6,"y":38},{"x":-15,"y":-33},{"x":30,"y":-14},{"x":46,"y":19}],"type":"coastline"},{"arc":[{"x":94698,"y":73403},{"x":-19,"y":11},{"x":39,"y":-19},{"x":-20,"y":8}],"type":"coastline"},{"arc":[{"x":94770,"y":74103},{"x":-144,"y":124},{"x":-2,"y":-29},{"x":-40,"y":3},{"x":33,"y":-171},{"x":123,"y":-22},{"x":30,"y":95}],"type":"coastline"},{"arc":[{"x":94836,"y":74142},{"x":-32,"y":59},{"x":6,"y":-83},{"x":26,"y":24}],"type":"coastline"},{"arc":[{"x":94887,"y":73921},{"x":-57,"y":-44},{"x":-38,"y":27},{"x":-56,"y":-43},{"x":75,"y":-9},{"x":18,"y":-54},{"x":58,"y":123}],"type":"coastline"},{"arc":[{"x":95052,"y":73950},{"x":-25,"y":40},{"x":-36,"y":-23},{"x":26,"y":-50},{"x":35,"y":33}],"type":"coastline"},{"arc":[{"x":95611,"y":73356},{"x":-1,"y":-50},{"x":32,"y":3}],"type":"coastline"},{"arc":[{"x":96481,"y":72779},{"x":-92,"y":9},{"x":18,"y":-13},{"x":-54,"y":-22},{"x":-30,"y":-59},{"x":21,"y":9},{"x":-1,"y":-28},{"x":-83,"y":-7},{"x":26,"y":48},{"x":-24,"y":14},{"x":-19,"y":-66},{"x":-44,"y":23},{"x":31,"y":38},{"x":-19,"y":20},{"x":-48,"y":-2},{"x":17,"y":38},{"x":-28,"y":-25},{"x":-47,"y":12},{"x":59,"y":40},{"x":-59,"y":1},{"x":-11,"y":-37},{"x":-37,"y":11},{"x":38,"y":23},{"x":-113,"y":26},{"x":-192,"y":-30},{"x":-12,"y":78},{"x":-22,"y":-4},{"x":34,"y":-74},{"x":-42,"y":-7},{"x":-2,"y":23},{"x":-30,"y":-5},{"x":14,"y":58},{"x":-19,"y":-30},{"x":22,"y":-135},{"x":-47,"y":-22},{"x":39,"y":-85},{"x":-37,"y":-20},{"x":-17,"y":-131},{"x":-64,"y":-33},{"x":19,"y":41},{"x":-104,"y":-35},{"x":-250,"y":89},{"x":-111,"y":3},{"x":-29,"y":-13},{"x":22,"y":-23},{"x":-142,"y":37},{"x":-12,"y":-22},{"x":11,"y":25},{"x":-47,"y":0},{"x":-38,"y":68},{"x":-37,"y":-7},{"x":9,"y":-31},{"x":-19,"y":36},{"x":-378,"y":-59},{"x":-131,"y":-97},{"x":-64,"y":-6},{"x":-191,"y":-117},{"x":16,"y":-57},{"x":-65,"y":-197},{"x":14,"y":-190},{"x":-49,"y":13},{"x":-52,"y":-39},{"x":58,"y":-46},{"x":-106,"y":30},{"x":-10,"y":36},{"x":-137,"y":-18},{"x":-160,"y":57},{"x":-96,"y":-42},{"x":-52,"y":47},{"x":-27,"y":-44},{"x":-31,"y":5},{"x":-83,"y":68},{"x":-41,"y":92},{"x":-75,"y":-16},{"x":-69,"y":94},{"x":-135,"y":-3},{"x":-113,"y":-104},{"x":-19,"y":-47},{"x":34,"y":-109},{"x":-27,"y":-64},{"x":242,"y":7},{"x":26,"y":-36},{"x":78,"y":57},{"x":66,"y":-1},{"x":155,"y":-325},{"x":126,"y":-32},{"x":-10,"y":-40},{"x":55,"y":-73},{"x":-26,"y":-7},{"x":27,"y":-10},{"x":-14,"y":-99},{"x":52,"y":92},{"x":74,"y":-19},{"x":6,"y":-23},{"x":-64,"y":13},{"x":-84,"y":-177},{"x":-50,"y":-40},{"x":127,"y":-204},{"x":138,"y":-143},{"x":-69,"y":-95},{"x":-29,"y":30},{"x":27,"y":34},{"x":-45,"y":-9},{"x":9,"y":-80},{"x":23,"y":-25},{"x":85,"y":-1},{"x":-8,"y":51},{"x":34,"y":5},{"x":127,"y":-50},{"x":41,"y":-66},{"x":-28,"y":-142},{"x":50,"y":-63},{"x":89,"y":16},{"x":-53,"y":-48},{"x":-39,"y":10},{"x":147,"y":-50},{"x":102,"y":-215}],"type":"coastline"},{"arc":[{"x":94277,"y":70012},{"x":63,"y":62},{"x":57,"y":-2},{"x":2,"y":40},{"x":54,"y":35},{"x":17,"y":110},{"x":94,"y":90},{"x":65,"y":207},{"x":63,"y":34},{"x":45,"y":-36},{"x":57,"y":36},{"x":-79,"y":137},{"x":43,"y":68},{"x":-34,"y":241},{"x":187,"y":66},{"x":171,"y":-19},{"x":57,"y":-32},{"x":-30,"y":-90},{"x":-34,"y":-4},{"x":48,"y":-48},{"x":-30,"y":-67},{"x":63,"y":-17},{"x":-1,"y":-35},{"x":82,"y":39},{"x":81,"y":-107},{"x":9,"y":-118},{"x":54,"y":16},{"x":8,"y":-34},{"x":172,"y":0},{"x":-4,"y":-28},{"x":105,"y":-17},{"x":35,"y":-50},{"x":54,"y":47},{"x":128,"y":-48},{"x":21,"y":44},{"x":57,"y":-10},{"x":29,"y":26},{"x":47,"y":-39},{"x":13,"y":24},{"x":43,"y":-12},{"x":68,"y":72},{"x":42,"y":-17},{"x":5,"y":-43},{"x":69,"y":-13},{"x":30,"y":34},{"x":54,"y":-5},{"x":29,"y":-121},{"x":66,"y":-37},{"x":69,"y":18},{"x":41,"y":-29},{"x":33,"y":33},{"x":69,"y":-44},{"x":12,"y":-24},{"x":-91,"y":-113},{"x":82,"y":-60},{"x":46,"y":-161},{"x":77,"y":-25},{"x":78,"y":47},{"x":220,"y":-123},{"x":42,"y":30},{"x":65,"y":-16},{"x":111,"y":20},{"x":36,"y":-30},{"x":69,"y":18}],"type":"area"},{"arc":[{"x":94006,"y":68491},{"x":-105,"y":33},{"x":-37,"y":-48},{"x":72,"y":-51},{"x":34,"y":31},{"x":-27,"y":20},{"x":63,"y":15}],"type":"coastline"},{"arc":[{"x":94311,"y":68800},{"x":-30,"y":5},{"x":14,"y":-35},{"x":16,"y":30}],"type":"coastline"},{"arc":[{"x":94325,"y":68983},{"x":-29,"y":78},{"x":-51,"y":-66},{"x":80,"y":-12}],"type":"coastline"},{"arc":[{"x":94387,"y":69751},{"x":-68,"y":12},{"x":-45,"y":55},{"x":36,"y":23},{"x":-103,"y":29},{"x":-4,"y":34},{"x":-62,"y":-151},{"x":-127,"y":27},{"x":18,"y":-38},{"x":-180,"y":-166},{"x":-25,"y":-72},{"x":-3,"y":-54},{"x":52,"y":-10},{"x":30,"y":-96},{"x":69,"y":-14},{"x":51,"y":26},{"x":69,"y":108},{"x":-62,"y":-38},{"x":-30,"y":36},{"x":-45,"y":-4},{"x":39,"y":38},{"x":-9,"y":61},{"x":82,"y":2},{"x":1,"y":56},{"x":-64,"y":52},{"x":37,"y":-4},{"x":-19,"y":12},{"x":34,"y":17},{"x":26,"y":-18},{"x":34,"y":20},{"x":5,"y":-35},{"x":13,"y":28},{"x":36,"y":-7},{"x":-7,"y":-60},{"x":43,"y":16},{"x":-15,"y":35},{"x":60,"y":57},{"x":41,"y":-25},{"x":5,"y":36},{"x":87,"y":12}],"type":"coastline"},{"arc":[{"x":94705,"y":67625},{"x":-82,"y":120},{"x":-39,"y":-53},{"x":-108,"y":-24},{"x":-124,"y":-190},{"x":72,"y":-26},{"x":-42,"y":-60},{"x":79,"y":11},{"x":55,"y":82},{"x":86,"y":-2},{"x":103,"y":142}],"type":"coastline"},{"arc":[{"x":94816,"y":68587},{"x":-39,"y":48},{"x":-55,"y":-47},{"x":-46,"y":32},{"x":-45,"y":-23},{"x":-22,"y":35},{"x":-52,"y":-33},{"x":-77,"y":3},{"x":-166,"y":168},{"x":-27,"y":-107},{"x":96,"y":4},{"x":-7,"y":-35},{"x":137,"y":-98},{"x":44,"y":-86},{"x":1,"y":106},{"x":182,"y":-5},{"x":76,"y":38}],"type":"coastline"},{"arc":[{"x":94959,"y":69085},{"x":-17,"y":57},{"x":-98,"y":-135},{"x":-91,"y":-64},{"x":35,"y":-17},{"x":-69,"y":-35},{"x":-43,"y":-72},{"x":21,"y":-79},{"x":54,"y":-19},{"x":67,"y":21},{"x":20,"y":147},{"x":-46,"y":39},{"x":146,"y":77},{"x":-14,"y":48},{"x":35,"y":32}],"type":"coastline"},{"arc":[{"x":94277,"y":70012},{"x":25,"y":-69},{"x":89,"y":-59},{"x":-22,"y":-106},{"x":52,"y":54},{"x":51,"y":3},{"x":41,"y":-49},{"x":36,"y":12},{"x":-18,"y":-34},{"x":-42,"y":-5},{"x":9,"y":-19},{"x":47,"y":21},{"x":16,"y":-25},{"x":-45,"y":-25},{"x":52,"y":-14},{"x":11,"y":-75},{"x":-31,"y":-57},{"x":25,"y":18},{"x":17,"y":-38},{"x":-31,"y":-14},{"x":-12,"y":29},{"x":-131,"y":-120},{"x":-54,"y":-186},{"x":-63,"y":74},{"x":33,"y":29},{"x":-20,"y":72},{"x":-59,"y":-8},{"x":1,"y":47},{"x":-61,"y":-40},{"x":-17,"y":-55},{"x":90,"y":-89},{"x":-31,"y":-160},{"x":29,"y":4},{"x":35,"y":-62},{"x":66,"y":132},{"x":72,"y":-36},{"x":198,"y":169},{"x":-2,"y":59},{"x":30,"y":32},{"x":34,"y":-10},{"x":8,"y":94},{"x":56,"y":7},{"x":-16,"y":-49},{"x":73,"y":-23},{"x":74,"y":-126},{"x":-146,"y":-123},{"x":-30,"y":14},{"x":27,"y":-57},{"x":141,"y":65},{"x":58,"y":89},{"x":30,"y":-18},{"x":-11,"y":-44},{"x":44,"y":26},{"x":-16,"y":20},{"x":54,"y":-15},{"x":-46,"y":-28},{"x":-5,"y":-51},{"x":10,"y":-36},{"x":62,"y":7},{"x":-74,"y":-23},{"x":-2,"y":-40},{"x":2,"y":-76},{"x":49,"y":-13},{"x":-28,"y":0},{"x":6,"y":-31},{"x":-32,"y":18},{"x":-45,"y":-28},{"x":-24,"y":-87},{"x":63,"y":-37},{"x":-64,"y":-41},{"x":31,"y":-28},{"x":60,"y":41},{"x":120,"y":176},{"x":-22,"y":-77},{"x":49,"y":6},{"x":-48,"y":-54},{"x":60,"y":-25},{"x":-61,"y":10},{"x":-23,"y":-49},{"x":2,"y":34},{"x":-15,"y":-15},{"x":4,"y":-81},{"x":-46,"y":-45},{"x":29,"y":-111},{"x":-61,"y":-16},{"x":22,"y":-25},{"x":-28,"y":-47},{"x":-65,"y":-2},{"x":7,"y":-72},{"x":36,"y":30},{"x":30,"y":-14},{"x":-22,"y":-57},{"x":25,"y":-36},{"x":-51,"y":-26},{"x":-31,"y":27},{"x":-31,"y":-16},{"x":23,"y":-64},{"x":-75,"y":-187},{"x":40,"y":21},{"x":27,"y":-36},{"x":30,"y":18},{"x":-30,"y":-29},{"x":25,"y":2},{"x":1,"y":-55},{"x":-68,"y":-88},{"x":-111,"y":-42},{"x":-69,"y":-63},{"x":63,"y":-60},{"x":92,"y":15},{"x":14,"y":-37},{"x":-62,"y":-90},{"x":-112,"y":-57},{"x":-72,"y":-140},{"x":-53,"y":-7},{"x":-91,"y":-169},{"x":16,"y":-105},{"x":81,"y":-32},{"x":-46,"y":-44},{"x":7,"y":-62},{"x":67,"y":-6},{"x":32,"y":59},{"x":40,"y":-21},{"x":-10,"y":-24},{"x":11,"y":24},{"x":43,"y":-35},{"x":74,"y":-165},{"x":-24,"y":-26},{"x":89,"y":-84},{"x":-31,"y":-42},{"x":-38,"y":17},{"x":28,"y":-27},{"x":-27,"y":-7},{"x":-6,"y":32},{"x":-21,"y":-35},{"x":-84,"y":33},{"x":25,"y":15},{"x":-30,"y":58},{"x":-60,"y":4},{"x":-77,"y":-136},{"x":17,"y":-40},{"x":-30,"y":-20},{"x":-84,"y":70},{"x":-49,"y":-17},{"x":-9,"y":-38},{"x":69,"y":-15},{"x":5,"y":-49},{"x":-34,"y":-49},{"x":-85,"y":-11},{"x":4,"y":-33},{"x":67,"y":-25},{"x":-8,"y":-72},{"x":163,"y":61},{"x":25,"y":-34},{"x":-14,"y":28},{"x":60,"y":-24},{"x":16,"y":-40},{"x":-4,"y":-50},{"x":-37,"y":18},{"x":-15,"y":-19},{"x":22,"y":-38},{"x":-50,"y":1},{"x":8,"y":26},{"x":-23,"y":-45},{"x":-76,"y":2},{"x":-28,"y":-67},{"x":-77,"y":-6},{"x":-12,"y":-35},{"x":122,"y":-9},{"x":5,"y":54},{"x":150,"y":32},{"x":69,"y":91},{"x":38,"y":-175},{"x":110,"y":5},{"x":53,"y":70},{"x":14,"y":-59},{"x":51,"y":15},{"x":19,"y":-102},{"x":-149,"y":-23},{"x":-34,"y":30},{"x":-50,"y":-123},{"x":-44,"y":98},{"x":-130,"y":-40},{"x":-86,"y":-86},{"x":-12,"y":19},{"x":-11,"y":-51}],"type":"coastline"},{"arc":[{"x":90455,"y":55600},{"x":-29,"y":54},{"x":-83,"y":-26},{"x":57,"y":-55},{"x":55,"y":27}],"type":"coastline"},{"arc":[{"x":91049,"y":57587},{"x":-32,"y":47},{"x":-162,"y":50},{"x":-91,"y":-41},{"x":-18,"y":-43},{"x":21,"y":-44},{"x":79,"y":-29},{"x":70,"y":40},{"x":107,"y":-7},{"x":26,"y":27}],"type":"coastline"},{"arc":[{"x":90904,"y":58335},{"x":-30,"y":-87},{"x":30,"y":87},{"x":115,"y":38},{"x":59,"y":-35},{"x":-59,"y":36},{"x":-115,"y":-39}],"type":"coastline"},{"arc":[{"x":91118,"y":58393},{"x":-8,"y":23},{"x":-14,"y":-30},{"x":22,"y":7}],"type":"coastline"},{"arc":[{"x":91400,"y":58519},{"x":-96,"y":56},{"x":-30,"y":-13},{"x":-41,"y":-81},{"x":35,"y":-16},{"x":-48,"y":-98},{"x":15,"y":-38},{"x":61,"y":-16},{"x":104,"y":206}],"type":"coastline"},{"arc":[{"x":91535,"y":57569},{"x":-36,"y":47},{"x":-200,"y":94},{"x":11,"y":-22},{"x":-39,"y":15},{"x":6,"y":-35},{"x":-25,"y":-23},{"x":-8,"y":19},{"x":13,"y":-101},{"x":94,"y":-72},{"x":89,"y":-28},{"x":78,"y":32},{"x":17,"y":74}],"type":"coastline"},{"arc":[{"x":91582,"y":57018},{"x":-35,"y":64},{"x":-87,"y":1},{"x":76,"y":-98},{"x":33,"y":-1},{"x":13,"y":34}],"type":"coastline"},{"arc":[{"x":92271,"y":58070},{"x":-80,"y":135},{"x":22,"y":-106},{"x":-56,"y":-36},{"x":59,"y":-27},{"x":55,"y":34}],"type":"coastline"},{"arc":[{"x":93201,"y":58901},{"x":-62,"y":32},{"x":11,"y":-43},{"x":51,"y":11}],"type":"coastline"},{"arc":[{"x":93287,"y":55512},{"x":-78,"y":20},{"x":-41,"y":-16},{"x":24,"y":-31},{"x":-28,"y":21},{"x":28,"y":-22},{"x":95,"y":28}],"type":"coastline"},{"arc":[{"x":93429,"y":59472},{"x":-43,"y":-12},{"x":-143,"y":85},{"x":-51,"y":38},{"x":-30,"y":83},{"x":-111,"y":8},{"x":-82,"y":106},{"x":-90,"y":-9},{"x":-125,"y":81},{"x":50,"y":86},{"x":-3,"y":79},{"x":-21,"y":90},{"x":-76,"y":92}],"type":"area"},{"arc":[{"x":92704,"y":60199},{"x":-57,"y":15},{"x":-47,"y":-34},{"x":-106,"y":49},{"x":2,"y":-48},{"x":-102,"y":-11},{"x":21,"y":-125},{"x":-48,"y":-25},{"x":-2,"y":-60},{"x":-52,"y":-38},{"x":-86,"y":36},{"x":16,"y":-101},{"x":-78,"y":-73},{"x":4,"y":-150},{"x":-46,"y":-67},{"x":-123,"y":-13},{"x":-75,"y":-45},{"x":-95,"y":89},{"x":-31,"y":-88},{"x":-96,"y":-46},{"x":-84,"y":-8},{"x":-52,"y":35},{"x":-108,"y":-44},{"x":-128,"y":90},{"x":-25,"y":113},{"x":-53,"y":65},{"x":-54,"y":-1},{"x":-69,"y":-60},{"x":-138,"y":152},{"x":-129,"y":-10},{"x":2,"y":56},{"x":-56,"y":56},{"x":-108,"y":-101},{"x":60,"y":-33},{"x":-51,"y":-8},{"x":41,"y":-98},{"x":-75,"y":-77},{"x":-90,"y":69},{"x":-97,"y":9},{"x":-31,"y":44},{"x":-166,"y":52},{"x":-106,"y":115},{"x":-80,"y":3},{"x":-122,"y":127},{"x":-63,"y":-15},{"x":-61,"y":89},{"x":-66,"y":1}],"type":"area"},{"arc":[{"x":89794,"y":60085},{"x":-80,"y":-81},{"x":-46,"y":-6},{"x":-67,"y":-166},{"x":-124,"y":-70},{"x":39,"y":-108},{"x":48,"y":8},{"x":-62,"y":-50},{"x":-155,"y":22},{"x":-45,"y":57},{"x":-83,"y":31},{"x":-43,"y":75},{"x":-36,"y":-28},{"x":109,"y":-122},{"x":12,"y":-92},{"x":-83,"y":-25},{"x":-21,"y":-109}],"type":"area"},{"arc":[{"x":89157,"y":59421},{"x":99,"y":-188},{"x":-55,"y":-24},{"x":31,"y":-45},{"x":-102,"y":-182},{"x":22,"y":-29},{"x":-108,"y":-131},{"x":-69,"y":-14},{"x":-40,"y":-124},{"x":-102,"y":-40},{"x":-46,"y":9},{"x":-30,"y":-76},{"x":40,"y":-76},{"x":-57,"y":-61},{"x":66,"y":-25},{"x":80,"y":71},{"x":55,"y":-94},{"x":106,"y":-63},{"x":-23,"y":-145},{"x":107,"y":-73},{"x":-29,"y":-102},{"x":112,"y":-81},{"x":1,"y":-70},{"x":51,"y":-13},{"x":78,"y":-116},{"x":-6,"y":-48},{"x":38,"y":-22},{"x":7,"y":-110},{"x":159,"y":-170},{"x":-15,"y":-98},{"x":-71,"y":-100},{"x":80,"y":-129},{"x":-21,"y":-51},{"x":42,"y":-220},{"x":-34,"y":0},{"x":-25,"y":-77},{"x":-38,"y":0},{"x":-39,"y":-44},{"x":8,"y":-113}],"type":"admin"},{"arc":[{"x":89429,"y":56547},{"x":77,"y":-75},{"x":18,"y":-66},{"x":-69,"y":-92},{"x":50,"y":-73},{"x":20,"y":-177},{"x":-65,"y":-47},{"x":-22,"y":-81},{"x":5,"y":-133},{"x":32,"y":-43},{"x":-48,"y":-181},{"x":24,"y":-46}],"type":"admin"},{"arc":[{"x":89451,"y":55533},{"x":139,"y":45},{"x":34,"y":39},{"x":78,"y":-34},{"x":10,"y":131},{"x":100,"y":168},{"x":-1,"y":39},{"x":-27,"y":-27},{"x":9,"y":55},{"x":40,"y":57},{"x":55,"y":13},{"x":-23,"y":40},{"x":-7,"y":-29},{"x":-33,"y":33},{"x":6,"y":156},{"x":75,"y":65},{"x":35,"y":-7},{"x":40,"y":-75},{"x":107,"y":229},{"x":63,"y":0},{"x":65,"y":79},{"x":99,"y":1},{"x":-9,"y":-66},{"x":-115,"y":-107},{"x":64,"y":-35},{"x":20,"y":-89},{"x":-37,"y":13},{"x":8,"y":-34},{"x":-66,"y":-58},{"x":34,"y":-11},{"x":76,"y":44},{"x":31,"y":48},{"x":-28,"y":45},{"x":77,"y":29},{"x":17,"y":-31},{"x":-25,"y":-12},{"x":62,"y":-33},{"x":20,"y":-50},{"x":-31,"y":3},{"x":3,"y":-67},{"x":-74,"y":-106},{"x":104,"y":-5},{"x":21,"y":-63},{"x":41,"y":-13},{"x":65,"y":113},{"x":-26,"y":46},{"x":110,"y":-3},{"x":-67,"y":121},{"x":57,"y":191},{"x":-29,"y":1},{"x":168,"y":110},{"x":46,"y":-8},{"x":-2,"y":-44},{"x":125,"y":16},{"x":41,"y":80},{"x":-40,"y":50},{"x":113,"y":199},{"x":110,"y":76},{"x":143,"y":-9},{"x":-95,"y":163},{"x":-75,"y":65},{"x":-65,"y":-22},{"x":-2,"y":-39},{"x":-75,"y":-40},{"x":-70,"y":43},{"x":4,"y":27},{"x":-38,"y":-29},{"x":-66,"y":24},{"x":-44,"y":115},{"x":13,"y":159},{"x":-31,"y":60},{"x":-59,"y":2},{"x":-95,"y":-62},{"x":87,"y":-35},{"x":-27,"y":-95},{"x":-87,"y":73},{"x":36,"y":39},{"x":-52,"y":1},{"x":-61,"y":61},{"x":-19,"y":176},{"x":70,"y":128},{"x":46,"y":-8},{"x":-23,"y":4},{"x":26,"y":19},{"x":23,"y":-27},{"x":23,"y":20},{"x":6,"y":94},{"x":-48,"y":5},{"x":26,"y":20},{"x":23,"y":-19},{"x":7,"y":35},{"x":-41,"y":180},{"x":54,"y":148},{"x":49,"y":43},{"x":-69,"y":42},{"x":-16,"y":-33},{"x":-30,"y":17},{"x":32,"y":95},{"x":27,"y":-67},{"x":15,"y":29},{"x":55,"y":-28},{"x":22,"y":41},{"x":-71,"y":36},{"x":26,"y":58},{"x":49,"y":-47},{"x":78,"y":42},{"x":-13,"y":99},{"x":36,"y":7},{"x":-20,"y":-15},{"x":42,"y":-77},{"x":92,"y":50},{"x":15,"y":-42},{"x":85,"y":28},{"x":3,"y":28},{"x":9,"y":-24},{"x":-17,"y":103},{"x":51,"y":-1},{"x":37,"y":-127},{"x":80,"y":160},{"x":-15,"y":55},{"x":30,"y":15},{"x":123,"y":-69},{"x":42,"y":56},{"x":68,"y":-17},{"x":-33,"y":-181},{"x":-39,"y":-37},{"x":-31,"y":34},{"x":-46,"y":-67},{"x":-60,"y":-242},{"x":-61,"y":-57},{"x":-137,"y":0},{"x":77,"y":-161},{"x":-25,"y":-46},{"x":95,"y":-62},{"x":16,"y":-58},{"x":8,"y":218},{"x":110,"y":241},{"x":137,"y":182},{"x":75,"y":32},{"x":-6,"y":28},{"x":10,"y":-32},{"x":39,"y":78},{"x":174,"y":56},{"x":10,"y":37},{"x":-8,"y":-28},{"x":-37,"y":30},{"x":11,"y":47},{"x":129,"y":158},{"x":193,"y":107},{"x":125,"y":28},{"x":20,"y":-26},{"x":9,"y":28},{"x":61,"y":9},{"x":124,"y":-42},{"x":25,"y":-36},{"x":-40,"y":-45},{"x":64,"y":32},{"x":-57,"y":-35},{"x":13,"y":-56},{"x":93,"y":-18},{"x":64,"y":45},{"x":120,"y":-57},{"x":19,"y":37},{"x":-57,"y":15},{"x":-18,"y":67},{"x":36,"y":71},{"x":95,"y":62},{"x":144,"y":38},{"x":92,"y":10},{"x":92,"y":-38},{"x":-66,"y":82},{"x":56,"y":183},{"x":64,"y":83},{"x":92,"y":49},{"x":97,"y":12},{"x":18,"y":-23},{"x":-34,"y":-2},{"x":75,"y":-18},{"x":-6,"y":146}],"type":"coastline"},{"arc":[{"x":93661,"y":59050},{"x":-14,"y":63},{"x":-167,"y":99},{"x":35,"y":-113},{"x":63,"y":-1},{"x":-21,"y":-20},{"x":82,"y":-52},{"x":22,"y":24}],"type":"coastline"},{"arc":[{"x":93673,"y":58663},{"x":1,"y":52},{"x":-44,"y":15},{"x":-76,"y":-84},{"x":-57,"y":11},{"x":32,"y":-11},{"x":-19,"y":-24},{"x":-25,"y":16},{"x":18,"y":-26},{"x":-29,"y":-3},{"x":6,"y":27},{"x":-7,"y":-30},{"x":-67,"y":-25},{"x":48,"y":-135},{"x":47,"y":-44},{"x":138,"y":16},{"x":-18,"y":163},{"x":56,"y":26},{"x":-4,"y":56}],"type":"coastline"},{"arc":[{"x":96848,"y":56106},{"x":-106,"y":-59},{"x":38,"y":-52},{"x":69,"y":41},{"x":-1,"y":70}],"type":"coastline"},{"arc":[{"x":92550,"y":63146},{"x":-91,"y":-35},{"x":28,"y":-21},{"x":63,"y":56}],"type":"coastline"},{"arc":[{"x":92638,"y":63190},{"x":-16,"y":19},{"x":-5,"y":-55},{"x":6,"y":55},{"x":15,"y":-19}],"type":"coastline"},{"arc":[{"x":92869,"y":62866},{"x":-23,"y":-1},{"x":11,"y":-58},{"x":12,"y":59}],"type":"coastline"},{"arc":[{"x":93123,"y":63321},{"x":-337,"y":51},{"x":-13,"y":-76},{"x":348,"y":-59},{"x":2,"y":84}],"type":"coastline"},{"arc":[{"x":93544,"y":60379},{"x":-25,"y":-79},{"x":26,"y":73},{"x":26,"y":-12},{"x":-27,"y":18}],"type":"coastline"},{"arc":[{"x":93995,"y":61550},{"x":-50,"y":43},{"x":61,"y":140},{"x":-101,"y":100},{"x":18,"y":44},{"x":-109,"y":-225},{"x":43,"y":-58},{"x":-27,"y":-17},{"x":-33,"y":66},{"x":-21,"y":-10},{"x":67,"y":-75},{"x":24,"y":-228},{"x":-2,"y":27},{"x":52,"y":0},{"x":0,"y":-53},{"x":53,"y":0},{"x":0,"y":175},{"x":89,"y":206},{"x":-64,"y":-135}],"type":"coastline"},{"arc":[{"x":90845,"y":64494},{"x":-114,"y":-59},{"x":-76,"y":3},{"x":-131,"y":-47},{"x":-66,"y":17},{"x":-131,"y":119},{"x":-137,"y":-10},{"x":-194,"y":-173},{"x":-42,"y":27},{"x":-73,"y":-11},{"x":-79,"y":66},{"x":-11,"y":-338},{"x":-40,"y":-43},{"x":57,"y":-160},{"x":-28,"y":-64},{"x":26,"y":-46},{"x":-20,"y":-139},{"x":45,"y":-83},{"x":0,"y":-164},{"x":86,"y":-65},{"x":-2,"y":-49},{"x":-57,"y":-30},{"x":-36,"y":-83},{"x":30,"y":-103},{"x":-49,"y":-197},{"x":-184,"y":-210}],"type":"admin"},{"arc":[{"x":89619,"y":62652},{"x":75,"y":-21},{"x":35,"y":-72},{"x":94,"y":18},{"x":38,"y":-40},{"x":117,"y":-31},{"x":68,"y":15},{"x":184,"y":-102},{"x":80,"y":28},{"x":244,"y":-40},{"x":22,"y":-51},{"x":77,"y":-1},{"x":57,"y":-66},{"x":72,"y":-3},{"x":39,"y":-39},{"x":212,"y":80},{"x":40,"y":-46},{"x":-47,"y":-69},{"x":52,"y":-25},{"x":76,"y":22},{"x":27,"y":-65},{"x":45,"y":-18},{"x":116,"y":56},{"x":203,"y":-116},{"x":87,"y":28},{"x":69,"y":-54},{"x":269,"y":-34},{"x":3,"y":-94},{"x":-107,"y":-83},{"x":-32,"y":-185},{"x":42,"y":1},{"x":88,"y":-120},{"x":130,"y":-1},{"x":24,"y":-26},{"x":134,"y":-23},{"x":77,"y":26},{"x":62,"y":-48},{"x":-6,"y":-48},{"x":59,"y":-46},{"x":11,"y":-94},{"x":-39,"y":-45},{"x":-51,"y":11},{"x":-70,"y":-81},{"x":9,"y":-153},{"x":34,"y":-136},{"x":308,"y":-158},{"x":-1,"y":-59},{"x":58,"y":-39},{"x":-14,"y":-57},{"x":99,"y":-47},{"x":-23,"y":-130},{"x":-92,"y":-75},{"x":31,"y":-97}],"type":"area"},{"arc":[{"x":93429,"y":59472},{"x":24,"y":161},{"x":-44,"y":37},{"x":10,"y":-19},{"x":-56,"y":11},{"x":-38,"y":108},{"x":53,"y":395},{"x":165,"y":247},{"x":83,"y":-46},{"x":-22,"y":34},{"x":27,"y":26},{"x":63,"y":-22},{"x":-19,"y":38},{"x":36,"y":9},{"x":52,"y":111},{"x":76,"y":25},{"x":-6,"y":-26},{"x":52,"y":-6},{"x":-26,"y":48},{"x":46,"y":98},{"x":-3,"y":106},{"x":-40,"y":65},{"x":12,"y":53},{"x":-29,"y":25},{"x":14,"y":-23},{"x":-32,"y":-10},{"x":14,"y":26},{"x":-24,"y":1},{"x":-13,"y":29},{"x":-8,"y":-20},{"x":0,"y":18},{"x":20,"y":14},{"x":-27,"y":11},{"x":69,"y":13},{"x":-22,"y":-1},{"x":0,"y":103},{"x":67,"y":-1},{"x":1,"y":-100},{"x":0,"y":100},{"x":58,"y":0},{"x":36,"y":134},{"x":-80,"y":-7},{"x":-9,"y":-68},{"x":-54,"y":0},{"x":0,"y":68},{"x":-46,"y":0},{"x":-30,"y":-128},{"x":-28,"y":-7},{"x":-11,"y":35},{"x":-9,"y":-19},{"x":60,"y":170},{"x":67,"y":17},{"x":-27,"y":247},{"x":-22,"y":33},{"x":5,"y":-53},{"x":-64,"y":94},{"x":-61,"y":-11},{"x":15,"y":-58},{"x":-33,"y":-25},{"x":6,"y":81},{"x":-117,"y":-15},{"x":-117,"y":-143},{"x":9,"y":-157},{"x":-53,"y":-107},{"x":24,"y":156},{"x":-24,"y":7},{"x":-73,"y":-235},{"x":95,"y":-67},{"x":-98,"y":30},{"x":-41,"y":-50},{"x":58,"y":237},{"x":-54,"y":-15},{"x":64,"y":36},{"x":12,"y":53},{"x":-47,"y":-22},{"x":6,"y":20},{"x":51,"y":25},{"x":24,"y":94},{"x":55,"y":46},{"x":-93,"y":12},{"x":-71,"y":-39},{"x":4,"y":-42},{"x":-6,"y":49},{"x":12,"y":34},{"x":38,"y":30},{"x":123,"y":-24},{"x":99,"y":119},{"x":41,"y":-10},{"x":-31,"y":24},{"x":151,"y":6},{"x":94,"y":246},{"x":-53,"y":45},{"x":-43,"y":-98},{"x":-42,"y":17},{"x":73,"y":142},{"x":-43,"y":6},{"x":-79,"y":-157},{"x":-41,"y":-8},{"x":13,"y":28},{"x":-28,"y":11},{"x":26,"y":29},{"x":20,"y":-17},{"x":43,"y":76},{"x":-26,"y":6},{"x":28,"y":-3},{"x":24,"y":54},{"x":-62,"y":68},{"x":10,"y":-18},{"x":-42,"y":-9},{"x":7,"y":75},{"x":-70,"y":-121},{"x":13,"y":-33},{"x":-26,"y":-2},{"x":-30,"y":57},{"x":68,"y":108},{"x":-55,"y":41},{"x":-1,"y":-70},{"x":-64,"y":-50},{"x":40,"y":128},{"x":-49,"y":-49},{"x":-8,"y":29},{"x":43,"y":25},{"x":19,"y":72},{"x":-32,"y":-21},{"x":63,"y":152},{"x":91,"y":81},{"x":298,"y":119},{"x":91,"y":119},{"x":-10,"y":24},{"x":145,"y":-12},{"x":-45,"y":97},{"x":45,"y":131},{"x":-40,"y":-56},{"x":-3,"y":32},{"x":116,"y":102},{"x":-20,"y":48},{"x":-36,"y":-58},{"x":-22,"y":48},{"x":36,"y":30},{"x":-30,"y":72},{"x":-22,"y":-21},{"x":-3,"y":50},{"x":-90,"y":-44},{"x":-69,"y":30},{"x":-12,"y":-91},{"x":-70,"y":-19},{"x":-34,"y":23},{"x":-58,"y":-78},{"x":-28,"y":9},{"x":18,"y":35},{"x":-37,"y":73},{"x":-36,"y":-21},{"x":-10,"y":-67},{"x":-50,"y":-21},{"x":-51,"y":27},{"x":-20,"y":-53},{"x":50,"y":-14},{"x":-18,"y":-24},{"x":-23,"y":31},{"x":-29,"y":-82},{"x":-51,"y":16},{"x":-29,"y":121},{"x":-148,"y":-33},{"x":-8,"y":18},{"x":-13,"y":-24},{"x":14,"y":-45},{"x":94,"y":9},{"x":5,"y":-36},{"x":-52,"y":-9},{"x":35,"y":-17},{"x":-178,"y":-34},{"x":35,"y":46},{"x":-9,"y":81},{"x":-159,"y":-44},{"x":36,"y":-52},{"x":-36,"y":10},{"x":-95,"y":-53},{"x":32,"y":-25},{"x":-25,"y":-15},{"x":-14,"y":29},{"x":-27,"y":-8},{"x":4,"y":34},{"x":15,"y":19},{"x":68,"y":42},{"x":-74,"y":-46},{"x":-11,"y":-20},{"x":-4,"y":-42},{"x":-27,"y":-7},{"x":44,"y":-125},{"x":-89,"y":-29},{"x":-70,"y":32},{"x":32,"y":124},{"x":-33,"y":-123},{"x":-115,"y":45},{"x":22,"y":102},{"x":-27,"y":-102},{"x":23,"y":104},{"x":-32,"y":31},{"x":33,"y":18},{"x":71,"y":200},{"x":-93,"y":38},{"x":-31,"y":-91},{"x":-55,"y":23},{"x":-7,"y":36},{"x":10,"y":-54},{"x":52,"y":-5},{"x":32,"y":-68},{"x":-80,"y":52},{"x":-47,"y":-118},{"x":-50,"y":8},{"x":-58,"y":-30},{"x":91,"y":66},{"x":4,"y":66},{"x":-39,"y":-49},{"x":-11,"y":46},{"x":-83,"y":11},{"x":-71,"y":-86},{"x":11,"y":72},{"x":-51,"y":-15},{"x":79,"y":109},{"x":43,"y":-20},{"x":-43,"y":21},{"x":-6,"y":-7},{"x":-86,"y":42},{"x":-102,"y":-132},{"x":-87,"y":27},{"x":-40,"y":31},{"x":48,"y":0},{"x":-35,"y":10},{"x":58,"y":28},{"x":-43,"y":46},{"x":-142,"y":-41},{"x":-21,"y":63},{"x":-185,"y":48},{"x":-63,"y":35},{"x":1,"y":29},{"x":-21,"y":-10},{"x":17,"y":15},{"x":-28,"y":-16},{"x":-93,"y":45},{"x":1,"y":119},{"x":-45,"y":-45},{"x":5,"y":29},{"x":-126,"y":44},{"x":20,"y":42},{"x":-21,"y":-32},{"x":-124,"y":46},{"x":-114,"y":108},{"x":-116,"y":19},{"x":-18,"y":14},{"x":41,"y":12},{"x":-33,"y":-10},{"x":-2,"y":30},{"x":-78,"y":55},{"x":-25,"y":-16},{"x":-64,"y":111},{"x":67,"y":1},{"x":0,"y":42},{"x":-59,"y":6},{"x":16,"y":19},{"x":106,"y":-13},{"x":-18,"y":76},{"x":-38,"y":-19},{"x":-4,"y":74},{"x":47,"y":-34},{"x":21,"y":12},{"x":-41,"y":24},{"x":-8,"y":57},{"x":16,"y":20},{"x":-33,"y":-13},{"x":10,"y":36},{"x":15,"y":1},{"x":14,"y":-30},{"x":-13,"y":32},{"x":-25,"y":-3},{"x":-76,"y":126},{"x":59,"y":183},{"x":-14,"y":-43},{"x":9,"y":50},{"x":-51,"y":3}],"type":"coastline"},{"arc":[{"x":94210,"y":61890},{"x":-50,"y":73},{"x":-9,"y":-56},{"x":39,"y":-50},{"x":20,"y":33}],"type":"coastline"},{"arc":[{"x":94493,"y":61584},{"x":-62,"y":54},{"x":-95,"y":16},{"x":134,"y":-98},{"x":23,"y":28}],"type":"coastline"},{"arc":[{"x":94533,"y":60790},{"x":-46,"y":46},{"x":33,"y":-75},{"x":13,"y":29}],"type":"coastline"},{"arc":[{"x":94663,"y":60898},{"x":-33,"y":12},{"x":7,"y":36},{"x":-14,"y":47},{"x":12,"y":-46},{"x":-83,"y":-26},{"x":-15,"y":46},{"x":9,"y":-55},{"x":96,"y":-41},{"x":21,"y":27}],"type":"coastline"},{"arc":[{"x":89619,"y":62652},{"x":-22,"y":-60},{"x":-263,"y":-124}],"type":"admin"},{"arc":[{"x":89334,"y":62468},{"x":-75,"y":-123},{"x":-5,"y":-80}],"type":"admin"},{"arc":[{"x":89254,"y":62265},{"x":33,"y":-78},{"x":-48,"y":-291},{"x":142,"y":-71},{"x":57,"y":-63},{"x":42,"y":8},{"x":53,"y":84},{"x":67,"y":-40},{"x":38,"y":-182},{"x":-44,"y":-78},{"x":-82,"y":4},{"x":-41,"y":-27},{"x":-10,"y":-119},{"x":95,"y":-42},{"x":66,"y":-156},{"x":-39,"y":-137},{"x":40,"y":-57},{"x":-43,"y":-110},{"x":73,"y":-129},{"x":-3,"y":-107},{"x":33,"y":-51},{"x":-28,"y":-61},{"x":74,"y":-66},{"x":-11,"y":-42},{"x":117,"y":-99},{"x":-47,"y":-108},{"x":-6,"y":-48},{"x":44,"y":-16},{"x":-50,"y":-52},{"x":18,"y":-46}],"type":"area"},{"arc":[{"x":89254,"y":62265},{"x":-29,"y":-42},{"x":-70,"y":21},{"x":-104,"y":-51},{"x":-202,"y":7},{"x":-42,"y":-42},{"x":-213,"y":-2},{"x":-32,"y":-61},{"x":6,"y":-124},{"x":-38,"y":-23},{"x":-107,"y":11},{"x":-172,"y":-202},{"x":-96,"y":68},{"x":50,"y":8},{"x":-10,"y":35},{"x":-102,"y":61},{"x":-33,"y":-24},{"x":-132,"y":62},{"x":-71,"y":-5},{"x":-94,"y":37},{"x":-139,"y":-111},{"x":-102,"y":67},{"x":12,"y":53},{"x":-37,"y":5},{"x":-29,"y":-151},{"x":-35,"y":-33},{"x":1,"y":-124},{"x":-38,"y":-30},{"x":-159,"y":11},{"x":-68,"y":259},{"x":-36,"y":-11},{"x":-28,"y":-102},{"x":-116,"y":-66},{"x":-166,"y":213},{"x":7,"y":46},{"x":-70,"y":140},{"x":-96,"y":-14},{"x":-19,"y":-61},{"x":-56,"y":-34},{"x":-147,"y":47},{"x":-61,"y":-69},{"x":-187,"y":-36},{"x":-52,"y":-52},{"x":-36,"y":17},{"x":-80,"y":-65},{"x":-48,"y":-106}],"type":"admin"},{"arc":[{"x":85978,"y":61792},{"x":24,"y":-152},{"x":73,"y":-14},{"x":16,"y":-92},{"x":73,"y":-116},{"x":6,"y":-165},{"x":81,"y":-60},{"x":-4,"y":-50},{"x":48,"y":-23},{"x":81,"y":-127},{"x":80,"y":-41},{"x":-25,"y":-79},{"x":33,"y":-79},{"x":-38,"y":-35},{"x":3,"y":-122},{"x":119,"y":-10},{"x":68,"y":-84},{"x":-69,"y":-10},{"x":-85,"y":-95},{"x":-153,"y":18},{"x":-44,"y":-46},{"x":-179,"y":-26},{"x":-14,"y":-41},{"x":-43,"y":40},{"x":-10,"y":-103},{"x":37,"y":-8},{"x":11,"y":-101},{"x":-47,"y":-142},{"x":60,"y":-91},{"x":2,"y":-201},{"x":-79,"y":-48},{"x":-24,"y":-70},{"x":-78,"y":-5},{"x":-84,"y":35},{"x":-25,"y":-124},{"x":-35,"y":-13},{"x":12,"y":-53},{"x":-38,"y":-46},{"x":-134,"y":-31},{"x":16,"y":-114},{"x":-131,"y":-157},{"x":-30,"y":-14},{"x":-112,"y":74},{"x":-93,"y":2},{"x":-47,"y":57},{"x":-77,"y":30},{"x":-107,"y":-77},{"x":37,"y":-54},{"x":-48,"y":-116},{"x":36,"y":-439},{"x":-29,"y":-109}],"type":"admin"},{"arc":[{"x":85012,"y":58465},{"x":-1,"y":-147},{"x":69,"y":111},{"x":-17,"y":76},{"x":87,"y":-39},{"x":-59,"y":-41},{"x":-58,"y":-133},{"x":57,"y":131},{"x":64,"y":-8},{"x":117,"y":120},{"x":62,"y":-30},{"x":144,"y":24},{"x":15,"y":24},{"x":268,"y":-103},{"x":37,"y":10},{"x":97,"y":-202},{"x":120,"y":78},{"x":119,"y":-196},{"x":74,"y":35},{"x":124,"y":-29},{"x":-9,"y":-137}],"type":"coastline"},{"arc":[{"x":86322,"y":58009},{"x":381,"y":-21},{"x":76,"y":-98},{"x":152,"y":-8},{"x":160,"y":304},{"x":74,"y":5},{"x":85,"y":-72},{"x":59,"y":27},{"x":-36,"y":94},{"x":62,"y":42},{"x":103,"y":-12},{"x":26,"y":39},{"x":-24,"y":52},{"x":-90,"y":10},{"x":26,"y":88},{"x":97,"y":48},{"x":74,"y":-11},{"x":44,"y":90},{"x":105,"y":6},{"x":41,"y":-29},{"x":28,"y":34},{"x":-28,"y":58},{"x":-186,"y":-17},{"x":-55,"y":48},{"x":10,"y":57},{"x":127,"y":-8},{"x":45,"y":37},{"x":39,"y":114},{"x":70,"y":-99},{"x":64,"y":5},{"x":38,"y":220},{"x":100,"y":41},{"x":96,"y":-97},{"x":43,"y":20},{"x":20,"y":59},{"x":-67,"y":97},{"x":48,"y":47},{"x":120,"y":26},{"x":-31,"y":135},{"x":58,"y":53},{"x":-31,"y":24},{"x":282,"y":48},{"x":461,"y":-8},{"x":125,"y":-46},{"x":44,"y":10}],"type":"admin"},{"arc":[{"x":89428,"y":55057},{"x":-32,"y":1},{"x":7,"y":-23},{"x":25,"y":22}],"type":"coastline"},{"arc":[{"x":89550,"y":55163},{"x":-72,"y":20},{"x":-10,"y":-68},{"x":68,"y":1},{"x":14,"y":47}],"type":"coastline"},{"arc":[{"x":89691,"y":53468},{"x":-61,"y":46},{"x":-6,"y":-53},{"x":67,"y":7}],"type":"coastline"},{"arc":[{"x":90149,"y":55023},{"x":-34,"y":31},{"x":-66,"y":-2},{"x":-49,"y":-27},{"x":-7,"y":-54},{"x":28,"y":-21},{"x":59,"y":45},{"x":14,"y":-25},{"x":14,"y":38},{"x":-9,"y":-62},{"x":50,"y":77}],"type":"coastline"},{"arc":[{"x":89429,"y":56547},{"x":-41,"y":10},{"x":-77,"y":-43},{"x":-59,"y":43},{"x":-165,"y":-16},{"x":-77,"y":-33},{"x":-35,"y":-57},{"x":-38,"y":24},{"x":0,"y":86},{"x":-61,"y":-47},{"x":-1,"y":-64},{"x":-81,"y":11},{"x":-86,"y":-30},{"x":-106,"y":-100},{"x":-79,"y":-13},{"x":-159,"y":53},{"x":-83,"y":-41},{"x":-73,"y":16},{"x":7,"y":-122},{"x":-122,"y":-83},{"x":-118,"y":-148},{"x":-21,"y":-92},{"x":-95,"y":-65},{"x":-48,"y":-113},{"x":-182,"y":-207},{"x":48,"y":-89},{"x":-81,"y":-351},{"x":-187,"y":-151},{"x":21,"y":-83},{"x":-257,"y":-151},{"x":-2,"y":-54},{"x":-36,"y":-27},{"x":17,"y":-134},{"x":-39,"y":-50},{"x":-160,"y":71},{"x":-63,"y":-7},{"x":-29,"y":55},{"x":-103,"y":-5},{"x":-35,"y":49},{"x":-107,"y":-7},{"x":24,"y":88},{"x":-80,"y":78}],"type":"area"},{"arc":[{"x":86560,"y":54748},{"x":-87,"y":-396},{"x":54,"y":-20},{"x":84,"y":-213},{"x":58,"y":-42},{"x":1,"y":-74},{"x":-35,"y":-43},{"x":107,"y":-161},{"x":125,"y":-3},{"x":39,"y":-52},{"x":89,"y":-25},{"x":92,"y":48},{"x":88,"y":-25},{"x":28,"y":30},{"x":87,"y":6},{"x":146,"y":-187},{"x":109,"y":-94},{"x":158,"y":-80},{"x":48,"y":-73},{"x":400,"y":138},{"x":70,"y":111}],"type":"admin"},{"arc":[{"x":88221,"y":53593},{"x":-60,"y":45},{"x":3,"y":25},{"x":27,"y":-43},{"x":11,"y":77},{"x":-54,"y":55},{"x":-25,"y":-18},{"x":25,"y":17},{"x":29,"y":-30},{"x":-42,"y":-35},{"x":-44,"y":46},{"x":-36,"y":-7},{"x":-16,"y":83},{"x":-10,"y":-60},{"x":-55,"y":14},{"x":6,"y":42},{"x":51,"y":1},{"x":-41,"y":20},{"x":-42,"y":-57},{"x":-27,"y":4},{"x":16,"y":60},{"x":-225,"y":121},{"x":0,"y":43},{"x":61,"y":13},{"x":-15,"y":75},{"x":95,"y":-55},{"x":24,"y":-120},{"x":74,"y":-27},{"x":-4,"y":63},{"x":57,"y":28},{"x":-3,"y":-28},{"x":54,"y":2},{"x":-54,"y":48},{"x":59,"y":-3},{"x":58,"y":58},{"x":27,"y":-64},{"x":-19,"y":-36},{"x":-24,"y":12},{"x":6,"y":-35},{"x":82,"y":-46},{"x":22,"y":41},{"x":-47,"y":22},{"x":65,"y":55},{"x":-44,"y":46},{"x":52,"y":-36},{"x":15,"y":29},{"x":30,"y":-43},{"x":45,"y":13},{"x":-33,"y":9},{"x":-1,"y":43},{"x":34,"y":4},{"x":24,"y":-45},{"x":26,"y":21},{"x":-24,"y":23},{"x":55,"y":0},{"x":23,"y":-32},{"x":50,"y":91},{"x":49,"y":-5},{"x":30,"y":41},{"x":-33,"y":45},{"x":48,"y":-33},{"x":53,"y":23},{"x":15,"y":-22},{"x":35,"y":6},{"x":-4,"y":43},{"x":50,"y":-49},{"x":1,"y":55},{"x":48,"y":-47},{"x":12,"y":23},{"x":40,"y":-17},{"x":8,"y":32},{"x":1,"y":-31},{"x":30,"y":9},{"x":-20,"y":-31},{"x":32,"y":22},{"x":-12,"y":-22},{"x":39,"y":-8},{"x":-8,"y":-30},{"x":-53,"y":19},{"x":1,"y":-47},{"x":-27,"y":-6},{"x":44,"y":-131},{"x":32,"y":3},{"x":26,"y":-40},{"x":-19,"y":-74},{"x":85,"y":-1},{"x":11,"y":63},{"x":21,"y":-99},{"x":26,"y":9},{"x":15,"y":-48},{"x":43,"y":5},{"x":29,"y":-92},{"x":45,"y":-12},{"x":0,"y":-40},{"x":25,"y":9},{"x":-14,"y":-62},{"x":88,"y":2},{"x":-30,"y":-27},{"x":29,"y":-25},{"x":74,"y":55},{"x":-17,"y":69},{"x":-41,"y":0},{"x":51,"y":72},{"x":35,"y":-13},{"x":17,"y":-63},{"x":79,"y":-36},{"x":52,"y":81},{"x":78,"y":19},{"x":-61,"y":51},{"x":39,"y":17},{"x":3,"y":39},{"x":-41,"y":49},{"x":-45,"y":0},{"x":-4,"y":-23},{"x":-56,"y":20},{"x":-59,"y":103},{"x":-189,"y":-33},{"x":79,"y":29},{"x":-61,"y":46},{"x":6,"y":38},{"x":36,"y":24},{"x":12,"y":-30},{"x":60,"y":35},{"x":-20,"y":45},{"x":102,"y":-14},{"x":36,"y":-36},{"x":4,"y":37},{"x":58,"y":-57},{"x":-50,"y":-73},{"x":49,"y":-70},{"x":44,"y":108},{"x":93,"y":-85},{"x":17,"y":54},{"x":133,"y":-93},{"x":80,"y":53},{"x":43,"y":-65},{"x":-9,"y":135},{"x":-56,"y":45},{"x":-45,"y":-3},{"x":-7,"y":53},{"x":66,"y":0},{"x":26,"y":-68},{"x":60,"y":0},{"x":4,"y":-70},{"x":27,"y":55},{"x":-55,"y":78},{"x":63,"y":-36},{"x":69,"y":32},{"x":33,"y":-60},{"x":46,"y":21},{"x":8,"y":-38},{"x":108,"y":38},{"x":22,"y":-43},{"x":2,"y":39},{"x":-63,"y":77},{"x":-44,"y":-9},{"x":8,"y":-25},{"x":-82,"y":98},{"x":8,"y":73},{"x":-94,"y":18},{"x":-116,"y":-49},{"x":63,"y":35},{"x":-4,"y":61},{"x":14,"y":-36},{"x":160,"y":6},{"x":12,"y":61},{"x":-46,"y":7},{"x":8,"y":24},{"x":74,"y":-35},{"x":52,"y":39},{"x":-57,"y":67},{"x":41,"y":44},{"x":-56,"y":19},{"x":-17,"y":48},{"x":39,"y":82},{"x":49,"y":15},{"x":-17,"y":22},{"x":-121,"y":-24},{"x":-77,"y":125},{"x":9,"y":92},{"x":-105,"y":-9},{"x":-65,"y":99},{"x":-72,"y":-62},{"x":-3,"y":-62},{"x":-96,"y":-73},{"x":-85,"y":12},{"x":-41,"y":-64},{"x":-73,"y":81},{"x":58,"y":19},{"x":-92,"y":44},{"x":55,"y":-16},{"x":15,"y":22},{"x":-52,"y":13},{"x":22,"y":21},{"x":62,"y":-32},{"x":39,"y":28},{"x":-11,"y":45},{"x":-73,"y":37},{"x":-46,"y":-30},{"x":-12,"y":-56},{"x":-51,"y":35},{"x":-18,"y":-24},{"x":34,"y":-21},{"x":-41,"y":16},{"x":7,"y":67},{"x":-29,"y":-58},{"x":-34,"y":69},{"x":15,"y":64},{"x":-91,"y":157},{"x":-1,"y":183},{"x":88,"y":147},{"x":43,"y":-40},{"x":90,"y":23}],"type":"coastline"},{"arc":[{"x":90379,"y":54305},{"x":-83,"y":64},{"x":-28,"y":-14},{"x":-15,"y":42},{"x":-70,"y":-102},{"x":-27,"y":5},{"x":23,"y":-101},{"x":29,"y":63},{"x":93,"y":-19},{"x":78,"y":62}],"type":"coastline"},{"arc":[{"x":90521,"y":53358},{"x":-6,"y":64},{"x":-63,"y":36},{"x":-63,"y":-19},{"x":1,"y":-40},{"x":-33,"y":-3},{"x":18,"y":-35},{"x":-23,"y":30},{"x":-11,"y":-16},{"x":0,"y":-57},{"x":92,"y":-124},{"x":24,"y":40},{"x":29,"y":-21},{"x":30,"y":33},{"x":-42,"y":59},{"x":47,"y":53}],"type":"coastline"},{"arc":[{"x":90609,"y":54022},{"x":-16,"y":17},{"x":-49,"y":-24},{"x":0,"y":-74},{"x":41,"y":10},{"x":24,"y":71}],"type":"coastline"},{"arc":[{"x":90725,"y":54434},{"x":-17,"y":39},{"x":-100,"y":-15},{"x":34,"y":-21},{"x":-23,"y":-31},{"x":-4,"y":31},{"x":3,"y":-42},{"x":79,"y":4},{"x":28,"y":35}],"type":"coastline"},{"arc":[{"x":90853,"y":54157},{"x":-30,"y":15},{"x":-50,"y":-47},{"x":-6,"y":35},{"x":-53,"y":-30},{"x":-59,"y":22},{"x":-5,"y":48},{"x":-94,"y":-33},{"x":12,"y":-50},{"x":-15,"y":20},{"x":16,"y":-23},{"x":42,"y":9},{"x":68,"y":-82},{"x":0,"y":30},{"x":73,"y":4},{"x":55,"y":57},{"x":37,"y":-30},{"x":9,"y":55}],"type":"coastline"},{"arc":[{"x":84594,"y":56979},{"x":-24,"y":8},{"x":-7,"y":-44},{"x":-42,"y":-10},{"x":39,"y":-44},{"x":43,"y":35},{"x":-9,"y":55}],"type":"coastline"},{"arc":[{"x":86322,"y":58009},{"x":63,"y":-531},{"x":86,"y":-30},{"x":54,"y":14},{"x":23,"y":-59},{"x":45,"y":3},{"x":106,"y":-146},{"x":97,"y":-67},{"x":67,"y":31},{"x":-1,"y":29},{"x":50,"y":-40},{"x":4,"y":-59},{"x":-104,"y":7},{"x":2,"y":-126},{"x":-80,"y":10},{"x":-177,"y":-73},{"x":-180,"y":-258},{"x":-54,"y":13},{"x":-97,"y":-170},{"x":-20,"y":10},{"x":16,"y":-19},{"x":-165,"y":-152},{"x":46,"y":-183},{"x":-130,"y":13},{"x":7,"y":34},{"x":-71,"y":45},{"x":-47,"y":-68},{"x":24,"y":91},{"x":-73,"y":40},{"x":-57,"y":-25},{"x":-36,"y":28},{"x":-37,"y":-12},{"x":-115,"y":111},{"x":-35,"y":-6},{"x":11,"y":30},{"x":-30,"y":-6},{"x":-31,"y":75},{"x":-153,"y":3},{"x":-53,"y":41},{"x":21,"y":-5},{"x":-18,"y":51},{"x":-3,"y":-36},{"x":-52,"y":39},{"x":-13,"y":-29},{"x":5,"y":17},{"x":-26,"y":-14},{"x":-32,"y":23},{"x":1,"y":-24},{"x":-10,"y":19},{"x":27,"y":28},{"x":-43,"y":-31},{"x":-33,"y":52},{"x":-107,"y":15},{"x":-5,"y":-23},{"x":-3,"y":44},{"x":-39,"y":10},{"x":-50,"y":-20},{"x":7,"y":108},{"x":-52,"y":46},{"x":-35,"y":-28},{"x":-26,"y":15},{"x":9,"y":46},{"x":24,"y":-5},{"x":-98,"y":80},{"x":-108,"y":1},{"x":24,"y":-23},{"x":-78,"y":-79},{"x":28,"y":6},{"x":-9,"y":-71}],"type":"coastline"},{"arc":[{"x":84583,"y":56819},{"x":52,"y":-418},{"x":87,"y":-48},{"x":-33,"y":-98},{"x":62,"y":-222},{"x":-7,"y":-112},{"x":128,"y":-98},{"x":-9,"y":-127},{"x":164,"y":-135}],"type":"admin"},{"arc":[{"x":85027,"y":55561},{"x":81,"y":-114},{"x":72,"y":0},{"x":-24,"y":-102},{"x":80,"y":-110},{"x":125,"y":-58},{"x":55,"y":23},{"x":116,"y":-106},{"x":150,"y":-338},{"x":145,"y":-49},{"x":22,"y":-86},{"x":163,"y":34},{"x":48,"y":94},{"x":-26,"y":99},{"x":77,"y":41},{"x":100,"y":-2},{"x":50,"y":-58},{"x":225,"y":-58},{"x":65,"y":15},{"x":9,"y":-38}],"type":"admin"},{"arc":[{"x":85720,"y":53515},{"x":-28,"y":31},{"x":-76,"y":-1},{"x":52,"y":-53},{"x":52,"y":23}],"type":"coastline"},{"arc":[{"x":86269,"y":53296},{"x":-21,"y":20},{"x":-14,"y":-22},{"x":35,"y":2}],"type":"coastline"},{"arc":[{"x":86272,"y":52611},{"x":-27,"y":9},{"x":4,"y":-41},{"x":23,"y":32}],"type":"coastline"},{"arc":[{"x":86352,"y":53417},{"x":-19,"y":115},{"x":-32,"y":38},{"x":2,"y":40},{"x":-24,"y":16},{"x":-86,"y":-20},{"x":-133,"y":17},{"x":-82,"y":-64},{"x":-123,"y":68},{"x":-89,"y":-16},{"x":14,"y":-54},{"x":-39,"y":7},{"x":-2,"y":-60},{"x":-30,"y":-7},{"x":18,"y":-51},{"x":37,"y":3},{"x":-46,"y":-49},{"x":63,"y":5},{"x":-20,"y":-38},{"x":71,"y":25},{"x":-21,"y":25},{"x":32,"y":14},{"x":54,"y":-25},{"x":37,"y":25},{"x":-13,"y":-50},{"x":-167,"y":-46},{"x":-74,"y":62},{"x":16,"y":20},{"x":-34,"y":-1},{"x":24,"y":29},{"x":-70,"y":-7},{"x":5,"y":56},{"x":-43,"y":25},{"x":-31,"y":-130},{"x":-82,"y":13},{"x":55,"y":-92},{"x":8,"y":30},{"x":20,"y":-26},{"x":31,"y":34},{"x":21,"y":-22},{"x":-24,"y":-114},{"x":59,"y":25},{"x":35,"y":-45},{"x":56,"y":77},{"x":49,"y":-27},{"x":-45,"y":-12},{"x":7,"y":-38},{"x":204,"y":-83},{"x":31,"y":19},{"x":-47,"y":119},{"x":25,"y":6},{"x":-10,"y":54},{"x":80,"y":-21},{"x":59,"y":-67},{"x":64,"y":6},{"x":31,"y":56},{"x":-102,"y":30},{"x":-2,"y":48},{"x":60,"y":-28},{"x":22,"y":36},{"x":50,"y":-33},{"x":-13,"y":127},{"x":50,"y":-66},{"x":-2,"y":-59},{"x":34,"y":-1},{"x":81,"y":82}],"type":"coastline"},{"arc":[{"x":86350,"y":52688},{"x":-26,"y":56},{"x":-54,"y":-13},{"x":29,"y":-53},{"x":-10,"y":44},{"x":29,"y":-4},{"x":4,"y":-66},{"x":28,"y":36}],"type":"coastline"},{"arc":[{"x":86431,"y":51663},{"x":-72,"y":54},{"x":-74,"y":-6},{"x":12,"y":-80},{"x":-63,"y":-27},{"x":89,"y":-255},{"x":1,"y":89},{"x":107,"y":225}],"type":"coastline"},{"arc":[{"x":86485,"y":52637},{"x":-32,"y":67},{"x":-2,"y":-34},{"x":-37,"y":12},{"x":3,"y":-38},{"x":35,"y":16},{"x":33,"y":-23}],"type":"coastline"},{"arc":[{"x":86534,"y":52610},{"x":-31,"y":2},{"x":20,"y":-20},{"x":11,"y":18}],"type":"coastline"},{"arc":[{"x":86539,"y":52399},{"x":-47,"y":21},{"x":-4,"y":-27},{"x":51,"y":6}],"type":"coastline"},{"arc":[{"x":86570,"y":52658},{"x":-33,"y":30},{"x":-52,"y":-3},{"x":85,"y":-27}],"type":"coastline"},{"arc":[{"x":86640,"y":51479},{"x":-27,"y":35},{"x":-36,"y":-6},{"x":63,"y":-29}],"type":"coastline"},{"arc":[{"x":86727,"y":50111},{"x":-6,"y":23},{"x":-45,"y":-7},{"x":62,"y":-49},{"x":-11,"y":33}],"type":"coastline"},{"arc":[{"x":86783,"y":52202},{"x":-45,"y":2},{"x":27,"y":-29},{"x":18,"y":27}],"type":"coastline"},{"arc":[{"x":86794,"y":50060},{"x":-23,"y":24},{"x":-46,"y":-57},{"x":59,"y":2},{"x":10,"y":31}],"type":"coastline"},{"arc":[{"x":86830,"y":52030},{"x":-87,"y":32},{"x":-10,"y":-33},{"x":34,"y":17},{"x":35,"y":-32},{"x":-87,"y":-25},{"x":-34,"y":21},{"x":33,"y":6},{"x":-24,"y":28},{"x":-132,"y":5},{"x":-42,"y":-91},{"x":69,"y":16},{"x":20,"y":40},{"x":-25,"y":6},{"x":34,"y":8},{"x":48,"y":-63},{"x":99,"y":-38},{"x":-9,"y":48},{"x":36,"y":-36},{"x":26,"y":14},{"x":16,"y":77}],"type":"coastline"},{"arc":[{"x":86849,"y":50104},{"x":-32,"y":-12},{"x":20,"y":-18},{"x":12,"y":30}],"type":"coastline"},{"arc":[{"x":86869,"y":52187},{"x":-82,"y":15},{"x":4,"y":-33},{"x":78,"y":18}],"type":"coastline"},{"arc":[{"x":86887,"y":52103},{"x":-103,"y":-15},{"x":79,"y":-17},{"x":24,"y":32}],"type":"coastline"},{"arc":[{"x":86964,"y":51969},{"x":-39,"y":47},{"x":6,"y":49},{"x":-20,"y":-96},{"x":53,"y":0}],"type":"coastline"},{"arc":[{"x":86954,"y":52100},{"x":-41,"y":26},{"x":-12,"y":-53},{"x":54,"y":3},{"x":-1,"y":24}],"type":"coastline"},{"arc":[{"x":87008,"y":50170},{"x":-46,"y":-11},{"x":16,"y":-23},{"x":30,"y":34}],"type":"coastline"},{"arc":[{"x":87015,"y":51929},{"x":-41,"y":15},{"x":-13,"y":-24},{"x":54,"y":9}],"type":"coastline"},{"arc":[{"x":87053,"y":51834},{"x":-53,"y":27},{"x":12,"y":-28},{"x":41,"y":1}],"type":"coastline"},{"arc":[{"x":87155,"y":51690},{"x":-40,"y":18},{"x":11,"y":27},{"x":-22,"y":-12},{"x":10,"y":-28},{"x":41,"y":-5}],"type":"coastline"},{"arc":[{"x":87155,"y":51754},{"x":-13,"y":20},{"x":-5,"y":-34},{"x":33,"y":-9},{"x":-15,"y":23}],"type":"coastline"},{"arc":[{"x":87208,"y":51766},{"x":-7,"y":39},{"x":-51,"y":1},{"x":9,"y":-38},{"x":32,"y":9},{"x":-17,"y":-26},{"x":34,"y":15}],"type":"coastline"},{"arc":[{"x":87490,"y":51803},{"x":-27,"y":22},{"x":-11,"y":-46},{"x":38,"y":24}],"type":"coastline"},{"arc":[{"x":87513,"y":51757},{"x":-34,"y":-4},{"x":0,"y":-34},{"x":34,"y":38}],"type":"coastline"},{"arc":[{"x":87547,"y":51815},{"x":-73,"y":16},{"x":33,"y":-52},{"x":40,"y":36}],"type":"coastline"},{"arc":[{"x":87616,"y":51853},{"x":-15,"y":28},{"x":-36,"y":-53},{"x":51,"y":25}],"type":"coastline"},{"arc":[{"x":87752,"y":51922},{"x":-13,"y":30},{"x":-14,"y":-64},{"x":27,"y":34}],"type":"coastline"},{"arc":[{"x":87753,"y":51843},{"x":-37,"y":1},{"x":-3,"y":-31},{"x":40,"y":30}],"type":"coastline"},{"arc":[{"x":87899,"y":51945},{"x":-21,"y":20},{"x":-6,"y":-28},{"x":27,"y":8}],"type":"coastline"},{"arc":[{"x":88705,"y":50819},{"x":-26,"y":1},{"x":46,"y":10},{"x":-20,"y":-11}],"type":"coastline"},{"arc":[{"x":85027,"y":55561},{"x":-45,"y":-125},{"x":-80,"y":-89},{"x":60,"y":-26},{"x":-9,"y":-103},{"x":-84,"y":-94},{"x":-39,"y":-159},{"x":86,"y":-63},{"x":-14,"y":-71}],"type":"area"},{"arc":[{"x":84902,"y":54831},{"x":84,"y":-38},{"x":155,"y":7},{"x":165,"y":-166},{"x":-8,"y":-50},{"x":66,"y":-104},{"x":86,"y":-19},{"x":79,"y":-70},{"x":82,"y":-140},{"x":-55,"y":-85},{"x":30,"y":-7},{"x":-3,"y":-67},{"x":-88,"y":-76},{"x":-51,"y":-2},{"x":82,"y":-41},{"x":-77,"y":-22},{"x":10,"y":-29},{"x":-96,"y":-7},{"x":-33,"y":-58},{"x":17,"y":-29},{"x":112,"y":11},{"x":35,"y":33},{"x":21,"y":-44},{"x":18,"y":20},{"x":-29,"y":29},{"x":48,"y":83},{"x":44,"y":-53},{"x":-17,"y":-25},{"x":55,"y":-35},{"x":-22,"y":-55},{"x":-11,"y":34},{"x":-32,"y":-8},{"x":69,"y":-64},{"x":-19,"y":-104},{"x":34,"y":-2},{"x":-14,"y":26},{"x":39,"y":45},{"x":-11,"y":-48},{"x":36,"y":-2},{"x":23,"y":52},{"x":-5,"y":-61},{"x":47,"y":-8},{"x":4,"y":-32},{"x":90,"y":16},{"x":105,"y":-65},{"x":78,"y":63},{"x":135,"y":-20},{"x":71,"y":35},{"x":60,"y":-39},{"x":-6,"y":-39},{"x":59,"y":-35},{"x":-15,"y":-95},{"x":38,"y":-34},{"x":-66,"y":-54},{"x":10,"y":-41},{"x":38,"y":-8},{"x":11,"y":25},{"x":9,"y":-19},{"x":-34,"y":-48},{"x":-113,"y":-53},{"x":35,"y":-44},{"x":46,"y":0},{"x":-38,"y":-42},{"x":-95,"y":37},{"x":-22,"y":-31},{"x":37,"y":-50},{"x":6,"y":23},{"x":72,"y":-10},{"x":3,"y":-55},{"x":57,"y":7},{"x":32,"y":64},{"x":43,"y":-10},{"x":-41,"y":-41},{"x":76,"y":-9},{"x":11,"y":61},{"x":35,"y":0},{"x":-12,"y":-43},{"x":26,"y":21},{"x":36,"y":-18},{"x":-32,"y":-4},{"x":9,"y":-55},{"x":46,"y":6},{"x":-14,"y":-32},{"x":-60,"y":12},{"x":17,"y":-31},{"x":45,"y":-4},{"x":-17,"y":-45},{"x":-33,"y":33},{"x":-11,"y":-24},{"x":40,"y":-31},{"x":-33,"y":-18},{"x":-25,"y":41},{"x":-87,"y":21},{"x":-50,"y":-39},{"x":-35,"y":59},{"x":-117,"y":9},{"x":-34,"y":-20},{"x":15,"y":-67},{"x":-48,"y":87},{"x":-33,"y":8},{"x":15,"y":-62},{"x":-44,"y":-48},{"x":41,"y":-41},{"x":-34,"y":-111},{"x":59,"y":-32},{"x":-15,"y":-27},{"x":-56,"y":32},{"x":-55,"y":-16},{"x":-52,"y":-49},{"x":88,"y":-11},{"x":25,"y":-38},{"x":80,"y":-17},{"x":35,"y":25},{"x":76,"y":-30},{"x":-29,"y":50},{"x":-11,"y":-23},{"x":-38,"y":20},{"x":23,"y":13},{"x":-37,"y":-1},{"x":25,"y":4},{"x":-23,"y":22},{"x":41,"y":-1},{"x":-19,"y":14},{"x":37,"y":47},{"x":-37,"y":41},{"x":62,"y":-19},{"x":3,"y":60},{"x":2,"y":-30},{"x":61,"y":7},{"x":-50,"y":45},{"x":24,"y":73},{"x":50,"y":-2},{"x":-16,"y":-57},{"x":30,"y":1},{"x":21,"y":-71},{"x":13,"y":19},{"x":75,"y":-58},{"x":32,"y":27},{"x":-1,"y":-22},{"x":40,"y":5},{"x":2,"y":25},{"x":29,"y":-36},{"x":-39,"y":-7},{"x":32,"y":2},{"x":36,"y":-43},{"x":-70,"y":-26},{"x":43,"y":0},{"x":-21,"y":-31},{"x":32,"y":-35},{"x":40,"y":27},{"x":6,"y":-82},{"x":-27,"y":-24},{"x":46,"y":12},{"x":-42,"y":-85},{"x":-28,"y":21},{"x":4,"y":-54},{"x":82,"y":36},{"x":-30,"y":11},{"x":11,"y":24},{"x":71,"y":-10},{"x":6,"y":33},{"x":-45,"y":2},{"x":40,"y":9},{"x":-5,"y":25},{"x":27,"y":-18},{"x":-23,"y":22},{"x":27,"y":-10},{"x":1,"y":41},{"x":17,"y":-41},{"x":28,"y":17},{"x":26,"y":-20},{"x":12,"y":47},{"x":26,"y":-35},{"x":-22,"y":-29},{"x":41,"y":-37},{"x":48,"y":2},{"x":37,"y":48},{"x":31,"y":-21},{"x":-24,"y":-25},{"x":151,"y":-38},{"x":4,"y":-32},{"x":-80,"y":31},{"x":-152,"y":-5},{"x":10,"y":-23},{"x":-40,"y":7},{"x":-45,"y":-77},{"x":-38,"y":3},{"x":60,"y":-50},{"x":8,"y":18},{"x":15,"y":-43},{"x":36,"y":34},{"x":45,"y":-14},{"x":-2,"y":33},{"x":15,"y":-33},{"x":101,"y":12},{"x":-75,"y":-53},{"x":-9,"y":20},{"x":-40,"y":-13},{"x":5,"y":-32},{"x":34,"y":0},{"x":-39,"y":-57},{"x":27,"y":3},{"x":7,"y":-33},{"x":91,"y":63},{"x":38,"y":-22},{"x":34,"y":69},{"x":-23,"y":-80},{"x":-82,"y":-13},{"x":-43,"y":-55},{"x":39,"y":-7},{"x":1,"y":-103},{"x":50,"y":32},{"x":-20,"y":-78},{"x":-24,"y":2},{"x":53,"y":-38},{"x":-32,"y":11},{"x":22,"y":-52},{"x":36,"y":4},{"x":-73,"y":-60},{"x":33,"y":-49},{"x":35,"y":-2},{"x":-28,"y":67},{"x":19,"y":-22},{"x":23,"y":17},{"x":-25,"y":-34},{"x":37,"y":-11},{"x":49,"y":109},{"x":152,"y":-14},{"x":-55,"y":-36},{"x":18,"y":-47},{"x":31,"y":29},{"x":6,"y":-28},{"x":37,"y":43},{"x":-19,"y":40},{"x":72,"y":4},{"x":27,"y":-31},{"x":-5,"y":32},{"x":59,"y":4},{"x":-32,"y":44},{"x":24,"y":18},{"x":37,"y":-54},{"x":12,"y":23},{"x":32,"y":-11},{"x":-33,"y":38},{"x":54,"y":0},{"x":7,"y":-27},{"x":57,"y":71},{"x":-58,"y":-39},{"x":-73,"y":28},{"x":48,"y":16},{"x":5,"y":59},{"x":50,"y":26},{"x":5,"y":-42},{"x":61,"y":-5},{"x":3,"y":25},{"x":29,"y":-11},{"x":-19,"y":-27},{"x":50,"y":25},{"x":-16,"y":-34},{"x":30,"y":2},{"x":27,"y":34},{"x":-36,"y":22},{"x":162,"y":72},{"x":36,"y":51},{"x":-40,"y":67},{"x":21,"y":56},{"x":33,"y":-100},{"x":25,"y":19},{"x":-42,"y":-115},{"x":-71,"y":-46},{"x":7,"y":-33},{"x":60,"y":-27},{"x":-39,"y":-38},{"x":16,"y":-30},{"x":44,"y":12},{"x":106,"y":-114},{"x":81,"y":9},{"x":-30,"y":89},{"x":23,"y":11},{"x":41,"y":-32},{"x":88,"y":-3},{"x":135,"y":38},{"x":31,"y":-19},{"x":-28,"y":19},{"x":22,"y":7},{"x":75,"y":-70},{"x":67,"y":8},{"x":-20,"y":37},{"x":46,"y":27},{"x":-31,"y":37},{"x":41,"y":123},{"x":-60,"y":-56},{"x":-61,"y":10},{"x":54,"y":36},{"x":-14,"y":52},{"x":-43,"y":21},{"x":75,"y":96},{"x":-39,"y":-12},{"x":-102,"y":67},{"x":9,"y":62},{"x":56,"y":-29},{"x":27,"y":16},{"x":-34,"y":12},{"x":-4,"y":72},{"x":-29,"y":16},{"x":7,"y":23},{"x":66,"y":-8},{"x":-6,"y":72},{"x":60,"y":14},{"x":40,"y":64},{"x":45,"y":17},{"x":50,"y":-29},{"x":73,"y":65},{"x":-85,"y":38},{"x":-30,"y":66},{"x":-43,"y":-40},{"x":24,"y":-51},{"x":-16,"y":22},{"x":-143,"y":-22},{"x":-25,"y":-12},{"x":41,"y":-20},{"x":-42,"y":-14},{"x":-39,"y":48},{"x":-83,"y":27},{"x":15,"y":71},{"x":65,"y":-1},{"x":-1,"y":80},{"x":-97,"y":-29},{"x":27,"y":28},{"x":-65,"y":49},{"x":7,"y":91},{"x":28,"y":86},{"x":27,"y":-21},{"x":23,"y":55},{"x":7,"y":-22},{"x":46,"y":26},{"x":-28,"y":30},{"x":79,"y":85},{"x":-12,"y":76},{"x":-95,"y":80},{"x":-14,"y":-17},{"x":2,"y":62},{"x":11,"y":20},{"x":37,"y":-18},{"x":27,"y":37},{"x":88,"y":-1},{"x":11,"y":58},{"x":-37,"y":64},{"x":-90,"y":-23},{"x":-68,"y":36},{"x":-113,"y":-19}],"type":"coastline"},{"arc":[{"x":88800,"y":53489},{"x":-44,"y":59},{"x":-28,"y":-55},{"x":54,"y":-34},{"x":18,"y":30}],"type":"coastline"},{"arc":[{"x":88877,"y":51747},{"x":-81,"y":36},{"x":-43,"y":-25},{"x":-58,"y":58},{"x":-2,"y":-74},{"x":-77,"y":70},{"x":-123,"y":-77},{"x":16,"y":42},{"x":-44,"y":29},{"x":-2,"y":-29},{"x":-83,"y":92},{"x":-80,"y":-191},{"x":-83,"y":3},{"x":-36,"y":-37},{"x":-52,"y":23},{"x":22,"y":-66},{"x":-66,"y":-121},{"x":36,"y":-1},{"x":6,"y":-50},{"x":-65,"y":16},{"x":-116,"y":126},{"x":-80,"y":-37},{"x":-23,"y":-210},{"x":-97,"y":92},{"x":-25,"y":-17},{"x":-49,"y":-118},{"x":77,"y":-17},{"x":-25,"y":-125},{"x":-8,"y":90},{"x":-30,"y":-22},{"x":-59,"y":31},{"x":23,"y":7},{"x":-21,"y":55},{"x":-24,"y":-13},{"x":15,"y":15},{"x":-72,"y":55},{"x":-96,"y":-26},{"x":-78,"y":-106},{"x":-89,"y":-21},{"x":-111,"y":-99},{"x":-151,"y":-68},{"x":1,"y":-81},{"x":-75,"y":-6},{"x":6,"y":-41},{"x":-88,"y":-36},{"x":-65,"y":-69},{"x":-96,"y":-226},{"x":-70,"y":-89},{"x":-39,"y":-183},{"x":72,"y":-61},{"x":51,"y":-109},{"x":64,"y":78},{"x":3,"y":-32},{"x":26,"y":36},{"x":18,"y":-20},{"x":-37,"y":-25},{"x":78,"y":24},{"x":37,"y":-37},{"x":51,"y":40},{"x":-46,"y":-2},{"x":5,"y":49},{"x":-104,"y":58},{"x":-47,"y":-38},{"x":36,"y":52},{"x":-63,"y":10},{"x":27,"y":91},{"x":-34,"y":65},{"x":25,"y":11},{"x":-31,"y":26},{"x":-13,"y":-20},{"x":-16,"y":36},{"x":62,"y":33},{"x":48,"y":-13},{"x":41,"y":38},{"x":34,"y":-46},{"x":-24,"y":-65},{"x":104,"y":-99},{"x":187,"y":14},{"x":-5,"y":30},{"x":23,"y":-18},{"x":8,"y":50},{"x":90,"y":63},{"x":-6,"y":102},{"x":-126,"y":99},{"x":23,"y":19},{"x":106,"y":-48},{"x":-69,"y":59},{"x":35,"y":55},{"x":28,"y":-23},{"x":-23,"y":-32},{"x":42,"y":-36},{"x":58,"y":35},{"x":18,"y":-134},{"x":55,"y":-38},{"x":15,"y":42},{"x":42,"y":9},{"x":44,"y":-67},{"x":24,"y":34},{"x":35,"y":-29},{"x":24,"y":30},{"x":45,"y":-17},{"x":-26,"y":62},{"x":49,"y":75},{"x":-13,"y":30},{"x":42,"y":-10},{"x":-5,"y":-38},{"x":65,"y":23},{"x":19,"y":134},{"x":-34,"y":14},{"x":26,"y":32},{"x":19,"y":-21},{"x":30,"y":20},{"x":24,"y":-66},{"x":42,"y":19},{"x":5,"y":-36},{"x":51,"y":27},{"x":-22,"y":-29},{"x":65,"y":-28},{"x":30,"y":40},{"x":65,"y":-6},{"x":6,"y":47},{"x":128,"y":-29},{"x":36,"y":25},{"x":23,"y":-43},{"x":31,"y":5},{"x":40,"y":32},{"x":-33,"y":99},{"x":50,"y":100},{"x":-31,"y":70},{"x":49,"y":44},{"x":-4,"y":133},{"x":105,"y":61},{"x":72,"y":-25},{"x":-7,"y":37},{"x":39,"y":-15},{"x":40,"y":48},{"x":-15,"y":58},{"x":-42,"y":19},{"x":-21,"y":-37},{"x":-58,"y":16},{"x":2,"y":-32},{"x":-7,"y":28},{"x":-95,"y":-41},{"x":-22,"y":81},{"x":76,"y":9},{"x":62,"y":52},{"x":105,"y":-56},{"x":-42,"y":48},{"x":10,"y":61},{"x":-40,"y":22},{"x":45,"y":-17},{"x":-8,"y":58},{"x":46,"y":45},{"x":64,"y":-19},{"x":-24,"y":-34},{"x":47,"y":-27},{"x":-34,"y":-158},{"x":42,"y":-32},{"x":27,"y":76},{"x":57,"y":-76},{"x":63,"y":49},{"x":-20,"y":41},{"x":-30,"y":-20},{"x":-4,"y":51},{"x":72,"y":74},{"x":8,"y":92}],"type":"coastline"},{"arc":[{"x":88926,"y":53641},{"x":-34,"y":33},{"x":-3,"y":145},{"x":-47,"y":94},{"x":-56,"y":15},{"x":-88,"y":-39},{"x":-65,"y":41},{"x":-44,"y":45},{"x":76,"y":4},{"x":-28,"y":23},{"x":34,"y":1},{"x":-30,"y":98},{"x":-86,"y":23},{"x":-78,"y":-90},{"x":37,"y":-20},{"x":0,"y":-61},{"x":-47,"y":44},{"x":-37,"y":-49},{"x":32,"y":-61},{"x":-44,"y":-32},{"x":43,"y":-45},{"x":-42,"y":36},{"x":-53,"y":-25},{"x":-70,"y":-59},{"x":22,"y":-37},{"x":53,"y":19},{"x":59,"y":-51},{"x":58,"y":44},{"x":-18,"y":42},{"x":51,"y":-41},{"x":50,"y":14},{"x":45,"y":-25},{"x":13,"y":46},{"x":91,"y":-49},{"x":65,"y":47},{"x":110,"y":-130},{"x":31,"y":0}],"type":"coastline"},{"arc":[{"x":89006,"y":52783},{"x":-47,"y":-8},{"x":-60,"y":39},{"x":-1,"y":-30},{"x":-33,"y":16},{"x":-21,"y":-35},{"x":45,"y":-41},{"x":50,"y":49},{"x":61,"y":-29},{"x":6,"y":39}],"type":"coastline"},{"arc":[{"x":89016,"y":52964},{"x":-41,"y":11},{"x":41,"y":-33},{"x":0,"y":22}],"type":"coastline"},{"arc":[{"x":89173,"y":50809},{"x":-55,"y":-13},{"x":-34,"y":34},{"x":-44,"y":-67},{"x":-43,"y":-6},{"x":-18,"y":45},{"x":-104,"y":-42},{"x":-41,"y":52},{"x":-106,"y":19},{"x":-64,"y":-47},{"x":-76,"y":-11},{"x":-126,"y":57},{"x":-76,"y":-1},{"x":56,"y":-4},{"x":-51,"y":-5},{"x":27,"y":-34},{"x":-40,"y":40},{"x":-20,"y":-13},{"x":-36,"y":-156},{"x":96,"y":-138},{"x":24,"y":49},{"x":250,"y":74},{"x":80,"y":-5},{"x":95,"y":71},{"x":119,"y":14},{"x":107,"y":-23},{"x":80,"y":110}],"type":"coastline"},{"arc":[{"x":89303,"y":51559},{"x":-36,"y":-6},{"x":-96,"y":117},{"x":18,"y":-59},{"x":-31,"y":-31},{"x":7,"y":35},{"x":-28,"y":-4},{"x":-25,"y":-129},{"x":-30,"y":-57},{"x":-51,"y":1},{"x":-5,"y":-61},{"x":95,"y":9},{"x":52,"y":119},{"x":130,"y":66}],"type":"coastline"},{"arc":[{"x":89392,"y":53032},{"x":-52,"y":65},{"x":-74,"y":0},{"x":91,"y":-105},{"x":35,"y":40}],"type":"coastline"},{"arc":[{"x":89456,"y":53313},{"x":-54,"y":24},{"x":13,"y":32},{"x":-46,"y":70},{"x":-48,"y":-25},{"x":-35,"y":50},{"x":-10,"y":-33},{"x":-72,"y":12},{"x":-7,"y":-21},{"x":-42,"y":73},{"x":-43,"y":4},{"x":-38,"y":113},{"x":-3,"y":-34},{"x":-49,"y":11},{"x":40,"y":-159},{"x":44,"y":-51},{"x":-23,"y":-23},{"x":-17,"y":28},{"x":-40,"y":-20},{"x":29,"y":-36},{"x":-122,"y":10},{"x":12,"y":-30},{"x":35,"y":9},{"x":12,"y":-60},{"x":-100,"y":20},{"x":-40,"y":-44},{"x":-5,"y":-104},{"x":55,"y":-52},{"x":21,"y":13},{"x":-1,"y":-59},{"x":45,"y":0},{"x":41,"y":93},{"x":42,"y":21},{"x":21,"y":92},{"x":74,"y":-47},{"x":59,"y":39},{"x":-1,"y":45},{"x":92,"y":15},{"x":13,"y":60},{"x":-7,"y":-61},{"x":33,"y":24},{"x":23,"y":-29},{"x":15,"y":38},{"x":18,"y":-41},{"x":36,"y":-2},{"x":30,"y":35}],"type":"coastline"},{"arc":[{"x":89838,"y":51762},{"x":-204,"y":-21},{"x":-15,"y":59},{"x":38,"y":46},{"x":92,"y":-16},{"x":-54,"y":143},{"x":-73,"y":-65},{"x":-62,"y":4},{"x":-79,"y":-106},{"x":7,"y":-43},{"x":37,"y":3},{"x":-82,"y":-38},{"x":31,"y":-74},{"x":35,"y":3},{"x":-13,"y":-65},{"x":70,"y":-32},{"x":-8,"y":-26},{"x":49,"y":8},{"x":-39,"y":-32},{"x":19,"y":-36},{"x":-39,"y":-11},{"x":5,"y":-40},{"x":-87,"y":64},{"x":28,"y":-100},{"x":-26,"y":-93},{"x":300,"y":283},{"x":70,"y":185}],"type":"coastline"},{"arc":[{"x":90786,"y":51750},{"x":-43,"y":27},{"x":-23,"y":-48},{"x":66,"y":21}],"type":"coastline"},{"arc":[{"x":80916,"y":53560},{"x":-130,"y":37},{"x":-11,"y":-60},{"x":-63,"y":-66},{"x":154,"y":1},{"x":40,"y":29},{"x":-42,"y":55},{"x":52,"y":4}],"type":"coastline"},{"arc":[{"x":81831,"y":53285},{"x":-32,"y":65},{"x":-49,"y":-34},{"x":-39,"y":19},{"x":31,"y":15},{"x":-65,"y":-19},{"x":-27,"y":-28},{"x":126,"y":-59},{"x":55,"y":41}],"type":"coastline"},{"arc":[{"x":82167,"y":53515},{"x":-93,"y":38},{"x":-24,"y":-46},{"x":96,"y":-63},{"x":21,"y":71}],"type":"coastline"},{"arc":[{"x":82288,"y":53363},{"x":-112,"y":162},{"x":-6,"y":-98},{"x":61,"y":-63},{"x":57,"y":-1}],"type":"coastline"},{"arc":[{"x":82662,"y":55213},{"x":-17,"y":15},{"x":-1,"y":-26},{"x":18,"y":11}],"type":"coastline"},{"arc":[{"x":82733,"y":54958},{"x":-31,"y":37},{"x":10,"y":82},{"x":-70,"y":-21},{"x":-25,"y":28},{"x":27,"y":28},{"x":-23,"y":21},{"x":25,"y":-1},{"x":-25,"y":12},{"x":-40,"y":-40},{"x":24,"y":-8},{"x":4,"y":-100},{"x":124,"y":-38}],"type":"coastline"},{"arc":[{"x":83024,"y":53364},{"x":-28,"y":-3},{"x":-4,"y":-41},{"x":32,"y":44}],"type":"coastline"},{"arc":[{"x":83749,"y":53865},{"x":-31,"y":17},{"x":-9,"y":-46},{"x":40,"y":29}],"type":"coastline"},{"arc":[{"x":83758,"y":51755},{"x":-16,"y":69},{"x":-20,"y":-49},{"x":22,"y":-42},{"x":14,"y":22}],"type":"coastline"},{"arc":[{"x":83789,"y":53706},{"x":-27,"y":-2},{"x":-22,"y":64},{"x":-16,"y":-56},{"x":27,"y":-18},{"x":38,"y":12}],"type":"coastline"},{"arc":[{"x":83791,"y":54662},{"x":-41,"y":47},{"x":20,"y":-65},{"x":21,"y":18}],"type":"coastline"},{"arc":[{"x":83857,"y":53638},{"x":-23,"y":50},{"x":-17,"y":-13},{"x":40,"y":-37}],"type":"coastline"},{"arc":[{"x":83957,"y":52119},{"x":-27,"y":43},{"x":-11,"y":-39},{"x":2,"y":44},{"x":-51,"y":-41},{"x":-12,"y":-97},{"x":99,"y":90}],"type":"coastline"},{"arc":[{"x":84196,"y":53686},{"x":-14,"y":13},{"x":18,"y":4},{"x":-1,"y":39},{"x":-35,"y":-22},{"x":20,"y":-72},{"x":12,"y":38}],"type":"coastline"},{"arc":[{"x":84317,"y":54461},{"x":-94,"y":100},{"x":17,"y":22},{"x":-75,"y":66},{"x":-21,"y":-18},{"x":-32,"y":25},{"x":-30,"y":-81},{"x":107,"y":-77},{"x":128,"y":-37}],"type":"coastline"},{"arc":[{"x":84494,"y":52090},{"x":-39,"y":5},{"x":-4,"y":13},{"x":21,"y":-4},{"x":-57,"y":24},{"x":5,"y":65},{"x":30,"y":-8},{"x":-22,"y":53},{"x":-4,"y":-27},{"x":-20,"y":11},{"x":-4,"y":65},{"x":-107,"y":15},{"x":-90,"y":-73},{"x":4,"y":-75},{"x":73,"y":-73},{"x":103,"y":-40},{"x":73,"y":11},{"x":15,"y":11},{"x":-5,"y":15},{"x":27,"y":7},{"x":24,"y":39},{"x":-23,"y":-34}],"type":"coastline"},{"arc":[{"x":84646,"y":53762},{"x":-25,"y":30},{"x":-25,"y":-13},{"x":50,"y":-17}],"type":"coastline"},{"arc":[{"x":84956,"y":53803},{"x":-7,"y":21},{"x":-37,"y":-10},{"x":44,"y":-11}],"type":"coastline"},{"arc":[{"x":84991,"y":53227},{"x":-52,"y":17},{"x":-10,"y":-35},{"x":33,"y":-15},{"x":29,"y":33}],"type":"coastline"},{"arc":[{"x":85070,"y":51672},{"x":-16,"y":72},{"x":-53,"y":0},{"x":6,"y":-40},{"x":32,"y":1},{"x":-19,"y":-50},{"x":50,"y":17}],"type":"coastline"},{"arc":[{"x":85081,"y":52495},{"x":-214,"y":11},{"x":8,"y":-39},{"x":206,"y":28}],"type":"coastline"},{"arc":[{"x":85190,"y":50172},{"x":-92,"y":12},{"x":-14,"y":47},{"x":-25,"y":-12},{"x":-28,"y":26},{"x":-12,"y":-85},{"x":-37,"y":10},{"x":-15,"y":-55},{"x":60,"y":-3},{"x":35,"y":-39},{"x":28,"y":30},{"x":32,"y":-22},{"x":68,"y":91}],"type":"coastline"},{"arc":[{"x":85198,"y":50800},{"x":-37,"y":42},{"x":-21,"y":-13},{"x":26,"y":-47},{"x":32,"y":18}],"type":"coastline"},{"arc":[{"x":85211,"y":49346},{"x":-62,"y":-7},{"x":-34,"y":28},{"x":4,"y":38},{"x":53,"y":3},{"x":14,"y":45},{"x":-127,"y":-63},{"x":-53,"y":22},{"x":-122,"y":-172},{"x":66,"y":51},{"x":15,"y":-42},{"x":21,"y":35},{"x":-13,"y":-133},{"x":26,"y":-5},{"x":212,"y":200}],"type":"coastline"},{"arc":[{"x":85279,"y":51804},{"x":-48,"y":150},{"x":37,"y":23},{"x":-68,"y":50},{"x":-88,"y":-53},{"x":-34,"y":-102},{"x":-81,"y":-65},{"x":-1,"y":-59},{"x":45,"y":5},{"x":-5,"y":26},{"x":36,"y":-15},{"x":-8,"y":66},{"x":38,"y":-39},{"x":-7,"y":48},{"x":103,"y":39},{"x":-13,"y":34},{"x":33,"y":-16},{"x":-39,"y":-46},{"x":38,"y":-14},{"x":-58,"y":-15},{"x":57,"y":-31},{"x":63,"y":14}],"type":"coastline"},{"arc":[{"x":85416,"y":52394},{"x":-90,"y":8},{"x":-49,"y":-46},{"x":-34,"y":7},{"x":9,"y":-32},{"x":43,"y":-18},{"x":27,"y":35},{"x":1,"y":-26},{"x":93,"y":72}],"type":"coastline"},{"arc":[{"x":85592,"y":52436},{"x":-28,"y":13},{"x":-1,"y":-27},{"x":29,"y":14}],"type":"coastline"},{"arc":[{"x":85610,"y":52170},{"x":-47,"y":53},{"x":-3,"y":76},{"x":37,"y":33},{"x":-36,"y":71},{"x":-15,"y":-64},{"x":-22,"y":20},{"x":16,"y":-42},{"x":-67,"y":56},{"x":-61,"y":-34},{"x":-17,"y":-53},{"x":0,"y":47},{"x":-27,"y":-4},{"x":-87,"y":-67},{"x":33,"y":-60},{"x":-114,"y":-27},{"x":13,"y":-41},{"x":50,"y":-13},{"x":-50,"y":-27},{"x":33,"y":-79},{"x":70,"y":-16},{"x":116,"y":38},{"x":57,"y":57},{"x":-48,"y":12},{"x":91,"y":22},{"x":-34,"y":50},{"x":53,"y":-41},{"x":59,"y":33}],"type":"coastline"},{"arc":[{"x":84583,"y":56819},{"x":-47,"y":-22},{"x":-51,"y":18},{"x":-40,"y":-28},{"x":3,"y":39},{"x":-43,"y":-37},{"x":-13,"y":25},{"x":-5,"y":-19},{"x":-70,"y":11},{"x":4,"y":-79},{"x":-22,"y":17},{"x":-45,"y":-62},{"x":-36,"y":22},{"x":-15,"y":-27},{"x":-35,"y":6},{"x":29,"y":-29},{"x":-13,"y":-120},{"x":-77,"y":-20},{"x":10,"y":-47},{"x":-89,"y":-21},{"x":5,"y":-22},{"x":-276,"y":166}],"type":"coastline"},{"arc":[{"x":83757,"y":56590},{"x":-235,"y":-203},{"x":-43,"y":79},{"x":-145,"y":-15},{"x":-145,"y":-79},{"x":-20,"y":-83},{"x":-71,"y":42},{"x":-31,"y":-9},{"x":-13,"y":32}],"type":"area"},{"arc":[{"x":83054,"y":56354},{"x":-79,"y":-135},{"x":66,"y":-338},{"x":-36,"y":17},{"x":-29,"y":-140},{"x":-206,"y":-221},{"x":-14,"y":-92},{"x":-6,"y":31},{"x":-53,"y":-59},{"x":-5,"y":-150},{"x":40,"y":-47},{"x":-81,"y":-59},{"x":95,"y":-85},{"x":-22,"y":-27},{"x":37,"y":-82},{"x":-9,"y":-89},{"x":-84,"y":-64},{"x":-131,"y":75},{"x":-49,"y":-28},{"x":-43,"y":-97},{"x":-29,"y":-9},{"x":-26,"y":28},{"x":-81,"y":-69},{"x":52,"y":-39},{"x":-144,"y":-27},{"x":-15,"y":-31},{"x":60,"y":-68},{"x":-58,"y":9},{"x":-25,"y":-25},{"x":16,"y":39},{"x":-115,"y":-13},{"x":-133,"y":-100},{"x":-166,"y":-45},{"x":-90,"y":-95},{"x":-13,"y":-87},{"x":-63,"y":-6},{"x":9,"y":-70},{"x":-73,"y":-128},{"x":34,"y":-61},{"x":-31,"y":-7},{"x":-1,"y":24},{"x":-51,"y":-46},{"x":-111,"y":22},{"x":-286,"y":-260},{"x":-73,"y":-153},{"x":-29,"y":5},{"x":29,"y":-44},{"x":-50,"y":-2},{"x":23,"y":17},{"x":-30,"y":21},{"x":-14,"y":-30},{"x":-37,"y":5},{"x":89,"y":-61},{"x":20,"y":-72},{"x":-126,"y":-202},{"x":107,"y":-21},{"x":109,"y":114},{"x":-26,"y":40},{"x":-80,"y":-21},{"x":65,"y":41},{"x":40,"y":-35},{"x":23,"y":106},{"x":85,"y":103},{"x":43,"y":17},{"x":25,"y":-24},{"x":36,"y":88},{"x":109,"y":-4},{"x":143,"y":95},{"x":66,"y":2},{"x":72,"y":56},{"x":-11,"y":57},{"x":193,"y":-6},{"x":97,"y":32},{"x":23,"y":-71},{"x":-40,"y":14},{"x":-52,"y":-76},{"x":111,"y":-72},{"x":-16,"y":-25},{"x":66,"y":11},{"x":-39,"y":102},{"x":33,"y":61},{"x":59,"y":21},{"x":-23,"y":10},{"x":78,"y":4},{"x":19,"y":97},{"x":-120,"y":-32},{"x":-6,"y":-47},{"x":-86,"y":70},{"x":35,"y":3},{"x":-8,"y":62},{"x":82,"y":-31},{"x":21,"y":22},{"x":-40,"y":47},{"x":35,"y":42},{"x":28,"y":-45},{"x":34,"y":9},{"x":-7,"y":54},{"x":150,"y":16},{"x":10,"y":72},{"x":45,"y":-26},{"x":103,"y":96},{"x":47,"y":-16},{"x":29,"y":19},{"x":18,"y":-22},{"x":13,"y":25},{"x":-33,"y":-89},{"x":-131,"y":-21},{"x":-3,"y":-56},{"x":-21,"y":21},{"x":-83,"y":-52},{"x":68,"y":-44},{"x":-66,"y":-30},{"x":41,"y":-4},{"x":-15,"y":-46},{"x":-64,"y":-15},{"x":38,"y":-57},{"x":-21,"y":-39},{"x":130,"y":80},{"x":16,"y":49},{"x":39,"y":-4},{"x":22,"y":-43},{"x":38,"y":30},{"x":31,"y":-45},{"x":-87,"y":-61},{"x":57,"y":-91},{"x":142,"y":77},{"x":-13,"y":-38},{"x":8,"y":14},{"x":30,"y":-16},{"x":-9,"y":-16},{"x":-19,"y":19},{"x":-49,"y":-18},{"x":78,"y":-34},{"x":-16,"y":-47},{"x":47,"y":-4},{"x":7,"y":-37},{"x":29,"y":68},{"x":69,"y":16},{"x":29,"y":-94},{"x":66,"y":-19},{"x":3,"y":23},{"x":19,"y":-68},{"x":47,"y":-1},{"x":15,"y":-49},{"x":30,"y":5},{"x":-11,"y":-65},{"x":30,"y":-20},{"x":123,"y":58},{"x":13,"y":-24},{"x":-5,"y":27},{"x":48,"y":28},{"x":17,"y":-57},{"x":-54,"y":-9},{"x":25,"y":-59},{"x":38,"y":40},{"x":17,"y":-29},{"x":-29,"y":6},{"x":-15,"y":-56},{"x":-32,"y":17},{"x":33,"y":-19},{"x":21,"y":11},{"x":9,"y":-88},{"x":-42,"y":-15},{"x":2,"y":18},{"x":-116,"y":-69},{"x":112,"y":-60},{"x":44,"y":-83},{"x":112,"y":-10},{"x":-27,"y":-128},{"x":86,"y":1},{"x":30,"y":-69},{"x":94,"y":-73},{"x":49,"y":5},{"x":82,"y":-54},{"x":108,"y":19},{"x":29,"y":-37},{"x":-17,"y":39},{"x":137,"y":-89},{"x":110,"y":-22},{"x":44,"y":-47},{"x":57,"y":22},{"x":42,"y":-58},{"x":97,"y":-23},{"x":18,"y":-78},{"x":-139,"y":-26},{"x":70,"y":8},{"x":-1,"y":-48},{"x":30,"y":-5},{"x":32,"y":8},{"x":-25,"y":-2},{"x":15,"y":13},{"x":-16,"y":4},{"x":8,"y":15},{"x":22,"y":-28},{"x":63,"y":9},{"x":-36,"y":37},{"x":92,"y":-31},{"x":25,"y":18},{"x":45,"y":-108},{"x":-12,"y":81},{"x":61,"y":-67},{"x":10,"y":38},{"x":43,"y":-14},{"x":6,"y":25},{"x":39,"y":-41},{"x":98,"y":-6},{"x":11,"y":29},{"x":77,"y":20},{"x":23,"y":61},{"x":49,"y":12},{"x":-78,"y":30},{"x":-1,"y":44},{"x":117,"y":-6},{"x":32,"y":26},{"x":-23,"y":55},{"x":56,"y":-64},{"x":24,"y":20},{"x":88,"y":-59},{"x":191,"y":-11},{"x":37,"y":25},{"x":-21,"y":76},{"x":204,"y":18},{"x":31,"y":40},{"x":-17,"y":87},{"x":48,"y":-68},{"x":17,"y":18},{"x":6,"y":-95},{"x":17,"y":99},{"x":21,"y":-13},{"x":8,"y":39},{"x":29,"y":-26},{"x":10,"y":48},{"x":-18,"y":-134},{"x":85,"y":133},{"x":69,"y":-43},{"x":62,"y":57},{"x":-112,"y":124},{"x":29,"y":34},{"x":-119,"y":46},{"x":90,"y":17},{"x":-58,"y":81},{"x":-36,"y":21},{"x":-66,"y":-61},{"x":40,"y":124},{"x":-75,"y":31},{"x":-11,"y":-26},{"x":-21,"y":54},{"x":-105,"y":-68},{"x":0,"y":-34},{"x":-19,"y":52},{"x":-41,"y":-30},{"x":-4,"y":70},{"x":73,"y":11},{"x":-49,"y":33},{"x":86,"y":-13},{"x":23,"y":74},{"x":-61,"y":5},{"x":-18,"y":77},{"x":-56,"y":13},{"x":-71,"y":-76},{"x":25,"y":-39},{"x":-235,"y":-72},{"x":2,"y":-37},{"x":-40,"y":28},{"x":-64,"y":-39},{"x":-29,"y":74},{"x":-7,"y":-68},{"x":-90,"y":66},{"x":-36,"y":-16},{"x":-12,"y":49},{"x":53,"y":-14},{"x":29,"y":61},{"x":44,"y":10},{"x":-55,"y":18},{"x":20,"y":16},{"x":-33,"y":26},{"x":59,"y":-33},{"x":-1,"y":64},{"x":57,"y":-9},{"x":-33,"y":-35},{"x":16,"y":-49},{"x":120,"y":78},{"x":34,"y":-17},{"x":18,"y":33},{"x":-83,"y":52},{"x":2,"y":67},{"x":-76,"y":56},{"x":13,"y":22},{"x":20,"y":-16},{"x":-3,"y":103},{"x":-81,"y":53},{"x":-3,"y":32},{"x":-30,"y":12},{"x":10,"y":-35},{"x":-40,"y":16},{"x":16,"y":38},{"x":-24,"y":-36},{"x":-51,"y":37},{"x":-31,"y":-30},{"x":2,"y":78},{"x":-91,"y":28},{"x":-41,"y":-12},{"x":35,"y":-51},{"x":-50,"y":11},{"x":11,"y":-54},{"x":-41,"y":-30},{"x":-40,"y":-6},{"x":-44,"y":70},{"x":-80,"y":-8},{"x":-10,"y":29},{"x":-15,"y":-28},{"x":-10,"y":22},{"x":-72,"y":-7},{"x":27,"y":-35},{"x":-61,"y":39},{"x":-6,"y":-34},{"x":-63,"y":27},{"x":-58,"y":-26},{"x":-4,"y":-30},{"x":-25,"y":5},{"x":-4,"y":-22},{"x":9,"y":-20},{"x":7,"y":-1},{"x":-2,"y":-20},{"x":44,"y":-30},{"x":27,"y":17},{"x":6,"y":-26},{"x":22,"y":35},{"x":18,"y":-26},{"x":44,"y":38},{"x":2,"y":-24},{"x":42,"y":6},{"x":-62,"y":-51},{"x":78,"y":36},{"x":127,"y":-2},{"x":-56,"y":-95},{"x":-72,"y":-23},{"x":-70,"y":1},{"x":-23,"y":28},{"x":-30,"y":-24},{"x":-6,"y":27},{"x":-64,"y":13},{"x":-23,"y":-33},{"x":-33,"y":70},{"x":-26,"y":-29},{"x":20,"y":-38},{"x":-59,"y":-14},{"x":-80,"y":53},{"x":59,"y":-3},{"x":-32,"y":7},{"x":-15,"y":32},{"x":34,"y":-28},{"x":38,"y":10},{"x":-30,"y":19},{"x":44,"y":15},{"x":-10,"y":76},{"x":-58,"y":-27},{"x":-79,"y":11},{"x":4,"y":50},{"x":-140,"y":-61},{"x":28,"y":-68},{"x":45,"y":0},{"x":-12,"y":28},{"x":26,"y":-12},{"x":-39,"y":-47},{"x":-171,"y":-15},{"x":61,"y":51},{"x":-93,"y":37},{"x":-4,"y":136},{"x":-28,"y":-6},{"x":-41,"y":73},{"x":5,"y":-14},{"x":-29,"y":-6},{"x":22,"y":16},{"x":-115,"y":132},{"x":-10,"y":-9},{"x":11,"y":30},{"x":-24,"y":-33},{"x":-90,"y":57},{"x":94,"y":8},{"x":29,"y":44},{"x":85,"y":-51},{"x":5,"y":25},{"x":45,"y":-5},{"x":9,"y":28},{"x":-32,"y":-6},{"x":-18,"y":42},{"x":-14,"y":-25},{"x":-58,"y":14},{"x":-25,"y":90},{"x":60,"y":-12},{"x":10,"y":37},{"x":64,"y":7},{"x":21,"y":-23},{"x":38,"y":87},{"x":91,"y":-20},{"x":74,"y":17},{"x":-72,"y":19},{"x":3,"y":45},{"x":-63,"y":25},{"x":111,"y":45},{"x":-19,"y":46},{"x":-114,"y":69},{"x":26,"y":47},{"x":-42,"y":42},{"x":21,"y":50},{"x":-62,"y":-25},{"x":-25,"y":47},{"x":56,"y":144},{"x":-19,"y":-14},{"x":-63,"y":65},{"x":-73,"y":-6},{"x":22,"y":138},{"x":-39,"y":3},{"x":-11,"y":33},{"x":-60,"y":-28},{"x":-9,"y":39},{"x":36,"y":-2},{"x":2,"y":23},{"x":-50,"y":13},{"x":59,"y":7},{"x":-11,"y":145},{"x":67,"y":-33},{"x":15,"y":-54},{"x":89,"y":-22},{"x":166,"y":-221},{"x":81,"y":13},{"x":13,"y":63},{"x":43,"y":-10},{"x":-7,"y":-120},{"x":56,"y":13},{"x":5,"y":-70},{"x":26,"y":38},{"x":19,"y":-30},{"x":43,"y":54},{"x":14,"y":-69},{"x":12,"y":34},{"x":10,"y":-57},{"x":25,"y":14},{"x":113,"y":-123},{"x":37,"y":14},{"x":83,"y":-42},{"x":70,"y":22},{"x":39,"y":-20},{"x":12,"y":29},{"x":-4,"y":-30},{"x":14,"y":30},{"x":95,"y":-14},{"x":51,"y":22},{"x":30,"y":-30},{"x":33,"y":27},{"x":-30,"y":39},{"x":41,"y":-25},{"x":22,"y":17},{"x":-13,"y":50},{"x":62,"y":30},{"x":25,"y":-15},{"x":28,"y":53},{"x":41,"y":-13}],"type":"coastline"},{"arc":[{"x":83757,"y":56590},{"x":-208,"y":164},{"x":98,"y":195},{"x":33,"y":6},{"x":-15,"y":29},{"x":143,"y":145},{"x":15,"y":44},{"x":-27,"y":-28},{"x":-25,"y":130},{"x":62,"y":134},{"x":1,"y":133},{"x":30,"y":9},{"x":-55,"y":84},{"x":16,"y":19},{"x":15,"y":-23},{"x":-11,"y":33},{"x":-13,"y":-20},{"x":-20,"y":15},{"x":25,"y":9},{"x":-41,"y":-10},{"x":1,"y":-22},{"x":-92,"y":147},{"x":9,"y":32},{"x":-20,"y":-15},{"x":-7,"y":29},{"x":23,"y":-10},{"x":-78,"y":75},{"x":-369,"y":127},{"x":-3,"y":56},{"x":-44,"y":-18},{"x":-15,"y":27},{"x":-59,"y":2},{"x":-181,"y":110},{"x":38,"y":-25},{"x":-4,"y":-42},{"x":-78,"y":82},{"x":-7,"y":-48},{"x":-19,"y":20},{"x":-25,"y":-34},{"x":-89,"y":5},{"x":-9,"y":-31},{"x":-52,"y":40},{"x":-8,"y":-23},{"x":-170,"y":29},{"x":-225,"y":-182},{"x":-40,"y":2},{"x":28,"y":-13},{"x":-51,"y":-11},{"x":-10,"y":-37},{"x":-81,"y":35},{"x":-29,"y":51},{"x":-77,"y":22},{"x":-11,"y":-42},{"x":-66,"y":0},{"x":-72,"y":-53},{"x":-15,"y":-56},{"x":-29,"y":24},{"x":-14,"y":-46},{"x":39,"y":-6},{"x":-22,"y":-36},{"x":-35,"y":21},{"x":-6,"y":-111},{"x":-43,"y":8},{"x":-56,"y":-63},{"x":17,"y":-35},{"x":-19,"y":30},{"x":-9,"y":-151},{"x":-25,"y":-9},{"x":25,"y":3},{"x":-29,"y":-28},{"x":26,"y":19},{"x":5,"y":-250},{"x":-49,"y":50},{"x":-99,"y":-57},{"x":17,"y":-29},{"x":-60,"y":33},{"x":-66,"y":-76},{"x":19,"y":-36},{"x":-27,"y":16},{"x":14,"y":-21},{"x":23,"y":5},{"x":-24,"y":-52},{"x":-102,"y":-54},{"x":-44,"y":6},{"x":-53,"y":-100},{"x":-13,"y":-121},{"x":47,"y":-25},{"x":24,"y":-106},{"x":-23,"y":-17},{"x":-32,"y":23},{"x":-6,"y":65},{"x":-41,"y":11},{"x":-2,"y":-65},{"x":-76,"y":-63},{"x":-19,"y":-108},{"x":66,"y":-15},{"x":48,"y":67},{"x":43,"y":9},{"x":131,"y":-50},{"x":57,"y":-56},{"x":-26,"y":-13},{"x":20,"y":-28},{"x":-28,"y":29},{"x":1,"y":-48},{"x":93,"y":-40},{"x":70,"y":-150},{"x":98,"y":-18},{"x":261,"y":46},{"x":86,"y":-58},{"x":15,"y":17},{"x":-75,"y":39},{"x":1,"y":74},{"x":-34,"y":-1},{"x":34,"y":4},{"x":38,"y":122},{"x":81,"y":12},{"x":-17,"y":89},{"x":40,"y":-34},{"x":55,"y":39},{"x":49,"y":110},{"x":75,"y":31},{"x":49,"y":94},{"x":217,"y":63},{"x":117,"y":-35},{"x":19,"y":-44},{"x":-39,"y":-24},{"x":66,"y":-30},{"x":27,"y":-70},{"x":35,"y":44},{"x":76,"y":-31},{"x":52,"y":59},{"x":81,"y":-51},{"x":52,"y":-60},{"x":14,"y":-274}],"type":"coastline"},{"arc":[{"x":95436,"y":49291},{"x":-10,"y":31},{"x":-31,"y":-12},{"x":23,"y":-35},{"x":18,"y":16}],"type":"coastline"},{"arc":[{"x":97341,"y":49228},{"x":-38,"y":7},{"x":14,"y":-27},{"x":24,"y":20}],"type":"coastline"},{"arc":[{"x":97369,"y":50407},{"x":-39,"y":81},{"x":-34,"y":-4},{"x":-172,"y":-148},{"x":-1,"y":-46},{"x":-70,"y":-70},{"x":140,"y":-92},{"x":10,"y":59},{"x":73,"y":-27},{"x":-10,"y":25},{"x":45,"y":14},{"x":-42,"y":31},{"x":50,"y":-21},{"x":-14,"y":60},{"x":18,"y":-21},{"x":33,"y":52},{"x":-57,"y":11},{"x":-55,"y":57},{"x":39,"y":-27},{"x":23,"y":21},{"x":36,"y":-37},{"x":23,"y":58},{"x":-41,"y":21},{"x":45,"y":3}],"type":"coastline"},{"arc":[{"x":97392,"y":49974},{"x":-33,"y":10},{"x":-33,"y":-57},{"x":25,"y":-14},{"x":41,"y":61}],"type":"coastline"},{"arc":[{"x":97499,"y":49770},{"x":-41,"y":-12},{"x":24,"y":-13},{"x":17,"y":25}],"type":"coastline"},{"arc":[{"x":97553,"y":50501},{"x":-66,"y":-11},{"x":-12,"y":90},{"x":40,"y":51},{"x":-29,"y":12},{"x":-46,"y":-143},{"x":88,"y":-59},{"x":25,"y":60}],"type":"coastline"},{"arc":[{"x":97628,"y":49018},{"x":-48,"y":75},{"x":48,"y":49},{"x":-69,"y":51},{"x":-78,"y":10},{"x":-105,"y":-51},{"x":-71,"y":0},{"x":-15,"y":26},{"x":-54,"y":-29},{"x":71,"y":44},{"x":-53,"y":32},{"x":80,"y":46},{"x":-24,"y":53},{"x":129,"y":88},{"x":-47,"y":5},{"x":1,"y":40},{"x":-9,"y":-47},{"x":-33,"y":9},{"x":11,"y":-35},{"x":-44,"y":-5},{"x":16,"y":66},{"x":-80,"y":-27},{"x":-8,"y":50},{"x":81,"y":-7},{"x":-6,"y":23},{"x":56,"y":10},{"x":10,"y":106},{"x":-28,"y":20},{"x":-55,"y":-30},{"x":-23,"y":53},{"x":-18,"y":-24},{"x":-80,"y":-3},{"x":-57,"y":71},{"x":107,"y":-52},{"x":9,"y":70},{"x":71,"y":-78},{"x":59,"y":8},{"x":-1,"y":40},{"x":41,"y":-35},{"x":-29,"y":-21},{"x":35,"y":-43},{"x":39,"y":31},{"x":-26,"y":-58},{"x":15,"y":15},{"x":39,"y":-36},{"x":11,"y":30},{"x":34,"y":-70},{"x":67,"y":9},{"x":-64,"y":6},{"x":23,"y":25},{"x":-29,"y":42},{"x":29,"y":-12},{"x":26,"y":30},{"x":-56,"y":28},{"x":-46,"y":-13},{"x":41,"y":64},{"x":-63,"y":-14},{"x":63,"y":62},{"x":-57,"y":-30},{"x":0,"y":22},{"x":-52,"y":-7},{"x":10,"y":47},{"x":-88,"y":-18},{"x":22,"y":39},{"x":65,"y":0},{"x":-32,"y":13},{"x":37,"y":24},{"x":-19,"y":31},{"x":-110,"y":-80},{"x":-8,"y":45},{"x":-4,"y":-31},{"x":-6,"y":23},{"x":-120,"y":-50},{"x":2,"y":33},{"x":-51,"y":21},{"x":29,"y":15},{"x":28,"y":-23},{"x":-15,"y":20},{"x":49,"y":-12},{"x":26,"y":26},{"x":-27,"y":-9},{"x":19,"y":22},{"x":-43,"y":-5},{"x":-76,"y":69},{"x":76,"y":-52},{"x":5,"y":47},{"x":15,"y":-24},{"x":37,"y":33},{"x":-22,"y":-39},{"x":36,"y":31},{"x":-6,"y":-35},{"x":35,"y":57},{"x":1,"y":-35},{"x":25,"y":1},{"x":-2,"y":20},{"x":19,"y":-30},{"x":-10,"y":34},{"x":-44,"y":29},{"x":46,"y":89},{"x":-47,"y":13},{"x":-21,"y":-35},{"x":-17,"y":22},{"x":39,"y":56},{"x":35,"y":-30},{"x":26,"y":13},{"x":-43,"y":49},{"x":-36,"y":-20},{"x":56,"y":39},{"x":-72,"y":19},{"x":-34,"y":-37},{"x":-90,"y":61},{"x":10,"y":-94},{"x":-60,"y":-52},{"x":46,"y":-45},{"x":-84,"y":-37},{"x":-44,"y":19},{"x":-14,"y":-81},{"x":-10,"y":50},{"x":-38,"y":9},{"x":-59,"y":-58},{"x":-69,"y":-10},{"x":15,"y":17},{"x":-42,"y":1},{"x":-46,"y":45},{"x":-25,"y":-45},{"x":-6,"y":47},{"x":-51,"y":18},{"x":6,"y":-59},{"x":-30,"y":2},{"x":-83,"y":-107},{"x":54,"y":-24},{"x":8,"y":22},{"x":4,"y":-53},{"x":-12,"y":19},{"x":-54,"y":-34},{"x":17,"y":13},{"x":-25,"y":-6},{"x":-33,"y":59},{"x":-81,"y":-48},{"x":-72,"y":7},{"x":5,"y":-56},{"x":46,"y":-25},{"x":-89,"y":-12},{"x":-31,"y":-36},{"x":41,"y":73},{"x":-49,"y":41},{"x":-66,"y":-7},{"x":-34,"y":-61},{"x":-30,"y":67},{"x":-24,"y":-21},{"x":-81,"y":12},{"x":29,"y":-102},{"x":-68,"y":13},{"x":-35,"y":-32},{"x":-85,"y":37},{"x":13,"y":-88},{"x":-149,"y":66},{"x":24,"y":-46},{"x":-54,"y":-19},{"x":-10,"y":-155},{"x":-36,"y":61},{"x":-57,"y":2},{"x":-67,"y":-61},{"x":25,"y":-61},{"x":-62,"y":-7},{"x":-39,"y":-46},{"x":105,"y":-33},{"x":8,"y":-35},{"x":-177,"y":-12},{"x":15,"y":-80},{"x":-78,"y":8},{"x":-41,"y":-51},{"x":135,"y":28},{"x":64,"y":-45},{"x":76,"y":23},{"x":-29,"y":-39},{"x":-36,"y":9},{"x":14,"y":-39},{"x":-39,"y":-24},{"x":23,"y":-45},{"x":67,"y":-5},{"x":55,"y":-99},{"x":-51,"y":7},{"x":0,"y":-60},{"x":-69,"y":-26},{"x":-42,"y":-45},{"x":22,"y":-10},{"x":132,"y":40},{"x":228,"y":-33},{"x":50,"y":18},{"x":14,"y":48},{"x":34,"y":-24},{"x":125,"y":-2},{"x":28,"y":46},{"x":74,"y":-18},{"x":103,"y":42},{"x":17,"y":-27},{"x":292,"y":11},{"x":77,"y":19},{"x":64,"y":74},{"x":142,"y":-48},{"x":170,"y":70},{"x":27,"y":39},{"x":36,"y":4},{"x":4,"y":-47},{"x":77,"y":33},{"x":35,"y":-23},{"x":150,"y":30},{"x":100,"y":-23},{"x":17,"y":39},{"x":41,"y":-22},{"x":46,"y":42},{"x":77,"y":15}],"type":"coastline"},{"arc":[{"x":97682,"y":49738},{"x":-9,"y":30},{"x":-28,"y":-15},{"x":-23,"y":28},{"x":-48,"y":115},{"x":19,"y":27},{"x":9,"y":-39},{"x":-1,"y":30},{"x":27,"y":-12},{"x":46,"y":63},{"x":-25,"y":11},{"x":4,"y":-29},{"x":-38,"y":34},{"x":-17,"y":-15},{"x":-12,"y":35},{"x":-22,"y":-56},{"x":-32,"y":33},{"x":26,"y":7},{"x":-87,"y":5},{"x":11,"y":48},{"x":-112,"y":-18},{"x":22,"y":-35},{"x":48,"y":14},{"x":-57,"y":-46},{"x":2,"y":-33},{"x":25,"y":52},{"x":45,"y":17},{"x":-50,"y":-73},{"x":44,"y":-3},{"x":45,"y":54},{"x":-44,"y":-77},{"x":60,"y":37},{"x":-20,"y":-54},{"x":25,"y":9},{"x":-34,"y":-27},{"x":66,"y":2},{"x":1,"y":46},{"x":19,"y":-23},{"x":12,"y":-39},{"x":-61,"y":-25},{"x":55,"y":1},{"x":-32,"y":-10},{"x":-3,"y":-40},{"x":51,"y":21},{"x":-7,"y":-23},{"x":41,"y":-7},{"x":-79,"y":-41},{"x":8,"y":-33},{"x":130,"y":54}],"type":"coastline"},{"arc":[{"x":97813,"y":50135},{"x":-45,"y":-60},{"x":34,"y":9},{"x":11,"y":51}],"type":"coastline"},{"arc":[{"x":97898,"y":50514},{"x":-59,"y":47},{"x":-46,"y":-34},{"x":33,"y":41},{"x":-29,"y":26},{"x":-70,"y":-64},{"x":25,"y":49},{"x":-86,"y":9},{"x":18,"y":-45},{"x":-33,"y":-34},{"x":41,"y":28},{"x":-27,"y":-32},{"x":51,"y":17},{"x":-33,"y":-21},{"x":28,"y":-48},{"x":20,"y":24},{"x":41,"y":-17},{"x":-29,"y":36},{"x":50,"y":-32},{"x":75,"y":29},{"x":-24,"y":23},{"x":54,"y":-2}],"type":"coastline"},{"arc":[{"x":97930,"y":50636},{"x":-95,"y":-8},{"x":-25,"y":-41},{"x":36,"y":-13},{"x":17,"y":22},{"x":32,"y":-40},{"x":35,"y":80}],"type":"coastline"},{"arc":[{"x":97956,"y":49746},{"x":-20,"y":-17},{"x":44,"y":13},{"x":-24,"y":4}],"type":"coastline"},{"arc":[{"x":98507,"y":49489},{"x":-38,"y":36},{"x":-24,"y":-11},{"x":62,"y":-25}],"type":"coastline"},{"arc":[{"x":100967,"y":51160},{"x":-8,"y":24},{"x":-28,"y":-27},{"x":35,"y":-16},{"x":1,"y":19}],"type":"coastline"},{"arc":[{"x":101188,"y":50925},{"x":-49,"y":16},{"x":-41,"y":-26},{"x":17,"y":27},{"x":-29,"y":4},{"x":51,"y":17},{"x":8,"y":33},{"x":-54,"y":-29},{"x":-38,"y":21},{"x":84,"y":50},{"x":-58,"y":3},{"x":-16,"y":74},{"x":-38,"y":-16},{"x":48,"y":86},{"x":-61,"y":-22},{"x":-12,"y":-67},{"x":-30,"y":1},{"x":12,"y":32},{"x":-32,"y":-34},{"x":-6,"y":37},{"x":-28,"y":-35},{"x":-51,"y":26},{"x":58,"y":31},{"x":-61,"y":-3},{"x":32,"y":63},{"x":74,"y":4},{"x":1,"y":53},{"x":-30,"y":-15},{"x":-24,"y":25},{"x":1,"y":-56},{"x":-32,"y":14},{"x":0,"y":-33},{"x":-66,"y":-9},{"x":-27,"y":51},{"x":40,"y":53},{"x":-101,"y":-119},{"x":-24,"y":15},{"x":-33,"y":-28},{"x":72,"y":-74},{"x":-38,"y":-6},{"x":-15,"y":-40},{"x":-4,"y":66},{"x":-46,"y":10},{"x":17,"y":29},{"x":-65,"y":-55},{"x":29,"y":59},{"x":-29,"y":-15},{"x":14,"y":38},{"x":-45,"y":-4},{"x":51,"y":22},{"x":-9,"y":52},{"x":-123,"y":-75},{"x":-15,"y":27},{"x":-13,"y":-50},{"x":-21,"y":24},{"x":5,"y":-84},{"x":-43,"y":17},{"x":-24,"y":58},{"x":-30,"y":-7},{"x":14,"y":-91},{"x":-32,"y":-4},{"x":-16,"y":-55},{"x":119,"y":-51},{"x":-12,"y":-32},{"x":39,"y":7},{"x":25,"y":-32},{"x":-60,"y":1},{"x":-5,"y":-38},{"x":-20,"y":84},{"x":-51,"y":-10},{"x":-45,"y":51},{"x":-15,"y":-32},{"x":73,"y":-59},{"x":-6,"y":-62},{"x":51,"y":14},{"x":9,"y":-22},{"x":-65,"y":-8},{"x":-2,"y":-24},{"x":-21,"y":48},{"x":-19,"y":-19},{"x":-12,"y":18},{"x":27,"y":78},{"x":-61,"y":19},{"x":-10,"y":-21},{"x":2,"y":33},{"x":-45,"y":3},{"x":64,"y":51},{"x":-29,"y":15},{"x":-11,"y":-24},{"x":29,"y":95},{"x":-72,"y":-4},{"x":4,"y":27},{"x":-47,"y":11},{"x":-7,"y":-23},{"x":-20,"y":60},{"x":-53,"y":-69},{"x":-29,"y":37},{"x":-90,"y":-38},{"x":-50,"y":36},{"x":-16,"y":-52},{"x":-117,"y":6},{"x":-4,"y":29},{"x":-53,"y":-39},{"x":22,"y":-33},{"x":16,"y":15},{"x":-27,"y":-44},{"x":29,"y":-32},{"x":-30,"y":26},{"x":-68,"y":-13},{"x":-3,"y":43},{"x":-111,"y":-61},{"x":29,"y":-26},{"x":-38,"y":8},{"x":-3,"y":-66},{"x":-18,"y":44},{"x":-54,"y":3},{"x":-35,"y":-60},{"x":-48,"y":-15},{"x":18,"y":-38},{"x":-24,"y":-12},{"x":0,"y":33},{"x":-19,"y":-33},{"x":-40,"y":14},{"x":-148,"y":-155},{"x":-6,"y":-70},{"x":-27,"y":24},{"x":-6,"y":-41},{"x":-20,"y":19},{"x":-97,"y":-67},{"x":51,"y":-20},{"x":-70,"y":3},{"x":-13,"y":-34},{"x":-58,"y":-32},{"x":-19,"y":14},{"x":-28,"y":-59},{"x":-35,"y":22},{"x":-58,"y":-64},{"x":-3,"y":-26},{"x":54,"y":-6},{"x":-36,"y":-42},{"x":-21,"y":40},{"x":-41,"y":-18},{"x":1,"y":25},{"x":-59,"y":8},{"x":-2,"y":65},{"x":-65,"y":-25},{"x":-51,"y":38},{"x":-39,"y":-22},{"x":41,"y":-2},{"x":16,"y":-39},{"x":46,"y":8},{"x":-36,"y":-30},{"x":52,"y":3},{"x":-20,"y":-19},{"x":56,"y":-30},{"x":-48,"y":14},{"x":7,"y":-24},{"x":-26,"y":28},{"x":11,"y":-51},{"x":-92,"y":20},{"x":-43,"y":-18},{"x":34,"y":51},{"x":46,"y":-21},{"x":-21,"y":52},{"x":-134,"y":31},{"x":9,"y":-39},{"x":-20,"y":23},{"x":-61,"y":-20},{"x":40,"y":-6},{"x":-45,"y":-14},{"x":34,"y":-29},{"x":-43,"y":4},{"x":-25,"y":-43},{"x":-11,"y":24},{"x":-37,"y":-71},{"x":-87,"y":-45},{"x":119,"y":193},{"x":-36,"y":4},{"x":39,"y":40},{"x":-30,"y":21},{"x":34,"y":24},{"x":42,"y":-32},{"x":-27,"y":48},{"x":64,"y":13},{"x":50,"y":59},{"x":-151,"y":-57},{"x":-32,"y":19},{"x":14,"y":-32},{"x":-23,"y":29},{"x":-27,"y":-51},{"x":-63,"y":31},{"x":22,"y":-64},{"x":53,"y":15},{"x":-52,"y":-58},{"x":34,"y":-31},{"x":-89,"y":55},{"x":25,"y":-34},{"x":-37,"y":3},{"x":-56,"y":49},{"x":-20,"y":-59},{"x":-28,"y":42},{"x":41,"y":29},{"x":-12,"y":32},{"x":-47,"y":-24},{"x":-55,"y":62},{"x":-88,"y":-45},{"x":14,"y":-38},{"x":-35,"y":10},{"x":-19,"y":-152},{"x":-37,"y":52},{"x":17,"y":89},{"x":-26,"y":12},{"x":54,"y":30},{"x":-62,"y":-17},{"x":-53,"y":69},{"x":2,"y":-30},{"x":-58,"y":-11},{"x":54,"y":-5},{"x":-44,"y":-17},{"x":32,"y":2},{"x":-31,"y":-12},{"x":17,"y":-11},{"x":46,"y":22},{"x":-37,"y":-50},{"x":46,"y":1},{"x":-24,"y":-43},{"x":26,"y":-21},{"x":-27,"y":-7},{"x":35,"y":-12},{"x":-4,"y":-45},{"x":-55,"y":56},{"x":-22,"y":-62},{"x":9,"y":75},{"x":-39,"y":31},{"x":-16,"y":-43},{"x":-8,"y":51},{"x":-45,"y":-8},{"x":30,"y":-11},{"x":-29,"y":-2},{"x":19,"y":-19},{"x":-14,"y":-15},{"x":-26,"y":59},{"x":-47,"y":9},{"x":-11,"y":-48},{"x":49,"y":26},{"x":-21,"y":-42},{"x":43,"y":-13},{"x":36,"y":9},{"x":-13,"y":-27},{"x":-57,"y":20},{"x":49,"y":-26},{"x":-19,"y":-48},{"x":-66,"y":85},{"x":-24,"y":-38},{"x":48,"y":-21},{"x":-76,"y":17},{"x":-104,"y":-104},{"x":50,"y":-35},{"x":84,"y":65},{"x":-22,"y":-61},{"x":-69,"y":-33},{"x":108,"y":-27},{"x":-55,"y":-6},{"x":30,"y":-12},{"x":-32,"y":-36},{"x":76,"y":48},{"x":28,"y":-16},{"x":-87,"y":-29},{"x":94,"y":23},{"x":15,"y":-36},{"x":20,"y":67},{"x":30,"y":-19},{"x":-52,"y":117},{"x":82,"y":-55},{"x":-5,"y":-34},{"x":31,"y":46},{"x":31,"y":-11},{"x":-20,"y":33},{"x":52,"y":-5},{"x":3,"y":-60},{"x":13,"y":67},{"x":-33,"y":15},{"x":28,"y":-4},{"x":-12,"y":35},{"x":34,"y":24},{"x":-11,"y":-59},{"x":36,"y":21},{"x":-22,"y":-38},{"x":51,"y":24},{"x":-40,"y":-53},{"x":53,"y":52},{"x":18,"y":-25},{"x":-32,"y":-33},{"x":70,"y":29},{"x":-6,"y":-48},{"x":39,"y":29},{"x":13,"y":-19},{"x":-11,"y":-41},{"x":53,"y":33},{"x":-8,"y":46},{"x":42,"y":19},{"x":-17,"y":-27},{"x":38,"y":-24},{"x":66,"y":73},{"x":24,"y":-65},{"x":-54,"y":-15},{"x":17,"y":-28},{"x":-61,"y":11},{"x":23,"y":-43},{"x":-57,"y":-29},{"x":77,"y":-7},{"x":49,"y":47},{"x":38,"y":-8},{"x":-92,"y":-73},{"x":-31,"y":7},{"x":7,"y":-22},{"x":-41,"y":17},{"x":59,"y":-67},{"x":-101,"y":67},{"x":9,"y":-60},{"x":-43,"y":37},{"x":-52,"y":0},{"x":-7,"y":-22},{"x":65,"y":-26},{"x":-94,"y":0},{"x":65,"y":-16},{"x":-131,"y":-27},{"x":-29,"y":-43},{"x":97,"y":25},{"x":-55,"y":-30},{"x":-2,"y":-18},{"x":41,"y":7},{"x":-43,"y":-33},{"x":82,"y":-21},{"x":46,"y":87},{"x":52,"y":12},{"x":-51,"y":-56},{"x":120,"y":-26},{"x":6,"y":29},{"x":23,"y":-27},{"x":-38,"y":-20},{"x":36,"y":-10},{"x":31,"y":25},{"x":-17,"y":35},{"x":28,"y":-26},{"x":48,"y":65},{"x":34,"y":-23},{"x":-1,"y":42},{"x":28,"y":-33},{"x":-19,"y":-28},{"x":25,"y":-13},{"x":-42,"y":11},{"x":-15,"y":-25},{"x":40,"y":-54},{"x":-46,"y":38},{"x":-42,"y":-43},{"x":52,"y":-64},{"x":41,"y":23},{"x":33,"y":-15},{"x":-36,"y":2},{"x":-14,"y":-51},{"x":-97,"y":89},{"x":-72,"y":-31},{"x":28,"y":-52},{"x":-44,"y":-31},{"x":6,"y":43},{"x":-57,"y":6},{"x":-37,"y":114},{"x":-2,"y":-47},{"x":-29,"y":11},{"x":49,"y":-50},{"x":-41,"y":-5},{"x":-31,"y":38},{"x":-95,"y":-33},{"x":79,"y":7},{"x":14,"y":-40},{"x":52,"y":-21},{"x":-59,"y":-12},{"x":-5,"y":40},{"x":-38,"y":-6},{"x":32,"y":-41},{"x":72,"y":-15},{"x":-13,"y":-79},{"x":19,"y":54},{"x":24,"y":-15},{"x":-31,"y":-57},{"x":-25,"y":13},{"x":31,"y":-27},{"x":-50,"y":-65},{"x":5,"y":-80},{"x":28,"y":-80},{"x":86,"y":-49},{"x":66,"y":129},{"x":-35,"y":6},{"x":-7,"y":-23},{"x":-95,"y":74},{"x":61,"y":43},{"x":17,"y":-38},{"x":19,"y":29},{"x":19,"y":-19},{"x":-5,"y":81},{"x":78,"y":58},{"x":-16,"y":45},{"x":132,"y":-10},{"x":-45,"y":-9},{"x":32,"y":-47},{"x":178,"y":50},{"x":108,"y":-20},{"x":-28,"y":36},{"x":23,"y":68},{"x":22,"y":-77},{"x":26,"y":-16},{"x":10,"y":24},{"x":32,"y":-45},{"x":5,"y":21},{"x":23,"y":-18},{"x":1,"y":78},{"x":26,"y":-56},{"x":15,"y":52},{"x":19,"y":-61},{"x":67,"y":11},{"x":23,"y":91},{"x":-39,"y":40},{"x":-52,"y":-10},{"x":-10,"y":39},{"x":114,"y":-19},{"x":-14,"y":32},{"x":31,"y":-19},{"x":12,"y":59},{"x":52,"y":-14},{"x":21,"y":26},{"x":-53,"y":72},{"x":52,"y":-11},{"x":0,"y":-37},{"x":51,"y":37},{"x":30,"y":-48},{"x":-43,"y":1},{"x":16,"y":-18},{"x":-101,"y":-58},{"x":-22,"y":-104},{"x":36,"y":19},{"x":46,"y":-80},{"x":57,"y":33},{"x":57,"y":-33},{"x":112,"y":49},{"x":-9,"y":37},{"x":26,"y":-6},{"x":34,"y":70},{"x":13,"y":-21},{"x":85,"y":23},{"x":28,"y":28},{"x":69,"y":-1},{"x":43,"y":52},{"x":37,"y":-15},{"x":103,"y":38},{"x":-26,"y":42},{"x":-86,"y":-11},{"x":39,"y":5},{"x":-25,"y":32},{"x":39,"y":-24},{"x":57,"y":42},{"x":28,"y":-20},{"x":12,"y":55},{"x":67,"y":-28},{"x":-17,"y":55},{"x":-51,"y":-3},{"x":-18,"y":28},{"x":7,"y":48},{"x":60,"y":26},{"x":-26,"y":54},{"x":46,"y":-44},{"x":-26,"y":-34},{"x":35,"y":26},{"x":-5,"y":-39},{"x":-52,"y":-10},{"x":13,"y":-29},{"x":163,"y":1},{"x":-13,"y":-111},{"x":88,"y":15},{"x":16,"y":-28},{"x":-26,"y":11},{"x":-6,"y":-31},{"x":68,"y":-2},{"x":6,"y":-39},{"x":33,"y":14},{"x":-114,"y":-88},{"x":1,"y":-51},{"x":62,"y":-23},{"x":61,"y":8},{"x":6,"y":42},{"x":15,"y":-15},{"x":33,"y":46},{"x":81,"y":14},{"x":54,"y":63},{"x":129,"y":-9},{"x":230,"y":102},{"x":193,"y":15},{"x":23,"y":109},{"x":-110,"y":13},{"x":70,"y":53},{"x":44,"y":86},{"x":-39,"y":73},{"x":-69,"y":16},{"x":78,"y":75},{"x":-80,"y":121},{"x":10,"y":54},{"x":26,"y":-74},{"x":70,"y":-28},{"x":10,"y":36},{"x":37,"y":3},{"x":-21,"y":54},{"x":101,"y":-2},{"x":11,"y":59},{"x":50,"y":13},{"x":-18,"y":-21},{"x":25,"y":-11},{"x":30,"y":58},{"x":47,"y":5},{"x":-26,"y":85},{"x":36,"y":46},{"x":-23,"y":33},{"x":-44,"y":-8},{"x":8,"y":51},{"x":81,"y":-42},{"x":10,"y":-49},{"x":-34,"y":-43},{"x":31,"y":-22},{"x":61,"y":32},{"x":6,"y":-36},{"x":25,"y":6},{"x":62,"y":67},{"x":-61,"y":-27},{"x":27,"y":62},{"x":-38,"y":29},{"x":44,"y":55},{"x":-26,"y":11},{"x":51,"y":-9},{"x":4,"y":36},{"x":21,"y":-20},{"x":53,"y":64}],"type":"coastline"},{"arc":[{"x":101202,"y":50810},{"x":-15,"y":52},{"x":-28,"y":-66},{"x":43,"y":14}],"type":"coastline"},{"arc":[{"x":91925,"y":52327},{"x":-28,"y":64},{"x":-42,"y":-75},{"x":22,"y":17},{"x":18,"y":-42},{"x":30,"y":36}],"type":"coastline"},{"arc":[{"x":91925,"y":52478},{"x":-53,"y":45},{"x":-67,"y":-54},{"x":57,"y":-24},{"x":26,"y":37},{"x":37,"y":-4}],"type":"coastline"},{"arc":[{"x":91983,"y":53344},{"x":-28,"y":27},{"x":-40,"y":-36},{"x":31,"y":-24},{"x":37,"y":33}],"type":"coastline"},{"arc":[{"x":92065,"y":52388},{"x":-38,"y":9},{"x":7,"y":58},{"x":-46,"y":-12},{"x":24,"y":-28},{"x":-37,"y":16},{"x":-40,"y":-91},{"x":98,"y":-20},{"x":6,"y":66},{"x":26,"y":2}],"type":"coastline"},{"arc":[{"x":92905,"y":52569},{"x":-57,"y":16},{"x":24,"y":-25},{"x":33,"y":9}],"type":"coastline"},{"arc":[{"x":93186,"y":52917},{"x":-8,"y":45},{"x":-24,"y":-26},{"x":-40,"y":23},{"x":7,"y":77},{"x":-62,"y":45},{"x":-52,"y":291},{"x":17,"y":48},{"x":-42,"y":34},{"x":-35,"y":-42},{"x":-54,"y":-2},{"x":15,"y":-20},{"x":-43,"y":19},{"x":-40,"y":-27},{"x":-52,"y":8},{"x":-37,"y":-37},{"x":-34,"y":39},{"x":-55,"y":-128},{"x":5,"y":46},{"x":-44,"y":23},{"x":38,"y":20},{"x":-82,"y":48},{"x":-33,"y":75},{"x":21,"y":20},{"x":-87,"y":63},{"x":8,"y":102},{"x":-85,"y":-27},{"x":27,"y":-46},{"x":11,"y":26},{"x":-14,"y":-47},{"x":35,"y":-11},{"x":-20,"y":-42},{"x":25,"y":-62},{"x":-22,"y":3},{"x":5,"y":-74},{"x":-82,"y":-45},{"x":-80,"y":61},{"x":11,"y":49},{"x":49,"y":5},{"x":-19,"y":38},{"x":24,"y":-5},{"x":-48,"y":80},{"x":-57,"y":24},{"x":3,"y":65},{"x":-91,"y":-7},{"x":6,"y":-41},{"x":28,"y":8},{"x":-23,"y":-43},{"x":-63,"y":-7},{"x":-15,"y":22},{"x":-26,"y":-29},{"x":-19,"y":19},{"x":-39,"y":-190},{"x":18,"y":-37},{"x":24,"y":15},{"x":-15,"y":-41},{"x":29,"y":-19},{"x":-47,"y":-1},{"x":19,"y":-33},{"x":-50,"y":-104},{"x":20,"y":18},{"x":15,"y":-30},{"x":-107,"y":-1},{"x":-31,"y":-72},{"x":-22,"y":20},{"x":-58,"y":-74},{"x":-50,"y":37},{"x":-32,"y":-37},{"x":35,"y":-7},{"x":-71,"y":-9},{"x":64,"y":-56},{"x":14,"y":-136},{"x":33,"y":13},{"x":24,"y":-42},{"x":4,"y":48},{"x":80,"y":12},{"x":-56,"y":-46},{"x":25,"y":-47},{"x":29,"y":4},{"x":7,"y":-58},{"x":61,"y":42},{"x":36,"y":-29},{"x":-18,"y":17},{"x":57,"y":53},{"x":8,"y":-34},{"x":46,"y":-6},{"x":-29,"y":-9},{"x":23,"y":-31},{"x":10,"y":25},{"x":52,"y":-38},{"x":-2,"y":-29},{"x":56,"y":17},{"x":-14,"y":-50},{"x":-26,"y":12},{"x":-47,"y":-40},{"x":-12,"y":34},{"x":-18,"y":-88},{"x":-83,"y":3},{"x":1,"y":-31},{"x":86,"y":0},{"x":42,"y":-57},{"x":101,"y":64},{"x":1,"y":-57},{"x":36,"y":20},{"x":-14,"y":-39},{"x":44,"y":26},{"x":-19,"y":-44},{"x":49,"y":19},{"x":14,"y":51},{"x":-24,"y":40},{"x":-27,"y":-15},{"x":-11,"y":42},{"x":44,"y":1},{"x":-63,"y":31},{"x":6,"y":49},{"x":28,"y":2},{"x":-106,"y":88},{"x":18,"y":33},{"x":48,"y":-52},{"x":32,"y":22},{"x":11,"y":-48},{"x":25,"y":32},{"x":15,"y":-48},{"x":41,"y":31},{"x":-16,"y":-147},{"x":124,"y":-29},{"x":10,"y":41},{"x":93,"y":-79},{"x":-36,"y":49},{"x":25,"y":0},{"x":16,"y":80},{"x":60,"y":-136},{"x":72,"y":57},{"x":-10,"y":36},{"x":-48,"y":4},{"x":22,"y":35},{"x":-69,"y":2},{"x":18,"y":36},{"x":-58,"y":-2},{"x":-22,"y":36},{"x":28,"y":-21},{"x":56,"y":35},{"x":-3,"y":87},{"x":58,"y":-38},{"x":-20,"y":-20},{"x":84,"y":-27},{"x":11,"y":-41},{"x":25,"y":31},{"x":30,"y":-50},{"x":80,"y":25},{"x":39,"y":-16},{"x":95,"y":43},{"x":-64,"y":12},{"x":30,"y":40},{"x":27,"y":-38},{"x":97,"y":82},{"x":-17,"y":36},{"x":-15,"y":-24},{"x":-24,"y":20},{"x":43,"y":16},{"x":-16,"y":72},{"x":30,"y":-85},{"x":41,"y":45},{"x":-11,"y":39},{"x":28,"y":0}],"type":"coastline"},{"arc":[{"x":93236,"y":52893},{"x":-33,"y":19},{"x":4,"y":-72},{"x":29,"y":53}],"type":"coastline"},{"arc":[{"x":93258,"y":52774},{"x":-7,"y":38},{"x":-86,"y":-9},{"x":23,"y":-51},{"x":53,"y":-7},{"x":17,"y":29}],"type":"coastline"},{"arc":[{"x":93255,"y":52734},{"x":-80,"y":-18},{"x":19,"y":-33},{"x":42,"y":-6},{"x":19,"y":57}],"type":"coastline"},{"arc":[{"x":75576,"y":42383},{"x":-48,"y":15},{"x":-56,"y":-52},{"x":-75,"y":27},{"x":-5,"y":-49},{"x":80,"y":9},{"x":76,"y":-50},{"x":28,"y":100}],"type":"coastline"},{"arc":[{"x":75639,"y":42446},{"x":-65,"y":-21},{"x":37,"y":-19},{"x":28,"y":40}],"type":"coastline"},{"arc":[{"x":75785,"y":42511},{"x":-23,"y":19},{"x":-39,"y":-50},{"x":62,"y":31}],"type":"coastline"},{"arc":[{"x":75835,"y":42560},{"x":-46,"y":14},{"x":21,"y":-28},{"x":25,"y":14}],"type":"coastline"},{"arc":[{"x":76014,"y":42676},{"x":-52,"y":94},{"x":36,"y":52},{"x":-18,"y":26},{"x":-127,"y":-84},{"x":49,"y":-44},{"x":-39,"y":-60},{"x":1,"y":-82},{"x":26,"y":-4},{"x":17,"y":84},{"x":107,"y":18}],"type":"coastline"},{"arc":[{"x":80921,"y":46674},{"x":-46,"y":17},{"x":-47,"y":-21},{"x":19,"y":-98},{"x":65,"y":5},{"x":9,"y":97}],"type":"coastline"},{"arc":[{"x":81032,"y":45209},{"x":-36,"y":38},{"x":0,"y":-117},{"x":36,"y":79}],"type":"coastline"},{"arc":[{"x":81103,"y":46660},{"x":-42,"y":4},{"x":6,"y":-59},{"x":36,"y":55}],"type":"coastline"},{"arc":[{"x":81145,"y":46683},{"x":-29,"y":6},{"x":5,"y":-24},{"x":24,"y":18}],"type":"coastline"},{"arc":[{"x":81182,"y":46831},{"x":-51,"y":33},{"x":-15,"y":-18},{"x":30,"y":-99},{"x":36,"y":84}],"type":"coastline"},{"arc":[{"x":81247,"y":46096},{"x":-5,"y":63},{"x":-93,"y":5},{"x":31,"y":-105},{"x":67,"y":37}],"type":"coastline"},{"arc":[{"x":81358,"y":45695},{"x":-13,"y":23},{"x":-16,"y":-36},{"x":29,"y":13}],"type":"coastline"},{"arc":[{"x":81398,"y":45673},{"x":-7,"y":23},{"x":-16,"y":-23},{"x":23,"y":0}],"type":"coastline"},{"arc":[{"x":81951,"y":44557},{"x":-67,"y":47},{"x":-34,"y":-52},{"x":-50,"y":50},{"x":4,"y":-100},{"x":-51,"y":22},{"x":-3,"y":41},{"x":-36,"y":-65},{"x":-4,"y":57},{"x":-49,"y":7},{"x":-5,"y":-34},{"x":-23,"y":38},{"x":-5,"y":-51},{"x":-76,"y":-2},{"x":-1,"y":-55},{"x":84,"y":-43},{"x":108,"y":-8},{"x":113,"y":86},{"x":69,"y":8},{"x":26,"y":54}],"type":"coastline"},{"arc":[{"x":82255,"y":46617},{"x":-56,"y":5},{"x":21,"y":37},{"x":-31,"y":17},{"x":-24,"y":-56},{"x":-23,"y":22},{"x":-19,"y":-25},{"x":-19,"y":29},{"x":-18,"y":-37},{"x":134,"y":-29},{"x":35,"y":37}],"type":"coastline"},{"arc":[{"x":82367,"y":46266},{"x":-42,"y":17},{"x":17,"y":-42},{"x":25,"y":25}],"type":"coastline"},{"arc":[{"x":82441,"y":46341},{"x":-48,"y":-3},{"x":-13,"y":45},{"x":-47,"y":-43},{"x":79,"y":-45},{"x":29,"y":46}],"type":"coastline"},{"arc":[{"x":82527,"y":44334},{"x":-43,"y":31},{"x":-66,"y":-76},{"x":-28,"y":9},{"x":26,"y":15},{"x":-153,"y":-16},{"x":-1,"y":-77},{"x":139,"y":-8},{"x":117,"y":81},{"x":9,"y":41}],"type":"coastline"},{"arc":[{"x":82495,"y":45645},{"x":42,"y":-18},{"x":26,"y":21},{"x":-68,"y":-3}],"type":"coastline"},{"arc":[{"x":82625,"y":46472},{"x":-101,"y":-10},{"x":-1,"y":-72},{"x":56,"y":6},{"x":-26,"y":21},{"x":53,"y":8},{"x":19,"y":47}],"type":"coastline"},{"arc":[{"x":82688,"y":47038},{"x":-18,"y":18},{"x":-6,"y":-35},{"x":24,"y":17}],"type":"coastline"},{"arc":[{"x":82874,"y":47083},{"x":-86,"y":77},{"x":-59,"y":-15},{"x":22,"y":-81},{"x":83,"y":-16},{"x":40,"y":35}],"type":"coastline"},{"arc":[{"x":83007,"y":47357},{"x":-183,"y":115},{"x":-37,"y":-40},{"x":-75,"y":17},{"x":-49,"y":-32},{"x":-1,"y":53},{"x":-45,"y":-50},{"x":4,"y":-62},{"x":42,"y":-42},{"x":-123,"y":-10},{"x":40,"y":-55},{"x":-21,"y":-54},{"x":42,"y":-5},{"x":-15,"y":-66},{"x":58,"y":10},{"x":9,"y":51},{"x":15,"y":-19},{"x":32,"y":48},{"x":-12,"y":29},{"x":29,"y":5},{"x":-37,"y":69},{"x":103,"y":-3},{"x":21,"y":33},{"x":2,"y":-25},{"x":80,"y":-26},{"x":38,"y":20},{"x":-9,"y":36},{"x":56,"y":-29},{"x":36,"y":32}],"type":"coastline"},{"arc":[{"x":83074,"y":45918},{"x":-189,"y":3},{"x":-30,"y":-38},{"x":-140,"y":171},{"x":-43,"y":-28},{"x":6,"y":-30},{"x":37,"y":7},{"x":-37,"y":-35},{"x":12,"y":-62},{"x":-30,"y":16},{"x":-25,"y":-45},{"x":2,"y":52},{"x":-48,"y":25},{"x":35,"y":9},{"x":30,"y":108},{"x":27,"y":-15},{"x":39,"y":55},{"x":-44,"y":40},{"x":-18,"y":-69},{"x":-99,"y":-40},{"x":-38,"y":17},{"x":32,"y":9},{"x":-15,"y":24},{"x":70,"y":-19},{"x":30,"y":32},{"x":-70,"y":24},{"x":27,"y":65},{"x":20,"y":-20},{"x":32,"y":49},{"x":-67,"y":61},{"x":-40,"y":-2},{"x":23,"y":-78},{"x":-24,"y":-23},{"x":-61,"y":16},{"x":-100,"y":-39},{"x":-81,"y":27},{"x":-26,"y":-29},{"x":-74,"y":33},{"x":-10,"y":45},{"x":-20,"y":-26},{"x":-11,"y":44},{"x":-45,"y":-33},{"x":14,"y":46},{"x":-61,"y":-3},{"x":-27,"y":-32},{"x":9,"y":37},{"x":18,"y":4},{"x":7,"y":24},{"x":25,"y":-5},{"x":-34,"y":8},{"x":-51,"y":2},{"x":-175,"y":214},{"x":-54,"y":-12},{"x":-34,"y":34},{"x":13,"y":-29},{"x":-33,"y":11},{"x":-1,"y":35},{"x":26,"y":-9},{"x":-46,"y":61},{"x":-126,"y":-29},{"x":11,"y":-67},{"x":-37,"y":-80},{"x":62,"y":-45},{"x":-80,"y":-369},{"x":78,"y":-56},{"x":19,"y":31},{"x":4,"y":-58},{"x":65,"y":7},{"x":18,"y":-34},{"x":-104,"y":-199},{"x":1,"y":-90},{"x":-61,"y":-36},{"x":-7,"y":22},{"x":-31,"y":-27},{"x":-79,"y":14},{"x":-19,"y":-40},{"x":-40,"y":1},{"x":-30,"y":38},{"x":56,"y":6},{"x":-24,"y":42},{"x":-34,"y":-26},{"x":13,"y":24},{"x":-50,"y":11},{"x":-2,"y":73},{"x":-128,"y":83},{"x":-70,"y":-5},{"x":-32,"y":-34},{"x":32,"y":-47},{"x":-40,"y":19},{"x":-13,"y":-44},{"x":-66,"y":-41},{"x":5,"y":38},{"x":-52,"y":-59},{"x":43,"y":-144},{"x":99,"y":-38},{"x":-20,"y":21},{"x":21,"y":-16},{"x":12,"y":23},{"x":163,"y":-129},{"x":-34,"y":-152},{"x":17,"y":-157},{"x":-29,"y":-59},{"x":55,"y":-178},{"x":-62,"y":-78},{"x":-65,"y":41},{"x":-43,"y":-36},{"x":42,"y":-83},{"x":-12,"y":-73},{"x":102,"y":-38},{"x":41,"y":-55},{"x":2,"y":-88},{"x":54,"y":-71},{"x":-22,"y":-43},{"x":67,"y":15},{"x":77,"y":67},{"x":85,"y":-18},{"x":100,"y":37},{"x":-8,"y":37},{"x":-55,"y":-9},{"x":7,"y":29},{"x":-49,"y":-25},{"x":-16,"y":55},{"x":-44,"y":-74},{"x":-80,"y":-5},{"x":-8,"y":29},{"x":50,"y":-8},{"x":50,"y":31},{"x":-32,"y":55},{"x":-36,"y":-24},{"x":-16,"y":44},{"x":-42,"y":-28},{"x":21,"y":42},{"x":-98,"y":66},{"x":12,"y":67},{"x":-65,"y":-36},{"x":83,"y":100},{"x":72,"y":-40},{"x":94,"y":133},{"x":62,"y":-9},{"x":-167,"y":-190},{"x":41,"y":8},{"x":10,"y":-47},{"x":29,"y":20},{"x":10,"y":-31},{"x":58,"y":5},{"x":10,"y":58},{"x":43,"y":-29},{"x":-6,"y":45},{"x":35,"y":-18},{"x":-37,"y":70},{"x":27,"y":20},{"x":50,"y":-70},{"x":63,"y":-19},{"x":-64,"y":87},{"x":-22,"y":96},{"x":40,"y":-41},{"x":39,"y":10},{"x":-8,"y":-55},{"x":46,"y":-50},{"x":22,"y":72},{"x":-80,"y":97},{"x":150,"y":-63},{"x":13,"y":97},{"x":34,"y":1},{"x":0,"y":26},{"x":5,"y":-69},{"x":-28,"y":-15},{"x":23,"y":-48},{"x":-18,"y":-10},{"x":63,"y":-17},{"x":31,"y":-74},{"x":46,"y":33},{"x":61,"y":-4},{"x":83,"y":-42},{"x":33,"y":64},{"x":-26,"y":8},{"x":-1,"y":55},{"x":47,"y":-42},{"x":24,"y":26},{"x":24,"y":-14},{"x":-8,"y":-36},{"x":58,"y":0},{"x":-35,"y":-15},{"x":112,"y":-66},{"x":118,"y":19},{"x":55,"y":47},{"x":83,"y":-54},{"x":60,"y":9},{"x":-11,"y":-26},{"x":47,"y":-33},{"x":29,"y":46},{"x":107,"y":38},{"x":89,"y":105},{"x":-29,"y":33},{"x":-15,"y":-15},{"x":-13,"y":117},{"x":-53,"y":-8},{"x":-38,"y":26},{"x":-24,"y":102},{"x":-122,"y":-4},{"x":-84,"y":29},{"x":32,"y":-36},{"x":-39,"y":29},{"x":8,"y":-46},{"x":-65,"y":-18},{"x":-7,"y":53},{"x":1,"y":39},{"x":36,"y":6},{"x":-27,"y":24},{"x":36,"y":-26},{"x":71,"y":45},{"x":-29,"y":25},{"x":21,"y":45},{"x":36,"y":2},{"x":45,"y":145},{"x":-11,"y":30},{"x":-30,"y":-29},{"x":-4,"y":-94},{"x":-17,"y":57},{"x":-39,"y":-61},{"x":38,"y":138},{"x":-65,"y":-54},{"x":-61,"y":2},{"x":8,"y":25},{"x":45,"y":-4},{"x":97,"y":89},{"x":-12,"y":-82},{"x":55,"y":46},{"x":7,"y":65},{"x":46,"y":-24},{"x":47,"y":14},{"x":5,"y":44},{"x":-63,"y":45},{"x":-10,"y":-21},{"x":-15,"y":24},{"x":-44,"y":-12},{"x":-19,"y":49},{"x":-106,"y":-11},{"x":-65,"y":22},{"x":-8,"y":29},{"x":20,"y":36},{"x":135,"y":-38},{"x":99,"y":151},{"x":-55,"y":47},{"x":96,"y":-47},{"x":-32,"y":-65},{"x":20,"y":-27},{"x":-82,"y":-47},{"x":59,"y":-73},{"x":104,"y":88},{"x":53,"y":-9},{"x":-32,"y":90},{"x":21,"y":41},{"x":43,"y":-24},{"x":33,"y":63},{"x":41,"y":-62},{"x":30,"y":120},{"x":53,"y":30}],"type":"coastline"},{"arc":[{"x":83165,"y":46899},{"x":-78,"y":15},{"x":4,"y":-65},{"x":34,"y":16},{"x":-17,"y":26},{"x":55,"y":-30},{"x":2,"y":38}],"type":"coastline"},{"arc":[{"x":83190,"y":44915},{"x":-68,"y":11},{"x":36,"y":-77},{"x":32,"y":66}],"type":"coastline"},{"arc":[{"x":83517,"y":46349},{"x":-104,"y":158},{"x":-72,"y":9},{"x":-2,"y":39},{"x":-18,"y":-26},{"x":-24,"y":107},{"x":-66,"y":-3},{"x":-11,"y":43},{"x":-101,"y":-21},{"x":-42,"y":59},{"x":-22,"y":-51},{"x":-89,"y":-23},{"x":-22,"y":-65},{"x":-85,"y":-56},{"x":-88,"y":-10},{"x":-25,"y":-39},{"x":1,"y":-116},{"x":140,"y":-109},{"x":3,"y":-53},{"x":54,"y":-21},{"x":-47,"y":-19},{"x":-16,"y":25},{"x":14,"y":-45},{"x":29,"y":-10},{"x":71,"y":26},{"x":79,"y":-42},{"x":34,"y":55},{"x":105,"y":3},{"x":37,"y":-34},{"x":131,"y":29},{"x":-9,"y":-57},{"x":84,"y":43},{"x":-46,"y":48},{"x":5,"y":48},{"x":-44,"y":-17},{"x":12,"y":60},{"x":55,"y":3},{"x":-15,"y":41},{"x":-113,"y":30},{"x":-70,"y":-29},{"x":-71,"y":37},{"x":-15,"y":41},{"x":-23,"y":-75},{"x":-22,"y":7},{"x":-29,"y":115},{"x":52,"y":15},{"x":-11,"y":-20},{"x":51,"y":-28},{"x":25,"y":43},{"x":51,"y":-21},{"x":13,"y":19},{"x":39,"y":-85},{"x":24,"y":15},{"x":28,"y":-29},{"x":34,"y":27},{"x":18,"y":-31},{"x":102,"y":-28},{"x":11,"y":18}],"type":"coastline"},{"arc":[{"x":83603,"y":47709},{"x":-42,"y":30},{"x":-57,"y":-9},{"x":18,"y":-24},{"x":81,"y":3}],"type":"coastline"},{"arc":[{"x":83688,"y":47440},{"x":-67,"y":18},{"x":-17,"y":-25},{"x":54,"y":-20},{"x":30,"y":27}],"type":"coastline"},{"arc":[{"x":83747,"y":47660},{"x":-16,"y":29},{"x":-74,"y":-9},{"x":90,"y":-20}],"type":"coastline"},{"arc":[{"x":83757,"y":47735},{"x":-61,"y":43},{"x":13,"y":-43},{"x":48,"y":0}],"type":"coastline"},{"arc":[{"x":83878,"y":47683},{"x":-141,"y":7},{"x":47,"y":-46},{"x":87,"y":4},{"x":7,"y":35}],"type":"coastline"},{"arc":[{"x":83896,"y":46956},{"x":-129,"y":122},{"x":-187,"y":59},{"x":-5,"y":-63},{"x":-43,"y":-23},{"x":-38,"y":30},{"x":-79,"y":-27},{"x":-16,"y":52},{"x":-34,"y":-17},{"x":47,"y":-84},{"x":-54,"y":-47},{"x":-93,"y":27},{"x":7,"y":37},{"x":-31,"y":16},{"x":-153,"y":-91},{"x":76,"y":17},{"x":-7,"y":-22},{"x":94,"y":-16},{"x":67,"y":16},{"x":47,"y":-37},{"x":-121,"y":-5},{"x":45,"y":-158},{"x":42,"y":8},{"x":-32,"y":42},{"x":14,"y":64},{"x":28,"y":-15},{"x":19,"y":24},{"x":78,"y":-78},{"x":64,"y":1},{"x":-34,"y":-57},{"x":44,"y":6},{"x":62,"y":-100},{"x":47,"y":19},{"x":22,"y":-59},{"x":57,"y":-33},{"x":-19,"y":-26},{"x":-79,"y":34},{"x":-17,"y":-17},{"x":13,"y":-74},{"x":77,"y":-12},{"x":4,"y":-52},{"x":57,"y":54},{"x":-13,"y":80},{"x":105,"y":-10},{"x":8,"y":51},{"x":-81,"y":48},{"x":47,"y":44},{"x":-50,"y":39},{"x":6,"y":35},{"x":-86,"y":39},{"x":-3,"y":-24},{"x":-71,"y":67},{"x":-50,"y":-18},{"x":-26,"y":35},{"x":-60,"y":0},{"x":-10,"y":33},{"x":35,"y":-19},{"x":74,"y":49},{"x":196,"y":-113},{"x":19,"y":41},{"x":-93,"y":56},{"x":-67,"y":6},{"x":-31,"y":40},{"x":-27,"y":-12},{"x":2,"y":30},{"x":129,"y":-5},{"x":99,"y":54},{"x":73,"y":-66},{"x":35,"y":5}],"type":"coastline"},{"arc":[{"x":83972,"y":47720},{"x":-61,"y":45},{"x":14,"y":-65},{"x":47,"y":20}],"type":"coastline"},{"arc":[{"x":84012,"y":46765},{"x":-103,"y":-10},{"x":32,"y":-88},{"x":6,"y":46},{"x":65,"y":52}],"type":"coastline"},{"arc":[{"x":84046,"y":46969},{"x":-42,"y":31},{"x":12,"y":-38},{"x":30,"y":7}],"type":"coastline"},{"arc":[{"x":84218,"y":47771},{"x":-26,"y":16},{"x":-1,"y":-38},{"x":27,"y":22}],"type":"coastline"},{"arc":[{"x":84275,"y":48895},{"x":-35,"y":54},{"x":-35,"y":-87},{"x":42,"y":-1},{"x":28,"y":34}],"type":"coastline"},{"arc":[{"x":84349,"y":47124},{"x":-26,"y":47},{"x":-106,"y":-16},{"x":-29,"y":-102},{"x":-73,"y":24},{"x":15,"y":18},{"x":20,"y":-3},{"x":-6,"y":31},{"x":30,"y":16},{"x":-21,"y":40},{"x":-70,"y":-59},{"x":24,"y":-42},{"x":27,"y":-23},{"x":-40,"y":-49},{"x":44,"y":-89},{"x":77,"y":-48},{"x":66,"y":41},{"x":-3,"y":87},{"x":-53,"y":11},{"x":-31,"y":64},{"x":108,"y":7},{"x":47,"y":45}],"type":"coastline"},{"arc":[{"x":84354,"y":47334},{"x":-52,"y":70},{"x":-75,"y":18},{"x":61,"y":74},{"x":-22,"y":41},{"x":-40,"y":5},{"x":-20,"y":-27},{"x":2,"y":60},{"x":-46,"y":23},{"x":-99,"y":-18},{"x":16,"y":50},{"x":-66,"y":-17},{"x":39,"y":37},{"x":-40,"y":20},{"x":-75,"y":-83},{"x":9,"y":79},{"x":-46,"y":-47},{"x":-75,"y":20},{"x":-37,"y":-66},{"x":2,"y":52},{"x":-33,"y":15},{"x":-10,"y":-19},{"x":-62,"y":14},{"x":11,"y":-41},{"x":-89,"y":55},{"x":-94,"y":-27},{"x":38,"y":-25},{"x":-27,"y":-37},{"x":40,"y":-10},{"x":22,"y":26},{"x":8,"y":-63},{"x":21,"y":80},{"x":25,"y":-14},{"x":-10,"y":-84},{"x":41,"y":18},{"x":5,"y":75},{"x":61,"y":-66},{"x":-11,"y":-44},{"x":-39,"y":26},{"x":-24,"y":-38},{"x":73,"y":-42},{"x":16,"y":-46},{"x":-38,"y":-17},{"x":8,"y":-59},{"x":-75,"y":-41},{"x":10,"y":-33},{"x":111,"y":39},{"x":-11,"y":-99},{"x":25,"y":-23},{"x":53,"y":72},{"x":40,"y":-45},{"x":201,"y":-59},{"x":-2,"y":77},{"x":-73,"y":2},{"x":25,"y":25},{"x":-34,"y":65},{"x":-140,"y":24},{"x":90,"y":-4},{"x":47,"y":42},{"x":-99,"y":63},{"x":-55,"y":-3},{"x":31,"y":43},{"x":128,"y":-60},{"x":71,"y":36},{"x":-55,"y":-60},{"x":71,"y":-103},{"x":48,"y":22},{"x":-11,"y":38},{"x":101,"y":-82},{"x":14,"y":72},{"x":46,"y":9},{"x":-16,"y":20},{"x":64,"y":-63},{"x":27,"y":58}],"type":"coastline"},{"arc":[{"x":84665,"y":47335},{"x":-39,"y":54},{"x":-85,"y":-16},{"x":11,"y":-51},{"x":-33,"y":-15},{"x":23,"y":-16},{"x":-85,"y":-10},{"x":43,"y":-44},{"x":10,"y":23},{"x":88,"y":-22},{"x":8,"y":55},{"x":59,"y":42}],"type":"coastline"},{"arc":[{"x":84929,"y":47607},{"x":-172,"y":7},{"x":82,"y":-8},{"x":19,"y":-29},{"x":71,"y":30}],"type":"coastline"},{"arc":[{"x":85132,"y":47662},{"x":-67,"y":-45},{"x":32,"y":-28},{"x":-92,"y":-104},{"x":11,"y":-35},{"x":110,"y":89},{"x":6,"y":123}],"type":"coastline"},{"arc":[{"x":85180,"y":48889},{"x":-18,"y":56},{"x":-98,"y":4},{"x":-12,"y":-133},{"x":28,"y":-29},{"x":53,"y":-12},{"x":-7,"y":116},{"x":54,"y":-2}],"type":"coastline"},{"arc":[{"x":85209,"y":48845},{"x":-23,"y":20},{"x":-7,"y":-62},{"x":30,"y":42}],"type":"coastline"},{"arc":[{"x":86467,"y":46648},{"x":-15,"y":13},{"x":-37,"y":-51},{"x":35,"y":-15},{"x":17,"y":53}],"type":"coastline"},{"arc":[{"x":86549,"y":48296},{"x":-39,"y":40},{"x":-116,"y":-58},{"x":-58,"y":26},{"x":-95,"y":-27},{"x":-72,"y":-60},{"x":-83,"y":64},{"x":-8,"y":49},{"x":-149,"y":22},{"x":-293,"y":-90},{"x":-39,"y":-1},{"x":-10,"y":44},{"x":-20,"y":-77},{"x":-77,"y":-47},{"x":-35,"y":52},{"x":-4,"y":-36},{"x":-65,"y":-16},{"x":-31,"y":-55},{"x":-59,"y":14},{"x":3,"y":36},{"x":-65,"y":4},{"x":-88,"y":-69},{"x":-101,"y":43},{"x":-26,"y":-16},{"x":-23,"y":29},{"x":-74,"y":-8},{"x":17,"y":-24},{"x":-99,"y":-42},{"x":-33,"y":35},{"x":35,"y":-6},{"x":17,"y":31},{"x":-56,"y":23},{"x":10,"y":38},{"x":34,"y":-7},{"x":-1,"y":55},{"x":-21,"y":-18},{"x":-15,"y":18},{"x":42,"y":40},{"x":24,"y":-23},{"x":4,"y":38},{"x":5,"y":-66},{"x":20,"y":55},{"x":-63,"y":58},{"x":68,"y":38},{"x":0,"y":47},{"x":100,"y":5},{"x":-31,"y":37},{"x":45,"y":69},{"x":-33,"y":22},{"x":-1,"y":62},{"x":84,"y":62},{"x":-96,"y":30},{"x":81,"y":44},{"x":-48,"y":65},{"x":-22,"y":-45},{"x":-22,"y":21},{"x":-5,"y":-46},{"x":-25,"y":28},{"x":-53,"y":-24},{"x":7,"y":19},{"x":-102,"y":49},{"x":-55,"y":-4},{"x":-21,"y":-82},{"x":-56,"y":-22},{"x":-70,"y":-154},{"x":-196,"y":-75},{"x":77,"y":-74},{"x":-52,"y":-21},{"x":-9,"y":-82},{"x":97,"y":-26},{"x":64,"y":-89},{"x":28,"y":16},{"x":29,"y":-28},{"x":-102,"y":-2},{"x":-3,"y":44},{"x":-88,"y":35},{"x":-78,"y":-50},{"x":-13,"y":34},{"x":-49,"y":1},{"x":14,"y":-51},{"x":-39,"y":-84},{"x":23,"y":-61},{"x":-56,"y":31},{"x":22,"y":9},{"x":-34,"y":50},{"x":-41,"y":6},{"x":-47,"y":-58},{"x":-61,"y":49},{"x":11,"y":-82},{"x":-82,"y":-30},{"x":-20,"y":54},{"x":-35,"y":-24},{"x":12,"y":44},{"x":20,"y":-10},{"x":-25,"y":24},{"x":-84,"y":-30},{"x":1,"y":-50},{"x":-5,"y":100},{"x":-39,"y":-10},{"x":-31,"y":30},{"x":-16,"y":-38},{"x":-23,"y":40},{"x":-96,"y":18},{"x":-48,"y":-71},{"x":63,"y":-104},{"x":-20,"y":-43},{"x":29,"y":-48},{"x":-129,"y":-23},{"x":-14,"y":-49},{"x":-33,"y":47},{"x":30,"y":15},{"x":-37,"y":-16},{"x":-38,"y":19},{"x":-2,"y":-27},{"x":-14,"y":48},{"x":-86,"y":7},{"x":-8,"y":-34},{"x":-93,"y":1},{"x":-14,"y":-40},{"x":57,"y":-127},{"x":30,"y":0},{"x":-16,"y":51},{"x":33,"y":17},{"x":-13,"y":-34},{"x":32,"y":-18},{"x":62,"y":40},{"x":82,"y":-46},{"x":84,"y":34},{"x":60,"y":-59},{"x":8,"y":46},{"x":73,"y":2},{"x":45,"y":-20},{"x":-4,"y":-34},{"x":26,"y":21},{"x":61,"y":-26},{"x":-69,"y":78},{"x":15,"y":17},{"x":17,"y":-26},{"x":12,"y":28},{"x":62,"y":-73},{"x":-7,"y":71},{"x":-62,"y":44},{"x":93,"y":-19},{"x":9,"y":37},{"x":-1,"y":-25},{"x":61,"y":-14},{"x":-65,"y":-21},{"x":63,"y":-28},{"x":-23,"y":-43},{"x":63,"y":-36},{"x":8,"y":32},{"x":24,"y":-25},{"x":46,"y":17},{"x":9,"y":-29},{"x":-7,"y":61},{"x":-34,"y":-8},{"x":8,"y":34},{"x":-57,"y":33},{"x":78,"y":-11},{"x":-7,"y":56},{"x":-27,"y":19},{"x":-26,"y":-33},{"x":-54,"y":23},{"x":27,"y":39},{"x":60,"y":-16},{"x":-1,"y":36},{"x":15,"y":-47},{"x":36,"y":8},{"x":8,"y":-81},{"x":55,"y":-33},{"x":49,"y":20},{"x":7,"y":-84},{"x":33,"y":-25},{"x":-68,"y":-25},{"x":10,"y":-58},{"x":124,"y":48},{"x":-52,"y":44},{"x":27,"y":24},{"x":150,"y":-43},{"x":-90,"y":-29},{"x":31,"y":-30},{"x":-72,"y":-40},{"x":64,"y":-32},{"x":-18,"y":-39},{"x":53,"y":32},{"x":63,"y":-24},{"x":-84,"y":-63},{"x":34,"y":-117},{"x":16,"y":103},{"x":35,"y":-58},{"x":-2,"y":59},{"x":34,"y":19},{"x":7,"y":-75},{"x":49,"y":44},{"x":63,"y":-51},{"x":57,"y":100},{"x":51,"y":20},{"x":-118,"y":39},{"x":66,"y":-12},{"x":53,"y":30},{"x":-152,"y":81},{"x":110,"y":21},{"x":-8,"y":29},{"x":50,"y":30},{"x":-3,"y":58},{"x":-160,"y":18},{"x":185,"y":19},{"x":-21,"y":37},{"x":53,"y":36},{"x":-12,"y":32},{"x":21,"y":-32},{"x":-22,"y":-39},{"x":55,"y":-55},{"x":-50,"y":-8},{"x":48,"y":-38},{"x":62,"y":-13},{"x":24,"y":60},{"x":75,"y":-67},{"x":106,"y":32},{"x":36,"y":-28},{"x":66,"y":24},{"x":22,"y":-20},{"x":28,"y":37},{"x":40,"y":-6},{"x":14,"y":55},{"x":46,"y":-24},{"x":4,"y":93},{"x":42,"y":47},{"x":-61,"y":-18},{"x":-126,"y":19},{"x":-42,"y":43},{"x":-21,"y":-32},{"x":-8,"y":36},{"x":45,"y":4},{"x":10,"y":104},{"x":7,"y":-31},{"x":42,"y":-26},{"x":8,"y":34},{"x":-2,"y":-38},{"x":60,"y":-23},{"x":10,"y":34},{"x":31,"y":-24},{"x":22,"y":47},{"x":82,"y":-27},{"x":-6,"y":-26},{"x":49,"y":-28},{"x":23,"y":64},{"x":163,"y":24},{"x":37,"y":125},{"x":74,"y":48},{"x":51,"y":-19},{"x":71,"y":35},{"x":36,"y":-91},{"x":85,"y":50},{"x":76,"y":-80},{"x":33,"y":39},{"x":43,"y":-32},{"x":35,"y":44},{"x":245,"y":51},{"x":50,"y":45}],"type":"coastline"},{"arc":[{"x":86643,"y":46650},{"x":-72,"y":14},{"x":10,"y":-81},{"x":62,"y":67}],"type":"coastline"},{"arc":[{"x":86646,"y":47680},{"x":-15,"y":46},{"x":-11,"y":-45},{"x":26,"y":-1}],"type":"coastline"},{"arc":[{"x":86656,"y":47602},{"x":-65,"y":18},{"x":-43,"y":-30},{"x":10,"y":-35},{"x":58,"y":-1},{"x":40,"y":48}],"type":"coastline"},{"arc":[{"x":86740,"y":47868},{"x":-30,"y":12},{"x":11,"y":34},{"x":-45,"y":-90},{"x":61,"y":17},{"x":3,"y":27}],"type":"coastline"},{"arc":[{"x":86745,"y":47582},{"x":-23,"y":28},{"x":-33,"y":-16},{"x":15,"y":-74},{"x":41,"y":62}],"type":"coastline"},{"arc":[{"x":86749,"y":47999},{"x":-22,"y":5},{"x":5,"y":-31},{"x":17,"y":26}],"type":"coastline"},{"arc":[{"x":86828,"y":47311},{"x":-25,"y":55},{"x":-39,"y":-15},{"x":21,"y":-36},{"x":-27,"y":-68},{"x":70,"y":64}],"type":"coastline"},{"arc":[{"x":86838,"y":46839},{"x":-7,"y":30},{"x":-33,"y":-4},{"x":14,"y":-38},{"x":26,"y":12}],"type":"coastline"},{"arc":[{"x":87013,"y":47597},{"x":-90,"y":28},{"x":-37,"y":-38},{"x":11,"y":-78},{"x":116,"y":16},{"x":0,"y":72}],"type":"coastline"},{"arc":[{"x":87019,"y":48372},{"x":-89,"y":61},{"x":-6,"y":39},{"x":-66,"y":-5},{"x":-44,"y":68},{"x":-50,"y":-9},{"x":26,"y":-32},{"x":-41,"y":-55},{"x":-178,"y":30},{"x":-76,"y":-22},{"x":40,"y":-63},{"x":149,"y":-36},{"x":99,"y":39},{"x":181,"y":-76},{"x":55,"y":61}],"type":"coastline"},{"arc":[{"x":87078,"y":47857},{"x":-70,"y":-24},{"x":-10,"y":36},{"x":-9,"y":-25},{"x":-36,"y":97},{"x":45,"y":14},{"x":-15,"y":84},{"x":48,"y":61},{"x":3,"y":78},{"x":-79,"y":-12},{"x":36,"y":-37},{"x":-27,"y":-93},{"x":-12,"y":28},{"x":-15,"y":-21},{"x":-59,"y":26},{"x":3,"y":-21},{"x":-31,"y":7},{"x":-9,"y":82},{"x":-34,"y":14},{"x":4,"y":-25},{"x":-55,"y":-19},{"x":45,"y":-64},{"x":-29,"y":-60},{"x":68,"y":-73},{"x":-23,"y":-28},{"x":-70,"y":15},{"x":29,"y":-33},{"x":-51,"y":-63},{"x":80,"y":-48},{"x":45,"y":24},{"x":11,"y":-45},{"x":-32,"y":-22},{"x":25,"y":-63},{"x":48,"y":-13},{"x":33,"y":34},{"x":-15,"y":28},{"x":33,"y":-13},{"x":41,"y":30},{"x":-57,"y":37},{"x":28,"y":-17},{"x":55,"y":55},{"x":50,"y":-16},{"x":-28,"y":25},{"x":36,"y":60}],"type":"coastline"},{"arc":[{"x":87153,"y":48463},{"x":-46,"y":50},{"x":-30,"y":-36},{"x":15,"y":-52},{"x":47,"y":6},{"x":14,"y":32}],"type":"coastline"},{"arc":[{"x":87155,"y":47935},{"x":-27,"y":-3},{"x":-20,"y":67},{"x":-59,"y":-48},{"x":37,"y":-48},{"x":37,"y":15},{"x":-3,"y":-25},{"x":35,"y":42}],"type":"coastline"},{"arc":[{"x":87485,"y":47933},{"x":-44,"y":-41},{"x":-66,"y":20},{"x":33,"y":74},{"x":-65,"y":15},{"x":-32,"y":-34},{"x":38,"y":-24},{"x":3,"y":-64},{"x":79,"y":-1},{"x":4,"y":-29},{"x":50,"y":84}],"type":"coastline"},{"arc":[{"x":87859,"y":48418},{"x":-20,"y":23},{"x":28,"y":21},{"x":-43,"y":-10},{"x":-24,"y":68},{"x":-29,"y":-34},{"x":-90,"y":39},{"x":-58,"y":-12},{"x":-52,"y":126},{"x":-133,"y":-196},{"x":36,"y":40},{"x":12,"y":-38},{"x":-65,"y":-28},{"x":-34,"y":34},{"x":-55,"y":-37},{"x":-4,"y":-143},{"x":43,"y":-52},{"x":-26,"y":-50},{"x":42,"y":-39},{"x":-5,"y":19},{"x":37,"y":12},{"x":-29,"y":-26},{"x":63,"y":1},{"x":1,"y":-44},{"x":54,"y":-24},{"x":-53,"y":-89},{"x":51,"y":27},{"x":56,"y":-48},{"x":75,"y":84},{"x":-13,"y":22},{"x":58,"y":17},{"x":53,"y":126},{"x":-26,"y":46},{"x":40,"y":9},{"x":-27,"y":20},{"x":1,"y":30},{"x":31,"y":2},{"x":-22,"y":47},{"x":26,"y":-20},{"x":14,"y":45},{"x":77,"y":-7},{"x":10,"y":39}],"type":"coastline"},{"arc":[{"x":83405,"y":65619},{"x":-41,"y":-51},{"x":-8,"y":-245},{"x":34,"y":-45},{"x":-25,"y":-77},{"x":-44,"y":-26},{"x":22,"y":-58},{"x":-82,"y":-21},{"x":-21,"y":-59},{"x":-104,"y":2},{"x":-54,"y":-67},{"x":-118,"y":-10},{"x":-54,"y":-85},{"x":-108,"y":93},{"x":-152,"y":-95}],"type":"admin"},{"arc":[{"x":82650,"y":64875},{"x":26,"y":-142},{"x":92,"y":-62},{"x":19,"y":-49},{"x":65,"y":-11},{"x":120,"y":35},{"x":126,"y":-71},{"x":37,"y":-138},{"x":94,"y":-65},{"x":50,"y":-102},{"x":-17,"y":-96},{"x":-125,"y":-22},{"x":-95,"y":-116},{"x":8,"y":-92},{"x":-46,"y":-119},{"x":42,"y":-48},{"x":-38,"y":-67},{"x":39,"y":-78},{"x":-32,"y":-13},{"x":-23,"y":-182},{"x":-55,"y":-92},{"x":53,"y":-64},{"x":-34,"y":-127},{"x":59,"y":-121},{"x":51,"y":-30},{"x":66,"y":16},{"x":90,"y":-56},{"x":12,"y":-102},{"x":79,"y":20},{"x":105,"y":-57},{"x":44,"y":13},{"x":20,"y":52},{"x":78,"y":-3},{"x":70,"y":-56},{"x":171,"y":124},{"x":-26,"y":-74},{"x":36,"y":-57},{"x":-26,"y":-112},{"x":26,"y":-68},{"x":261,"y":141},{"x":101,"y":-74},{"x":99,"y":71},{"x":148,"y":-69},{"x":66,"y":55},{"x":21,"y":-44},{"x":87,"y":-32},{"x":8,"y":-66},{"x":44,"y":-29},{"x":161,"y":99},{"x":223,"y":3},{"x":186,"y":114}],"type":"area"},{"arc":[{"x":85216,"y":62812},{"x":0,"y":160},{"x":86,"y":98},{"x":66,"y":12},{"x":74,"y":76},{"x":64,"y":-15},{"x":89,"y":40},{"x":59,"y":-56},{"x":59,"y":13},{"x":108,"y":92},{"x":200,"y":-118},{"x":110,"y":-121},{"x":86,"y":9},{"x":111,"y":-127},{"x":28,"y":17},{"x":-14,"y":30},{"x":142,"y":-18},{"x":177,"y":54},{"x":18,"y":34},{"x":50,"y":-9},{"x":-54,"y":182},{"x":94,"y":150},{"x":64,"y":33},{"x":10,"y":165},{"x":-95,"y":269},{"x":11,"y":87},{"x":-73,"y":90},{"x":-92,"y":19},{"x":-27,"y":89},{"x":-58,"y":23},{"x":-47,"y":109},{"x":-29,"y":9},{"x":-13,"y":-28},{"x":-94,"y":124},{"x":-114,"y":45},{"x":-116,"y":-26},{"x":-111,"y":75},{"x":-206,"y":10},{"x":-87,"y":88},{"x":34,"y":59},{"x":-151,"y":85},{"x":-77,"y":98},{"x":-327,"y":77},{"x":-18,"y":-23},{"x":-202,"y":185},{"x":-127,"y":-1},{"x":-51,"y":125},{"x":-129,"y":-55},{"x":5,"y":-59},{"x":-38,"y":-20},{"x":-38,"y":54},{"x":-30,"y":-48},{"x":-61,"y":46},{"x":-64,"y":-54},{"x":-144,"y":56},{"x":-251,"y":2},{"x":-101,"y":33},{"x":-79,"y":53},{"x":24,"y":72},{"x":-101,"y":0},{"x":-51,"y":105},{"x":-81,"y":58},{"x":-60,"y":157},{"x":-169,"y":118}],"type":"admin"},{"arc":[{"x":80159,"y":59090},{"x":-6,"y":46},{"x":5,"y":-49},{"x":-63,"y":-20},{"x":16,"y":55},{"x":24,"y":12},{"x":9,"y":-22},{"x":-2,"y":38},{"x":11,"y":-14},{"x":-1,"y":8},{"x":-13,"y":9},{"x":-28,"y":4},{"x":-23,"y":-93},{"x":71,"y":26}],"type":"coastline"},{"arc":[{"x":81286,"y":59085},{"x":-25,"y":123},{"x":-99,"y":19},{"x":-22,"y":-12},{"x":19,"y":14},{"x":-46,"y":-18},{"x":-49,"y":-64},{"x":-84,"y":-58},{"x":-14,"y":-40},{"x":64,"y":-18},{"x":44,"y":62},{"x":47,"y":-32},{"x":-17,"y":-82},{"x":31,"y":18},{"x":37,"y":-21},{"x":11,"y":32},{"x":48,"y":-79},{"x":55,"y":156}],"type":"coastline"},{"arc":[{"x":82795,"y":59863},{"x":-61,"y":-12},{"x":5,"y":-144},{"x":54,"y":8},{"x":2,"y":148}],"type":"coastline"},{"arc":[{"x":85978,"y":61792},{"x":-113,"y":46},{"x":30,"y":138},{"x":-48,"y":31},{"x":16,"y":74},{"x":-43,"y":74},{"x":-111,"y":34},{"x":-27,"y":48},{"x":-71,"y":3},{"x":-12,"y":85},{"x":-101,"y":61},{"x":-13,"y":98},{"x":29,"y":52},{"x":-63,"y":158},{"x":-120,"y":35},{"x":-115,"y":83}],"type":"admin"},{"arc":[{"x":82650,"y":64875},{"x":-86,"y":6},{"x":-147,"y":-177},{"x":13,"y":-45},{"x":-47,"y":-91},{"x":-126,"y":-117},{"x":-113,"y":3},{"x":-146,"y":-62},{"x":-122,"y":21},{"x":-2,"y":-96},{"x":79,"y":-90},{"x":-35,"y":-61},{"x":-111,"y":-26},{"x":-100,"y":-103},{"x":-91,"y":-27},{"x":-23,"y":-63},{"x":-123,"y":34},{"x":-77,"y":-31},{"x":-109,"y":2},{"x":-40,"y":35},{"x":-132,"y":-56},{"x":-22,"y":-59},{"x":-69,"y":16},{"x":-30,"y":-131},{"x":88,"y":-291},{"x":-53,"y":-84},{"x":-167,"y":-43},{"x":-49,"y":24},{"x":-49,"y":-14},{"x":-10,"y":-118},{"x":-62,"y":-45},{"x":-244,"y":58},{"x":-54,"y":-127},{"x":-241,"y":-19},{"x":-156,"y":74},{"x":-103,"y":-16}],"type":"admin"},{"arc":[{"x":79891,"y":63156},{"x":-148,"y":-209},{"x":46,"y":-172},{"x":-26,"y":-64},{"x":-71,"y":-35},{"x":-32,"y":-93},{"x":30,"y":-99},{"x":-17,"y":-143},{"x":27,"y":-56},{"x":88,"y":-38},{"x":153,"y":24},{"x":85,"y":-78},{"x":-5,"y":-96},{"x":82,"y":-17},{"x":81,"y":-109},{"x":-59,"y":-77},{"x":110,"y":-101},{"x":-78,"y":-184},{"x":33,"y":-170},{"x":-92,"y":-69},{"x":-95,"y":-270},{"x":-57,"y":3},{"x":25,"y":-118},{"x":-169,"y":35},{"x":-28,"y":-143},{"x":-214,"y":52},{"x":-84,"y":-70},{"x":-46,"y":30},{"x":-81,"y":-1},{"x":-10,"y":91},{"x":-54,"y":54},{"x":-1,"y":-23},{"x":-58,"y":-6},{"x":-59,"y":-142},{"x":-178,"y":-88},{"x":-47,"y":-61},{"x":-58,"y":5},{"x":-24,"y":-40},{"x":-66,"y":30},{"x":-81,"y":-133},{"x":39,"y":-42},{"x":-25,"y":-63},{"x":133,"y":-42},{"x":86,"y":-63},{"x":102,"y":0},{"x":43,"y":-35},{"x":-45,"y":-1},{"x":-84,"y":-82}],"type":"area"},{"arc":[{"x":78962,"y":60247},{"x":28,"y":-73},{"x":-32,"y":-59},{"x":80,"y":-29},{"x":28,"y":-90},{"x":-34,"y":-109},{"x":41,"y":-60},{"x":-46,"y":-83},{"x":103,"y":-147},{"x":-21,"y":-47},{"x":-87,"y":-50},{"x":-31,"y":10},{"x":-31,"y":-73},{"x":20,"y":-54},{"x":152,"y":-36},{"x":2,"y":56},{"x":41,"y":-30},{"x":51,"y":40},{"x":51,"y":-5},{"x":74,"y":68},{"x":42,"y":-42}],"type":"area"},{"arc":[{"x":79393,"y":59434},{"x":115,"y":72},{"x":2,"y":56},{"x":42,"y":74},{"x":12,"y":-20},{"x":57,"y":61},{"x":-1,"y":49},{"x":7,"y":-57},{"x":42,"y":13},{"x":2,"y":31},{"x":156,"y":-69},{"x":82,"y":34},{"x":33,"y":-34},{"x":75,"y":0},{"x":23,"y":-159},{"x":58,"y":-17},{"x":133,"y":15},{"x":23,"y":48},{"x":-22,"y":95},{"x":64,"y":19},{"x":139,"y":-265},{"x":26,"y":11},{"x":-120,"y":189},{"x":-25,"y":123},{"x":174,"y":-284},{"x":117,"y":60},{"x":-22,"y":23},{"x":25,"y":19},{"x":11,"y":-18},{"x":31,"y":78},{"x":-48,"y":43},{"x":399,"y":243},{"x":128,"y":123},{"x":-48,"y":52},{"x":143,"y":141},{"x":149,"y":-126},{"x":43,"y":178},{"x":-103,"y":104},{"x":28,"y":-12},{"x":-19,"y":17},{"x":44,"y":17},{"x":102,"y":-20},{"x":27,"y":57},{"x":32,"y":-52},{"x":69,"y":-25},{"x":-88,"y":-120},{"x":-22,"y":-211},{"x":-41,"y":-21},{"x":35,"y":-1},{"x":-38,"y":1},{"x":-10,"y":-90},{"x":-29,"y":-10},{"x":38,"y":-17},{"x":-54,"y":-115},{"x":33,"y":-104},{"x":-27,"y":-21},{"x":36,"y":-30},{"x":-25,"y":-94},{"x":25,"y":-10},{"x":-55,"y":-53},{"x":-6,"y":-37},{"x":33,"y":-6},{"x":-29,"y":-2},{"x":15,"y":-23},{"x":-83,"y":-116},{"x":8,"y":-213},{"x":-76,"y":-150},{"x":25,"y":-59},{"x":92,"y":16},{"x":65,"y":-82},{"x":99,"y":85},{"x":251,"y":439},{"x":4,"y":-39},{"x":37,"y":195},{"x":38,"y":-11},{"x":-4,"y":39},{"x":250,"y":149},{"x":-10,"y":30},{"x":50,"y":26},{"x":46,"y":102},{"x":17,"y":-45},{"x":-14,"y":104},{"x":46,"y":14},{"x":4,"y":24},{"x":-27,"y":-14},{"x":59,"y":122},{"x":169,"y":-6},{"x":5,"y":-21},{"x":107,"y":29},{"x":23,"y":-21},{"x":10,"y":30},{"x":-7,"y":-31},{"x":69,"y":-13},{"x":13,"y":26},{"x":-10,"y":-28},{"x":223,"y":-38},{"x":22,"y":43},{"x":131,"y":50},{"x":1,"y":37},{"x":50,"y":-14},{"x":24,"y":-69},{"x":95,"y":-16},{"x":1,"y":-46},{"x":53,"y":-50},{"x":-11,"y":28},{"x":29,"y":15},{"x":-14,"y":-18},{"x":18,"y":6},{"x":33,"y":-15},{"x":-43,"y":1},{"x":-5,"y":-18},{"x":6,"y":13},{"x":43,"y":4},{"x":2,"y":12},{"x":29,"y":-15},{"x":34,"y":-99},{"x":38,"y":41},{"x":-10,"y":-20},{"x":73,"y":-27},{"x":23,"y":53},{"x":-4,"y":-43},{"x":71,"y":-66},{"x":-67,"y":-51},{"x":82,"y":-315},{"x":177,"y":-7},{"x":72,"y":34},{"x":39,"y":-31},{"x":116,"y":-222},{"x":102,"y":-121},{"x":-6,"y":-28},{"x":13,"y":17},{"x":-2,"y":-23},{"x":-38,"y":-31},{"x":35,"y":-44},{"x":-25,"y":-21},{"x":38,"y":-44},{"x":62,"y":50},{"x":72,"y":-16},{"x":-99,"y":-76},{"x":58,"y":-64},{"x":15,"y":19},{"x":44,"y":-50},{"x":61,"y":29},{"x":31,"y":-17},{"x":-19,"y":1},{"x":-43,"y":-23},{"x":-16,"y":4},{"x":9,"y":-4},{"x":51,"y":19},{"x":25,"y":-5},{"x":-8,"y":-7},{"x":58,"y":1},{"x":209,"y":-57},{"x":269,"y":-10},{"x":-3,"y":-28},{"x":64,"y":-11},{"x":18,"y":32},{"x":-27,"y":-96},{"x":36,"y":-6},{"x":-1,"y":-10},{"x":-38,"y":11},{"x":37,"y":-14},{"x":6,"y":12},{"x":48,"y":-19}],"type":"coastline"},{"arc":[{"x":79891,"y":63156},{"x":-229,"y":43},{"x":-287,"y":184},{"x":-9,"y":193},{"x":-152,"y":40},{"x":-67,"y":-30},{"x":-13,"y":37},{"x":-83,"y":45},{"x":-79,"y":-46},{"x":-103,"y":32},{"x":-46,"y":145},{"x":-81,"y":21},{"x":-2,"y":34},{"x":-109,"y":65},{"x":-342,"y":-168},{"x":-121,"y":-93},{"x":-8,"y":-63},{"x":61,"y":-90},{"x":-9,"y":-66},{"x":-178,"y":29},{"x":-37,"y":-75},{"x":-50,"y":-24},{"x":-94,"y":9},{"x":-36,"y":32},{"x":16,"y":81},{"x":-86,"y":112},{"x":-106,"y":-20},{"x":-42,"y":66},{"x":-143,"y":53},{"x":-44,"y":128},{"x":-58,"y":-3},{"x":-36,"y":33},{"x":-180,"y":-23},{"x":-119,"y":59}],"type":"admin"},{"arc":[{"x":77019,"y":63896},{"x":-76,"y":-92},{"x":77,"y":-199},{"x":-52,"y":-102},{"x":77,"y":-72},{"x":-15,"y":-33},{"x":84,"y":-62},{"x":-11,"y":-123},{"x":51,"y":-74},{"x":-47,"y":-77},{"x":-93,"y":-36},{"x":-16,"y":-41},{"x":-20,"y":27},{"x":-74,"y":-26},{"x":-104,"y":-139},{"x":-154,"y":-2},{"x":-7,"y":-101},{"x":-45,"y":-47},{"x":40,"y":-89},{"x":-33,"y":-87},{"x":62,"y":-45},{"x":26,"y":-89},{"x":46,"y":-17},{"x":32,"y":-61},{"x":-12,"y":-41},{"x":-61,"y":-27},{"x":-43,"y":-146},{"x":-44,"y":-17},{"x":-18,"y":-57},{"x":-115,"y":-46},{"x":-29,"y":-45},{"x":72,"y":-147},{"x":-39,"y":-87},{"x":-78,"y":-53},{"x":41,"y":-90},{"x":25,"y":-263},{"x":-48,"y":-126},{"x":69,"y":-61},{"x":-59,"y":-76},{"x":105,"y":-52},{"x":-67,"y":-59},{"x":-10,"y":-56}],"type":"admin"},{"arc":[{"x":76456,"y":60860},{"x":58,"y":-168},{"x":210,"y":-225},{"x":-10,"y":-26},{"x":73,"y":-93},{"x":148,"y":-27},{"x":45,"y":-226},{"x":110,"y":-63},{"x":57,"y":16},{"x":124,"y":-49},{"x":-7,"y":-146}],"type":"admin"},{"arc":[{"x":77264,"y":59853},{"x":80,"y":-96},{"x":122,"y":59},{"x":38,"y":-45},{"x":177,"y":50},{"x":112,"y":-26},{"x":66,"y":57},{"x":83,"y":13},{"x":44,"y":-23},{"x":37,"y":26},{"x":48,"y":114},{"x":58,"y":44},{"x":29,"y":-80},{"x":106,"y":4},{"x":33,"y":-43},{"x":150,"y":108},{"x":158,"y":-90},{"x":126,"y":16},{"x":67,"y":52},{"x":78,"y":218},{"x":86,"y":36}],"type":"area"},{"arc":[{"x":76914,"y":55026},{"x":-48,"y":6},{"x":4,"y":-28},{"x":44,"y":22}],"type":"coastline"},{"arc":[{"x":76966,"y":55564},{"x":-7,"y":27},{"x":-5,"y":-39},{"x":52,"y":11},{"x":-40,"y":1}],"type":"coastline"},{"arc":[{"x":77113,"y":55639},{"x":-77,"y":26},{"x":7,"y":-30},{"x":70,"y":4}],"type":"coastline"},{"arc":[{"x":77269,"y":55359},{"x":-39,"y":-4},{"x":8,"y":-28},{"x":31,"y":32}],"type":"coastline"},{"arc":[{"x":77275,"y":54956},{"x":-26,"y":48},{"x":-68,"y":16},{"x":38,"y":-60},{"x":56,"y":-4}],"type":"coastline"},{"arc":[{"x":77310,"y":55456},{"x":-67,"y":79},{"x":-48,"y":-8},{"x":20,"y":-44},{"x":-43,"y":29},{"x":-52,"y":85},{"x":-36,"y":10},{"x":-39,"y":-39},{"x":-61,"y":27},{"x":178,"y":-115},{"x":-40,"y":-61},{"x":-122,"y":-27},{"x":40,"y":-30},{"x":88,"y":-14},{"x":20,"y":50},{"x":26,"y":-37},{"x":41,"y":16},{"x":4,"y":40},{"x":46,"y":-38},{"x":45,"y":77}],"type":"coastline"},{"arc":[{"x":77400,"y":58084},{"x":-4,"y":37},{"x":-53,"y":-51},{"x":20,"y":-27},{"x":37,"y":41}],"type":"coastline"},{"arc":[{"x":77413,"y":55839},{"x":-36,"y":28},{"x":-35,"y":-90},{"x":71,"y":62}],"type":"coastline"},{"arc":[{"x":77473,"y":55026},{"x":-17,"y":18},{"x":-48,"y":-48},{"x":65,"y":30}],"type":"coastline"},{"arc":[{"x":78134,"y":56332},{"x":-29,"y":56},{"x":-52,"y":18},{"x":-62,"y":-121},{"x":54,"y":-26},{"x":89,"y":73}],"type":"coastline"},{"arc":[{"x":78692,"y":57596},{"x":-65,"y":-23},{"x":-26,"y":30},{"x":-54,"y":-29},{"x":67,"y":-7},{"x":48,"y":-43},{"x":30,"y":72}],"type":"coastline"},{"arc":[{"x":78841,"y":58005},{"x":-59,"y":65},{"x":30,"y":45},{"x":19,"y":-13},{"x":-14,"y":43},{"x":-52,"y":11},{"x":-276,"y":-200},{"x":-35,"y":-99},{"x":-67,"y":-59},{"x":32,"y":-60},{"x":-31,"y":-162},{"x":62,"y":68},{"x":-19,"y":48},{"x":81,"y":52},{"x":0,"y":44},{"x":-57,"y":2},{"x":13,"y":22},{"x":152,"y":30},{"x":-14,"y":-37},{"x":56,"y":-3},{"x":65,"y":48},{"x":-13,"y":24},{"x":26,"y":-13},{"x":-1,"y":28},{"x":79,"y":42},{"x":23,"y":74}],"type":"coastline"},{"arc":[{"x":78880,"y":58044},{"x":-68,"y":4},{"x":35,"y":-33},{"x":33,"y":29}],"type":"coastline"},{"arc":[{"x":78992,"y":57687},{"x":-29,"y":-9},{"x":1,"y":27},{"x":24,"y":3},{"x":-24,"y":2},{"x":29,"y":35},{"x":-19,"y":17},{"x":-26,"y":-32},{"x":-56,"y":30},{"x":68,"y":30},{"x":-68,"y":1},{"x":24,"y":25},{"x":-12,"y":27},{"x":-40,"y":-9},{"x":10,"y":69},{"x":-79,"y":-23},{"x":6,"y":-76},{"x":-71,"y":-64},{"x":33,"y":-33},{"x":-43,"y":-57},{"x":74,"y":30},{"x":16,"y":80},{"x":32,"y":-51},{"x":-25,"y":-30},{"x":10,"y":-91},{"x":67,"y":-21},{"x":53,"y":36},{"x":-53,"y":56},{"x":14,"y":16},{"x":72,"y":-1},{"x":12,"y":13}],"type":"coastline"},{"arc":[{"x":79028,"y":57969},{"x":-34,"y":-17},{"x":17,"y":22},{"x":-50,"y":31},{"x":-40,"y":-49},{"x":73,"y":-63},{"x":37,"y":23},{"x":-3,"y":53}],"type":"coastline"},{"arc":[{"x":79053,"y":57653},{"x":-40,"y":3},{"x":-33,"y":-45},{"x":73,"y":42}],"type":"coastline"},{"arc":[{"x":79112,"y":57071},{"x":-120,"y":1},{"x":-22,"y":-42},{"x":108,"y":-5},{"x":34,"y":46}],"type":"coastline"},{"arc":[{"x":79125,"y":57764},{"x":-32,"y":28},{"x":-10,"y":-37},{"x":-45,"y":20},{"x":-21,"y":-53},{"x":61,"y":6},{"x":-3,"y":-20},{"x":50,"y":56}],"type":"coastline"},{"arc":[{"x":79240,"y":58354},{"x":-68,"y":57},{"x":1,"y":-77},{"x":67,"y":20}],"type":"coastline"},{"arc":[{"x":79253,"y":57796},{"x":-13,"y":19},{"x":-76,"y":-35},{"x":89,"y":16}],"type":"coastline"},{"arc":[{"x":79290,"y":58472},{"x":-62,"y":67},{"x":-109,"y":4},{"x":-20,"y":34},{"x":27,"y":65},{"x":-143,"y":-135},{"x":21,"y":-28},{"x":91,"y":21},{"x":-3,"y":22},{"x":46,"y":-92},{"x":86,"y":-15},{"x":24,"y":31},{"x":16,"y":-30},{"x":26,"y":56}],"type":"coastline"},{"arc":[{"x":79326,"y":57043},{"x":-23,"y":20},{"x":-15,"y":-29},{"x":38,"y":9}],"type":"coastline"},{"arc":[{"x":77264,"y":59853},{"x":-95,"y":39},{"x":-200,"y":-110},{"x":3,"y":-157},{"x":-54,"y":-161},{"x":-122,"y":-13},{"x":-14,"y":-153},{"x":52,"y":-119},{"x":-67,"y":-107},{"x":57,"y":-74},{"x":-6,"y":-42},{"x":-193,"y":-27},{"x":-28,"y":-50},{"x":30,"y":-30},{"x":-57,"y":-75},{"x":37,"y":-38},{"x":-28,"y":-156},{"x":38,"y":-47},{"x":24,"y":-160},{"x":38,"y":7},{"x":93,"y":-88},{"x":126,"y":-42},{"x":201,"y":-202}],"type":"admin"},{"arc":[{"x":77099,"y":58048},{"x":33,"y":14},{"x":-20,"y":18},{"x":44,"y":-12},{"x":-13,"y":41},{"x":86,"y":-64},{"x":-10,"y":62},{"x":27,"y":28},{"x":-15,"y":20},{"x":-46,"y":-37},{"x":8,"y":76},{"x":54,"y":-39},{"x":41,"y":36},{"x":61,"y":6},{"x":16,"y":-27},{"x":13,"y":26},{"x":-3,"y":-43},{"x":37,"y":-23},{"x":57,"y":104},{"x":39,"y":-54},{"x":25,"y":83},{"x":24,"y":-31},{"x":15,"y":23},{"x":-11,"y":-26},{"x":106,"y":117},{"x":65,"y":26},{"x":-44,"y":63},{"x":33,"y":-4},{"x":-12,"y":41},{"x":39,"y":10},{"x":-16,"y":30},{"x":27,"y":20},{"x":-43,"y":11},{"x":20,"y":13},{"x":-46,"y":52},{"x":22,"y":19},{"x":69,"y":9},{"x":4,"y":-36},{"x":86,"y":-57},{"x":36,"y":93},{"x":102,"y":-61},{"x":-9,"y":39},{"x":56,"y":16},{"x":27,"y":121},{"x":60,"y":-45},{"x":33,"y":15},{"x":-32,"y":19},{"x":23,"y":25},{"x":62,"y":-29},{"x":28,"y":79},{"x":-54,"y":-8},{"x":-74,"y":62},{"x":82,"y":16},{"x":94,"y":-28},{"x":-83,"y":104},{"x":81,"y":39},{"x":32,"y":64},{"x":8,"y":-137},{"x":-3,"y":70},{"x":37,"y":10},{"x":-28,"y":-21},{"x":2,"y":-82},{"x":151,"y":11},{"x":21,"y":-40},{"x":54,"y":22},{"x":20,"y":-34},{"x":3,"y":51},{"x":47,"y":18},{"x":-41,"y":7},{"x":2,"y":58},{"x":37,"y":22},{"x":23,"y":-39},{"x":103,"y":20},{"x":15,"y":59},{"x":59,"y":36},{"x":-24,"y":-6},{"x":31,"y":24},{"x":-23,"y":-5},{"x":27,"y":83},{"x":42,"y":5},{"x":26,"y":-34},{"x":-35,"y":-26},{"x":50,"y":-34},{"x":-27,"y":-72},{"x":34,"y":-1},{"x":274,"y":212},{"x":15,"y":48},{"x":158,"y":145}],"type":"coastline"},{"arc":[{"x":80519,"y":58586},{"x":-46,"y":14},{"x":-31,"y":-44},{"x":35,"y":-26},{"x":42,"y":56}],"type":"coastline"},{"arc":[{"x":80532,"y":58829},{"x":-139,"y":-22},{"x":-48,"y":-52},{"x":-36,"y":8},{"x":-197,"y":-116},{"x":-125,"y":-15},{"x":-19,"y":20},{"x":5,"y":-27},{"x":-19,"y":21},{"x":-23,"y":-38},{"x":-112,"y":-30},{"x":-62,"y":-88},{"x":-75,"y":-19},{"x":-16,"y":29},{"x":15,"y":-66},{"x":-29,"y":18},{"x":-23,"y":-48},{"x":-16,"y":66},{"x":-31,"y":7},{"x":22,"y":65},{"x":-96,"y":-64},{"x":0,"y":-67},{"x":43,"y":-40},{"x":-113,"y":70},{"x":-60,"y":-53},{"x":-97,"y":-6},{"x":20,"y":-22},{"x":-58,"y":26},{"x":4,"y":-92},{"x":-119,"y":-92},{"x":67,"y":-29},{"x":3,"y":-77},{"x":-86,"y":-41},{"x":-35,"y":-43},{"x":17,"y":-32},{"x":35,"y":27},{"x":0,"y":-32},{"x":41,"y":19},{"x":76,"y":-42},{"x":37,"y":17},{"x":-37,"y":-45},{"x":127,"y":81},{"x":10,"y":-30},{"x":53,"y":19},{"x":65,"y":-35},{"x":-41,"y":-37},{"x":-32,"y":16},{"x":-77,"y":-30},{"x":-1,"y":-27},{"x":-5,"y":26},{"x":-12,"y":-68},{"x":-57,"y":-37},{"x":35,"y":-34},{"x":-27,"y":3},{"x":-28,"y":-98},{"x":25,"y":1},{"x":-37,"y":-47},{"x":26,"y":10},{"x":37,"y":-129},{"x":-37,"y":-43},{"x":52,"y":-61},{"x":91,"y":-30},{"x":-30,"y":-6},{"x":13,"y":-96},{"x":-77,"y":-2},{"x":-88,"y":-69},{"x":-54,"y":0},{"x":-23,"y":-143},{"x":108,"y":49},{"x":-13,"y":50},{"x":58,"y":4},{"x":-14,"y":-34},{"x":82,"y":25},{"x":60,"y":-30},{"x":-17,"y":-30},{"x":75,"y":-77},{"x":-52,"y":33},{"x":-35,"y":-36},{"x":14,"y":-36},{"x":111,"y":-28},{"x":62,"y":-78},{"x":53,"y":-3},{"x":52,"y":-34},{"x":85,"y":-5},{"x":12,"y":11},{"x":84,"y":177},{"x":-7,"y":47},{"x":91,"y":127},{"x":63,"y":24},{"x":23,"y":123},{"x":78,"y":126},{"x":-31,"y":41},{"x":33,"y":-35},{"x":44,"y":61},{"x":2,"y":-24},{"x":50,"y":20},{"x":108,"y":126},{"x":72,"y":34},{"x":15,"y":60},{"x":7,"y":-18},{"x":25,"y":117},{"x":-75,"y":39},{"x":73,"y":27},{"x":63,"y":146},{"x":-68,"y":-1},{"x":65,"y":43},{"x":-32,"y":7},{"x":-2,"y":44},{"x":-34,"y":-40},{"x":-75,"y":11},{"x":102,"y":62},{"x":7,"y":51},{"x":-46,"y":-53},{"x":-10,"y":26},{"x":-2,"y":-32},{"x":-2,"y":37},{"x":-13,"y":-30},{"x":-12,"y":32},{"x":-37,"y":-22},{"x":-15,"y":20},{"x":83,"y":45},{"x":-103,"y":31},{"x":-31,"y":-17},{"x":-43,"y":42},{"x":87,"y":42},{"x":-9,"y":32},{"x":23,"y":-29},{"x":9,"y":37},{"x":28,"y":-21},{"x":7,"y":51},{"x":46,"y":14},{"x":-15,"y":43},{"x":57,"y":10},{"x":-80,"y":88},{"x":18,"y":43},{"x":27,"y":-25},{"x":64,"y":53},{"x":-6,"y":92},{"x":-4,"y":-35},{"x":-28,"y":2},{"x":-14,"y":76},{"x":43,"y":-27},{"x":-9,"y":46},{"x":43,"y":24}],"type":"coastline"},{"arc":[{"x":80561,"y":58607},{"x":-49,"y":31},{"x":21,"y":-52},{"x":28,"y":21}],"type":"coastline"},{"arc":[{"x":80588,"y":58525},{"x":-35,"y":25},{"x":-5,"y":-23},{"x":40,"y":-2}],"type":"coastline"},{"arc":[{"x":80615,"y":58663},{"x":-81,"y":-14},{"x":49,"y":-28},{"x":-13,"y":22},{"x":45,"y":20}],"type":"coastline"},{"arc":[{"x":80662,"y":56769},{"x":-35,"y":3},{"x":-2,"y":-26},{"x":37,"y":23}],"type":"coastline"},{"arc":[{"x":80663,"y":58383},{"x":-16,"y":34},{"x":-36,"y":-1},{"x":2,"y":-31},{"x":-30,"y":9},{"x":5,"y":-55},{"x":8,"y":19},{"x":19,"y":-24},{"x":-32,"y":3},{"x":38,"y":-29},{"x":42,"y":75}],"type":"coastline"},{"arc":[{"x":80692,"y":58287},{"x":-23,"y":39},{"x":-14,"y":-57},{"x":37,"y":18}],"type":"coastline"},{"arc":[{"x":80697,"y":58442},{"x":-31,"y":69},{"x":-33,"y":-2},{"x":32,"y":53},{"x":-17,"y":-12},{"x":-14,"y":30},{"x":-28,"y":-98},{"x":40,"y":-47},{"x":14,"y":18},{"x":7,"y":-58},{"x":30,"y":47}],"type":"coastline"},{"arc":[{"x":80728,"y":56705},{"x":-13,"y":20},{"x":3,"y":-62},{"x":10,"y":42}],"type":"coastline"},{"arc":[{"x":80721,"y":56609},{"x":-14,"y":97},{"x":-21,"y":8},{"x":3,"y":-31},{"x":-42,"y":35},{"x":-61,"y":-18},{"x":29,"y":23},{"x":-30,"y":67},{"x":-57,"y":-48},{"x":-116,"y":17},{"x":12,"y":-26},{"x":-48,"y":-17},{"x":-15,"y":27},{"x":53,"y":8},{"x":-75,"y":30},{"x":-124,"y":-49},{"x":-25,"y":42},{"x":19,"y":-44},{"x":-48,"y":28},{"x":29,"y":10},{"x":-59,"y":-1},{"x":-79,"y":68},{"x":-52,"y":-19},{"x":-18,"y":43},{"x":-28,"y":-49},{"x":2,"y":35},{"x":-36,"y":-5},{"x":7,"y":-23},{"x":-22,"y":14},{"x":-54,"y":-63},{"x":-11,"y":53},{"x":2,"y":-45},{"x":-38,"y":40},{"x":-32,"y":-12},{"x":-18,"y":15},{"x":-66,"y":10},{"x":-55,"y":33},{"x":-90,"y":-3},{"x":20,"y":16},{"x":-37,"y":50},{"x":-38,"y":-2},{"x":5,"y":-86},{"x":-4,"y":54},{"x":-64,"y":-25},{"x":-78,"y":-92},{"x":-33,"y":-5},{"x":-23,"y":37},{"x":-74,"y":-4},{"x":-37,"y":-63},{"x":-26,"y":48},{"x":106,"y":65},{"x":-36,"y":91},{"x":-45,"y":-31},{"x":8,"y":49},{"x":-49,"y":15},{"x":-4,"y":-41},{"x":-61,"y":-8},{"x":17,"y":28},{"x":-118,"y":31},{"x":-8,"y":-48},{"x":-83,"y":-29},{"x":27,"y":9},{"x":-20,"y":-45},{"x":-5,"y":16},{"x":-33,"y":-6},{"x":30,"y":17},{"x":-31,"y":-8},{"x":-45,"y":-47},{"x":-109,"y":18},{"x":-44,"y":-49},{"x":-66,"y":12},{"x":-15,"y":-83},{"x":-119,"y":-96},{"x":-1,"y":-74},{"x":115,"y":-41},{"x":-5,"y":20},{"x":39,"y":-10},{"x":115,"y":73},{"x":-91,"y":-105},{"x":27,"y":-29},{"x":37,"y":8},{"x":-7,"y":-30},{"x":-23,"y":19},{"x":-22,"y":-34},{"x":-86,"y":36},{"x":9,"y":-67},{"x":-94,"y":43},{"x":-9,"y":-65},{"x":26,"y":5},{"x":30,"y":-50},{"x":-62,"y":12},{"x":19,"y":-29},{"x":-84,"y":-8},{"x":-5,"y":21},{"x":-58,"y":-23},{"x":-2,"y":42},{"x":64,"y":8},{"x":-42,"y":19},{"x":29,"y":-1},{"x":-6,"y":119},{"x":-57,"y":23},{"x":-83,"y":-65},{"x":-54,"y":-102},{"x":96,"y":-66},{"x":-55,"y":-40},{"x":-6,"y":20},{"x":-64,"y":-88},{"x":-114,"y":-64},{"x":-8,"y":-44},{"x":-43,"y":25},{"x":-71,"y":-42},{"x":6,"y":-119},{"x":-69,"y":16},{"x":20,"y":72},{"x":-47,"y":-24},{"x":-85,"y":18},{"x":-58,"y":-30},{"x":20,"y":-23},{"x":-41,"y":-42},{"x":105,"y":-45},{"x":19,"y":13},{"x":-30,"y":28},{"x":52,"y":-31},{"x":-16,"y":24},{"x":31,"y":26},{"x":-11,"y":-94},{"x":-80,"y":-11},{"x":-32,"y":35},{"x":-67,"y":-81},{"x":-37,"y":108},{"x":-13,"y":-43},{"x":-60,"y":-25},{"x":-10,"y":-161},{"x":-114,"y":-94},{"x":100,"y":-11},{"x":25,"y":-41},{"x":-34,"y":-8},{"x":-18,"y":32},{"x":-4,"y":-21},{"x":52,"y":-53},{"x":34,"y":11},{"x":-8,"y":-36},{"x":-138,"y":30},{"x":10,"y":16},{"x":-52,"y":-19},{"x":24,"y":-37},{"x":-50,"y":-12},{"x":25,"y":-15},{"x":-25,"y":-23},{"x":-9,"y":31},{"x":-30,"y":-17},{"x":8,"y":-77},{"x":76,"y":7},{"x":41,"y":-25},{"x":-50,"y":-19},{"x":-4,"y":20},{"x":-53,"y":-89},{"x":32,"y":5},{"x":24,"y":-69},{"x":32,"y":-8},{"x":53,"y":61},{"x":113,"y":-11},{"x":41,"y":30},{"x":-34,"y":24},{"x":41,"y":-1},{"x":-10,"y":25},{"x":-96,"y":-23},{"x":105,"y":86},{"x":159,"y":-28},{"x":0,"y":-36},{"x":36,"y":-3},{"x":-25,"y":-19},{"x":-20,"y":26},{"x":-31,"y":-53},{"x":40,"y":-28},{"x":-33,"y":-22},{"x":39,"y":5},{"x":4,"y":-48},{"x":86,"y":98},{"x":45,"y":-16},{"x":-116,"y":-100},{"x":43,"y":-21},{"x":-62,"y":-75},{"x":32,"y":-51},{"x":378,"y":208},{"x":19,"y":-15},{"x":29,"y":94},{"x":114,"y":79},{"x":17,"y":79},{"x":-52,"y":32},{"x":-85,"y":-18},{"x":-20,"y":37},{"x":-55,"y":17},{"x":-35,"y":-21},{"x":-8,"y":30},{"x":53,"y":27},{"x":32,"y":-40},{"x":18,"y":36},{"x":13,"y":-56},{"x":95,"y":17},{"x":14,"y":-28},{"x":36,"y":51},{"x":-25,"y":41},{"x":33,"y":17},{"x":-53,"y":24},{"x":67,"y":36},{"x":-33,"y":13},{"x":-86,"y":-51},{"x":-39,"y":50},{"x":-88,"y":1},{"x":10,"y":66},{"x":-37,"y":8},{"x":83,"y":13},{"x":30,"y":35},{"x":78,"y":-47},{"x":-7,"y":45},{"x":47,"y":37},{"x":52,"y":-47},{"x":-21,"y":-72},{"x":53,"y":-14},{"x":55,"y":-110},{"x":-94,"y":-29},{"x":-18,"y":-49},{"x":37,"y":-30},{"x":87,"y":0},{"x":-14,"y":-22},{"x":-66,"y":10},{"x":15,"y":-55},{"x":46,"y":-6},{"x":-28,"y":-84},{"x":43,"y":-13},{"x":-45,"y":9},{"x":-21,"y":-42},{"x":-32,"y":9},{"x":10,"y":-61},{"x":149,"y":2},{"x":-46,"y":-59},{"x":53,"y":-2},{"x":59,"y":-77},{"x":119,"y":33},{"x":135,"y":-49},{"x":172,"y":83},{"x":39,"y":73},{"x":43,"y":-6},{"x":10,"y":-44},{"x":73,"y":64},{"x":80,"y":11},{"x":23,"y":41},{"x":24,"y":-46},{"x":64,"y":59},{"x":30,"y":-29},{"x":94,"y":20},{"x":3,"y":28},{"x":57,"y":7},{"x":88,"y":85},{"x":245,"y":146},{"x":48,"y":-16},{"x":36,"y":22},{"x":20,"y":-57},{"x":87,"y":0},{"x":-86,"y":2},{"x":-10,"y":29},{"x":64,"y":19},{"x":11,"y":-27},{"x":-10,"y":28},{"x":66,"y":22},{"x":12,"y":53},{"x":171,"y":-54},{"x":56,"y":-64},{"x":-24,"y":32},{"x":67,"y":-19},{"x":6,"y":-53},{"x":91,"y":-113},{"x":76,"y":100},{"x":-16,"y":96},{"x":-71,"y":38},{"x":-37,"y":-27},{"x":38,"y":25},{"x":39,"y":-25},{"x":-12,"y":-47},{"x":-93,"y":8},{"x":-87,"y":92},{"x":49,"y":48},{"x":-18,"y":109},{"x":49,"y":22},{"x":43,"y":137},{"x":152,"y":178},{"x":-20,"y":-10},{"x":19,"y":66},{"x":68,"y":20},{"x":-10,"y":87},{"x":-10,"y":-21},{"x":-22,"y":45},{"x":26,"y":-1},{"x":-30,"y":11},{"x":38,"y":8},{"x":23,"y":323}],"type":"coastline"},{"arc":[{"x":80741,"y":56150},{"x":3,"y":64},{"x":-35,"y":-81},{"x":11,"y":-83},{"x":21,"y":100}],"type":"coastline"},{"arc":[{"x":80930,"y":58793},{"x":-54,"y":-10},{"x":22,"y":-17},{"x":32,"y":27}],"type":"coastline"},{"arc":[{"x":81068,"y":58274},{"x":-28,"y":24},{"x":-37,"y":-51},{"x":19,"y":-47},{"x":46,"y":74}],"type":"coastline"},{"arc":[{"x":81078,"y":58929},{"x":-165,"y":109},{"x":-295,"y":-184},{"x":155,"y":18},{"x":50,"y":-35},{"x":42,"y":-1},{"x":-2,"y":26},{"x":88,"y":-34},{"x":55,"y":16},{"x":3,"y":40},{"x":11,"y":-20},{"x":-6,"y":18},{"x":39,"y":-2},{"x":25,"y":49}],"type":"coastline"},{"arc":[{"x":81171,"y":58740},{"x":0,"y":23},{"x":-37,"y":-14},{"x":37,"y":-9}],"type":"coastline"},{"arc":[{"x":81259,"y":57861},{"x":-30,"y":54},{"x":-57,"y":-24},{"x":12,"y":-53},{"x":58,"y":-27},{"x":17,"y":50}],"type":"coastline"},{"arc":[{"x":81439,"y":58692},{"x":-34,"y":25},{"x":-34,"y":-19},{"x":16,"y":28},{"x":-60,"y":83},{"x":-73,"y":-68},{"x":-46,"y":17},{"x":2,"y":-84},{"x":-24,"y":34},{"x":-40,"y":-31},{"x":17,"y":31},{"x":-47,"y":-4},{"x":-18,"y":31},{"x":29,"y":35},{"x":-54,"y":-4},{"x":-7,"y":21},{"x":21,"y":36},{"x":-73,"y":-28},{"x":-13,"y":-36},{"x":-36,"y":4},{"x":18,"y":-25},{"x":-25,"y":16},{"x":-39,"y":-22},{"x":8,"y":-47},{"x":-36,"y":14},{"x":-14,"y":52},{"x":-102,"y":-33},{"x":-20,"y":53},{"x":-59,"y":-88},{"x":24,"y":31},{"x":49,"y":-51},{"x":-71,"y":11},{"x":17,"y":-74},{"x":-23,"y":-9},{"x":52,"y":-71},{"x":-48,"y":31},{"x":-18,"y":-19},{"x":71,"y":-90},{"x":-22,"y":-47},{"x":159,"y":16},{"x":71,"y":96},{"x":66,"y":-23},{"x":21,"y":-81},{"x":-25,"y":-56},{"x":45,"y":-41},{"x":55,"y":29},{"x":-13,"y":-25},{"x":123,"y":128},{"x":102,"y":-1},{"x":-15,"y":30},{"x":37,"y":28},{"x":-45,"y":-5},{"x":-3,"y":-24},{"x":-47,"y":10},{"x":12,"y":43},{"x":-41,"y":32},{"x":64,"y":-11},{"x":-12,"y":-33},{"x":79,"y":1},{"x":4,"y":50},{"x":-42,"y":35},{"x":89,"y":48},{"x":28,"y":51}],"type":"coastline"},{"arc":[{"x":89242,"y":68662},{"x":44,"y":-99},{"x":-68,"y":-150},{"x":-74,"y":-32},{"x":-20,"y":-230},{"x":26,"y":-24},{"x":150,"y":69},{"x":25,"y":-15},{"x":-10,"y":-168},{"x":16,"y":-32},{"x":82,"y":-25},{"x":4,"y":-77},{"x":44,"y":-16},{"x":-6,"y":-61},{"x":103,"y":-39},{"x":36,"y":23},{"x":30,"y":-29},{"x":154,"y":-10},{"x":4,"y":-35},{"x":73,"y":8},{"x":86,"y":-65},{"x":125,"y":-36},{"x":196,"y":31},{"x":38,"y":-22},{"x":-140,"y":-199},{"x":-74,"y":-54},{"x":-215,"y":-67},{"x":15,"y":-13},{"x":-131,"y":-95},{"x":-236,"y":29},{"x":-17,"y":-97},{"x":49,"y":-70},{"x":-3,"y":-59},{"x":51,"y":-13},{"x":73,"y":-166},{"x":106,"y":-77},{"x":43,"y":-128},{"x":112,"y":-65},{"x":62,"y":-5},{"x":-35,"y":-93},{"x":-62,"y":-121},{"x":-19,"y":94},{"x":-29,"y":2},{"x":-11,"y":-37},{"x":-11,"y":80},{"x":-103,"y":-2},{"x":72,"y":-112},{"x":-61,"y":-37},{"x":-28,"y":-61},{"x":-69,"y":-19},{"x":0,"y":-29},{"x":-119,"y":63},{"x":-46,"y":81},{"x":-237,"y":25},{"x":-30,"y":36},{"x":-77,"y":12},{"x":-43,"y":-41},{"x":-68,"y":11},{"x":-29,"y":-34},{"x":-54,"y":-3},{"x":-22,"y":-57},{"x":-113,"y":19},{"x":-32,"y":-50},{"x":-170,"y":-59},{"x":-45,"y":15},{"x":-26,"y":136},{"x":-146,"y":60},{"x":-82,"y":-141},{"x":12,"y":-109},{"x":-62,"y":14},{"x":-93,"y":-46},{"x":-78,"y":17},{"x":0,"y":-191},{"x":-66,"y":-17},{"x":-25,"y":-104},{"x":-61,"y":-50},{"x":40,"y":-19},{"x":37,"y":-138}],"type":"area"},{"arc":[{"x":88004,"y":65644},{"x":50,"y":-156},{"x":136,"y":-75},{"x":-20,"y":-200},{"x":141,"y":-75},{"x":111,"y":-135},{"x":8,"y":-67},{"x":-53,"y":-15},{"x":-6,"y":-68},{"x":51,"y":-42},{"x":-2,"y":-119},{"x":-122,"y":-110},{"x":75,"y":-54},{"x":-24,"y":-87},{"x":111,"y":-37},{"x":42,"y":-48},{"x":-55,"y":-98},{"x":137,"y":-72},{"x":-10,"y":-38},{"x":29,"y":-15},{"x":-80,"y":-84},{"x":-70,"y":23},{"x":70,"y":-127},{"x":34,"y":25},{"x":121,"y":-154},{"x":-48,"y":-241},{"x":-215,"y":-85},{"x":-22,"y":-249},{"x":141,"y":-36},{"x":68,"y":-84},{"x":38,"y":23},{"x":77,"y":-30},{"x":66,"y":-136},{"x":102,"y":-59},{"x":15,"y":-52},{"x":95,"y":-86},{"x":86,"y":-25},{"x":27,"y":-133},{"x":117,"y":-27},{"x":51,"y":-50},{"x":6,"y":-59},{"x":52,"y":-19}],"type":"area"},{"arc":[{"x":90845,"y":64494},{"x":27,"y":19},{"x":-46,"y":10},{"x":48,"y":13},{"x":-27,"y":107},{"x":-76,"y":94},{"x":-37,"y":-22},{"x":12,"y":58},{"x":-50,"y":135},{"x":74,"y":2},{"x":60,"y":51},{"x":-85,"y":-46},{"x":49,"y":57},{"x":-44,"y":50},{"x":53,"y":8},{"x":2,"y":28},{"x":33,"y":-23},{"x":-20,"y":23},{"x":-100,"y":8},{"x":-43,"y":-23},{"x":-60,"y":96},{"x":-34,"y":-8},{"x":-13,"y":47},{"x":-44,"y":7},{"x":-27,"y":63},{"x":19,"y":372},{"x":-12,"y":41},{"x":-38,"y":3},{"x":31,"y":24},{"x":-36,"y":-25},{"x":-51,"y":45},{"x":76,"y":185},{"x":-23,"y":-1},{"x":15,"y":56},{"x":-24,"y":6},{"x":53,"y":1},{"x":-47,"y":53},{"x":-24,"y":167},{"x":7,"y":22},{"x":45,"y":-14},{"x":-46,"y":15},{"x":-15,"y":-1},{"x":8,"y":73},{"x":54,"y":-27},{"x":-54,"y":28},{"x":-1,"y":57},{"x":-43,"y":8},{"x":-15,"y":45},{"x":28,"y":59},{"x":36,"y":-19},{"x":-3,"y":-10},{"x":21,"y":-31},{"x":28,"y":-17},{"x":85,"y":-16},{"x":66,"y":4},{"x":-65,"y":-3},{"x":-56,"y":6},{"x":-54,"y":23},{"x":-23,"y":32},{"x":24,"y":-2},{"x":4,"y":-24},{"x":49,"y":-21},{"x":103,"y":-4},{"x":248,"y":299},{"x":-44,"y":58},{"x":15,"y":-4},{"x":-2,"y":-10},{"x":33,"y":-27},{"x":-33,"y":27},{"x":20,"y":31},{"x":119,"y":25},{"x":22,"y":28},{"x":18,"y":-24},{"x":-24,"y":32},{"x":27,"y":-29},{"x":-18,"y":28},{"x":36,"y":37},{"x":16,"y":-39},{"x":52,"y":52},{"x":35,"y":-6},{"x":-39,"y":74},{"x":18,"y":25},{"x":84,"y":-21},{"x":20,"y":77},{"x":69,"y":-63},{"x":71,"y":23},{"x":-7,"y":54},{"x":41,"y":-1},{"x":-51,"y":79},{"x":59,"y":37},{"x":2,"y":21},{"x":-8,"y":-8},{"x":-14,"y":12},{"x":4,"y":7},{"x":14,"y":-10},{"x":8,"y":4},{"x":-10,"y":-3},{"x":-1,"y":7},{"x":-3,"y":-4},{"x":-24,"y":9},{"x":7,"y":26},{"x":105,"y":-56},{"x":-72,"y":94},{"x":32,"y":26},{"x":-26,"y":51},{"x":51,"y":56},{"x":-14,"y":34},{"x":44,"y":-1},{"x":11,"y":41},{"x":-74,"y":56},{"x":-42,"y":-12},{"x":4,"y":72},{"x":111,"y":-15},{"x":55,"y":94},{"x":-54,"y":65},{"x":10,"y":34},{"x":-20,"y":-10},{"x":27,"y":41},{"x":-30,"y":-4},{"x":26,"y":10},{"x":-13,"y":35},{"x":-78,"y":-2},{"x":-35,"y":70},{"x":40,"y":-4},{"x":16,"y":31},{"x":-62,"y":38},{"x":0,"y":44},{"x":74,"y":2},{"x":1,"y":42},{"x":-54,"y":27},{"x":3,"y":36},{"x":-39,"y":-8},{"x":18,"y":45},{"x":-34,"y":27},{"x":13,"y":-19},{"x":-35,"y":-23},{"x":-61,"y":5},{"x":-17,"y":34},{"x":54,"y":20},{"x":39,"y":60},{"x":-252,"y":138},{"x":-40,"y":35},{"x":6,"y":69},{"x":-295,"y":84},{"x":-48,"y":46},{"x":11,"y":43},{"x":-6,"y":26},{"x":0,"y":-32},{"x":-7,"y":15},{"x":-17,"y":2},{"x":18,"y":17},{"x":-21,"y":-18},{"x":-109,"y":61},{"x":-71,"y":76},{"x":-150,"y":5},{"x":41,"y":39},{"x":-65,"y":-26},{"x":22,"y":25},{"x":-38,"y":16},{"x":-156,"y":-4},{"x":-41,"y":33},{"x":-48,"y":-21},{"x":5,"y":-29},{"x":-15,"y":19},{"x":-272,"y":-84},{"x":-62,"y":15},{"x":2,"y":-25},{"x":-10,"y":24},{"x":-5,"y":-22},{"x":-107,"y":24},{"x":56,"y":17},{"x":0,"y":34},{"x":-262,"y":5},{"x":-14,"y":-40},{"x":54,"y":-6},{"x":-46,"y":-19},{"x":-4,"y":-40},{"x":-2,"y":42},{"x":-42,"y":-55},{"x":3,"y":20},{"x":-124,"y":-64}],"type":"coastline"},{"arc":[{"x":92003,"y":68293},{"x":-7,"y":96},{"x":-5,"y":-22},{"x":-39,"y":31},{"x":10,"y":82},{"x":-41,"y":47},{"x":-11,"y":-64},{"x":32,"y":-25},{"x":-146,"y":-181},{"x":41,"y":-73},{"x":-15,"y":-55},{"x":24,"y":18},{"x":-35,"y":-32},{"x":34,"y":20},{"x":-13,"y":-58},{"x":-24,"y":26},{"x":24,"y":-26},{"x":-21,"y":-101},{"x":90,"y":71},{"x":-30,"y":3},{"x":77,"y":17},{"x":-17,"y":49},{"x":-24,"y":-8},{"x":14,"y":55},{"x":94,"y":96},{"x":-12,"y":34}],"type":"coastline"},{"arc":[{"x":85993,"y":70034},{"x":-38,"y":12},{"x":-12,"y":-21},{"x":50,"y":9}],"type":"coastline"},{"arc":[{"x":86048,"y":70946},{"x":-45,"y":44},{"x":-91,"y":-102},{"x":67,"y":27},{"x":-12,"y":-22},{"x":59,"y":-1},{"x":22,"y":54}],"type":"coastline"},{"arc":[{"x":86354,"y":69772},{"x":-33,"y":9},{"x":1,"y":-40},{"x":32,"y":31}],"type":"coastline"},{"arc":[{"x":86520,"y":70699},{"x":-46,"y":0},{"x":-6,"y":-72},{"x":52,"y":72}],"type":"coastline"},{"arc":[{"x":86616,"y":70799},{"x":-64,"y":-35},{"x":-19,"y":-60},{"x":74,"y":25},{"x":9,"y":70}],"type":"coastline"},{"arc":[{"x":87262,"y":70029},{"x":-35,"y":15},{"x":11,"y":-52},{"x":24,"y":37}],"type":"coastline"},{"arc":[{"x":87641,"y":70520},{"x":-37,"y":1},{"x":-44,"y":-85},{"x":62,"y":-66},{"x":19,"y":150}],"type":"coastline"},{"arc":[{"x":89242,"y":68662},{"x":-119,"y":-70},{"x":-279,"y":-65},{"x":-12,"y":-76},{"x":59,"y":-114},{"x":-17,"y":-125},{"x":12,"y":60},{"x":66,"y":37},{"x":56,"y":-130},{"x":-33,"y":-28},{"x":5,"y":-52},{"x":-56,"y":41},{"x":67,"y":-72},{"x":19,"y":-71},{"x":-28,"y":-41},{"x":-8,"y":49},{"x":-37,"y":-1},{"x":-46,"y":-58},{"x":-28,"y":119},{"x":-2,"y":-64},{"x":-14,"y":47},{"x":-31,"y":-22},{"x":29,"y":46},{"x":-32,"y":-32},{"x":-24,"y":18},{"x":-9,"y":-45},{"x":-56,"y":79},{"x":-88,"y":33},{"x":-87,"y":-52},{"x":-3,"y":-161},{"x":-49,"y":-137},{"x":21,"y":-64},{"x":-77,"y":-11},{"x":-39,"y":26},{"x":-93,"y":-16},{"x":-24,"y":-31},{"x":-6,"y":-33},{"x":70,"y":-44},{"x":-11,"y":-19},{"x":-69,"y":48},{"x":74,"y":-241},{"x":-32,"y":7},{"x":2,"y":-56},{"x":138,"y":-103},{"x":8,"y":18},{"x":17,"y":-71},{"x":-66,"y":-242},{"x":-322,"y":-22},{"x":-41,"y":51},{"x":-28,"y":-19},{"x":-85,"y":32},{"x":-116,"y":-6},{"x":16,"y":24},{"x":-91,"y":-18},{"x":-214,"y":66},{"x":-22,"y":102},{"x":-71,"y":102},{"x":10,"y":101},{"x":-96,"y":218},{"x":26,"y":48},{"x":-22,"y":-27},{"x":-32,"y":55},{"x":13,"y":37},{"x":41,"y":-53},{"x":-11,"y":47},{"x":21,"y":39},{"x":30,"y":-6},{"x":-56,"y":33},{"x":37,"y":50},{"x":-4,"y":-50},{"x":32,"y":-20},{"x":53,"y":118},{"x":-18,"y":77},{"x":39,"y":4},{"x":84,"y":264},{"x":40,"y":7},{"x":-39,"y":-5},{"x":-142,"y":78},{"x":18,"y":29},{"x":138,"y":-42},{"x":6,"y":11},{"x":8,"y":-2},{"x":17,"y":-34},{"x":-15,"y":34},{"x":-9,"y":4},{"x":38,"y":64},{"x":-108,"y":21},{"x":-18,"y":42},{"x":131,"y":-43},{"x":-5,"y":98},{"x":-101,"y":184},{"x":-67,"y":-45},{"x":-19,"y":24},{"x":63,"y":45},{"x":-92,"y":124},{"x":-55,"y":2},{"x":-19,"y":67},{"x":38,"y":-11},{"x":0,"y":19},{"x":-43,"y":18},{"x":-1,"y":37},{"x":-42,"y":-35},{"x":-22,"y":35},{"x":-13,"y":64},{"x":13,"y":-39},{"x":102,"y":1},{"x":0,"y":90},{"x":-70,"y":27},{"x":0,"y":26},{"x":71,"y":14},{"x":21,"y":36},{"x":-65,"y":3},{"x":-63,"y":-65},{"x":57,"y":62},{"x":-49,"y":208},{"x":61,"y":273},{"x":32,"y":10},{"x":37,"y":111},{"x":-66,"y":113},{"x":29,"y":33},{"x":5,"y":-36},{"x":68,"y":-21},{"x":87,"y":189},{"x":-8,"y":84},{"x":-49,"y":9},{"x":-98,"y":-81},{"x":-66,"y":-11},{"x":-8,"y":-127},{"x":-14,"y":24},{"x":-95,"y":-61},{"x":-42,"y":25},{"x":12,"y":22},{"x":-56,"y":-2},{"x":-184,"y":-126},{"x":-31,"y":66},{"x":-67,"y":-55},{"x":14,"y":-40},{"x":-73,"y":-63},{"x":-8,"y":-69},{"x":-58,"y":-57},{"x":-42,"y":10},{"x":-99,"y":-84},{"x":-80,"y":-18},{"x":-33,"y":5},{"x":1,"y":32},{"x":67,"y":24},{"x":-108,"y":-2},{"x":-31,"y":-74},{"x":-103,"y":-64},{"x":27,"y":-8},{"x":-81,"y":-18},{"x":-30,"y":-72},{"x":2,"y":116},{"x":-59,"y":-32},{"x":7,"y":42},{"x":53,"y":2},{"x":-45,"y":2},{"x":-16,"y":86},{"x":53,"y":41},{"x":-28,"y":59},{"x":-48,"y":-26},{"x":-41,"y":62},{"x":59,"y":102},{"x":72,"y":41},{"x":-26,"y":43},{"x":28,"y":-13},{"x":30,"y":34},{"x":-7,"y":63},{"x":-77,"y":-17},{"x":-6,"y":62},{"x":55,"y":20},{"x":-30,"y":51},{"x":105,"y":47},{"x":-38,"y":29},{"x":-10,"y":-23},{"x":-31,"y":14},{"x":-1,"y":87},{"x":-33,"y":21},{"x":-71,"y":-139},{"x":-58,"y":28},{"x":-28,"y":-42},{"x":18,"y":-122},{"x":-47,"y":-33},{"x":-9,"y":38},{"x":-67,"y":-97},{"x":-54,"y":8},{"x":-9,"y":-139},{"x":-47,"y":45},{"x":-11,"y":85},{"x":-4,"y":-51},{"x":-53,"y":-21},{"x":11,"y":123},{"x":-54,"y":87},{"x":21,"y":23},{"x":27,"y":-58},{"x":61,"y":29},{"x":-86,"y":132},{"x":70,"y":71},{"x":-84,"y":22},{"x":-54,"y":-30},{"x":-10,"y":60},{"x":12,"y":-16},{"x":26,"y":35},{"x":-50,"y":41},{"x":28,"y":33},{"x":53,"y":-45},{"x":23,"y":32},{"x":-21,"y":38},{"x":83,"y":17},{"x":80,"y":-47},{"x":49,"y":94},{"x":-79,"y":-37},{"x":-70,"y":8},{"x":0,"y":40},{"x":-45,"y":-23},{"x":-29,"y":34},{"x":-37,"y":-6},{"x":-31,"y":82},{"x":43,"y":-8},{"x":25,"y":108},{"x":-15,"y":22},{"x":-62,"y":-25},{"x":-36,"y":40},{"x":54,"y":38},{"x":11,"y":102},{"x":104,"y":-32},{"x":67,"y":35},{"x":15,"y":-25},{"x":82,"y":118},{"x":-149,"y":-45},{"x":-41,"y":47},{"x":-63,"y":9}],"type":"coastline"},{"arc":[{"x":85654,"y":70880},{"x":-156,"y":-234},{"x":77,"y":-118},{"x":-28,"y":-90},{"x":56,"y":-69},{"x":-75,"y":-148},{"x":-14,"y":-106},{"x":-128,"y":-118},{"x":18,"y":-196},{"x":-39,"y":-235},{"x":-100,"y":-98},{"x":39,"y":-55},{"x":13,"y":-194},{"x":-74,"y":19},{"x":-41,"y":-58},{"x":-69,"y":-1},{"x":-111,"y":-82},{"x":-44,"y":23},{"x":-64,"y":-20},{"x":-126,"y":57},{"x":2,"y":-44},{"x":-110,"y":-143},{"x":43,"y":-54},{"x":-37,"y":-129},{"x":13,"y":-163},{"x":-26,"y":-80},{"x":-144,"y":-176},{"x":-6,"y":-81},{"x":90,"y":-91},{"x":31,"y":22},{"x":146,"y":-32},{"x":56,"y":-55},{"x":159,"y":-55},{"x":36,"y":-86},{"x":46,"y":19},{"x":36,"y":-52},{"x":10,"y":35},{"x":180,"y":13},{"x":-29,"y":92},{"x":58,"y":95},{"x":107,"y":16},{"x":87,"y":-97},{"x":21,"y":36},{"x":90,"y":8},{"x":8,"y":42},{"x":22,"y":-16},{"x":60,"y":27},{"x":81,"y":142},{"x":33,"y":-125},{"x":-76,"y":-67},{"x":-5,"y":-80},{"x":47,"y":-23},{"x":29,"y":-101},{"x":115,"y":-173},{"x":-1,"y":-95},{"x":-44,"y":-48},{"x":27,"y":-79},{"x":96,"y":-71},{"x":0,"y":-72},{"x":94,"y":-35},{"x":-34,"y":-96},{"x":-53,"y":-25},{"x":-83,"y":-138},{"x":-21,"y":-120},{"x":-78,"y":-77},{"x":-51,"y":42},{"x":-96,"y":-49},{"x":-26,"y":-80},{"x":45,"y":5},{"x":4,"y":-26},{"x":-51,"y":0},{"x":-35,"y":-75},{"x":65,"y":-115},{"x":126,"y":-33},{"x":65,"y":13},{"x":-32,"y":-93},{"x":-52,"y":-26},{"x":-84,"y":-133},{"x":19,"y":-30},{"x":76,"y":17},{"x":27,"y":-25}],"type":"area"},{"arc":[{"x":85864,"y":66317},{"x":35,"y":1},{"x":46,"y":73},{"x":78,"y":42},{"x":43,"y":-22},{"x":59,"y":31},{"x":37,"y":-46},{"x":72,"y":4},{"x":43,"y":76},{"x":67,"y":38},{"x":3,"y":71},{"x":-38,"y":38},{"x":104,"y":-75},{"x":22,"y":-88},{"x":-27,"y":-59},{"x":44,"y":-98},{"x":-20,"y":-204},{"x":-60,"y":-23},{"x":-58,"y":-88},{"x":-143,"y":-40},{"x":20,"y":-37},{"x":-29,"y":-10},{"x":10,"y":-44},{"x":-45,"y":7},{"x":-3,"y":-60},{"x":-27,"y":-11},{"x":-52,"y":49},{"x":-56,"y":-71},{"x":-3,"y":-104},{"x":45,"y":-18},{"x":-42,"y":-175},{"x":148,"y":-152},{"x":-26,"y":-83},{"x":67,"y":-77},{"x":-9,"y":-114},{"x":101,"y":4},{"x":135,"y":145},{"x":97,"y":156},{"x":-4,"y":81},{"x":133,"y":151},{"x":47,"y":-55},{"x":-56,"y":-76},{"x":74,"y":-102},{"x":12,"y":135},{"x":25,"y":-45},{"x":37,"y":16},{"x":39,"y":-41},{"x":44,"y":-69},{"x":-12,"y":-32},{"x":193,"y":-70},{"x":153,"y":-96},{"x":170,"y":199},{"x":147,"y":33},{"x":264,"y":268},{"x":126,"y":-132},{"x":19,"y":66},{"x":91,"y":60}],"type":"area"},{"arc":[{"x":87504,"y":68760},{"x":-15,"y":26},{"x":34,"y":-53},{"x":-19,"y":27}],"type":"coastline"},{"arc":[{"x":82399,"y":70290},{"x":-65,"y":46},{"x":-54,"y":-55},{"x":54,"y":-36},{"x":33,"y":41},{"x":25,"y":-44},{"x":7,"y":48}],"type":"coastline"},{"arc":[{"x":82910,"y":70145},{"x":-53,"y":115},{"x":-49,"y":4},{"x":-9,"y":-103},{"x":20,"y":-23},{"x":40,"y":27},{"x":51,"y":-20}],"type":"coastline"},{"arc":[{"x":83865,"y":71117},{"x":-12,"y":18},{"x":-15,"y":-35},{"x":27,"y":17}],"type":"coastline"},{"arc":[{"x":84717,"y":70525},{"x":-61,"y":7},{"x":2,"y":-33},{"x":58,"y":-6},{"x":1,"y":32}],"type":"coastline"},{"arc":[{"x":84777,"y":71446},{"x":-31,"y":42},{"x":-59,"y":-19},{"x":-75,"y":23},{"x":12,"y":-28},{"x":-83,"y":-42},{"x":98,"y":-38},{"x":10,"y":-53},{"x":36,"y":103},{"x":92,"y":12}],"type":"coastline"},{"arc":[{"x":84807,"y":71430},{"x":-13,"y":17},{"x":6,"y":-36},{"x":7,"y":19}],"type":"coastline"},{"arc":[{"x":85132,"y":70172},{"x":-79,"y":-5},{"x":54,"y":-26},{"x":25,"y":31}],"type":"coastline"},{"arc":[{"x":85143,"y":70354},{"x":0,"y":64},{"x":-28,"y":4},{"x":-28,"y":-23},{"x":20,"y":-28},{"x":-149,"y":-87},{"x":22,"y":110},{"x":-47,"y":35},{"x":-37,"y":-110},{"x":-92,"y":-49},{"x":25,"y":-30},{"x":-18,"y":-41},{"x":39,"y":-40},{"x":54,"y":7},{"x":85,"y":106},{"x":64,"y":0},{"x":-25,"y":-58},{"x":32,"y":28},{"x":52,"y":-10},{"x":-24,"y":34},{"x":37,"y":6},{"x":18,"y":82}],"type":"coastline"},{"arc":[{"x":85654,"y":70880},{"x":-87,"y":32},{"x":-9,"y":89},{"x":-52,"y":-121},{"x":24,"y":-44},{"x":-97,"y":-130},{"x":13,"y":-127},{"x":36,"y":-47},{"x":-23,"y":-59},{"x":43,"y":-57},{"x":-52,"y":-47},{"x":47,"y":-38},{"x":-18,"y":-36},{"x":-69,"y":-3},{"x":-8,"y":-51},{"x":-136,"y":-7},{"x":-25,"y":22},{"x":-154,"y":-169},{"x":-104,"y":56},{"x":-68,"y":-52},{"x":45,"y":12},{"x":94,"y":-36},{"x":-107,"y":-14},{"x":-28,"y":-54},{"x":-38,"y":25},{"x":12,"y":38},{"x":-81,"y":-19},{"x":5,"y":81},{"x":-40,"y":-21},{"x":-18,"y":55},{"x":27,"y":10},{"x":-80,"y":39},{"x":55,"y":12},{"x":-17,"y":72},{"x":-88,"y":-27},{"x":-27,"y":92},{"x":-91,"y":17},{"x":67,"y":87},{"x":-131,"y":84},{"x":31,"y":41},{"x":-2,"y":-29},{"x":19,"y":21},{"x":90,"y":-29},{"x":-68,"y":65},{"x":102,"y":52},{"x":-163,"y":-25},{"x":2,"y":54},{"x":-37,"y":-23},{"x":-34,"y":48},{"x":64,"y":82},{"x":76,"y":-22},{"x":-9,"y":49},{"x":55,"y":57},{"x":-35,"y":12},{"x":-57,"y":-57},{"x":-47,"y":24},{"x":-58,"y":-29},{"x":-8,"y":38},{"x":-47,"y":14},{"x":33,"y":25},{"x":-27,"y":34},{"x":31,"y":6},{"x":-5,"y":40},{"x":44,"y":45},{"x":-6,"y":88},{"x":76,"y":2},{"x":22,"y":-26},{"x":38,"y":19},{"x":-66,"y":84},{"x":15,"y":52},{"x":49,"y":1},{"x":-78,"y":59},{"x":-7,"y":68},{"x":36,"y":26},{"x":-44,"y":39},{"x":13,"y":27},{"x":-119,"y":51},{"x":-15,"y":-70},{"x":46,"y":-46},{"x":-16,"y":-56},{"x":52,"y":-71},{"x":-36,"y":-18},{"x":14,"y":-35},{"x":-56,"y":17},{"x":-52,"y":-38},{"x":19,"y":-49},{"x":54,"y":19},{"x":17,"y":-20},{"x":1,"y":-89},{"x":-45,"y":-26},{"x":-10,"y":-56},{"x":-62,"y":7},{"x":16,"y":-69},{"x":-184,"y":9},{"x":56,"y":-108},{"x":93,"y":-12},{"x":-6,"y":-32},{"x":31,"y":-4},{"x":-46,"y":-22},{"x":32,"y":-79},{"x":-45,"y":11},{"x":-16,"y":45},{"x":-151,"y":1},{"x":-18,"y":30},{"x":-42,"y":-25},{"x":-44,"y":11},{"x":26,"y":25},{"x":-17,"y":31},{"x":33,"y":-10},{"x":-1,"y":22},{"x":9,"y":-24},{"x":7,"y":30},{"x":41,"y":-1},{"x":-76,"y":61},{"x":17,"y":66},{"x":-27,"y":30},{"x":-46,"y":-114},{"x":-69,"y":0},{"x":-78,"y":-113},{"x":-71,"y":-15},{"x":45,"y":-80},{"x":-28,"y":-13},{"x":-3,"y":35},{"x":-70,"y":-15},{"x":-95,"y":-107},{"x":85,"y":-64},{"x":-9,"y":-29},{"x":-129,"y":54},{"x":-43,"y":-112},{"x":-27,"y":19},{"x":24,"y":102},{"x":-168,"y":39},{"x":31,"y":40},{"x":102,"y":-5},{"x":52,"y":-32},{"x":-1,"y":28},{"x":-98,"y":54},{"x":7,"y":30},{"x":-34,"y":0},{"x":0,"y":35},{"x":71,"y":41},{"x":79,"y":-88},{"x":38,"y":32},{"x":-2,"y":-42},{"x":16,"y":89},{"x":-109,"y":190},{"x":-77,"y":-19},{"x":-187,"y":-267},{"x":-41,"y":-16},{"x":-30,"y":41},{"x":-39,"y":-2},{"x":-35,"y":-43},{"x":25,"y":-63},{"x":57,"y":-4},{"x":-1,"y":30},{"x":51,"y":-25},{"x":6,"y":-126},{"x":-89,"y":12},{"x":-117,"y":-94},{"x":7,"y":-54},{"x":70,"y":-18},{"x":13,"y":-42},{"x":30,"y":7},{"x":-6,"y":30},{"x":10,"y":-22},{"x":33,"y":10},{"x":-44,"y":-61},{"x":-106,"y":21},{"x":82,"y":-100},{"x":-85,"y":-37},{"x":21,"y":-49},{"x":16,"y":-13},{"x":51,"y":45},{"x":18,"y":-34},{"x":58,"y":27},{"x":-15,"y":-38},{"x":43,"y":1},{"x":-4,"y":-39},{"x":-130,"y":-39},{"x":-109,"y":95},{"x":-59,"y":-36},{"x":-85,"y":30},{"x":5,"y":-29},{"x":250,"y":-99},{"x":-35,"y":-52},{"x":4,"y":19},{"x":-93,"y":5},{"x":-32,"y":-61},{"x":-88,"y":89},{"x":-95,"y":-18},{"x":-5,"y":-37},{"x":-41,"y":-5},{"x":-3,"y":97},{"x":-43,"y":8}],"type":"coastline"},{"arc":[{"x":82578,"y":69966},{"x":-94,"y":-302},{"x":111,"y":-23},{"x":79,"y":45},{"x":64,"y":-3},{"x":132,"y":-41},{"x":280,"y":124},{"x":150,"y":-15},{"x":12,"y":-24},{"x":-51,"y":-55},{"x":18,"y":-106},{"x":97,"y":-79},{"x":-15,"y":-72},{"x":-59,"y":-66},{"x":26,"y":-67},{"x":-28,"y":-33},{"x":57,"y":-48},{"x":54,"y":-4},{"x":51,"y":-160},{"x":-75,"y":-243},{"x":-297,"y":-49},{"x":-111,"y":-106},{"x":-151,"y":-40},{"x":24,"y":-118},{"x":-77,"y":-209},{"x":76,"y":-347},{"x":-23,"y":-183},{"x":30,"y":-67},{"x":-202,"y":-189},{"x":44,"y":-248},{"x":148,"y":-220}],"type":"admin"},{"arc":[{"x":82848,"y":67018},{"x":103,"y":5},{"x":149,"y":65},{"x":93,"y":-122},{"x":38,"y":5},{"x":12,"y":-73},{"x":54,"y":-56},{"x":148,"y":-84},{"x":-59,"y":-84},{"x":-22,"y":-215},{"x":-98,"y":-44},{"x":-61,"y":-79},{"x":1,"y":-249},{"x":-82,"y":-195},{"x":69,"y":-123},{"x":60,"y":16},{"x":105,"y":-29}],"type":"admin"},{"arc":[{"x":83358,"y":65756},{"x":38,"y":19},{"x":62,"y":192},{"x":69,"y":88},{"x":147,"y":92},{"x":54,"y":-70},{"x":136,"y":100},{"x":161,"y":-11},{"x":90,"y":-51},{"x":92,"y":60},{"x":123,"y":-31},{"x":-5,"y":42},{"x":27,"y":26},{"x":7,"y":-27},{"x":18,"y":15},{"x":8,"y":41},{"x":91,"y":-19},{"x":31,"y":44},{"x":41,"y":-8},{"x":140,"y":104},{"x":49,"y":-45},{"x":42,"y":27},{"x":57,"y":-40},{"x":47,"y":31},{"x":136,"y":-24},{"x":61,"y":-163},{"x":74,"y":-54},{"x":-12,"y":-59},{"x":103,"y":-32},{"x":26,"y":2},{"x":15,"y":104},{"x":61,"y":-28},{"x":24,"y":69},{"x":54,"y":39},{"x":16,"y":-15},{"x":13,"y":44},{"x":25,"y":-30},{"x":53,"y":36},{"x":-2,"y":-59},{"x":48,"y":-33},{"x":36,"y":78},{"x":76,"y":-46},{"x":-7,"y":21},{"x":79,"y":16},{"x":102,"y":116}],"type":"area"},{"arc":[{"x":83358,"y":65756},{"x":51,"y":-52},{"x":-4,"y":-85}],"type":"admin"},{"arc":[{"x":79963,"y":68275},{"x":-60,"y":5},{"x":35,"y":-63},{"x":-15,"y":33},{"x":40,"y":25}],"type":"coastline"},{"arc":[{"x":81898,"y":69440},{"x":-52,"y":28},{"x":17,"y":114},{"x":-45,"y":2},{"x":-36,"y":-59},{"x":-34,"y":7},{"x":-8,"y":-49},{"x":-18,"y":24},{"x":18,"y":-111},{"x":36,"y":23},{"x":-8,"y":-34},{"x":46,"y":-36},{"x":9,"y":60},{"x":30,"y":-3},{"x":5,"y":-43},{"x":40,"y":77}],"type":"coastline"},{"arc":[{"x":82013,"y":69648},{"x":-41,"y":19},{"x":-11,"y":-25},{"x":37,"y":-22},{"x":15,"y":28}],"type":"coastline"},{"arc":[{"x":82578,"y":69966},{"x":-62,"y":-66},{"x":-52,"y":-1},{"x":7,"y":-120},{"x":-29,"y":-28},{"x":-70,"y":19},{"x":-11,"y":34},{"x":-63,"y":1},{"x":55,"y":-116},{"x":-33,"y":-2},{"x":2,"y":28},{"x":-44,"y":-52},{"x":-62,"y":-7},{"x":-41,"y":22},{"x":-8,"y":48},{"x":-46,"y":11},{"x":-42,"y":-42},{"x":28,"y":-13},{"x":-51,"y":-24},{"x":5,"y":-59},{"x":34,"y":-36},{"x":-8,"y":35},{"x":34,"y":-6},{"x":7,"y":-11},{"x":-6,"y":-17},{"x":-22,"y":7},{"x":19,"y":-8},{"x":19,"y":0},{"x":5,"y":-61},{"x":-1,"y":42},{"x":39,"y":-21},{"x":-27,"y":-17},{"x":23,"y":-9},{"x":14,"y":33},{"x":14,"y":-25},{"x":-49,"y":-56},{"x":37,"y":25},{"x":-23,"y":-46},{"x":-53,"y":29},{"x":-6,"y":-44},{"x":-19,"y":25},{"x":-71,"y":-15},{"x":-31,"y":-54},{"x":30,"y":14},{"x":-4,"y":-24},{"x":-86,"y":-123},{"x":-147,"y":-19},{"x":19,"y":-36},{"x":92,"y":7},{"x":2,"y":-70},{"x":-73,"y":-40},{"x":-80,"y":0},{"x":3,"y":-76},{"x":-38,"y":4},{"x":-19,"y":64},{"x":0,"y":-51},{"x":-46,"y":23},{"x":-26,"y":-30},{"x":-19,"y":14},{"x":26,"y":-115},{"x":-28,"y":44},{"x":-70,"y":10},{"x":58,"y":13},{"x":-32,"y":19},{"x":52,"y":67},{"x":-29,"y":26},{"x":-57,"y":-3},{"x":-119,"y":-95},{"x":-77,"y":18},{"x":-27,"y":-82},{"x":-75,"y":20},{"x":-13,"y":-61},{"x":-92,"y":-41},{"x":-20,"y":-234},{"x":-268,"y":-173},{"x":-184,"y":-61},{"x":-89,"y":-1},{"x":-86,"y":45},{"x":-23,"y":-18},{"x":-13,"y":30},{"x":-33,"y":-48},{"x":-29,"y":22},{"x":-2,"y":-26},{"x":-37,"y":12},{"x":-15,"y":61},{"x":56,"y":-36},{"x":16,"y":38},{"x":-44,"y":39},{"x":-32,"y":-16},{"x":36,"y":27},{"x":-49,"y":15},{"x":84,"y":-25},{"x":31,"y":21},{"x":-17,"y":84},{"x":36,"y":25},{"x":-164,"y":-34},{"x":-22,"y":120},{"x":-76,"y":28},{"x":3,"y":-37},{"x":-59,"y":-27},{"x":26,"y":-53},{"x":-64,"y":22},{"x":3,"y":-57},{"x":-45,"y":-1},{"x":-31,"y":-102},{"x":-22,"y":23},{"x":-30,"y":-30},{"x":36,"y":-137},{"x":101,"y":8},{"x":-64,"y":-62},{"x":5,"y":-23},{"x":32,"y":19},{"x":-18,"y":-31},{"x":44,"y":11},{"x":1,"y":-61},{"x":-40,"y":-26},{"x":-79,"y":34},{"x":42,"y":-35},{"x":-49,"y":6},{"x":-2,"y":32},{"x":-32,"y":-69},{"x":-64,"y":-16},{"x":-40,"y":32},{"x":-50,"y":-17},{"x":-31,"y":32},{"x":-78,"y":-116},{"x":-41,"y":72},{"x":141,"y":102},{"x":-51,"y":21},{"x":-73,"y":-35},{"x":62,"y":108},{"x":18,"y":-23},{"x":87,"y":11},{"x":-69,"y":-7},{"x":-33,"y":40},{"x":-68,"y":3},{"x":-1,"y":27},{"x":-58,"y":-21},{"x":14,"y":-141},{"x":-25,"y":-61},{"x":-2,"y":127},{"x":-68,"y":45},{"x":51,"y":63},{"x":-37,"y":45},{"x":-18,"y":-61},{"x":-28,"y":30},{"x":-17,"y":-125},{"x":-16,"y":15},{"x":-18,"y":-37},{"x":-8,"y":20},{"x":17,"y":-132},{"x":-36,"y":2},{"x":-20,"y":-74},{"x":-257,"y":-85},{"x":-45,"y":4},{"x":6,"y":30},{"x":-53,"y":-6},{"x":-25,"y":-56},{"x":-97,"y":-49},{"x":-149,"y":48},{"x":-44,"y":-85},{"x":23,"y":-27},{"x":-27,"y":20},{"x":-136,"y":-120},{"x":-176,"y":-83},{"x":-302,"y":-106},{"x":-114,"y":-7},{"x":-56,"y":-38},{"x":-47,"y":36},{"x":-83,"y":-9},{"x":-495,"y":-176},{"x":-133,"y":-17},{"x":-47,"y":24},{"x":46,"y":-24},{"x":-38,"y":-9},{"x":0,"y":21},{"x":-20,"y":-31},{"x":1,"y":52},{"x":-4,"y":-49},{"x":-42,"y":-26},{"x":-302,"y":-40},{"x":-359,"y":-144},{"x":-456,"y":-111}],"type":"coastline"},{"arc":[{"x":75938,"y":67011},{"x":-46,"y":-162},{"x":75,"y":-115},{"x":72,"y":-222},{"x":-44,"y":-141},{"x":79,"y":-55},{"x":48,"y":-125},{"x":-74,"y":-15},{"x":-59,"y":-53},{"x":-38,"y":35},{"x":-31,"y":-47},{"x":-77,"y":-9},{"x":-28,"y":-41},{"x":-46,"y":-8},{"x":-57,"y":32},{"x":-39,"y":-18},{"x":-5,"y":-108},{"x":75,"y":-66},{"x":18,"y":-123},{"x":64,"y":-96},{"x":287,"y":-159},{"x":-37,"y":-29},{"x":103,"y":-156},{"x":9,"y":-62},{"x":248,"y":-139},{"x":-9,"y":-150},{"x":42,"y":-88},{"x":210,"y":-145},{"x":-24,"y":-103},{"x":99,"y":-87}],"type":"area"},{"arc":[{"x":76753,"y":64556},{"x":79,"y":-34},{"x":56,"y":13},{"x":45,"y":50},{"x":-11,"y":107},{"x":149,"y":31},{"x":61,"y":59},{"x":-56,"y":129},{"x":30,"y":50},{"x":-32,"y":81},{"x":72,"y":85},{"x":59,"y":15},{"x":29,"y":107},{"x":171,"y":-113},{"x":29,"y":74},{"x":82,"y":16},{"x":-14,"y":-127},{"x":65,"y":-117},{"x":315,"y":-138},{"x":81,"y":-71},{"x":148,"y":40},{"x":157,"y":-182},{"x":60,"y":1},{"x":81,"y":-61},{"x":32,"y":-159},{"x":140,"y":11},{"x":37,"y":51},{"x":114,"y":54},{"x":-18,"y":93},{"x":-141,"y":172},{"x":44,"y":88},{"x":-3,"y":129},{"x":-115,"y":88},{"x":-69,"y":184},{"x":62,"y":150},{"x":61,"y":33},{"x":38,"y":193},{"x":36,"y":15},{"x":-1,"y":40},{"x":64,"y":-25},{"x":141,"y":27},{"x":76,"y":22},{"x":-26,"y":37},{"x":101,"y":14},{"x":-115,"y":214},{"x":71,"y":59},{"x":25,"y":85},{"x":63,"y":-2},{"x":172,"y":74},{"x":28,"y":313},{"x":66,"y":53},{"x":4,"y":108},{"x":50,"y":72},{"x":68,"y":15},{"x":38,"y":44},{"x":185,"y":-27},{"x":33,"y":22},{"x":37,"y":-58},{"x":60,"y":4},{"x":49,"y":114},{"x":1,"y":108},{"x":43,"y":60},{"x":78,"y":-23},{"x":48,"y":29},{"x":131,"y":-32},{"x":70,"y":163},{"x":128,"y":-49},{"x":123,"y":73},{"x":138,"y":-78},{"x":52,"y":32},{"x":159,"y":-171},{"x":95,"y":-229},{"x":-91,"y":-122},{"x":15,"y":-121},{"x":-32,"y":-108},{"x":39,"y":-15},{"x":86,"y":90},{"x":74,"y":5},{"x":1,"y":53},{"x":161,"y":-13},{"x":38,"y":32},{"x":81,"y":-12},{"x":73,"y":29},{"x":119,"y":-28},{"x":67,"y":-107},{"x":68,"y":44},{"x":26,"y":-29},{"x":107,"y":28},{"x":64,"y":-50},{"x":98,"y":108},{"x":69,"y":-6},{"x":47,"y":37},{"x":85,"y":8},{"x":110,"y":178},{"x":55,"y":35},{"x":139,"y":38},{"x":125,"y":-29},{"x":97,"y":71},{"x":75,"y":-14},{"x":33,"y":-51},{"x":44,"y":9},{"x":23,"y":41},{"x":64,"y":10},{"x":6,"y":146}],"type":"area"},{"arc":[{"x":76753,"y":64556},{"x":-40,"y":-115},{"x":14,"y":-65}],"type":"area"},{"arc":[{"x":76727,"y":64376},{"x":2,"y":-25},{"x":55,"y":8},{"x":29,"y":-66},{"x":-68,"y":-69},{"x":49,"y":-11},{"x":-1,"y":-126},{"x":94,"y":-23},{"x":-16,"y":-71},{"x":148,"y":-97}],"type":"area"},{"arc":[{"x":70341,"y":66004},{"x":-77,"y":-7},{"x":20,"y":-39},{"x":57,"y":46}],"type":"coastline"},{"arc":[{"x":70561,"y":66092},{"x":-63,"y":17},{"x":38,"y":-45},{"x":25,"y":28}],"type":"coastline"},{"arc":[{"x":71154,"y":66253},{"x":-12,"y":32},{"x":-27,"y":-19},{"x":-80,"y":34},{"x":-37,"y":-26},{"x":-136,"y":32},{"x":153,"y":-108},{"x":139,"y":55}],"type":"coastline"},{"arc":[{"x":71190,"y":66096},{"x":-19,"y":30},{"x":16,"y":-48},{"x":3,"y":18}],"type":"coastline"},{"arc":[{"x":75938,"y":67011},{"x":-22,"y":-32},{"x":-927,"y":-243},{"x":-114,"y":-18},{"x":-23,"y":22},{"x":-8,"y":-29},{"x":-42,"y":25},{"x":-21,"y":-41},{"x":8,"y":45},{"x":24,"y":2},{"x":-80,"y":16},{"x":36,"y":-46},{"x":-55,"y":-17},{"x":-12,"y":-58},{"x":-167,"y":-41},{"x":24,"y":52},{"x":120,"y":22},{"x":-14,"y":67},{"x":104,"y":108},{"x":-106,"y":-107},{"x":2,"y":-27},{"x":-153,"y":-35},{"x":1,"y":-30},{"x":-18,"y":42},{"x":8,"y":-43},{"x":-114,"y":-26},{"x":-33,"y":12},{"x":8,"y":39},{"x":-68,"y":-16},{"x":22,"y":3},{"x":-7,"y":-31},{"x":-44,"y":-29},{"x":-318,"y":-28},{"x":-199,"y":27},{"x":-101,"y":78},{"x":-18,"y":59},{"x":-63,"y":-13},{"x":-23,"y":34},{"x":26,"y":4},{"x":-98,"y":44},{"x":-15,"y":60},{"x":-213,"y":-94},{"x":-30,"y":-3},{"x":-17,"y":15},{"x":-49,"y":-6},{"x":49,"y":4},{"x":-3,"y":-17},{"x":20,"y":-15},{"x":-12,"y":-22},{"x":-25,"y":30},{"x":-28,"y":-49},{"x":-131,"y":45},{"x":-26,"y":-40},{"x":51,"y":12},{"x":-70,"y":-57},{"x":-124,"y":39},{"x":-27,"y":-66},{"x":-33,"y":18},{"x":-60,"y":-28},{"x":-44,"y":35},{"x":-65,"y":-54},{"x":-41,"y":77},{"x":-58,"y":22},{"x":-60,"y":-144},{"x":-53,"y":41},{"x":-6,"y":-30},{"x":-40,"y":2},{"x":0,"y":75},{"x":-86,"y":14},{"x":-20,"y":-45},{"x":-51,"y":73},{"x":-74,"y":18},{"x":13,"y":-87},{"x":-71,"y":-42},{"x":-57,"y":73},{"x":-86,"y":-44},{"x":-141,"y":-260},{"x":-55,"y":-40},{"x":-132,"y":-70},{"x":-105,"y":36},{"x":-5,"y":-21},{"x":-73,"y":10},{"x":-66,"y":-50},{"x":32,"y":17},{"x":50,"y":-15},{"x":-9,"y":-22},{"x":47,"y":50},{"x":31,"y":-34},{"x":25,"y":10},{"x":1,"y":-44},{"x":-31,"y":28},{"x":-1,"y":-41},{"x":-34,"y":24},{"x":-15,"y":-29},{"x":-19,"y":27},{"x":-68,"y":-88},{"x":-52,"y":52},{"x":-16,"y":-74},{"x":13,"y":18},{"x":14,"y":-27},{"x":-25,"y":-25},{"x":-5,"y":28},{"x":-16,"y":-43},{"x":-95,"y":-1},{"x":1,"y":44},{"x":-31,"y":-29},{"x":9,"y":48},{"x":-62,"y":-42},{"x":-20,"y":20},{"x":-7,"y":-52},{"x":-74,"y":5},{"x":-23,"y":46},{"x":-55,"y":-40},{"x":-60,"y":11},{"x":82,"y":-39},{"x":-14,"y":-40},{"x":-54,"y":42},{"x":-55,"y":-42},{"x":-42,"y":97},{"x":-77,"y":-20},{"x":-3,"y":33},{"x":-32,"y":-28},{"x":9,"y":35},{"x":-61,"y":12},{"x":-57,"y":-39},{"x":-6,"y":-71},{"x":-64,"y":-98},{"x":-148,"y":3},{"x":-63,"y":70},{"x":-202,"y":-9},{"x":-72,"y":-43},{"x":-81,"y":-173},{"x":-65,"y":-18},{"x":-63,"y":34},{"x":-22,"y":-102},{"x":5,"y":40},{"x":-27,"y":-36},{"x":-108,"y":6},{"x":-101,"y":129},{"x":-53,"y":-9},{"x":-55,"y":-104},{"x":43,"y":-99},{"x":66,"y":-54},{"x":132,"y":-14},{"x":45,"y":-40},{"x":-53,"y":-95},{"x":44,"y":-40},{"x":-79,"y":-76},{"x":-7,"y":-223},{"x":86,"y":-85},{"x":147,"y":-58},{"x":96,"y":10},{"x":46,"y":64},{"x":57,"y":-15},{"x":39,"y":-75},{"x":-58,"y":-46},{"x":70,"y":-8},{"x":81,"y":-60},{"x":45,"y":-104},{"x":31,"y":33},{"x":-2,"y":-36},{"x":50,"y":5},{"x":7,"y":-44},{"x":-51,"y":-3},{"x":58,"y":-4},{"x":17,"y":-137},{"x":-21,"y":-30},{"x":-39,"y":3},{"x":-3,"y":-31},{"x":84,"y":-48},{"x":-29,"y":-15},{"x":59,"y":-47}],"type":"coastline"},{"arc":[{"x":70391,"y":64297},{"x":119,"y":33},{"x":92,"y":-10},{"x":95,"y":61},{"x":55,"y":-8},{"x":112,"y":211},{"x":57,"y":29},{"x":130,"y":6},{"x":69,"y":-33},{"x":103,"y":-3},{"x":76,"y":-63},{"x":62,"y":84},{"x":151,"y":46},{"x":144,"y":-62},{"x":95,"y":-87},{"x":162,"y":23}],"type":"admin"},{"arc":[{"x":71913,"y":64524},{"x":-22,"y":34},{"x":118,"y":29},{"x":44,"y":40},{"x":71,"y":-40},{"x":61,"y":-130},{"x":52,"y":-6},{"x":113,"y":-86},{"x":22,"y":-68},{"x":40,"y":9},{"x":222,"y":172},{"x":116,"y":235},{"x":43,"y":-22},{"x":12,"y":167},{"x":163,"y":58},{"x":25,"y":159},{"x":128,"y":28},{"x":56,"y":43},{"x":125,"y":5},{"x":10,"y":-26},{"x":84,"y":6},{"x":21,"y":-23},{"x":-40,"y":-75},{"x":27,"y":-24},{"x":-3,"y":-90},{"x":55,"y":-20},{"x":103,"y":30},{"x":115,"y":-15},{"x":188,"y":-139},{"x":117,"y":100},{"x":0,"y":62},{"x":61,"y":16},{"x":46,"y":-15},{"x":1,"y":-40},{"x":87,"y":8},{"x":-36,"y":77},{"x":35,"y":49},{"x":57,"y":-36},{"x":98,"y":35},{"x":-16,"y":-42},{"x":41,"y":-15},{"x":76,"y":36},{"x":-17,"y":-58},{"x":-65,"y":-8},{"x":-18,"y":-32},{"x":45,"y":-170},{"x":-176,"y":-83},{"x":65,"y":-85},{"x":101,"y":-43},{"x":279,"y":5},{"x":81,"y":72},{"x":-60,"y":83},{"x":70,"y":76},{"x":107,"y":-44},{"x":10,"y":-64},{"x":47,"y":7},{"x":28,"y":-67},{"x":89,"y":-50},{"x":138,"y":59},{"x":23,"y":51},{"x":55,"y":15},{"x":33,"y":-33},{"x":35,"y":43},{"x":31,"y":-19},{"x":-11,"y":-52},{"x":70,"y":-27},{"x":0,"y":-54},{"x":43,"y":-44},{"x":-15,"y":-41},{"x":34,"y":-35},{"x":-47,"y":-5},{"x":33,"y":-57},{"x":139,"y":-22},{"x":91,"y":-87},{"x":64,"y":-22},{"x":29,"y":57},{"x":158,"y":-4},{"x":84,"y":78},{"x":109,"y":-3},{"x":84,"y":-56},{"x":115,"y":198},{"x":107,"y":-60},{"x":115,"y":20},{"x":19,"y":-28},{"x":176,"y":-45}],"type":"area"},{"arc":[{"x":71913,"y":64524},{"x":164,"y":-195},{"x":-59,"y":-104},{"x":-31,"y":-6},{"x":-34,"y":-174},{"x":38,"y":-41},{"x":-10,"y":-39},{"x":293,"y":-301},{"x":-27,"y":-59},{"x":-228,"y":-136},{"x":60,"y":-13},{"x":23,"y":-40},{"x":116,"y":-23},{"x":119,"y":-149},{"x":69,"y":27},{"x":8,"y":-43},{"x":66,"y":26},{"x":93,"y":-25},{"x":49,"y":43},{"x":154,"y":-126},{"x":111,"y":37},{"x":214,"y":-8},{"x":18,"y":-81},{"x":-32,"y":-67},{"x":50,"y":-56},{"x":4,"y":-95},{"x":65,"y":-6},{"x":55,"y":47},{"x":30,"y":-8},{"x":-18,"y":45},{"x":54,"y":25},{"x":63,"y":-13},{"x":7,"y":-76},{"x":57,"y":-69},{"x":-32,"y":-43},{"x":43,"y":-274},{"x":176,"y":-109},{"x":-34,"y":-60},{"x":45,"y":-193}],"type":"admin"},{"arc":[{"x":73652,"y":62142},{"x":74,"y":-23},{"x":24,"y":-38},{"x":119,"y":7},{"x":33,"y":34},{"x":104,"y":-55},{"x":55,"y":105},{"x":123,"y":-5},{"x":159,"y":54},{"x":62,"y":64},{"x":10,"y":87},{"x":19,"y":-133},{"x":316,"y":-114},{"x":65,"y":-99},{"x":57,"y":-32},{"x":83,"y":-188},{"x":-13,"y":-200},{"x":80,"y":-84},{"x":2,"y":-43},{"x":97,"y":12},{"x":123,"y":-53},{"x":94,"y":-98},{"x":313,"y":-35},{"x":79,"y":-121},{"x":84,"y":-27},{"x":23,"y":-91},{"x":59,"y":-5},{"x":56,"y":-72},{"x":101,"y":-263},{"x":177,"y":1},{"x":82,"y":97},{"x":144,"y":36}],"type":"admin"},{"arc":[{"x":64576,"y":50807},{"x":-22,"y":10},{"x":-51,"y":-63},{"x":73,"y":53}],"type":"coastline"},{"arc":[{"x":64708,"y":51054},{"x":-30,"y":22},{"x":-1,"y":-58},{"x":31,"y":36}],"type":"coastline"},{"arc":[{"x":67904,"y":50905},{"x":-21,"y":55},{"x":-92,"y":-56},{"x":-50,"y":40},{"x":-15,"y":-34},{"x":-34,"y":16},{"x":27,"y":-63},{"x":-43,"y":-60},{"x":64,"y":38},{"x":34,"y":-13},{"x":7,"y":53},{"x":123,"y":24}],"type":"coastline"},{"arc":[{"x":68015,"y":51105},{"x":-100,"y":37},{"x":-59,"y":-14},{"x":91,"y":-52},{"x":28,"y":37},{"x":40,"y":-8}],"type":"coastline"},{"arc":[{"x":68670,"y":60523},{"x":-46,"y":31},{"x":-26,"y":-58},{"x":49,"y":-11},{"x":23,"y":38}],"type":"coastline"},{"arc":[{"x":69464,"y":56552},{"x":-102,"y":-22},{"x":-31,"y":-37},{"x":26,"y":11},{"x":30,"y":-36},{"x":77,"y":84}],"type":"coastline"},{"arc":[{"x":71077,"y":59575},{"x":22,"y":-46},{"x":34,"y":-5},{"x":-26,"y":63},{"x":-30,"y":-12}],"type":"coastline"},{"arc":[{"x":71679,"y":59663},{"x":-30,"y":1},{"x":-4,"y":-30},{"x":34,"y":29}],"type":"coastline"},{"arc":[{"x":71884,"y":60894},{"x":-33,"y":-29},{"x":33,"y":-5},{"x":0,"y":34}],"type":"coastline"},{"arc":[{"x":71297,"y":60753},{"x":-15,"y":-67}],"type":"area"},{"arc":[{"x":71282,"y":60686},{"x":-8,"y":-34},{"x":-30,"y":11},{"x":14,"y":-80},{"x":-40,"y":25},{"x":-47,"y":-65},{"x":8,"y":-32},{"x":86,"y":0},{"x":-51,"y":-24},{"x":46,"y":-58},{"x":-76,"y":-212},{"x":102,"y":-68},{"x":-37,"y":-47},{"x":86,"y":-24},{"x":9,"y":-63},{"x":116,"y":-31},{"x":-10,"y":-49},{"x":28,"y":-30},{"x":49,"y":3},{"x":-5,"y":-53},{"x":75,"y":-7},{"x":36,"y":68},{"x":38,"y":-18},{"x":7,"y":69},{"x":111,"y":42},{"x":113,"y":125},{"x":-3,"y":116},{"x":63,"y":203},{"x":-25,"y":49},{"x":44,"y":28},{"x":-76,"y":51},{"x":35,"y":88},{"x":-98,"y":43},{"x":-29,"y":57},{"x":-23,"y":-15},{"x":-39,"y":25},{"x":-25,"y":55},{"x":-41,"y":-42},{"x":16,"y":-18},{"x":-55,"y":20},{"x":-29,"y":54},{"x":-78,"y":-34},{"x":-6,"y":-50},{"x":-73,"y":61},{"x":-68,"y":-46},{"x":-14,"y":87},{"x":-35,"y":20},{"x":15,"y":-25},{"x":-61,"y":-108}],"type":"coastline"},{"arc":[{"x":72671,"y":60798},{"x":-11,"y":26},{"x":-16,"y":-21},{"x":27,"y":-5}],"type":"coastline"},{"arc":[{"x":72765,"y":60866},{"x":-16,"y":17},{"x":-43,"y":-36},{"x":59,"y":19}],"type":"coastline"},{"arc":[{"x":75774,"y":56515},{"x":-35,"y":56},{"x":-26,"y":-5},{"x":-7,"y":-48},{"x":35,"y":6},{"x":7,"y":-34},{"x":26,"y":25}],"type":"coastline"},{"arc":[{"x":76928,"y":57301},{"x":-21,"y":24},{"x":10,"y":-47},{"x":-48,"y":-20},{"x":54,"y":19},{"x":5,"y":24}],"type":"coastline"},{"arc":[{"x":73652,"y":62142},{"x":-165,"y":-72},{"x":-115,"y":33},{"x":-64,"y":-40},{"x":-37,"y":99},{"x":-62,"y":15},{"x":-62,"y":93},{"x":-46,"y":-63},{"x":-112,"y":-43},{"x":-81,"y":98},{"x":-272,"y":-12},{"x":-56,"y":47},{"x":-176,"y":0},{"x":-67,"y":53},{"x":-36,"y":-6},{"x":-30,"y":-62},{"x":54,"y":-263},{"x":-129,"y":-25},{"x":-47,"y":36},{"x":-7,"y":65},{"x":-49,"y":-7},{"x":-40,"y":45},{"x":-139,"y":0},{"x":17,"y":-108},{"x":-30,"y":-41},{"x":59,"y":-32},{"x":-27,"y":9},{"x":-85,"y":-59},{"x":-22,"y":-53},{"x":-38,"y":3},{"x":-41,"y":-188},{"x":31,"y":-15},{"x":8,"y":-66},{"x":88,"y":-32},{"x":5,"y":53},{"x":72,"y":-10},{"x":54,"y":-105}],"type":"area"},{"arc":[{"x":72005,"y":61489},{"x":85,"y":61},{"x":40,"y":75},{"x":139,"y":37},{"x":226,"y":-92},{"x":50,"y":-117},{"x":61,"y":29},{"x":68,"y":-47},{"x":20,"y":-77},{"x":-26,"y":-31},{"x":59,"y":-105},{"x":-17,"y":-102},{"x":38,"y":-116},{"x":-31,"y":-7},{"x":5,"y":-30},{"x":82,"y":-58},{"x":79,"y":31},{"x":-66,"y":-43},{"x":29,"y":-43},{"x":71,"y":-20},{"x":-26,"y":-90},{"x":92,"y":-154},{"x":-68,"y":-100},{"x":8,"y":-101},{"x":-162,"y":-186},{"x":24,"y":-65},{"x":-130,"y":-95},{"x":-172,"y":-50},{"x":-159,"y":28},{"x":-73,"y":49},{"x":-75,"y":-104},{"x":-185,"y":-39},{"x":-126,"y":-185},{"x":-150,"y":-43},{"x":3,"y":-44},{"x":-43,"y":-28},{"x":-32,"y":4},{"x":-24,"y":34},{"x":-2,"y":-32},{"x":-49,"y":-6},{"x":2,"y":25},{"x":36,"y":-8},{"x":-61,"y":45},{"x":12,"y":-33},{"x":-54,"y":-12},{"x":28,"y":48},{"x":-80,"y":-7},{"x":-153,"y":-75},{"x":-46,"y":-2},{"x":3,"y":18},{"x":-61,"y":-30},{"x":-8,"y":-66},{"x":35,"y":-22},{"x":-41,"y":-22},{"x":-9,"y":45},{"x":-40,"y":-16},{"x":-3,"y":-47},{"x":-40,"y":20},{"x":35,"y":-23},{"x":-52,"y":-39},{"x":15,"y":33},{"x":-56,"y":-43},{"x":-9,"y":26},{"x":64,"y":19},{"x":-14,"y":33},{"x":-133,"y":-65},{"x":-134,"y":-23},{"x":37,"y":-103},{"x":-34,"y":-12},{"x":-48,"y":82},{"x":13,"y":56},{"x":-7,"y":-27},{"x":-39,"y":-5},{"x":-4,"y":24},{"x":-118,"y":-39},{"x":5,"y":-45},{"x":54,"y":-11},{"x":33,"y":-76},{"x":-30,"y":-7},{"x":-51,"y":48},{"x":23,"y":-36},{"x":-39,"y":22},{"x":-56,"y":-37},{"x":-6,"y":32},{"x":-54,"y":15},{"x":-15,"y":106},{"x":39,"y":4},{"x":46,"y":96},{"x":-51,"y":-92},{"x":-106,"y":-13},{"x":17,"y":-131},{"x":32,"y":-13},{"x":-49,"y":-7},{"x":-13,"y":27},{"x":-40,"y":-17},{"x":24,"y":26},{"x":-36,"y":-22},{"x":-63,"y":33},{"x":-106,"y":-4},{"x":-88,"y":44},{"x":-175,"y":11},{"x":-147,"y":73},{"x":24,"y":17},{"x":-29,"y":28},{"x":-25,"y":-22},{"x":48,"y":97},{"x":-98,"y":63},{"x":-61,"y":-81},{"x":50,"y":-48},{"x":-64,"y":39},{"x":16,"y":29},{"x":-22,"y":12},{"x":21,"y":-13},{"x":-29,"y":-12},{"x":3,"y":18},{"x":-25,"y":-38},{"x":-493,"y":145},{"x":-123,"y":85},{"x":-63,"y":116},{"x":-77,"y":36},{"x":-32,"y":87},{"x":29,"y":-38},{"x":2,"y":35},{"x":-178,"y":130},{"x":-44,"y":127},{"x":2,"y":166},{"x":-44,"y":-7},{"x":5,"y":68},{"x":-217,"y":-139},{"x":-28,"y":-3},{"x":-12,"y":38},{"x":-1,"y":-39},{"x":-35,"y":-1},{"x":-159,"y":63},{"x":-27,"y":-129},{"x":-58,"y":-87},{"x":-67,"y":-12},{"x":-27,"y":30},{"x":89,"y":34},{"x":-72,"y":73},{"x":42,"y":6},{"x":-35,"y":14},{"x":-174,"y":-106},{"x":-39,"y":-68},{"x":22,"y":-142},{"x":-38,"y":-101},{"x":-100,"y":-55},{"x":-68,"y":70},{"x":10,"y":-44},{"x":-71,"y":-33},{"x":95,"y":-49},{"x":128,"y":-207},{"x":-20,"y":10},{"x":-90,"y":-104},{"x":-25,"y":-161},{"x":131,"y":-121},{"x":26,"y":26},{"x":117,"y":-11},{"x":47,"y":60},{"x":151,"y":-60},{"x":218,"y":-170},{"x":135,"y":-213},{"x":15,"y":-107},{"x":-37,"y":-33},{"x":42,"y":-43},{"x":-73,"y":-11},{"x":35,"y":-67},{"x":-17,"y":-59},{"x":32,"y":-22},{"x":-25,"y":-16},{"x":15,"y":-65},{"x":46,"y":-22},{"x":-43,"y":-6},{"x":12,"y":-59},{"x":39,"y":-21},{"x":-42,"y":-4},{"x":-3,"y":-53},{"x":28,"y":1},{"x":-30,"y":-5},{"x":0,"y":-138},{"x":48,"y":-31},{"x":-38,"y":-3},{"x":-18,"y":-59},{"x":76,"y":-138},{"x":-30,"y":-9},{"x":13,"y":-126},{"x":101,"y":-86},{"x":-76,"y":-122},{"x":86,"y":38},{"x":17,"y":-71},{"x":-26,"y":52},{"x":-4,"y":-50},{"x":-48,"y":38},{"x":12,"y":-54},{"x":48,"y":4},{"x":-2,"y":-20},{"x":-205,"y":-50},{"x":115,"y":-151},{"x":-61,"y":-122},{"x":76,"y":-44},{"x":-88,"y":-86},{"x":35,"y":-24},{"x":-41,"y":-68},{"x":22,"y":19},{"x":24,"y":-34},{"x":65,"y":13},{"x":8,"y":47},{"x":44,"y":-10},{"x":32,"y":48},{"x":-33,"y":6},{"x":13,"y":27},{"x":43,"y":-33},{"x":-12,"y":-74},{"x":38,"y":-5},{"x":21,"y":24},{"x":-33,"y":46},{"x":69,"y":44},{"x":10,"y":-114},{"x":72,"y":6},{"x":-69,"y":-64},{"x":-3,"y":-54},{"x":126,"y":-12},{"x":32,"y":109},{"x":41,"y":28},{"x":-43,"y":41},{"x":93,"y":29},{"x":25,"y":-25},{"x":-21,"y":-45},{"x":30,"y":26},{"x":84,"y":-44},{"x":8,"y":-55},{"x":-35,"y":-26},{"x":-40,"y":14},{"x":19,"y":-116},{"x":54,"y":-19},{"x":19,"y":-40},{"x":-25,"y":-50},{"x":27,"y":-29},{"x":65,"y":60},{"x":20,"y":53},{"x":-34,"y":64},{"x":51,"y":67},{"x":122,"y":41},{"x":21,"y":-57},{"x":24,"y":14},{"x":11,"y":-37},{"x":49,"y":6},{"x":-34,"y":-83},{"x":124,"y":-4},{"x":-16,"y":-112},{"x":68,"y":-23},{"x":10,"y":-62},{"x":77,"y":-40},{"x":22,"y":-49},{"x":209,"y":-105},{"x":93,"y":-137},{"x":-75,"y":-105},{"x":84,"y":-3},{"x":37,"y":16},{"x":17,"y":95},{"x":-50,"y":97},{"x":-20,"y":-20},{"x":-30,"y":28},{"x":47,"y":-4},{"x":2,"y":36},{"x":89,"y":48},{"x":39,"y":73},{"x":81,"y":38},{"x":-63,"y":63},{"x":-126,"y":24},{"x":27,"y":80},{"x":-121,"y":43},{"x":87,"y":35},{"x":59,"y":-36},{"x":36,"y":48},{"x":-50,"y":-17},{"x":-148,"y":20},{"x":-59,"y":252},{"x":-32,"y":2},{"x":101,"y":60},{"x":75,"y":141},{"x":-53,"y":-1},{"x":149,"y":28},{"x":-93,"y":-5},{"x":18,"y":44},{"x":2,"y":-37},{"x":64,"y":2},{"x":-56,"y":-1},{"x":54,"y":125},{"x":186,"y":142},{"x":557,"y":237},{"x":439,"y":97},{"x":425,"y":20},{"x":446,"y":-78},{"x":16,"y":-32},{"x":63,"y":1},{"x":14,"y":-50},{"x":-14,"y":48},{"x":46,"y":-29},{"x":-26,"y":-15},{"x":45,"y":21},{"x":39,"y":-71},{"x":-10,"y":-75},{"x":76,"y":5},{"x":91,"y":-35},{"x":254,"y":-153},{"x":45,"y":-181},{"x":-18,"y":83},{"x":63,"y":6},{"x":11,"y":-19},{"x":-55,"y":-17},{"x":51,"y":7},{"x":6,"y":-28},{"x":-50,"y":-12},{"x":66,"y":13},{"x":26,"y":33},{"x":-18,"y":-83},{"x":24,"y":41},{"x":44,"y":-40},{"x":52,"y":-17},{"x":2,"y":21},{"x":31,"y":-117},{"x":109,"y":-75},{"x":91,"y":-113},{"x":-5,"y":-85},{"x":-25,"y":-20},{"x":1,"y":30},{"x":-62,"y":-101},{"x":26,"y":-24},{"x":72,"y":23},{"x":134,"y":-28},{"x":90,"y":-45},{"x":-2,"y":-47},{"x":108,"y":-53},{"x":32,"y":-4},{"x":53,"y":53},{"x":154,"y":4},{"x":15,"y":51},{"x":123,"y":50},{"x":20,"y":-42},{"x":-13,"y":36},{"x":42,"y":14},{"x":-21,"y":-62},{"x":24,"y":71},{"x":65,"y":12},{"x":3,"y":39},{"x":62,"y":18},{"x":46,"y":-118},{"x":-45,"y":119},{"x":29,"y":9},{"x":48,"y":-53},{"x":29,"y":48},{"x":49,"y":-24},{"x":-26,"y":54},{"x":58,"y":-6},{"x":10,"y":17},{"x":-29,"y":-3},{"x":44,"y":59},{"x":141,"y":53},{"x":62,"y":-7},{"x":13,"y":38},{"x":141,"y":23},{"x":55,"y":-44},{"x":98,"y":15},{"x":361,"y":-65},{"x":72,"y":-26},{"x":90,"y":-88},{"x":13,"y":47},{"x":58,"y":-73},{"x":16,"y":28},{"x":-12,"y":-48},{"x":-30,"y":-6},{"x":69,"y":-46},{"x":22,"y":15},{"x":-50,"y":-49},{"x":11,"y":-60},{"x":6,"y":73},{"x":211,"y":-28},{"x":19,"y":85},{"x":33,"y":-3},{"x":-40,"y":29},{"x":103,"y":-54},{"x":-55,"y":55},{"x":56,"y":5},{"x":-8,"y":-25},{"x":33,"y":3},{"x":-21,"y":-25},{"x":33,"y":11},{"x":-3,"y":42},{"x":61,"y":10},{"x":13,"y":59},{"x":228,"y":29},{"x":139,"y":-62},{"x":-25,"y":-27},{"x":32,"y":-41},{"x":64,"y":19},{"x":-20,"y":-63},{"x":-45,"y":2},{"x":18,"y":-33},{"x":-26,"y":38},{"x":-54,"y":-32},{"x":68,"y":-81},{"x":92,"y":0},{"x":25,"y":36},{"x":132,"y":-4},{"x":56,"y":43},{"x":1,"y":76},{"x":52,"y":9},{"x":121,"y":274},{"x":-4,"y":190},{"x":-29,"y":82},{"x":-59,"y":15},{"x":43,"y":21},{"x":37,"y":-33},{"x":7,"y":68},{"x":-31,"y":24},{"x":-77,"y":-18},{"x":-67,"y":96},{"x":-16,"y":201},{"x":78,"y":41},{"x":68,"y":101},{"x":-11,"y":33},{"x":30,"y":-34},{"x":-6,"y":74},{"x":72,"y":34},{"x":-51,"y":9},{"x":34,"y":-4},{"x":13,"y":40},{"x":17,"y":-37},{"x":18,"y":78},{"x":89,"y":13},{"x":67,"y":72},{"x":94,"y":-37},{"x":62,"y":18}],"type":"coastline"},{"arc":[{"x":77666,"y":56654},{"x":-38,"y":-3},{"x":-9,"y":-23},{"x":17,"y":22},{"x":-5,"y":-27},{"x":20,"y":0},{"x":15,"y":31}],"type":"coastline"},{"arc":[{"x":77676,"y":56590},{"x":-15,"y":23},{"x":-65,"y":-15},{"x":-42,"y":70},{"x":-121,"y":19},{"x":-59,"y":38},{"x":25,"y":8},{"x":-24,"y":62},{"x":-78,"y":-99},{"x":-121,"y":-43},{"x":3,"y":35},{"x":-121,"y":-7},{"x":0,"y":66},{"x":69,"y":7},{"x":-43,"y":19},{"x":25,"y":54},{"x":-42,"y":-15},{"x":-96,"y":56},{"x":-60,"y":-36},{"x":-12,"y":-95},{"x":-98,"y":-106},{"x":-88,"y":-16},{"x":84,"y":-26},{"x":-28,"y":-24},{"x":-99,"y":58},{"x":-55,"y":-5},{"x":-75,"y":-58},{"x":-38,"y":13},{"x":-3,"y":-36},{"x":-106,"y":11},{"x":-44,"y":-91},{"x":42,"y":-69},{"x":55,"y":18},{"x":49,"y":-23},{"x":34,"y":-46},{"x":-24,"y":-45},{"x":86,"y":-59},{"x":29,"y":-75},{"x":48,"y":-11},{"x":25,"y":-50},{"x":117,"y":43},{"x":44,"y":-40},{"x":64,"y":42},{"x":72,"y":-10},{"x":36,"y":-61},{"x":68,"y":13},{"x":14,"y":-24},{"x":5,"y":26},{"x":38,"y":-42},{"x":-10,"y":-51},{"x":74,"y":-2},{"x":-2,"y":-54},{"x":39,"y":47},{"x":39,"y":-14},{"x":-8,"y":113},{"x":59,"y":-89},{"x":-3,"y":127},{"x":46,"y":-56},{"x":15,"y":116},{"x":32,"y":-128},{"x":34,"y":50},{"x":23,"y":-50},{"x":49,"y":10},{"x":10,"y":67},{"x":-48,"y":109},{"x":48,"y":-28},{"x":5,"y":44},{"x":-127,"y":164},{"x":-56,"y":23},{"x":69,"y":28},{"x":34,"y":-75},{"x":86,"y":-30},{"x":-30,"y":69},{"x":79,"y":-15},{"x":2,"y":29},{"x":46,"y":-28},{"x":10,"y":24},{"x":-75,"y":45},{"x":-55,"y":-9},{"x":-22,"y":34},{"x":51,"y":25},{"x":40,"y":-29},{"x":29,"y":22},{"x":3,"y":31},{"x":39,"y":27}],"type":"coastline"},{"arc":[{"x":77819,"y":56750},{"x":-46,"y":54},{"x":-128,"y":15},{"x":-11,"y":46},{"x":-63,"y":-37},{"x":23,"y":53},{"x":-99,"y":-9},{"x":-56,"y":-39},{"x":76,"y":21},{"x":44,"y":-84},{"x":-84,"y":28},{"x":53,"y":-47},{"x":27,"y":11},{"x":45,"y":-70},{"x":51,"y":78},{"x":168,"y":-20}],"type":"coastline"},{"arc":[{"x":77917,"y":56971},{"x":-71,"y":57},{"x":-12,"y":-24},{"x":83,"y":-33}],"type":"coastline"},{"arc":[{"x":78052,"y":56687},{"x":-9,"y":25},{"x":-63,"y":-1},{"x":-38,"y":-43},{"x":-44,"y":1},{"x":-45,"y":-68},{"x":-68,"y":-1},{"x":6,"y":20},{"x":-75,"y":-22},{"x":-36,"y":-26},{"x":13,"y":-30},{"x":-49,"y":19},{"x":7,"y":-17},{"x":36,"y":-7},{"x":-15,"y":-14},{"x":21,"y":4},{"x":-29,"y":-37},{"x":40,"y":18},{"x":120,"y":-38},{"x":-49,"y":69},{"x":48,"y":-16},{"x":105,"y":44},{"x":-18,"y":44},{"x":60,"y":62},{"x":26,"y":-10},{"x":11,"y":36},{"x":45,"y":-12}],"type":"coastline"},{"arc":[{"x":78407,"y":57239},{"x":-45,"y":-29},{"x":-56,"y":109},{"x":-32,"y":-19},{"x":-119,"y":30},{"x":10,"y":-79},{"x":-63,"y":12},{"x":4,"y":-56},{"x":-33,"y":-44},{"x":-35,"y":7},{"x":-49,"y":-104},{"x":-86,"y":57},{"x":66,"y":-120},{"x":27,"y":24},{"x":-75,"y":-111},{"x":-48,"y":-10},{"x":45,"y":-40},{"x":81,"y":37},{"x":116,"y":-14},{"x":18,"y":42},{"x":4,"y":-32},{"x":56,"y":7},{"x":37,"y":43},{"x":38,"y":-1},{"x":13,"y":31},{"x":-43,"y":42},{"x":36,"y":4},{"x":-15,"y":41},{"x":50,"y":-8},{"x":24,"y":-39},{"x":19,"y":144},{"x":64,"y":49},{"x":-9,"y":27}],"type":"coastline"},{"arc":[{"x":69591,"y":63299},{"x":-127,"y":25},{"x":-25,"y":-102},{"x":142,"y":-7},{"x":10,"y":84}],"type":"coastline"},{"arc":[{"x":70127,"y":63952},{"x":-82,"y":25},{"x":29,"y":-38},{"x":53,"y":13}],"type":"coastline"},{"arc":[{"x":70355,"y":63915},{"x":-3,"y":-30},{"x":-152,"y":-112},{"x":153,"y":111},{"x":2,"y":31}],"type":"coastline"},{"arc":[{"x":70391,"y":64297},{"x":53,"y":-54},{"x":7,"y":-70},{"x":-70,"y":-49},{"x":60,"y":-10},{"x":71,"y":-124},{"x":-8,"y":-67},{"x":-7,"y":2},{"x":-38,"y":-13},{"x":-31,"y":-18},{"x":69,"y":29},{"x":5,"y":-1},{"x":-5,"y":-22},{"x":14,"y":18},{"x":17,"y":-25},{"x":-45,"y":1},{"x":12,"y":-23},{"x":-79,"y":-31},{"x":33,"y":-27},{"x":-91,"y":-9},{"x":31,"y":-77},{"x":-20,"y":-24},{"x":-97,"y":27},{"x":-7,"y":27},{"x":-7,"y":-49},{"x":98,"y":-53},{"x":-25,"y":-37},{"x":-27,"y":13},{"x":21,"y":-16},{"x":-29,"y":-42},{"x":-172,"y":-158},{"x":-261,"y":-162},{"x":-253,"y":-81},{"x":-136,"y":-12},{"x":-16,"y":25},{"x":-26,"y":-25},{"x":23,"y":34},{"x":-24,"y":-35},{"x":-36,"y":19},{"x":-148,"y":355},{"x":-6,"y":103},{"x":-96,"y":259},{"x":-41,"y":-41},{"x":-77,"y":-6},{"x":-23,"y":35},{"x":-40,"y":-16},{"x":-58,"y":-111},{"x":-93,"y":-52},{"x":-35,"y":-89},{"x":-115,"y":24},{"x":-45,"y":58},{"x":-35,"y":-51},{"x":25,"y":55},{"x":46,"y":-10},{"x":-26,"y":30},{"x":29,"y":62},{"x":-31,"y":107},{"x":59,"y":95},{"x":47,"y":18},{"x":-20,"y":64},{"x":-77,"y":-9},{"x":-95,"y":-146},{"x":-70,"y":-23},{"x":-86,"y":-171},{"x":-218,"y":-162},{"x":-31,"y":-127},{"x":40,"y":-55},{"x":-25,"y":-53},{"x":21,"y":-144},{"x":-102,"y":-80},{"x":-115,"y":25},{"x":-58,"y":-43},{"x":-97,"y":-13},{"x":-86,"y":-139},{"x":-60,"y":16},{"x":-40,"y":64},{"x":-25,"y":-177},{"x":-60,"y":-8},{"x":-18,"y":49},{"x":-61,"y":10},{"x":-130,"y":-130},{"x":-141,"y":-265},{"x":15,"y":-61},{"x":-114,"y":-41},{"x":4,"y":-110},{"x":-174,"y":-216},{"x":-57,"y":-207},{"x":46,"y":-132},{"x":-49,"y":-25},{"x":2,"y":-126},{"x":-82,"y":-29},{"x":36,"y":-41},{"x":-16,"y":-72},{"x":-87,"y":-8},{"x":-16,"y":-66},{"x":-52,"y":-45},{"x":-14,"y":-100},{"x":-87,"y":-29},{"x":53,"y":-105},{"x":-82,"y":-37},{"x":-77,"y":-165},{"x":11,"y":-44},{"x":-78,"y":2},{"x":-4,"y":-28},{"x":-31,"y":45},{"x":-64,"y":-15},{"x":45,"y":-72},{"x":-88,"y":-108},{"x":31,"y":-76},{"x":-37,"y":-6},{"x":-52,"y":42},{"x":-116,"y":-46},{"x":33,"y":-72},{"x":18,"y":9},{"x":-5,"y":-48},{"x":-106,"y":-11},{"x":4,"y":-38},{"x":-35,"y":-17},{"x":77,"y":-37},{"x":45,"y":10},{"x":44,"y":65},{"x":16,"y":-22},{"x":196,"y":115},{"x":78,"y":18},{"x":2,"y":-39},{"x":36,"y":1},{"x":66,"y":35},{"x":39,"y":-48},{"x":44,"y":43},{"x":61,"y":-69},{"x":20,"y":-126},{"x":139,"y":114},{"x":34,"y":115},{"x":79,"y":39},{"x":26,"y":93},{"x":143,"y":114},{"x":16,"y":130},{"x":144,"y":107},{"x":466,"y":175},{"x":118,"y":-36},{"x":64,"y":-67},{"x":107,"y":-1},{"x":58,"y":41},{"x":-24,"y":34},{"x":36,"y":-46},{"x":-15,"y":31},{"x":205,"y":92},{"x":119,"y":132},{"x":78,"y":-19},{"x":306,"y":67},{"x":43,"y":-34},{"x":92,"y":-9},{"x":253,"y":102},{"x":82,"y":-27},{"x":73,"y":-74},{"x":3,"y":25},{"x":2,"y":-20},{"x":105,"y":-9},{"x":105,"y":-95},{"x":43,"y":24},{"x":91,"y":-37},{"x":21,"y":-46},{"x":145,"y":-20},{"x":3,"y":-21},{"x":-27,"y":5},{"x":29,"y":-35},{"x":18,"y":40},{"x":87,"y":-59},{"x":100,"y":-23},{"x":182,"y":-172},{"x":10,"y":18},{"x":50,"y":-36},{"x":66,"y":-223},{"x":38,"y":-35},{"x":153,"y":-22},{"x":2,"y":-59},{"x":49,"y":-14},{"x":-48,"y":38},{"x":54,"y":-7},{"x":18,"y":15},{"x":-11,"y":-44},{"x":12,"y":20},{"x":-1,"y":28},{"x":32,"y":-13},{"x":49,"y":54},{"x":24,"y":-2},{"x":-18,"y":-22},{"x":19,"y":23},{"x":124,"y":-22},{"x":189,"y":20},{"x":0,"y":55},{"x":48,"y":19},{"x":90,"y":-8},{"x":107,"y":-61}],"type":"coastline"},{"arc":[{"x":71297,"y":60753},{"x":8,"y":342},{"x":51,"y":127},{"x":213,"y":161},{"x":156,"y":-12},{"x":101,"y":79},{"x":179,"y":39}],"type":"coastline"},{"arc":[{"x":45194,"y":47368},{"x":-69,"y":72},{"x":-58,"y":-13},{"x":-22,"y":-49},{"x":53,"y":-79},{"x":-37,"y":-56},{"x":82,"y":-46},{"x":-33,"y":96},{"x":84,"y":75}],"type":"coastline"},{"arc":[{"x":45473,"y":47434},{"x":-76,"y":26},{"x":-8,"y":-40},{"x":57,"y":-32},{"x":27,"y":46}],"type":"coastline"},{"arc":[{"x":48534,"y":48986},{"x":-33,"y":40},{"x":33,"y":42},{"x":-29,"y":79},{"x":-98,"y":-12},{"x":11,"y":-23},{"x":-191,"y":23},{"x":114,"y":-157},{"x":131,"y":-106},{"x":37,"y":15},{"x":25,"y":99}],"type":"coastline"},{"arc":[{"x":49197,"y":49968},{"x":-19,"y":34},{"x":-65,"y":-17},{"x":-11,"y":-66},{"x":55,"y":-13},{"x":40,"y":62}],"type":"coastline"},{"arc":[{"x":49215,"y":50109},{"x":-32,"y":29},{"x":-23,"y":-39},{"x":55,"y":10}],"type":"coastline"},{"arc":[{"x":51553,"y":52065},{"x":-53,"y":118},{"x":-84,"y":15},{"x":-68,"y":54},{"x":-80,"y":-10},{"x":-8,"y":-189},{"x":72,"y":17},{"x":12,"y":-29},{"x":2,"y":29},{"x":73,"y":-93},{"x":134,"y":88}],"type":"coastline"},{"arc":[{"x":53401,"y":53197},{"x":-53,"y":23},{"x":-148,"y":-40},{"x":-123,"y":8},{"x":-91,"y":-36},{"x":-147,"y":-177},{"x":-24,"y":-6},{"x":11,"y":27},{"x":-12,"y":-26},{"x":-47,"y":7},{"x":-18,"y":-112},{"x":66,"y":-22},{"x":4,"y":20},{"x":183,"y":-80},{"x":48,"y":24},{"x":66,"y":-49},{"x":64,"y":37},{"x":48,"y":-34},{"x":29,"y":66},{"x":33,"y":3},{"x":-15,"y":50},{"x":74,"y":60},{"x":36,"y":111},{"x":-24,"y":59},{"x":40,"y":87}],"type":"coastline"},{"arc":[{"x":53639,"y":51590},{"x":-23,"y":37},{"x":-57,"y":9},{"x":-115,"y":-33},{"x":42,"y":-33},{"x":-33,"y":-6},{"x":82,"y":-46},{"x":91,"y":31},{"x":13,"y":41}],"type":"coastline"},{"arc":[{"x":55412,"y":54070},{"x":-6,"y":119},{"x":-60,"y":11},{"x":-67,"y":190},{"x":-54,"y":-19},{"x":-35,"y":53},{"x":-63,"y":-29},{"x":-91,"y":14},{"x":-134,"y":140},{"x":-96,"y":36},{"x":-16,"y":-104},{"x":29,"y":-16},{"x":11,"y":-110},{"x":-59,"y":-104},{"x":59,"y":-116},{"x":155,"y":-63},{"x":30,"y":-46},{"x":-44,"y":13},{"x":78,"y":-63},{"x":138,"y":-45},{"x":157,"y":51},{"x":68,"y":88}],"type":"coastline"},{"arc":[{"x":55417,"y":52272},{"x":-17,"y":20},{"x":-64,"y":-35},{"x":54,"y":-14},{"x":27,"y":29}],"type":"coastline"},{"arc":[{"x":55722,"y":51608},{"x":-114,"y":131},{"x":-99,"y":-7},{"x":-14,"y":-77},{"x":41,"y":-91},{"x":143,"y":-7},{"x":43,"y":51}],"type":"coastline"},{"arc":[{"x":56586,"y":54577},{"x":-186,"y":52},{"x":-140,"y":83},{"x":-57,"y":87},{"x":-73,"y":17},{"x":-75,"y":-35},{"x":-12,"y":-109},{"x":137,"y":-189},{"x":76,"y":14},{"x":38,"y":-54},{"x":47,"y":45},{"x":38,"y":-10},{"x":56,"y":83},{"x":98,"y":-43},{"x":53,"y":59}],"type":"coastline"},{"arc":[{"x":73516,"y":53548},{"x":-58,"y":35},{"x":4,"y":97},{"x":-32,"y":23},{"x":6,"y":-60},{"x":-56,"y":-31},{"x":27,"y":24},{"x":-114,"y":2},{"x":-14,"y":29},{"x":27,"y":-1},{"x":-49,"y":14},{"x":-27,"y":-76},{"x":-99,"y":-23},{"x":-59,"y":-85},{"x":-78,"y":12},{"x":-220,"y":-87},{"x":-26,"y":-84},{"x":68,"y":-13},{"x":2,"y":-58},{"x":-122,"y":-57},{"x":5,"y":-22},{"x":-69,"y":3},{"x":-8,"y":20},{"x":32,"y":-6},{"x":-58,"y":30},{"x":-65,"y":-6},{"x":-7,"y":-47},{"x":-164,"y":-102},{"x":-83,"y":14},{"x":24,"y":4},{"x":-67,"y":87},{"x":-73,"y":-93},{"x":-49,"y":15},{"x":-27,"y":-66},{"x":-67,"y":-17},{"x":-1,"y":-48},{"x":-10,"y":38},{"x":-98,"y":-21},{"x":146,"y":-53},{"x":-33,"y":-73},{"x":-41,"y":7},{"x":16,"y":14},{"x":-70,"y":-18},{"x":-25,"y":-74},{"x":27,"y":-48},{"x":52,"y":17},{"x":34,"y":-29},{"x":-5,"y":-36},{"x":42,"y":-31},{"x":-28,"y":-60},{"x":66,"y":11},{"x":172,"y":-63},{"x":35,"y":68},{"x":-28,"y":41},{"x":25,"y":80},{"x":41,"y":-45},{"x":243,"y":132},{"x":101,"y":-41},{"x":38,"y":110},{"x":89,"y":-42},{"x":20,"y":68},{"x":40,"y":0},{"x":41,"y":56},{"x":20,"y":146},{"x":84,"y":135},{"x":-33,"y":57},{"x":37,"y":10},{"x":-8,"y":48},{"x":59,"y":27},{"x":-23,"y":73},{"x":99,"y":36},{"x":33,"y":-50},{"x":32,"y":9},{"x":-8,"y":57},{"x":104,"y":49},{"x":61,"y":-65},{"x":33,"y":44},{"x":68,"y":-3},{"x":38,"y":-35},{"x":11,"y":27}],"type":"coastline"},{"arc":[{"x":73782,"y":53974},{"x":-61,"y":27},{"x":-69,"y":-54},{"x":-48,"y":47},{"x":15,"y":19},{"x":24,"y":-36},{"x":3,"y":23},{"x":-29,"y":22},{"x":-31,"y":-6},{"x":-11,"y":-76},{"x":-70,"y":-78},{"x":-43,"y":7},{"x":-26,"y":52},{"x":-68,"y":-24},{"x":-8,"y":-55},{"x":42,"y":-7},{"x":-1,"y":-42},{"x":50,"y":13},{"x":18,"y":-27},{"x":58,"y":9},{"x":68,"y":-35},{"x":24,"y":60},{"x":117,"y":15},{"x":46,"y":146}],"type":"coastline"},{"arc":[{"x":73885,"y":54013},{"x":-89,"y":-20},{"x":46,"y":-54},{"x":43,"y":74}],"type":"coastline"},{"arc":[{"x":74103,"y":54850},{"x":-24,"y":4},{"x":-1,"y":-35},{"x":25,"y":31}],"type":"coastline"},{"arc":[{"x":74202,"y":55030},{"x":-7,"y":30},{"x":-18,"y":-18},{"x":25,"y":-12}],"type":"coastline"},{"arc":[{"x":74388,"y":54072},{"x":-39,"y":81},{"x":-205,"y":150},{"x":-31,"y":101},{"x":-67,"y":34},{"x":-38,"y":92},{"x":83,"y":64},{"x":-18,"y":-19},{"x":31,"y":-1},{"x":31,"y":-62},{"x":71,"y":20},{"x":16,"y":-63},{"x":27,"y":17},{"x":7,"y":179},{"x":-24,"y":19},{"x":35,"y":68},{"x":-50,"y":-61},{"x":6,"y":-53},{"x":-148,"y":52},{"x":-43,"y":-67},{"x":25,"y":-10},{"x":-34,"y":-14},{"x":-49,"y":9},{"x":44,"y":21},{"x":-39,"y":-7},{"x":-26,"y":69},{"x":-124,"y":-12},{"x":-68,"y":-83},{"x":44,"y":-25},{"x":-15,"y":-64},{"x":47,"y":-30},{"x":-115,"y":-44},{"x":-20,"y":-116},{"x":-91,"y":-96},{"x":184,"y":18},{"x":18,"y":-29},{"x":-22,"y":7},{"x":-10,"y":-45},{"x":56,"y":-81},{"x":12,"y":52},{"x":62,"y":24},{"x":48,"y":-43},{"x":-74,"y":-104},{"x":120,"y":27},{"x":73,"y":-60},{"x":29,"y":4},{"x":-12,"y":137},{"x":74,"y":47},{"x":-56,"y":-97},{"x":13,"y":-47},{"x":19,"y":-31},{"x":117,"y":14},{"x":1,"y":-20},{"x":-123,"y":-30},{"x":-39,"y":-38},{"x":-147,"y":11},{"x":60,"y":-56},{"x":-12,"y":-43},{"x":57,"y":-4},{"x":13,"y":-28},{"x":116,"y":-8},{"x":30,"y":64},{"x":161,"y":78},{"x":9,"y":132}],"type":"coastline"},{"arc":[{"x":60968,"y":61974},{"x":-5,"y":-19},{"x":13,"y":38},{"x":-8,"y":-19}],"type":"coastline"},{"arc":[{"x":63784,"y":61931},{"x":-34,"y":29},{"x":-99,"y":-9},{"x":5,"y":21},{"x":-110,"y":41},{"x":-86,"y":-23},{"x":-60,"y":-64},{"x":19,"y":-156},{"x":173,"y":47},{"x":43,"y":-15},{"x":149,"y":129}],"type":"coastline"},{"arc":[{"x":64189,"y":57600},{"x":-122,"y":134},{"x":-122,"y":-28},{"x":-42,"y":-280},{"x":28,"y":-22},{"x":-8,"y":-19},{"x":-76,"y":14},{"x":74,"y":-27},{"x":-11,"y":-71},{"x":29,"y":-27},{"x":54,"y":42},{"x":47,"y":-9},{"x":-10,"y":79},{"x":159,"y":214}],"type":"coastline"},{"arc":[{"x":64296,"y":58571},{"x":-33,"y":1},{"x":-60,"y":142},{"x":-82,"y":-14},{"x":85,"y":-254},{"x":-22,"y":-121},{"x":28,"y":11},{"x":-1,"y":73},{"x":73,"y":23},{"x":-9,"y":76},{"x":-17,"y":-23},{"x":-10,"y":25},{"x":48,"y":61}],"type":"coastline"},{"arc":[{"x":64486,"y":63486},{"x":-46,"y":43},{"x":-216,"y":30},{"x":2,"y":53},{"x":-141,"y":-10},{"x":-25,"y":64},{"x":-56,"y":23},{"x":-104,"y":-7},{"x":-41,"y":-55},{"x":-95,"y":-22},{"x":-38,"y":23},{"x":-390,"y":-16},{"x":-210,"y":46},{"x":-17,"y":-24},{"x":-25,"y":-12},{"x":-3,"y":-18},{"x":-16,"y":-12},{"x":16,"y":11},{"x":0,"y":13},{"x":6,"y":1},{"x":0,"y":-30},{"x":10,"y":-4},{"x":-25,"y":-26},{"x":-72,"y":-29},{"x":-72,"y":13},{"x":-89,"y":-78},{"x":-183,"y":-32},{"x":-9,"y":50},{"x":-48,"y":22},{"x":-116,"y":-47},{"x":-129,"y":30},{"x":-28,"y":-42},{"x":-69,"y":31},{"x":-94,"y":-56},{"x":-74,"y":-119},{"x":-115,"y":19},{"x":-75,"y":-25},{"x":-7,"y":22},{"x":-25,"y":-48},{"x":-86,"y":-2},{"x":24,"y":-25},{"x":-84,"y":-91},{"x":23,"y":-60},{"x":-25,"y":-51},{"x":-180,"y":-40},{"x":-45,"y":-72},{"x":-89,"y":-47},{"x":-196,"y":-23},{"x":-136,"y":-104},{"x":-99,"y":51},{"x":-62,"y":-2},{"x":12,"y":-52},{"x":-58,"y":-30},{"x":-112,"y":131},{"x":-50,"y":-25},{"x":-30,"y":56},{"x":-57,"y":-5},{"x":-97,"y":-85},{"x":-116,"y":21},{"x":-104,"y":85},{"x":11,"y":-41},{"x":-74,"y":-86},{"x":-108,"y":-16},{"x":-75,"y":38},{"x":-33,"y":-62},{"x":43,"y":-44},{"x":15,"y":-137},{"x":-153,"y":-318},{"x":-146,"y":-95},{"x":8,"y":-90},{"x":162,"y":-100},{"x":84,"y":-17},{"x":216,"y":65},{"x":161,"y":5},{"x":358,"y":-118},{"x":82,"y":10},{"x":99,"y":-27},{"x":9,"y":96},{"x":-46,"y":19},{"x":42,"y":16},{"x":-40,"y":6},{"x":39,"y":58},{"x":180,"y":65},{"x":77,"y":113},{"x":242,"y":151},{"x":446,"y":218},{"x":245,"y":73},{"x":108,"y":-26},{"x":-33,"y":-26},{"x":114,"y":32},{"x":200,"y":-5},{"x":136,"y":-66},{"x":163,"y":46},{"x":35,"y":-60},{"x":135,"y":92},{"x":31,"y":56},{"x":33,"y":-10},{"x":183,"y":130},{"x":152,"y":33},{"x":17,"y":49},{"x":-38,"y":42},{"x":26,"y":26},{"x":58,"y":2},{"x":-17,"y":-51},{"x":42,"y":27},{"x":-8,"y":28},{"x":45,"y":-40},{"x":67,"y":80},{"x":189,"y":76},{"x":184,"y":-49},{"x":35,"y":59},{"x":230,"y":160},{"x":108,"y":13},{"x":24,"y":25},{"x":-44,"y":28},{"x":22,"y":56},{"x":6,"y":-26},{"x":139,"y":105}],"type":"coastline"},{"arc":[{"x":64598,"y":54753},{"x":-63,"y":27},{"x":-89,"y":165},{"x":-67,"y":3},{"x":-99,"y":-89},{"x":-56,"y":-120},{"x":-3,"y":-57},{"x":71,"y":-145},{"x":22,"y":22},{"x":17,"y":-33},{"x":55,"y":7},{"x":27,"y":-52},{"x":65,"y":4},{"x":4,"y":83},{"x":95,"y":74},{"x":21,"y":111}],"type":"coastline"},{"arc":[{"x":60972,"y":59120},{"x":-159,"y":11},{"x":27,"y":111},{"x":-112,"y":106},{"x":46,"y":17},{"x":-12,"y":113},{"x":-51,"y":24},{"x":10,"y":35},{"x":-71,"y":83},{"x":-31,"y":115},{"x":-12,"y":-56},{"x":-9,"y":47},{"x":-38,"y":-17},{"x":-24,"y":38},{"x":53,"y":24},{"x":-56,"y":4},{"x":-55,"y":125},{"x":-73,"y":13},{"x":-125,"y":379},{"x":-195,"y":186},{"x":-202,"y":-46},{"x":-360,"y":-22},{"x":7,"y":-39},{"x":-48,"y":-19},{"x":28,"y":76},{"x":-15,"y":-40},{"x":-169,"y":-75},{"x":-35,"y":-68},{"x":-83,"y":-47},{"x":-212,"y":-229},{"x":-90,"y":-19},{"x":-29,"y":-101},{"x":-94,"y":-70},{"x":-29,"y":-180},{"x":-44,"y":-23},{"x":31,"y":-22},{"x":-41,"y":-62},{"x":19,"y":-38},{"x":-39,"y":-24},{"x":59,"y":-54},{"x":-49,"y":-16},{"x":-26,"y":-50},{"x":43,"y":-24},{"x":-5,"y":-116},{"x":27,"y":-13},{"x":-60,"y":-74},{"x":71,"y":-131},{"x":-24,"y":-33},{"x":33,"y":-58},{"x":6,"y":-174},{"x":33,"y":-43},{"x":249,"y":-113},{"x":18,"y":-18},{"x":-4,"y":-24},{"x":27,"y":14},{"x":-12,"y":-18},{"x":-18,"y":0},{"x":-10,"y":10},{"x":10,"y":-11},{"x":21,"y":2},{"x":1,"y":-8},{"x":-29,"y":-21},{"x":209,"y":5},{"x":55,"y":-24},{"x":32,"y":18},{"x":49,"y":-45},{"x":129,"y":-32},{"x":17,"y":-77},{"x":43,"y":-18},{"x":481,"y":-111},{"x":93,"y":-3},{"x":59,"y":35},{"x":37,"y":-18},{"x":-7,"y":71},{"x":43,"y":24},{"x":12,"y":51},{"x":-15,"y":175},{"x":122,"y":118},{"x":102,"y":28},{"x":91,"y":68},{"x":44,"y":119},{"x":115,"y":33},{"x":102,"y":-18},{"x":-6,"y":37},{"x":48,"y":19},{"x":-31,"y":52},{"x":7,"y":84},{"x":-20,"y":17},{"x":-25,"y":-22},{"x":3,"y":49},{"x":18,"y":18},{"x":88,"y":-28},{"x":36,"y":38}],"type":"coastline"},{"arc":[{"x":61170,"y":56377},{"x":-50,"y":67},{"x":45,"y":100},{"x":-71,"y":-21},{"x":17,"y":120},{"x":-116,"y":78},{"x":8,"y":42},{"x":93,"y":30},{"x":-91,"y":104},{"x":12,"y":76},{"x":-59,"y":56},{"x":20,"y":37},{"x":-155,"y":120},{"x":-54,"y":114},{"x":-130,"y":-8},{"x":-13,"y":-25},{"x":54,"y":-57},{"x":-21,"y":-114},{"x":-16,"y":-36},{"x":-44,"y":5},{"x":-2,"y":-30},{"x":-63,"y":0},{"x":20,"y":-108},{"x":-32,"y":-59},{"x":36,"y":0},{"x":22,"y":-53},{"x":126,"y":-91},{"x":100,"y":-20},{"x":49,"y":33},{"x":-9,"y":22},{"x":51,"y":-3},{"x":17,"y":-36},{"x":-75,"y":-86},{"x":11,"y":-85},{"x":49,"y":11},{"x":23,"y":-42},{"x":49,"y":17},{"x":88,"y":-144},{"x":45,"y":5},{"x":57,"y":-50},{"x":9,"y":31}],"type":"coastline"},{"arc":[{"x":37568,"y":49411},{"x":-30,"y":8},{"x":8,"y":-34},{"x":22,"y":26}],"type":"coastline"},{"arc":[{"x":37789,"y":49555},{"x":-70,"y":41},{"x":8,"y":-60},{"x":62,"y":19}],"type":"coastline"},{"arc":[{"x":38055,"y":49084},{"x":-99,"y":96},{"x":-126,"y":60},{"x":-4,"y":43},{"x":95,"y":96},{"x":-86,"y":8},{"x":-19,"y":33},{"x":79,"y":64},{"x":-45,"y":34},{"x":-124,"y":-25},{"x":-43,"y":23},{"x":-102,"y":-91},{"x":93,"y":-40},{"x":87,"y":-153},{"x":5,"y":-106},{"x":-41,"y":-39},{"x":153,"y":-74},{"x":103,"y":63},{"x":74,"y":8}],"type":"coastline"},{"arc":[{"x":38187,"y":48761},{"x":-88,"y":-20},{"x":-105,"y":70},{"x":-22,"y":-100},{"x":-43,"y":-5},{"x":-43,"y":36},{"x":-76,"y":-46},{"x":-75,"y":10},{"x":-71,"y":-138},{"x":88,"y":-32},{"x":68,"y":26},{"x":34,"y":-16},{"x":47,"y":39},{"x":104,"y":-15},{"x":22,"y":68},{"x":75,"y":11},{"x":11,"y":42},{"x":64,"y":20},{"x":10,"y":50}],"type":"coastline"},{"arc":[{"x":38699,"y":48699},{"x":-73,"y":86},{"x":-48,"y":9},{"x":-8,"y":-25},{"x":67,"y":-38},{"x":0,"y":-53},{"x":44,"y":-20},{"x":18,"y":41}],"type":"coastline"},{"arc":[{"x":38788,"y":48591},{"x":-50,"y":-21},{"x":47,"y":-5},{"x":3,"y":26}],"type":"coastline"},{"arc":[{"x":39418,"y":48741},{"x":-33,"y":22},{"x":-30,"y":-53},{"x":38,"y":-3},{"x":25,"y":34}],"type":"coastline"},{"arc":[{"x":39443,"y":49049},{"x":-82,"y":19},{"x":-14,"y":72},{"x":70,"y":84},{"x":-44,"y":64},{"x":-44,"y":-30},{"x":-11,"y":53},{"x":-29,"y":-29},{"x":65,"y":-65},{"x":-6,"y":-49},{"x":-93,"y":-167},{"x":-72,"y":67},{"x":6,"y":29},{"x":-68,"y":-42},{"x":-32,"y":15},{"x":30,"y":91},{"x":-82,"y":-24},{"x":12,"y":28},{"x":-58,"y":64},{"x":53,"y":19},{"x":-82,"y":50},{"x":80,"y":112},{"x":143,"y":2},{"x":-1,"y":20},{"x":-78,"y":-15},{"x":-78,"y":25},{"x":58,"y":29},{"x":65,"y":-7},{"x":-26,"y":60},{"x":-158,"y":37},{"x":31,"y":-174},{"x":-53,"y":-60},{"x":-5,"y":84},{"x":-53,"y":-77},{"x":18,"y":122},{"x":-66,"y":-151},{"x":-35,"y":9},{"x":-16,"y":53},{"x":-96,"y":-38},{"x":13,"y":60},{"x":97,"y":49},{"x":-14,"y":45},{"x":84,"y":42},{"x":9,"y":37},{"x":-74,"y":3},{"x":-58,"y":-66},{"x":10,"y":-33},{"x":-54,"y":15},{"x":-61,"y":-34},{"x":79,"y":83},{"x":-20,"y":24},{"x":-84,"y":-22},{"x":-13,"y":29},{"x":123,"y":100},{"x":-129,"y":-1},{"x":-46,"y":59},{"x":139,"y":60},{"x":-54,"y":17},{"x":-6,"y":30},{"x":-43,"y":-15},{"x":25,"y":60},{"x":-47,"y":-3},{"x":-10,"y":35},{"x":-67,"y":19},{"x":61,"y":38},{"x":62,"y":-7},{"x":-37,"y":88},{"x":81,"y":51},{"x":-85,"y":22},{"x":-7,"y":63},{"x":-38,"y":8},{"x":-60,"y":-53},{"x":-205,"y":-54},{"x":-49,"y":-114},{"x":-92,"y":-64},{"x":62,"y":23},{"x":16,"y":-47},{"x":59,"y":10},{"x":140,"y":71},{"x":56,"y":-58},{"x":-102,"y":-111},{"x":44,"y":-94},{"x":-53,"y":-5},{"x":-27,"y":-52},{"x":-63,"y":30},{"x":-42,"y":-37},{"x":-64,"y":38},{"x":-19,"y":-38},{"x":30,"y":-72},{"x":117,"y":-103},{"x":81,"y":37},{"x":49,"y":-43},{"x":132,"y":-4},{"x":51,"y":-70},{"x":-51,"y":-64},{"x":-10,"y":36},{"x":-47,"y":10},{"x":-8,"y":-78},{"x":-201,"y":-131},{"x":-8,"y":-53},{"x":52,"y":0},{"x":33,"y":-42},{"x":14,"y":75},{"x":82,"y":9},{"x":28,"y":30},{"x":110,"y":-26},{"x":-14,"y":-52},{"x":114,"y":19},{"x":59,"y":-38},{"x":117,"y":61},{"x":65,"y":-80},{"x":-38,"y":-55},{"x":23,"y":-59},{"x":64,"y":26},{"x":85,"y":-111},{"x":10,"y":26},{"x":111,"y":-17},{"x":41,"y":-53},{"x":96,"y":-23},{"x":31,"y":48},{"x":-38,"y":11},{"x":2,"y":49},{"x":73,"y":13},{"x":59,"y":143}],"type":"coastline"},{"arc":[{"x":40435,"y":48854},{"x":-70,"y":219},{"x":-139,"y":72},{"x":24,"y":-71},{"x":-38,"y":-43},{"x":40,"y":-56},{"x":-25,"y":-45},{"x":23,"y":-37},{"x":45,"y":-3},{"x":61,"y":-83},{"x":79,"y":47}],"type":"coastline"},{"arc":[{"x":41126,"y":55378},{"x":-77,"y":104},{"x":-45,"y":13},{"x":-20,"y":-26},{"x":7,"y":26},{"x":-56,"y":0},{"x":-9,"y":-56},{"x":-26,"y":39},{"x":-52,"y":-41},{"x":1,"y":-36},{"x":-109,"y":-35},{"x":-17,"y":-49},{"x":41,"y":-25},{"x":-16,"y":-27},{"x":-13,"y":32},{"x":-39,"y":-13},{"x":44,"y":-44},{"x":-52,"y":6},{"x":-8,"y":44},{"x":-246,"y":-167},{"x":-165,"y":-66},{"x":19,"y":-26},{"x":-62,"y":-15},{"x":21,"y":-61},{"x":-26,"y":-15},{"x":-11,"y":29},{"x":-24,"y":-24},{"x":10,"y":-35},{"x":-51,"y":-55},{"x":31,"y":-37},{"x":-28,"y":9},{"x":-11,"y":-32},{"x":35,"y":-53},{"x":68,"y":-6},{"x":-10,"y":-20},{"x":76,"y":-34},{"x":-15,"y":-81},{"x":40,"y":-22},{"x":20,"y":20},{"x":-4,"y":-33},{"x":146,"y":-16},{"x":106,"y":69},{"x":31,"y":76},{"x":-41,"y":39},{"x":64,"y":-3},{"x":-5,"y":78},{"x":-27,"y":13},{"x":28,"y":2},{"x":-10,"y":35},{"x":47,"y":10},{"x":162,"y":235},{"x":144,"y":84},{"x":33,"y":53},{"x":-24,"y":10},{"x":103,"y":51},{"x":22,"y":76}],"type":"coastline"},{"arc":[{"x":42563,"y":52806},{"x":-179,"y":29},{"x":-77,"y":-28},{"x":-98,"y":44},{"x":-21,"y":-17},{"x":2,"y":27},{"x":-134,"y":55},{"x":-20,"y":118},{"x":-99,"y":-17},{"x":-57,"y":39},{"x":-232,"y":-104},{"x":70,"y":53},{"x":-17,"y":27},{"x":-162,"y":-67},{"x":7,"y":-38},{"x":65,"y":22},{"x":-85,"y":-50},{"x":5,"y":20},{"x":-75,"y":-79},{"x":-32,"y":-185},{"x":-118,"y":-48},{"x":-5,"y":-68},{"x":46,"y":-18},{"x":52,"y":-183},{"x":-63,"y":-137},{"x":-84,"y":-15},{"x":-130,"y":-115},{"x":-107,"y":-21},{"x":-39,"y":-61},{"x":17,"y":16},{"x":4,"y":-26},{"x":-51,"y":-5},{"x":-50,"y":-56},{"x":-186,"y":-90},{"x":-25,"y":-58},{"x":23,"y":-24},{"x":-44,"y":-45},{"x":8,"y":-90},{"x":-32,"y":-29},{"x":-66,"y":6},{"x":31,"y":14},{"x":-41,"y":0},{"x":-33,"y":61},{"x":-40,"y":7},{"x":-32,"y":-29},{"x":-112,"y":-364},{"x":-71,"y":-68},{"x":76,"y":-197},{"x":-45,"y":-43},{"x":-43,"y":19},{"x":-99,"y":-23},{"x":-110,"y":37},{"x":-51,"y":-89},{"x":-135,"y":-34},{"x":41,"y":-280},{"x":-75,"y":78},{"x":13,"y":52},{"x":-65,"y":36},{"x":20,"y":29},{"x":-39,"y":54},{"x":-41,"y":17},{"x":-17,"y":56},{"x":-32,"y":-1},{"x":71,"y":21},{"x":-9,"y":41},{"x":-108,"y":122},{"x":-87,"y":38},{"x":-33,"y":-44},{"x":45,"y":-24},{"x":-11,"y":-62},{"x":-71,"y":-71},{"x":-44,"y":16},{"x":-17,"y":-30},{"x":-25,"y":9},{"x":36,"y":-34},{"x":-38,"y":-44},{"x":40,"y":-50},{"x":-116,"y":-120},{"x":65,"y":-91},{"x":-14,"y":-25},{"x":-53,"y":-14},{"x":-44,"y":53},{"x":-103,"y":-13},{"x":-19,"y":-31},{"x":-110,"y":9},{"x":-36,"y":-29},{"x":47,"y":-32},{"x":20,"y":-103},{"x":46,"y":-16},{"x":-26,"y":-146},{"x":53,"y":4},{"x":52,"y":-100},{"x":-37,"y":-100},{"x":-32,"y":-6},{"x":-98,"y":137},{"x":-63,"y":20},{"x":10,"y":60},{"x":-149,"y":39},{"x":3,"y":30},{"x":-54,"y":-17},{"x":-45,"y":58},{"x":-153,"y":-6},{"x":37,"y":-40},{"x":-11,"y":-53},{"x":43,"y":21},{"x":92,"y":-84},{"x":41,"y":72},{"x":16,"y":-60},{"x":39,"y":-10},{"x":-55,"y":-75},{"x":79,"y":-28},{"x":0,"y":-35},{"x":-18,"y":-23},{"x":-55,"y":6},{"x":-16,"y":-45},{"x":59,"y":-30},{"x":-28,"y":-58},{"x":127,"y":-58},{"x":-6,"y":-54},{"x":15,"y":15},{"x":-13,"y":-20},{"x":44,"y":-36},{"x":-15,"y":-50},{"x":52,"y":-34},{"x":67,"y":43},{"x":45,"y":-101},{"x":31,"y":23},{"x":-26,"y":51},{"x":49,"y":31},{"x":30,"y":-60},{"x":34,"y":37},{"x":39,"y":-18},{"x":-40,"y":-74},{"x":66,"y":-5},{"x":34,"y":64},{"x":-2,"y":-44},{"x":86,"y":-10},{"x":-96,"y":-28},{"x":-9,"y":-41},{"x":-42,"y":3},{"x":11,"y":-92},{"x":96,"y":10},{"x":49,"y":63},{"x":83,"y":2},{"x":43,"y":115},{"x":54,"y":-11},{"x":16,"y":70},{"x":38,"y":-7},{"x":-74,"y":-248},{"x":30,"y":4},{"x":4,"y":49},{"x":33,"y":-4},{"x":16,"y":59},{"x":71,"y":7},{"x":-32,"y":-68},{"x":37,"y":-16},{"x":-72,"y":-26},{"x":73,"y":-7},{"x":-49,"y":-29},{"x":61,"y":-32},{"x":-52,"y":-19},{"x":-81,"y":18},{"x":-52,"y":-48},{"x":-36,"y":69},{"x":-41,"y":6},{"x":-21,"y":-82},{"x":138,"y":-50},{"x":38,"y":-147},{"x":66,"y":-26},{"x":-17,"y":-36},{"x":-77,"y":-8},{"x":-8,"y":-78},{"x":65,"y":-21},{"x":25,"y":-44},{"x":-58,"y":-72},{"x":19,"y":-61},{"x":180,"y":-59},{"x":4,"y":-55},{"x":-47,"y":-2},{"x":-15,"y":-85},{"x":89,"y":-13},{"x":3,"y":-53},{"x":55,"y":-1},{"x":19,"y":-74},{"x":38,"y":81},{"x":-25,"y":160},{"x":93,"y":36},{"x":54,"y":89},{"x":-70,"y":25},{"x":-13,"y":121},{"x":-71,"y":32},{"x":-19,"y":67},{"x":57,"y":28},{"x":112,"y":-16},{"x":-20,"y":42},{"x":50,"y":62},{"x":-37,"y":71},{"x":-59,"y":-2},{"x":36,"y":44},{"x":-14,"y":30},{"x":-32,"y":22},{"x":-28,"y":-26},{"x":-60,"y":15},{"x":-5,"y":34},{"x":49,"y":-12},{"x":2,"y":25},{"x":70,"y":20},{"x":-41,"y":54},{"x":58,"y":18},{"x":-1,"y":40},{"x":-54,"y":37},{"x":142,"y":34},{"x":12,"y":79},{"x":-44,"y":52},{"x":109,"y":-12},{"x":-17,"y":-161},{"x":52,"y":-59},{"x":-44,"y":-22},{"x":-44,"y":25},{"x":-46,"y":-11},{"x":-1,"y":-120},{"x":46,"y":-6},{"x":11,"y":-49},{"x":46,"y":10},{"x":-27,"y":-68},{"x":81,"y":-66},{"x":40,"y":22},{"x":-9,"y":-64},{"x":123,"y":-80},{"x":-34,"y":41},{"x":68,"y":100},{"x":-24,"y":44},{"x":67,"y":50},{"x":-18,"y":39},{"x":46,"y":88},{"x":58,"y":13},{"x":0,"y":41},{"x":36,"y":9},{"x":-17,"y":82},{"x":18,"y":59},{"x":45,"y":26},{"x":-39,"y":11},{"x":-12,"y":42},{"x":29,"y":93},{"x":38,"y":8},{"x":-9,"y":64},{"x":77,"y":-33},{"x":46,"y":33},{"x":22,"y":-37},{"x":14,"y":131},{"x":176,"y":99},{"x":10,"y":48},{"x":-85,"y":57},{"x":-57,"y":110},{"x":37,"y":49},{"x":79,"y":24},{"x":64,"y":102},{"x":-52,"y":54},{"x":-119,"y":34},{"x":30,"y":35},{"x":16,"y":-18},{"x":-6,"y":25},{"x":40,"y":-6},{"x":4,"y":50},{"x":34,"y":-48},{"x":96,"y":-7},{"x":75,"y":-73},{"x":-33,"y":79},{"x":65,"y":162},{"x":-64,"y":48},{"x":5,"y":92},{"x":-29,"y":23},{"x":20,"y":26},{"x":23,"y":-32},{"x":88,"y":55},{"x":162,"y":26},{"x":26,"y":57},{"x":-53,"y":59},{"x":-59,"y":-32},{"x":-17,"y":96},{"x":122,"y":85},{"x":-127,"y":45},{"x":-3,"y":38},{"x":-1,"y":-32},{"x":-146,"y":-6},{"x":3,"y":-22},{"x":-16,"y":49},{"x":160,"y":66},{"x":16,"y":118},{"x":49,"y":-79},{"x":46,"y":-14},{"x":125,"y":28},{"x":19,"y":35},{"x":50,"y":-22},{"x":89,"y":15},{"x":62,"y":43},{"x":-20,"y":28},{"x":41,"y":62},{"x":43,"y":-4},{"x":11,"y":40},{"x":69,"y":35},{"x":-137,"y":120},{"x":12,"y":26},{"x":89,"y":-2},{"x":-16,"y":53},{"x":92,"y":56},{"x":-1,"y":88},{"x":79,"y":57},{"x":31,"y":211},{"x":-54,"y":-25},{"x":-53,"y":17},{"x":-13,"y":-48},{"x":-31,"y":-16},{"x":-20,"y":22},{"x":13,"y":-24},{"x":-81,"y":-56},{"x":-165,"y":7},{"x":1,"y":-78},{"x":-61,"y":12},{"x":-32,"y":-44},{"x":-41,"y":16},{"x":-75,"y":-37},{"x":2,"y":52},{"x":27,"y":-30},{"x":22,"y":31},{"x":-36,"y":43},{"x":156,"y":9},{"x":52,"y":77},{"x":-50,"y":-7},{"x":2,"y":46},{"x":77,"y":15},{"x":59,"y":-36},{"x":42,"y":41},{"x":-45,"y":70},{"x":-27,"y":-20},{"x":-72,"y":26},{"x":-82,"y":-91},{"x":-58,"y":33},{"x":5,"y":-22},{"x":-33,"y":3},{"x":-34,"y":68},{"x":16,"y":79},{"x":145,"y":27},{"x":22,"y":29},{"x":-53,"y":-1},{"x":-54,"y":58},{"x":119,"y":40},{"x":131,"y":-82},{"x":72,"y":30},{"x":111,"y":-33},{"x":-2,"y":46},{"x":-275,"y":95},{"x":32,"y":53},{"x":51,"y":-53},{"x":132,"y":65},{"x":-6,"y":-24},{"x":68,"y":4},{"x":129,"y":-120},{"x":66,"y":-4},{"x":120,"y":-78},{"x":22,"y":17},{"x":-30,"y":89},{"x":52,"y":4},{"x":10,"y":41},{"x":189,"y":87},{"x":29,"y":108}],"type":"coastline"},{"arc":[{"x":28688,"y":42973},{"x":-22,"y":66},{"x":-134,"y":103},{"x":-127,"y":-1},{"x":-130,"y":38},{"x":-32,"y":-28},{"x":-24,"y":-86},{"x":52,"y":-111},{"x":-17,"y":-37},{"x":63,"y":-38},{"x":-7,"y":-59},{"x":97,"y":-55},{"x":-14,"y":-55},{"x":133,"y":-7},{"x":-24,"y":126},{"x":21,"y":-14},{"x":134,"y":59},{"x":31,"y":99}],"type":"coastline"},{"arc":[{"x":32226,"y":45021},{"x":-18,"y":134},{"x":-50,"y":21},{"x":-136,"y":-146},{"x":-56,"y":-151},{"x":-119,"y":-95},{"x":-31,"y":24},{"x":-25,"y":-74},{"x":-4,"y":21},{"x":-97,"y":-47},{"x":-177,"y":-135},{"x":-29,"y":-94},{"x":-121,"y":-87},{"x":-125,"y":-164},{"x":-87,"y":-205},{"x":28,"y":44},{"x":-25,"y":-61},{"x":19,"y":-70},{"x":87,"y":-111},{"x":91,"y":-75},{"x":123,"y":-45},{"x":-15,"y":-16},{"x":124,"y":-28},{"x":148,"y":19},{"x":156,"y":81},{"x":-85,"y":158},{"x":48,"y":201},{"x":-39,"y":131},{"x":113,"y":138},{"x":-40,"y":62},{"x":46,"y":49},{"x":-5,"y":56},{"x":55,"y":68},{"x":33,"y":-11},{"x":-25,"y":23},{"x":74,"y":80},{"x":64,"y":190},{"x":63,"y":39},{"x":37,"y":76}],"type":"coastline"},{"arc":[{"x":36525,"y":46683},{"x":-49,"y":148},{"x":30,"y":87},{"x":1,"y":279},{"x":-53,"y":-28},{"x":-138,"y":53},{"x":-6,"y":-81},{"x":-87,"y":-74},{"x":-63,"y":124},{"x":-88,"y":-6},{"x":-39,"y":-41},{"x":-92,"y":66},{"x":-34,"y":-57},{"x":-105,"y":15},{"x":-74,"y":123},{"x":-53,"y":12},{"x":14,"y":88},{"x":-184,"y":149},{"x":-49,"y":-14},{"x":-56,"y":142},{"x":-61,"y":41},{"x":-214,"y":-44},{"x":-49,"y":-92},{"x":-22,"y":32},{"x":-137,"y":-43},{"x":-72,"y":16},{"x":-71,"y":-118},{"x":-61,"y":-24},{"x":-28,"y":18},{"x":-40,"y":-56},{"x":-61,"y":22},{"x":-196,"y":-139},{"x":22,"y":-136},{"x":-70,"y":-99},{"x":-25,"y":-132},{"x":47,"y":-82},{"x":80,"y":-42},{"x":207,"y":-29},{"x":112,"y":-131},{"x":-1,"y":-55},{"x":140,"y":-94},{"x":127,"y":148},{"x":144,"y":9},{"x":93,"y":49},{"x":41,"y":-6},{"x":67,"y":-77},{"x":120,"y":-16},{"x":22,"y":-42},{"x":117,"y":11},{"x":69,"y":-28},{"x":39,"y":52},{"x":18,"y":-38},{"x":60,"y":23},{"x":84,"y":-100},{"x":175,"y":20},{"x":-103,"y":17},{"x":161,"y":65},{"x":56,"y":-36},{"x":-9,"y":34},{"x":14,"y":-32},{"x":-8,"y":44},{"x":66,"y":-39},{"x":166,"y":11},{"x":98,"y":79},{"x":8,"y":54}],"type":"coastline"},{"arc":[{"x":24265,"y":33589},{"x":-20,"y":68},{"x":-92,"y":55},{"x":-39,"y":9},{"x":-90,"y":-52},{"x":-6,"y":-51},{"x":37,"y":-3},{"x":-25,"y":-3},{"x":-20,"y":-202},{"x":165,"y":64},{"x":90,"y":115}],"type":"coastline"},{"arc":[{"x":24638,"y":39860},{"x":-23,"y":14},{"x":-44,"y":-33},{"x":75,"y":1},{"x":-8,"y":18}],"type":"coastline"},{"arc":[{"x":24731,"y":38152},{"x":-62,"y":47},{"x":4,"y":-63},{"x":13,"y":23},{"x":21,"y":-18},{"x":-25,"y":-30},{"x":49,"y":41}],"type":"coastline"},{"arc":[{"x":24757,"y":38554},{"x":-50,"y":62},{"x":-187,"y":-114},{"x":184,"y":-40},{"x":53,"y":92}],"type":"coastline"},{"arc":[{"x":24908,"y":40391},{"x":-34,"y":38},{"x":11,"y":-76},{"x":23,"y":38}],"type":"coastline"},{"arc":[{"x":25010,"y":39754},{"x":-128,"y":29},{"x":-77,"y":77},{"x":-69,"y":12},{"x":-74,"y":-33},{"x":55,"y":1},{"x":69,"y":-114},{"x":-17,"y":-49},{"x":-46,"y":-4},{"x":93,"y":-127},{"x":100,"y":10},{"x":5,"y":31},{"x":39,"y":1},{"x":-12,"y":57},{"x":49,"y":29},{"x":13,"y":80}],"type":"coastline"},{"arc":[{"x":25332,"y":39727},{"x":-46,"y":89},{"x":-91,"y":-5},{"x":-58,"y":-58},{"x":23,"y":-37},{"x":-23,"y":2},{"x":113,"y":-55},{"x":55,"y":11},{"x":27,"y":53}],"type":"coastline"},{"arc":[{"x":25565,"y":38095},{"x":-143,"y":165},{"x":-48,"y":19},{"x":-87,"y":-22},{"x":-49,"y":-182},{"x":49,"y":-103},{"x":-28,"y":-228},{"x":37,"y":-66},{"x":69,"y":-39},{"x":142,"y":22},{"x":42,"y":53},{"x":-38,"y":242},{"x":54,"y":139}],"type":"coastline"},{"arc":[{"x":22700,"y":38369},{"x":-18,"y":-10}],"type":"area"},{"arc":[{"x":22682,"y":38359},{"x":127,"y":-27},{"x":13,"y":-68},{"x":-91,"y":-145},{"x":-64,"y":-25},{"x":-111,"y":-151},{"x":-59,"y":-19},{"x":63,"y":-166},{"x":-18,"y":-69},{"x":-51,"y":-38},{"x":67,"y":-72}],"type":"area"},{"arc":[{"x":22558,"y":37579},{"x":144,"y":173},{"x":9,"y":-23},{"x":-3,"y":38},{"x":79,"y":42},{"x":-105,"y":88},{"x":20,"y":129},{"x":69,"y":38},{"x":-1,"y":-22},{"x":22,"y":-14},{"x":-18,"y":26},{"x":37,"y":0},{"x":-8,"y":-24},{"x":89,"y":82},{"x":66,"y":15},{"x":-24,"y":21},{"x":89,"y":129},{"x":78,"y":32},{"x":17,"y":83},{"x":143,"y":-57},{"x":72,"y":43},{"x":13,"y":52},{"x":-59,"y":37},{"x":52,"y":29},{"x":39,"y":-22},{"x":13,"y":18},{"x":-53,"y":30},{"x":82,"y":54},{"x":-37,"y":6},{"x":27,"y":19},{"x":-88,"y":106},{"x":49,"y":43},{"x":34,"y":-6},{"x":33,"y":96},{"x":45,"y":37},{"x":-33,"y":73},{"x":118,"y":31},{"x":-7,"y":45},{"x":93,"y":54},{"x":56,"y":-7},{"x":-75,"y":67},{"x":105,"y":130},{"x":-51,"y":13},{"x":1,"y":35},{"x":92,"y":22},{"x":136,"y":100},{"x":146,"y":42},{"x":70,"y":-42},{"x":-47,"y":6},{"x":59,"y":-9},{"x":5,"y":-112},{"x":61,"y":-101},{"x":34,"y":5},{"x":6,"y":-20},{"x":-34,"y":9},{"x":115,"y":-194},{"x":-2,"y":-52},{"x":-76,"y":-55},{"x":53,"y":-142},{"x":88,"y":-4},{"x":238,"y":-132},{"x":2,"y":21},{"x":125,"y":-10},{"x":59,"y":74},{"x":-1,"y":52},{"x":7,"y":-51},{"x":127,"y":-4},{"x":96,"y":-108},{"x":239,"y":46},{"x":-79,"y":130},{"x":15,"y":38},{"x":-45,"y":32},{"x":45,"y":62},{"x":-5,"y":160},{"x":53,"y":149},{"x":-48,"y":131},{"x":-53,"y":-32},{"x":-36,"y":36},{"x":34,"y":12},{"x":4,"y":51},{"x":-51,"y":81},{"x":-2,"y":92},{"x":-7,"y":-24},{"x":-76,"y":85},{"x":-62,"y":-94},{"x":-205,"y":-59},{"x":-34,"y":17},{"x":8,"y":-68},{"x":-33,"y":3},{"x":-56,"y":128},{"x":-54,"y":38},{"x":-46,"y":-7},{"x":-25,"y":39},{"x":23,"y":42},{"x":-53,"y":94},{"x":37,"y":10},{"x":25,"y":63},{"x":27,"y":-10},{"x":-12,"y":147},{"x":89,"y":151},{"x":-1,"y":60},{"x":170,"y":139},{"x":6,"y":92},{"x":52,"y":21},{"x":-85,"y":-2},{"x":39,"y":30},{"x":-41,"y":18},{"x":25,"y":56},{"x":92,"y":-81},{"x":-13,"y":-73},{"x":100,"y":-49},{"x":214,"y":151},{"x":51,"y":202},{"x":126,"y":119},{"x":113,"y":5},{"x":62,"y":-32},{"x":9,"y":-40},{"x":44,"y":21},{"x":-26,"y":81},{"x":66,"y":109},{"x":-2,"y":52},{"x":110,"y":49},{"x":64,"y":58},{"x":-12,"y":46},{"x":78,"y":8},{"x":85,"y":109},{"x":125,"y":60},{"x":7,"y":45},{"x":67,"y":-10},{"x":358,"y":177},{"x":81,"y":-3},{"x":67,"y":-69},{"x":115,"y":38},{"x":48,"y":66},{"x":-13,"y":48},{"x":-21,"y":17},{"x":-53,"y":-29},{"x":-71,"y":66},{"x":-25,"y":77},{"x":-50,"y":4},{"x":-54,"y":88},{"x":0,"y":-21},{"x":-35,"y":6},{"x":50,"y":79},{"x":-20,"y":44},{"x":-152,"y":-3},{"x":-66,"y":83},{"x":-61,"y":8},{"x":-13,"y":27},{"x":-76,"y":-22},{"x":-99,"y":29},{"x":-30,"y":-36},{"x":-96,"y":73},{"x":-108,"y":-31},{"x":-50,"y":26},{"x":-82,"y":-35},{"x":-27,"y":27},{"x":21,"y":22},{"x":-67,"y":-2},{"x":-57,"y":-72},{"x":-6,"y":37},{"x":-20,"y":-30},{"x":23,"y":46},{"x":-43,"y":-49},{"x":-37,"y":0},{"x":-44,"y":-97},{"x":-84,"y":-18},{"x":-29,"y":-75},{"x":-56,"y":40},{"x":-36,"y":-65},{"x":-63,"y":23},{"x":-50,"y":-55},{"x":3,"y":-42},{"x":-27,"y":17},{"x":-21,"y":-30},{"x":-157,"y":-11},{"x":-68,"y":-106},{"x":-83,"y":-8},{"x":-2,"y":-59},{"x":-67,"y":-41},{"x":-62,"y":11},{"x":-23,"y":-46},{"x":-105,"y":-63},{"x":-77,"y":-438},{"x":66,"y":-180},{"x":-15,"y":-87},{"x":-66,"y":-21},{"x":-143,"y":76},{"x":-88,"y":-28},{"x":29,"y":-95},{"x":-22,"y":-15},{"x":-2,"y":-17},{"x":9,"y":19},{"x":36,"y":-113},{"x":-294,"y":165},{"x":-39,"y":50},{"x":-16,"y":-102},{"x":-123,"y":4},{"x":17,"y":-97},{"x":-52,"y":-142},{"x":-60,"y":-59},{"x":-42,"y":11},{"x":12,"y":-68},{"x":-57,"y":18},{"x":168,"y":-237},{"x":-39,"y":-165},{"x":108,"y":-17},{"x":-65,"y":-19},{"x":4,"y":-47},{"x":-307,"y":155},{"x":3,"y":-108},{"x":-39,"y":-35},{"x":31,"y":-29},{"x":-53,"y":15},{"x":-37,"y":-58},{"x":41,"y":-125},{"x":-89,"y":-38},{"x":57,"y":-37},{"x":-24,"y":-31},{"x":-44,"y":-35},{"x":-95,"y":73},{"x":-103,"y":3},{"x":-25,"y":-91},{"x":-21,"y":25},{"x":-33,"y":-14},{"x":-70,"y":-186},{"x":54,"y":-45},{"x":-9,"y":-84},{"x":-56,"y":4},{"x":-23,"y":-40},{"x":-75,"y":34},{"x":-17,"y":-50},{"x":-35,"y":-8},{"x":-72,"y":4},{"x":-15,"y":37},{"x":-37,"y":4},{"x":38,"y":-57},{"x":-1,"y":-124},{"x":-24,"y":-13},{"x":34,"y":-55},{"x":42,"y":-4},{"x":-26,"y":-16},{"x":30,"y":-4},{"x":15,"y":-111},{"x":80,"y":-112},{"x":-28,"y":-74},{"x":29,"y":-48},{"x":-64,"y":-134},{"x":-129,"y":-76}],"type":"coastline"},{"arc":[{"x":27116,"y":38989},{"x":-8,"y":62},{"x":-43,"y":-28},{"x":-27,"y":56},{"x":-27,"y":-33},{"x":28,"y":-66},{"x":77,"y":9}],"type":"coastline"},{"arc":[{"x":27621,"y":39109},{"x":-10,"y":56},{"x":-9,"y":-32},{"x":-76,"y":116},{"x":-102,"y":14},{"x":-73,"y":-55},{"x":-122,"y":29},{"x":-36,"y":-116},{"x":32,"y":-15},{"x":-6,"y":-58},{"x":44,"y":-58},{"x":42,"y":-29},{"x":125,"y":24},{"x":-12,"y":-54},{"x":26,"y":-23},{"x":83,"y":37},{"x":94,"y":164}],"type":"coastline"},{"arc":[{"x":27832,"y":39189},{"x":-29,"y":92},{"x":-14,"y":-87},{"x":29,"y":-56},{"x":14,"y":51}],"type":"coastline"},{"arc":[{"x":28049,"y":39004},{"x":-20,"y":44},{"x":-89,"y":-69},{"x":30,"y":-52},{"x":47,"y":-6},{"x":32,"y":83}],"type":"coastline"},{"arc":[{"x":28938,"y":39759},{"x":-41,"y":9},{"x":-16,"y":-53},{"x":-190,"y":-142},{"x":-67,"y":15},{"x":-163,"y":-59},{"x":-67,"y":-188},{"x":-51,"y":-32},{"x":-31,"y":14},{"x":18,"y":24},{"x":-81,"y":-36},{"x":-29,"y":-146},{"x":-17,"y":12},{"x":-14,"y":-1},{"x":24,"y":-8},{"x":-18,"y":-14},{"x":-4,"y":15},{"x":-1,"y":-26},{"x":-105,"y":-13},{"x":-92,"y":-45},{"x":28,"y":-16},{"x":18,"y":34},{"x":72,"y":8},{"x":61,"y":-42},{"x":74,"y":3},{"x":122,"y":106},{"x":96,"y":33},{"x":120,"y":128},{"x":87,"y":48},{"x":4,"y":-21},{"x":76,"y":132},{"x":138,"y":68},{"x":49,"y":193}],"type":"coastline"},{"arc":[{"x":19803,"y":37841},{"x":-26,"y":12},{"x":-25,"y":-26},{"x":14,"y":-33},{"x":37,"y":47}],"type":"coastline"},{"arc":[{"x":19941,"y":34477},{"x":-17,"y":17},{"x":-60,"y":-43},{"x":60,"y":0},{"x":17,"y":26}],"type":"coastline"},{"arc":[{"x":20082,"y":36894},{"x":-14,"y":11},{"x":8,"y":39},{"x":-66,"y":55},{"x":-10,"y":-138},{"x":59,"y":-5},{"x":23,"y":38}],"type":"coastline"},{"arc":[{"x":20109,"y":34443},{"x":-51,"y":-26},{"x":45,"y":-1},{"x":6,"y":27}],"type":"coastline"},{"arc":[{"x":20181,"y":38889},{"x":-184,"y":-197},{"x":73,"y":-2},{"x":111,"y":199}],"type":"coastline"},{"arc":[{"x":20212,"y":34072},{"x":-61,"y":31},{"x":-77,"y":-46},{"x":64,"y":-29},{"x":74,"y":44}],"type":"coastline"},{"arc":[{"x":20285,"y":33631},{"x":-70,"y":59},{"x":-125,"y":-18},{"x":11,"y":-78},{"x":118,"y":6},{"x":66,"y":31}],"type":"coastline"},{"arc":[{"x":20331,"y":34040},{"x":-101,"y":58},{"x":-4,"y":-82},{"x":59,"y":-29},{"x":46,"y":21},{"x":0,"y":32}],"type":"coastline"},{"arc":[{"x":20558,"y":33976},{"x":-165,"y":98},{"x":-72,"y":-139},{"x":85,"y":3},{"x":14,"y":-42},{"x":-31,"y":-25},{"x":44,"y":-21},{"x":94,"y":51},{"x":31,"y":75}],"type":"coastline"},{"arc":[{"x":20598,"y":34199},{"x":-68,"y":14},{"x":-45,"y":49},{"x":-60,"y":-35},{"x":28,"y":-27},{"x":145,"y":-1}],"type":"coastline"},{"arc":[{"x":20667,"y":33730},{"x":-96,"y":-7},{"x":-46,"y":-48},{"x":32,"y":-25},{"x":87,"y":3},{"x":23,"y":77}],"type":"coastline"},{"arc":[{"x":20682,"y":35320},{"x":-65,"y":22},{"x":-67,"y":-55},{"x":-80,"y":-15},{"x":-22,"y":-55},{"x":175,"y":51},{"x":59,"y":52}],"type":"coastline"},{"arc":[{"x":20700,"y":34573},{"x":-64,"y":101},{"x":-152,"y":33},{"x":-48,"y":-56},{"x":-6,"y":46},{"x":-45,"y":-25},{"x":-31,"y":23},{"x":-87,"y":-113},{"x":-225,"y":46},{"x":-10,"y":-92},{"x":-99,"y":-38},{"x":51,"y":-28},{"x":152,"y":33},{"x":26,"y":-59},{"x":122,"y":-14},{"x":28,"y":69},{"x":45,"y":-28},{"x":107,"y":9},{"x":45,"y":35},{"x":44,"y":-12},{"x":61,"y":55},{"x":76,"y":-20},{"x":10,"y":35}],"type":"coastline"},{"arc":[{"x":20709,"y":34397},{"x":-23,"y":0},{"x":17,"y":-18},{"x":6,"y":18}],"type":"coastline"},{"arc":[{"x":20774,"y":35309},{"x":-70,"y":5},{"x":43,"y":-26},{"x":27,"y":21}],"type":"coastline"},{"arc":[{"x":20798,"y":34664},{"x":-64,"y":33},{"x":-63,"y":-33},{"x":80,"y":-22},{"x":47,"y":22}],"type":"coastline"},{"arc":[{"x":20850,"y":35357},{"x":-34,"y":14},{"x":-11,"y":-31},{"x":45,"y":17}],"type":"coastline"},{"arc":[{"x":20941,"y":34204},{"x":-57,"y":20},{"x":20,"y":41},{"x":-71,"y":113},{"x":-47,"y":-38},{"x":-25,"y":45},{"x":-42,"y":0},{"x":33,"y":-45},{"x":-19,"y":-56},{"x":48,"y":17},{"x":49,"y":-31},{"x":-27,"y":-59},{"x":-106,"y":37},{"x":-17,"y":-48},{"x":-56,"y":-11},{"x":11,"y":-37},{"x":74,"y":-11},{"x":-37,"y":-48},{"x":48,"y":-110},{"x":55,"y":3},{"x":-8,"y":66},{"x":82,"y":36},{"x":-41,"y":45},{"x":24,"y":48},{"x":64,"y":-11},{"x":-11,"y":16},{"x":56,"y":18}],"type":"coastline"},{"arc":[{"x":20986,"y":34932},{"x":-86,"y":31},{"x":34,"y":-35},{"x":52,"y":4}],"type":"coastline"},{"arc":[{"x":21014,"y":36926},{"x":-8,"y":-22},{"x":35,"y":94},{"x":-27,"y":-72}],"type":"coastline"},{"arc":[{"x":21039,"y":39163},{"x":-41,"y":30},{"x":-122,"y":-25},{"x":9,"y":-20},{"x":-42,"y":3},{"x":14,"y":-72},{"x":6,"y":35},{"x":10,"y":-38},{"x":79,"y":40},{"x":87,"y":-9},{"x":0,"y":56}],"type":"coastline"},{"arc":[{"x":21010,"y":36300},{"x":19,"y":-27},{"x":36,"y":31},{"x":-55,"y":-4}],"type":"coastline"},{"arc":[{"x":21436,"y":39540},{"x":-34,"y":27},{"x":-18,"y":-48},{"x":30,"y":-14},{"x":22,"y":35}],"type":"coastline"},{"arc":[{"x":21457,"y":38533},{"x":0,"y":-27},{"x":1,"y":63},{"x":-1,"y":-36}],"type":"coastline"},{"arc":[{"x":21618,"y":39008},{"x":-103,"y":42},{"x":87,"y":-100},{"x":16,"y":58}],"type":"coastline"},{"arc":[{"x":21674,"y":39227},{"x":-2,"y":34},{"x":-46,"y":57},{"x":7,"y":21},{"x":-28,"y":2},{"x":15,"y":14},{"x":-49,"y":-17},{"x":-16,"y":-49},{"x":-75,"y":-11},{"x":60,"y":-53},{"x":115,"y":-16},{"x":15,"y":39},{"x":4,"y":-21}],"type":"coastline"},{"arc":[{"x":21702,"y":39081},{"x":-5,"y":-130},{"x":38,"y":173},{"x":-33,"y":-43}],"type":"coastline"},{"arc":[{"x":21811,"y":38516},{"x":-110,"y":62},{"x":-44,"y":-23},{"x":59,"y":-65},{"x":-86,"y":-38},{"x":8,"y":-86},{"x":36,"y":-7},{"x":-30,"y":-7},{"x":33,"y":-27},{"x":134,"y":191}],"type":"coastline"},{"arc":[{"x":22015,"y":39329},{"x":-33,"y":28},{"x":-60,"y":2},{"x":-40,"y":46},{"x":-151,"y":-135},{"x":30,"y":10},{"x":10,"y":-25},{"x":-34,"y":10},{"x":40,"y":-27},{"x":-38,"y":-112},{"x":52,"y":53},{"x":34,"y":-27},{"x":39,"y":20},{"x":-72,"y":7},{"x":40,"y":12},{"x":77,"y":-38},{"x":91,"y":-3},{"x":-65,"y":13},{"x":-2,"y":85},{"x":57,"y":95},{"x":25,"y":-14}],"type":"coastline"},{"arc":[{"x":22176,"y":32929},{"x":-21,"y":33},{"x":-78,"y":-37},{"x":-82,"y":27},{"x":-2,"y":91},{"x":-55,"y":-28},{"x":-48,"y":-89},{"x":-34,"y":-3},{"x":220,"y":-75},{"x":-9,"y":29},{"x":36,"y":4},{"x":-12,"y":-31},{"x":35,"y":13},{"x":4,"y":46},{"x":46,"y":20}],"type":"coastline"},{"arc":[{"x":22205,"y":39503},{"x":-57,"y":19},{"x":-27,"y":-41},{"x":-20,"y":60},{"x":-117,"y":28},{"x":-91,"y":-163},{"x":37,"y":-47},{"x":113,"y":-4},{"x":81,"y":36},{"x":81,"y":112}],"type":"coastline"},{"arc":[{"x":22230,"y":32592},{"x":-41,"y":4},{"x":-13,"y":-38},{"x":55,"y":7},{"x":-1,"y":27}],"type":"coastline"},{"arc":[{"x":22355,"y":39596},{"x":-23,"y":32},{"x":-154,"y":-44},{"x":6,"y":-54},{"x":96,"y":-22},{"x":75,"y":88}],"type":"coastline"},{"arc":[{"x":22682,"y":38359},{"x":-35,"y":17}],"type":"area"},{"arc":[{"x":22647,"y":38376},{"x":-44,"y":-27},{"x":48,"y":-75},{"x":-17,"y":-2},{"x":-9,"y":16},{"x":-32,"y":7},{"x":-21,"y":-3},{"x":36,"y":-2},{"x":12,"y":-6},{"x":3,"y":-16},{"x":-21,"y":17},{"x":-43,"y":-43},{"x":-36,"y":29},{"x":-4,"y":66},{"x":-39,"y":-18},{"x":-79,"y":37},{"x":10,"y":75},{"x":-14,"y":-46},{"x":-71,"y":118},{"x":-183,"y":159},{"x":-55,"y":-72},{"x":5,"y":30},{"x":-40,"y":17},{"x":34,"y":-18},{"x":-125,"y":-11},{"x":-241,"y":183},{"x":-22,"y":140},{"x":-9,"y":-71},{"x":-192,"y":136},{"x":-5,"y":-21},{"x":-14,"y":27},{"x":-124,"y":-13},{"x":-11,"y":-51},{"x":63,"y":-47},{"x":-30,"y":-19},{"x":49,"y":8},{"x":-35,"y":-37},{"x":32,"y":11},{"x":59,"y":-91},{"x":212,"y":-171},{"x":-31,"y":7},{"x":151,"y":-59},{"x":-21,"y":-1},{"x":28,"y":-20},{"x":-24,"y":-61},{"x":-103,"y":-127},{"x":-50,"y":-26},{"x":-15,"y":34},{"x":9,"y":-24},{"x":-29,"y":-9},{"x":-24,"y":92},{"x":-47,"y":8},{"x":3,"y":-82},{"x":-41,"y":-67},{"x":-51,"y":38},{"x":20,"y":64},{"x":-57,"y":60},{"x":-18,"y":-87},{"x":105,"y":-76},{"x":-72,"y":-10},{"x":19,"y":-86},{"x":-63,"y":-40},{"x":-1,"y":27},{"x":-46,"y":5},{"x":40,"y":-6},{"x":-30,"y":-30},{"x":-46,"y":49},{"x":-177,"y":-31},{"x":39,"y":-30},{"x":-89,"y":-85},{"x":-102,"y":-39},{"x":-6,"y":14},{"x":-19,"y":3},{"x":22,"y":-13},{"x":-23,"y":-3},{"x":2,"y":12},{"x":-37,"y":-41},{"x":-204,"y":-6},{"x":-162,"y":-157},{"x":-74,"y":33},{"x":49,"y":-45},{"x":-23,"y":-13},{"x":-33,"y":38},{"x":8,"y":-76},{"x":-20,"y":67},{"x":-73,"y":11},{"x":-17,"y":52},{"x":-174,"y":4},{"x":12,"y":59},{"x":-29,"y":15},{"x":46,"y":39},{"x":52,"y":-9},{"x":44,"y":31},{"x":-7,"y":-23},{"x":64,"y":138},{"x":0,"y":89},{"x":-107,"y":11},{"x":-31,"y":69},{"x":-108,"y":-6},{"x":6,"y":-33},{"x":-83,"y":-54},{"x":-23,"y":-61},{"x":-35,"y":-30},{"x":-26,"y":19},{"x":-21,"y":-61},{"x":-110,"y":-75},{"x":-26,"y":-50},{"x":26,"y":-87},{"x":-35,"y":-58},{"x":-48,"y":-4},{"x":-68,"y":-151},{"x":-273,"y":-182},{"x":-29,"y":-217},{"x":-121,"y":-158},{"x":38,"y":-27},{"x":30,"y":-124},{"x":92,"y":-8},{"x":218,"y":62},{"x":18,"y":-34},{"x":50,"y":61},{"x":-56,"y":-22},{"x":61,"y":30},{"x":-10,"y":-56},{"x":46,"y":59},{"x":-9,"y":-53},{"x":14,"y":17},{"x":22,"y":-27},{"x":36,"y":43},{"x":-27,"y":12},{"x":36,"y":2},{"x":-25,"y":-72},{"x":58,"y":7},{"x":-15,"y":-53},{"x":-71,"y":36},{"x":-10,"y":-58},{"x":176,"y":-21},{"x":65,"y":167},{"x":94,"y":-70},{"x":1,"y":-44},{"x":-12,"y":-36},{"x":-23,"y":-12},{"x":-42,"y":7},{"x":-6,"y":-18},{"x":59,"y":-11},{"x":35,"y":64},{"x":11,"y":-36},{"x":17,"y":34},{"x":26,"y":-40},{"x":47,"y":-2},{"x":-4,"y":59},{"x":17,"y":-124},{"x":26,"y":33},{"x":106,"y":-4},{"x":90,"y":-56},{"x":34,"y":38},{"x":50,"y":-6},{"x":97,"y":88},{"x":-59,"y":54},{"x":17,"y":34},{"x":-77,"y":63},{"x":33,"y":1},{"x":-13,"y":20},{"x":98,"y":-101},{"x":21,"y":20},{"x":-17,"y":-27},{"x":39,"y":56},{"x":-10,"y":33},{"x":55,"y":32},{"x":-30,"y":-9},{"x":9,"y":73},{"x":38,"y":-44},{"x":109,"y":10},{"x":-36,"y":-11},{"x":36,"y":-23},{"x":-75,"y":-11},{"x":0,"y":-51},{"x":51,"y":0},{"x":9,"y":40},{"x":115,"y":-26},{"x":-1,"y":68},{"x":-43,"y":-21},{"x":-31,"y":80},{"x":123,"y":-12},{"x":-5,"y":-84},{"x":17,"y":24},{"x":-18,"y":117},{"x":170,"y":123},{"x":-18,"y":35},{"x":32,"y":11},{"x":3,"y":43},{"x":-6,"y":22},{"x":-34,"y":-7},{"x":8,"y":27},{"x":29,"y":30},{"x":35,"y":-8},{"x":0,"y":41},{"x":2,"y":-51},{"x":42,"y":42},{"x":-15,"y":84},{"x":33,"y":-23},{"x":53,"y":103},{"x":51,"y":12},{"x":-6,"y":33},{"x":140,"y":24},{"x":9,"y":-37},{"x":73,"y":-23},{"x":35,"y":30},{"x":18,"y":-21},{"x":-37,"y":-36},{"x":103,"y":-51},{"x":93,"y":39},{"x":100,"y":-18},{"x":-11,"y":-29},{"x":133,"y":-28},{"x":376,"y":-174},{"x":135,"y":-19},{"x":148,"y":28},{"x":65,"y":-42},{"x":-4,"y":106},{"x":-156,"y":75},{"x":-13,"y":57}],"type":"coastline"},{"arc":[{"x":21803,"y":30440},{"x":-65,"y":51},{"x":9,"y":-116},{"x":56,"y":65}],"type":"coastline"},{"arc":[{"x":21812,"y":30522},{"x":-63,"y":31},{"x":-4,"y":-47},{"x":67,"y":16}],"type":"coastline"},{"arc":[{"x":21875,"y":30983},{"x":-16,"y":-61},{"x":-44,"y":-23},{"x":1,"y":-123},{"x":12,"y":99},{"x":52,"y":58},{"x":-5,"y":50}],"type":"coastline"},{"arc":[{"x":22264,"y":30031},{"x":-52,"y":80},{"x":-163,"y":89},{"x":13,"y":63},{"x":-65,"y":38},{"x":-29,"y":-20},{"x":1,"y":30},{"x":-71,"y":43},{"x":-6,"y":66},{"x":6,"y":-66},{"x":-64,"y":68},{"x":-64,"y":-94},{"x":-34,"y":14},{"x":-105,"y":-82},{"x":-165,"y":-11},{"x":-45,"y":48},{"x":-107,"y":12},{"x":14,"y":-82},{"x":129,"y":-175},{"x":80,"y":-22},{"x":73,"y":-63},{"x":64,"y":3},{"x":89,"y":-102},{"x":36,"y":39},{"x":-22,"y":-55},{"x":31,"y":-15},{"x":-24,"y":-8},{"x":-75,"y":60},{"x":75,"y":-61},{"x":22,"y":7},{"x":14,"y":-16},{"x":40,"y":-188},{"x":-20,"y":39},{"x":-18,"y":-13},{"x":142,"y":-118},{"x":-73,"y":-9},{"x":-108,"y":137},{"x":76,"y":-120},{"x":83,"y":-50},{"x":-14,"y":14},{"x":149,"y":53},{"x":-104,"y":-61},{"x":68,"y":8},{"x":54,"y":40},{"x":25,"y":156},{"x":105,"y":143},{"x":39,"y":181}],"type":"coastline"},{"arc":[{"x":36444,"y":41337},{"x":-175,"y":107},{"x":-60,"y":-14},{"x":57,"y":-88},{"x":103,"y":-44},{"x":75,"y":39}],"type":"coastline"},{"arc":[{"x":4050,"y":64465},{"x":-38,"y":104},{"x":-65,"y":-59},{"x":103,"y":-45}],"type":"coastline"},{"arc":[{"x":17339,"y":64925},{"x":-36,"y":173},{"x":-149,"y":83},{"x":-292,"y":-87},{"x":-53,"y":-55},{"x":-36,"y":-186},{"x":106,"y":-141},{"x":68,"y":30},{"x":330,"y":22},{"x":41,"y":43},{"x":-19,"y":13},{"x":40,"y":105}],"type":"coastline"},{"arc":[{"x":18180,"y":65278},{"x":-77,"y":354},{"x":-203,"y":-64},{"x":-33,"y":-114},{"x":44,"y":-101},{"x":132,"y":-77},{"x":137,"y":2}],"type":"coastline"},{"arc":[{"x":5996,"y":13889},{"x":-29,"y":-10},{"x":-71,"y":133},{"x":-123,"y":11},{"x":-75,"y":-27},{"x":-3,"y":-32},{"x":-19,"y":38},{"x":16,"y":-43},{"x":-72,"y":-118},{"x":-1,"y":-138},{"x":51,"y":-89},{"x":124,"y":-38},{"x":96,"y":23},{"x":74,"y":75},{"x":32,"y":106},{"x":-27,"y":92},{"x":27,"y":17}],"type":"coastline"},{"arc":[{"x":6512,"y":18040},{"x":-67,"y":119},{"x":-86,"y":-3},{"x":-21,"y":-89},{"x":35,"y":-39},{"x":139,"y":12}],"type":"coastline"},{"arc":[{"x":6799,"y":13765},{"x":-74,"y":73},{"x":-90,"y":12},{"x":13,"y":-71},{"x":25,"y":4},{"x":92,"y":-114},{"x":34,"y":96}],"type":"coastline"},{"arc":[{"x":7199,"y":18229},{"x":-11,"y":-24},{"x":-31,"y":3},{"x":15,"y":-16},{"x":-37,"y":-5},{"x":-15,"y":-26},{"x":71,"y":-10},{"x":8,"y":78}],"type":"coastline"},{"arc":[{"x":7584,"y":17244},{"x":-120,"y":59},{"x":14,"y":72},{"x":-143,"y":94},{"x":-43,"y":52},{"x":-33,"y":14},{"x":-57,"y":-43},{"x":-21,"y":-73},{"x":48,"y":-138},{"x":63,"y":2},{"x":5,"y":-41},{"x":88,"y":-5},{"x":-19,"y":-22},{"x":24,"y":-11},{"x":30,"y":34},{"x":2,"y":-31},{"x":71,"y":-1},{"x":20,"y":37},{"x":71,"y":1}],"type":"coastline"},{"arc":[{"x":7781,"y":17425},{"x":-36,"y":122},{"x":-138,"y":236},{"x":-53,"y":45},{"x":17,"y":-20},{"x":-185,"y":70},{"x":-93,"y":5},{"x":-68,"y":-43},{"x":-40,"y":-99},{"x":27,"y":-14},{"x":-22,"y":-5},{"x":-41,"y":41},{"x":41,"y":-43},{"x":14,"y":0},{"x":8,"y":-15},{"x":51,"y":-167},{"x":43,"y":-17},{"x":67,"y":-73},{"x":-6,"y":20},{"x":60,"y":-37},{"x":24,"y":-38},{"x":50,"y":-14},{"x":-20,"y":-10},{"x":32,"y":-6},{"x":33,"y":37},{"x":103,"y":-16},{"x":-21,"y":-19},{"x":71,"y":6},{"x":82,"y":54}],"type":"coastline"},{"arc":[{"x":8250,"y":18236},{"x":-61,"y":33},{"x":-60,"y":8},{"x":-91,"y":82},{"x":-92,"y":18},{"x":-52,"y":75},{"x":12,"y":30},{"x":-158,"y":59},{"x":-116,"y":0},{"x":-117,"y":54},{"x":-145,"y":176},{"x":-97,"y":-35},{"x":-123,"y":33},{"x":-27,"y":88},{"x":-67,"y":67},{"x":33,"y":114},{"x":-45,"y":105},{"x":-41,"y":47},{"x":-102,"y":32},{"x":-62,"y":74},{"x":-49,"y":241},{"x":-400,"y":281},{"x":112,"y":-125},{"x":-53,"y":-53},{"x":41,"y":-56},{"x":-30,"y":-114},{"x":35,"y":-146},{"x":-49,"y":-224},{"x":44,"y":-56},{"x":-57,"y":-67},{"x":13,"y":-46},{"x":-21,"y":24},{"x":-27,"y":-135},{"x":-24,"y":-1},{"x":19,"y":-146},{"x":-56,"y":-40},{"x":-16,"y":-70},{"x":84,"y":-97},{"x":75,"y":21},{"x":52,"y":-13},{"x":5,"y":-32},{"x":-85,"y":34},{"x":-67,"y":-22},{"x":161,"y":-263},{"x":200,"y":-68},{"x":115,"y":67},{"x":-84,"y":-6},{"x":-80,"y":46},{"x":28,"y":47},{"x":-44,"y":41},{"x":35,"y":60},{"x":192,"y":-58},{"x":100,"y":-76},{"x":-22,"y":-39},{"x":22,"y":-29},{"x":102,"y":-25},{"x":23,"y":37},{"x":38,"y":5},{"x":-21,"y":17},{"x":2,"y":23},{"x":49,"y":8},{"x":-11,"y":32},{"x":70,"y":36},{"x":-11,"y":21},{"x":25,"y":-17},{"x":38,"y":35},{"x":34,"y":-11},{"x":-14,"y":-26},{"x":60,"y":32},{"x":132,"y":-19},{"x":32,"y":29},{"x":-19,"y":34},{"x":39,"y":-1},{"x":-69,"y":75},{"x":56,"y":-21},{"x":36,"y":27},{"x":109,"y":-55},{"x":4,"y":-31},{"x":81,"y":-15},{"x":73,"y":-56},{"x":15,"y":17},{"x":41,"y":-46},{"x":119,"y":-11},{"x":165,"y":-127},{"x":-70,"y":103},{"x":33,"y":19},{"x":81,"y":-29}],"type":"coastline"},{"arc":[{"x":8298,"y":18548},{"x":-38,"y":31},{"x":-37,"y":-28},{"x":75,"y":-3}],"type":"coastline"},{"arc":[{"x":8473,"y":18024},{"x":-34,"y":74},{"x":-99,"y":50},{"x":2,"y":-37},{"x":-38,"y":-8},{"x":41,"y":7},{"x":15,"y":-30},{"x":-65,"y":10},{"x":88,"y":-115},{"x":61,"y":-20},{"x":29,"y":69}],"type":"coastline"},{"arc":[{"x":2706,"y":9380},{"x":-49,"y":36},{"x":66,"y":-49},{"x":-17,"y":13}],"type":"coastline"},{"arc":[{"x":2729,"y":9557},{"x":-19,"y":37},{"x":-25,"y":-53},{"x":-10,"y":-101},{"x":46,"y":-7},{"x":8,"y":124}],"type":"coastline"},{"arc":[{"x":2709,"y":9510},{"x":-4,"y":-27},{"x":-20,"y":3},{"x":17,"y":65},{"x":7,"y":-41}],"type":"coastline"},{"arc":[{"x":3953,"y":9494},{"x":-53,"y":34},{"x":-63,"y":-45},{"x":116,"y":11}],"type":"coastline"},{"arc":[{"x":5377,"y":10807},{"x":-44,"y":46},{"x":-19,"y":138},{"x":-91,"y":-26},{"x":-92,"y":30},{"x":-187,"y":-79},{"x":-101,"y":-140},{"x":-89,"y":-63},{"x":-86,"y":-9},{"x":-62,"y":42},{"x":-154,"y":-103},{"x":-62,"y":-92},{"x":-181,"y":-11},{"x":-86,"y":-153},{"x":-126,"y":-81},{"x":-126,"y":-13},{"x":-94,"y":57},{"x":-53,"y":-50},{"x":-70,"y":-13},{"x":-167,"y":69},{"x":-167,"y":-51},{"x":-143,"y":16},{"x":-211,"y":-40},{"x":-124,"y":-103},{"x":13,"y":-76},{"x":84,"y":-87},{"x":-10,"y":-109},{"x":-55,"y":-22},{"x":-42,"y":27},{"x":-101,"y":-84},{"x":-26,"y":-74},{"x":-17,"y":-99},{"x":54,"y":-97},{"x":31,"y":7},{"x":-6,"y":-94},{"x":60,"y":3},{"x":-24,"y":10},{"x":22,"y":19},{"x":21,"y":-36},{"x":38,"y":-6},{"x":-41,"y":-4},{"x":33,"y":-10},{"x":23,"y":19},{"x":52,"y":-160},{"x":85,"y":-104},{"x":107,"y":61},{"x":16,"y":76},{"x":81,"y":79},{"x":250,"y":38},{"x":21,"y":-73},{"x":59,"y":-12},{"x":123,"y":-105},{"x":-46,"y":-58},{"x":33,"y":-22},{"x":-7,"y":-66},{"x":-87,"y":-98},{"x":-69,"y":-28},{"x":145,"y":-120},{"x":157,"y":91},{"x":51,"y":-31},{"x":3,"y":178},{"x":-89,"y":70},{"x":23,"y":88},{"x":150,"y":-24},{"x":68,"y":70},{"x":45,"y":-16},{"x":28,"y":-82},{"x":49,"y":37},{"x":-57,"y":119},{"x":-91,"y":80},{"x":-48,"y":5},{"x":-56,"y":-36},{"x":-53,"y":15},{"x":-25,"y":-58},{"x":-51,"y":49},{"x":117,"y":97},{"x":-58,"y":171},{"x":87,"y":147},{"x":-22,"y":234},{"x":91,"y":26},{"x":57,"y":-46},{"x":139,"y":47},{"x":23,"y":36},{"x":104,"y":-20},{"x":-1,"y":83},{"x":198,"y":136},{"x":-50,"y":84},{"x":-94,"y":60},{"x":18,"y":33},{"x":48,"y":-14},{"x":231,"y":64},{"x":56,"y":81},{"x":184,"y":-104},{"x":88,"y":120},{"x":229,"y":106},{"x":143,"y":1},{"x":23,"y":37}],"type":"coastline"},{"arc":[{"x":15945,"y":4819},{"x":-45,"y":41},{"x":15,"y":-83},{"x":30,"y":42}],"type":"coastline"},{"arc":[{"x":16030,"y":4750},{"x":-53,"y":32},{"x":-34,"y":-25},{"x":61,"y":-36},{"x":26,"y":29}],"type":"coastline"},{"arc":[{"x":16194,"y":4242},{"x":-22,"y":81},{"x":-65,"y":51},{"x":-70,"y":-265},{"x":85,"y":6},{"x":72,"y":127}],"type":"coastline"},{"arc":[{"x":17874,"y":5853},{"x":-50,"y":48},{"x":-43,"y":-44},{"x":43,"y":-56},{"x":50,"y":52}],"type":"coastline"},{"arc":[{"x":4077,"y":502},{"x":-14,"y":115},{"x":-119,"y":244},{"x":-231,"y":-258},{"x":58,"y":-208},{"x":-46,"y":-19},{"x":24,"y":-62},{"x":-34,"y":-2},{"x":5,"y":-54},{"x":106,"y":-258},{"x":-1,"y":55},{"x":35,"y":28},{"x":6,"y":-59},{"x":76,"y":136},{"x":50,"y":0},{"x":61,"y":65},{"x":-53,"y":91},{"x":58,"y":159},{"x":-34,"y":36},{"x":28,"y":40},{"x":25,"y":-49}],"type":"coastline"},{"arc":[{"x":248,"y":6670},{"x":-66,"y":173},{"x":-144,"y":-31},{"x":-38,"y":-133},{"x":27,"y":-218},{"x":44,"y":-57},{"x":91,"y":6},{"x":21,"y":75},{"x":42,"y":19},{"x":-31,"y":-12},{"x":54,"y":178}],"type":"coastline"},{"arc":[{"x":1431,"y":4929},{"x":-7,"y":43},{"x":-31,"y":-114},{"x":38,"y":71}],"type":"coastline"},{"arc":[{"x":1668,"y":7822},{"x":-66,"y":16},{"x":-52,"y":-34},{"x":80,"y":-90},{"x":38,"y":108}],"type":"coastline"},{"arc":[{"x":1872,"y":7948},{"x":-52,"y":29},{"x":-110,"y":-99},{"x":-6,"y":-41},{"x":113,"y":26},{"x":55,"y":85}],"type":"coastline"},{"arc":[{"x":1977,"y":8367},{"x":-65,"y":93},{"x":28,"y":7},{"x":-28,"y":4},{"x":31,"y":52},{"x":-81,"y":44},{"x":-105,"y":-19},{"x":-96,"y":-129},{"x":34,"y":-75},{"x":164,"y":-80},{"x":84,"y":15},{"x":41,"y":64},{"x":-22,"y":19},{"x":36,"y":-20},{"x":-21,"y":25}],"type":"coastline"},{"arc":[{"x":2799,"y":9013},{"x":-74,"y":70},{"x":22,"y":7},{"x":-135,"y":41},{"x":-86,"y":-135},{"x":30,"y":-44},{"x":97,"y":-25},{"x":104,"y":36},{"x":42,"y":50}],"type":"coastline"},{"arc":[{"x":2935,"y":8133},{"x":-74,"y":151},{"x":-63,"y":-30},{"x":-68,"y":95},{"x":-56,"y":12},{"x":-36,"y":-94},{"x":65,"y":-40},{"x":36,"y":-196},{"x":-39,"y":-70},{"x":62,"y":13},{"x":26,"y":123},{"x":98,"y":-49},{"x":49,"y":85}],"type":"coastline"},{"arc":[{"x":3013,"y":6233},{"x":-86,"y":99},{"x":-76,"y":-12},{"x":118,"y":-140},{"x":62,"y":0},{"x":-3,"y":70},{"x":-15,"y":-17}],"type":"coastline"},{"arc":[{"x":3049,"y":8329},{"x":-54,"y":34},{"x":10,"y":-57},{"x":44,"y":23}],"type":"coastline"},{"arc":[{"x":3175,"y":6185},{"x":-37,"y":29},{"x":-9,"y":-54},{"x":-91,"y":-7},{"x":47,"y":-74},{"x":60,"y":10},{"x":30,"y":96}],"type":"coastline"},{"arc":[{"x":3718,"y":6630},{"x":-142,"y":139},{"x":-70,"y":15},{"x":-36,"y":80},{"x":-59,"y":22},{"x":18,"y":-18},{"x":-52,"y":-17},{"x":-25,"y":51},{"x":21,"y":-60},{"x":-100,"y":52},{"x":19,"y":50},{"x":45,"y":1},{"x":12,"y":-31},{"x":-3,"y":80},{"x":90,"y":32},{"x":-50,"y":89},{"x":5,"y":82},{"x":-42,"y":4},{"x":-35,"y":51},{"x":27,"y":43},{"x":64,"y":10},{"x":-3,"y":34},{"x":-39,"y":67},{"x":-83,"y":-2},{"x":-70,"y":47},{"x":36,"y":40},{"x":-36,"y":59},{"x":8,"y":56},{"x":-58,"y":82},{"x":-114,"y":39},{"x":-16,"y":136},{"x":-145,"y":-28},{"x":-13,"y":-47},{"x":-52,"y":-27},{"x":-142,"y":27},{"x":-32,"y":-43},{"x":-79,"y":28},{"x":96,"y":-100},{"x":-7,"y":-30},{"x":-49,"y":11},{"x":-184,"y":-109},{"x":-245,"y":42},{"x":-15,"y":-28},{"x":67,"y":-79},{"x":-1,"y":-77},{"x":-40,"y":-16},{"x":-32,"y":55},{"x":4,"y":-25},{"x":-37,"y":16},{"x":-33,"y":-30},{"x":-92,"y":-3},{"x":-9,"y":-131},{"x":160,"y":-243},{"x":-24,"y":-211},{"x":64,"y":-168},{"x":-17,"y":-62},{"x":46,"y":-163},{"x":85,"y":-117},{"x":58,"y":-29},{"x":49,"y":-102},{"x":-10,"y":-23},{"x":-195,"y":-19},{"x":2,"y":-89},{"x":51,"y":-82},{"x":-10,"y":-125},{"x":245,"y":-146},{"x":54,"y":71},{"x":-11,"y":65},{"x":-49,"y":20},{"x":27,"y":44},{"x":104,"y":-30},{"x":8,"y":-28},{"x":98,"y":51},{"x":-66,"y":112},{"x":-68,"y":30},{"x":-50,"y":-12},{"x":15,"y":56},{"x":28,"y":11},{"x":210,"y":-86},{"x":69,"y":-4},{"x":27,"y":28},{"x":-180,"y":60},{"x":-30,"y":32},{"x":57,"y":-11},{"x":89,"y":99},{"x":-19,"y":22},{"x":-126,"y":-4},{"x":36,"y":37},{"x":-23,"y":31},{"x":-139,"y":14},{"x":55,"y":31},{"x":-85,"y":38},{"x":10,"y":25},{"x":99,"y":-40},{"x":145,"y":29},{"x":39,"y":-45},{"x":102,"y":71},{"x":47,"y":-3},{"x":10,"y":-51},{"x":77,"y":-28},{"x":45,"y":67},{"x":46,"y":11},{"x":62,"y":-53},{"x":50,"y":-1},{"x":-6,"y":-22},{"x":51,"y":-2},{"x":-20,"y":75},{"x":115,"y":-9},{"x":110,"y":79},{"x":24,"y":87},{"x":85,"y":-2},{"x":1,"y":-62},{"x":69,"y":10},{"x":32,"y":127}],"type":"coastline"},{"arc":[{"x":4096,"y":6906},{"x":-28,"y":60},{"x":-58,"y":-2},{"x":-8,"y":-53},{"x":64,"y":-33},{"x":30,"y":28}],"type":"coastline"},{"arc":[{"x":186864,"y":185685},{"x":-48,"y":39},{"x":2,"y":70},{"x":-71,"y":-79},{"x":65,"y":-16},{"x":-3,"y":-66},{"x":38,"y":5},{"x":17,"y":47}],"type":"coastline"},{"arc":[{"x":186891,"y":185855},{"x":-23,"y":17},{"x":-12,"y":-34},{"x":35,"y":17}],"type":"coastline"},{"arc":[{"x":187115,"y":186548},{"x":-20,"y":28},{"x":-51,"y":-3},{"x":-70,"y":-122},{"x":24,"y":-7},{"x":42,"y":54},{"x":13,"y":-32},{"x":47,"y":8},{"x":15,"y":74}],"type":"coastline"},{"arc":[{"x":187433,"y":186928},{"x":-16,"y":28},{"x":-29,"y":-28},{"x":45,"y":0}],"type":"coastline"},{"arc":[{"x":188323,"y":186783},{"x":20,"y":89},{"x":-40,"y":13},{"x":-17,"y":55},{"x":-56,"y":-22},{"x":-16,"y":104},{"x":-54,"y":26},{"x":-4,"y":64},{"x":-47,"y":1},{"x":-162,"y":144},{"x":-39,"y":111},{"x":39,"y":62},{"x":-46,"y":-43},{"x":-62,"y":81},{"x":-86,"y":-145},{"x":-27,"y":34},{"x":-39,"y":-25},{"x":-10,"y":28},{"x":-72,"y":1},{"x":11,"y":-38},{"x":-63,"y":-22},{"x":56,"y":-50},{"x":28,"y":-100},{"x":-38,"y":-125},{"x":-40,"y":-11},{"x":9,"y":-86},{"x":45,"y":-28},{"x":-37,"y":-7},{"x":3,"y":-60},{"x":-69,"y":-96},{"x":-41,"y":2},{"x":-5,"y":55},{"x":-49,"y":5},{"x":-6,"y":99},{"x":-37,"y":22},{"x":-3,"y":-47},{"x":28,"y":2},{"x":-71,"y":-67},{"x":40,"y":-88},{"x":39,"y":-7},{"x":19,"y":-97},{"x":-33,"y":-30},{"x":-45,"y":22},{"x":-32,"y":-19},{"x":-7,"y":-42},{"x":63,"y":-39},{"x":-49,"y":-28},{"x":-4,"y":-41},{"x":-87,"y":6},{"x":-4,"y":41},{"x":-48,"y":-7},{"x":-39,"y":-61},{"x":-35,"y":11},{"x":-2,"y":-66},{"x":80,"y":-66},{"x":-60,"y":-8},{"x":-20,"y":34},{"x":-4,"y":-40},{"x":-59,"y":-27},{"x":-19,"y":-42},{"x":59,"y":-61},{"x":-73,"y":-13},{"x":18,"y":-59},{"x":-16,"y":-63},{"x":-33,"y":-10},{"x":15,"y":-35},{"x":-71,"y":43},{"x":-23,"y":-20},{"x":-28,"y":-82},{"x":46,"y":-76},{"x":37,"y":5},{"x":26,"y":-38},{"x":8,"y":-89},{"x":-43,"y":-45},{"x":-66,"y":7},{"x":5,"y":-46},{"x":-49,"y":-33},{"x":-27,"y":20},{"x":-23,"y":-44},{"x":-20,"y":97},{"x":-70,"y":-105},{"x":-81,"y":-14},{"x":13,"y":-92},{"x":-63,"y":-147},{"x":22,"y":-34},{"x":45,"y":0},{"x":53,"y":85},{"x":21,"y":-94},{"x":40,"y":20},{"x":-20,"y":-58},{"x":33,"y":-36},{"x":59,"y":3},{"x":32,"y":-60},{"x":89,"y":-25},{"x":46,"y":27},{"x":37,"y":-26},{"x":62,"y":49},{"x":14,"y":-90},{"x":-40,"y":-47},{"x":-55,"y":-3},{"x":-36,"y":56},{"x":-80,"y":-46},{"x":7,"y":-30},{"x":36,"y":7},{"x":-19,"y":-98},{"x":80,"y":30},{"x":-18,"y":-87},{"x":44,"y":29},{"x":45,"y":-11},{"x":77,"y":84},{"x":27,"y":-10},{"x":-16,"y":43},{"x":43,"y":37},{"x":17,"y":-34},{"x":83,"y":26},{"x":37,"y":-81},{"x":164,"y":-81},{"x":88,"y":18},{"x":7,"y":68},{"x":116,"y":127},{"x":-39,"y":100},{"x":105,"y":282},{"x":-25,"y":154},{"x":32,"y":6},{"x":14,"y":128},{"x":-70,"y":78},{"x":15,"y":22},{"x":51,"y":-20},{"x":21,"y":93},{"x":-67,"y":168},{"x":-101,"y":48},{"x":128,"y":-1},{"x":77,"y":-213},{"x":92,"y":3},{"x":114,"y":218},{"x":176,"y":202},{"x":-39,"y":95},{"x":-132,"y":70},{"x":33,"y":50},{"x":29,"y":-70},{"x":131,"y":-36},{"x":5,"y":40},{"x":-84,"y":88},{"x":68,"y":62},{"x":-39,"y":20},{"x":-55,"y":-21},{"x":-8,"y":73},{"x":55,"y":36},{"x":30,"y":-64},{"x":53,"y":14},{"x":43,"y":-22},{"x":42,"y":51},{"x":-33,"y":56}],"type":"coastline"},{"arc":[{"x":194308,"y":181583},{"x":-25,"y":54},{"x":-57,"y":-32},{"x":-33,"y":51},{"x":2,"y":92},{"x":-115,"y":50},{"x":-109,"y":251},{"x":-261,"y":114},{"x":-26,"y":118},{"x":-81,"y":55},{"x":-5,"y":138},{"x":-25,"y":-15},{"x":-52,"y":33},{"x":-84,"y":318},{"x":-79,"y":110},{"x":44,"y":466},{"x":-30,"y":338},{"x":22,"y":283},{"x":110,"y":450},{"x":49,"y":101},{"x":73,"y":34},{"x":89,"y":202},{"x":-22,"y":-47},{"x":-242,"y":-156},{"x":-189,"y":-54},{"x":-133,"y":-82},{"x":-125,"y":-4},{"x":-56,"y":-74},{"x":8,"y":-42},{"x":-68,"y":-25},{"x":-20,"y":-108},{"x":-107,"y":-75},{"x":-23,"y":-55},{"x":41,"y":1},{"x":197,"y":-248},{"x":-12,"y":-172},{"x":-158,"y":-338},{"x":-201,"y":-174},{"x":-73,"y":12},{"x":-33,"y":-41},{"x":-50,"y":60},{"x":-39,"y":-37},{"x":28,"y":-115},{"x":-30,"y":-47},{"x":-78,"y":-12},{"x":-13,"y":-78},{"x":-60,"y":-43},{"x":-46,"y":5},{"x":0,"y":-80},{"x":-52,"y":-34},{"x":-14,"y":-57},{"x":-132,"y":-79},{"x":1,"y":-182},{"x":-48,"y":-178},{"x":22,"y":-231},{"x":-40,"y":-324},{"x":25,"y":-87},{"x":-67,"y":-189},{"x":20,"y":-131},{"x":-36,"y":-125},{"x":-303,"y":-357},{"x":-137,"y":-78},{"x":-84,"y":-30},{"x":-21,"y":21},{"x":-54,"y":-48},{"x":-52,"y":53},{"x":-35,"y":-85},{"x":-29,"y":31},{"x":-32,"y":-10},{"x":19,"y":-108},{"x":-33,"y":-52},{"x":-54,"y":-16},{"x":-58,"y":-316},{"x":-171,"y":-138},{"x":33,"y":-65},{"x":-32,"y":-97},{"x":-163,"y":-186},{"x":-134,"y":-116},{"x":-111,"y":-53},{"x":-64,"y":-4},{"x":-32,"y":45},{"x":-48,"y":-14},{"x":14,"y":-76},{"x":-75,"y":-37},{"x":-22,"y":-64},{"x":-110,"y":-6},{"x":-3,"y":-35},{"x":-98,"y":-64},{"x":-125,"y":-29},{"x":-181,"y":11},{"x":-100,"y":103},{"x":-7,"y":-211},{"x":30,"y":32},{"x":58,"y":-2},{"x":25,"y":-103},{"x":-28,"y":-100},{"x":-74,"y":-89},{"x":-233,"y":-116},{"x":-39,"y":23},{"x":-12,"y":-63},{"x":-112,"y":-52},{"x":-129,"y":-24},{"x":-63,"y":30},{"x":-23,"y":-27},{"x":-79,"y":7},{"x":-124,"y":-82},{"x":-35,"y":19},{"x":1,"y":-125},{"x":-200,"y":-398},{"x":-7,"y":-201},{"x":-46,"y":-111},{"x":50,"y":-84},{"x":-20,"y":-110},{"x":-76,"y":-105},{"x":-163,"y":-93},{"x":21,"y":-39},{"x":-33,"y":-48},{"x":-134,"y":-70},{"x":25,"y":-84},{"x":-78,"y":-64},{"x":-201,"y":-76},{"x":-428,"y":-47},{"x":-242,"y":18},{"x":-433,"y":-87},{"x":-503,"y":-46},{"x":-174,"y":-71},{"x":0,"y":-57},{"x":173,"y":-25},{"x":561,"y":119},{"x":39,"y":-195},{"x":-7,"y":-177},{"x":-127,"y":-542},{"x":2,"y":47},{"x":-24,"y":-27},{"x":-7,"y":33},{"x":30,"y":43},{"x":-34,"y":-10},{"x":-7,"y":-48},{"x":24,"y":-32},{"x":160,"y":-93},{"x":149,"y":-32},{"x":149,"y":58},{"x":135,"y":1},{"x":350,"y":-121},{"x":90,"y":-90},{"x":117,"y":47},{"x":116,"y":308},{"x":193,"y":64},{"x":243,"y":162},{"x":209,"y":469},{"x":100,"y":11},{"x":46,"y":144},{"x":77,"y":63},{"x":8,"y":110},{"x":59,"y":112},{"x":138,"y":29},{"x":60,"y":46},{"x":138,"y":221},{"x":23,"y":107},{"x":142,"y":111},{"x":76,"y":170},{"x":56,"y":31},{"x":75,"y":-37},{"x":113,"y":324},{"x":128,"y":186},{"x":48,"y":-1},{"x":43,"y":51},{"x":101,"y":5},{"x":196,"y":-46},{"x":118,"y":13},{"x":42,"y":73},{"x":197,"y":127},{"x":53,"y":74},{"x":139,"y":70},{"x":149,"y":230},{"x":159,"y":155},{"x":182,"y":138},{"x":172,"y":48},{"x":303,"y":218},{"x":254,"y":356},{"x":6,"y":89},{"x":123,"y":64},{"x":45,"y":92},{"x":211,"y":172},{"x":177,"y":100},{"x":94,"y":1},{"x":235,"y":71},{"x":78,"y":-32},{"x":96,"y":136},{"x":78,"y":32},{"x":187,"y":191},{"x":299,"y":155},{"x":229,"y":78},{"x":162,"y":220},{"x":160,"y":153},{"x":57,"y":184},{"x":-21,"y":50},{"x":54,"y":57}],"type":"coastline"},{"arc":[{"x":195605,"y":187928},{"x":-46,"y":-15},{"x":30,"y":-14},{"x":16,"y":29}],"type":"coastline"},{"arc":[{"x":204174,"y":201795},{"x":-32,"y":17},{"x":-2,"y":211},{"x":33,"y":14},{"x":-82,"y":363},{"x":24,"y":64},{"x":-64,"y":21},{"x":-33,"y":122},{"x":-89,"y":140},{"x":-178,"y":138},{"x":-232,"y":-10},{"x":-57,"y":-36},{"x":-70,"y":-91},{"x":-127,"y":-319},{"x":-114,"y":-55},{"x":-206,"y":19},{"x":-11,"y":94},{"x":-62,"y":17},{"x":-20,"y":92},{"x":-87,"y":42},{"x":-63,"y":103},{"x":-71,"y":22},{"x":-60,"y":-6},{"x":-36,"y":-54},{"x":-48,"y":9},{"x":-58,"y":-68},{"x":-54,"y":-2},{"x":-2,"y":-38},{"x":-91,"y":-30},{"x":-26,"y":-71},{"x":-49,"y":-10},{"x":-43,"y":52},{"x":-85,"y":-53},{"x":11,"y":-257},{"x":-140,"y":-252},{"x":139,"y":-255},{"x":-36,"y":-143},{"x":26,"y":-110},{"x":-22,"y":-205},{"x":29,"y":-26},{"x":-34,"y":-183},{"x":29,"y":-34},{"x":-56,"y":-31},{"x":46,"y":-90},{"x":-46,"y":-140},{"x":-37,"y":-4},{"x":-49,"y":-108},{"x":-34,"y":-212},{"x":-56,"y":-126},{"x":-172,"y":-158},{"x":-7,"y":-89},{"x":-127,"y":-110},{"x":-11,"y":-100},{"x":-29,"y":-11},{"x":-28,"y":35},{"x":-4,"y":-68},{"x":-101,"y":16},{"x":-51,"y":-55},{"x":47,"y":-128},{"x":-113,"y":-157},{"x":36,"y":-171},{"x":-140,"y":-213},{"x":-71,"y":-35},{"x":29,"y":-98},{"x":-56,"y":-114},{"x":-54,"y":-414},{"x":-67,"y":-171},{"x":-128,"y":-186},{"x":-54,"y":15},{"x":-63,"y":-127},{"x":-41,"y":16},{"x":-5,"y":-52},{"x":38,"y":-26},{"x":-44,"y":-125},{"x":-140,"y":-199},{"x":-59,"y":-8},{"x":-47,"y":-113},{"x":-82,"y":-47},{"x":-23,"y":-202},{"x":-47,"y":-75},{"x":-39,"y":11},{"x":10,"y":-60},{"x":-118,"y":-152},{"x":-131,"y":-254},{"x":-180,"y":-189},{"x":-55,"y":-9},{"x":-15,"y":-58},{"x":-85,"y":-50},{"x":-39,"y":11},{"x":-17,"y":-51},{"x":-42,"y":-3},{"x":-18,"y":-111},{"x":-82,"y":-89},{"x":-81,"y":-23},{"x":-116,"y":-140},{"x":-60,"y":-13},{"x":-35,"y":-59},{"x":-204,"y":-120},{"x":-55,"y":-198},{"x":-43,"y":-81},{"x":-42,"y":-18},{"x":-12,"y":-88},{"x":-77,"y":-81},{"x":-88,"y":-30},{"x":-1,"y":-82},{"x":-52,"y":10},{"x":-40,"y":-53},{"x":-4,"y":-64},{"x":52,"y":1},{"x":25,"y":-48},{"x":-63,"y":-93},{"x":38,"y":-91},{"x":-7,"y":-126},{"x":-94,"y":-191},{"x":-74,"y":-324},{"x":163,"y":-305},{"x":114,"y":-123},{"x":246,"y":-28},{"x":42,"y":-147},{"x":-19,"y":-172},{"x":-79,"y":-200},{"x":-136,"y":-181},{"x":-246,"y":-173},{"x":-180,"y":-18},{"x":-102,"y":165},{"x":-19,"y":128},{"x":-47,"y":15},{"x":-61,"y":-97},{"x":-235,"y":-188},{"x":-85,"y":-25},{"x":-141,"y":-109},{"x":-111,"y":-10},{"x":-352,"y":-362},{"x":-6,"y":-197},{"x":-100,"y":-189},{"x":-48,"y":-40},{"x":-118,"y":-7},{"x":-58,"y":-66},{"x":-15,"y":-191},{"x":-37,"y":-90},{"x":-30,"y":-1},{"x":-2,"y":-85},{"x":-79,"y":-50},{"x":4,"y":-95},{"x":-160,"y":-186},{"x":11,"y":-40},{"x":-62,"y":-94},{"x":-54,"y":-44},{"x":-35,"y":18},{"x":-31,"y":-66},{"x":-66,"y":2},{"x":18,"y":-34},{"x":-35,"y":-118},{"x":-43,"y":-26},{"x":-15,"y":35},{"x":-22,"y":-25},{"x":36,"y":-37},{"x":-21,"y":-60},{"x":-79,"y":-61},{"x":-62,"y":4},{"x":-11,"y":-56},{"x":-65,"y":-45},{"x":-52,"y":8},{"x":-39,"y":-70},{"x":-90,"y":-8},{"x":-126,"y":-177},{"x":-199,"y":-133},{"x":-237,"y":-51},{"x":-80,"y":-73},{"x":-39,"y":22},{"x":-11,"y":-92},{"x":-44,"y":-8},{"x":-16,"y":-55},{"x":-96,"y":-68},{"x":-51,"y":-94},{"x":-84,"y":-42},{"x":40,"y":-43},{"x":-8,"y":-80},{"x":-115,"y":-271},{"x":-5,"y":-86},{"x":89,"y":-292},{"x":-124,"y":-266},{"x":-106,"y":-118},{"x":-44,"y":7},{"x":-82,"y":-143},{"x":-220,"y":-181},{"x":-473,"y":-241},{"x":-66,"y":22},{"x":-237,"y":-282},{"x":-20,"y":-69},{"x":49,"y":-117},{"x":-2,"y":-201},{"x":95,"y":-259},{"x":115,"y":-107},{"x":444,"y":133},{"x":104,"y":77},{"x":107,"y":93},{"x":13,"y":129},{"x":52,"y":105},{"x":215,"y":199},{"x":59,"y":13},{"x":229,"y":-172},{"x":97,"y":-10},{"x":46,"y":38},{"x":106,"y":-18},{"x":238,"y":116},{"x":-48,"y":38},{"x":-85,"y":-14},{"x":-70,"y":43},{"x":-133,"y":11},{"x":-163,"y":139},{"x":-33,"y":134},{"x":210,"y":253},{"x":179,"y":64},{"x":91,"y":-23},{"x":115,"y":23},{"x":122,"y":-204},{"x":43,"y":-28},{"x":36,"y":20},{"x":28,"y":168},{"x":-43,"y":79},{"x":18,"y":69},{"x":-52,"y":8},{"x":11,"y":97},{"x":-69,"y":-12},{"x":-27,"y":96},{"x":-75,"y":20},{"x":12,"y":179},{"x":131,"y":260},{"x":284,"y":264},{"x":56,"y":119},{"x":85,"y":56},{"x":373,"y":107},{"x":113,"y":2},{"x":119,"y":-40},{"x":45,"y":-45},{"x":-24,"y":-121},{"x":27,"y":-87},{"x":33,"y":-15},{"x":10,"y":-272},{"x":58,"y":-3},{"x":30,"y":-96},{"x":197,"y":-93},{"x":145,"y":-10},{"x":62,"y":58},{"x":71,"y":198},{"x":-58,"y":100},{"x":9,"y":71},{"x":-57,"y":31},{"x":-5,"y":100},{"x":-199,"y":174},{"x":4,"y":105},{"x":85,"y":247},{"x":35,"y":53},{"x":219,"y":58},{"x":147,"y":84},{"x":184,"y":16},{"x":95,"y":146},{"x":-8,"y":79},{"x":62,"y":23},{"x":-27,"y":54},{"x":87,"y":166},{"x":-12,"y":59},{"x":207,"y":381},{"x":261,"y":292},{"x":112,"y":76},{"x":138,"y":159},{"x":74,"y":36},{"x":106,"y":145},{"x":-12,"y":52},{"x":38,"y":-2},{"x":36,"y":77},{"x":-6,"y":141},{"x":23,"y":-8},{"x":9,"y":36},{"x":31,"y":-33},{"x":-8,"y":59},{"x":36,"y":35},{"x":20,"y":-30},{"x":16,"y":18},{"x":44,"y":-22},{"x":21,"y":53},{"x":31,"y":-53},{"x":69,"y":14},{"x":56,"y":-34},{"x":17,"y":46},{"x":59,"y":-5},{"x":24,"y":61},{"x":63,"y":-29},{"x":38,"y":29},{"x":177,"y":3},{"x":51,"y":80},{"x":31,"y":-39},{"x":137,"y":22},{"x":94,"y":-45},{"x":100,"y":-244},{"x":34,"y":6},{"x":15,"y":77},{"x":30,"y":-11},{"x":-69,"y":121},{"x":4,"y":78},{"x":-48,"y":50},{"x":41,"y":145},{"x":-37,"y":18},{"x":6,"y":60},{"x":-51,"y":63},{"x":-60,"y":-34},{"x":-102,"y":122},{"x":-26,"y":296},{"x":-60,"y":69},{"x":31,"y":153},{"x":144,"y":291},{"x":95,"y":74},{"x":63,"y":-28},{"x":29,"y":30},{"x":41,"y":-19},{"x":53,"y":28},{"x":92,"y":-55},{"x":83,"y":8},{"x":27,"y":58},{"x":66,"y":38},{"x":25,"y":-15},{"x":72,"y":33},{"x":54,"y":-17},{"x":79,"y":178},{"x":169,"y":52},{"x":35,"y":116},{"x":-22,"y":131},{"x":83,"y":63},{"x":28,"y":-9},{"x":18,"y":214},{"x":82,"y":158},{"x":-1,"y":52},{"x":-96,"y":116},{"x":40,"y":91},{"x":117,"y":120},{"x":49,"y":26},{"x":54,"y":-36},{"x":117,"y":92},{"x":87,"y":15},{"x":80,"y":-120},{"x":105,"y":31},{"x":71,"y":-26},{"x":137,"y":39},{"x":95,"y":-89},{"x":43,"y":17},{"x":63,"y":-45},{"x":102,"y":13},{"x":156,"y":-51},{"x":78,"y":26},{"x":113,"y":-52},{"x":285,"y":180},{"x":48,"y":-3},{"x":275,"y":252},{"x":78,"y":168},{"x":-138,"y":188},{"x":-31,"y":121},{"x":-43,"y":-24},{"x":-140,"y":15},{"x":-22,"y":28},{"x":-45,"y":-8},{"x":-52,"y":73},{"x":-50,"y":-50},{"x":-216,"y":72},{"x":-146,"y":89},{"x":-18,"y":63},{"x":-75,"y":55},{"x":-48,"y":-76},{"x":-184,"y":88},{"x":-92,"y":-19},{"x":-100,"y":36},{"x":-9,"y":71},{"x":-60,"y":26},{"x":-38,"y":-32},{"x":19,"y":71},{"x":-79,"y":11},{"x":-54,"y":70},{"x":-75,"y":263},{"x":-28,"y":433},{"x":100,"y":901},{"x":183,"y":714},{"x":45,"y":83},{"x":64,"y":-5},{"x":41,"y":73},{"x":57,"y":7},{"x":113,"y":243},{"x":5,"y":77},{"x":97,"y":115},{"x":-33,"y":80},{"x":85,"y":-13},{"x":91,"y":62},{"x":-9,"y":40},{"x":72,"y":112},{"x":67,"y":34},{"x":5,"y":92},{"x":82,"y":-51},{"x":76,"y":54},{"x":-16,"y":71},{"x":81,"y":72},{"x":52,"y":8},{"x":104,"y":-73},{"x":91,"y":81},{"x":105,"y":44},{"x":15,"y":85},{"x":85,"y":109},{"x":153,"y":73},{"x":20,"y":128},{"x":32,"y":15},{"x":-14,"y":50},{"x":64,"y":31},{"x":-1,"y":60},{"x":80,"y":12},{"x":45,"y":68},{"x":132,"y":38},{"x":-4,"y":30},{"x":48,"y":20},{"x":16,"y":221},{"x":66,"y":63},{"x":19,"y":103},{"x":82,"y":89},{"x":88,"y":18},{"x":50,"y":-19},{"x":144,"y":118},{"x":-17,"y":144},{"x":56,"y":346},{"x":69,"y":218},{"x":66,"y":62}],"type":"coastline"},{"arc":[{"x":70274,"y":53146},{"x":-9,"y":2},{"x":1,"y":-18},{"x":8,"y":16}],"type":"coastline"},{"arc":[{"x":68937,"y":53199},{"x":-4,"y":1},{"x":4,"y":-7},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":22700,"y":38369},{"x":-19,"y":26},{"x":-34,"y":-19}],"type":"coastline"}]},"tsunamiForecastArea":{"scale":{"x":0.00023045807587220745,"y":0.00027279911030113243},"translate":{"x":24.049663724611374,"y":122.93374861200891},"polygons":[{"arcs":[[0]],"areaCode":120},{"arcs":[[1]],"areaCode":390},{"arcs":[[2]],"areaCode":600},{"arcs":[[3]],"areaCode":600},{"arcs":[[4]],"areaCode":600},{"arcs":[[5]],"areaCode":600},{"arcs":[[6]],"areaCode":600},{"arcs":[[7]],"areaCode":600},{"arcs":[[8]],"areaCode":600},{"arcs":[[9]],"areaCode":601},{"arcs":[[10]],"areaCode":601},{"arcs":[[11]],"areaCode":601},{"arcs":[[12]],"areaCode":601},{"arcs":[[13]],"areaCode":601},{"arcs":[[14]],"areaCode":601},{"arcs":[[15]],"areaCode":601},{"arcs":[[16]],"areaCode":601},{"arcs":[[17]],"areaCode":601},{"arcs":[[18]],"areaCode":601},{"arcs":[[19]],"areaCode":601},{"arcs":[[20]],"areaCode":601},{"arcs":[[21]],"areaCode":601},{"arcs":[[22]],"areaCode":601},{"arcs":[[23]],"areaCode":601},{"arcs":[[24]],"areaCode":601},{"arcs":[[25]],"areaCode":601},{"arcs":[[26]],"areaCode":601},{"arcs":[[27]],"areaCode":601},{"arcs":[[28]],"areaCode":601},{"arcs":[[29]],"areaCode":601},{"arcs":[[30]],"areaCode":601},{"arcs":[[31]],"areaCode":601},{"arcs":[[32]],"areaCode":601},{"arcs":[[33]],"areaCode":601},{"arcs":[[34]],"areaCode":601},{"arcs":[[35]],"areaCode":601},{"arcs":[[36]],"areaCode":601},{"arcs":[[37]],"areaCode":391},{"arcs":[[38]],"areaCode":391},{"arcs":[[39]],"areaCode":391},{"arcs":[[40]],"areaCode":391},{"arcs":[[41]],"areaCode":391},{"arcs":[[42]],"areaCode":391},{"arcs":[[43]],"areaCode":391},{"arcs":[[44]],"areaCode":391},{"arcs":[[45]],"areaCode":391},{"arcs":[[46]],"areaCode":391},{"arcs":[[47]],"areaCode":391},{"arcs":[[48]],"areaCode":391},{"arcs":[[49]],"areaCode":320},{"arcs":[[50]],"areaCode":320},{"arcs":[[51]],"areaCode":320},{"arcs":[[52]],"areaCode":320},{"arcs":[[53]],"areaCode":320},{"arcs":[[54]],"areaCode":320},{"arcs":[[55]],"areaCode":320},{"arcs":[[56]],"areaCode":320},{"arcs":[[57]],"areaCode":320},{"arcs":[[58]],"areaCode":320},{"arcs":[[59]],"areaCode":320},{"arcs":[[60]],"areaCode":731},{"arcs":[[61]],"areaCode":731},{"arcs":[[62]],"areaCode":731},{"arcs":[[63]],"areaCode":731},{"arcs":[[64]],"areaCode":731},{"arcs":[[65]],"areaCode":731},{"arcs":[[66]],"areaCode":731},{"arcs":[[67]],"areaCode":731},{"arcs":[[68]],"areaCode":731},{"arcs":[[69]],"areaCode":731},{"arcs":[[70]],"areaCode":300},{"arcs":[[71]],"areaCode":551},{"arcs":[[72]],"areaCode":551},{"arcs":[[73]],"areaCode":551},{"arcs":[[74]],"areaCode":551},{"arcs":[[75]],"areaCode":551},{"arcs":[[76]],"areaCode":772},{"arcs":[[77]],"areaCode":772},{"arcs":[[78]],"areaCode":772},{"arcs":[[79]],"areaCode":772},{"arcs":[[80]],"areaCode":772},{"arcs":[[81]],"areaCode":772},{"arcs":[[82]],"areaCode":772},{"arcs":[[83]],"areaCode":772},{"arcs":[[84]],"areaCode":772},{"arcs":[[85]],"areaCode":772},{"arcs":[[86]],"areaCode":772},{"arcs":[[87]],"areaCode":772},{"arcs":[[88]],"areaCode":772},{"arcs":[[89]],"areaCode":772},{"arcs":[[90]],"areaCode":772},{"arcs":[[91]],"areaCode":772},{"arcs":[[92]],"areaCode":772},{"arcs":[[93]],"areaCode":560},{"arcs":[[94]],"areaCode":560},{"arcs":[[95]],"areaCode":560},{"arcs":[[96]],"areaCode":560},{"arcs":[[97]],"areaCode":560},{"arcs":[[98]],"areaCode":560},{"arcs":[[99]],"areaCode":560},{"arcs":[[100]],"areaCode":560},{"arcs":[[101]],"areaCode":560},{"arcs":[[102]],"areaCode":560},{"arcs":[[103]],"areaCode":560},{"arcs":[[104]],"areaCode":560},{"arcs":[[105]],"areaCode":560},{"arcs":[[106]],"areaCode":560},{"arcs":[[107]],"areaCode":560},{"arcs":[[108]],"areaCode":560},{"arcs":[[109]],"areaCode":800},{"arcs":[[110]],"areaCode":800},{"arcs":[[111]],"areaCode":800},{"arcs":[[112]],"areaCode":800},{"arcs":[[113]],"areaCode":800},{"arcs":[[114]],"areaCode":800},{"arcs":[[115]],"areaCode":800},{"arcs":[[116]],"areaCode":800},{"arcs":[[117]],"areaCode":800},{"arcs":[[118]],"areaCode":800},{"arcs":[[119]],"areaCode":800},{"arcs":[[120]],"areaCode":800},{"arcs":[[121]],"areaCode":800},{"arcs":[[122]],"areaCode":800},{"arcs":[[123]],"areaCode":800},{"arcs":[[124]],"areaCode":800},{"arcs":[[125]],"areaCode":800},{"arcs":[[126]],"areaCode":800},{"arcs":[[127]],"areaCode":800},{"arcs":[[128]],"areaCode":800},{"arcs":[[129]],"areaCode":800},{"arcs":[[130]],"areaCode":800},{"arcs":[[131]],"areaCode":800},{"arcs":[[132]],"areaCode":800},{"arcs":[[133]],"areaCode":800},{"arcs":[[134]],"areaCode":800},{"arcs":[[135]],"areaCode":800},{"arcs":[[136]],"areaCode":210},{"arcs":[[137]],"areaCode":802},{"arcs":[[138]],"areaCode":802},{"arcs":[[139]],"areaCode":802},{"arcs":[[140]],"areaCode":802},{"arcs":[[141]],"areaCode":802},{"arcs":[[142]],"areaCode":802},{"arcs":[[143]],"areaCode":802},{"arcs":[[144]],"areaCode":802},{"arcs":[[145]],"areaCode":802},{"arcs":[[146]],"areaCode":802},{"arcs":[[147]],"areaCode":802},{"arcs":[[148]],"areaCode":802},{"arcs":[[149]],"areaCode":802},{"arcs":[[150]],"areaCode":802},{"arcs":[[151]],"areaCode":802},{"arcs":[[152]],"areaCode":802},{"arcs":[[153]],"areaCode":802},{"arcs":[[154]],"areaCode":802},{"arcs":[[155]],"areaCode":760},{"arcs":[[156]],"areaCode":760},{"arcs":[[157]],"areaCode":760},{"arcs":[[158]],"areaCode":220},{"arcs":[[159]],"areaCode":220},{"arcs":[[160]],"areaCode":220},{"arcs":[[161]],"areaCode":220},{"arcs":[[162]],"areaCode":220},{"arcs":[[163]],"areaCode":220},{"arcs":[[164]],"areaCode":220},{"arcs":[[165]],"areaCode":220},{"arcs":[[166]],"areaCode":220},{"arcs":[[167]],"areaCode":220},{"arcs":[[168]],"areaCode":740},{"arcs":[[169]],"areaCode":740},{"arcs":[[170]],"areaCode":740},{"arcs":[[171]],"areaCode":740},{"arcs":[[172]],"areaCode":570},{"arcs":[[173]],"areaCode":570},{"arcs":[[174]],"areaCode":570},{"arcs":[[175]],"areaCode":570},{"arcs":[[176]],"areaCode":570},{"arcs":[[177]],"areaCode":570},{"arcs":[[178]],"areaCode":570},{"arcs":[[179]],"areaCode":570},{"arcs":[[180]],"areaCode":570},{"arcs":[[181]],"areaCode":570},{"arcs":[[182]],"areaCode":570},{"arcs":[[183]],"areaCode":570},{"arcs":[[184]],"areaCode":570},{"arcs":[[185]],"areaCode":570},{"arcs":[[186]],"areaCode":570},{"arcs":[[187]],"areaCode":570},{"arcs":[[188]],"areaCode":570},{"arcs":[[189]],"areaCode":570},{"arcs":[[190]],"areaCode":570},{"arcs":[[191]],"areaCode":570},{"arcs":[[192]],"areaCode":570},{"arcs":[[193]],"areaCode":570},{"arcs":[[194]],"areaCode":570},{"arcs":[[195]],"areaCode":570},{"arcs":[[196]],"areaCode":570},{"arcs":[[197]],"areaCode":570},{"arcs":[[198]],"areaCode":570},{"arcs":[[199]],"areaCode":570},{"arcs":[[200]],"areaCode":570},{"arcs":[[201]],"areaCode":570},{"arcs":[[202]],"areaCode":570},{"arcs":[[203]],"areaCode":570},{"arcs":[[204]],"areaCode":570},{"arcs":[[205]],"areaCode":590},{"arcs":[[206]],"areaCode":590},{"arcs":[[207]],"areaCode":590},{"arcs":[[208]],"areaCode":590},{"arcs":[[209]],"areaCode":590},{"arcs":[[210]],"areaCode":590},{"arcs":[[211]],"areaCode":590},{"arcs":[[212]],"areaCode":590},{"arcs":[[213]],"areaCode":590},{"arcs":[[214]],"areaCode":590},{"arcs":[[215]],"areaCode":590},{"arcs":[[216]],"areaCode":590},{"arcs":[[217]],"areaCode":590},{"arcs":[[218]],"areaCode":590},{"arcs":[[219]],"areaCode":590},{"arcs":[[220]],"areaCode":590},{"arcs":[[221]],"areaCode":590},{"arcs":[[222]],"areaCode":590},{"arcs":[[223]],"areaCode":590},{"arcs":[[224]],"areaCode":720},{"arcs":[[225]],"areaCode":720},{"arcs":[[226]],"areaCode":720},{"arcs":[[227]],"areaCode":720},{"arcs":[[228]],"areaCode":720},{"arcs":[[229]],"areaCode":720},{"arcs":[[230]],"areaCode":341},{"arcs":[[231]],"areaCode":400},{"arcs":[[232]],"areaCode":400},{"arcs":[[233]],"areaCode":400},{"arcs":[[234]],"areaCode":400},{"arcs":[[235]],"areaCode":400},{"arcs":[[236]],"areaCode":400},{"arcs":[[237]],"areaCode":240},{"arcs":[[238]],"areaCode":240},{"arcs":[[239]],"areaCode":240},{"arcs":[[240]],"areaCode":701},{"arcs":[[241]],"areaCode":701},{"arcs":[[242]],"areaCode":701},{"arcs":[[243]],"areaCode":701},{"arcs":[[244]],"areaCode":701},{"arcs":[[245]],"areaCode":701},{"arcs":[[246]],"areaCode":701},{"arcs":[[247]],"areaCode":701},{"arcs":[[248]],"areaCode":701},{"arcs":[[249]],"areaCode":701},{"arcs":[[250]],"areaCode":701},{"arcs":[[251]],"areaCode":701},{"arcs":[[252]],"areaCode":701},{"arcs":[[253]],"areaCode":701},{"arcs":[[254]],"areaCode":701},{"arcs":[[255]],"areaCode":701},{"arcs":[[256]],"areaCode":701},{"arcs":[[257]],"areaCode":701},{"arcs":[[258]],"areaCode":701},{"arcs":[[259]],"areaCode":700},{"arcs":[[260]],"areaCode":700},{"arcs":[[261]],"areaCode":700},{"arcs":[[262]],"areaCode":700},{"arcs":[[263]],"areaCode":700},{"arcs":[[264]],"areaCode":700},{"arcs":[[265]],"areaCode":700},{"arcs":[[266]],"areaCode":700},{"arcs":[[267]],"areaCode":700},{"arcs":[[268]],"areaCode":773},{"arcs":[[269]],"areaCode":773},{"arcs":[[270]],"areaCode":773},{"arcs":[[271]],"areaCode":773},{"arcs":[[272]],"areaCode":773},{"arcs":[[273]],"areaCode":773},{"arcs":[[274]],"areaCode":773},{"arcs":[[275]],"areaCode":773},{"arcs":[[276]],"areaCode":773},{"arcs":[[277]],"areaCode":773},{"arcs":[[278]],"areaCode":770},{"arcs":[[279]],"areaCode":770},{"arcs":[[280]],"areaCode":771},{"arcs":[[281]],"areaCode":771},{"arcs":[[282]],"areaCode":771},{"arcs":[[283]],"areaCode":771},{"arcs":[[284]],"areaCode":771},{"arcs":[[285]],"areaCode":771},{"arcs":[[286]],"areaCode":771},{"arcs":[[287]],"areaCode":230},{"arcs":[[288]],"areaCode":230},{"arcs":[[289]],"areaCode":321},{"arcs":[[290]],"areaCode":321},{"arcs":[[291]],"areaCode":321},{"arcs":[[292]],"areaCode":321},{"arcs":[[293]],"areaCode":321},{"arcs":[[294]],"areaCode":321},{"arcs":[[295]],"areaCode":321},{"arcs":[[296]],"areaCode":321},{"arcs":[[297]],"areaCode":321},{"arcs":[[298]],"areaCode":321},{"arcs":[[299]],"areaCode":321},{"arcs":[[300]],"areaCode":321},{"arcs":[[301]],"areaCode":321},{"arcs":[[302]],"areaCode":321},{"arcs":[[303]],"areaCode":340},{"arcs":[[304]],"areaCode":340},{"arcs":[[305]],"areaCode":340},{"arcs":[[306]],"areaCode":201},{"arcs":[[307]],"areaCode":201},{"arcs":[[308]],"areaCode":200},{"arcs":[[309]],"areaCode":200},{"arcs":[[310]],"areaCode":380},{"arcs":[[311]],"areaCode":380},{"arcs":[[312]],"areaCode":361},{"arcs":[[313]],"areaCode":360},{"arcs":[[314]],"areaCode":360},{"arcs":[[315]],"areaCode":360},{"arcs":[[316]],"areaCode":310},{"arcs":[[317]],"areaCode":311},{"arcs":[[318]],"areaCode":330},{"arcs":[[319]],"areaCode":510},{"arcs":[[320]],"areaCode":510},{"arcs":[[321]],"areaCode":510},{"arcs":[[322]],"areaCode":510},{"arcs":[[323]],"areaCode":510},{"arcs":[[324]],"areaCode":510},{"arcs":[[325]],"areaCode":510},{"arcs":[[326]],"areaCode":510},{"arcs":[[327]],"areaCode":510},{"arcs":[[328]],"areaCode":510},{"arcs":[[329]],"areaCode":801},{"arcs":[[330]],"areaCode":801},{"arcs":[[331]],"areaCode":801},{"arcs":[[332]],"areaCode":750},{"arcs":[[333]],"areaCode":750},{"arcs":[[334]],"areaCode":751},{"arcs":[[335]],"areaCode":751},{"arcs":[[336]],"areaCode":751},{"arcs":[[337]],"areaCode":751},{"arcs":[[338]],"areaCode":751},{"arcs":[[339]],"areaCode":522},{"arcs":[[340]],"areaCode":522},{"arcs":[[341]],"areaCode":730},{"arcs":[[342]],"areaCode":730},{"arcs":[[343]],"areaCode":730},{"arcs":[[344]],"areaCode":730},{"arcs":[[345]],"areaCode":730},{"arcs":[[346]],"areaCode":730},{"arcs":[[347]],"areaCode":730},{"arcs":[[348]],"areaCode":730},{"arcs":[[349]],"areaCode":730},{"arcs":[[350]],"areaCode":730},{"arcs":[[351]],"areaCode":730},{"arcs":[[352]],"areaCode":730},{"arcs":[[353]],"areaCode":730},{"arcs":[[354]],"areaCode":730},{"arcs":[[355]],"areaCode":730},{"arcs":[[356]],"areaCode":730},{"arcs":[[357]],"areaCode":730},{"arcs":[[358]],"areaCode":730},{"arcs":[[359]],"areaCode":730},{"arcs":[[360]],"areaCode":730},{"arcs":[[361]],"areaCode":730},{"arcs":[[362]],"areaCode":730},{"arcs":[[363]],"areaCode":730},{"arcs":[[364]],"areaCode":730},{"arcs":[[365]],"areaCode":730},{"arcs":[[366]],"areaCode":730},{"arcs":[[367]],"areaCode":730},{"arcs":[[368]],"areaCode":730},{"arcs":[[369]],"areaCode":730},{"arcs":[[370]],"areaCode":730},{"arcs":[[371]],"areaCode":730},{"arcs":[[372]],"areaCode":730},{"arcs":[[373]],"areaCode":730},{"arcs":[[374]],"areaCode":730},{"arcs":[[375]],"areaCode":730},{"arcs":[[376]],"areaCode":730},{"arcs":[[377]],"areaCode":730},{"arcs":[[378]],"areaCode":730},{"arcs":[[379]],"areaCode":730},{"arcs":[[380]],"areaCode":730},{"arcs":[[381]],"areaCode":730},{"arcs":[[382]],"areaCode":730},{"arcs":[[383]],"areaCode":730},{"arcs":[[384]],"areaCode":730},{"arcs":[[385]],"areaCode":730},{"arcs":[[386]],"areaCode":730},{"arcs":[[387]],"areaCode":730},{"arcs":[[388]],"areaCode":730},{"arcs":[[389]],"areaCode":730},{"arcs":[[390]],"areaCode":730},{"arcs":[[391]],"areaCode":540},{"arcs":[[392]],"areaCode":540},{"arcs":[[393]],"areaCode":550},{"arcs":[[394]],"areaCode":312},{"arcs":[[395]],"areaCode":312},{"arcs":[[396]],"areaCode":312},{"arcs":[[397]],"areaCode":312},{"arcs":[[398]],"areaCode":312},{"arcs":[[399]],"areaCode":312},{"arcs":[[400]],"areaCode":312},{"arcs":[[401]],"areaCode":312},{"arcs":[[402]],"areaCode":312},{"arcs":[[403]],"areaCode":312},{"arcs":[[404]],"areaCode":312},{"arcs":[[405]],"areaCode":312},{"arcs":[[406]],"areaCode":312},{"arcs":[[407]],"areaCode":312},{"arcs":[[408]],"areaCode":312},{"arcs":[[409]],"areaCode":580},{"arcs":[[410]],"areaCode":580},{"arcs":[[411]],"areaCode":580},{"arcs":[[412]],"areaCode":580},{"arcs":[[413]],"areaCode":580},{"arcs":[[414]],"areaCode":580},{"arcs":[[415]],"areaCode":580},{"arcs":[[416]],"areaCode":580},{"arcs":[[417]],"areaCode":350},{"arcs":[[418]],"areaCode":370},{"arcs":[[419]],"areaCode":370},{"arcs":[[420]],"areaCode":710},{"arcs":[[421]],"areaCode":710},{"arcs":[[422]],"areaCode":711},{"arcs":[[423]],"areaCode":711},{"arcs":[[424]],"areaCode":711},{"arcs":[[425]],"areaCode":711},{"arcs":[[426]],"areaCode":711},{"arcs":[[427]],"areaCode":711},{"arcs":[[428]],"areaCode":711},{"arcs":[[429]],"areaCode":711},{"arcs":[[430]],"areaCode":711},{"arcs":[[431]],"areaCode":250},{"arcs":[[432]],"areaCode":521},{"arcs":[[433]],"areaCode":521},{"arcs":[[434]],"areaCode":521},{"arcs":[[435]],"areaCode":521},{"arcs":[[436]],"areaCode":521},{"arcs":[[437]],"areaCode":521},{"arcs":[[438]],"areaCode":521},{"arcs":[[439]],"areaCode":521},{"arcs":[[440]],"areaCode":521},{"arcs":[[441]],"areaCode":521},{"arcs":[[442]],"areaCode":521},{"arcs":[[443]],"areaCode":521},{"arcs":[[444]],"areaCode":521},{"arcs":[[445]],"areaCode":521},{"arcs":[[446]],"areaCode":521},{"arcs":[[447]],"areaCode":521},{"arcs":[[448]],"areaCode":520},{"arcs":[[449]],"areaCode":520},{"arcs":[[450]],"areaCode":102},{"arcs":[[451]],"areaCode":101},{"arcs":[[452]],"areaCode":111},{"arcs":[[453]],"areaCode":111},{"arcs":[[454]],"areaCode":111},{"arcs":[[455]],"areaCode":111},{"arcs":[[456]],"areaCode":110},{"arcs":[[457]],"areaCode":110},{"arcs":[[458]],"areaCode":110},{"arcs":[[459]],"areaCode":110},{"arcs":[[460]],"areaCode":110},{"arcs":[[461]],"areaCode":202},{"arcs":[[462]],"areaCode":530},{"arcs":[[463]],"areaCode":530},{"arcs":[[464]],"areaCode":530},{"arcs":[[465]],"areaCode":0},{"arcs":[[466]],"areaCode":100},{"arcs":[[467]],"areaCode":100},{"arcs":[[468]],"areaCode":100},{"arcs":[[469]],"areaCode":100},{"arcs":[[470]],"areaCode":100},{"arcs":[[471]],"areaCode":100},{"arcs":[[472]],"areaCode":100},{"arcs":[[473]],"areaCode":100},{"arcs":[[474]],"areaCode":100},{"arcs":[[475]],"areaCode":100},{"arcs":[[476]],"areaCode":100},{"arcs":[[477]],"areaCode":100},{"arcs":[[478]],"areaCode":100},{"arcs":[[479]],"areaCode":100},{"arcs":[[480]],"areaCode":100},{"arcs":[[481]],"areaCode":100},{"arcs":[[482]],"areaCode":500},{"arcs":[[483]],"areaCode":500},{"arcs":[[484]],"areaCode":610},{"arcs":[[485]],"areaCode":610},{"arcs":[[486]],"areaCode":610},{"arcs":[[487]],"areaCode":610},{"arcs":[[488]],"areaCode":610},{"arcs":[[489]],"areaCode":610},{"arcs":[[490]],"areaCode":712},{"arcs":[[491]],"areaCode":712},{"arcs":[[492]],"areaCode":712},{"arcs":[[493]],"areaCode":712},{"arcs":[[494]],"areaCode":712},{"arcs":[[495]],"areaCode":712},{"arcs":[[496]],"areaCode":712},{"arcs":[[497]],"areaCode":712},{"arcs":[[498]],"areaCode":712},{"arcs":[[499]],"areaCode":712},{"arcs":[[500]],"areaCode":712},{"arcs":[[501]],"areaCode":712},{"arcs":[[502]],"areaCode":712},{"arcs":[[503]],"areaCode":712}],"arcs":[{"arc":[{"x":93177,"y":69659},{"x":-55,"y":91},{"x":-152,"y":59},{"x":-94,"y":150},{"x":-208,"y":100},{"x":-271,"y":461},{"x":-446,"y":355},{"x":-520,"y":507},{"x":-257,"y":277},{"x":-6,"y":81},{"x":-36,"y":-22},{"x":-51,"y":35},{"x":-50,"y":96},{"x":-162,"y":22},{"x":-129,"y":164},{"x":-57,"y":-21},{"x":-41,"y":46},{"x":-52,"y":-14},{"x":16,"y":28},{"x":-39,"y":-33},{"x":-146,"y":169},{"x":-197,"y":92},{"x":-43,"y":85},{"x":-153,"y":76},{"x":-295,"y":278},{"x":-436,"y":550},{"x":-298,"y":230},{"x":-133,"y":203},{"x":10,"y":64},{"x":-53,"y":0},{"x":-53,"y":71},{"x":-286,"y":516},{"x":-85,"y":38},{"x":-223,"y":422},{"x":-61,"y":57},{"x":-19,"y":-27},{"x":-60,"y":27},{"x":-4,"y":60},{"x":-27,"y":-24},{"x":-41,"y":52},{"x":-265,"y":540},{"x":-319,"y":912},{"x":-32,"y":-2},{"x":-145,"y":545},{"x":-96,"y":501},{"x":22,"y":115},{"x":-47,"y":41},{"x":-64,"y":282},{"x":43,"y":202},{"x":-113,"y":48},{"x":-112,"y":-18},{"x":-21,"y":36},{"x":-80,"y":-25},{"x":-63,"y":67},{"x":4,"y":66},{"x":-5,"y":-49},{"x":-21,"y":52},{"x":-34,"y":-36},{"x":-123,"y":60},{"x":-92,"y":170},{"x":-181,"y":825},{"x":15,"y":361},{"x":-34,"y":-30},{"x":69,"y":495},{"x":89,"y":145},{"x":95,"y":51},{"x":134,"y":227},{"x":167,"y":91},{"x":-15,"y":36},{"x":122,"y":114},{"x":21,"y":76},{"x":120,"y":66},{"x":413,"y":648},{"x":248,"y":139},{"x":163,"y":187},{"x":84,"y":37},{"x":12,"y":56},{"x":123,"y":53},{"x":3,"y":62}],"type":"coastline"},{"arc":[{"x":46101,"y":53340},{"x":-149,"y":-647},{"x":-215,"y":-606},{"x":-48,"y":-463}],"type":"coastline"},{"arc":[{"x":38513,"y":35637},{"x":-55,"y":-208},{"x":112,"y":-47},{"x":40,"y":60},{"x":-39,"y":-90},{"x":36,"y":-17},{"x":-8,"y":-91},{"x":-69,"y":70},{"x":91,"y":-201},{"x":-38,"y":-28},{"x":-37,"y":81},{"x":-62,"y":-110},{"x":-16,"y":110},{"x":-74,"y":-132},{"x":36,"y":-69},{"x":68,"y":20},{"x":71,"y":-63},{"x":7,"y":116},{"x":70,"y":39},{"x":59,"y":-121},{"x":79,"y":101},{"x":-65,"y":27},{"x":-35,"y":-44},{"x":-19,"y":225},{"x":63,"y":-60},{"x":8,"y":-97},{"x":73,"y":-39},{"x":49,"y":20},{"x":59,"y":-40},{"x":-32,"y":-38},{"x":157,"y":0},{"x":-34,"y":-52},{"x":45,"y":-1},{"x":-6,"y":-74},{"x":-57,"y":8},{"x":69,"y":-49},{"x":-24,"y":-32},{"x":47,"y":-72},{"x":-129,"y":2},{"x":0,"y":-41},{"x":-58,"y":-15},{"x":35,"y":-63},{"x":80,"y":89},{"x":128,"y":3},{"x":-9,"y":79},{"x":-62,"y":29},{"x":56,"y":52},{"x":-46,"y":6},{"x":42,"y":109},{"x":-36,"y":20},{"x":119,"y":-20},{"x":-61,"y":-23},{"x":26,"y":-40},{"x":24,"y":33},{"x":51,"y":-28},{"x":18,"y":68},{"x":8,"y":-39},{"x":81,"y":-14},{"x":27,"y":-75},{"x":11,"y":83},{"x":-52,"y":5},{"x":65,"y":118},{"x":53,"y":-90},{"x":-30,"y":-10},{"x":33,"y":-81},{"x":-47,"y":-5},{"x":27,"y":-41},{"x":46,"y":8},{"x":32,"y":-67},{"x":-9,"y":32},{"x":68,"y":-7},{"x":11,"y":121},{"x":90,"y":-62},{"x":-33,"y":-34},{"x":102,"y":-60},{"x":-15,"y":-68},{"x":-39,"y":56},{"x":-50,"y":-71},{"x":87,"y":-23},{"x":44,"y":100},{"x":-62,"y":97},{"x":42,"y":46},{"x":-113,"y":-4},{"x":-35,"y":47},{"x":41,"y":44},{"x":-68,"y":-22},{"x":-24,"y":35},{"x":32,"y":39},{"x":55,"y":-17},{"x":-20,"y":44},{"x":-42,"y":-14},{"x":8,"y":54},{"x":94,"y":-25},{"x":-7,"y":-54},{"x":33,"y":-18},{"x":-25,"y":49},{"x":45,"y":-9},{"x":52,"y":57},{"x":-11,"y":104},{"x":57,"y":-16},{"x":-29,"y":66},{"x":69,"y":-18},{"x":54,"y":-119},{"x":43,"y":76},{"x":57,"y":5},{"x":-54,"y":-121},{"x":68,"y":-96},{"x":-89,"y":-56},{"x":152,"y":53},{"x":72,"y":95},{"x":-6,"y":62},{"x":48,"y":-8},{"x":-17,"y":-91},{"x":59,"y":-23},{"x":-41,"y":-6},{"x":15,"y":-80},{"x":-45,"y":-52},{"x":48,"y":-84},{"x":-72,"y":-37},{"x":68,"y":-99},{"x":0,"y":-88},{"x":81,"y":26},{"x":23,"y":124},{"x":44,"y":-8},{"x":10,"y":41},{"x":20,"y":-51},{"x":99,"y":48},{"x":-91,"y":-128},{"x":103,"y":-21},{"x":59,"y":67},{"x":60,"y":-10},{"x":13,"y":-55},{"x":59,"y":64},{"x":-22,"y":34},{"x":79,"y":38},{"x":-2,"y":-125},{"x":18,"y":96},{"x":73,"y":46},{"x":-37,"y":-107},{"x":52,"y":-9},{"x":19,"y":47},{"x":25,"y":-43},{"x":-72,"y":-63},{"x":123,"y":-72},{"x":-16,"y":-43},{"x":-47,"y":44},{"x":-5,"y":-108},{"x":-93,"y":-27},{"x":100,"y":-62},{"x":-120,"y":-71},{"x":-152,"y":-361},{"x":-94,"y":-103},{"x":-76,"y":-3},{"x":-48,"y":-182},{"x":115,"y":63},{"x":-3,"y":-96},{"x":-190,"y":-295}],"type":"coastline"},{"arc":[{"x":38629,"y":34903},{"x":-40,"y":1},{"x":-13,"y":-73},{"x":53,"y":72}],"type":"coastline"},{"arc":[{"x":39548,"y":34367},{"x":-69,"y":5},{"x":54,"y":-86},{"x":15,"y":81}],"type":"coastline"},{"arc":[{"x":39638,"y":34200},{"x":-48,"y":10},{"x":28,"y":104},{"x":-36,"y":6},{"x":-38,"y":-23},{"x":24,"y":-88},{"x":70,"y":-9}],"type":"coastline"},{"arc":[{"x":39799,"y":34609},{"x":-56,"y":28},{"x":-27,"y":-79},{"x":-64,"y":9},{"x":81,"y":-83},{"x":6,"y":90},{"x":60,"y":35}],"type":"coastline"},{"arc":[{"x":39884,"y":35132},{"x":-75,"y":59},{"x":-26,"y":-52},{"x":45,"y":-43},{"x":56,"y":36}],"type":"coastline"},{"arc":[{"x":40490,"y":34494},{"x":-18,"y":89},{"x":-35,"y":-36},{"x":53,"y":-53}],"type":"coastline"},{"arc":[{"x":40329,"y":33286},{"x":331,"y":390},{"x":-75,"y":53},{"x":80,"y":12},{"x":-61,"y":55},{"x":18,"y":46},{"x":35,"y":12},{"x":57,"y":-77},{"x":33,"y":32},{"x":-60,"y":62},{"x":86,"y":-3},{"x":-15,"y":85},{"x":58,"y":13},{"x":-50,"y":92},{"x":64,"y":4},{"x":28,"y":59},{"x":-67,"y":69},{"x":102,"y":-8},{"x":-3,"y":69},{"x":325,"y":532},{"x":308,"y":209},{"x":150,"y":389},{"x":191,"y":248},{"x":206,"y":87},{"x":50,"y":81},{"x":129,"y":-26},{"x":6,"y":37},{"x":3,"y":-45},{"x":87,"y":-24},{"x":12,"y":47},{"x":100,"y":-32},{"x":59,"y":18},{"x":-39,"y":31},{"x":102,"y":-4},{"x":-43,"y":22},{"x":63,"y":3},{"x":-9,"y":46},{"x":56,"y":-75},{"x":38,"y":6},{"x":89,"y":35},{"x":-33,"y":78},{"x":52,"y":89},{"x":221,"y":60},{"x":124,"y":11},{"x":33,"y":-33},{"x":52,"y":128},{"x":211,"y":236},{"x":30,"y":210},{"x":191,"y":17},{"x":-4,"y":-104},{"x":40,"y":-26},{"x":-7,"y":123},{"x":113,"y":62},{"x":-155,"y":100},{"x":38,"y":34},{"x":-217,"y":104},{"x":37,"y":-3},{"x":-106,"y":70},{"x":30,"y":27},{"x":-354,"y":111},{"x":-129,"y":94},{"x":16,"y":47},{"x":-38,"y":-28},{"x":3,"y":94},{"x":-72,"y":-1},{"x":73,"y":25},{"x":-62,"y":28},{"x":60,"y":122},{"x":-58,"y":17},{"x":61,"y":-2},{"x":34,"y":55},{"x":-60,"y":58},{"x":46,"y":-9},{"x":42,"y":202},{"x":108,"y":5},{"x":-86,"y":29},{"x":57,"y":57},{"x":28,"y":-50},{"x":36,"y":49},{"x":-29,"y":85},{"x":53,"y":70},{"x":-6,"y":47},{"x":-48,"y":-22},{"x":-7,"y":31},{"x":53,"y":-1},{"x":-59,"y":82},{"x":51,"y":193},{"x":-90,"y":371},{"x":60,"y":97},{"x":49,"y":-2},{"x":-40,"y":21},{"x":40,"y":31},{"x":37,"y":-41},{"x":-11,"y":52},{"x":41,"y":-24},{"x":-7,"y":45},{"x":75,"y":30},{"x":-39,"y":10},{"x":115,"y":97}],"type":"coastline"},{"arc":[{"x":42043,"y":35011},{"x":-11,"y":28},{"x":-14,"y":-66},{"x":25,"y":38}],"type":"coastline"},{"arc":[{"x":42537,"y":35192},{"x":-36,"y":-9},{"x":36,"y":-58},{"x":0,"y":67}],"type":"coastline"},{"arc":[{"x":42857,"y":35768},{"x":-1,"y":42},{"x":-96,"y":-35},{"x":-42,"y":-77},{"x":-80,"y":65},{"x":-24,"y":-79},{"x":121,"y":-2},{"x":8,"y":-54},{"x":114,"y":140}],"type":"coastline"},{"arc":[{"x":42908,"y":35249},{"x":-49,"y":-52},{"x":24,"y":-73},{"x":25,"y":125}],"type":"coastline"},{"arc":[{"x":43063,"y":35660},{"x":-7,"y":41},{"x":-89,"y":6},{"x":24,"y":-92},{"x":72,"y":45}],"type":"coastline"},{"arc":[{"x":43078,"y":35762},{"x":-50,"y":30},{"x":-4,"y":-42},{"x":54,"y":12}],"type":"coastline"},{"arc":[{"x":43135,"y":35113},{"x":-17,"y":39},{"x":-94,"y":-111},{"x":71,"y":10},{"x":40,"y":62}],"type":"coastline"},{"arc":[{"x":43151,"y":35293},{"x":-143,"y":-77},{"x":120,"y":-21},{"x":23,"y":98}],"type":"coastline"},{"arc":[{"x":43210,"y":38246},{"x":-66,"y":3},{"x":17,"y":-64},{"x":49,"y":61}],"type":"coastline"},{"arc":[{"x":43256,"y":35601},{"x":-161,"y":-2},{"x":-29,"y":-56},{"x":-77,"y":44},{"x":1,"y":-102},{"x":-61,"y":-53},{"x":111,"y":-79},{"x":216,"y":248}],"type":"coastline"},{"arc":[{"x":43662,"y":37564},{"x":-21,"y":38},{"x":-16,"y":-33},{"x":37,"y":-5}],"type":"coastline"},{"arc":[{"x":43865,"y":36892},{"x":-46,"y":42},{"x":14,"y":-71},{"x":32,"y":29}],"type":"coastline"},{"arc":[{"x":43974,"y":38034},{"x":-45,"y":69},{"x":-13,"y":-46},{"x":58,"y":-23}],"type":"coastline"},{"arc":[{"x":44022,"y":37224},{"x":-30,"y":19},{"x":-27,"y":-36},{"x":57,"y":17}],"type":"coastline"},{"arc":[{"x":44024,"y":37036},{"x":-16,"y":115},{"x":-97,"y":54},{"x":40,"y":111},{"x":-308,"y":-287},{"x":8,"y":-75},{"x":70,"y":31},{"x":72,"y":-29},{"x":70,"y":41},{"x":-36,"y":53},{"x":127,"y":-75},{"x":70,"y":61}],"type":"coastline"},{"arc":[{"x":44033,"y":36435},{"x":-56,"y":77},{"x":-43,"y":-51},{"x":81,"y":-69},{"x":18,"y":43}],"type":"coastline"},{"arc":[{"x":44044,"y":37898},{"x":-66,"y":16},{"x":-10,"y":-31},{"x":76,"y":15}],"type":"coastline"},{"arc":[{"x":44053,"y":36621},{"x":-83,"y":34},{"x":17,"y":-55},{"x":66,"y":21}],"type":"coastline"},{"arc":[{"x":44225,"y":37295},{"x":-89,"y":-1},{"x":-1,"y":121},{"x":-44,"y":-9},{"x":-22,"y":-76},{"x":-45,"y":33},{"x":-19,"y":-61},{"x":59,"y":-47},{"x":-52,"y":-57},{"x":72,"y":-43},{"x":-2,"y":-51},{"x":44,"y":42},{"x":71,"y":-11},{"x":-24,"y":56},{"x":52,"y":104}],"type":"coastline"},{"arc":[{"x":44246,"y":37500},{"x":-54,"y":13},{"x":-5,"y":-55},{"x":59,"y":42}],"type":"coastline"},{"arc":[{"x":44259,"y":36716},{"x":-28,"y":28},{"x":-5,"y":-47},{"x":33,"y":19}],"type":"coastline"},{"arc":[{"x":44293,"y":37608},{"x":-102,"y":-5},{"x":-31,"y":-42},{"x":133,"y":47}],"type":"coastline"},{"arc":[{"x":44393,"y":37459},{"x":-106,"y":51},{"x":-65,"y":-123},{"x":105,"y":-1},{"x":66,"y":73}],"type":"coastline"},{"arc":[{"x":44414,"y":37086},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":44416,"y":37530},{"x":-118,"y":52},{"x":-2,"y":-52},{"x":120,"y":0}],"type":"coastline"},{"arc":[{"x":44443,"y":37739},{"x":-64,"y":29},{"x":-161,"y":-134},{"x":125,"y":-5},{"x":100,"y":110}],"type":"coastline"},{"arc":[{"x":44477,"y":36942},{"x":-28,"y":67},{"x":-138,"y":53},{"x":-15,"y":49},{"x":-165,"y":3},{"x":-118,"y":-403},{"x":49,"y":9},{"x":1,"y":-36},{"x":81,"y":48},{"x":9,"y":133},{"x":155,"y":3},{"x":14,"y":-98},{"x":25,"y":74},{"x":90,"y":-2},{"x":40,"y":100}],"type":"coastline"},{"arc":[{"x":45689,"y":51624},{"x":357,"y":189},{"x":-15,"y":85},{"x":-46,"y":-23},{"x":-20,"y":78},{"x":-43,"y":-14},{"x":7,"y":61},{"x":49,"y":79},{"x":40,"y":-51},{"x":0,"y":131},{"x":101,"y":163},{"x":-7,"y":66},{"x":53,"y":67},{"x":45,"y":-39},{"x":45,"y":47},{"x":-59,"y":55},{"x":55,"y":23},{"x":31,"y":-31},{"x":66,"y":97},{"x":-12,"y":59},{"x":-149,"y":0},{"x":0,"y":-39},{"x":-62,"y":-12},{"x":1,"y":74},{"x":72,"y":15},{"x":-9,"y":43},{"x":35,"y":7},{"x":-1,"y":-60},{"x":99,"y":-1},{"x":11,"y":72},{"x":-37,"y":18},{"x":37,"y":69},{"x":23,"y":-115},{"x":163,"y":1},{"x":44,"y":38},{"x":-7,"y":-82},{"x":61,"y":-19},{"x":21,"y":49},{"x":45,"y":-37},{"x":21,"y":-66},{"x":-35,"y":18},{"x":23,"y":-62},{"x":-37,"y":-13},{"x":93,"y":-209},{"x":-33,"y":27},{"x":2,"y":-33},{"x":-56,"y":-3},{"x":25,"y":-74},{"x":-142,"y":-14},{"x":-49,"y":-54},{"x":99,"y":-24},{"x":-25,"y":-141},{"x":41,"y":-85},{"x":-70,"y":-68},{"x":52,"y":-44},{"x":-41,"y":-186},{"x":154,"y":-88},{"x":87,"y":-164},{"x":65,"y":-9},{"x":17,"y":40},{"x":12,"y":-36},{"x":166,"y":104},{"x":276,"y":-10},{"x":-328,"y":-87},{"x":-20,"y":25},{"x":19,"y":-73},{"x":-28,"y":-36},{"x":-1,"y":43},{"x":-56,"y":-23},{"x":16,"y":-44},{"x":-152,"y":28},{"x":-10,"y":-49},{"x":-30,"y":59},{"x":-42,"y":-66},{"x":-165,"y":-21},{"x":-178,"y":191},{"x":-50,"y":-16},{"x":-82,"y":57},{"x":-30,"y":-20},{"x":36,"y":-156},{"x":154,"y":-259},{"x":120,"y":-69},{"x":317,"y":96},{"x":196,"y":-104},{"x":-54,"y":-28},{"x":62,"y":-35},{"x":326,"y":29},{"x":22,"y":-32},{"x":59,"y":68},{"x":60,"y":-48},{"x":-31,"y":45},{"x":69,"y":62},{"x":9,"y":-40},{"x":27,"y":21},{"x":-27,"y":65},{"x":34,"y":12},{"x":34,"y":-60},{"x":92,"y":55},{"x":3,"y":74},{"x":22,"y":-37},{"x":118,"y":22},{"x":8,"y":40},{"x":75,"y":-29},{"x":-24,"y":-72},{"x":-80,"y":-22},{"x":34,"y":-28},{"x":-91,"y":2},{"x":12,"y":-47},{"x":103,"y":17},{"x":-23,"y":-95},{"x":-63,"y":-8},{"x":3,"y":53},{"x":-59,"y":-13},{"x":5,"y":-122},{"x":-98,"y":13},{"x":20,"y":-72},{"x":-91,"y":59},{"x":37,"y":-122},{"x":67,"y":-52},{"x":-70,"y":-190},{"x":-57,"y":9},{"x":-36,"y":-159},{"x":-34,"y":-23},{"x":-63,"y":-16},{"x":-11,"y":18},{"x":-65,"y":-17},{"x":2,"y":-31},{"x":-24,"y":26},{"x":-22,"y":-41},{"x":-44,"y":27},{"x":35,"y":27},{"x":-43,"y":67},{"x":-12,"y":-78},{"x":-133,"y":6},{"x":-214,"y":-132},{"x":3,"y":27},{"x":-437,"y":-308},{"x":-286,"y":-46},{"x":-73,"y":131},{"x":-23,"y":-34},{"x":-193,"y":-13},{"x":-49,"y":-65},{"x":-15,"y":80},{"x":42,"y":46},{"x":-39,"y":13},{"x":-42,"y":240},{"x":-137,"y":110}],"type":"coastline"},{"arc":[{"x":46253,"y":51591},{"x":-28,"y":11},{"x":-5,"y":-53},{"x":33,"y":42}],"type":"coastline"},{"arc":[{"x":46354,"y":51713},{"x":-21,"y":48},{"x":-51,"y":-6},{"x":47,"y":-31},{"x":-13,"y":-47},{"x":38,"y":36}],"type":"coastline"},{"arc":[{"x":46424,"y":52731},{"x":-67,"y":0},{"x":9,"y":-39},{"x":58,"y":39}],"type":"coastline"},{"arc":[{"x":46691,"y":52657},{"x":-47,"y":47},{"x":-5,"y":-36},{"x":52,"y":-11}],"type":"coastline"},{"arc":[{"x":46985,"y":50851},{"x":-107,"y":67},{"x":-60,"y":-56},{"x":158,"y":-38},{"x":9,"y":27}],"type":"coastline"},{"arc":[{"x":47346,"y":50910},{"x":-48,"y":-6},{"x":21,"y":-34},{"x":27,"y":40}],"type":"coastline"},{"arc":[{"x":47507,"y":50364},{"x":-20,"y":-43},{"x":-28,"y":60},{"x":-61,"y":-44},{"x":19,"y":-57},{"x":68,"y":8},{"x":39,"y":84},{"x":-17,"y":-8}],"type":"coastline"},{"arc":[{"x":47550,"y":50909},{"x":-45,"y":-7},{"x":26,"y":-72},{"x":61,"y":79},{"x":-42,"y":0}],"type":"coastline"},{"arc":[{"x":47730,"y":50943},{"x":-83,"y":29},{"x":-16,"y":-103},{"x":95,"y":-11},{"x":4,"y":85}],"type":"coastline"},{"arc":[{"x":47759,"y":51008},{"x":-96,"y":-12},{"x":77,"y":-27},{"x":19,"y":39}],"type":"coastline"},{"arc":[{"x":47828,"y":51116},{"x":-80,"y":-6},{"x":-15,"y":-41},{"x":95,"y":47}],"type":"coastline"},{"arc":[{"x":27971,"y":63674},{"x":-61,"y":36},{"x":-38,"y":-57},{"x":51,"y":-44},{"x":48,"y":65}],"type":"coastline"},{"arc":[{"x":36552,"y":61674},{"x":-69,"y":84},{"x":-43,"y":-7},{"x":-3,"y":-79},{"x":115,"y":2}],"type":"coastline"},{"arc":[{"x":39430,"y":61408},{"x":-88,"y":52},{"x":63,"y":-91},{"x":25,"y":39}],"type":"coastline"},{"arc":[{"x":39527,"y":61680},{"x":-5,"y":52},{"x":-164,"y":158},{"x":-13,"y":108},{"x":-163,"y":43},{"x":-19,"y":-72},{"x":-129,"y":-23},{"x":104,"y":-177},{"x":137,"y":-18},{"x":18,"y":-94},{"x":177,"y":-56},{"x":57,"y":79}],"type":"coastline"},{"arc":[{"x":42747,"y":61107},{"x":-129,"y":104},{"x":-85,"y":-45},{"x":55,"y":-156},{"x":142,"y":36},{"x":17,"y":61}],"type":"coastline"},{"arc":[{"x":43717,"y":60846},{"x":-98,"y":122},{"x":-143,"y":-9},{"x":-98,"y":-122},{"x":22,"y":-176},{"x":109,"y":-34},{"x":115,"y":81},{"x":66,"y":-12},{"x":27,"y":150}],"type":"coastline"},{"arc":[{"x":44234,"y":59419},{"x":-42,"y":90},{"x":-115,"y":31},{"x":-101,"y":-172},{"x":42,"y":-35},{"x":35,"y":46},{"x":91,"y":-14},{"x":90,"y":54}],"type":"coastline"},{"arc":[{"x":44638,"y":59674},{"x":-58,"y":45},{"x":-31,"y":-106},{"x":89,"y":61}],"type":"coastline"},{"arc":[{"x":45048,"y":59918},{"x":-31,"y":43},{"x":-72,"y":2},{"x":-75,"y":-50},{"x":-258,"y":-26},{"x":76,"y":-96},{"x":97,"y":-18},{"x":25,"y":46},{"x":107,"y":11},{"x":75,"y":90},{"x":56,"y":-2}],"type":"coastline"},{"arc":[{"x":45491,"y":59923},{"x":-42,"y":45},{"x":-55,"y":-61},{"x":62,"y":-31},{"x":35,"y":47}],"type":"coastline"},{"arc":[{"x":46644,"y":60218},{"x":-53,"y":191},{"x":-73,"y":82},{"x":-129,"y":50},{"x":-190,"y":3},{"x":-52,"y":-20},{"x":13,"y":-30},{"x":-28,"y":23},{"x":3,"y":-152},{"x":84,"y":-158},{"x":278,"y":-35},{"x":147,"y":46}],"type":"coastline"},{"arc":[{"x":42007,"y":24542},{"x":-12,"y":30},{"x":-20,"y":-35},{"x":32,"y":5}],"type":"coastline"},{"arc":[{"x":42071,"y":24571},{"x":-35,"y":25},{"x":-24,"y":-48},{"x":59,"y":23}],"type":"coastline"},{"arc":[{"x":42584,"y":24819},{"x":-58,"y":77},{"x":-16,"y":159},{"x":-147,"y":-14},{"x":-26,"y":-60},{"x":-79,"y":187},{"x":-39,"y":-13},{"x":30,"y":-85},{"x":-46,"y":-55},{"x":-53,"y":149},{"x":-93,"y":-36},{"x":-12,"y":-199},{"x":-154,"y":-67},{"x":36,"y":-90},{"x":64,"y":15},{"x":3,"y":-69},{"x":62,"y":39},{"x":75,"y":-49},{"x":-91,"y":-76},{"x":58,"y":-26},{"x":47,"y":30},{"x":22,"y":-44},{"x":28,"y":33},{"x":-62,"y":127},{"x":79,"y":-30},{"x":-7,"y":-69},{"x":104,"y":-31},{"x":2,"y":60},{"x":27,"y":-64},{"x":29,"y":44},{"x":-72,"y":52},{"x":37,"y":48},{"x":61,"y":-59},{"x":80,"y":-5},{"x":84,"y":65},{"x":-13,"y":56},{"x":13,"y":-40},{"x":27,"y":40}],"type":"coastline"},{"arc":[{"x":44496,"y":23642},{"x":-33,"y":35},{"x":-111,"y":-123},{"x":102,"y":-28},{"x":36,"y":65},{"x":-51,"y":32},{"x":45,"y":-20},{"x":12,"y":39}],"type":"coastline"},{"arc":[{"x":44580,"y":23686},{"x":-30,"y":66},{"x":-21,"y":-67},{"x":40,"y":-28},{"x":11,"y":29}],"type":"coastline"},{"arc":[{"x":44615,"y":22990},{"x":-32,"y":82},{"x":-147,"y":-20},{"x":92,"y":123},{"x":-84,"y":3},{"x":60,"y":85},{"x":-119,"y":41},{"x":112,"y":-6},{"x":27,"y":-59},{"x":77,"y":-24},{"x":-64,"y":73},{"x":29,"y":29},{"x":-86,"y":7},{"x":34,"y":50},{"x":-51,"y":-38},{"x":-85,"y":19},{"x":53,"y":13},{"x":-58,"y":36},{"x":100,"y":-12},{"x":-3,"y":71},{"x":-39,"y":0},{"x":45,"y":18},{"x":-99,"y":52},{"x":-2,"y":-89},{"x":-65,"y":-47},{"x":-151,"y":35},{"x":-50,"y":-77},{"x":31,"y":-26},{"x":-119,"y":5},{"x":23,"y":-38},{"x":-55,"y":-23},{"x":-3,"y":54},{"x":-46,"y":-32},{"x":-62,"y":27},{"x":13,"y":-48},{"x":-86,"y":9},{"x":7,"y":-42},{"x":-68,"y":31},{"x":-19,"y":-103},{"x":-42,"y":30},{"x":-66,"y":-83},{"x":52,"y":-31},{"x":-81,"y":-6},{"x":7,"y":-37},{"x":-55,"y":-20},{"x":126,"y":2},{"x":-41,"y":-43},{"x":66,"y":-70},{"x":-64,"y":-63},{"x":988,"y":142}],"type":"coastline"},{"arc":[{"x":44639,"y":23328},{"x":-49,"y":74},{"x":46,"y":32},{"x":-139,"y":26},{"x":7,"y":-47},{"x":32,"y":33},{"x":-23,"y":-35},{"x":41,"y":24},{"x":-21,"y":-36},{"x":54,"y":-4},{"x":-7,"y":-93},{"x":59,"y":26}],"type":"coastline"},{"arc":[{"x":44738,"y":23692},{"x":-106,"y":34},{"x":21,"y":-63},{"x":85,"y":29}],"type":"coastline"},{"arc":[{"x":44753,"y":23749},{"x":-55,"y":-23},{"x":39,"y":-14},{"x":16,"y":37}],"type":"coastline"},{"arc":[{"x":46242,"y":23885},{"x":-61,"y":29},{"x":38,"y":23},{"x":-51,"y":29},{"x":22,"y":40},{"x":-34,"y":-41},{"x":-62,"y":12},{"x":48,"y":70},{"x":-69,"y":-35},{"x":6,"y":49},{"x":-72,"y":-62},{"x":8,"y":-56},{"x":-15,"y":49},{"x":-29,"y":-26},{"x":5,"y":71},{"x":-79,"y":-34},{"x":2,"y":-39},{"x":-44,"y":31},{"x":-15,"y":-70},{"x":78,"y":-51},{"x":-30,"y":-17},{"x":-53,"y":58},{"x":51,"y":-75},{"x":-31,"y":-15},{"x":-11,"y":59},{"x":-52,"y":16},{"x":24,"y":64},{"x":-65,"y":33},{"x":-24,"y":-32},{"x":-140,"y":8},{"x":-6,"y":-62},{"x":-46,"y":26},{"x":-56,"y":-68},{"x":-33,"y":22},{"x":-184,"y":-198},{"x":-101,"y":-40},{"x":-20,"y":-65},{"x":-109,"y":63},{"x":53,"y":-61},{"x":-87,"y":-15},{"x":27,"y":38},{"x":-62,"y":15},{"x":-112,"y":-102},{"x":42,"y":121},{"x":75,"y":53},{"x":-129,"y":-29},{"x":26,"y":-64},{"x":-72,"y":34},{"x":-9,"y":-28},{"x":-46,"y":66},{"x":-59,"y":-105},{"x":4,"y":86},{"x":-28,"y":-8},{"x":-25,"y":32},{"x":15,"y":-112},{"x":-111,"y":57},{"x":44,"y":-32},{"x":-18,"y":-38},{"x":-31,"y":40},{"x":-71,"y":-69},{"x":62,"y":15},{"x":-42,"y":-45},{"x":81,"y":-42},{"x":-1,"y":77},{"x":79,"y":-40},{"x":14,"y":64},{"x":7,"y":-49},{"x":24,"y":24},{"x":41,"y":-51},{"x":80,"y":57},{"x":-49,"y":-79},{"x":75,"y":15},{"x":-72,"y":-34},{"x":27,"y":-31},{"x":-86,"y":20},{"x":27,"y":-22},{"x":-87,"y":-40},{"x":45,"y":11},{"x":-27,"y":-34},{"x":37,"y":-10},{"x":45,"y":46},{"x":-23,"y":-26},{"x":67,"y":-25},{"x":69,"y":39},{"x":-5,"y":-50},{"x":-40,"y":-3},{"x":57,"y":-26},{"x":-23,"y":-23},{"x":-44,"y":42},{"x":-40,"y":-54},{"x":-40,"y":77},{"x":8,"y":-41},{"x":-76,"y":0},{"x":66,"y":-25},{"x":-47,"y":10},{"x":62,"y":-45},{"x":-32,"y":-101},{"x":52,"y":-61},{"x":30,"y":61},{"x":-63,"y":27},{"x":53,"y":7},{"x":26,"y":86},{"x":185,"y":-17},{"x":-2,"y":49},{"x":41,"y":-53},{"x":14,"y":37},{"x":57,"y":-25},{"x":-35,"y":75},{"x":89,"y":18},{"x":-15,"y":46},{"x":61,"y":-28},{"x":-68,"y":-83},{"x":89,"y":-29},{"x":75,"y":70},{"x":173,"y":49},{"x":-45,"y":32},{"x":92,"y":12},{"x":-39,"y":37},{"x":19,"y":60},{"x":5,"y":-60},{"x":75,"y":0},{"x":-6,"y":-52},{"x":81,"y":-28},{"x":-52,"y":-42},{"x":29,"y":-34},{"x":115,"y":74},{"x":252,"y":50},{"x":10,"y":52},{"x":-50,"y":5},{"x":52,"y":66},{"x":-49,"y":42},{"x":35,"y":35},{"x":-31,"y":82},{"x":43,"y":-48},{"x":12,"y":44},{"x":113,"y":47},{"x":-23,"y":97},{"x":26,"y":-63},{"x":56,"y":-9},{"x":4,"y":92},{"x":59,"y":34}],"type":"coastline"},{"arc":[{"x":55584,"y":65469},{"x":-124,"y":44},{"x":-36,"y":-120},{"x":-166,"y":-90},{"x":-395,"y":-116},{"x":-137,"y":0},{"x":-74,"y":-85},{"x":-103,"y":-15},{"x":-208,"y":-134},{"x":-338,"y":-90},{"x":-37,"y":-59},{"x":-13,"y":59},{"x":0,"y":-51},{"x":-137,"y":-22},{"x":-50,"y":3},{"x":5,"y":87},{"x":-58,"y":-91},{"x":-8,"y":57},{"x":-56,"y":-55},{"x":-36,"y":4},{"x":26,"y":34},{"x":-52,"y":-27},{"x":-96,"y":57},{"x":-171,"y":-86},{"x":2,"y":-36},{"x":-72,"y":0},{"x":-90,"y":-52},{"x":43,"y":18},{"x":-62,"y":-84},{"x":-103,"y":-13},{"x":-284,"y":29},{"x":-401,"y":105},{"x":-601,"y":267},{"x":-60,"y":122},{"x":8,"y":-59},{"x":-111,"y":69},{"x":-43,"y":-36},{"x":-42,"y":-62},{"x":32,"y":-90},{"x":-35,"y":64},{"x":-154,"y":78},{"x":127,"y":-51},{"x":63,"y":121},{"x":121,"y":9},{"x":-121,"y":-8},{"x":-12,"y":-14},{"x":-255,"y":134},{"x":-406,"y":262},{"x":-109,"y":103},{"x":53,"y":13},{"x":-61,"y":21}],"type":"coastline"},{"arc":[{"x":51998,"y":36914},{"x":-99,"y":254},{"x":-71,"y":-45},{"x":83,"y":-70},{"x":-53,"y":-12},{"x":5,"y":-106},{"x":135,"y":-21}],"type":"coastline"},{"arc":[{"x":52350,"y":37502},{"x":-63,"y":5},{"x":23,"y":-34},{"x":40,"y":29}],"type":"coastline"},{"arc":[{"x":52376,"y":37312},{"x":-79,"y":86},{"x":-89,"y":-62},{"x":21,"y":60},{"x":-51,"y":63},{"x":18,"y":-145},{"x":-63,"y":15},{"x":35,"y":-74},{"x":-35,"y":42},{"x":-31,"y":-45},{"x":-30,"y":29},{"x":12,"y":-60},{"x":-78,"y":-69},{"x":147,"y":41},{"x":31,"y":-46},{"x":19,"y":28},{"x":89,"y":-40},{"x":7,"y":63},{"x":52,"y":6},{"x":-78,"y":30},{"x":92,"y":9},{"x":11,"y":69}],"type":"coastline"},{"arc":[{"x":52474,"y":37154},{"x":-16,"y":87},{"x":-110,"y":-83},{"x":-17,"y":-107},{"x":-116,"y":58},{"x":-96,"y":-40},{"x":58,"y":-142},{"x":136,"y":-4},{"x":-55,"y":-4},{"x":-40,"y":-105},{"x":-198,"y":80},{"x":116,"y":-192},{"x":51,"y":29},{"x":14,"y":-30},{"x":55,"y":83},{"x":19,"y":-25},{"x":77,"y":59},{"x":-29,"y":105},{"x":129,"y":30},{"x":-48,"y":150},{"x":70,"y":51}],"type":"coastline"},{"arc":[{"x":53369,"y":37923},{"x":-93,"y":67},{"x":4,"y":46},{"x":-40,"y":-4},{"x":37,"y":45},{"x":-82,"y":13},{"x":9,"y":70},{"x":-19,"y":-25},{"x":-40,"y":28},{"x":0,"y":71},{"x":-26,"y":-29},{"x":-53,"y":24},{"x":-47,"y":85},{"x":-76,"y":-48},{"x":-196,"y":-10},{"x":-42,"y":-112},{"x":71,"y":46},{"x":54,"y":-25},{"x":-103,"y":-33},{"x":-9,"y":-109},{"x":-8,"y":108},{"x":-115,"y":23},{"x":40,"y":-188},{"x":-39,"y":-12},{"x":75,"y":-28},{"x":-80,"y":-7},{"x":-28,"y":-65},{"x":42,"y":-8},{"x":-60,"y":-31},{"x":71,"y":-1},{"x":-41,"y":-23},{"x":15,"y":-47},{"x":90,"y":53},{"x":-8,"y":-76},{"x":92,"y":-58},{"x":11,"y":-95},{"x":143,"y":38},{"x":24,"y":-56},{"x":104,"y":38},{"x":59,"y":-31},{"x":-37,"y":92},{"x":34,"y":-18},{"x":10,"y":60},{"x":3,"y":-90},{"x":120,"y":150},{"x":46,"y":-28},{"x":-4,"y":142},{"x":92,"y":58}],"type":"coastline"},{"arc":[{"x":13098,"y":20155},{"x":-72,"y":79},{"x":-132,"y":4},{"x":69,"y":-207},{"x":60,"y":-3},{"x":-10,"y":59},{"x":85,"y":68}],"type":"coastline"},{"arc":[{"x":14715,"y":21115},{"x":-31,"y":73},{"x":-88,"y":-139},{"x":-207,"y":-144},{"x":-125,"y":-162},{"x":-30,"y":-137},{"x":130,"y":-115},{"x":196,"y":33},{"x":-35,"y":230},{"x":190,"y":361}],"type":"coastline"},{"arc":[{"x":16680,"y":21895},{"x":-8,"y":241},{"x":-87,"y":12},{"x":-43,"y":-73},{"x":-29,"y":58},{"x":-163,"y":-11},{"x":-212,"y":254},{"x":-97,"y":-20},{"x":-23,"y":-44},{"x":-105,"y":3},{"x":-33,"y":-56},{"x":-176,"y":-84},{"x":-12,"y":-210},{"x":131,"y":-33},{"x":114,"y":-132},{"x":59,"y":70},{"x":108,"y":27},{"x":114,"y":-66},{"x":139,"y":9},{"x":38,"y":-47},{"x":131,"y":53},{"x":106,"y":-13},{"x":48,"y":62}],"type":"coastline"},{"arc":[{"x":17380,"y":23021},{"x":-103,"y":73},{"x":30,"y":114},{"x":-97,"y":16},{"x":-47,"y":-43},{"x":83,"y":-91},{"x":-17,"y":-68},{"x":70,"y":-34},{"x":81,"y":33}],"type":"coastline"},{"arc":[{"x":17440,"y":22869},{"x":-88,"y":24},{"x":-10,"y":-47},{"x":-108,"y":-2},{"x":-33,"y":-65},{"x":156,"y":1},{"x":83,"y":89}],"type":"coastline"},{"arc":[{"x":18014,"y":23005},{"x":-37,"y":8},{"x":25,"y":74},{"x":-45,"y":40},{"x":-29,"y":-145},{"x":-30,"y":45},{"x":-46,"y":-12},{"x":14,"y":42},{"x":-37,"y":-11},{"x":-34,"y":75},{"x":36,"y":53},{"x":65,"y":1},{"x":-71,"y":14},{"x":56,"y":10},{"x":-12,"y":28},{"x":-72,"y":18},{"x":-10,"y":-110},{"x":-19,"y":61},{"x":-30,"y":-71},{"x":-67,"y":11},{"x":87,"y":109},{"x":-109,"y":-54},{"x":37,"y":39},{"x":-54,"y":15},{"x":56,"y":46},{"x":-80,"y":28},{"x":63,"y":28},{"x":-92,"y":67},{"x":56,"y":15},{"x":20,"y":65},{"x":-59,"y":43},{"x":-121,"y":-50},{"x":-65,"y":-83},{"x":127,"y":26},{"x":26,"y":-27},{"x":-47,"y":-52},{"x":20,"y":-44},{"x":-114,"y":-12},{"x":5,"y":-52},{"x":197,"y":-86},{"x":-149,"y":-131},{"x":39,"y":-20},{"x":57,"y":54},{"x":123,"y":-46},{"x":54,"y":29},{"x":22,"y":-91},{"x":186,"y":-71},{"x":58,"y":124}],"type":"coastline"},{"arc":[{"x":18468,"y":22913},{"x":-32,"y":103},{"x":-63,"y":34},{"x":10,"y":-119},{"x":49,"y":-40},{"x":36,"y":22}],"type":"coastline"},{"arc":[{"x":18784,"y":25973},{"x":-87,"y":55},{"x":-90,"y":-60},{"x":1,"y":-60},{"x":-28,"y":24},{"x":-188,"y":-109},{"x":-60,"y":-123},{"x":77,"y":-53},{"x":-7,"y":-39},{"x":92,"y":-24},{"x":49,"y":33},{"x":18,"y":112},{"x":223,"y":244}],"type":"coastline"},{"arc":[{"x":19441,"y":24767},{"x":-172,"y":13},{"x":-69,"y":93},{"x":-227,"y":-32},{"x":32,"y":-7},{"x":-70,"y":-51},{"x":-15,"y":-87},{"x":-54,"y":-23},{"x":43,"y":-126},{"x":-29,"y":-64},{"x":-286,"y":-175},{"x":-32,"y":-115},{"x":-83,"y":27},{"x":-84,"y":-202},{"x":35,"y":-93},{"x":-136,"y":-4},{"x":-85,"y":-58},{"x":19,"y":-131},{"x":-108,"y":150},{"x":28,"y":29},{"x":-89,"y":75},{"x":1,"y":-61},{"x":-72,"y":-35},{"x":-12,"y":-171},{"x":-167,"y":-12},{"x":71,"y":-231},{"x":-84,"y":99},{"x":-182,"y":49},{"x":12,"y":-44},{"x":105,"y":-29},{"x":-29,"y":-93},{"x":83,"y":-137},{"x":55,"y":4},{"x":21,"y":-47},{"x":24,"y":49},{"x":47,"y":-19},{"x":-18,"y":-35},{"x":46,"y":28},{"x":38,"y":-25},{"x":-67,"y":-31},{"x":5,"y":-43},{"x":104,"y":35},{"x":69,"y":78},{"x":-34,"y":-116},{"x":71,"y":54},{"x":-31,"y":-52},{"x":39,"y":-32},{"x":-85,"y":-22},{"x":-35,"y":35},{"x":-9,"y":-39},{"x":110,"y":-105},{"x":-43,"y":-20},{"x":20,"y":-130},{"x":82,"y":-27},{"x":-27,"y":-67},{"x":76,"y":-66},{"x":6,"y":113},{"x":68,"y":59},{"x":-79,"y":115},{"x":77,"y":5},{"x":14,"y":49},{"x":-34,"y":67},{"x":-55,"y":5},{"x":53,"y":32},{"x":-18,"y":69},{"x":66,"y":16},{"x":-15,"y":62},{"x":49,"y":-6},{"x":17,"y":-103},{"x":-62,"y":-4},{"x":0,"y":-56},{"x":142,"y":-141},{"x":115,"y":380},{"x":67,"y":-18},{"x":6,"y":62},{"x":80,"y":46},{"x":-60,"y":101},{"x":82,"y":82},{"x":-78,"y":41},{"x":39,"y":41},{"x":93,"y":-60},{"x":-25,"y":189},{"x":146,"y":62},{"x":-59,"y":58},{"x":55,"y":39},{"x":-132,"y":35},{"x":73,"y":31},{"x":7,"y":55},{"x":44,"y":-44},{"x":129,"y":26},{"x":94,"y":96},{"x":-62,"y":56},{"x":81,"y":63},{"x":49,"y":167},{"x":-280,"y":-120},{"x":7,"y":46},{"x":72,"y":4},{"x":2,"y":54},{"x":81,"y":10},{"x":-66,"y":35},{"x":-77,"y":-36},{"x":-8,"y":69},{"x":77,"y":26},{"x":-50,"y":27},{"x":198,"y":-21},{"x":-126,"y":66},{"x":98,"y":30},{"x":172,"y":-103},{"x":-3,"y":49},{"x":115,"y":62},{"x":13,"y":51}],"type":"coastline"},{"arc":[{"x":20644,"y":22216},{"x":-32,"y":34},{"x":-37,"y":-29},{"x":45,"y":-85},{"x":24,"y":80}],"type":"coastline"},{"arc":[{"x":22171,"y":22975},{"x":-14,"y":76},{"x":-127,"y":-6},{"x":112,"y":-123},{"x":29,"y":53}],"type":"coastline"},{"arc":[{"x":23551,"y":24419},{"x":-25,"y":55},{"x":-105,"y":28},{"x":-4,"y":-89},{"x":72,"y":-35},{"x":62,"y":41}],"type":"coastline"},{"arc":[{"x":24396,"y":24950},{"x":-190,"y":-21},{"x":-108,"y":-135},{"x":219,"y":-48},{"x":79,"y":204}],"type":"coastline"},{"arc":[{"x":24504,"y":24196},{"x":-89,"y":7},{"x":42,"y":-41},{"x":47,"y":34}],"type":"coastline"},{"arc":[{"x":25315,"y":25359},{"x":-61,"y":151},{"x":-111,"y":9},{"x":-105,"y":82},{"x":11,"y":-211},{"x":163,"y":-95},{"x":103,"y":64}],"type":"coastline"},{"arc":[{"x":25457,"y":24205},{"x":-98,"y":58},{"x":12,"y":-79},{"x":86,"y":21}],"type":"coastline"},{"arc":[{"x":25852,"y":25597},{"x":-175,"y":104},{"x":-68,"y":-8},{"x":57,"y":-140},{"x":52,"y":-19},{"x":134,"y":63}],"type":"coastline"},{"arc":[{"x":44520,"y":38873},{"x":-49,"y":-16},{"x":19,"y":-29},{"x":30,"y":45}],"type":"coastline"},{"arc":[{"x":44755,"y":39052},{"x":-56,"y":-23},{"x":1,"y":-50},{"x":55,"y":73}],"type":"coastline"},{"arc":[{"x":44921,"y":38889},{"x":-26,"y":55},{"x":-69,"y":-47},{"x":-15,"y":56},{"x":-42,"y":-5},{"x":67,"y":-153},{"x":85,"y":94}],"type":"coastline"},{"arc":[{"x":44992,"y":40273},{"x":2,"y":19}],"type":"coastline"},{"arc":[{"x":44983,"y":38824},{"x":-75,"y":3},{"x":-39,"y":-51},{"x":73,"y":-25},{"x":41,"y":73}],"type":"coastline"},{"arc":[{"x":45048,"y":39690},{"x":-42,"y":58},{"x":-8,"y":-48},{"x":50,"y":-10}],"type":"coastline"},{"arc":[{"x":45065,"y":38777},{"x":-28,"y":15},{"x":-21,"y":-60},{"x":49,"y":45}],"type":"coastline"},{"arc":[{"x":45337,"y":40593},{"x":36,"y":60}],"type":"coastline"},{"arc":[{"x":45364,"y":39409},{"x":-59,"y":-3},{"x":1,"y":-54},{"x":-15,"y":45},{"x":1,"y":-45},{"x":63,"y":1},{"x":9,"y":56}],"type":"coastline"},{"arc":[{"x":45854,"y":41295},{"x":-50,"y":-29},{"x":-7,"y":-98},{"x":57,"y":127}],"type":"coastline"},{"arc":[{"x":46120,"y":41453},{"x":-46,"y":-63},{"x":29,"y":-24},{"x":17,"y":87}],"type":"coastline"},{"arc":[{"x":46159,"y":41507},{"x":-30,"y":61},{"x":-1,"y":-113},{"x":31,"y":52}],"type":"coastline"},{"arc":[{"x":46244,"y":41515},{"x":-47,"y":46},{"x":-26,"y":-60},{"x":67,"y":-18},{"x":6,"y":32}],"type":"coastline"},{"arc":[{"x":46309,"y":41745},{"x":63,"y":-87},{"x":-92,"y":-199},{"x":19,"y":-68},{"x":51,"y":14},{"x":-4,"y":-92},{"x":55,"y":-66},{"x":-44,"y":-24},{"x":-27,"y":94},{"x":-43,"y":-38},{"x":-3,"y":72},{"x":-36,"y":-62},{"x":30,"y":140},{"x":-72,"y":34},{"x":-57,"y":-114},{"x":-18,"y":35},{"x":-68,"y":-114},{"x":-58,"y":-4},{"x":4,"y":-75},{"x":-93,"y":12},{"x":0,"y":49},{"x":-78,"y":-63},{"x":16,"y":-87},{"x":-124,"y":-97},{"x":-17,"y":-219},{"x":50,"y":-25},{"x":54,"y":36},{"x":-49,"y":-56},{"x":48,"y":-21},{"x":23,"y":-169},{"x":-58,"y":-53},{"x":-5,"y":-130},{"x":-67,"y":49},{"x":47,"y":53},{"x":19,"y":201},{"x":-97,"y":68},{"x":-27,"y":-59},{"x":-85,"y":1},{"x":-23,"y":-111},{"x":-147,"y":8},{"x":93,"y":-88},{"x":-45,"y":-73},{"x":-120,"y":20},{"x":-71,"y":-108},{"x":-62,"y":30},{"x":-58,"y":-32},{"x":23,"y":-194},{"x":85,"y":-191},{"x":-79,"y":-82},{"x":-121,"y":55},{"x":25,"y":-132},{"x":160,"y":-73},{"x":-17,"y":-31},{"x":246,"y":-69},{"x":-115,"y":-16},{"x":23,"y":-59},{"x":-58,"y":67},{"x":-87,"y":23},{"x":4,"y":-69},{"x":-12,"y":33},{"x":40,"y":-108},{"x":196,"y":4},{"x":11,"y":-64},{"x":-11,"y":-33},{"x":-15,"y":44},{"x":-64,"y":-2},{"x":69,"y":-113},{"x":-73,"y":-39},{"x":-58,"y":-203},{"x":-35,"y":-17},{"x":-42,"y":46},{"x":-50,"y":-223},{"x":228,"y":-200},{"x":-197,"y":154},{"x":-75,"y":-14},{"x":3,"y":-84},{"x":-47,"y":-44},{"x":7,"y":-58},{"x":69,"y":62},{"x":32,"y":-22},{"x":-49,"y":-102},{"x":111,"y":-35}],"type":"coastline"},{"arc":[{"x":46326,"y":41346},{"x":-20,"y":24},{"x":-7,"y":-37},{"x":27,"y":13}],"type":"coastline"},{"arc":[{"x":46345,"y":41659},{"x":-70,"y":90},{"x":36,"y":45},{"x":-62,"y":43},{"x":18,"y":-76},{"x":-41,"y":-34},{"x":54,"y":-40},{"x":-39,"y":-59},{"x":31,"y":-55},{"x":73,"y":86}],"type":"coastline"},{"arc":[{"x":9163,"y":17304},{"x":-3,"y":23},{"x":-30,"y":26},{"x":-4,"y":-65},{"x":27,"y":-2},{"x":10,"y":18}],"type":"coastline"},{"arc":[{"x":9256,"y":15774},{"x":-89,"y":18},{"x":5,"y":-36},{"x":84,"y":18}],"type":"coastline"},{"arc":[{"x":9277,"y":15965},{"x":-46,"y":27},{"x":-2,"y":-38},{"x":48,"y":11}],"type":"coastline"},{"arc":[{"x":9381,"y":15935},{"x":-76,"y":46},{"x":-32,"y":-65},{"x":51,"y":-40},{"x":57,"y":59}],"type":"coastline"},{"arc":[{"x":9446,"y":16215},{"x":-29,"y":48},{"x":-129,"y":10},{"x":-40,"y":-53},{"x":-103,"y":21},{"x":-50,"y":-61},{"x":161,"y":-32},{"x":190,"y":67}],"type":"coastline"},{"arc":[{"x":9431,"y":15820},{"x":-65,"y":-26},{"x":54,"y":-10},{"x":11,"y":36}],"type":"coastline"},{"arc":[{"x":9601,"y":18368},{"x":-75,"y":2},{"x":-8,"y":-41},{"x":83,"y":39}],"type":"coastline"},{"arc":[{"x":9556,"y":16042},{"x":-49,"y":82},{"x":-53,"y":3},{"x":51,"y":-54},{"x":-94,"y":-38},{"x":44,"y":-96},{"x":101,"y":103}],"type":"coastline"},{"arc":[{"x":9865,"y":18295},{"x":-46,"y":20},{"x":39,"y":-47},{"x":7,"y":27}],"type":"coastline"},{"arc":[{"x":9891,"y":18398},{"x":-25,"y":60},{"x":-64,"y":-36},{"x":89,"y":-24}],"type":"coastline"},{"arc":[{"x":9954,"y":18065},{"x":-50,"y":28},{"x":-21,"y":-10},{"x":27,"y":-31},{"x":-39,"y":-18},{"x":21,"y":-59},{"x":62,"y":90}],"type":"coastline"},{"arc":[{"x":10047,"y":18446},{"x":-61,"y":36},{"x":-69,"y":-64},{"x":4,"y":-67},{"x":42,"y":30},{"x":77,"y":-19},{"x":-31,"y":46},{"x":38,"y":38}],"type":"coastline"},{"arc":[{"x":10134,"y":18527},{"x":-101,"y":32},{"x":-42,"y":-77},{"x":69,"y":-24},{"x":74,"y":69}],"type":"coastline"},{"arc":[{"x":9950,"y":14277},{"x":-30,"y":24},{"x":4,"y":-55},{"x":26,"y":31}],"type":"coastline"},{"arc":[{"x":10120,"y":15444},{"x":-82,"y":11},{"x":-1,"y":43},{"x":-63,"y":-57},{"x":101,"y":-35},{"x":45,"y":38}],"type":"coastline"},{"arc":[{"x":10161,"y":14085},{"x":-170,"y":183},{"x":2,"y":-31},{"x":-29,"y":32},{"x":-93,"y":-77},{"x":-144,"y":23},{"x":65,"y":-120},{"x":156,"y":-68},{"x":-7,"y":-37},{"x":-34,"y":28},{"x":117,"y":-164},{"x":-83,"y":60},{"x":73,"y":-79},{"x":69,"y":25},{"x":78,"y":225}],"type":"coastline"},{"arc":[{"x":11075,"y":15753},{"x":-51,"y":58},{"x":-59,"y":-20},{"x":-6,"y":-121},{"x":116,"y":83}],"type":"coastline"},{"arc":[{"x":11289,"y":17894},{"x":-29,"y":22},{"x":6,"y":-42},{"x":23,"y":20}],"type":"coastline"},{"arc":[{"x":11300,"y":18082},{"x":-22,"y":29},{"x":-86,"y":-53},{"x":84,"y":-19},{"x":24,"y":43}],"type":"coastline"},{"arc":[{"x":11416,"y":18645},{"x":-159,"y":40},{"x":71,"y":-137},{"x":65,"y":19},{"x":23,"y":78}],"type":"coastline"},{"arc":[{"x":11563,"y":18632},{"x":-21,"y":42},{"x":-68,"y":-29},{"x":52,"y":-43},{"x":37,"y":30}],"type":"coastline"},{"arc":[{"x":11670,"y":17867},{"x":-66,"y":78},{"x":-61,"y":-2},{"x":-13,"y":-241},{"x":48,"y":-49},{"x":85,"y":35},{"x":7,"y":179}],"type":"coastline"},{"arc":[{"x":12262,"y":19516},{"x":-147,"y":119},{"x":13,"y":58},{"x":-271,"y":74},{"x":-170,"y":-5},{"x":-111,"y":-114},{"x":-23,"y":21},{"x":-67,"y":-66},{"x":-94,"y":-11},{"x":-192,"y":-154},{"x":-7,"y":-324},{"x":-136,"y":14},{"x":23,"y":-104},{"x":-151,"y":101},{"x":-8,"y":-48},{"x":-57,"y":2},{"x":-10,"y":-102},{"x":-73,"y":-58},{"x":77,"y":-109},{"x":-18,"y":-78},{"x":51,"y":-3},{"x":-27,"y":-35},{"x":-143,"y":72},{"x":-50,"y":-209},{"x":-111,"y":19},{"x":-68,"y":-125},{"x":21,"y":-60},{"x":-151,"y":-7},{"x":86,"y":-290},{"x":-36,"y":-69},{"x":-94,"y":-28},{"x":20,"y":-46},{"x":-42,"y":-15},{"x":-70,"y":52},{"x":-121,"y":145},{"x":-25,"y":-34},{"x":-77,"y":17},{"x":-90,"y":77},{"x":-10,"y":66},{"x":-5,"y":-33},{"x":-87,"y":64},{"x":-66,"y":-4},{"x":17,"y":-68},{"x":193,"y":-142},{"x":-10,"y":-1},{"x":13,"y":-9},{"x":-11,"y":-29},{"x":-42,"y":-54},{"x":-28,"y":-18},{"x":-7,"y":16},{"x":-9,"y":-15},{"x":-33,"y":47},{"x":-17,"y":-70},{"x":-40,"y":76},{"x":16,"y":-121},{"x":-148,"y":-13},{"x":-23,"y":-54},{"x":-275,"y":-92},{"x":0,"y":-45},{"x":-138,"y":98},{"x":62,"y":17},{"x":29,"y":107},{"x":-112,"y":34},{"x":-134,"y":-138},{"x":-69,"y":-164},{"x":-125,"y":-85},{"x":-68,"y":-175},{"x":30,"y":-71},{"x":226,"y":39},{"x":-29,"y":-65},{"x":80,"y":-10},{"x":30,"y":78},{"x":43,"y":-33},{"x":0,"y":-21},{"x":-5,"y":-16},{"x":-33,"y":-11},{"x":89,"y":4},{"x":-1,"y":28},{"x":8,"y":-58},{"x":101,"y":-13},{"x":83,"y":57},{"x":-51,"y":76},{"x":53,"y":-47},{"x":33,"y":88},{"x":62,"y":-17},{"x":-34,"y":-45},{"x":80,"y":6},{"x":-36,"y":60},{"x":58,"y":-5},{"x":-3,"y":-40},{"x":113,"y":250},{"x":122,"y":70},{"x":95,"y":-65},{"x":88,"y":10},{"x":227,"y":-108},{"x":159,"y":-16},{"x":-1,"y":50},{"x":-78,"y":48},{"x":105,"y":122},{"x":-41,"y":99},{"x":119,"y":50},{"x":73,"y":124},{"x":99,"y":-6},{"x":-21,"y":41},{"x":60,"y":52},{"x":-45,"y":61},{"x":59,"y":114},{"x":119,"y":58},{"x":-34,"y":31},{"x":25,"y":84},{"x":147,"y":72},{"x":61,"y":-16},{"x":86,"y":-194},{"x":-12,"y":-117},{"x":149,"y":-64},{"x":58,"y":5},{"x":27,"y":59},{"x":105,"y":-76},{"x":109,"y":21},{"x":-49,"y":95},{"x":42,"y":173},{"x":-63,"y":64},{"x":-7,"y":110},{"x":-38,"y":29},{"x":-47,"y":-56},{"x":-90,"y":-8},{"x":-2,"y":-32},{"x":-92,"y":94},{"x":62,"y":262},{"x":103,"y":118},{"x":-38,"y":-1},{"x":4,"y":44},{"x":88,"y":-90},{"x":98,"y":70},{"x":81,"y":151},{"x":104,"y":-22},{"x":17,"y":114},{"x":210,"y":176},{"x":196,"y":78},{"x":90,"y":-30},{"x":50,"y":46}],"type":"coastline"},{"arc":[{"x":12379,"y":18286},{"x":-36,"y":43},{"x":1,"y":-47},{"x":35,"y":4}],"type":"coastline"},{"arc":[{"x":12610,"y":18343},{"x":-90,"y":72},{"x":-89,"y":-12},{"x":-17,"y":-55},{"x":115,"y":-100},{"x":81,"y":95}],"type":"coastline"},{"arc":[{"x":13212,"y":18647},{"x":-113,"y":-87},{"x":-105,"y":-20},{"x":-110,"y":-171},{"x":-104,"y":-37},{"x":115,"y":-7},{"x":100,"y":65},{"x":194,"y":167},{"x":23,"y":90}],"type":"coastline"},{"arc":[{"x":16643,"y":19388},{"x":-107,"y":43},{"x":73,"y":-62},{"x":34,"y":19}],"type":"coastline"},{"arc":[{"x":71165,"y":68728},{"x":-352,"y":262},{"x":-59,"y":1},{"x":-27,"y":54},{"x":-121,"y":19},{"x":-300,"y":186},{"x":-152,"y":38},{"x":-8,"y":-103},{"x":-62,"y":-31},{"x":-9,"y":25},{"x":-42,"y":26},{"x":36,"y":-23},{"x":-2,"y":-18},{"x":-34,"y":3},{"x":6,"y":-31},{"x":-97,"y":216},{"x":-106,"y":87},{"x":-50,"y":-40},{"x":4,"y":-74},{"x":-89,"y":-62},{"x":-166,"y":17},{"x":-83,"y":67},{"x":-34,"y":98},{"x":-161,"y":98},{"x":-4,"y":111},{"x":-112,"y":76},{"x":-165,"y":19},{"x":-9,"y":-66},{"x":-105,"y":-13},{"x":-208,"y":137},{"x":-183,"y":5},{"x":-39,"y":48},{"x":-136,"y":-29},{"x":-57,"y":76},{"x":-83,"y":-56},{"x":-22,"y":55},{"x":-86,"y":-118},{"x":-37,"y":59},{"x":-144,"y":-77},{"x":-21,"y":71},{"x":-140,"y":-60},{"x":-26,"y":49},{"x":-31,"y":-70},{"x":-48,"y":46},{"x":28,"y":-40},{"x":-42,"y":21},{"x":-116,"y":-96},{"x":-49,"y":10},{"x":-4,"y":40},{"x":302,"y":240},{"x":-176,"y":-7},{"x":-26,"y":44},{"x":-21,"y":-34},{"x":-28,"y":32},{"x":-102,"y":-24},{"x":-2,"y":110},{"x":-120,"y":55},{"x":-57,"y":-26},{"x":-4,"y":-53},{"x":-44,"y":26},{"x":29,"y":-90},{"x":-105,"y":-27},{"x":-18,"y":-57},{"x":-105,"y":2},{"x":31,"y":-73},{"x":-45,"y":-134},{"x":-73,"y":9},{"x":-76,"y":74},{"x":57,"y":65},{"x":-31,"y":36},{"x":85,"y":15},{"x":81,"y":98},{"x":6,"y":55},{"x":-58,"y":40},{"x":-108,"y":-85},{"x":-88,"y":23},{"x":-34,"y":-32},{"x":35,"y":-93},{"x":-70,"y":-19},{"x":-9,"y":-80},{"x":81,"y":-31},{"x":-183,"y":-136},{"x":-62,"y":34},{"x":32,"y":70},{"x":-95,"y":-33},{"x":-37,"y":-95},{"x":37,"y":-57},{"x":-81,"y":-62},{"x":-58,"y":57},{"x":117,"y":301},{"x":-140,"y":-72},{"x":-67,"y":-329},{"x":-77,"y":141},{"x":-65,"y":14},{"x":14,"y":-150},{"x":-74,"y":53},{"x":-39,"y":-48},{"x":3,"y":86},{"x":-46,"y":32},{"x":46,"y":60},{"x":-3,"y":120},{"x":-25,"y":-99},{"x":-76,"y":40},{"x":-32,"y":-28},{"x":24,"y":-85},{"x":-31,"y":12},{"x":-45,"y":-85},{"x":17,"y":-64},{"x":-49,"y":10},{"x":38,"y":-84},{"x":-65,"y":-3},{"x":-45,"y":91},{"x":21,"y":107},{"x":-35,"y":8},{"x":-96,"y":-128},{"x":5,"y":-136},{"x":-53,"y":-54},{"x":-61,"y":136},{"x":-65,"y":5},{"x":19,"y":97},{"x":-67,"y":76},{"x":-90,"y":-148},{"x":87,"y":-76},{"x":34,"y":-179},{"x":-93,"y":-9},{"x":-18,"y":57},{"x":-47,"y":-3},{"x":-45,"y":192},{"x":-29,"y":-225},{"x":-93,"y":130},{"x":-46,"y":-10},{"x":-5,"y":-182},{"x":79,"y":-5},{"x":-69,"y":-51},{"x":31,"y":-49},{"x":-73,"y":-37},{"x":17,"y":-93},{"x":182,"y":19},{"x":12,"y":-58},{"x":-111,"y":8},{"x":-71,"y":-57},{"x":-51,"y":35},{"x":12,"y":47},{"x":-109,"y":46},{"x":28,"y":-121},{"x":-63,"y":23},{"x":-53,"y":-78},{"x":-11,"y":80},{"x":-66,"y":38},{"x":-58,"y":-85},{"x":162,"y":-137},{"x":96,"y":49},{"x":28,"y":-38},{"x":-23,"y":-172},{"x":-125,"y":29}],"type":"coastline"},{"arc":[{"x":96,"y":3128},{"x":-30,"y":82},{"x":-66,"y":-15},{"x":15,"y":-192},{"x":70,"y":48},{"x":11,"y":77}],"type":"coastline"},{"arc":[{"x":745,"y":3668},{"x":-54,"y":-8},{"x":36,"y":-42},{"x":18,"y":50}],"type":"coastline"},{"arc":[{"x":886,"y":3924},{"x":-52,"y":94},{"x":-92,"y":-69},{"x":90,"y":-73},{"x":54,"y":48}],"type":"coastline"},{"arc":[{"x":1262,"y":4227},{"x":-86,"y":56},{"x":-39,"y":-64},{"x":58,"y":-32},{"x":67,"y":40}],"type":"coastline"},{"arc":[{"x":1324,"y":3815},{"x":-34,"y":70},{"x":-85,"y":36},{"x":12,"y":-187},{"x":107,"y":81}],"type":"coastline"},{"arc":[{"x":1360,"y":2923},{"x":-74,"y":41},{"x":54,"y":-65},{"x":20,"y":24}],"type":"coastline"},{"arc":[{"x":1434,"y":2901},{"x":-63,"y":-15},{"x":22,"y":-35},{"x":41,"y":50}],"type":"coastline"},{"arc":[{"x":1682,"y":3109},{"x":-113,"y":110},{"x":-90,"y":15},{"x":74,"y":61},{"x":-55,"y":106},{"x":40,"y":41},{"x":-88,"y":53},{"x":4,"y":72},{"x":-79,"y":57},{"x":-7,"y":64},{"x":-96,"y":-48},{"x":-116,"y":6},{"x":41,"y":-61},{"x":-107,"y":-46},{"x":-112,"y":19},{"x":23,"y":-86},{"x":-105,"y":-1},{"x":101,"y":-459},{"x":88,"y":-116},{"x":-94,"y":-20},{"x":20,"y":-139},{"x":111,"y":-69},{"x":10,"y":94},{"x":96,"y":-3},{"x":-77,"y":87},{"x":153,"y":-24},{"x":-83,"y":29},{"x":54,"y":56},{"x":-124,"y":47},{"x":-10,"y":44},{"x":130,"y":-26},{"x":68,"y":32},{"x":40,"y":-38},{"x":41,"y":37},{"x":72,"y":-37},{"x":-9,"y":36},{"x":52,"y":-5},{"x":62,"y":78},{"x":71,"y":-25},{"x":14,"y":59}],"type":"coastline"},{"arc":[{"x":1846,"y":236},{"x":-61,"y":168},{"x":-105,"y":-121},{"x":52,"y":-283},{"x":103,"y":106},{"x":11,"y":130}],"type":"coastline"},{"arc":[{"x":2441,"y":5069},{"x":-29,"y":86},{"x":-84,"y":2},{"x":-172,"y":-132},{"x":-68,"y":15},{"x":-99,"y":-92},{"x":-87,"y":-8},{"x":-92,"y":-106},{"x":-234,"y":23},{"x":-238,"y":-35},{"x":-56,"y":-48},{"x":39,"y":-128},{"x":-44,"y":2},{"x":-58,"y":-74},{"x":28,"y":-132},{"x":61,"y":-3},{"x":62,"y":-124},{"x":94,"y":101},{"x":114,"y":18},{"x":93,"y":-88},{"x":-80,"y":-128},{"x":65,"y":-56},{"x":96,"y":28},{"x":-29,"y":157},{"x":99,"y":22},{"x":56,"y":-29},{"x":-67,"y":93},{"x":-107,"y":-11},{"x":54,"y":46},{"x":3,"y":258},{"x":189,"y":20},{"x":90,"y":103},{"x":-58,"y":83},{"x":154,"y":61},{"x":84,"y":-48},{"x":40,"y":56},{"x":181,"y":68}],"type":"coastline"},{"arc":[{"x":2724,"y":6514},{"x":-46,"y":58},{"x":-101,"y":-5},{"x":-3,"y":-182},{"x":101,"y":-7},{"x":49,"y":136}],"type":"coastline"},{"arc":[{"x":2959,"y":8461},{"x":-70,"y":54},{"x":7,"y":-60},{"x":63,"y":6}],"type":"coastline"},{"arc":[{"x":3091,"y":6456},{"x":-75,"y":40},{"x":59,"y":-85},{"x":16,"y":45}],"type":"coastline"},{"arc":[{"x":3449,"y":8088},{"x":-133,"y":130},{"x":-41,"y":-14},{"x":12,"y":-99},{"x":74,"y":-36},{"x":88,"y":19}],"type":"coastline"},{"arc":[{"x":3540,"y":8173},{"x":-104,"y":188},{"x":-119,"y":27},{"x":-37,"y":-74},{"x":-29,"y":17},{"x":152,"y":-185},{"x":137,"y":27}],"type":"coastline"},{"arc":[{"x":3754,"y":8553},{"x":-139,"y":66},{"x":-18,"y":49},{"x":-179,"y":53},{"x":-66,"y":83},{"x":-101,"y":-1},{"x":-164,"y":360},{"x":-183,"y":132},{"x":51,"y":-59},{"x":-6,"y":-304},{"x":-77,"y":-226},{"x":96,"y":-41},{"x":-67,"y":-10},{"x":74,"y":-123},{"x":92,"y":-32},{"x":52,"y":32},{"x":-75,"y":18},{"x":9,"y":70},{"x":180,"y":-107},{"x":63,"y":84},{"x":126,"y":-3},{"x":-8,"y":64},{"x":43,"y":3},{"x":277,"y":-152},{"x":-32,"y":49},{"x":52,"y":-5}],"type":"coastline"},{"arc":[{"x":3856,"y":8454},{"x":-61,"y":58},{"x":20,"y":-81},{"x":41,"y":23}],"type":"coastline"},{"arc":[{"x":7386,"y":1989},{"x":-40,"y":63},{"x":-32,"y":-125},{"x":72,"y":62}],"type":"coastline"},{"arc":[{"x":32512,"y":31074},{"x":-134,"y":24},{"x":70,"y":-50},{"x":64,"y":26}],"type":"coastline"},{"arc":[{"x":37424,"y":32568},{"x":-16,"y":67},{"x":-65,"y":-35},{"x":42,"y":-74},{"x":39,"y":42}],"type":"coastline"},{"arc":[{"x":37734,"y":32815},{"x":-62,"y":-101},{"x":-66,"y":25},{"x":25,"y":-54},{"x":-125,"y":3},{"x":-8,"y":-45},{"x":66,"y":-44},{"x":-84,"y":-39},{"x":-42,"y":-87},{"x":-67,"y":-9},{"x":52,"y":-47},{"x":-70,"y":-19},{"x":1,"y":-35},{"x":-26,"y":32},{"x":-42,"y":-21},{"x":12,"y":-54},{"x":-45,"y":26},{"x":23,"y":58},{"x":-162,"y":-67},{"x":-58,"y":-157},{"x":-100,"y":-71},{"x":-249,"y":-31},{"x":26,"y":29},{"x":-41,"y":31},{"x":53,"y":-2},{"x":9,"y":51},{"x":-75,"y":-16},{"x":-46,"y":69},{"x":-99,"y":-123},{"x":16,"y":-64},{"x":46,"y":4},{"x":-18,"y":-81},{"x":-139,"y":0},{"x":-36,"y":-55},{"x":-19,"y":34},{"x":65,"y":48},{"x":-57,"y":-7},{"x":29,"y":51},{"x":48,"y":-6},{"x":-105,"y":20},{"x":-5,"y":-95},{"x":-25,"y":132},{"x":-67,"y":-170},{"x":-159,"y":-27},{"x":-56,"y":-49},{"x":-68,"y":22},{"x":-10,"y":-52},{"x":-205,"y":-107},{"x":-539,"y":-112},{"x":-21,"y":-36},{"x":-944,"y":-267},{"x":-95,"y":-19},{"x":-22,"y":29},{"x":-14,"y":-57},{"x":-80,"y":-15},{"x":110,"y":113},{"x":-117,"y":-93},{"x":-258,"y":-36},{"x":-90,"y":12},{"x":-134,"y":125},{"x":-290,"y":-105},{"x":-93,"y":-14},{"x":-45,"y":47},{"x":-27,"y":-68},{"x":-151,"y":70},{"x":-27,"y":-61},{"x":-26,"y":35},{"x":-39,"y":-21},{"x":-90,"y":-141},{"x":-174,"y":-44},{"x":81,"y":-18},{"x":-77,"y":-37},{"x":-23,"y":24},{"x":-17,"y":-58},{"x":-137,"y":19},{"x":-53,"y":-14},{"x":28,"y":-39},{"x":-47,"y":2},{"x":-19,"y":46},{"x":-75,"y":15},{"x":-58,"y":-98},{"x":-189,"y":30},{"x":-138,"y":-142},{"x":-130,"y":62},{"x":-6,"y":-96},{"x":111,"y":-51},{"x":-43,"y":-203},{"x":107,"y":-67},{"x":90,"y":27},{"x":-8,"y":-56},{"x":125,"y":-80},{"x":-14,"y":-115},{"x":52,"y":-52}],"type":"coastline"},{"arc":[{"x":61764,"y":67949},{"x":-163,"y":112},{"x":96,"y":-160},{"x":65,"y":12},{"x":2,"y":36}],"type":"coastline"},{"arc":[{"x":61888,"y":67751},{"x":-84,"y":49},{"x":-34,"y":-76},{"x":118,"y":27}],"type":"coastline"},{"arc":[{"x":62001,"y":66558},{"x":-47,"y":61},{"x":14,"y":-72},{"x":33,"y":11}],"type":"coastline"},{"arc":[{"x":61894,"y":68303},{"x":-52,"y":84},{"x":-141,"y":-48},{"x":113,"y":-105},{"x":80,"y":69}],"type":"coastline"},{"arc":[{"x":62029,"y":66669},{"x":-59,"y":-41},{"x":27,"y":-20},{"x":32,"y":61}],"type":"coastline"},{"arc":[{"x":62039,"y":66703},{"x":-94,"y":-22},{"x":43,"y":-32},{"x":51,"y":54}],"type":"coastline"},{"arc":[{"x":62081,"y":66775},{"x":-15,"y":30},{"x":-23,"y":-14},{"x":-33,"y":30},{"x":43,"y":-13},{"x":-1,"y":37},{"x":-78,"y":-8},{"x":-46,"y":58},{"x":4,"y":-104},{"x":51,"y":-20},{"x":-54,"y":-41},{"x":74,"y":-22},{"x":0,"y":61},{"x":68,"y":-28},{"x":10,"y":34}],"type":"coastline"},{"arc":[{"x":62553,"y":68124},{"x":-48,"y":53},{"x":-73,"y":-8},{"x":23,"y":-43},{"x":98,"y":-2}],"type":"coastline"},{"arc":[{"x":64375,"y":68514},{"x":-78,"y":37},{"x":-70,"y":-44},{"x":-47,"y":56},{"x":-44,"y":-49},{"x":187,"y":-83},{"x":52,"y":83}],"type":"coastline"},{"arc":[{"x":64745,"y":68542},{"x":-66,"y":44},{"x":-5,"y":-46},{"x":-52,"y":62},{"x":-53,"y":-52},{"x":-48,"y":70},{"x":-34,"y":-21},{"x":-82,"y":73},{"x":-148,"y":26},{"x":117,"y":-137},{"x":74,"y":4},{"x":-98,"y":-113},{"x":65,"y":-70},{"x":64,"y":-6},{"x":-14,"y":-43},{"x":-71,"y":69},{"x":-179,"y":-39},{"x":-90,"y":75},{"x":-16,"y":-89},{"x":-70,"y":-29},{"x":20,"y":-45},{"x":-51,"y":-14},{"x":-52,"y":-127},{"x":-91,"y":-33},{"x":-149,"y":126},{"x":27,"y":71},{"x":-210,"y":-13},{"x":67,"y":-18},{"x":-7,"y":-76},{"x":52,"y":-38},{"x":-121,"y":-35},{"x":2,"y":-97},{"x":-68,"y":18},{"x":-6,"y":-186},{"x":-127,"y":-3},{"x":-28,"y":317},{"x":-121,"y":-20},{"x":-26,"y":-85},{"x":-35,"y":13},{"x":-52,"y":-63},{"x":-20,"y":-106},{"x":-75,"y":17},{"x":-31,"y":91},{"x":-91,"y":21},{"x":61,"y":151},{"x":-65,"y":-16},{"x":-36,"y":63},{"x":-64,"y":-51},{"x":-19,"y":33},{"x":-62,"y":-20},{"x":11,"y":-82},{"x":88,"y":-6},{"x":-19,"y":-70},{"x":54,"y":-90},{"x":-40,"y":-18},{"x":25,"y":38},{"x":-97,"y":81},{"x":-74,"y":5},{"x":-63,"y":-82},{"x":-60,"y":134},{"x":-56,"y":-67},{"x":29,"y":-173},{"x":-104,"y":102},{"x":-111,"y":-20},{"x":94,"y":111},{"x":-101,"y":52},{"x":35,"y":91},{"x":-83,"y":-30},{"x":43,"y":-69},{"x":-69,"y":-112},{"x":-31,"y":135},{"x":-124,"y":59},{"x":-63,"y":-35},{"x":-75,"y":60},{"x":-53,"y":-57},{"x":-101,"y":-2},{"x":14,"y":-49},{"x":91,"y":-9},{"x":-13,"y":-64},{"x":57,"y":14},{"x":-6,"y":-63},{"x":63,"y":-23},{"x":-62,"y":-20},{"x":41,"y":-63},{"x":61,"y":91},{"x":96,"y":-44},{"x":-48,"y":-39},{"x":58,"y":-12},{"x":-54,"y":-45},{"x":21,"y":-74},{"x":81,"y":51},{"x":36,"y":107},{"x":2,"y":-100},{"x":34,"y":24},{"x":13,"y":-57},{"x":66,"y":26},{"x":-35,"y":-56},{"x":54,"y":-22},{"x":-90,"y":-130},{"x":23,"y":-34},{"x":101,"y":0},{"x":-1,"y":-171},{"x":-39,"y":55},{"x":-1,"y":-29},{"x":53,"y":-62},{"x":-5,"y":-53},{"x":-58,"y":7},{"x":41,"y":-71},{"x":-51,"y":-40},{"x":72,"y":38},{"x":8,"y":40},{"x":16,"y":-45},{"x":-54,"y":-24},{"x":-138,"y":-340},{"x":-96,"y":-57},{"x":30,"y":-53},{"x":-2,"y":-43},{"x":74,"y":4},{"x":40,"y":-97},{"x":-44,"y":34},{"x":-35,"y":-41},{"x":45,"y":-23},{"x":-2,"y":-90},{"x":-46,"y":-49},{"x":-70,"y":19},{"x":-34,"y":-105},{"x":-55,"y":60},{"x":-47,"y":-107},{"x":-5,"y":77},{"x":-53,"y":-34},{"x":57,"y":147},{"x":-104,"y":42},{"x":-100,"y":-175},{"x":46,"y":-42},{"x":-54,"y":-14},{"x":10,"y":-95},{"x":-37,"y":175},{"x":-2,"y":-86},{"x":-244,"y":-162},{"x":-457,"y":-176},{"x":-530,"y":-60},{"x":-365,"y":60}],"type":"coastline"},{"arc":[{"x":35326,"y":26010},{"x":-149,"y":65},{"x":81,"y":-54},{"x":-55,"y":-55},{"x":102,"y":7},{"x":21,"y":37}],"type":"coastline"},{"arc":[{"x":35703,"y":26420},{"x":-38,"y":35},{"x":-28,"y":-57},{"x":66,"y":22}],"type":"coastline"},{"arc":[{"x":35895,"y":26467},{"x":-43,"y":11},{"x":23,"y":-51},{"x":-87,"y":-12},{"x":-6,"y":98},{"x":-63,"y":-79},{"x":44,"y":-30},{"x":-165,"y":-110},{"x":3,"y":-56},{"x":-23,"y":42},{"x":-60,"y":-3},{"x":-36,"y":-45},{"x":73,"y":8},{"x":-5,"y":-45},{"x":-51,"y":12},{"x":-30,"y":-38},{"x":-18,"y":50},{"x":-33,"y":-32},{"x":-56,"y":-119},{"x":67,"y":-60},{"x":-59,"y":22},{"x":-53,"y":-44},{"x":57,"y":-41},{"x":-51,"y":-36},{"x":29,"y":-40},{"x":108,"y":36},{"x":-45,"y":11},{"x":48,"y":40},{"x":72,"y":-13},{"x":5,"y":-83},{"x":60,"y":38},{"x":-53,"y":-46},{"x":6,"y":-70},{"x":181,"y":91},{"x":73,"y":118},{"x":-116,"y":36},{"x":103,"y":-20},{"x":26,"y":79},{"x":-54,"y":-18},{"x":-71,"y":59},{"x":88,"y":0},{"x":18,"y":39},{"x":64,"y":-114},{"x":-52,"y":-37},{"x":57,"y":-14},{"x":-36,"y":-6},{"x":34,"y":-74},{"x":-40,"y":-39},{"x":68,"y":1},{"x":-21,"y":-28},{"x":51,"y":-37},{"x":116,"y":-8},{"x":97,"y":73},{"x":24,"y":-23},{"x":81,"y":55},{"x":96,"y":1},{"x":180,"y":125},{"x":87,"y":-24},{"x":-44,"y":15},{"x":66,"y":44},{"x":123,"y":-49},{"x":45,"y":-78},{"x":27,"y":92},{"x":-62,"y":-13},{"x":-40,"y":43},{"x":157,"y":267},{"x":11,"y":215},{"x":-67,"y":82},{"x":-95,"y":-34},{"x":-45,"y":25}],"type":"coastline"},{"arc":[{"x":36895,"y":26335},{"x":1,"y":30},{"x":-11,"y":-77},{"x":10,"y":47}],"type":"coastline"},{"arc":[{"x":43498,"y":35189},{"x":-33,"y":23},{"x":-88,"y":-37},{"x":28,"y":-36},{"x":93,"y":50}],"type":"coastline"},{"arc":[{"x":43521,"y":35248},{"x":-36,"y":35},{"x":-10,"y":-66},{"x":46,"y":31}],"type":"coastline"},{"arc":[{"x":43708,"y":36128},{"x":-9,"y":41},{"x":-29,"y":-49},{"x":38,"y":8}],"type":"coastline"},{"arc":[{"x":43873,"y":34844},{"x":-32,"y":13},{"x":-29,"y":-48},{"x":61,"y":35}],"type":"coastline"},{"arc":[{"x":43905,"y":36149},{"x":-30,"y":-84},{"x":67,"y":-3},{"x":53,"y":58},{"x":-52,"y":46},{"x":-38,"y":-17}],"type":"coastline"},{"arc":[{"x":43947,"y":34647},{"x":-34,"y":102},{"x":-83,"y":1},{"x":-5,"y":-95},{"x":122,"y":-8}],"type":"coastline"},{"arc":[{"x":43987,"y":36270},{"x":41,"y":79},{"x":-84,"y":72},{"x":-101,"y":-149},{"x":5,"y":-96},{"x":101,"y":15},{"x":38,"y":79}],"type":"coastline"},{"arc":[{"x":44041,"y":34321},{"x":-41,"y":85},{"x":-23,"y":-69},{"x":64,"y":-16}],"type":"coastline"},{"arc":[{"x":44046,"y":35195},{"x":-50,"y":-4},{"x":-7,"y":67},{"x":-61,"y":25},{"x":15,"y":-44},{"x":-83,"y":-93},{"x":-47,"y":38},{"x":21,"y":60},{"x":-45,"y":2},{"x":41,"y":33},{"x":-187,"y":-69},{"x":88,"y":137},{"x":-83,"y":50},{"x":30,"y":-73},{"x":-155,"y":-50},{"x":104,"y":-89},{"x":-56,"y":-70},{"x":54,"y":-41},{"x":-54,"y":-12},{"x":-37,"y":-140},{"x":113,"y":-48},{"x":109,"y":209},{"x":46,"y":14},{"x":39,"y":-56},{"x":117,"y":26},{"x":88,"y":128}],"type":"coastline"},{"arc":[{"x":44054,"y":35708},{"x":-63,"y":35},{"x":-57,"y":-31},{"x":-15,"y":-116},{"x":109,"y":43},{"x":26,"y":69}],"type":"coastline"},{"arc":[{"x":44061,"y":35844},{"x":-44,"y":166},{"x":-51,"y":-12},{"x":-22,"y":42},{"x":-83,"y":-98},{"x":68,"y":-1},{"x":40,"y":-193},{"x":60,"y":3},{"x":32,"y":93}],"type":"coastline"},{"arc":[{"x":44354,"y":36422},{"x":-72,"y":20},{"x":39,"y":-43},{"x":33,"y":23}],"type":"coastline"},{"arc":[{"x":44391,"y":34593},{"x":-17,"y":31},{"x":1,"y":-66},{"x":16,"y":35}],"type":"coastline"},{"arc":[{"x":44398,"y":36189},{"x":-56,"y":-11},{"x":22,"y":-49},{"x":34,"y":60}],"type":"coastline"},{"arc":[{"x":44411,"y":36647},{"x":-31,"y":41},{"x":-184,"y":-106},{"x":-91,"y":27},{"x":-33,"y":-207},{"x":73,"y":-81},{"x":82,"y":-14},{"x":9,"y":166},{"x":33,"y":-24},{"x":46,"y":38},{"x":-59,"y":58},{"x":155,"y":102}],"type":"coastline"},{"arc":[{"x":44414,"y":37083},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":44462,"y":34993},{"x":-127,"y":70},{"x":-274,"y":-32},{"x":-40,"y":-62},{"x":-68,"y":-7},{"x":-160,"y":68},{"x":-59,"y":-224},{"x":103,"y":62},{"x":117,"y":-3},{"x":-6,"y":45},{"x":79,"y":-72},{"x":-100,"y":-32},{"x":109,"y":-32},{"x":123,"y":-131},{"x":59,"y":17},{"x":80,"y":-62},{"x":-2,"y":175},{"x":-143,"y":71},{"x":25,"y":68},{"x":-97,"y":60},{"x":101,"y":21},{"x":55,"y":-33},{"x":53,"y":-54},{"x":-42,"y":-21},{"x":14,"y":-63},{"x":71,"y":46},{"x":84,"y":-42},{"x":-11,"y":148},{"x":56,"y":19}],"type":"coastline"},{"arc":[{"x":44479,"y":36591},{"x":-43,"y":3},{"x":19,"y":36},{"x":-65,"y":-36},{"x":22,"y":-43},{"x":67,"y":40}],"type":"coastline"},{"arc":[{"x":44527,"y":34457},{"x":-133,"y":50},{"x":-213,"y":-268},{"x":108,"y":-38},{"x":134,"y":97},{"x":35,"y":110},{"x":69,"y":49}],"type":"coastline"},{"arc":[{"x":44551,"y":38611},{"x":-28,"y":12},{"x":19,"y":-46},{"x":9,"y":34}],"type":"coastline"},{"arc":[{"x":44551,"y":37389},{"x":-62,"y":56},{"x":-65,"y":-6},{"x":-134,"y":-196},{"x":24,"y":-88},{"x":220,"y":71},{"x":-29,"y":49},{"x":46,"y":114}],"type":"coastline"},{"arc":[{"x":44590,"y":34850},{"x":-125,"y":7},{"x":12,"y":-100},{"x":113,"y":93}],"type":"coastline"},{"arc":[{"x":44622,"y":37188},{"x":-86,"y":31},{"x":-47,"y":-66},{"x":67,"y":-23},{"x":66,"y":58}],"type":"coastline"},{"arc":[{"x":44701,"y":38500},{"x":-59,"y":67},{"x":6,"y":-89},{"x":45,"y":-12},{"x":8,"y":34}],"type":"coastline"},{"arc":[{"x":44729,"y":37949},{"x":-84,"y":-1},{"x":-27,"y":-87},{"x":67,"y":6},{"x":44,"y":82}],"type":"coastline"},{"arc":[{"x":44732,"y":37456},{"x":-3,"y":80},{"x":-70,"y":18},{"x":-16,"y":69},{"x":-83,"y":50},{"x":-80,"y":-64},{"x":-15,"y":62},{"x":-94,"y":-52},{"x":101,"y":-147},{"x":131,"y":-79},{"x":129,"y":63}],"type":"coastline"},{"arc":[{"x":44739,"y":37330},{"x":-98,"y":36},{"x":-88,"y":-63},{"x":58,"y":-56},{"x":-19,"y":32},{"x":131,"y":0},{"x":16,"y":51}],"type":"coastline"},{"arc":[{"x":44793,"y":38069},{"x":-55,"y":23},{"x":48,"y":63},{"x":-62,"y":-16},{"x":-52,"y":-154},{"x":76,"y":-9},{"x":45,"y":93}],"type":"coastline"},{"arc":[{"x":44844,"y":37856},{"x":-18,"y":68},{"x":-84,"y":-34},{"x":23,"y":-40},{"x":79,"y":6}],"type":"coastline"},{"arc":[{"x":44862,"y":38363},{"x":-46,"y":7},{"x":25,"y":-50},{"x":21,"y":43}],"type":"coastline"},{"arc":[{"x":44875,"y":37495},{"x":-81,"y":32},{"x":39,"y":-71},{"x":42,"y":39}],"type":"coastline"},{"arc":[{"x":44951,"y":37690},{"x":-15,"y":79},{"x":-62,"y":-1},{"x":-47,"y":-65},{"x":-105,"y":-26},{"x":10,"y":-104},{"x":149,"y":-42},{"x":70,"y":159}],"type":"coastline"},{"arc":[{"x":45260,"y":38538},{"x":-152,"y":-15},{"x":61,"y":-104},{"x":83,"y":-22},{"x":-92,"y":-1},{"x":-91,"y":119},{"x":-52,"y":-34},{"x":59,"y":-76},{"x":-66,"y":-88},{"x":-177,"y":-10},{"x":-57,"y":-62},{"x":-14,"y":-76},{"x":56,"y":-7},{"x":40,"y":-141},{"x":-18,"y":-56},{"x":79,"y":-33},{"x":-51,"y":-129},{"x":45,"y":-10},{"x":-13,"y":58},{"x":88,"y":53},{"x":66,"y":-13},{"x":38,"y":-69},{"x":-72,"y":15},{"x":48,"y":-50},{"x":-106,"y":-29},{"x":-6,"y":-98},{"x":-120,"y":-293},{"x":57,"y":-156},{"x":-71,"y":44},{"x":-3,"y":-39},{"x":-143,"y":-25},{"x":-62,"y":-145},{"x":39,"y":-328},{"x":-63,"y":-78},{"x":3,"y":-130},{"x":-62,"y":-90},{"x":-43,"y":18},{"x":-46,"y":-99},{"x":106,"y":-47},{"x":-18,"y":-136},{"x":-147,"y":-31},{"x":18,"y":-126},{"x":-99,"y":-5},{"x":-18,"y":75},{"x":-64,"y":-47},{"x":-13,"y":-217},{"x":-118,"y":-62},{"x":39,"y":-89},{"x":-47,"y":3},{"x":-29,"y":-73},{"x":127,"y":-166},{"x":-86,"y":-14},{"x":-74,"y":-198},{"x":67,"y":22},{"x":54,"y":-45},{"x":70,"y":99},{"x":41,"y":-70},{"x":-27,"y":-29},{"x":60,"y":-6},{"x":7,"y":-57},{"x":112,"y":16},{"x":146,"y":-90},{"x":87,"y":37},{"x":10,"y":-47},{"x":52,"y":42},{"x":-30,"y":49},{"x":39,"y":-28},{"x":29,"y":59},{"x":25,"y":-21},{"x":-52,"y":-134},{"x":60,"y":-25},{"x":-45,"y":10},{"x":-17,"y":-95},{"x":-53,"y":-32},{"x":83,"y":-74},{"x":10,"y":-155},{"x":-63,"y":-61},{"x":55,"y":-8},{"x":-26,"y":-89},{"x":-21,"y":67},{"x":-32,"y":-64},{"x":15,"y":72},{"x":-33,"y":-80},{"x":28,"y":-37},{"x":-267,"y":-176},{"x":-116,"y":-175},{"x":-101,"y":-38},{"x":-24,"y":67},{"x":-72,"y":24}],"type":"coastline"},{"arc":[{"x":43366,"y":39094},{"x":71,"y":120},{"x":143,"y":29},{"x":112,"y":-41},{"x":26,"y":41},{"x":-1,"y":-30},{"x":298,"y":65},{"x":174,"y":-158},{"x":42,"y":-120},{"x":65,"y":6},{"x":17,"y":-64},{"x":-6,"y":126},{"x":-109,"y":113},{"x":-8,"y":119},{"x":58,"y":66},{"x":-108,"y":5},{"x":172,"y":227},{"x":91,"y":1},{"x":-48,"y":27},{"x":45,"y":-12},{"x":28,"y":118},{"x":50,"y":-39},{"x":21,"y":24},{"x":-67,"y":33},{"x":46,"y":21},{"x":26,"y":-41},{"x":21,"y":39},{"x":-73,"y":38},{"x":61,"y":-15},{"x":52,"y":140},{"x":144,"y":-29},{"x":32,"y":79},{"x":-80,"y":-44},{"x":80,"y":91},{"x":-64,"y":15},{"x":-62,"y":-99},{"x":-20,"y":123},{"x":120,"y":112},{"x":110,"y":-15},{"x":-10,"y":110},{"x":52,"y":25},{"x":-63,"y":43},{"x":11,"y":73},{"x":-66,"y":23},{"x":47,"y":40},{"x":-95,"y":88},{"x":34,"y":11},{"x":-46,"y":95},{"x":56,"y":82},{"x":-60,"y":30},{"x":38,"y":-18},{"x":35,"y":53},{"x":-57,"y":0},{"x":45,"y":20},{"x":-43,"y":40},{"x":143,"y":21},{"x":-105,"y":113},{"x":68,"y":-22},{"x":47,"y":47},{"x":43,"y":-36},{"x":14,"y":63},{"x":-77,"y":100},{"x":-169,"y":-39},{"x":-73,"y":42},{"x":19,"y":95},{"x":94,"y":-28},{"x":-25,"y":103},{"x":97,"y":0},{"x":-139,"y":83},{"x":62,"y":61},{"x":-67,"y":59},{"x":-74,"y":-3},{"x":-53,"y":-70},{"x":-95,"y":43},{"x":-28,"y":175},{"x":-114,"y":137},{"x":-11,"y":95},{"x":52,"y":34},{"x":-104,"y":68},{"x":-9,"y":54},{"x":-48,"y":-14},{"x":-73,"y":118}],"type":"coastline"},{"arc":[{"x":43769,"y":38832},{"x":-34,"y":54},{"x":-21,"y":-36},{"x":55,"y":-18}],"type":"coastline"},{"arc":[{"x":44422,"y":39197},{"x":-62,"y":32},{"x":37,"y":77},{"x":-47,"y":-5},{"x":-3,"y":-78},{"x":-61,"y":-49},{"x":136,"y":23}],"type":"coastline"},{"arc":[{"x":44589,"y":39335},{"x":-52,"y":71},{"x":-34,"y":-13},{"x":86,"y":-58}],"type":"coastline"},{"arc":[{"x":44762,"y":39758},{"x":-34,"y":25},{"x":-2,"y":-45},{"x":36,"y":20}],"type":"coastline"},{"arc":[{"x":44839,"y":39281},{"x":-43,"y":9},{"x":20,"y":-36},{"x":23,"y":27}],"type":"coastline"},{"arc":[{"x":44892,"y":39907},{"x":-58,"y":13},{"x":29,"y":-41},{"x":29,"y":28}],"type":"coastline"},{"arc":[{"x":44908,"y":39504},{"x":-124,"y":74},{"x":-82,"y":-114},{"x":44,"y":-55},{"x":162,"y":95}],"type":"coastline"},{"arc":[{"x":44916,"y":39751},{"x":-56,"y":64},{"x":-78,"y":-147},{"x":124,"y":-9},{"x":-37,"y":32},{"x":47,"y":60}],"type":"coastline"},{"arc":[{"x":44952,"y":40763},{"x":-85,"y":3},{"x":-44,"y":-62},{"x":129,"y":59}],"type":"coastline"},{"arc":[{"x":44975,"y":40952},{"x":-42,"y":23},{"x":-20,"y":-41},{"x":62,"y":18}],"type":"coastline"},{"arc":[{"x":44959,"y":39362},{"x":-69,"y":23},{"x":-53,"y":-43},{"x":112,"y":-56},{"x":10,"y":76}],"type":"coastline"},{"arc":[{"x":44994,"y":40292},{"x":-2,"y":-19}],"type":"coastline"},{"arc":[{"x":45031,"y":39849},{"x":-64,"y":9},{"x":55,"y":-42},{"x":9,"y":33}],"type":"coastline"},{"arc":[{"x":45180,"y":40439},{"x":-32,"y":8},{"x":8,"y":-40},{"x":24,"y":32}],"type":"coastline"},{"arc":[{"x":45250,"y":40455},{"x":-116,"y":155},{"x":-27,"y":-111},{"x":143,"y":-44}],"type":"coastline"},{"arc":[{"x":45344,"y":40879},{"x":-56,"y":70},{"x":-116,"y":-72},{"x":92,"y":-180},{"x":80,"y":182}],"type":"coastline"},{"arc":[{"x":45373,"y":40653},{"x":-121,"y":-12},{"x":85,"y":-48}],"type":"coastline"},{"arc":[{"x":45627,"y":41837},{"x":-39,"y":2},{"x":24,"y":72},{"x":-71,"y":-86},{"x":-14,"y":68},{"x":-217,"y":-37},{"x":-15,"y":-34},{"x":-52,"y":41},{"x":-122,"y":-68},{"x":-66,"y":9},{"x":109,"y":-67},{"x":-4,"y":-65},{"x":-66,"y":-65},{"x":21,"y":-21},{"x":3,"y":31},{"x":58,"y":-9},{"x":-5,"y":118},{"x":77,"y":-23},{"x":-40,"y":-156},{"x":-190,"y":-60},{"x":-42,"y":-58},{"x":45,"y":-40},{"x":53,"y":46},{"x":5,"y":-50},{"x":88,"y":71},{"x":95,"y":-53},{"x":-32,"y":-44},{"x":44,"y":-101},{"x":-39,"y":-1},{"x":-64,"y":-136},{"x":43,"y":-39},{"x":101,"y":59},{"x":-23,"y":88},{"x":75,"y":-92},{"x":104,"y":58},{"x":-56,"y":55},{"x":59,"y":191},{"x":103,"y":94},{"x":-28,"y":113},{"x":78,"y":189}],"type":"coastline"},{"arc":[{"x":40314,"y":25136},{"x":-33,"y":74},{"x":-6,"y":-30},{"x":-44,"y":57},{"x":-54,"y":-17},{"x":-96,"y":85},{"x":21,"y":61},{"x":89,"y":-95},{"x":76,"y":79},{"x":33,"y":-79},{"x":-2,"y":77},{"x":113,"y":-7},{"x":44,"y":81},{"x":140,"y":6},{"x":30,"y":-172},{"x":44,"y":30},{"x":126,"y":-179},{"x":31,"y":92},{"x":59,"y":-52},{"x":60,"y":47},{"x":-102,"y":120},{"x":-87,"y":-16},{"x":52,"y":88},{"x":91,"y":-33},{"x":0,"y":-67},{"x":19,"y":50},{"x":168,"y":-63},{"x":-54,"y":107},{"x":72,"y":-64},{"x":-13,"y":62},{"x":159,"y":-40},{"x":-78,"y":119},{"x":-96,"y":-15},{"x":27,"y":45},{"x":80,"y":-14},{"x":-12,"y":43},{"x":57,"y":2},{"x":-40,"y":84},{"x":40,"y":45},{"x":-63,"y":-1},{"x":-31,"y":102},{"x":-78,"y":42},{"x":-136,"y":-117},{"x":-49,"y":68},{"x":60,"y":38},{"x":-105,"y":-16},{"x":-51,"y":222},{"x":41,"y":69},{"x":61,"y":-8}],"type":"coastline"},{"arc":[{"x":41196,"y":25807},{"x":-46,"y":13},{"x":-26,"y":-38},{"x":53,"y":17},{"x":-4,"y":-29},{"x":23,"y":37}],"type":"coastline"},{"arc":[{"x":41301,"y":25470},{"x":-58,"y":43},{"x":-34,"y":-93},{"x":92,"y":50}],"type":"coastline"},{"arc":[{"x":41365,"y":25025},{"x":-31,"y":48},{"x":-51,"y":-39},{"x":42,"y":-85},{"x":40,"y":76}],"type":"coastline"},{"arc":[{"x":41459,"y":25530},{"x":-53,"y":12},{"x":4,"y":-30},{"x":49,"y":18}],"type":"coastline"},{"arc":[{"x":41517,"y":25400},{"x":-92,"y":20},{"x":-44,"y":-29},{"x":57,"y":-45},{"x":79,"y":54}],"type":"coastline"},{"arc":[{"x":61975,"y":57072},{"x":-37,"y":70},{"x":-123,"y":-52},{"x":-197,"y":-5},{"x":-202,"y":-52},{"x":-371,"y":-206},{"x":-128,"y":-7},{"x":-114,"y":173},{"x":112,"y":300},{"x":-109,"y":42},{"x":-516,"y":-263},{"x":-102,"y":-10},{"x":-391,"y":-515},{"x":-15,"y":-199},{"x":-103,"y":-192},{"x":29,"y":-135},{"x":81,"y":-40},{"x":84,"y":234},{"x":163,"y":76},{"x":95,"y":-42},{"x":53,"y":23},{"x":200,"y":216},{"x":114,"y":-58},{"x":66,"y":-109},{"x":-22,"y":-88},{"x":-162,"y":-70},{"x":65,"y":-102},{"x":106,"y":27},{"x":78,"y":-49},{"x":25,"y":63},{"x":148,"y":-20},{"x":65,"y":56},{"x":43,"y":-31},{"x":44,"y":77},{"x":103,"y":28},{"x":57,"y":80},{"x":281,"y":126},{"x":62,"y":144},{"x":181,"y":140},{"x":14,"y":113},{"x":150,"y":35},{"x":94,"y":78},{"x":34,"y":-20},{"x":45,"y":164}],"type":"coastline"},{"arc":[{"x":44528,"y":50903},{"x":-19,"y":23},{"x":-4,"y":-56},{"x":23,"y":33}],"type":"coastline"},{"arc":[{"x":44772,"y":51109},{"x":-45,"y":-11},{"x":33,"y":-26},{"x":12,"y":37}],"type":"coastline"},{"arc":[{"x":45306,"y":51048},{"x":-37,"y":-3},{"x":22,"y":-28},{"x":15,"y":31}],"type":"coastline"},{"arc":[{"x":45360,"y":51211},{"x":-61,"y":10},{"x":-54,"y":-68},{"x":31,"y":-55},{"x":84,"y":113}],"type":"coastline"},{"arc":[{"x":45514,"y":51191},{"x":-83,"y":20},{"x":-51,"y":-213},{"x":134,"y":193}],"type":"coastline"},{"arc":[{"x":45634,"y":50318},{"x":-90,"y":212},{"x":-155,"y":201},{"x":-8,"y":135},{"x":-103,"y":23},{"x":11,"y":45},{"x":75,"y":-20},{"x":8,"y":36},{"x":-111,"y":53},{"x":-27,"y":110},{"x":-58,"y":-48},{"x":-47,"y":75},{"x":-92,"y":-33},{"x":26,"y":56},{"x":23,"y":-30},{"x":58,"y":49},{"x":-28,"y":97},{"x":-91,"y":-14},{"x":-54,"y":36},{"x":-66,"y":-70},{"x":-97,"y":12},{"x":2,"y":-47},{"x":56,"y":-13},{"x":-26,"y":-34},{"x":36,"y":6},{"x":-50,"y":-30},{"x":29,"y":-40},{"x":-68,"y":27},{"x":17,"y":-39},{"x":-49,"y":-32},{"x":38,"y":-40},{"x":-48,"y":-48},{"x":26,"y":-78},{"x":-64,"y":52},{"x":76,"y":74},{"x":-60,"y":12},{"x":35,"y":52},{"x":-95,"y":9},{"x":100,"y":92},{"x":-2,"y":64},{"x":-130,"y":-115},{"x":-85,"y":54},{"x":-74,"y":-31},{"x":-98,"y":60},{"x":-11,"y":-113},{"x":-37,"y":11},{"x":-16,"y":-75},{"x":-64,"y":-17},{"x":58,"y":-301},{"x":44,"y":-57},{"x":40,"y":70},{"x":-24,"y":153},{"x":-46,"y":4},{"x":40,"y":57},{"x":-59,"y":11},{"x":64,"y":69},{"x":-43,"y":-1},{"x":8,"y":38},{"x":19,"y":-26},{"x":3,"y":38},{"x":25,"y":-37},{"x":16,"y":25},{"x":-41,"y":-96},{"x":64,"y":-19},{"x":14,"y":141},{"x":12,"y":-69},{"x":45,"y":13},{"x":-3,"y":-89},{"x":13,"y":78},{"x":17,"y":9},{"x":9,"y":-39},{"x":19,"y":29},{"x":0,"y":-23},{"x":-30,"y":-16},{"x":39,"y":-47},{"x":-35,"y":-69},{"x":87,"y":7},{"x":-86,"y":-57},{"x":-45,"y":72},{"x":-35,"y":-47},{"x":8,"y":-77},{"x":100,"y":1},{"x":4,"y":-57},{"x":-47,"y":11},{"x":-27,"y":-49},{"x":-34,"y":49},{"x":58,"y":-163},{"x":-88,"y":-122},{"x":44,"y":-18},{"x":80,"y":64},{"x":29,"y":-23},{"x":28,"y":30},{"x":-36,"y":27},{"x":50,"y":-20},{"x":10,"y":28},{"x":-39,"y":19},{"x":38,"y":-6},{"x":9,"y":54},{"x":4,"y":-29},{"x":40,"y":17},{"x":-18,"y":-42},{"x":35,"y":-8},{"x":-48,"y":-23},{"x":55,"y":3},{"x":-4,"y":-58},{"x":-56,"y":13},{"x":-49,"y":-44},{"x":54,"y":18},{"x":5,"y":-37},{"x":35,"y":48},{"x":2,"y":-107},{"x":-24,"y":-22},{"x":-14,"y":55},{"x":-34,"y":-24},{"x":-22,"y":30},{"x":17,"y":-53},{"x":-35,"y":6},{"x":-49,"y":-84},{"x":35,"y":147},{"x":-106,"y":-99},{"x":-15,"y":37},{"x":-16,"y":-88},{"x":-116,"y":-114},{"x":-5,"y":-70},{"x":77,"y":-23},{"x":-15,"y":39},{"x":29,"y":-44},{"x":-12,"y":-26},{"x":45,"y":36},{"x":-20,"y":53},{"x":61,"y":-16},{"x":-44,"y":-119},{"x":-43,"y":5},{"x":33,"y":-40},{"x":-67,"y":34},{"x":-76,"y":-37},{"x":28,"y":-40},{"x":96,"y":14},{"x":-81,"y":-53},{"x":58,"y":15},{"x":-29,"y":-30},{"x":54,"y":-61},{"x":-166,"y":48},{"x":81,"y":-67},{"x":-22,"y":-40},{"x":-49,"y":55},{"x":-15,"y":-74},{"x":-45,"y":86},{"x":-41,"y":-99},{"x":34,"y":7},{"x":46,"y":-84},{"x":45,"y":49},{"x":37,"y":-27},{"x":-49,"y":-36},{"x":7,"y":-61},{"x":-20,"y":57},{"x":-101,"y":-10},{"x":-73,"y":-198},{"x":42,"y":-29},{"x":29,"y":35},{"x":1,"y":-35},{"x":-131,"y":-97},{"x":43,"y":-22},{"x":-19,"y":-32},{"x":57,"y":39},{"x":19,"y":-26},{"x":-69,"y":-114},{"x":16,"y":71},{"x":-76,"y":-19},{"x":-10,"y":-119},{"x":-101,"y":-54},{"x":17,"y":-41},{"x":-48,"y":32},{"x":-58,"y":-35},{"x":-40,"y":58},{"x":-40,"y":-32},{"x":-10,"y":116},{"x":-125,"y":-65},{"x":44,"y":-28},{"x":-67,"y":-85},{"x":90,"y":24},{"x":-15,"y":-52},{"x":-49,"y":-8},{"x":29,"y":-28},{"x":38,"y":-6},{"x":81,"y":102},{"x":33,"y":-28},{"x":-124,"y":-146},{"x":-64,"y":27},{"x":-43,"y":-128},{"x":-56,"y":37},{"x":-6,"y":153},{"x":-9,"y":-35},{"x":-92,"y":5},{"x":-70,"y":137},{"x":-51,"y":-67},{"x":18,"y":-79},{"x":-43,"y":113},{"x":-49,"y":-26},{"x":19,"y":-32},{"x":-43,"y":59},{"x":-67,"y":-3},{"x":-14,"y":-127},{"x":54,"y":-5},{"x":15,"y":56},{"x":63,"y":-150},{"x":-71,"y":18},{"x":-53,"y":-87},{"x":-34,"y":40},{"x":49,"y":69},{"x":-40,"y":-18},{"x":6,"y":30},{"x":-89,"y":25},{"x":6,"y":-52},{"x":-72,"y":-16},{"x":60,"y":-44},{"x":-23,"y":-70},{"x":-18,"y":57},{"x":-66,"y":6},{"x":-32,"y":-71},{"x":2,"y":-37},{"x":55,"y":10},{"x":24,"y":-81},{"x":-82,"y":6},{"x":-18,"y":-49},{"x":-48,"y":39},{"x":7,"y":-55},{"x":-60,"y":-14},{"x":61,"y":-42},{"x":-73,"y":-78},{"x":-333,"y":-190},{"x":-357,"y":-124}],"type":"coastline"},{"arc":[{"x":62932,"y":60902},{"x":22,"y":-32},{"x":483,"y":259},{"x":212,"y":217},{"x":22,"y":79},{"x":308,"y":250},{"x":486,"y":169},{"x":83,"y":15},{"x":45,"y":-50},{"x":-45,"y":50},{"x":112,"y":13},{"x":21,"y":86},{"x":35,"y":-8},{"x":-15,"y":-54},{"x":92,"y":72},{"x":306,"y":105},{"x":73,"y":-10},{"x":2,"y":30},{"x":6,"y":-33},{"x":110,"y":57},{"x":95,"y":-35}],"type":"coastline"},{"arc":[{"x":64725,"y":61904},{"x":-76,"y":-73},{"x":117,"y":90},{"x":-41,"y":-17}],"type":"coastline"},{"arc":[{"x":65777,"y":60912},{"x":-52,"y":52},{"x":-65,"y":-76},{"x":60,"y":-18},{"x":57,"y":42}],"type":"coastline"},{"arc":[{"x":42152,"y":33787},{"x":-158,"y":8},{"x":-63,"y":-71},{"x":28,"y":-26},{"x":48,"y":67},{"x":69,"y":-21},{"x":76,"y":43}],"type":"coastline"},{"arc":[{"x":42300,"y":33127},{"x":-79,"y":83},{"x":-37,"y":-154},{"x":41,"y":-16},{"x":6,"y":53},{"x":69,"y":34}],"type":"coastline"},{"arc":[{"x":42384,"y":34002},{"x":-164,"y":184},{"x":2,"y":50},{"x":-59,"y":-62},{"x":69,"y":-60},{"x":-6,"y":-91},{"x":101,"y":-66},{"x":-32,"y":-90},{"x":49,"y":16},{"x":40,"y":119}],"type":"coastline"},{"arc":[{"x":42562,"y":33496},{"x":-123,"y":172},{"x":-19,"y":-112},{"x":-178,"y":-139},{"x":16,"y":-63},{"x":27,"y":-17},{"x":17,"y":98},{"x":90,"y":21},{"x":38,"y":67},{"x":132,"y":-27}],"type":"coastline"},{"arc":[{"x":42618,"y":33297},{"x":-84,"y":24},{"x":24,"y":-96},{"x":9,"y":68},{"x":51,"y":4}],"type":"coastline"},{"arc":[{"x":42672,"y":33471},{"x":-57,"y":21},{"x":-17,"y":-32},{"x":74,"y":11}],"type":"coastline"},{"arc":[{"x":43000,"y":34509},{"x":-87,"y":18},{"x":37,"y":-59},{"x":50,"y":41}],"type":"coastline"},{"arc":[{"x":43031,"y":34960},{"x":-52,"y":28},{"x":42,"y":-73},{"x":10,"y":45}],"type":"coastline"},{"arc":[{"x":42959,"y":32123},{"x":-65,"y":-7},{"x":33,"y":-24},{"x":32,"y":31}],"type":"coastline"},{"arc":[{"x":43036,"y":34092},{"x":-82,"y":104},{"x":29,"y":86},{"x":-152,"y":55},{"x":10,"y":70},{"x":-72,"y":-12},{"x":-21,"y":53},{"x":25,"y":84},{"x":93,"y":58},{"x":1,"y":118},{"x":106,"y":56},{"x":-48,"y":103},{"x":27,"y":98},{"x":-168,"y":-235},{"x":36,"y":-33},{"x":-31,"y":-100},{"x":-63,"y":-35},{"x":-149,"y":36},{"x":34,"y":-91},{"x":-51,"y":-76},{"x":106,"y":41},{"x":61,"y":-134},{"x":-25,"y":-42},{"x":50,"y":-4},{"x":-55,"y":-75},{"x":-81,"y":41},{"x":16,"y":-217},{"x":-77,"y":-44},{"x":97,"y":-15},{"x":67,"y":-102},{"x":126,"y":-13},{"x":47,"y":58},{"x":83,"y":-15},{"x":-19,"y":78},{"x":65,"y":26},{"x":-23,"y":62},{"x":38,"y":16}],"type":"coastline"},{"arc":[{"x":42906,"y":29267},{"x":-49,"y":39},{"x":-66,"y":-61}],"type":"coastline"},{"arc":[{"x":43105,"y":32354},{"x":-14,"y":37},{"x":-23,"y":-32},{"x":37,"y":-5}],"type":"coastline"},{"arc":[{"x":43133,"y":32714},{"x":-84,"y":72},{"x":-29,"y":-71},{"x":-58,"y":13},{"x":-85,"y":-130},{"x":36,"y":-75},{"x":86,"y":57},{"x":-62,"y":-3},{"x":51,"y":47},{"x":-29,"y":51},{"x":76,"y":6},{"x":-3,"y":-28},{"x":101,"y":61}],"type":"coastline"},{"arc":[{"x":43308,"y":34755},{"x":-85,"y":46},{"x":15,"y":-80},{"x":56,"y":-10},{"x":14,"y":44}],"type":"coastline"},{"arc":[{"x":43362,"y":34670},{"x":-70,"y":-28},{"x":43,"y":-30},{"x":27,"y":58}],"type":"coastline"},{"arc":[{"x":43278,"y":31717},{"x":-37,"y":56},{"x":-67,"y":-36},{"x":-43,"y":-129},{"x":147,"y":109}],"type":"coastline"},{"arc":[{"x":43329,"y":32168},{"x":-154,"y":7},{"x":-75,"y":79},{"x":-13,"y":-50},{"x":44,"y":2},{"x":80,"y":-103},{"x":0,"y":50},{"x":118,"y":15}],"type":"coastline"},{"arc":[{"x":43395,"y":32402},{"x":-8,"y":26},{"x":-87,"y":-93},{"x":-25,"y":-95},{"x":55,"y":1},{"x":-12,"y":87},{"x":77,"y":74}],"type":"coastline"},{"arc":[{"x":44090,"y":34134},{"x":-109,"y":-54},{"x":-63,"y":49},{"x":27,"y":19},{"x":-170,"y":-3},{"x":-6,"y":36},{"x":-14,"y":-39},{"x":-8,"y":36},{"x":-2,"y":-128},{"x":-54,"y":-87},{"x":-277,"y":37},{"x":-35,"y":43},{"x":-194,"y":-28},{"x":-176,"y":-104},{"x":-36,"y":-241},{"x":-189,"y":49},{"x":-94,"y":-16},{"x":-122,"y":111},{"x":-66,"y":-3},{"x":-56,"y":-65},{"x":9,"y":-89},{"x":193,"y":5},{"x":60,"y":-141},{"x":58,"y":-15},{"x":14,"y":-107},{"x":51,"y":44},{"x":-81,"y":-116},{"x":121,"y":-163},{"x":-49,"y":-56},{"x":119,"y":-10},{"x":6,"y":-97},{"x":65,"y":-25},{"x":-43,"y":-15},{"x":67,"y":-24},{"x":89,"y":-210},{"x":82,"y":9},{"x":19,"y":-119},{"x":-80,"y":-49},{"x":-23,"y":-86},{"x":-24,"y":81},{"x":-57,"y":-6},{"x":21,"y":-137},{"x":30,"y":-27},{"x":30,"y":62},{"x":33,"y":-17},{"x":148,"y":164},{"x":60,"y":-92},{"x":-68,"y":-78},{"x":91,"y":72},{"x":46,"y":-14},{"x":-58,"y":-219},{"x":96,"y":88},{"x":18,"y":-70},{"x":-45,"y":-9},{"x":-5,"y":-111},{"x":-61,"y":-43},{"x":35,"y":-69},{"x":-52,"y":-8},{"x":-24,"y":-117},{"x":45,"y":1},{"x":-2,"y":-38},{"x":-113,"y":-91},{"x":77,"y":-38},{"x":-178,"y":-217},{"x":26,"y":-114},{"x":84,"y":-2},{"x":63,"y":-129},{"x":-43,"y":-29},{"x":-68,"y":52},{"x":-28,"y":-83},{"x":-74,"y":16},{"x":29,"y":-48},{"x":-54,"y":-28},{"x":29,"y":-61},{"x":74,"y":29},{"x":40,"y":-33},{"x":-133,"y":-100},{"x":55,"y":-5},{"x":103,"y":84},{"x":17,"y":-83},{"x":75,"y":36},{"x":38,"y":-71},{"x":-84,"y":5},{"x":-22,"y":-57},{"x":-20,"y":46},{"x":-62,"y":-20},{"x":-116,"y":-110},{"x":-64,"y":29},{"x":-206,"y":-407},{"x":56,"y":41},{"x":-21,"y":-86},{"x":69,"y":60},{"x":37,"y":-36},{"x":-60,"y":-28},{"x":-4,"y":-59},{"x":35,"y":43},{"x":40,"y":22},{"x":-32,"y":-26},{"x":77,"y":6},{"x":-67,"y":-13},{"x":43,"y":-56},{"x":-62,"y":6},{"x":-57,"y":-117},{"x":95,"y":-76},{"x":44,"y":44},{"x":28,"y":-29},{"x":-3,"y":42},{"x":20,"y":-45},{"x":100,"y":33},{"x":-35,"y":-52},{"x":64,"y":-19},{"x":3,"y":-61},{"x":-60,"y":-2},{"x":184,"y":-122},{"x":41,"y":-193},{"x":64,"y":-39},{"x":-131,"y":-91},{"x":-29,"y":33},{"x":-35,"y":-24},{"x":19,"y":-41},{"x":-116,"y":-24},{"x":-223,"y":-289}],"type":"coastline"},{"arc":[{"x":42791,"y":29245},{"x":28,"y":-40},{"x":37,"y":34},{"x":-19,"y":-40},{"x":76,"y":-21},{"x":31,"y":-70},{"x":31,"y":30},{"x":-41,"y":47},{"x":6,"y":21},{"x":30,"y":14},{"x":-9,"y":13},{"x":16,"y":17},{"x":-14,"y":17},{"x":-35,"y":-18},{"x":-22,"y":18}],"type":"coastline"},{"arc":[{"x":42909,"y":29268},{"x":62,"y":7},{"x":11,"y":-25},{"x":-4,"y":-27},{"x":107,"y":41},{"x":59,"y":-30},{"x":122,"y":27},{"x":20,"y":-46},{"x":147,"y":31},{"x":27,"y":-87},{"x":197,"y":-102},{"x":113,"y":23},{"x":-4,"y":109},{"x":50,"y":30},{"x":25,"y":-32},{"x":70,"y":108},{"x":175,"y":19},{"x":23,"y":-53},{"x":108,"y":19},{"x":208,"y":-200},{"x":128,"y":113},{"x":118,"y":-29},{"x":81,"y":42},{"x":-95,"y":98},{"x":136,"y":248},{"x":-6,"y":148},{"x":148,"y":-73},{"x":-34,"y":-48},{"x":45,"y":-162},{"x":-22,"y":-32},{"x":-60,"y":19},{"x":15,"y":-75},{"x":49,"y":10},{"x":35,"y":78},{"x":132,"y":50},{"x":-135,"y":174},{"x":59,"y":200},{"x":-67,"y":141},{"x":37,"y":70},{"x":-117,"y":20},{"x":-80,"y":68},{"x":36,"y":118},{"x":74,"y":41},{"x":-116,"y":56},{"x":97,"y":40},{"x":-51,"y":83},{"x":38,"y":100},{"x":-33,"y":113},{"x":43,"y":70},{"x":111,"y":44},{"x":-34,"y":71},{"x":76,"y":218},{"x":22,"y":-25},{"x":39,"y":43},{"x":28,"y":-92},{"x":51,"y":3},{"x":-48,"y":73},{"x":101,"y":56},{"x":18,"y":56},{"x":31,"y":-24},{"x":10,"y":78},{"x":66,"y":19},{"x":25,"y":-63},{"x":81,"y":20},{"x":56,"y":42},{"x":-24,"y":129},{"x":105,"y":65},{"x":25,"y":70},{"x":73,"y":58},{"x":168,"y":20},{"x":20,"y":157},{"x":48,"y":-1},{"x":-4,"y":-50},{"x":125,"y":54},{"x":11,"y":113},{"x":-38,"y":33},{"x":-43,"y":-20},{"x":-22,"y":45},{"x":54,"y":-17},{"x":50,"y":106},{"x":49,"y":-25},{"x":21,"y":83}],"type":"coastline"},{"arc":[{"x":43146,"y":29184},{"x":-13,"y":37},{"x":-29,"y":-59},{"x":42,"y":22}],"type":"coastline"},{"arc":[{"x":43676,"y":28758},{"x":-95,"y":76},{"x":41,"y":-81},{"x":54,"y":5}],"type":"coastline"},{"arc":[{"x":44798,"y":29082},{"x":-42,"y":48},{"x":-46,"y":-10},{"x":-35,"y":-138},{"x":42,"y":0},{"x":19,"y":94},{"x":62,"y":6}],"type":"coastline"},{"arc":[{"x":45078,"y":30471},{"x":-36,"y":55},{"x":-57,"y":-3},{"x":39,"y":-44},{"x":-40,"y":-95},{"x":47,"y":8},{"x":-68,"y":-62},{"x":-48,"y":26},{"x":-12,"y":-39},{"x":43,"y":-113},{"x":92,"y":-25},{"x":-15,"y":186},{"x":55,"y":106}],"type":"coastline"},{"arc":[{"x":45402,"y":31080},{"x":-82,"y":24},{"x":-21,"y":-41},{"x":36,"y":-26},{"x":67,"y":43}],"type":"coastline"},{"arc":[{"x":45424,"y":30586},{"x":-29,"y":60},{"x":-62,"y":-60},{"x":91,"y":0}],"type":"coastline"},{"arc":[{"x":46642,"y":30048},{"x":-39,"y":67},{"x":-46,"y":-11},{"x":-4,"y":65},{"x":-64,"y":-11},{"x":-21,"y":-89},{"x":174,"y":-21}],"type":"coastline"},{"arc":[{"x":30135,"y":28327},{"x":34,"y":-22},{"x":138,"y":79},{"x":121,"y":5},{"x":37,"y":-92},{"x":265,"y":334},{"x":214,"y":83},{"x":132,"y":-50},{"x":174,"y":134},{"x":236,"y":2},{"x":132,"y":48},{"x":386,"y":-174},{"x":229,"y":-248},{"x":225,"y":34},{"x":22,"y":35},{"x":90,"y":-32},{"x":-50,"y":-68},{"x":42,"y":-14},{"x":-37,"y":-138},{"x":189,"y":-174},{"x":134,"y":123},{"x":42,"y":200},{"x":-116,"y":140},{"x":-154,"y":-26},{"x":-22,"y":50},{"x":-21,"y":-62},{"x":25,"y":217},{"x":389,"y":206},{"x":209,"y":-94},{"x":28,"y":-229},{"x":74,"y":-12},{"x":-30,"y":-20},{"x":75,"y":-133},{"x":-90,"y":-225},{"x":-138,"y":-67},{"x":-106,"y":36},{"x":-263,"y":-207},{"x":-66,"y":31},{"x":-126,"y":-31},{"x":-84,"y":-94},{"x":0,"y":32},{"x":-122,"y":-42},{"x":1,"y":-54},{"x":-16,"y":65},{"x":-77,"y":-22},{"x":42,"y":-62},{"x":-97,"y":17},{"x":32,"y":97},{"x":-72,"y":-49},{"x":0,"y":-71},{"x":-227,"y":46},{"x":-81,"y":45},{"x":22,"y":45},{"x":-45,"y":30},{"x":-5,"y":-61},{"x":-32,"y":38},{"x":-239,"y":47},{"x":-202,"y":211},{"x":-37,"y":166},{"x":-99,"y":-65},{"x":-108,"y":27},{"x":-39,"y":-101},{"x":-43,"y":8},{"x":28,"y":54},{"x":-76,"y":-24},{"x":-45,"y":-165},{"x":-46,"y":-26},{"x":-31,"y":33},{"x":-28,"y":-36},{"x":102,"y":-120},{"x":-55,"y":-133},{"x":53,"y":-44},{"x":87,"y":35},{"x":67,"y":-27},{"x":163,"y":-179},{"x":-6,"y":-387},{"x":73,"y":-169},{"x":-35,"y":-57},{"x":40,"y":18},{"x":8,"y":-34},{"x":-36,"y":19},{"x":26,"y":-33},{"x":-93,"y":-23},{"x":59,"y":-149},{"x":-49,"y":-76},{"x":56,"y":-8},{"x":30,"y":55},{"x":25,"y":-55},{"x":33,"y":56},{"x":37,"y":-50},{"x":-33,"y":-56},{"x":55,"y":-6},{"x":16,"y":84},{"x":43,"y":13},{"x":54,"y":-41},{"x":-30,"y":-31},{"x":43,"y":-119},{"x":46,"y":114},{"x":57,"y":19},{"x":31,"y":-73},{"x":57,"y":-2},{"x":28,"y":-92},{"x":162,"y":-119},{"x":-3,"y":-91},{"x":56,"y":33},{"x":-47,"y":74},{"x":117,"y":87},{"x":-130,"y":99},{"x":84,"y":22},{"x":-91,"y":2},{"x":-39,"y":127},{"x":202,"y":225},{"x":286,"y":121},{"x":338,"y":46},{"x":295,"y":-63},{"x":13,"y":-69},{"x":193,"y":-86},{"x":20,"y":-85},{"x":-8,"y":39},{"x":29,"y":3},{"x":-17,"y":-32},{"x":42,"y":21},{"x":-8,"y":-39},{"x":56,"y":2},{"x":105,"y":-143},{"x":-42,"y":-82},{"x":107,"y":-14},{"x":89,"y":-68},{"x":195,"y":76},{"x":-9,"y":-29},{"x":70,"y":66},{"x":21,"y":-56},{"x":-20,"y":56},{"x":70,"y":-9},{"x":26,"y":56},{"x":164,"y":51},{"x":314,"y":-76},{"x":57,"y":-61},{"x":-23,"y":-23},{"x":5,"y":-28},{"x":2,"y":34},{"x":97,"y":-13},{"x":5,"y":52},{"x":48,"y":-25},{"x":-26,"y":26},{"x":28,"y":-20},{"x":48,"y":57},{"x":104,"y":14},{"x":96,"y":-52},{"x":-22,"y":-44},{"x":-37,"y":10},{"x":44,"y":-47},{"x":126,"y":36},{"x":81,"y":169},{"x":-42,"y":135},{"x":40,"y":26},{"x":-80,"y":48},{"x":-8,"y":94},{"x":120,"y":157},{"x":143,"y":31}],"type":"coastline"},{"arc":[{"x":31026,"y":23875},{"x":-97,"y":10},{"x":-7,"y":-58},{"x":104,"y":48}],"type":"coastline"},{"arc":[{"x":33591,"y":25115},{"x":-39,"y":72},{"x":-22,"y":-42},{"x":-57,"y":32},{"x":-85,"y":-87},{"x":-136,"y":-35},{"x":20,"y":-73},{"x":-53,"y":-36},{"x":-77,"y":19},{"x":-78,"y":-70},{"x":-58,"y":49},{"x":-99,"y":-98},{"x":-49,"y":8},{"x":66,"y":-25},{"x":-69,"y":-67},{"x":55,"y":-88},{"x":109,"y":-24},{"x":15,"y":88},{"x":176,"y":22},{"x":17,"y":51},{"x":41,"y":-19},{"x":108,"y":290},{"x":75,"y":-2},{"x":44,"y":50},{"x":96,"y":-15}],"type":"coastline"},{"arc":[{"x":33713,"y":25315},{"x":-89,"y":19},{"x":-37,"y":-72},{"x":-32,"y":28},{"x":-35,"y":-38},{"x":107,"y":-41},{"x":86,"y":104}],"type":"coastline"},{"arc":[{"x":33760,"y":25333},{"x":-40,"y":-9},{"x":21,"y":-26},{"x":19,"y":35}],"type":"coastline"},{"arc":[{"x":33990,"y":25360},{"x":-174,"y":216},{"x":38,"y":29},{"x":73,"y":-50},{"x":8,"y":124},{"x":-20,"y":-53},{"x":-68,"y":25},{"x":-24,"y":-43},{"x":-32,"y":43},{"x":-57,"y":-6},{"x":-31,"y":-39},{"x":35,"y":-55},{"x":-103,"y":-121},{"x":84,"y":9},{"x":19,"y":-69},{"x":56,"y":15},{"x":-34,"y":-49},{"x":88,"y":-16},{"x":42,"y":89},{"x":-20,"y":-68},{"x":63,"y":-17},{"x":-141,"y":-27},{"x":54,"y":-61},{"x":140,"y":63},{"x":4,"y":61}],"type":"coastline"},{"arc":[{"x":35493,"y":26542},{"x":-138,"y":96},{"x":-35,"y":-47},{"x":-109,"y":-7},{"x":23,"y":69},{"x":-63,"y":19},{"x":-118,"y":-119},{"x":26,"y":-23},{"x":-71,"y":25},{"x":-122,"y":-76},{"x":158,"y":-169},{"x":136,"y":16},{"x":102,"y":-91},{"x":32,"y":68},{"x":27,"y":-41},{"x":26,"y":88},{"x":15,"y":-60},{"x":48,"y":4},{"x":7,"y":91},{"x":-84,"y":87},{"x":87,"y":-36},{"x":-14,"y":32},{"x":63,"y":5},{"x":-70,"y":33},{"x":74,"y":36}],"type":"coastline"},{"arc":[{"x":35559,"y":26616},{"x":-103,"y":62},{"x":-71,"y":-22},{"x":35,"y":9},{"x":38,"y":-76},{"x":24,"y":37},{"x":77,"y":-10}],"type":"coastline"},{"arc":[{"x":35665,"y":26587},{"x":-154,"y":-42},{"x":-23,"y":-50},{"x":73,"y":-10},{"x":-22,"y":33},{"x":126,"y":69}],"type":"coastline"},{"arc":[{"x":35828,"y":26846},{"x":-116,"y":43},{"x":-75,"y":-124},{"x":-40,"y":26},{"x":43,"y":-45},{"x":-57,"y":-56},{"x":181,"y":19},{"x":64,"y":137}],"type":"coastline"},{"arc":[{"x":31797,"y":29688},{"x":-58,"y":12},{"x":-11,"y":-48},{"x":65,"y":-3},{"x":4,"y":39}],"type":"coastline"},{"arc":[{"x":32163,"y":30156},{"x":27,"y":-58},{"x":-32,"y":-23},{"x":60,"y":-63},{"x":-38,"y":-45},{"x":46,"y":0},{"x":-78,"y":-42},{"x":5,"y":-47},{"x":-48,"y":25},{"x":42,"y":-48},{"x":-106,"y":-113},{"x":-235,"y":-114},{"x":-98,"y":3},{"x":-115,"y":337},{"x":-83,"y":-14},{"x":-85,"y":-118},{"x":-73,"y":39},{"x":-16,"y":-24},{"x":69,"y":167},{"x":-45,"y":26},{"x":-214,"y":-236},{"x":2,"y":-177},{"x":-170,"y":-52},{"x":-40,"y":-65},{"x":-45,"y":37},{"x":-12,"y":-83},{"x":-63,"y":24},{"x":-60,"y":-61},{"x":-187,"y":-325},{"x":-27,"y":-230},{"x":-145,"y":-183},{"x":24,"y":-49},{"x":-67,"y":-115},{"x":-81,"y":1},{"x":-6,"y":-119},{"x":-93,"y":-5},{"x":20,"y":-52},{"x":-61,"y":-27}],"type":"coastline"},{"arc":[{"x":27857,"y":27728},{"x":-73,"y":5},{"x":-23,"y":163},{"x":-310,"y":469},{"x":-276,"y":-59},{"x":13,"y":35},{"x":-332,"y":-304},{"x":-54,"y":-220},{"x":41,"y":-292},{"x":131,"y":-108},{"x":135,"y":0},{"x":109,"y":-81},{"x":307,"y":-46},{"x":15,"y":151},{"x":164,"y":156},{"x":99,"y":7},{"x":-11,"y":111},{"x":65,"y":13}],"type":"coastline"},{"arc":[{"x":27947,"y":26441},{"x":-2,"y":79},{"x":-33,"y":-10},{"x":8,"y":56},{"x":-53,"y":37},{"x":47,"y":33},{"x":-54,"y":129},{"x":-96,"y":109},{"x":-59,"y":-3},{"x":9,"y":-92},{"x":-57,"y":-29},{"x":-6,"y":-78},{"x":84,"y":-68},{"x":88,"y":15},{"x":-22,"y":-97},{"x":146,"y":-81}],"type":"coastline"},{"arc":[{"x":29142,"y":29047},{"x":-148,"y":27},{"x":-19,"y":-103},{"x":99,"y":15},{"x":68,"y":61}],"type":"coastline"},{"arc":[{"x":29328,"y":27015},{"x":-56,"y":63},{"x":-56,"y":-13},{"x":-6,"y":-142},{"x":-39,"y":-2},{"x":42,"y":-59},{"x":115,"y":153}],"type":"coastline"},{"arc":[{"x":29463,"y":29776},{"x":-220,"y":95},{"x":-110,"y":-39},{"x":-292,"y":24},{"x":-131,"y":-91},{"x":-266,"y":6},{"x":-76,"y":-83},{"x":-91,"y":8},{"x":-50,"y":-24},{"x":-29,"y":-106},{"x":-295,"y":-134},{"x":-73,"y":23},{"x":-22,"y":-38},{"x":-87,"y":76},{"x":-71,"y":-43},{"x":-100,"y":50},{"x":-29,"y":-59},{"x":-84,"y":10},{"x":12,"y":-114},{"x":-134,"y":-236},{"x":113,"y":-55},{"x":172,"y":33},{"x":247,"y":-64},{"x":1,"y":92},{"x":433,"y":256},{"x":111,"y":35},{"x":331,"y":-49},{"x":244,"y":141},{"x":2,"y":55},{"x":55,"y":-16},{"x":117,"y":73},{"x":84,"y":-23},{"x":238,"y":197}],"type":"coastline"},{"arc":[{"x":29376,"y":27471},{"x":-42,"y":67},{"x":-38,"y":-7},{"x":29,"y":-176},{"x":51,"y":116}],"type":"coastline"},{"arc":[{"x":29514,"y":25680},{"x":-100,"y":91},{"x":-70,"y":-98},{"x":31,"y":-94},{"x":84,"y":-25},{"x":55,"y":126}],"type":"coastline"},{"arc":[{"x":65385,"y":62082},{"x":274,"y":129},{"x":137,"y":-47},{"x":157,"y":84},{"x":23,"y":-27},{"x":92,"y":30},{"x":93,"y":192},{"x":369,"y":167},{"x":506,"y":115},{"x":672,"y":66},{"x":322,"y":-18},{"x":138,"y":-71},{"x":-1,"y":39},{"x":62,"y":0},{"x":-50,"y":-23},{"x":43,"y":-13},{"x":-12,"y":-44},{"x":59,"y":54},{"x":274,"y":-129},{"x":154,"y":-151},{"x":77,"y":-146},{"x":-14,"y":-248},{"x":-24,"y":19}],"type":"coastline"},{"arc":[{"x":68736,"y":62060},{"x":-52,"y":-61},{"x":-18,"y":69},{"x":-35,"y":-17},{"x":11,"y":-114},{"x":-50,"y":-57},{"x":45,"y":-80},{"x":-47,"y":-137},{"x":64,"y":-55},{"x":147,"y":-20},{"x":16,"y":-64},{"x":82,"y":-43},{"x":62,"y":-15},{"x":55,"y":71},{"x":26,"y":-71},{"x":149,"y":-32},{"x":50,"y":32},{"x":-109,"y":80},{"x":-30,"y":155},{"x":-74,"y":102},{"x":10,"y":91},{"x":171,"y":245},{"x":345,"y":234},{"x":420,"y":158},{"x":106,"y":-14},{"x":10,"y":-38},{"x":-14,"y":62},{"x":62,"y":-2},{"x":-31,"y":31},{"x":48,"y":0},{"x":-3,"y":83},{"x":15,"y":-101},{"x":-40,"y":-53},{"x":68,"y":82},{"x":506,"y":75},{"x":131,"y":-52},{"x":49,"y":-106},{"x":188,"y":-172}],"type":"coastline"},{"arc":[{"x":848,"y":67920},{"x":-55,"y":35},{"x":-30,"y":-62},{"x":85,"y":27}],"type":"coastline"},{"arc":[{"x":3311,"y":67411},{"x":-56,"y":64},{"x":-91,"y":20},{"x":-144,"y":-222},{"x":119,"y":30},{"x":68,"y":-30},{"x":104,"y":138}],"type":"coastline"},{"arc":[{"x":1076,"y":113821},{"x":-70,"y":8},{"x":14,"y":-57},{"x":56,"y":49}],"type":"coastline"},{"arc":[{"x":6071,"y":67267},{"x":-98,"y":34},{"x":-31,"y":-60},{"x":89,"y":-15},{"x":40,"y":41}],"type":"coastline"},{"arc":[{"x":10912,"y":70670},{"x":-33,"y":10},{"x":-16,"y":-49},{"x":49,"y":39}],"type":"coastline"},{"arc":[{"x":10961,"y":70737},{"x":-35,"y":34},{"x":-17,"y":-48},{"x":52,"y":14}],"type":"coastline"},{"arc":[{"x":11112,"y":70372},{"x":-42,"y":17},{"x":-23,"y":-39},{"x":65,"y":22}],"type":"coastline"},{"arc":[{"x":11562,"y":70353},{"x":-65,"y":31},{"x":-4,"y":31},{"x":45,"y":-3},{"x":-27,"y":84},{"x":-75,"y":-67},{"x":20,"y":80},{"x":-127,"y":-16},{"x":-5,"y":92},{"x":-69,"y":-66},{"x":-156,"y":26},{"x":102,"y":-26},{"x":21,"y":-63},{"x":340,"y":-103}],"type":"coastline"},{"arc":[{"x":13261,"y":70600},{"x":-20,"y":93},{"x":-100,"y":51},{"x":-123,"y":16},{"x":15,"y":-56},{"x":-75,"y":28},{"x":19,"y":-160},{"x":91,"y":6},{"x":0,"y":29},{"x":57,"y":-49},{"x":-6,"y":78},{"x":44,"y":19},{"x":68,"y":-20},{"x":-25,"y":-75},{"x":55,"y":40}],"type":"coastline"},{"arc":[{"x":13428,"y":70594},{"x":-71,"y":49},{"x":21,"y":53},{"x":-100,"y":59},{"x":0,"y":-128},{"x":38,"y":19},{"x":13,"y":-69},{"x":99,"y":17}],"type":"coastline"},{"arc":[{"x":13627,"y":70585},{"x":-91,"y":47},{"x":-108,"y":-51},{"x":18,"y":-31},{"x":181,"y":35}],"type":"coastline"},{"arc":[{"x":14981,"y":70666},{"x":-56,"y":13},{"x":40,"y":-40},{"x":16,"y":27}],"type":"coastline"},{"arc":[{"x":15561,"y":70533},{"x":-71,"y":38},{"x":27,"y":-49},{"x":44,"y":11}],"type":"coastline"},{"arc":[{"x":15791,"y":70372},{"x":-23,"y":62},{"x":-53,"y":-4},{"x":53,"y":-85},{"x":23,"y":27}],"type":"coastline"},{"arc":[{"x":56106,"y":53890},{"x":218,"y":656},{"x":87,"y":119},{"x":-46,"y":-36},{"x":93,"y":278},{"x":238,"y":319},{"x":50,"y":177},{"x":198,"y":178},{"x":-51,"y":203},{"x":56,"y":293},{"x":149,"y":92},{"x":-112,"y":-26},{"x":36,"y":10},{"x":-15,"y":13},{"x":48,"y":34},{"x":-27,"y":-2},{"x":29,"y":10},{"x":-13,"y":10},{"x":17,"y":33},{"x":220,"y":260},{"x":322,"y":317},{"x":139,"y":290},{"x":115,"y":101},{"x":-78,"y":-46},{"x":47,"y":46},{"x":-33,"y":3},{"x":227,"y":161},{"x":92,"y":-7},{"x":-77,"y":14},{"x":260,"y":102},{"x":254,"y":233},{"x":68,"y":116},{"x":206,"y":131},{"x":284,"y":104},{"x":316,"y":57},{"x":289,"y":141},{"x":581,"y":844},{"x":62,"y":28},{"x":-66,"y":-2},{"x":40,"y":6},{"x":126,"y":478},{"x":164,"y":114},{"x":-113,"y":-60},{"x":-79,"y":49},{"x":-29,"y":-20},{"x":8,"y":76},{"x":92,"y":-66},{"x":65,"y":58},{"x":26,"y":-19},{"x":-35,"y":41},{"x":21,"y":-21},{"x":68,"y":145},{"x":322,"y":316},{"x":355,"y":229},{"x":20,"y":-23},{"x":17,"y":31},{"x":-16,"y":-42},{"x":230,"y":109},{"x":34,"y":-33},{"x":636,"y":53},{"x":691,"y":337}],"type":"coastline"},{"arc":[{"x":57127,"y":56235},{"x":-45,"y":37},{"x":-26,"y":-34},{"x":24,"y":-20},{"x":47,"y":17}],"type":"coastline"},{"arc":[{"x":62663,"y":59833},{"x":-16,"y":31},{"x":-148,"y":-62},{"x":-68,"y":-120},{"x":120,"y":35},{"x":112,"y":116}],"type":"coastline"},{"arc":[{"x":71560,"y":68164},{"x":-32,"y":4},{"x":29,"y":-34},{"x":3,"y":30}],"type":"coastline"},{"arc":[{"x":75922,"y":65905},{"x":-263,"y":327},{"x":-15,"y":237},{"x":-85,"y":169},{"x":-330,"y":296},{"x":-142,"y":288},{"x":-13,"y":139},{"x":55,"y":173},{"x":84,"y":167},{"x":202,"y":229},{"x":-119,"y":-5},{"x":-26,"y":-40},{"x":-66,"y":28},{"x":-109,"y":-68},{"x":-508,"y":-135},{"x":-243,"y":-17},{"x":21,"y":-24},{"x":-40,"y":-11},{"x":-349,"y":30},{"x":-421,"y":-51},{"x":-156,"y":29},{"x":7,"y":-32},{"x":-130,"y":36},{"x":-2,"y":-67},{"x":-43,"y":89},{"x":-94,"y":-34},{"x":-859,"y":124},{"x":-124,"y":42},{"x":14,"y":31},{"x":-19,"y":-26},{"x":-166,"y":38},{"x":-303,"y":127},{"x":-44,"y":167},{"x":32,"y":-133},{"x":-40,"y":-16},{"x":-1,"y":47},{"x":-44,"y":6},{"x":26,"y":47},{"x":-46,"y":-42},{"x":-64,"y":115},{"x":69,"y":152},{"x":-91,"y":43},{"x":-71,"y":125},{"x":-98,"y":46},{"x":-143,"y":177}],"type":"coastline"},{"arc":[{"x":71069,"y":62326},{"x":294,"y":51},{"x":248,"y":-37},{"x":142,"y":-79},{"x":-8,"y":-181},{"x":138,"y":-31},{"x":131,"y":153},{"x":-14,"y":97},{"x":126,"y":28},{"x":49,"y":102},{"x":281,"y":130},{"x":11,"y":96},{"x":82,"y":102},{"x":-115,"y":253},{"x":180,"y":266},{"x":-10,"y":121},{"x":39,"y":44},{"x":33,"y":-19},{"x":-27,"y":22},{"x":70,"y":55},{"x":522,"y":179},{"x":601,"y":69},{"x":111,"y":-16},{"x":92,"y":-79},{"x":42,"y":-179},{"x":44,"y":-2},{"x":27,"y":108},{"x":-38,"y":93},{"x":16,"y":-24},{"x":57,"y":91},{"x":176,"y":51},{"x":139,"y":-26},{"x":111,"y":52},{"x":61,"y":-13},{"x":-93,"y":200},{"x":-183,"y":136},{"x":-63,"y":124},{"x":36,"y":127},{"x":133,"y":101},{"x":-14,"y":43},{"x":51,"y":40},{"x":-57,"y":163}],"type":"coastline"},{"arc":[{"x":74462,"y":65413},{"x":186,"y":5},{"x":172,"y":82},{"x":154,"y":-4},{"x":78,"y":71},{"x":303,"y":54},{"x":78,"y":107},{"x":150,"y":65},{"x":37,"y":61},{"x":116,"y":40},{"x":101,"y":-45},{"x":85,"y":56}],"type":"coastline"},{"arc":[{"x":45906,"y":56003},{"x":-27,"y":43},{"x":-14,"y":-44},{"x":41,"y":1}],"type":"coastline"},{"arc":[{"x":48129,"y":59303},{"x":-189,"y":-127},{"x":-124,"y":10},{"x":-67,"y":-38},{"x":-39,"y":114},{"x":-155,"y":-1},{"x":-35,"y":-63},{"x":-100,"y":40},{"x":-39,"y":127},{"x":-74,"y":16},{"x":14,"y":51},{"x":-108,"y":5},{"x":-138,"y":-60},{"x":-33,"y":33},{"x":-161,"y":-212},{"x":-149,"y":-17},{"x":-198,"y":-135},{"x":-24,"y":25},{"x":-5,"y":-75},{"x":-105,"y":-114},{"x":-225,"y":-86},{"x":-43,"y":30},{"x":-30,"y":-32},{"x":-70,"y":54},{"x":-23,"y":-108},{"x":87,"y":23},{"x":4,"y":-59},{"x":-20,"y":23},{"x":-72,"y":-132},{"x":-93,"y":-39},{"x":16,"y":-61},{"x":-46,"y":-5},{"x":-47,"y":-149},{"x":-54,"y":-21},{"x":170,"y":-245},{"x":67,"y":-12},{"x":19,"y":65},{"x":42,"y":-5},{"x":-11,"y":-43},{"x":107,"y":-77},{"x":-7,"y":-65},{"x":158,"y":0},{"x":145,"y":138},{"x":176,"y":-89},{"x":35,"y":49},{"x":68,"y":-48},{"x":-6,"y":60},{"x":87,"y":-34},{"x":46,"y":59},{"x":64,"y":-85},{"x":70,"y":13},{"x":103,"y":123},{"x":279,"y":-102},{"x":-6,"y":55},{"x":50,"y":-30},{"x":207,"y":68},{"x":-70,"y":211},{"x":60,"y":120},{"x":-48,"y":50},{"x":137,"y":58},{"x":-10,"y":-78},{"x":100,"y":-45},{"x":185,"y":-203},{"x":102,"y":-434},{"x":41,"y":-18},{"x":-3,"y":-37},{"x":-42,"y":48},{"x":-74,"y":-195},{"x":-68,"y":-322},{"x":-256,"y":-122},{"x":-32,"y":-45},{"x":39,"y":-11},{"x":-47,"y":0},{"x":-15,"y":-56},{"x":-193,"y":39},{"x":31,"y":29},{"x":98,"y":-28},{"x":-32,"y":57},{"x":56,"y":-14},{"x":-27,"y":64},{"x":-131,"y":-62},{"x":-307,"y":-588},{"x":-199,"y":-81},{"x":21,"y":-34},{"x":-104,"y":-2},{"x":23,"y":28},{"x":-111,"y":22},{"x":-215,"y":-131},{"x":10,"y":-48},{"x":-16,"y":62},{"x":-261,"y":-320},{"x":-223,"y":-82},{"x":-135,"y":-1},{"x":-112,"y":81},{"x":-16,"y":59},{"x":-44,"y":-25},{"x":303,"y":-929},{"x":9,"y":-272},{"x":-31,"y":29},{"x":-60,"y":-393},{"x":147,"y":-800},{"x":-26,"y":-356}],"type":"coastline"},{"arc":[{"x":53136,"y":48791},{"x":248,"y":203},{"x":56,"y":173},{"x":277,"y":291},{"x":735,"y":584},{"x":39,"y":-16},{"x":-29,"y":20},{"x":170,"y":93},{"x":78,"y":95},{"x":572,"y":318}],"type":"coastline"},{"arc":[{"x":55282,"y":50552},{"x":490,"y":159},{"x":74,"y":-9},{"x":34,"y":-57},{"x":41,"y":18}],"type":"coastline"},{"arc":[{"x":55921,"y":50663},{"x":255,"y":57},{"x":72,"y":-99},{"x":77,"y":13},{"x":125,"y":-101},{"x":330,"y":31},{"x":59,"y":-66},{"x":-55,"y":-90},{"x":49,"y":-57},{"x":259,"y":38},{"x":72,"y":80},{"x":82,"y":-7},{"x":161,"y":125},{"x":177,"y":-47},{"x":120,"y":61},{"x":-21,"y":41},{"x":94,"y":28},{"x":155,"y":318},{"x":28,"y":203},{"x":-52,"y":97},{"x":164,"y":383},{"x":201,"y":236},{"x":86,"y":185},{"x":31,"y":242},{"x":119,"y":238},{"x":-18,"y":192},{"x":-43,"y":4},{"x":-18,"y":63},{"x":-61,"y":21},{"x":-80,"y":-42},{"x":-139,"y":74},{"x":-62,"y":-181},{"x":22,"y":-103},{"x":-59,"y":-109},{"x":-212,"y":-57},{"x":-109,"y":41},{"x":17,"y":64},{"x":-76,"y":-51},{"x":-16,"y":56},{"x":-127,"y":-76},{"x":18,"y":-61},{"x":-73,"y":14},{"x":43,"y":-257},{"x":-33,"y":-29},{"x":42,"y":-18},{"x":-50,"y":12},{"x":-73,"y":-206},{"x":-96,"y":-15},{"x":-107,"y":-96},{"x":-60,"y":5},{"x":-57,"y":-161},{"x":-40,"y":30},{"x":-53,"y":-84},{"x":144,"y":-237},{"x":87,"y":59},{"x":-53,"y":-69},{"x":42,"y":-70},{"x":-58,"y":30},{"x":31,"y":-60},{"x":-41,"y":-36},{"x":-52,"y":88},{"x":-13,"y":-88},{"x":-39,"y":24},{"x":-211,"y":-145},{"x":-45,"y":24},{"x":39,"y":23},{"x":-36,"y":54},{"x":-110,"y":-29},{"x":3,"y":-93},{"x":-105,"y":16},{"x":-47,"y":-47},{"x":-35,"y":106},{"x":102,"y":101},{"x":-34,"y":103},{"x":-55,"y":-25},{"x":-17,"y":94},{"x":-44,"y":-25},{"x":-30,"y":39},{"x":-10,"y":71},{"x":40,"y":72},{"x":192,"y":61},{"x":32,"y":131},{"x":-309,"y":-44},{"x":-340,"y":22}],"type":"coastline"},{"arc":[{"x":56923,"y":51701},{"x":-82,"y":60},{"x":-45,"y":-50},{"x":-76,"y":30},{"x":-44,"y":-99},{"x":32,"y":-96},{"x":-94,"y":-73},{"x":32,"y":-44},{"x":-57,"y":-66},{"x":101,"y":-19},{"x":114,"y":-141},{"x":62,"y":34},{"x":-46,"y":57},{"x":-60,"y":-12},{"x":68,"y":62},{"x":-27,"y":134},{"x":67,"y":-35},{"x":-87,"y":137},{"x":31,"y":63},{"x":111,"y":58}],"type":"coastline"},{"arc":[{"x":50747,"y":65683},{"x":15,"y":28},{"x":-21,"y":-18},{"x":8,"y":22},{"x":-30,"y":25},{"x":7,"y":17},{"x":19,"y":-28},{"x":24,"y":-13},{"x":-23,"y":14},{"x":-14,"y":25},{"x":-45,"y":37},{"x":31,"y":-51},{"x":-27,"y":28},{"x":-171,"y":-35},{"x":19,"y":-95},{"x":15,"y":25},{"x":58,"y":-69},{"x":-128,"y":-365},{"x":43,"y":31},{"x":28,"y":-82},{"x":-44,"y":-197},{"x":-378,"y":-492},{"x":-195,"y":-176},{"x":-112,"y":-39},{"x":-45,"y":-75},{"x":-472,"y":-192},{"x":-295,"y":-7},{"x":-172,"y":80},{"x":-156,"y":-55},{"x":-142,"y":19},{"x":-243,"y":-103},{"x":-4,"y":-102},{"x":-177,"y":-82},{"x":-21,"y":-57},{"x":55,"y":4},{"x":17,"y":-49},{"x":-87,"y":-81},{"x":17,"y":-102},{"x":-86,"y":-61},{"x":-23,"y":-117},{"x":76,"y":-32},{"x":-42,"y":-36},{"x":-12,"y":-229},{"x":-55,"y":-52},{"x":-111,"y":-11},{"x":-12,"y":-62},{"x":-78,"y":-46},{"x":-12,"y":-123},{"x":-173,"y":-206},{"x":-197,"y":-82},{"x":-108,"y":16},{"x":-111,"y":-85},{"x":-78,"y":-202}],"type":"coastline"},{"arc":[{"x":47079,"y":62145},{"x":16,"y":-183},{"x":32,"y":-46},{"x":128,"y":-26},{"x":113,"y":-235},{"x":53,"y":8},{"x":-19,"y":153},{"x":19,"y":82},{"x":58,"y":17},{"x":-27,"y":93},{"x":63,"y":32},{"x":106,"y":-27},{"x":57,"y":-148},{"x":22,"y":76},{"x":102,"y":-44},{"x":88,"y":85},{"x":64,"y":-69},{"x":130,"y":58},{"x":103,"y":-84},{"x":76,"y":-3},{"x":134,"y":52},{"x":73,"y":137},{"x":98,"y":6},{"x":127,"y":-81},{"x":83,"y":1},{"x":95,"y":-231}],"type":"coastline"},{"arc":[{"x":48628,"y":61629},{"x":-67,"y":-47},{"x":22,"y":-61},{"x":-57,"y":47},{"x":-40,"y":-2},{"x":1,"y":-57},{"x":-54,"y":43},{"x":-17,"y":-140},{"x":-98,"y":-111},{"x":-106,"y":21},{"x":-16,"y":62},{"x":-76,"y":-5},{"x":32,"y":-43},{"x":-41,"y":-141},{"x":32,"y":-84},{"x":13,"y":46},{"x":69,"y":-24},{"x":0,"y":71},{"x":8,"y":-49},{"x":81,"y":12},{"x":51,"y":-78},{"x":87,"y":105},{"x":31,"y":-85},{"x":69,"y":-16},{"x":64,"y":-87},{"x":134,"y":-42},{"x":38,"y":23},{"x":6,"y":-69},{"x":63,"y":-41},{"x":-21,"y":-213},{"x":63,"y":-137},{"x":-28,"y":-417},{"x":-148,"y":-444},{"x":-163,"y":-230},{"x":-257,"y":-43},{"x":-127,"y":20},{"x":-46,"y":74},{"x":40,"y":-112},{"x":-41,"y":-72}],"type":"coastline"},{"arc":[{"x":44530,"y":44572},{"x":153,"y":476},{"x":129,"y":95},{"x":82,"y":144},{"x":83,"y":24},{"x":26,"y":92},{"x":25,"y":-22},{"x":0,"y":43},{"x":28,"y":-16},{"x":65,"y":94},{"x":63,"y":17},{"x":-51,"y":8},{"x":46,"y":27},{"x":4,"y":-29},{"x":40,"y":71},{"x":36,"y":-26},{"x":-29,"y":39},{"x":73,"y":-22},{"x":90,"y":32},{"x":27,"y":-42},{"x":69,"y":44},{"x":-119,"y":40},{"x":110,"y":153},{"x":114,"y":48},{"x":3,"y":-131},{"x":183,"y":-26},{"x":-27,"y":50},{"x":-105,"y":19},{"x":5,"y":31},{"x":82,"y":-11},{"x":-108,"y":96},{"x":82,"y":-9},{"x":4,"y":60},{"x":11,"y":-63},{"x":1,"y":48},{"x":33,"y":-6},{"x":-7,"y":-129},{"x":51,"y":-7},{"x":-18,"y":85},{"x":78,"y":-86},{"x":-26,"y":35},{"x":57,"y":31},{"x":-49,"y":21},{"x":78,"y":22},{"x":60,"y":-11},{"x":14,"y":-88},{"x":33,"y":-10},{"x":-18,"y":-15},{"x":30,"y":5},{"x":-37,"y":-23},{"x":42,"y":8},{"x":28,"y":36},{"x":19,"y":-68},{"x":32,"y":53},{"x":76,"y":-55}],"type":"coastline"},{"arc":[{"x":45060,"y":45087},{"x":53,"y":81},{"x":-37,"y":35},{"x":-106,"y":-137},{"x":38,"y":-32},{"x":38,"y":38},{"x":-47,"y":-75},{"x":35,"y":-28},{"x":118,"y":148},{"x":-18,"y":46},{"x":-74,"y":-76}],"type":"coastline"},{"arc":[{"x":45213,"y":45474},{"x":-46,"y":30},{"x":-61,"y":-54},{"x":107,"y":24}],"type":"coastline"},{"arc":[{"x":45297,"y":45532},{"x":-54,"y":24},{"x":-46,"y":-38},{"x":100,"y":14}],"type":"coastline"},{"arc":[{"x":45485,"y":45686},{"x":-64,"y":-7},{"x":33,"y":-29},{"x":31,"y":36}],"type":"coastline"},{"arc":[{"x":45587,"y":45836},{"x":-133,"y":-59},{"x":50,"y":-82},{"x":81,"y":37},{"x":-74,"y":40},{"x":76,"y":64}],"type":"coastline"},{"arc":[{"x":45903,"y":45660},{"x":-76,"y":113},{"x":-1,"y":-71},{"x":77,"y":-42}],"type":"coastline"},{"arc":[{"x":45974,"y":45760},{"x":-15,"y":82},{"x":-56,"y":9},{"x":-28,"y":-72},{"x":33,"y":-54},{"x":33,"y":18},{"x":-37,"y":-58},{"x":44,"y":4},{"x":26,"y":71}],"type":"coastline"},{"arc":[{"x":46044,"y":45623},{"x":-31,"y":91},{"x":-46,"y":-94},{"x":77,"y":3}],"type":"coastline"},{"arc":[{"x":46097,"y":45708},{"x":-61,"y":25},{"x":16,"y":-84},{"x":45,"y":59}],"type":"coastline"},{"arc":[{"x":1834,"y":30235},{"x":-17,"y":49},{"x":-30,"y":-28},{"x":47,"y":-21}],"type":"coastline"},{"arc":[{"x":7909,"y":30451},{"x":-16,"y":81},{"x":-68,"y":39},{"x":-134,"y":-41},{"x":-40,"y":-113},{"x":48,"y":-66},{"x":182,"y":24},{"x":28,"y":76}],"type":"coastline"},{"arc":[{"x":8294,"y":30616},{"x":-35,"y":166},{"x":-93,"y":-30},{"x":5,"y":-100},{"x":123,"y":-36}],"type":"coastline"},{"arc":[{"x":41514,"y":30249},{"x":-68,"y":194},{"x":65,"y":59},{"x":-75,"y":4},{"x":-81,"y":96},{"x":8,"y":175},{"x":-48,"y":41},{"x":36,"y":251},{"x":-52,"y":64},{"x":13,"y":28},{"x":38,"y":-36},{"x":68,"y":-6},{"x":-90,"y":28},{"x":83,"y":-24},{"x":113,"y":140},{"x":-20,"y":27},{"x":144,"y":57},{"x":-18,"y":34},{"x":56,"y":39},{"x":64,"y":-19},{"x":8,"y":108},{"x":48,"y":-26},{"x":-30,"y":80},{"x":42,"y":61},{"x":-52,"y":54},{"x":51,"y":-7},{"x":25,"y":44},{"x":-76,"y":112},{"x":31,"y":73},{"x":-93,"y":57},{"x":42,"y":37},{"x":-430,"y":285},{"x":-127,"y":21},{"x":-178,"y":-59},{"x":-56,"y":12},{"x":25,"y":24},{"x":-119,"y":2},{"x":-10,"y":-52},{"x":-252,"y":-87},{"x":14,"y":-148},{"x":35,"y":46},{"x":26,"y":-61},{"x":-13,"y":-38},{"x":-25,"y":19},{"x":26,"y":-86},{"x":-158,"y":79},{"x":-40,"y":-24},{"x":-14,"y":-170},{"x":-107,"y":-15},{"x":13,"y":-158},{"x":75,"y":-73},{"x":-31,"y":-114},{"x":-147,"y":-10},{"x":-242,"y":53},{"x":-108,"y":289},{"x":138,"y":256},{"x":-83,"y":35},{"x":86,"y":-18},{"x":6,"y":48},{"x":-58,"y":29},{"x":60,"y":-20},{"x":-2,"y":46},{"x":-170,"y":247},{"x":52,"y":-17},{"x":-32,"y":67},{"x":42,"y":23},{"x":-59,"y":-29},{"x":4,"y":127},{"x":60,"y":185},{"x":-27,"y":66},{"x":43,"y":-24},{"x":35,"y":129}],"type":"coastline"},{"arc":[{"x":42043,"y":32030},{"x":-37,"y":110},{"x":-58,"y":-127},{"x":7,"y":-131},{"x":63,"y":42},{"x":25,"y":106}],"type":"coastline"},{"arc":[{"x":37886,"y":32899},{"x":-46,"y":56},{"x":-5,"y":-49},{"x":51,"y":-7}],"type":"coastline"},{"arc":[{"x":38739,"y":33509},{"x":-75,"y":22},{"x":-32,"y":-33},{"x":49,"y":-43},{"x":58,"y":54}],"type":"coastline"},{"arc":[{"x":38907,"y":32997},{"x":-13,"y":32},{"x":-71,"y":-65},{"x":-12,"y":68},{"x":-56,"y":-108},{"x":138,"y":16},{"x":14,"y":57}],"type":"coastline"},{"arc":[{"x":39321,"y":33274},{"x":-21,"y":21},{"x":-42,"y":-47},{"x":63,"y":26}],"type":"coastline"},{"arc":[{"x":39998,"y":32879},{"x":-96,"y":-41},{"x":-4,"y":-59},{"x":-89,"y":4},{"x":-84,"y":-59},{"x":-14,"y":31},{"x":-88,"y":-134},{"x":-101,"y":-43},{"x":16,"y":29},{"x":-49,"y":-1},{"x":-100,"y":-111},{"x":-3,"y":120},{"x":-53,"y":45},{"x":74,"y":97},{"x":-41,"y":50},{"x":56,"y":64},{"x":-42,"y":53},{"x":-65,"y":-53},{"x":-3,"y":-76},{"x":-82,"y":-40},{"x":-4,"y":-65},{"x":-27,"y":61},{"x":-26,"y":-34},{"x":-20,"y":98},{"x":50,"y":-2},{"x":-39,"y":62},{"x":32,"y":33},{"x":-70,"y":5},{"x":4,"y":62},{"x":105,"y":-2},{"x":23,"y":44},{"x":-119,"y":8},{"x":17,"y":86},{"x":-49,"y":28},{"x":30,"y":57},{"x":94,"y":-7},{"x":24,"y":55},{"x":-72,"y":-26},{"x":-87,"y":82},{"x":-58,"y":-155},{"x":27,"y":-168},{"x":-113,"y":-26},{"x":-71,"y":-79},{"x":-47,"y":26},{"x":-31,"y":-24},{"x":63,"y":-12},{"x":-67,"y":-32},{"x":-198,"y":256},{"x":65,"y":4},{"x":-33,"y":28},{"x":46,"y":25},{"x":-74,"y":-12},{"x":-31,"y":38},{"x":85,"y":77},{"x":-115,"y":1},{"x":31,"y":112},{"x":63,"y":-3},{"x":-38,"y":167},{"x":-53,"y":24},{"x":29,"y":-114},{"x":-59,"y":-35},{"x":40,"y":-68},{"x":-45,"y":-64},{"x":-84,"y":4},{"x":80,"y":-73},{"x":-6,"y":-48},{"x":-145,"y":35},{"x":45,"y":34},{"x":-40,"y":73},{"x":-120,"y":-113},{"x":20,"y":-38},{"x":-89,"y":-47},{"x":35,"y":-43},{"x":-60,"y":25},{"x":-19,"y":-52},{"x":-1,"y":56},{"x":-77,"y":19},{"x":85,"y":1},{"x":-58,"y":69},{"x":32,"y":19},{"x":53,"y":-45},{"x":7,"y":41},{"x":-50,"y":89},{"x":-35,"y":-9},{"x":-86,"y":-125},{"x":-66,"y":-9},{"x":61,"y":-29},{"x":3,"y":-59},{"x":-95,"y":-39},{"x":72,"y":-42},{"x":-69,"y":-18},{"x":38,"y":-47},{"x":-29,"y":-41},{"x":65,"y":12},{"x":11,"y":-35},{"x":-59,"y":-19},{"x":-116,"y":42},{"x":117,"y":-60},{"x":-72,"y":-42},{"x":-40,"y":42},{"x":-65,"y":-28},{"x":-21,"y":49}],"type":"coastline"},{"arc":[{"x":43955,"y":43577},{"x":-65,"y":33},{"x":-36,"y":-66},{"x":101,"y":33}],"type":"coastline"},{"arc":[{"x":44908,"y":43846},{"x":-203,"y":-5},{"x":-62,"y":76},{"x":-115,"y":25},{"x":-54,"y":82},{"x":-127,"y":37},{"x":-169,"y":-394},{"x":-145,"y":-178},{"x":-37,"y":-248},{"x":79,"y":2},{"x":66,"y":-112},{"x":83,"y":80},{"x":61,"y":3},{"x":-61,"y":-79},{"x":30,"y":-73},{"x":-31,"y":-85},{"x":64,"y":67},{"x":167,"y":-78},{"x":159,"y":119},{"x":-43,"y":71},{"x":36,"y":84},{"x":100,"y":40}],"type":"coastline"},{"arc":[{"x":34533,"y":19878},{"x":-84,"y":-27},{"x":72,"y":-20},{"x":12,"y":47}],"type":"coastline"},{"arc":[{"x":34733,"y":20016},{"x":-15,"y":80},{"x":-58,"y":-39},{"x":5,"y":-87},{"x":68,"y":46}],"type":"coastline"},{"arc":[{"x":36975,"y":25120},{"x":-60,"y":18},{"x":-34,"y":-60},{"x":71,"y":1},{"x":23,"y":41}],"type":"coastline"},{"arc":[{"x":37121,"y":26665},{"x":31,"y":-76},{"x":-46,"y":38},{"x":-45,"y":-111},{"x":131,"y":6},{"x":81,"y":-140},{"x":50,"y":-13},{"x":165,"y":-2},{"x":-49,"y":57},{"x":24,"y":47},{"x":192,"y":189},{"x":110,"y":4},{"x":46,"y":-87},{"x":86,"y":33},{"x":49,"y":-51},{"x":-30,"y":-192},{"x":32,"y":-148},{"x":-159,"y":-227},{"x":16,"y":-93},{"x":-37,"y":-28},{"x":43,"y":-40},{"x":7,"y":-81},{"x":-20,"y":-32},{"x":-82,"y":26},{"x":-105,"y":-83},{"x":24,"y":-18},{"x":-66,"y":-12},{"x":21,"y":-47},{"x":-83,"y":5},{"x":-137,"y":-68},{"x":-76,"y":-88},{"x":-14,"y":-122},{"x":-89,"y":-3},{"x":-163,"y":-212},{"x":-50,"y":5},{"x":50,"y":-62},{"x":-57,"y":-96},{"x":48,"y":-9},{"x":50,"y":54},{"x":-48,"y":9},{"x":48,"y":2},{"x":49,"y":98},{"x":193,"y":82},{"x":28,"y":53},{"x":132,"y":12},{"x":-31,"y":-62},{"x":73,"y":-41},{"x":-17,"y":48},{"x":76,"y":91},{"x":-58,"y":-37},{"x":-27,"y":63},{"x":37,"y":-14},{"x":8,"y":52},{"x":215,"y":85},{"x":-124,"y":-92},{"x":31,"y":-21},{"x":-40,"y":-90},{"x":112,"y":53},{"x":1,"y":-93},{"x":64,"y":37},{"x":5,"y":-64},{"x":69,"y":20},{"x":105,"y":-135},{"x":82,"y":42},{"x":13,"y":-115},{"x":-71,"y":-30},{"x":122,"y":-72},{"x":-12,"y":-60},{"x":434,"y":-181},{"x":8,"y":-37},{"x":-64,"y":-12},{"x":32,"y":-19},{"x":42,"y":24},{"x":74,"y":-56},{"x":-5,"y":38},{"x":117,"y":-31},{"x":97,"y":128},{"x":161,"y":-54},{"x":9,"y":47},{"x":93,"y":8},{"x":6,"y":60},{"x":32,"y":-68},{"x":34,"y":67},{"x":-3,"y":-61},{"x":39,"y":62},{"x":58,"y":-4},{"x":-90,"y":107},{"x":41,"y":8},{"x":-27,"y":38},{"x":-46,"y":-19},{"x":18,"y":58},{"x":-49,"y":28},{"x":-75,"y":-38},{"x":59,"y":83},{"x":-49,"y":46},{"x":-141,"y":-107},{"x":-121,"y":21},{"x":52,"y":50},{"x":-31,"y":28},{"x":52,"y":10},{"x":-7,"y":-39},{"x":78,"y":44},{"x":-72,"y":82},{"x":14,"y":52},{"x":-59,"y":53},{"x":-48,"y":-13},{"x":-9,"y":41},{"x":-47,"y":7},{"x":-42,"y":-65},{"x":-61,"y":43},{"x":-118,"y":-20},{"x":11,"y":-55},{"x":139,"y":1},{"x":-57,"y":-55},{"x":-116,"y":38},{"x":-29,"y":-38},{"x":-37,"y":24},{"x":40,"y":62},{"x":-60,"y":15},{"x":-64,"y":-29},{"x":22,"y":-46},{"x":-78,"y":-7},{"x":28,"y":23},{"x":-45,"y":82},{"x":-137,"y":113},{"x":118,"y":9},{"x":-63,"y":68},{"x":164,"y":43},{"x":-60,"y":42},{"x":50,"y":21},{"x":-98,"y":129},{"x":26,"y":68},{"x":-71,"y":21},{"x":10,"y":65},{"x":-51,"y":4},{"x":13,"y":105},{"x":154,"y":-155},{"x":63,"y":31},{"x":-3,"y":-56},{"x":27,"y":-27},{"x":41,"y":29},{"x":79,"y":-94},{"x":195,"y":-9},{"x":81,"y":83},{"x":121,"y":-19},{"x":50,"y":-49},{"x":168,"y":-211},{"x":-13,"y":-74},{"x":-63,"y":-37},{"x":37,"y":-19},{"x":-85,"y":-64},{"x":80,"y":-4},{"x":17,"y":62},{"x":31,"y":-145},{"x":43,"y":34},{"x":116,"y":-72},{"x":42,"y":32},{"x":55,"y":-11},{"x":32,"y":16},{"x":25,"y":-14},{"x":38,"y":-145},{"x":-66,"y":-46},{"x":19,"y":-42},{"x":-53,"y":3},{"x":53,"y":-43},{"x":91,"y":37},{"x":40,"y":-47},{"x":-27,"y":-66},{"x":-146,"y":43},{"x":-9,"y":-41},{"x":-38,"y":45},{"x":18,"y":-137},{"x":-80,"y":-32},{"x":137,"y":-31},{"x":-42,"y":28},{"x":11,"y":60},{"x":59,"y":8},{"x":9,"y":55},{"x":18,"y":-60},{"x":73,"y":-2},{"x":27,"y":-39},{"x":-32,"y":-12},{"x":54,"y":-63},{"x":-30,"y":-55},{"x":74,"y":77},{"x":170,"y":-61},{"x":-104,"y":-3},{"x":-52,"y":-43},{"x":38,"y":-35},{"x":89,"y":15},{"x":-57,"y":-21},{"x":16,"y":-56},{"x":75,"y":51},{"x":-68,"y":-69},{"x":41,"y":-37},{"x":-3,"y":-122},{"x":51,"y":59},{"x":69,"y":-7},{"x":0,"y":-38},{"x":75,"y":72},{"x":50,"y":-15},{"x":25,"y":34},{"x":-59,"y":-5},{"x":47,"y":47},{"x":65,"y":-32},{"x":87,"y":85},{"x":-9,"y":57},{"x":27,"y":-38},{"x":-49,"y":-91},{"x":85,"y":-92},{"x":34,"y":51},{"x":197,"y":-25},{"x":17,"y":105},{"x":-55,"y":-21},{"x":33,"y":96},{"x":-65,"y":26},{"x":42,"y":23},{"x":-30,"y":47},{"x":153,"y":102},{"x":-53,"y":49},{"x":-9,"y":-43},{"x":-84,"y":-22},{"x":-56,"y":36},{"x":36,"y":70},{"x":-44,"y":-13},{"x":-14,"y":78},{"x":83,"y":112},{"x":-55,"y":95},{"x":80,"y":45},{"x":-141,"y":27}],"type":"coastline"},{"arc":[{"x":36977,"y":21891},{"x":-43,"y":-2},{"x":9,"y":-46},{"x":34,"y":48}],"type":"coastline"},{"arc":[{"x":37096,"y":21964},{"x":-30,"y":7},{"x":14,"y":-46},{"x":16,"y":39}],"type":"coastline"},{"arc":[{"x":37126,"y":21619},{"x":-45,"y":33},{"x":14,"y":-50},{"x":31,"y":17}],"type":"coastline"},{"arc":[{"x":37393,"y":24991},{"x":-15,"y":31},{"x":-68,"y":-22},{"x":83,"y":-9}],"type":"coastline"},{"arc":[{"x":37546,"y":25099},{"x":-53,"y":-4},{"x":44,"y":-29},{"x":9,"y":33}],"type":"coastline"},{"arc":[{"x":37448,"y":20898},{"x":-70,"y":21},{"x":2,"y":-47},{"x":-24,"y":30},{"x":-16,"y":-31},{"x":-38,"y":32},{"x":-37,"y":-51},{"x":88,"y":-24},{"x":95,"y":70}],"type":"coastline"},{"arc":[{"x":37587,"y":21864},{"x":-31,"y":28},{"x":-47,"y":-32},{"x":78,"y":4}],"type":"coastline"},{"arc":[{"x":37805,"y":25776},{"x":-51,"y":87},{"x":-5,"y":-69},{"x":56,"y":-18}],"type":"coastline"},{"arc":[{"x":37711,"y":20793},{"x":-121,"y":-17},{"x":0,"y":-36},{"x":63,"y":-4},{"x":58,"y":57}],"type":"coastline"},{"arc":[{"x":37870,"y":22083},{"x":-67,"y":29},{"x":11,"y":-38},{"x":56,"y":9}],"type":"coastline"},{"arc":[{"x":37930,"y":22211},{"x":-157,"y":53},{"x":0,"y":-72},{"x":-56,"y":-5},{"x":21,"y":-84},{"x":43,"y":90},{"x":149,"y":18}],"type":"coastline"},{"arc":[{"x":37961,"y":21536},{"x":-100,"y":-16},{"x":-64,"y":80},{"x":-37,"y":-83},{"x":-21,"y":36},{"x":60,"y":74},{"x":-91,"y":-25},{"x":54,"y":22},{"x":-27,"y":84},{"x":-19,"y":-48},{"x":-122,"y":-12},{"x":-67,"y":51},{"x":-40,"y":-16},{"x":27,"y":28},{"x":-178,"y":147},{"x":-57,"y":-13},{"x":-21,"y":-263},{"x":85,"y":-52},{"x":-47,"y":-136},{"x":-109,"y":-30},{"x":-91,"y":117},{"x":-108,"y":-81},{"x":20,"y":-67},{"x":126,"y":-65},{"x":4,"y":-257},{"x":-78,"y":-34},{"x":95,"y":-212},{"x":150,"y":48},{"x":-55,"y":41},{"x":-57,"y":-37},{"x":27,"y":50},{"x":-43,"y":-4},{"x":-29,"y":82},{"x":-30,"y":-16},{"x":114,"y":90},{"x":-48,"y":-94},{"x":41,"y":-23},{"x":64,"y":29},{"x":-5,"y":42},{"x":52,"y":-42},{"x":-39,"y":86},{"x":53,"y":-64},{"x":-26,"y":80},{"x":68,"y":-30},{"x":22,"y":58},{"x":34,"y":-109},{"x":88,"y":-6},{"x":2,"y":59},{"x":102,"y":-69},{"x":79,"y":31},{"x":82,"y":-48},{"x":62,"y":39},{"x":40,"y":49},{"x":-78,"y":120},{"x":-127,"y":3},{"x":87,"y":143},{"x":-46,"y":-46},{"x":17,"y":65},{"x":-54,"y":-13},{"x":133,"y":70},{"x":-151,"y":58},{"x":71,"y":-1},{"x":20,"y":93},{"x":44,"y":-22},{"x":-43,"y":-65},{"x":27,"y":-34},{"x":158,"y":158}],"type":"coastline"},{"arc":[{"x":38014,"y":21066},{"x":-31,"y":5},{"x":16,"y":-36},{"x":15,"y":31}],"type":"coastline"},{"arc":[{"x":38164,"y":21738},{"x":-101,"y":135},{"x":-101,"y":37},{"x":-151,"y":-115},{"x":82,"y":-163},{"x":243,"y":11},{"x":-39,"y":37},{"x":24,"y":48},{"x":-123,"y":37},{"x":-21,"y":-32},{"x":-13,"y":55},{"x":200,"y":-50}],"type":"coastline"},{"arc":[{"x":38365,"y":24444},{"x":-40,"y":4},{"x":-6,"y":-46},{"x":46,"y":42}],"type":"coastline"},{"arc":[{"x":38337,"y":22023},{"x":-144,"y":85},{"x":-22,"y":-40},{"x":-77,"y":17},{"x":-3,"y":-61},{"x":-54,"y":37},{"x":-70,"y":-42},{"x":127,"y":-20},{"x":-55,"y":-2},{"x":21,"y":-74},{"x":10,"y":53},{"x":87,"y":-32},{"x":-16,"y":-26},{"x":106,"y":-79},{"x":-52,"y":-4},{"x":43,"y":-65},{"x":20,"y":63},{"x":48,"y":-5},{"x":-12,"y":67},{"x":-160,"y":97},{"x":50,"y":14},{"x":90,"y":-53},{"x":-91,"y":76},{"x":104,"y":22},{"x":50,"y":-28}],"type":"coastline"},{"arc":[{"x":38529,"y":25543},{"x":-93,"y":91},{"x":-14,"y":-38},{"x":107,"y":-53}],"type":"coastline"},{"arc":[{"x":38390,"y":21933},{"x":-47,"y":-4},{"x":15,"y":-42},{"x":32,"y":46}],"type":"coastline"},{"arc":[{"x":38510,"y":22933},{"x":-16,"y":25},{"x":-16,"y":-41},{"x":32,"y":16}],"type":"coastline"},{"arc":[{"x":38610,"y":24431},{"x":-43,"y":92},{"x":-90,"y":-27},{"x":35,"y":-69},{"x":98,"y":4}],"type":"coastline"},{"arc":[{"x":38546,"y":22200},{"x":-58,"y":41},{"x":18,"y":54},{"x":-116,"y":63},{"x":-102,"y":-46},{"x":-15,"y":32},{"x":-111,"y":-9},{"x":37,"y":-51},{"x":21,"y":31},{"x":-5,"y":-39},{"x":21,"y":43},{"x":28,"y":-31},{"x":-41,"y":-122},{"x":55,"y":3},{"x":7,"y":-57},{"x":24,"y":33},{"x":110,"y":-48},{"x":-38,"y":79},{"x":-64,"y":11},{"x":63,"y":18},{"x":-57,"y":48},{"x":91,"y":-11},{"x":7,"y":-77},{"x":17,"y":29},{"x":46,"y":-39},{"x":62,"y":45}],"type":"coastline"},{"arc":[{"x":38544,"y":22102},{"x":-60,"y":14},{"x":-14,"y":-48},{"x":-16,"y":60},{"x":-31,"y":-28},{"x":60,"y":-118},{"x":29,"y":60},{"x":-39,"y":35},{"x":71,"y":25}],"type":"coastline"},{"arc":[{"x":38688,"y":22201},{"x":-56,"y":17},{"x":-39,"y":-43},{"x":65,"y":-20},{"x":30,"y":46}],"type":"coastline"},{"arc":[{"x":38928,"y":23532},{"x":-77,"y":32},{"x":-22,"y":-64},{"x":68,"y":-11},{"x":31,"y":43}],"type":"coastline"},{"arc":[{"x":38969,"y":24297},{"x":-36,"y":104},{"x":-93,"y":-130},{"x":86,"y":76},{"x":-12,"y":-42},{"x":55,"y":-8}],"type":"coastline"},{"arc":[{"x":38924,"y":22930},{"x":-53,"y":28},{"x":7,"y":-76},{"x":46,"y":48}],"type":"coastline"},{"arc":[{"x":38938,"y":23144},{"x":-44,"y":10},{"x":32,"y":40},{"x":-82,"y":-19},{"x":-56,"y":-81},{"x":47,"y":21},{"x":6,"y":-65},{"x":97,"y":94}],"type":"coastline"},{"arc":[{"x":39121,"y":24469},{"x":-23,"y":109},{"x":-9,"y":-40},{"x":-79,"y":5},{"x":-77,"y":-72},{"x":21,"y":-75},{"x":167,"y":73}],"type":"coastline"},{"arc":[{"x":39460,"y":25053},{"x":-33,"y":98},{"x":-40,"y":-9},{"x":-61,"y":8},{"x":-37,"y":-30},{"x":-56,"y":32},{"x":-41,"y":-8},{"x":-22,"y":-99},{"x":93,"y":-8},{"x":-77,"y":-22},{"x":-80,"y":86},{"x":-15,"y":-61},{"x":-37,"y":6},{"x":62,"y":-35},{"x":-11,"y":-54},{"x":69,"y":27},{"x":98,"y":-75},{"x":-1,"y":93},{"x":93,"y":-39},{"x":-33,"y":63},{"x":60,"y":-12},{"x":-6,"y":60},{"x":22,"y":-59},{"x":53,"y":38}],"type":"coastline"},{"arc":[{"x":39496,"y":24231},{"x":-67,"y":22},{"x":-23,"y":-50},{"x":40,"y":-120},{"x":50,"y":148}],"type":"coastline"},{"arc":[{"x":39550,"y":22651},{"x":-174,"y":-36},{"x":-110,"y":63},{"x":-156,"y":-23},{"x":-106,"y":-83},{"x":-164,"y":19},{"x":-71,"y":-35},{"x":0,"y":128},{"x":77,"y":42},{"x":-9,"y":89},{"x":38,"y":29},{"x":-43,"y":14},{"x":15,"y":51},{"x":-23,"y":-33},{"x":-104,"y":32},{"x":-67,"y":-121},{"x":-90,"y":-35},{"x":35,"y":-35},{"x":-28,"y":-48},{"x":100,"y":-60},{"x":-152,"y":29},{"x":-1,"y":-92},{"x":-31,"y":42},{"x":-68,"y":-1},{"x":-33,"y":-52},{"x":-22,"y":41},{"x":-37,"y":-37},{"x":-3,"y":46},{"x":-94,"y":19},{"x":12,"y":-125},{"x":-66,"y":-33},{"x":-82,"y":43},{"x":-53,"y":-34},{"x":26,"y":-59},{"x":22,"y":31},{"x":236,"y":-44},{"x":-32,"y":37},{"x":49,"y":-26},{"x":-32,"y":54},{"x":47,"y":9},{"x":16,"y":-62},{"x":68,"y":-19},{"x":-41,"y":56},{"x":33,"y":21},{"x":-49,"y":5},{"x":39,"y":28},{"x":74,"y":-63},{"x":-8,"y":-90},{"x":57,"y":23},{"x":-12,"y":31},{"x":69,"y":-20},{"x":-60,"y":-46},{"x":74,"y":-30},{"x":-38,"y":-29},{"x":16,"y":-55},{"x":7,"y":48},{"x":85,"y":-29},{"x":49,"y":56},{"x":-69,"y":65},{"x":68,"y":65},{"x":-73,"y":8},{"x":85,"y":9},{"x":9,"y":49},{"x":23,"y":-80},{"x":179,"y":-6},{"x":80,"y":95},{"x":-114,"y":5},{"x":21,"y":68},{"x":138,"y":-51},{"x":136,"y":123},{"x":146,"y":-49},{"x":186,"y":68}],"type":"coastline"},{"arc":[{"x":39678,"y":24403},{"x":-124,"y":9},{"x":-19,"y":-43},{"x":44,"y":33},{"x":67,"y":-48},{"x":32,"y":49}],"type":"coastline"},{"arc":[{"x":39593,"y":21879},{"x":-33,"y":7},{"x":4,"y":-38},{"x":29,"y":31}],"type":"coastline"},{"arc":[{"x":39677,"y":22189},{"x":-29,"y":19},{"x":-3,"y":-48},{"x":32,"y":29}],"type":"coastline"},{"arc":[{"x":39764,"y":22687},{"x":-93,"y":76},{"x":-30,"y":-44},{"x":-116,"y":3},{"x":87,"y":-46},{"x":128,"y":-18},{"x":24,"y":29}],"type":"coastline"},{"arc":[{"x":39762,"y":22324},{"x":-41,"y":13},{"x":-12,"y":-55},{"x":53,"y":42}],"type":"coastline"},{"arc":[{"x":39792,"y":22446},{"x":-41,"y":-7},{"x":-17,"y":46},{"x":38,"y":111},{"x":-36,"y":-5},{"x":3,"y":-62},{"x":-71,"y":54},{"x":15,"y":-112},{"x":-53,"y":-52},{"x":58,"y":-11},{"x":1,"y":-61},{"x":103,"y":99}],"type":"coastline"},{"arc":[{"x":39827,"y":22482},{"x":-21,"y":30},{"x":-27,"y":-22},{"x":48,"y":-8}],"type":"coastline"},{"arc":[{"x":39978,"y":22481},{"x":-80,"y":16},{"x":57,"y":-55},{"x":23,"y":39}],"type":"coastline"},{"arc":[{"x":40149,"y":22709},{"x":-27,"y":47},{"x":-81,"y":-3},{"x":-24,"y":59},{"x":-39,"y":-91},{"x":-70,"y":-14},{"x":6,"y":-115},{"x":74,"y":-48},{"x":-24,"y":-41},{"x":49,"y":-10},{"x":55,"y":57},{"x":22,"y":132},{"x":59,"y":27}],"type":"coastline"},{"arc":[{"x":40636,"y":25159},{"x":-38,"y":127},{"x":-95,"y":8},{"x":3,"y":80},{"x":-39,"y":11},{"x":-19,"y":-80},{"x":-38,"y":-3},{"x":14,"y":-64},{"x":-66,"y":-40},{"x":214,"y":21},{"x":64,"y":-60}],"type":"coastline"},{"arc":[{"x":40614,"y":24270},{"x":-83,"y":32},{"x":-1,"y":-35},{"x":-35,"y":34},{"x":-56,"y":-36},{"x":-52,"y":62},{"x":-37,"y":-89},{"x":-78,"y":-5},{"x":-1,"y":-112},{"x":-83,"y":67},{"x":-47,"y":-116},{"x":-56,"y":35},{"x":2,"y":-122},{"x":-81,"y":102},{"x":-240,"y":-150},{"x":-177,"y":-257},{"x":-17,"y":-86},{"x":56,"y":-79},{"x":29,"y":36},{"x":81,"y":-6},{"x":-88,"y":31},{"x":-32,"y":127},{"x":69,"y":27},{"x":53,"y":-98},{"x":85,"y":6},{"x":53,"y":59},{"x":-60,"y":94},{"x":59,"y":-13},{"x":-16,"y":53},{"x":56,"y":-89},{"x":72,"y":-25},{"x":58,"y":8},{"x":5,"y":78},{"x":47,"y":-12},{"x":4,"y":85},{"x":98,"y":-53},{"x":46,"y":38},{"x":100,"y":-20},{"x":32,"y":224},{"x":115,"y":50},{"x":-27,"y":36},{"x":-82,"y":-31},{"x":-9,"y":38},{"x":62,"y":29},{"x":49,"y":-27},{"x":-34,"y":62},{"x":39,"y":40},{"x":39,"y":-37},{"x":-15,"y":-75},{"x":31,"y":21},{"x":26,"y":-36},{"x":41,"y":135}],"type":"coastline"},{"arc":[{"x":40749,"y":23830},{"x":-80,"y":-24},{"x":-279,"y":33},{"x":-30,"y":-80},{"x":44,"y":-65},{"x":206,"y":89},{"x":103,"y":-4},{"x":36,"y":51}],"type":"coastline"},{"arc":[{"x":40809,"y":24182},{"x":-61,"y":52},{"x":-66,"y":-143},{"x":127,"y":91}],"type":"coastline"},{"arc":[{"x":40879,"y":25004},{"x":-40,"y":60},{"x":-79,"y":-8},{"x":-56,"y":89},{"x":15,"y":-109},{"x":-79,"y":-20},{"x":27,"y":-38},{"x":-46,"y":10},{"x":-21,"y":-70},{"x":55,"y":-46},{"x":48,"y":97},{"x":34,"y":-22},{"x":74,"y":75},{"x":-3,"y":-29},{"x":71,"y":11}],"type":"coastline"},{"arc":[{"x":41053,"y":24277},{"x":-93,"y":-10},{"x":11,"y":49},{"x":41,"y":-7},{"x":-24,"y":67},{"x":-62,"y":-29},{"x":-53,"y":-86},{"x":75,"y":-87},{"x":-25,"y":-56},{"x":-40,"y":30},{"x":1,"y":-90},{"x":169,"y":219}],"type":"coastline"},{"arc":[{"x":49897,"y":37907},{"x":-55,"y":-51},{"x":-62,"y":22},{"x":62,"y":-23},{"x":55,"y":52}],"type":"coastline"},{"arc":[{"x":49898,"y":37797},{"x":14,"y":99},{"x":-92,"y":-98},{"x":-221,"y":164},{"x":-119,"y":412},{"x":39,"y":92},{"x":144,"y":74},{"x":155,"y":427},{"x":3,"y":109},{"x":-107,"y":275},{"x":-26,"y":411},{"x":36,"y":534},{"x":72,"y":122},{"x":-10,"y":130},{"x":64,"y":45},{"x":-85,"y":96},{"x":101,"y":550},{"x":-39,"y":45},{"x":62,"y":-16},{"x":-22,"y":65},{"x":74,"y":220},{"x":92,"y":100},{"x":10,"y":-40},{"x":29,"y":29},{"x":14,"y":152},{"x":69,"y":17},{"x":-28,"y":96},{"x":55,"y":15}],"type":"coastline"},{"arc":[{"x":46131,"y":32100},{"x":-37,"y":50},{"x":14,"y":157},{"x":155,"y":375},{"x":136,"y":93},{"x":56,"y":-37},{"x":10,"y":93},{"x":77,"y":26},{"x":-7,"y":64},{"x":90,"y":56},{"x":-61,"y":-12},{"x":51,"y":72},{"x":104,"y":31},{"x":49,"y":126},{"x":85,"y":70},{"x":51,"y":26},{"x":41,"y":-25},{"x":-9,"y":47},{"x":68,"y":54},{"x":-40,"y":76},{"x":89,"y":-3},{"x":-5,"y":54},{"x":56,"y":-26},{"x":0,"y":51},{"x":57,"y":-17},{"x":73,"y":121},{"x":78,"y":24},{"x":159,"y":258},{"x":208,"y":190},{"x":85,"y":277},{"x":88,"y":64},{"x":52,"y":-13},{"x":10,"y":77},{"x":46,"y":-18},{"x":126,"y":179},{"x":65,"y":-28},{"x":55,"y":83},{"x":137,"y":50},{"x":35,"y":119},{"x":254,"y":325},{"x":133,"y":329},{"x":187,"y":125},{"x":224,"y":45},{"x":83,"y":-16},{"x":72,"y":-174},{"x":73,"y":22},{"x":55,"y":169},{"x":-31,"y":42},{"x":48,"y":-7},{"x":-46,"y":92},{"x":28,"y":160},{"x":38,"y":21},{"x":62,"y":-119},{"x":56,"y":271},{"x":59,"y":46},{"x":69,"y":190},{"x":12,"y":389},{"x":120,"y":-11},{"x":-22,"y":220},{"x":75,"y":2},{"x":39,"y":115},{"x":58,"y":-45},{"x":9,"y":185},{"x":102,"y":-30},{"x":-26,"y":81},{"x":-93,"y":47},{"x":21,"y":57},{"x":-17,"y":-39},{"x":-71,"y":44},{"x":-1,"y":54},{"x":50,"y":17},{"x":-43,"y":113},{"x":78,"y":-1},{"x":-54,"y":12},{"x":-2,"y":61},{"x":62,"y":20},{"x":-10,"y":65},{"x":-38,"y":-38},{"x":37,"y":167},{"x":-48,"y":208},{"x":-82,"y":-301}],"type":"coastline"},{"arc":[{"x":50427,"y":62457},{"x":37,"y":21},{"x":-2,"y":-63},{"x":-39,"y":-9},{"x":4,"y":51}],"type":"coastline"},{"arc":[{"x":50276,"y":61741},{"x":-61,"y":-33},{"x":-88,"y":70},{"x":34,"y":22},{"x":115,"y":-59}],"type":"coastline"},{"arc":[{"x":50254,"y":61974},{"x":-2,"y":-53},{"x":-81,"y":8},{"x":10,"y":39},{"x":73,"y":6}],"type":"coastline"},{"arc":[{"x":50196,"y":61662},{"x":-171,"y":-4},{"x":-5,"y":114},{"x":38,"y":-4},{"x":-8,"y":-55},{"x":27,"y":28},{"x":119,"y":-79}],"type":"coastline"},{"arc":[{"x":50178,"y":61864},{"x":-92,"y":-72},{"x":72,"y":104},{"x":20,"y":-32}],"type":"coastline"},{"arc":[{"x":50109,"y":61924},{"x":43,"y":-23},{"x":-64,"y":-99},{"x":-61,"y":74},{"x":44,"y":69},{"x":38,"y":-21}],"type":"coastline"},{"arc":[{"x":50066,"y":62896},{"x":2,"y":-37},{"x":-82,"y":16},{"x":5,"y":94},{"x":75,"y":-73}],"type":"coastline"},{"arc":[{"x":50011,"y":61695},{"x":-16,"y":-25},{"x":-28,"y":31},{"x":41,"y":30},{"x":3,"y":-36}],"type":"coastline"},{"arc":[{"x":49829,"y":61888},{"x":36,"y":34},{"x":-80,"y":-96},{"x":44,"y":62}],"type":"coastline"},{"arc":[{"x":49801,"y":61669},{"x":-79,"y":-12},{"x":22,"y":45},{"x":57,"y":-33}],"type":"coastline"},{"arc":[{"x":49712,"y":61721},{"x":-51,"y":-128},{"x":-41,"y":34},{"x":74,"y":143},{"x":18,"y":-49}],"type":"coastline"},{"arc":[{"x":49663,"y":61585},{"x":-70,"y":-124},{"x":-63,"y":46},{"x":55,"y":106},{"x":78,"y":-28}],"type":"coastline"},{"arc":[{"x":49534,"y":61441},{"x":-9,"y":-90},{"x":-66,"y":86},{"x":38,"y":49},{"x":10,"y":-82},{"x":27,"y":37}],"type":"coastline"},{"arc":[{"x":49295,"y":61431},{"x":-36,"y":-76},{"x":12,"y":40},{"x":-49,"y":0},{"x":73,"y":36}],"type":"coastline"},{"arc":[{"x":48628,"y":61629},{"x":44,"y":-202},{"x":87,"y":-70},{"x":9,"y":48},{"x":52,"y":-40},{"x":-2,"y":-47},{"x":-75,"y":-2},{"x":55,"y":-100},{"x":70,"y":12},{"x":-13,"y":30},{"x":85,"y":62},{"x":-28,"y":-101},{"x":42,"y":-45},{"x":45,"y":128},{"x":159,"y":5},{"x":-24,"y":-28},{"x":26,"y":-27},{"x":36,"y":37},{"x":-22,"y":-76},{"x":56,"y":13},{"x":1,"y":-52},{"x":33,"y":86},{"x":45,"y":-58},{"x":-47,"y":145},{"x":119,"y":69},{"x":54,"y":1},{"x":-52,"y":-36},{"x":49,"y":10},{"x":-10,"y":-45},{"x":50,"y":16},{"x":-42,"y":-48},{"x":36,"y":21},{"x":26,"y":-113},{"x":108,"y":49},{"x":18,"y":94},{"x":-69,"y":-23},{"x":3,"y":30},{"x":52,"y":62},{"x":61,"y":-18},{"x":-49,"y":30},{"x":41,"y":80},{"x":55,"y":-6},{"x":-52,"y":13},{"x":21,"y":42},{"x":70,"y":-4},{"x":-63,"y":13},{"x":27,"y":55},{"x":34,"y":-40},{"x":81,"y":51},{"x":-102,"y":86},{"x":15,"y":18},{"x":-27,"y":43},{"x":-2,"y":17},{"x":17,"y":12},{"x":-12,"y":-34},{"x":17,"y":13},{"x":-4,"y":7},{"x":24,"y":-7},{"x":-14,"y":20},{"x":24,"y":-11},{"x":59,"y":-81},{"x":28,"y":127},{"x":136,"y":-83},{"x":-42,"y":-83},{"x":27,"y":-51},{"x":255,"y":1},{"x":135,"y":53},{"x":-45,"y":30},{"x":40,"y":70},{"x":-58,"y":-58},{"x":26,"y":79},{"x":-46,"y":-70},{"x":-68,"y":74},{"x":104,"y":38},{"x":-7,"y":93},{"x":-62,"y":-51},{"x":18,"y":72},{"x":40,"y":3},{"x":-18,"y":109},{"x":-58,"y":7},{"x":-39,"y":91},{"x":28,"y":34},{"x":38,"y":-24},{"x":-33,"y":37},{"x":71,"y":107},{"x":64,"y":-78},{"x":62,"y":108},{"x":22,"y":-58},{"x":27,"y":55},{"x":-40,"y":23},{"x":75,"y":1},{"x":-42,"y":24},{"x":10,"y":84},{"x":41,"y":6},{"x":-118,"y":5},{"x":-2,"y":62},{"x":-39,"y":-56},{"x":14,"y":96},{"x":-264,"y":257},{"x":74,"y":-3},{"x":-39,"y":62},{"x":-45,"y":-40},{"x":9,"y":105},{"x":-113,"y":-20},{"x":-12,"y":54},{"x":-14,"y":-132},{"x":-61,"y":91},{"x":7,"y":-101},{"x":-72,"y":29},{"x":78,"y":-109},{"x":-80,"y":-45},{"x":-21,"y":24},{"x":-55,"y":-87},{"x":-26,"y":33},{"x":-43,"y":-76},{"x":-27,"y":41},{"x":-40,"y":-97},{"x":-78,"y":50},{"x":62,"y":-77},{"x":-61,"y":3},{"x":6,"y":-53},{"x":-72,"y":16},{"x":94,"y":-41},{"x":-28,"y":-60},{"x":-86,"y":32},{"x":-21,"y":-71},{"x":40,"y":-11},{"x":0,"y":46},{"x":14,"y":-50},{"x":-61,"y":-8},{"x":-1,"y":-110},{"x":-53,"y":-65},{"x":-125,"y":-2},{"x":-58,"y":66},{"x":-54,"y":-77},{"x":-20,"y":36},{"x":2,"y":-71},{"x":-54,"y":37},{"x":74,"y":-191},{"x":-36,"y":-25},{"x":-83,"y":74},{"x":48,"y":-80},{"x":-56,"y":-59},{"x":-51,"y":69},{"x":-49,"y":-69},{"x":45,"y":-5},{"x":-74,"y":-1},{"x":-16,"y":-131}],"type":"coastline"},{"arc":[{"x":41182,"y":41717},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":41638,"y":42347},{"x":-24,"y":69},{"x":-30,"y":-79},{"x":54,"y":10}],"type":"coastline"},{"arc":[{"x":42559,"y":43570},{"x":-77,"y":-38},{"x":27,"y":-20},{"x":50,"y":58}],"type":"coastline"},{"arc":[{"x":42601,"y":42973},{"x":-26,"y":27},{"x":-32,"y":-55},{"x":58,"y":28}],"type":"coastline"},{"arc":[{"x":43473,"y":42765},{"x":-27,"y":24},{"x":-50,"y":-34},{"x":18,"y":-30},{"x":59,"y":40}],"type":"coastline"},{"arc":[{"x":44078,"y":42179},{"x":4,"y":115},{"x":74,"y":127},{"x":-14,"y":242},{"x":50,"y":-20},{"x":27,"y":77},{"x":-167,"y":-9},{"x":-93,"y":207},{"x":-156,"y":-93},{"x":-71,"y":26},{"x":-51,"y":-74},{"x":-111,"y":17},{"x":-78,"y":-39},{"x":-14,"y":10},{"x":-75,"y":-53},{"x":-7,"y":15},{"x":-34,"y":-21},{"x":2,"y":35},{"x":-63,"y":-18},{"x":-47,"y":46},{"x":-43,"y":-47},{"x":-47,"y":97},{"x":-15,"y":-35},{"x":-48,"y":9},{"x":40,"y":11},{"x":7,"y":87},{"x":68,"y":-31},{"x":-6,"y":49},{"x":-192,"y":100},{"x":-40,"y":119},{"x":-124,"y":46},{"x":17,"y":-26},{"x":-23,"y":26},{"x":-194,"y":-133},{"x":12,"y":-81},{"x":-28,"y":28},{"x":-13,"y":-86},{"x":-69,"y":-31},{"x":41,"y":65},{"x":-102,"y":-12},{"x":49,"y":180},{"x":-40,"y":102},{"x":-64,"y":-147},{"x":51,"y":225},{"x":-35,"y":32},{"x":-195,"y":-402},{"x":-37,"y":3},{"x":26,"y":-79},{"x":-97,"y":-65},{"x":33,"y":-74},{"x":-42,"y":-44},{"x":-128,"y":-12},{"x":22,"y":-79},{"x":-81,"y":-7},{"x":-76,"y":-97},{"x":-166,"y":-276},{"x":-27,"y":-163},{"x":-118,"y":-69},{"x":-8,"y":-58},{"x":-20,"y":101},{"x":-93,"y":-94},{"x":-58,"y":-1},{"x":-24,"y":-118},{"x":-12,"y":117},{"x":7,"y":-168},{"x":-86,"y":-49},{"x":-30,"y":56},{"x":-28,"y":-52}],"type":"coastline"},{"arc":[{"x":44216,"y":42925},{"x":-230,"y":-66},{"x":70,"y":-131},{"x":40,"y":3},{"x":-6,"y":113},{"x":93,"y":-18},{"x":33,"y":99}],"type":"coastline"},{"arc":[{"x":44268,"y":42792},{"x":-80,"y":36},{"x":-83,"y":-96},{"x":78,"y":-11},{"x":85,"y":71}],"type":"coastline"},{"arc":[{"x":56017,"y":51752},{"x":-82,"y":-88},{"x":-113,"y":-8},{"x":-163,"y":-149},{"x":-178,"y":86},{"x":-224,"y":273},{"x":-9,"y":116},{"x":-50,"y":-81},{"x":-54,"y":122},{"x":11,"y":32},{"x":26,"y":-59},{"x":77,"y":3},{"x":-116,"y":228},{"x":41,"y":176},{"x":-49,"y":263},{"x":30,"y":119},{"x":194,"y":218},{"x":290,"y":95},{"x":83,"y":-1},{"x":17,"y":-35},{"x":121,"y":62},{"x":129,"y":245},{"x":108,"y":521}],"type":"coastline"},{"arc":[{"x":49937,"y":46015},{"x":-120,"y":-65},{"x":21,"y":46},{"x":-55,"y":-6},{"x":35,"y":41},{"x":-28,"y":41},{"x":45,"y":28},{"x":17,"y":-57},{"x":66,"y":18},{"x":-10,"y":63},{"x":-196,"y":-34},{"x":-54,"y":44},{"x":-6,"y":197},{"x":240,"y":323},{"x":-100,"y":31},{"x":29,"y":-50},{"x":-40,"y":-91},{"x":-61,"y":42},{"x":-84,"y":-57},{"x":6,"y":-168},{"x":-51,"y":243},{"x":67,"y":56},{"x":4,"y":140},{"x":-47,"y":62},{"x":63,"y":85},{"x":11,"y":-25},{"x":56,"y":56},{"x":77,"y":5},{"x":11,"y":53},{"x":9,"y":-95},{"x":-71,"y":-78},{"x":91,"y":-4},{"x":24,"y":-103},{"x":102,"y":95},{"x":-14,"y":129},{"x":-101,"y":26},{"x":3,"y":48},{"x":58,"y":-15},{"x":-69,"y":100},{"x":-30,"y":-26},{"x":-42,"y":45},{"x":20,"y":61},{"x":36,"y":-9},{"x":-8,"y":78},{"x":154,"y":-119},{"x":26,"y":36},{"x":-62,"y":105},{"x":82,"y":65},{"x":79,"y":-7},{"x":13,"y":-87},{"x":28,"y":-20},{"x":49,"y":45},{"x":14,"y":-55},{"x":27,"y":34},{"x":29,"y":-32},{"x":-21,"y":-36},{"x":43,"y":1},{"x":-29,"y":115},{"x":-40,"y":-9},{"x":-11,"y":57},{"x":-68,"y":31},{"x":42,"y":64},{"x":-26,"y":31},{"x":59,"y":49},{"x":-66,"y":19},{"x":0,"y":52},{"x":103,"y":86},{"x":-53,"y":54},{"x":27,"y":52},{"x":64,"y":27},{"x":63,"y":-84},{"x":176,"y":46},{"x":62,"y":-19},{"x":-47,"y":-16},{"x":8,"y":-38},{"x":81,"y":-6},{"x":184,"y":232},{"x":-58,"y":55},{"x":-52,"y":19},{"x":28,"y":-56},{"x":-172,"y":81},{"x":-62,"y":-1},{"x":-47,"y":-68},{"x":-99,"y":74},{"x":14,"y":98},{"x":15,"y":-53},{"x":13,"y":59},{"x":47,"y":0},{"x":6,"y":-40},{"x":23,"y":84},{"x":81,"y":-28},{"x":97,"y":74},{"x":58,"y":-48},{"x":32,"y":52},{"x":139,"y":1},{"x":200,"y":-108},{"x":273,"y":-282},{"x":205,"y":13},{"x":207,"y":-145},{"x":220,"y":194},{"x":272,"y":63},{"x":60,"y":76},{"x":84,"y":22},{"x":104,"y":142},{"x":227,"y":70},{"x":-55,"y":7},{"x":-5,"y":53},{"x":57,"y":20},{"x":-18,"y":-57},{"x":94,"y":60},{"x":117,"y":-47},{"x":19,"y":193},{"x":181,"y":253}],"type":"coastline"},{"arc":[{"x":49937,"y":46016},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":42555,"y":29699},{"x":-154,"y":23},{"x":-6,"y":-35},{"x":159,"y":-28},{"x":1,"y":40}],"type":"coastline"},{"arc":[{"x":42724,"y":29257},{"x":185,"y":114},{"x":37,"y":68},{"x":66,"y":-6},{"x":-19,"y":97},{"x":53,"y":46},{"x":-44,"y":79},{"x":-74,"y":-6},{"x":-82,"y":-78},{"x":-19,"y":55},{"x":-85,"y":-104},{"x":-36,"y":64},{"x":-72,"y":-7},{"x":47,"y":-43},{"x":-82,"y":-33},{"x":4,"y":62},{"x":-73,"y":-20},{"x":-93,"y":-135},{"x":-17,"y":73},{"x":-15,"y":-58},{"x":-53,"y":21},{"x":10,"y":48},{"x":-12,"y":-48},{"x":-4,"y":64},{"x":47,"y":102},{"x":-42,"y":18},{"x":-15,"y":-43},{"x":-28,"y":27},{"x":43,"y":-59},{"x":-36,"y":24},{"x":-71,"y":-65},{"x":43,"y":62},{"x":-93,"y":-37},{"x":-18,"y":27},{"x":55,"y":41},{"x":-61,"y":26},{"x":-47,"y":-61},{"x":-39,"y":12},{"x":-6,"y":54},{"x":-65,"y":-19},{"x":-180,"y":98},{"x":1,"y":56},{"x":-21,"y":-21},{"x":-270,"y":160},{"x":-26,"y":75},{"x":56,"y":3},{"x":-27,"y":61},{"x":31,"y":-10},{"x":-63,"y":208}],"type":"coastline"},{"arc":[{"x":40877,"y":26046},{"x":114,"y":23},{"x":85,"y":205},{"x":-26,"y":94},{"x":35,"y":30},{"x":34,"y":-39},{"x":49,"y":108},{"x":104,"y":37},{"x":-62,"y":-176},{"x":86,"y":73},{"x":34,"y":-60},{"x":-46,"y":-79},{"x":76,"y":-38},{"x":17,"y":74},{"x":51,"y":-1},{"x":-18,"y":147},{"x":77,"y":52},{"x":77,"y":-17},{"x":52,"y":154},{"x":116,"y":31},{"x":-78,"y":107},{"x":-65,"y":-47},{"x":-77,"y":31},{"x":-29,"y":156},{"x":-70,"y":-28},{"x":27,"y":-61},{"x":-75,"y":81},{"x":101,"y":384},{"x":-52,"y":12},{"x":15,"y":45},{"x":44,"y":-31},{"x":-11,"y":64},{"x":59,"y":-3},{"x":10,"y":50},{"x":10,"y":-44},{"x":93,"y":19},{"x":-7,"y":48},{"x":40,"y":-60},{"x":43,"y":108},{"x":107,"y":-14},{"x":-95,"y":-231},{"x":-91,"y":-27},{"x":74,"y":-153},{"x":63,"y":229},{"x":119,"y":130},{"x":68,"y":17},{"x":63,"y":127},{"x":180,"y":56},{"x":42,"y":-57},{"x":29,"y":15},{"x":-20,"y":-43},{"x":126,"y":-14},{"x":-4,"y":94},{"x":128,"y":46},{"x":61,"y":-17},{"x":-30,"y":40},{"x":41,"y":109},{"x":67,"y":40},{"x":61,"y":-15},{"x":7,"y":141},{"x":-58,"y":65},{"x":24,"y":185},{"x":75,"y":116},{"x":38,"y":-22},{"x":63,"y":92},{"x":56,"y":-3},{"x":7,"y":118},{"x":-51,"y":89},{"x":21,"y":54},{"x":31,"y":-47},{"x":43,"y":109},{"x":-41,"y":-35},{"x":-45,"y":32},{"x":-36,"y":-56},{"x":27,"y":80},{"x":31,"y":8},{"x":-12,"y":116},{"x":-37,"y":34},{"x":-36,"y":-44},{"x":2,"y":38},{"x":-53,"y":-7},{"x":-107,"y":-224},{"x":43,"y":-32},{"x":-63,"y":-9},{"x":2,"y":104},{"x":75,"y":118},{"x":-73,"y":-32},{"x":3,"y":39},{"x":192,"y":68},{"x":43,"y":115},{"x":-24,"y":21},{"x":-39,"y":-38},{"x":14,"y":70},{"x":-55,"y":-78},{"x":46,"y":87},{"x":-40,"y":54},{"x":-38,"y":-73},{"x":-2,"y":96},{"x":-35,"y":-56},{"x":27,"y":137}],"type":"coastline"},{"arc":[{"x":41541,"y":27360},{"x":-14,"y":-41},{"x":14,"y":41},{"x":79,"y":2},{"x":-79,"y":-2}],"type":"coastline"},{"arc":[{"x":41607,"y":27009},{"x":-89,"y":46},{"x":-50,"y":-40},{"x":46,"y":-34},{"x":93,"y":28}],"type":"coastline"},{"arc":[{"x":41768,"y":27446},{"x":-58,"y":20},{"x":-18,"y":-109},{"x":76,"y":89}],"type":"coastline"},{"arc":[{"x":41829,"y":27001},{"x":-108,"y":66},{"x":-25,"y":-22},{"x":49,"y":-81},{"x":76,"y":2},{"x":8,"y":35}],"type":"coastline"},{"arc":[{"x":42166,"y":27235},{"x":-37,"y":64},{"x":-15,"y":-67},{"x":52,"y":3}],"type":"coastline"},{"arc":[{"x":42807,"y":27514},{"x":-20,"y":31},{"x":-102,"y":-70},{"x":43,"y":-84},{"x":63,"y":8},{"x":16,"y":115}],"type":"coastline"},{"arc":[{"x":42954,"y":28868},{"x":-33,"y":153},{"x":-30,"y":-132},{"x":-37,"y":18},{"x":30,"y":-36},{"x":11,"y":-107},{"x":23,"y":13},{"x":0,"y":-24},{"x":65,"y":178},{"x":-29,"y":-63}],"type":"coastline"},{"arc":[{"x":43259,"y":28562},{"x":-18,"y":45},{"x":-39,"y":-13},{"x":57,"y":-32}],"type":"coastline"},{"arc":[{"x":60083,"y":65973},{"x":-187,"y":56},{"x":22,"y":12},{"x":5,"y":66},{"x":-18,"y":-67},{"x":-39,"y":11},{"x":-5,"y":23},{"x":-19,"y":-18},{"x":4,"y":32},{"x":-45,"y":-11},{"x":58,"y":29},{"x":-57,"y":-16},{"x":-25,"y":65},{"x":50,"y":-16},{"x":-63,"y":40},{"x":-215,"y":6},{"x":-145,"y":82},{"x":-283,"y":13},{"x":-42,"y":96},{"x":30,"y":-81},{"x":-21,"y":52},{"x":-38,"y":-51},{"x":-557,"y":41},{"x":-217,"y":57},{"x":-200,"y":-42},{"x":-44,"y":23},{"x":29,"y":-20},{"x":-28,"y":-2},{"x":1,"y":6},{"x":-18,"y":0},{"x":15,"y":24},{"x":-16,"y":-21},{"x":-3,"y":-12},{"x":-239,"y":19},{"x":-170,"y":-50},{"x":-24,"y":39},{"x":13,"y":-32},{"x":-37,"y":2},{"x":23,"y":39},{"x":-24,"y":-26},{"x":0,"y":-23},{"x":-268,"y":-46},{"x":-72,"y":39},{"x":-21,"y":-25},{"x":34,"y":45},{"x":-39,"y":-23},{"x":0,"y":-37},{"x":-126,"y":-36},{"x":-395,"y":-8},{"x":-165,"y":-83},{"x":-211,"y":-18},{"x":-117,"y":37},{"x":-97,"y":-49},{"x":-164,"y":-164},{"x":-4,"y":-59},{"x":28,"y":28},{"x":17,"y":-48},{"x":-57,"y":-109},{"x":-67,"y":-32},{"x":-34,"y":-177},{"x":-116,"y":-86},{"x":-96,"y":2}],"type":"coastline"},{"arc":[{"x":44706,"y":43280},{"x":507,"y":286},{"x":-11,"y":64},{"x":254,"y":154},{"x":-31,"y":-10},{"x":135,"y":219},{"x":210,"y":150},{"x":47,"y":102},{"x":-141,"y":80},{"x":-109,"y":-100},{"x":-170,"y":-35},{"x":-354,"y":-312},{"x":-2,"y":28},{"x":-53,"y":-59},{"x":-80,"y":-1}],"type":"coastline"},{"arc":[{"x":45957,"y":45098},{"x":-34,"y":15},{"x":-12,"y":-115},{"x":42,"y":15},{"x":4,"y":85}],"type":"coastline"},{"arc":[{"x":46038,"y":42456},{"x":-105,"y":-1},{"x":37,"y":-54},{"x":68,"y":55}],"type":"coastline"},{"arc":[{"x":46048,"y":44028},{"x":50,"y":-124},{"x":209,"y":-246},{"x":-49,"y":-55},{"x":-52,"y":11},{"x":88,"y":-84},{"x":56,"y":24},{"x":-65,"y":-32},{"x":68,"y":16},{"x":86,"y":-197},{"x":35,"y":33},{"x":16,"y":-24},{"x":63,"y":-271},{"x":-53,"y":-17},{"x":46,"y":-27},{"x":-11,"y":-58},{"x":26,"y":46},{"x":21,"y":-26},{"x":-62,"y":-47},{"x":78,"y":20},{"x":-95,"y":-38},{"x":-12,"y":-61},{"x":85,"y":55},{"x":1,"y":-79},{"x":-62,"y":6},{"x":-7,"y":-46},{"x":51,"y":-22},{"x":-97,"y":-145},{"x":112,"y":-141},{"x":-86,"y":-68},{"x":49,"y":-33},{"x":-84,"y":-94},{"x":127,"y":-17},{"x":13,"y":28},{"x":94,"y":-42},{"x":-124,"y":-34},{"x":-71,"y":28},{"x":-45,"y":-49},{"x":62,"y":17},{"x":-8,"y":-82},{"x":-51,"y":-26},{"x":-30,"y":31},{"x":-81,"y":-75},{"x":-12,"y":-105},{"x":109,"y":-97},{"x":-26,"y":-23},{"x":-25,"y":42},{"x":-1,"y":-89},{"x":-75,"y":-66}],"type":"coastline"},{"arc":[{"x":46091,"y":42352},{"x":-120,"y":47},{"x":5,"y":-153},{"x":82,"y":19},{"x":-25,"y":69},{"x":58,"y":18}],"type":"coastline"},{"arc":[{"x":46113,"y":42667},{"x":-49,"y":66},{"x":-63,"y":-56},{"x":77,"y":-53},{"x":35,"y":43}],"type":"coastline"},{"arc":[{"x":46139,"y":45038},{"x":-44,"y":-8},{"x":3,"y":51},{"x":-26,"y":-40},{"x":15,"y":90},{"x":-56,"y":-63},{"x":-31,"y":78},{"x":24,"y":-166},{"x":84,"y":-10},{"x":31,"y":68}],"type":"coastline"},{"arc":[{"x":46155,"y":42529},{"x":-40,"y":-30},{"x":11,"y":68},{"x":-94,"y":-15},{"x":83,"y":-124},{"x":40,"y":101}],"type":"coastline"},{"arc":[{"x":46202,"y":45263},{"x":-68,"y":33},{"x":-17,"y":-132},{"x":68,"y":-8},{"x":17,"y":107}],"type":"coastline"},{"arc":[{"x":46201,"y":45724},{"x":-89,"y":-114},{"x":98,"y":91},{"x":-80,"y":-109},{"x":53,"y":9},{"x":17,"y":-72},{"x":37,"y":36},{"x":94,"y":-97},{"x":-54,"y":-114},{"x":27,"y":-53},{"x":-36,"y":-37},{"x":-37,"y":23},{"x":-17,"y":-220},{"x":-29,"y":38},{"x":-49,"y":-198},{"x":-141,"y":-4},{"x":-110,"y":-467},{"x":82,"y":-136},{"x":4,"y":-192},{"x":77,"y":-80}],"type":"coastline"},{"arc":[{"x":46217,"y":43760},{"x":-49,"y":54},{"x":11,"y":-106},{"x":38,"y":52}],"type":"coastline"},{"arc":[{"x":46258,"y":43702},{"x":-70,"y":-9},{"x":14,"y":-61},{"x":56,"y":70}],"type":"coastline"},{"arc":[{"x":46257,"y":45345},{"x":-23,"y":-38},{"x":59,"y":1},{"x":-36,"y":37}],"type":"coastline"},{"arc":[{"x":46310,"y":45442},{"x":-18,"y":38},{"x":-64,"y":1},{"x":23,"y":-57},{"x":59,"y":18}],"type":"coastline"},{"arc":[{"x":46498,"y":42997},{"x":-10,"y":-39},{"x":40,"y":35},{"x":-30,"y":4}],"type":"coastline"},{"arc":[{"x":46527,"y":42785},{"x":-54,"y":-12},{"x":36,"y":-45},{"x":18,"y":57}],"type":"coastline"},{"arc":[{"x":50182,"y":41922},{"x":27,"y":232},{"x":65,"y":20},{"x":-30,"y":51},{"x":180,"y":316},{"x":-86,"y":77},{"x":46,"y":67},{"x":-23,"y":104},{"x":-72,"y":36},{"x":113,"y":146},{"x":0,"y":36},{"x":-74,"y":-10},{"x":55,"y":41},{"x":-22,"y":44},{"x":42,"y":7},{"x":-54,"y":60},{"x":60,"y":10},{"x":-24,"y":184},{"x":58,"y":22},{"x":-61,"y":6},{"x":42,"y":126},{"x":-63,"y":145},{"x":-58,"y":5},{"x":75,"y":43},{"x":-8,"y":37}],"type":"coastline"},{"arc":[{"x":50370,"y":43727},{"x":2,"y":19}],"type":"coastline"},{"arc":[{"x":80183,"y":69770},{"x":210,"y":-228},{"x":105,"y":-319},{"x":52,"y":2},{"x":-50,"y":-63},{"x":23,"y":-73},{"x":43,"y":2},{"x":-36,"y":-26},{"x":57,"y":-67},{"x":39,"y":-330},{"x":-45,"y":-152},{"x":161,"y":259},{"x":-88,"y":-225},{"x":31,"y":-33},{"x":-100,"y":-19},{"x":1,"y":-183},{"x":-146,"y":-443},{"x":-220,"y":-401},{"x":-91,"y":-68},{"x":47,"y":9},{"x":-319,"y":-431},{"x":-57,"y":-185},{"x":-213,"y":-251},{"x":-392,"y":-333},{"x":81,"y":-197},{"x":91,"y":-43},{"x":45,"y":71},{"x":-115,"y":71},{"x":-5,"y":45},{"x":88,"y":-8},{"x":21,"y":102},{"x":77,"y":-336},{"x":217,"y":-54},{"x":182,"y":-99},{"x":179,"y":-270},{"x":0,"y":-75},{"x":81,"y":23},{"x":18,"y":-55},{"x":79,"y":-2},{"x":184,"y":-228},{"x":17,"y":-231},{"x":-88,"y":-230},{"x":98,"y":-179},{"x":-25,"y":-259},{"x":-334,"y":-326},{"x":-425,"y":-237},{"x":-380,"y":-119},{"x":-153,"y":-8},{"x":-145,"y":48},{"x":-106,"y":182},{"x":-27,"y":207},{"x":-85,"y":56},{"x":-383,"y":511},{"x":-23,"y":132},{"x":83,"y":220},{"x":-6,"y":160},{"x":52,"y":64},{"x":-91,"y":195},{"x":-138,"y":54},{"x":-36,"y":105},{"x":-88,"y":4},{"x":-97,"y":65},{"x":-203,"y":315},{"x":-313,"y":197},{"x":-94,"y":182},{"x":-6,"y":159},{"x":-79,"y":208},{"x":-88,"y":141},{"x":-98,"y":-9},{"x":-57,"y":133},{"x":-68,"y":13},{"x":-77,"y":-113},{"x":4,"y":-167},{"x":-258,"y":-211},{"x":-69,"y":-315},{"x":128,"y":-157},{"x":148,"y":-505},{"x":-24,"y":-179},{"x":-65,"y":-68},{"x":-37,"y":12},{"x":-19,"y":-72},{"x":70,"y":-37},{"x":125,"y":34},{"x":-81,"y":48},{"x":60,"y":46},{"x":114,"y":-42},{"x":65,"y":-135},{"x":-23,"y":-145},{"x":-78,"y":-75},{"x":-246,"y":-66},{"x":-60,"y":-146},{"x":-119,"y":-125},{"x":-14,"y":-240},{"x":-70,"y":-72},{"x":-339,"y":-49},{"x":-215,"y":41},{"x":-80,"y":-38},{"x":-79,"y":-76},{"x":-6,"y":-170},{"x":-150,"y":-380},{"x":-307,"y":-156},{"x":-53,"y":-68}],"type":"coastline"},{"arc":[{"x":81544,"y":76744},{"x":-151,"y":-176},{"x":-32,"y":13},{"x":30,"y":-19},{"x":-33,"y":14},{"x":-506,"y":-638},{"x":-76,"y":-10},{"x":38,"y":-33},{"x":-27,"y":20},{"x":16,"y":-35},{"x":-202,"y":-203},{"x":-642,"y":-537},{"x":-293,"y":-174},{"x":-416,"y":-212},{"x":-55,"y":50},{"x":26,"y":-46},{"x":-79,"y":-29},{"x":60,"y":102},{"x":-50,"y":-79},{"x":-144,"y":-62},{"x":-210,"y":42},{"x":-34,"y":56},{"x":-526,"y":-102},{"x":-114,"y":15},{"x":-243,"y":-204},{"x":-215,"y":-58},{"x":-104,"y":31},{"x":253,"y":-313},{"x":196,"y":-108},{"x":230,"y":-459},{"x":164,"y":-164},{"x":99,"y":-547},{"x":101,"y":-218},{"x":-14,"y":65},{"x":58,"y":-51},{"x":72,"y":-326},{"x":224,"y":-313},{"x":112,"y":-372},{"x":150,"y":-139},{"x":86,"y":-286},{"x":234,"y":-347},{"x":312,"y":-299},{"x":155,"y":-601},{"x":189,"y":-222}],"type":"coastline"},{"arc":[{"x":75137,"y":61840},{"x":-16,"y":49},{"x":-42,"y":-66},{"x":29,"y":-19},{"x":29,"y":36}],"type":"coastline"},{"arc":[{"x":75277,"y":63284},{"x":131,"y":-190},{"x":-44,"y":-210},{"x":113,"y":-182},{"x":507,"y":-199},{"x":200,"y":-9},{"x":369,"y":97},{"x":296,"y":216},{"x":204,"y":15},{"x":-10,"y":137},{"x":80,"y":50},{"x":138,"y":14},{"x":36,"y":-60},{"x":38,"y":77},{"x":193,"y":37},{"x":360,"y":-70},{"x":35,"y":-73},{"x":114,"y":-24},{"x":11,"y":-47},{"x":142,"y":-55},{"x":197,"y":-162},{"x":62,"y":-131},{"x":15,"y":-241},{"x":340,"y":-163},{"x":87,"y":-301},{"x":124,"y":-77},{"x":69,"y":41},{"x":156,"y":-72},{"x":179,"y":53},{"x":95,"y":125},{"x":252,"y":115},{"x":416,"y":3},{"x":355,"y":-90},{"x":238,"y":166},{"x":101,"y":212},{"x":25,"y":442},{"x":147,"y":101},{"x":116,"y":260},{"x":318,"y":153},{"x":-141,"y":191},{"x":-119,"y":30},{"x":41,"y":212},{"x":223,"y":1},{"x":128,"y":156},{"x":280,"y":158},{"x":252,"y":411},{"x":69,"y":25},{"x":-48,"y":-8},{"x":22,"y":50},{"x":36,"y":-29},{"x":21,"y":56},{"x":106,"y":4},{"x":17,"y":-92},{"x":45,"y":17},{"x":97,"y":-50},{"x":86,"y":-112},{"x":249,"y":-127},{"x":161,"y":-256},{"x":185,"y":-130},{"x":141,"y":44},{"x":19,"y":-35},{"x":30,"y":52},{"x":71,"y":-17},{"x":12,"y":39},{"x":134,"y":48},{"x":78,"y":-51},{"x":-1,"y":348},{"x":135,"y":109},{"x":33,"y":-33}],"type":"coastline"},{"arc":[{"x":75829,"y":60143},{"x":-9,"y":127},{"x":-61,"y":32},{"x":-59,"y":-162},{"x":129,"y":3}],"type":"coastline"},{"arc":[{"x":78972,"y":60946},{"x":-171,"y":-32},{"x":-146,"y":-124},{"x":-97,"y":20},{"x":-244,"y":-65},{"x":-102,"y":-70},{"x":-32,"y":-114},{"x":-66,"y":-23},{"x":54,"y":-18},{"x":33,"y":-83},{"x":281,"y":8},{"x":103,"y":-61},{"x":86,"y":1},{"x":156,"y":105},{"x":72,"y":371},{"x":73,"y":85}],"type":"coastline"},{"arc":[{"x":83844,"y":64253},{"x":-8,"y":152},{"x":-260,"y":277},{"x":-64,"y":103},{"x":10,"y":86},{"x":-58,"y":58},{"x":-55,"y":-7},{"x":13,"y":-29},{"x":-46,"y":23},{"x":-163,"y":484},{"x":-62,"y":28},{"x":-34,"y":-30},{"x":-43,"y":59},{"x":17,"y":217},{"x":83,"y":44},{"x":-53,"y":39},{"x":23,"y":151},{"x":73,"y":45},{"x":53,"y":308},{"x":-74,"y":41},{"x":-85,"y":-73},{"x":-58,"y":47},{"x":-199,"y":540},{"x":129,"y":303},{"x":117,"y":119},{"x":-66,"y":66},{"x":100,"y":-18},{"x":17,"y":68},{"x":32,"y":-27},{"x":-22,"y":33},{"x":28,"y":-32},{"x":44,"y":108},{"x":420,"y":342},{"x":395,"y":17},{"x":428,"y":-258},{"x":319,"y":102},{"x":225,"y":-127},{"x":355,"y":-81},{"x":354,"y":215},{"x":127,"y":254},{"x":1,"y":135},{"x":88,"y":61},{"x":11,"y":185},{"x":269,"y":242},{"x":183,"y":10},{"x":-92,"y":62},{"x":74,"y":-38},{"x":53,"y":35},{"x":14,"y":-46},{"x":7,"y":49},{"x":127,"y":45},{"x":195,"y":15},{"x":1154,"y":-57},{"x":33,"y":91},{"x":230,"y":82},{"x":-33,"y":29},{"x":39,"y":-17},{"x":250,"y":187},{"x":188,"y":47},{"x":244,"y":0},{"x":160,"y":77},{"x":205,"y":31},{"x":458,"y":-48},{"x":-14,"y":27},{"x":526,"y":-120},{"x":147,"y":-52},{"x":-31,"y":-15},{"x":76,"y":9},{"x":518,"y":-216},{"x":646,"y":-336},{"x":186,"y":-63},{"x":148,"y":8},{"x":224,"y":165},{"x":85,"y":8},{"x":23,"y":-35},{"x":-1,"y":32},{"x":14,"y":-38},{"x":27,"y":76},{"x":144,"y":99},{"x":79,"y":8},{"x":155,"y":-83},{"x":190,"y":32},{"x":-147,"y":196},{"x":15,"y":-60},{"x":-14,"y":21},{"x":-3,"y":-28},{"x":-42,"y":-4},{"x":-9,"y":14},{"x":36,"y":-7},{"x":-2,"y":25},{"x":-28,"y":-12},{"x":10,"y":32},{"x":-22,"y":1},{"x":22,"y":55},{"x":-46,"y":7},{"x":24,"y":121},{"x":52,"y":17},{"x":-28,"y":189},{"x":145,"y":245},{"x":305,"y":102},{"x":53,"y":162}],"type":"coastline"},{"arc":[{"x":88488,"y":67423},{"x":-69,"y":29},{"x":-55,"y":-153},{"x":124,"y":124}],"type":"coastline"},{"arc":[{"x":88506,"y":67786},{"x":-80,"y":0},{"x":23,"y":-165},{"x":57,"y":165}],"type":"coastline"},{"arc":[{"x":92030,"y":66956},{"x":-52,"y":121},{"x":-50,"y":-9},{"x":-6,"y":168},{"x":-160,"y":157},{"x":-204,"y":43},{"x":-177,"y":-163},{"x":-41,"y":-215},{"x":163,"y":-224},{"x":106,"y":-91},{"x":90,"y":-7},{"x":15,"y":-46},{"x":20,"y":55},{"x":126,"y":-19},{"x":170,"y":230}],"type":"coastline"},{"arc":[{"x":92922,"y":66106},{"x":-112,"y":88},{"x":-24,"y":78},{"x":32,"y":81},{"x":89,"y":-3},{"x":-160,"y":123},{"x":-75,"y":-42},{"x":-232,"y":12},{"x":-59,"y":-37},{"x":-90,"y":29},{"x":-194,"y":-50},{"x":43,"y":-106},{"x":31,"y":40},{"x":80,"y":-10},{"x":81,"y":-75},{"x":226,"y":-71},{"x":119,"y":32},{"x":33,"y":-33},{"x":36,"y":43},{"x":64,"y":-103},{"x":40,"y":39},{"x":72,"y":-35}],"type":"coastline"},{"arc":[{"x":74490,"y":64737},{"x":-192,"y":185},{"x":-324,"y":-47},{"x":-911,"y":168},{"x":-118,"y":53},{"x":-52,"y":105},{"x":-79,"y":46},{"x":29,"y":237},{"x":223,"y":228},{"x":65,"y":-18},{"x":28,"y":51},{"x":147,"y":10},{"x":42,"y":-124},{"x":18,"y":91},{"x":62,"y":-10},{"x":32,"y":49},{"x":25,"y":-36},{"x":109,"y":57},{"x":-77,"y":255},{"x":-142,"y":132},{"x":-108,"y":-47},{"x":11,"y":98},{"x":-103,"y":241},{"x":-177,"y":140},{"x":29,"y":170},{"x":187,"y":162},{"x":333,"y":141},{"x":482,"y":62},{"x":209,"y":112},{"x":285,"y":-115},{"x":209,"y":-182},{"x":12,"y":-64},{"x":18,"y":30},{"x":-6,"y":-108},{"x":-147,"y":-95},{"x":-13,"y":40},{"x":95,"y":45},{"x":-87,"y":-8},{"x":-257,"y":-352},{"x":67,"y":-287},{"x":-109,"y":-127},{"x":-54,"y":-333},{"x":-147,"y":-158},{"x":79,"y":-173},{"x":212,"y":0},{"x":67,"y":52}],"type":"coastline"},{"arc":[{"x":40926,"y":47207},{"x":-42,"y":188},{"x":-67,"y":-124},{"x":-32,"y":9},{"x":55,"y":-31},{"x":9,"y":-94},{"x":77,"y":52}],"type":"coastline"},{"arc":[{"x":41976,"y":47941},{"x":-97,"y":-72},{"x":-92,"y":-8},{"x":-31,"y":-67},{"x":-59,"y":19},{"x":27,"y":36},{"x":-44,"y":-3},{"x":-55,"y":-180},{"x":-89,"y":61},{"x":26,"y":-32},{"x":-46,"y":4},{"x":-54,"y":-73},{"x":-51,"y":30},{"x":51,"y":40},{"x":-61,"y":1},{"x":19,"y":61},{"x":-57,"y":-9},{"x":-25,"y":-132},{"x":-85,"y":-120},{"x":11,"y":121},{"x":-133,"y":-167},{"x":29,"y":-25},{"x":-78,"y":-61},{"x":-77,"y":-205},{"x":-155,"y":-66},{"x":-13,"y":61},{"x":-100,"y":-36},{"x":40,"y":-63},{"x":-61,"y":-29},{"x":17,"y":-35},{"x":61,"y":-9},{"x":54,"y":95},{"x":65,"y":-7},{"x":-26,"y":-32},{"x":52,"y":-24},{"x":-34,"y":-76},{"x":41,"y":-8},{"x":-38,"y":-41},{"x":37,"y":-45},{"x":-34,"y":-15},{"x":68,"y":-30},{"x":-25,"y":-93},{"x":92,"y":-168},{"x":-28,"y":-145},{"x":59,"y":-57},{"x":25,"y":-208},{"x":124,"y":-109},{"x":-7,"y":-153},{"x":65,"y":-12},{"x":118,"y":-190},{"x":71,"y":-13},{"x":39,"y":38},{"x":23,"y":-30},{"x":41,"y":36},{"x":-17,"y":-23},{"x":66,"y":-5},{"x":122,"y":-229},{"x":46,"y":54},{"x":61,"y":-31},{"x":1,"y":75},{"x":-69,"y":16},{"x":14,"y":63},{"x":30,"y":-19},{"x":6,"y":38},{"x":52,"y":-2},{"x":-37,"y":21},{"x":114,"y":44},{"x":-27,"y":-48},{"x":73,"y":-69},{"x":-21,"y":-54},{"x":63,"y":12},{"x":4,"y":-108},{"x":116,"y":-48},{"x":-22,"y":-66},{"x":82,"y":-94},{"x":-5,"y":-131},{"x":76,"y":1},{"x":66,"y":-66},{"x":23,"y":-114},{"x":284,"y":-162},{"x":37,"y":-107},{"x":-59,"y":-201},{"x":109,"y":4},{"x":23,"y":92},{"x":92,"y":-59},{"x":125,"y":184},{"x":28,"y":-59},{"x":-47,"y":-82},{"x":14,"y":-29},{"x":42,"y":51},{"x":35,"y":-66},{"x":130,"y":306},{"x":44,"y":-52},{"x":46,"y":127},{"x":161,"y":-130},{"x":40,"y":-211},{"x":100,"y":119},{"x":100,"y":17},{"x":-40,"y":112},{"x":32,"y":-48},{"x":70,"y":-2},{"x":-18,"y":-41},{"x":28,"y":17},{"x":-15,"y":162},{"x":71,"y":145},{"x":-10,"y":-99},{"x":50,"y":40},{"x":-2,"y":-40},{"x":124,"y":-10},{"x":-14,"y":-29},{"x":-62,"y":31},{"x":77,"y":-54},{"x":4,"y":-94},{"x":64,"y":-13},{"x":-34,"y":50},{"x":84,"y":-57},{"x":21,"y":33},{"x":-9,"y":-59},{"x":36,"y":44},{"x":7,"y":-107},{"x":38,"y":-37},{"x":-36,"y":102},{"x":62,"y":-18},{"x":94,"y":-226},{"x":65,"y":46},{"x":116,"y":0},{"x":30,"y":69}],"type":"coastline"},{"arc":[{"x":44448,"y":44307},{"x":-75,"y":-36},{"x":17,"y":-43},{"x":58,"y":79}],"type":"coastline"},{"arc":[{"x":40049,"y":33075},{"x":-37,"y":-40},{"x":28,"y":-31},{"x":9,"y":71}],"type":"coastline"},{"arc":[{"x":82060,"y":80428},{"x":-22,"y":19},{"x":-43,"y":-56},{"x":65,"y":37}],"type":"coastline"},{"arc":[{"x":82188,"y":78419},{"x":-3,"y":51},{"x":4,"y":-80},{"x":-1,"y":29}],"type":"coastline"},{"arc":[{"x":82461,"y":81290},{"x":-6,"y":26},{"x":-28,"y":-78},{"x":34,"y":52}],"type":"coastline"},{"arc":[{"x":83191,"y":83079},{"x":-45,"y":42},{"x":-21,"y":-75},{"x":66,"y":33}],"type":"coastline"},{"arc":[{"x":83871,"y":84615},{"x":-79,"y":-39},{"x":38,"y":-73},{"x":41,"y":112}],"type":"coastline"},{"arc":[{"x":84065,"y":85167},{"x":-50,"y":-16},{"x":11,"y":-33},{"x":39,"y":49}],"type":"coastline"},{"arc":[{"x":84173,"y":84916},{"x":-73,"y":35},{"x":-2,"y":-54},{"x":-75,"y":-35},{"x":15,"y":-80},{"x":-65,"y":-74},{"x":28,"y":-64},{"x":101,"y":83},{"x":-41,"y":39},{"x":50,"y":21},{"x":-37,"y":84},{"x":62,"y":-13},{"x":37,"y":58}],"type":"coastline"},{"arc":[{"x":84235,"y":84143},{"x":-61,"y":47},{"x":26,"y":181},{"x":-60,"y":-58},{"x":-67,"y":78},{"x":5,"y":-159},{"x":-41,"y":-49},{"x":129,"y":-7},{"x":35,"y":-126},{"x":34,"y":93}],"type":"coastline"},{"arc":[{"x":84611,"y":85049},{"x":-63,"y":102},{"x":-3,"y":152},{"x":-130,"y":-95},{"x":-40,"y":67},{"x":-157,"y":-297},{"x":157,"y":-45},{"x":119,"y":-164},{"x":117,"y":280}],"type":"coastline"},{"arc":[{"x":85056,"y":85698},{"x":-56,"y":61},{"x":6,"y":82},{"x":-97,"y":22},{"x":40,"y":-319},{"x":16,"y":100},{"x":91,"y":54}],"type":"coastline"},{"arc":[{"x":85411,"y":87089},{"x":-21,"y":51},{"x":-33,"y":-37},{"x":28,"y":-39},{"x":26,"y":25}],"type":"coastline"},{"arc":[{"x":85525,"y":87493},{"x":-32,"y":12},{"x":-32,"y":-57},{"x":64,"y":45}],"type":"coastline"},{"arc":[{"x":86078,"y":87604},{"x":-77,"y":154},{"x":-95,"y":68},{"x":-1,"y":81},{"x":-49,"y":18},{"x":-39,"y":-68},{"x":-68,"y":18},{"x":-11,"y":-248},{"x":-51,"y":-44},{"x":-44,"y":86},{"x":-1,"y":-194},{"x":-122,"y":-37},{"x":36,"y":-62},{"x":-65,"y":-19},{"x":-23,"y":-133},{"x":-43,"y":11},{"x":41,"y":-131},{"x":-93,"y":-66},{"x":-9,"y":45},{"x":-69,"y":-56},{"x":-13,"y":-128},{"x":45,"y":40},{"x":75,"y":-106},{"x":107,"y":12},{"x":-12,"y":-64},{"x":-78,"y":3},{"x":39,"y":-83},{"x":101,"y":80},{"x":178,"y":-71},{"x":56,"y":92},{"x":40,"y":314},{"x":-32,"y":36},{"x":39,"y":45},{"x":-76,"y":102},{"x":58,"y":-1},{"x":36,"y":-100},{"x":42,"y":1},{"x":132,"y":198},{"x":-78,"y":77},{"x":15,"y":23},{"x":73,"y":-50},{"x":-52,"y":124},{"x":83,"y":-17},{"x":5,"y":50}],"type":"coastline"},{"arc":[{"x":88049,"y":82126},{"x":-359,"y":108},{"x":-69,"y":-70},{"x":-85,"y":1},{"x":-137,"y":-71},{"x":-254,"y":-255},{"x":-189,"y":-71},{"x":-138,"y":-5},{"x":-387,"y":-353},{"x":-318,"y":-170},{"x":-243,"y":-14},{"x":-144,"y":-114},{"x":-251,"y":29},{"x":-356,"y":255},{"x":17,"y":-40},{"x":-102,"y":60},{"x":-199,"y":626},{"x":-31,"y":65},{"x":-41,"y":40},{"x":-76,"y":25},{"x":-44,"y":-29},{"x":-27,"y":-63},{"x":1,"y":-140},{"x":8,"y":88},{"x":41,"y":-100},{"x":12,"y":190},{"x":89,"y":16},{"x":-13,"y":-72},{"x":8,"y":42},{"x":26,"y":12},{"x":-15,"y":-20},{"x":33,"y":-6},{"x":-1,"y":-46},{"x":30,"y":-30},{"x":-39,"y":-101},{"x":49,"y":31},{"x":-50,"y":-171},{"x":75,"y":101},{"x":52,"y":-276},{"x":-39,"y":30},{"x":-52,"y":-22},{"x":-51,"y":84},{"x":-130,"y":12},{"x":-145,"y":83},{"x":-531,"y":121},{"x":-234,"y":149},{"x":-248,"y":288},{"x":-106,"y":352},{"x":175,"y":108},{"x":145,"y":235},{"x":34,"y":-28},{"x":66,"y":165},{"x":123,"y":105},{"x":-38,"y":253},{"x":69,"y":150},{"x":-59,"y":202},{"x":-35,"y":-41},{"x":-42,"y":17},{"x":-140,"y":-199},{"x":-33,"y":-249},{"x":-70,"y":-44},{"x":42,"y":-70},{"x":-20,"y":-131},{"x":-167,"y":-115},{"x":21,"y":-83},{"x":-231,"y":-69},{"x":-46,"y":28},{"x":-48,"y":-97},{"x":-96,"y":-3},{"x":9,"y":-73},{"x":-44,"y":-5},{"x":25,"y":23},{"x":-43,"y":35},{"x":-39,"y":-15},{"x":-26,"y":-88},{"x":63,"y":26},{"x":59,"y":-65},{"x":2,"y":-219},{"x":-34,"y":-293},{"x":-55,"y":-105},{"x":21,"y":-99},{"x":-155,"y":-323},{"x":62,"y":-119},{"x":-24,"y":-86},{"x":-110,"y":-121},{"x":-138,"y":4},{"x":-50,"y":215},{"x":-38,"y":-175},{"x":47,"y":-9},{"x":-5,"y":-87},{"x":-139,"y":-47},{"x":-68,"y":-201},{"x":-127,"y":-23},{"x":-82,"y":-188},{"x":22,"y":-357},{"x":113,"y":-82},{"x":9,"y":-78},{"x":93,"y":-5},{"x":56,"y":85},{"x":46,"y":-145},{"x":-34,"y":-136},{"x":-265,"y":-196},{"x":-72,"y":1},{"x":-158,"y":224},{"x":-19,"y":-42},{"x":0,"y":-211},{"x":80,"y":-318},{"x":-33,"y":-669},{"x":117,"y":-312},{"x":65,"y":35},{"x":51,"y":-52},{"x":-31,"y":-58},{"x":28,"y":43},{"x":24,"y":-322},{"x":-81,"y":-366},{"x":-190,"y":-445},{"x":-424,"y":-641}],"type":"coastline"},{"arc":[{"x":88814,"y":85165},{"x":-154,"y":218},{"x":-120,"y":54},{"x":-161,"y":355},{"x":17,"y":510},{"x":50,"y":211},{"x":96,"y":158},{"x":-120,"y":-96},{"x":-204,"y":-65},{"x":-112,"y":-152},{"x":99,"y":-142},{"x":-6,"y":-80},{"x":-72,"y":-159},{"x":-92,"y":-81},{"x":-71,"y":14},{"x":-19,"y":-93},{"x":-181,"y":-177},{"x":-56,"y":-679},{"x":-139,"y":-167},{"x":-202,"y":-69},{"x":-58,"y":-231},{"x":-152,"y":-228},{"x":-112,"y":-79},{"x":-66,"y":13},{"x":-38,"y":-83},{"x":-96,"y":-50},{"x":-140,"y":-8},{"x":-46,"y":48},{"x":-3,"y":-99},{"x":40,"y":14},{"x":12,"y":-48},{"x":-47,"y":-88},{"x":-181,"y":-98},{"x":-207,"y":-36},{"x":-91,"y":-246},{"x":-11,"y":-237},{"x":-200,"y":-236},{"x":-906,"y":-145},{"x":79,"y":-38},{"x":257,"y":56},{"x":14,"y":-175},{"x":-65,"y":-251},{"x":141,"y":-59},{"x":130,"y":28},{"x":201,"y":-99},{"x":54,"y":22},{"x":53,"y":144},{"x":199,"y":106},{"x":228,"y":426},{"x":91,"y":36},{"x":173,"y":285},{"x":60,"y":-2},{"x":110,"y":239},{"x":232,"y":10},{"x":338,"y":342},{"x":300,"y":189},{"x":118,"y":209},{"x":174,"y":154},{"x":81,"y":47},{"x":186,"y":19},{"x":165,"y":168},{"x":241,"y":109},{"x":147,"y":175},{"x":42,"y":137}],"type":"coastline"},{"arc":[{"x":93324,"y":94644},{"x":-27,"y":314},{"x":-166,"y":198},{"x":-133,"y":-22},{"x":-89,"y":-192},{"x":-53,"y":-26},{"x":-94,"y":9},{"x":-143,"y":174},{"x":-172,"y":-123},{"x":-81,"y":-5},{"x":5,"y":-120},{"x":-64,"y":-118},{"x":64,"y":-120},{"x":-9,"y":-385},{"x":-101,"y":-277},{"x":-145,"y":-214},{"x":-97,"y":-39},{"x":-14,"y":-214},{"x":-96,"y":-117},{"x":-68,"y":-373},{"x":-131,"y":-133},{"x":-5,"y":-95},{"x":-150,"y":-172},{"x":-10,"y":-95},{"x":-149,"y":-248},{"x":-198,"y":-164},{"x":-46,"y":-94},{"x":-226,"y":-166},{"x":-70,"y":-181},{"x":-118,"y":-111},{"x":19,"y":-197},{"x":-77,"y":-241},{"x":127,"y":-201},{"x":112,"y":-14},{"x":-25,"y":-243},{"x":-175,"y":-166},{"x":-82,"y":-8},{"x":-77,"y":144},{"x":-135,"y":-133},{"x":-154,"y":-68},{"x":-161,"y":-170},{"x":-49,"y":-181},{"x":-102,"y":-53},{"x":-73,"y":-240},{"x":-96,"y":-150},{"x":-86,"y":-43},{"x":-37,"y":-123},{"x":-330,"y":-253},{"x":-163,"y":-48},{"x":-138,"y":-168},{"x":-41,"y":-225},{"x":41,"y":-137},{"x":-56,"y":-125},{"x":-207,"y":-204},{"x":-247,"y":-103},{"x":-108,"y":-132},{"x":12,"y":-182},{"x":97,"y":-171},{"x":250,"y":98},{"x":177,"y":247},{"x":176,"y":-79},{"x":178,"y":63},{"x":-153,"y":37},{"x":-90,"y":128},{"x":96,"y":119},{"x":82,"y":30},{"x":94,"y":0},{"x":92,"y":-100},{"x":1,"y":149},{"x":-97,"y":97},{"x":6,"y":84},{"x":254,"y":328},{"x":171,"y":51},{"x":106,"y":-18},{"x":41,"y":-253},{"x":131,"y":-90},{"x":94,"y":22},{"x":10,"y":173},{"x":-119,"y":143},{"x":41,"y":165},{"x":267,"y":99},{"x":185,"y":426},{"x":267,"y":264},{"x":74,"y":194},{"x":42,"y":41},{"x":117,"y":-25},{"x":46,"y":48},{"x":127,"y":2},{"x":24,"y":37},{"x":119,"y":-29},{"x":46,"y":-114},{"x":36,"y":33},{"x":-47,"y":221},{"x":-97,"y":72},{"x":-25,"y":242},{"x":109,"y":172},{"x":165,"y":-17},{"x":225,"y":153},{"x":6,"y":116},{"x":50,"y":25},{"x":46,"y":175},{"x":-44,"y":79},{"x":72,"y":98},{"x":140,"y":46},{"x":36,"y":-57},{"x":144,"y":21},{"x":43,"y":-41},{"x":254,"y":-44},{"x":278,"y":202},{"x":35,"y":78},{"x":-77,"y":145},{"x":-260,"y":50},{"x":-109,"y":97},{"x":-22,"y":-36},{"x":-172,"y":50},{"x":-101,"y":101},{"x":-47,"y":327},{"x":46,"y":423},{"x":84,"y":334},{"x":94,"y":75},{"x":83,"y":241},{"x":81,"y":23},{"x":62,"y":131},{"x":37,"y":-24},{"x":65,"y":92},{"x":71,"y":-31},{"x":90,"y":59},{"x":115,"y":125},{"x":46,"y":133},{"x":138,"y":79},{"x":46,"y":182},{"x":166,"y":96},{"x":18,"y":230},{"x":62,"y":131}],"type":"coastline"},{"arc":[{"x":49937,"y":46015},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":50372,"y":43746},{"x":3,"y":54},{"x":-56,"y":8},{"x":10,"y":172},{"x":61,"y":117},{"x":132,"y":82},{"x":-15,"y":146},{"x":80,"y":132},{"x":78,"y":87},{"x":61,"y":2},{"x":77,"y":193},{"x":-34,"y":28},{"x":61,"y":223},{"x":67,"y":60},{"x":-88,"y":117},{"x":-63,"y":6},{"x":-8,"y":65},{"x":-51,"y":-4},{"x":-28,"y":56},{"x":-83,"y":-10},{"x":-51,"y":83},{"x":-61,"y":-38},{"x":-75,"y":17},{"x":10,"y":-56},{"x":29,"y":27},{"x":20,"y":-28},{"x":-44,"y":-79},{"x":-196,"y":-78},{"x":-215,"y":-190},{"x":-134,"y":-1},{"x":13,"y":61},{"x":72,"y":-18},{"x":42,"y":82},{"x":70,"y":5},{"x":-17,"y":36},{"x":73,"y":67},{"x":-120,"y":-20},{"x":-46,"y":89},{"x":-33,"y":-77},{"x":33,"y":-42},{"x":-96,"y":-2},{"x":-20,"y":100},{"x":-76,"y":75},{"x":-16,"y":77},{"x":59,"y":47},{"x":-42,"y":31},{"x":-91,"y":1},{"x":-161,"y":-78},{"x":-30,"y":21},{"x":105,"y":113},{"x":83,"y":0},{"x":-17,"y":117},{"x":-59,"y":-28},{"x":9,"y":97},{"x":164,"y":-11},{"x":-62,"y":-56},{"x":7,"y":-134},{"x":207,"y":-3},{"x":-39,"y":21},{"x":83,"y":114},{"x":20,"y":174},{"x":105,"y":27},{"x":56,"y":104},{"x":-152,"y":-42},{"x":-46,"y":130}],"type":"coastline"},{"arc":[{"x":37775,"y":35234},{"x":-83,"y":94},{"x":-85,"y":7},{"x":-61,"y":-110},{"x":61,"y":27},{"x":57,"y":-58},{"x":40,"y":49},{"x":71,"y":-9}],"type":"coastline"},{"arc":[{"x":38002,"y":35021},{"x":-10,"y":46},{"x":-34,"y":-12},{"x":-2,"y":-61},{"x":46,"y":27}],"type":"coastline"},{"arc":[{"x":38485,"y":35785},{"x":-18,"y":33},{"x":-2,"y":-62},{"x":20,"y":29}],"type":"coastline"},{"arc":[{"x":40782,"y":38544},{"x":-19,"y":-26},{"x":-8,"y":5},{"x":-17,"y":31},{"x":19,"y":-37},{"x":8,"y":0},{"x":12,"y":6},{"x":5,"y":21}],"type":"coastline"},{"arc":[{"x":41181,"y":41718},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":41218,"y":41686},{"x":-368,"y":-233},{"x":-296,"y":-122},{"x":-58,"y":17},{"x":-600,"y":-139},{"x":184,"y":-123},{"x":0,"y":27},{"x":55,"y":-72},{"x":-24,"y":-69},{"x":151,"y":-33},{"x":178,"y":-181},{"x":8,"y":-58},{"x":178,"y":-20},{"x":128,"y":-269},{"x":196,"y":-85},{"x":117,"y":-383},{"x":1,"y":-220},{"x":99,"y":-87},{"x":-61,"y":-474},{"x":-96,"y":-188},{"x":156,"y":27},{"x":18,"y":-75},{"x":-40,"y":32},{"x":-62,"y":-57},{"x":-83,"y":48},{"x":12,"y":89},{"x":-24,"y":-31},{"x":-227,"y":-432},{"x":39,"y":-24},{"x":-9,"y":-30},{"x":-56,"y":-34},{"x":53,"y":-30},{"x":-18,"y":-98},{"x":-57,"y":27},{"x":-8,"y":-135},{"x":-62,"y":-67},{"x":-40,"y":61},{"x":79,"y":15},{"x":-62,"y":48},{"x":61,"y":46},{"x":-46,"y":23},{"x":110,"y":53},{"x":-55,"y":54},{"x":58,"y":36},{"x":-34,"y":70},{"x":-54,"y":-13},{"x":-38,"y":-165},{"x":-57,"y":-11},{"x":35,"y":-71},{"x":-20,"y":-51},{"x":-38,"y":9},{"x":41,"y":-26},{"x":-6,"y":-94},{"x":-60,"y":-61},{"x":-107,"y":8},{"x":-32,"y":-46},{"x":51,"y":-28},{"x":-7,"y":46},{"x":61,"y":2},{"x":-22,"y":-92},{"x":38,"y":-35},{"x":37,"y":55},{"x":59,"y":-53},{"x":-66,"y":20},{"x":-103,"y":-135},{"x":-110,"y":19},{"x":-60,"y":-119},{"x":-58,"y":104},{"x":-73,"y":-79},{"x":-98,"y":19},{"x":25,"y":59},{"x":-97,"y":16},{"x":-34,"y":-60},{"x":-104,"y":31},{"x":-42,"y":-64},{"x":-83,"y":9},{"x":-51,"y":-111},{"x":-63,"y":49},{"x":-24,"y":-36},{"x":-51,"y":31},{"x":-17,"y":-54},{"x":68,"y":-4},{"x":11,"y":-50},{"x":-74,"y":-84},{"x":-227,"y":-99},{"x":-108,"y":-140},{"x":-211,"y":-32},{"x":57,"y":-94},{"x":0,"y":-125},{"x":-114,"y":-105},{"x":-256,"y":-56},{"x":-309,"y":60},{"x":-82,"y":-58},{"x":-10,"y":-156},{"x":-133,"y":37},{"x":-38,"y":-39},{"x":-94,"y":55},{"x":-51,"y":137},{"x":-111,"y":56},{"x":-166,"y":8},{"x":26,"y":-200},{"x":79,"y":21},{"x":66,"y":-71},{"x":65,"y":65},{"x":5,"y":-52},{"x":-61,"y":-37},{"x":48,"y":-22},{"x":18,"y":29},{"x":29,"y":-45},{"x":-36,"y":-1},{"x":-1,"y":-54},{"x":38,"y":-14},{"x":11,"y":-135},{"x":-85,"y":-1},{"x":-19,"y":-40},{"x":87,"y":12},{"x":22,"y":-36},{"x":-190,"y":-218},{"x":65,"y":-117},{"x":-38,"y":-47},{"x":199,"y":-171},{"x":-14,"y":-101},{"x":-41,"y":57},{"x":-23,"y":-162},{"x":-67,"y":-17},{"x":-16,"y":-72},{"x":33,"y":37},{"x":64,"y":-25},{"x":11,"y":40},{"x":43,"y":-66},{"x":20,"y":109},{"x":33,"y":-59},{"x":47,"y":14},{"x":51,"y":73},{"x":34,"y":-16},{"x":5,"y":53},{"x":60,"y":-63},{"x":141,"y":144},{"x":7,"y":41},{"x":-56,"y":0},{"x":24,"y":56},{"x":65,"y":-69},{"x":12,"y":67},{"x":5,"y":-39},{"x":113,"y":-12},{"x":-36,"y":-30},{"x":47,"y":-14},{"x":-38,"y":-37},{"x":24,"y":-112}],"type":"coastline"},{"arc":[{"x":35230,"y":27225},{"x":20,"y":29},{"x":39,"y":-30},{"x":-17,"y":70},{"x":101,"y":-30},{"x":146,"y":113},{"x":-9,"y":120},{"x":73,"y":-39},{"x":16,"y":43},{"x":47,"y":-28},{"x":33,"y":82},{"x":67,"y":-7},{"x":13,"y":37},{"x":-58,"y":25},{"x":80,"y":-5},{"x":-38,"y":49},{"x":52,"y":48},{"x":7,"y":-75},{"x":112,"y":-20},{"x":5,"y":64},{"x":75,"y":1},{"x":39,"y":90},{"x":55,"y":-68},{"x":229,"y":199},{"x":65,"y":119},{"x":181,"y":-38},{"x":37,"y":-83},{"x":61,"y":7},{"x":30,"y":76},{"x":75,"y":-119},{"x":-66,"y":147},{"x":80,"y":-134},{"x":53,"y":28},{"x":-1,"y":68},{"x":182,"y":114},{"x":102,"y":149},{"x":69,"y":-59},{"x":19,"y":83},{"x":-47,"y":49},{"x":83,"y":27},{"x":46,"y":-36},{"x":-88,"y":-211},{"x":12,"y":-184},{"x":-77,"y":-309},{"x":42,"y":8},{"x":30,"y":-39},{"x":45,"y":40},{"x":134,"y":279},{"x":177,"y":136},{"x":31,"y":117},{"x":275,"y":-34},{"x":90,"y":56},{"x":138,"y":-127},{"x":56,"y":22},{"x":38,"y":-222},{"x":131,"y":-2},{"x":103,"y":-166},{"x":-13,"y":-57},{"x":78,"y":-4},{"x":-45,"y":-36},{"x":27,"y":-30},{"x":349,"y":-50},{"x":18,"y":-121},{"x":33,"y":83},{"x":40,"y":-16},{"x":-53,"y":-84},{"x":108,"y":114},{"x":102,"y":8},{"x":139,"y":-43},{"x":45,"y":-95},{"x":54,"y":37},{"x":55,"y":-92},{"x":90,"y":2},{"x":25,"y":-313},{"x":64,"y":-8},{"x":121,"y":-124},{"x":33,"y":27},{"x":24,"y":-27},{"x":-47,"y":-17},{"x":-7,"y":-65},{"x":-110,"y":-23},{"x":-107,"y":-115},{"x":-121,"y":-156},{"x":21,"y":-85},{"x":-89,"y":43},{"x":-21,"y":-32},{"x":11,"y":42},{"x":-93,"y":15},{"x":-184,"y":138},{"x":-176,"y":33},{"x":4,"y":51},{"x":-81,"y":72},{"x":-50,"y":0},{"x":-36,"y":-88},{"x":-102,"y":4},{"x":2,"y":-37},{"x":-70,"y":-21},{"x":8,"y":-70},{"x":-79,"y":-49},{"x":-212,"y":152},{"x":126,"y":197},{"x":2,"y":230},{"x":-97,"y":108},{"x":-333,"y":150},{"x":-62,"y":-42},{"x":-105,"y":22},{"x":-136,"y":-113},{"x":-86,"y":51},{"x":-88,"y":-60},{"x":-75,"y":-157},{"x":8,"y":-150},{"x":-22,"y":24},{"x":-84,"y":-39},{"x":-105,"y":-174}],"type":"coastline"},{"arc":[{"x":35958,"y":27013},{"x":-66,"y":-10},{"x":52,"y":-23},{"x":14,"y":33}],"type":"coastline"},{"arc":[{"x":36026,"y":27205},{"x":-35,"y":71},{"x":-126,"y":-94},{"x":-46,"y":-178},{"x":36,"y":111},{"x":89,"y":-5},{"x":82,"y":95}],"type":"coastline"},{"arc":[{"x":36095,"y":27056},{"x":-54,"y":102},{"x":-36,"y":-12},{"x":-34,"y":-107},{"x":41,"y":51},{"x":38,"y":-90},{"x":45,"y":56}],"type":"coastline"},{"arc":[{"x":36112,"y":27188},{"x":-50,"y":-6},{"x":34,"y":-29},{"x":16,"y":35}],"type":"coastline"},{"arc":[{"x":36231,"y":27424},{"x":-78,"y":33},{"x":3,"y":47},{"x":-65,"y":-64},{"x":110,"y":-42},{"x":30,"y":26}],"type":"coastline"},{"arc":[{"x":36629,"y":27714},{"x":-30,"y":-11},{"x":7,"y":42},{"x":-10,"y":-43},{"x":33,"y":12}],"type":"coastline"},{"arc":[{"x":36683,"y":26626},{"x":-32,"y":-19},{"x":-104,"y":60},{"x":-60,"y":-42},{"x":-4,"y":25},{"x":1,"y":-21},{"x":-130,"y":35},{"x":-30,"y":34},{"x":0,"y":-41},{"x":-143,"y":-46},{"x":20,"y":96},{"x":-105,"y":23},{"x":-49,"y":-56},{"x":-138,"y":-22},{"x":-64,"y":-116},{"x":55,"y":-22},{"x":71,"y":35},{"x":-45,"y":-45},{"x":26,"y":-24},{"x":-57,"y":-13}],"type":"coastline"},{"arc":[{"x":36799,"y":27591},{"x":-264,"y":-85},{"x":-149,"y":-114},{"x":-11,"y":65},{"x":-44,"y":-30},{"x":20,"y":-50},{"x":-52,"y":33},{"x":-89,"y":-26},{"x":-53,"y":-87},{"x":32,"y":-49},{"x":-47,"y":-55},{"x":186,"y":-10},{"x":-103,"y":-73},{"x":-3,"y":-158},{"x":65,"y":-43},{"x":-8,"y":-48},{"x":-100,"y":-33},{"x":-10,"y":-67},{"x":101,"y":44},{"x":54,"y":-64},{"x":-33,"y":-19},{"x":127,"y":-67},{"x":44,"y":3},{"x":106,"y":176},{"x":32,"y":136},{"x":151,"y":105},{"x":-23,"y":73},{"x":61,"y":101},{"x":-66,"y":10},{"x":50,"y":54},{"x":-55,"y":-20},{"x":31,"y":30},{"x":-81,"y":27},{"x":106,"y":84},{"x":-36,"y":41},{"x":61,"y":116}],"type":"coastline"},{"arc":[{"x":36859,"y":27382},{"x":-37,"y":6},{"x":18,"y":-41},{"x":19,"y":35}],"type":"coastline"},{"arc":[{"x":36874,"y":27410},{"x":-29,"y":65},{"x":-12,"y":-46},{"x":41,"y":-19}],"type":"coastline"},{"arc":[{"x":37049,"y":27638},{"x":-76,"y":51},{"x":-135,"y":-86},{"x":153,"y":-12},{"x":58,"y":47}],"type":"coastline"},{"arc":[{"x":37144,"y":27712},{"x":-12,"y":57},{"x":-46,"y":10},{"x":-88,"y":-84},{"x":49,"y":20},{"x":71,"y":-76},{"x":26,"y":73}],"type":"coastline"},{"arc":[{"x":37214,"y":27527},{"x":-52,"y":55},{"x":-54,"y":-24},{"x":1,"y":-39},{"x":-56,"y":70},{"x":-73,"y":-65},{"x":-79,"y":40},{"x":-13,"y":-176},{"x":105,"y":53},{"x":68,"y":-93},{"x":103,"y":60},{"x":-46,"y":53},{"x":60,"y":-20},{"x":-18,"y":40},{"x":54,"y":46}],"type":"coastline"}]},"worldWithoutJapan":{"scale":{"x":0.004446496882315277,"y":0.008227631127871105},"translate":{"x":-90.0,"y":-180.0},"polygons":[{"arcs":[[0]],"areaCode":null},{"arcs":[[1,2,3]],"areaCode":null},{"arcs":[[4,5]],"areaCode":null},{"arcs":[[6,7,8,9]],"areaCode":null},{"arcs":[[10]],"areaCode":null},{"arcs":[[11]],"areaCode":null},{"arcs":[[12,13,14,15,16]],"areaCode":null},{"arcs":[[19]],"areaCode":null},{"arcs":[[20,21]],"areaCode":null},{"arcs":[[22]],"areaCode":null},{"arcs":[[23,24,25,26,27]],"areaCode":null},{"arcs":[[28,29,30,31,32]],"areaCode":null},{"arcs":[[33]],"areaCode":null},{"arcs":[[34]],"areaCode":null},{"arcs":[[35]],"areaCode":null},{"arcs":[[36]],"areaCode":null},{"arcs":[[37]],"areaCode":null},{"arcs":[[38]],"areaCode":null},{"arcs":[[39]],"areaCode":null},{"arcs":[[40]],"areaCode":null},{"arcs":[[41]],"areaCode":null},{"arcs":[[42]],"areaCode":null},{"arcs":[[43]],"areaCode":null},{"arcs":[[44]],"areaCode":null},{"arcs":[[45]],"areaCode":null},{"arcs":[[46]],"areaCode":null},{"arcs":[[47]],"areaCode":null},{"arcs":[[48]],"areaCode":null},{"arcs":[[49]],"areaCode":null},{"arcs":[[50]],"areaCode":null},{"arcs":[[51]],"areaCode":null},{"arcs":[[52]],"areaCode":null},{"arcs":[[53]],"areaCode":null},{"arcs":[[54]],"areaCode":null},{"arcs":[[55]],"areaCode":null},{"arcs":[[56]],"areaCode":null},{"arcs":[[57]],"areaCode":null},{"arcs":[[58]],"areaCode":null},{"arcs":[[59]],"areaCode":null},{"arcs":[[60]],"areaCode":null},{"arcs":[[61]],"areaCode":null},{"arcs":[[62]],"areaCode":null},{"arcs":[[63]],"areaCode":null},{"arcs":[[64]],"areaCode":null},{"arcs":[[65]],"areaCode":null},{"arcs":[[66]],"areaCode":null},{"arcs":[[67]],"areaCode":null},{"arcs":[[68]],"areaCode":null},{"arcs":[[69]],"areaCode":null},{"arcs":[[70]],"areaCode":null},{"arcs":[[71]],"areaCode":null},{"arcs":[[72]],"areaCode":null},{"arcs":[[73]],"areaCode":null},{"arcs":[[74]],"areaCode":null},{"arcs":[[75]],"areaCode":null},{"arcs":[[76]],"areaCode":null},{"arcs":[[77]],"areaCode":null},{"arcs":[[79]],"areaCode":null},{"arcs":[[80]],"areaCode":null},{"arcs":[[81]],"areaCode":null},{"arcs":[[82]],"areaCode":null},{"arcs":[[83]],"areaCode":null},{"arcs":[[84]],"areaCode":null},{"arcs":[[85]],"areaCode":null},{"arcs":[[86]],"areaCode":null},{"arcs":[[87]],"areaCode":null},{"arcs":[[88]],"areaCode":null},{"arcs":[[89]],"areaCode":null},{"arcs":[[90]],"areaCode":null},{"arcs":[[91]],"areaCode":null},{"arcs":[[92]],"areaCode":null},{"arcs":[[93]],"areaCode":null},{"arcs":[[94]],"areaCode":null},{"arcs":[[95]],"areaCode":null},{"arcs":[[96]],"areaCode":null},{"arcs":[[97]],"areaCode":null},{"arcs":[[98]],"areaCode":null},{"arcs":[[99]],"areaCode":null},{"arcs":[[100]],"areaCode":null},{"arcs":[[101]],"areaCode":null},{"arcs":[[102]],"areaCode":null},{"arcs":[[103,104,105,106,107,108,109,110,111]],"areaCode":null},{"arcs":[[112,113,-31]],"areaCode":null},{"arcs":[[114,115,116,-29,117]],"areaCode":null},{"arcs":[[118,119]],"areaCode":null},{"arcs":[[120,121,122,123,124,125,126]],"areaCode":null},{"arcs":[[127,128,129,130]],"areaCode":null},{"arcs":[[131,-130,132,133,134,135,136,137]],"areaCode":null},{"arcs":[[138]],"areaCode":null},{"arcs":[[139,140,141]],"areaCode":null},{"arcs":[[142,143,144,145]],"areaCode":null},{"arcs":[[146]],"areaCode":null},{"arcs":[[147]],"areaCode":null},{"arcs":[[149]],"areaCode":null},{"arcs":[[150]],"areaCode":null},{"arcs":[[151]],"areaCode":null},{"arcs":[[152]],"areaCode":null},{"arcs":[[153]],"areaCode":null},{"arcs":[[154]],"areaCode":null},{"arcs":[[155]],"areaCode":null},{"arcs":[[156,157,158,159,160]],"areaCode":null},{"arcs":[[161,162,163,164]],"areaCode":null},{"arcs":[[165,166]],"areaCode":null},{"arcs":[[167,168,169,170]],"areaCode":null},{"arcs":[[171]],"areaCode":null},{"arcs":[[172]],"areaCode":null},{"arcs":[[173]],"areaCode":null},{"arcs":[[174]],"areaCode":null},{"arcs":[[175]],"areaCode":null},{"arcs":[[176]],"areaCode":null},{"arcs":[[177]],"areaCode":null},{"arcs":[[178]],"areaCode":null},{"arcs":[[179]],"areaCode":null},{"arcs":[[180]],"areaCode":null},{"arcs":[[181,182,183,184,-25,185,186,187,188,189,190,191,192,193]],"areaCode":null},{"arcs":[[194]],"areaCode":null},{"arcs":[[195,196]],"areaCode":null},{"arcs":[[197,198]],"areaCode":null},{"arcs":[[199,200]],"areaCode":null},{"arcs":[[201,202,203]],"areaCode":null},{"arcs":[[204,205,206,207]],"areaCode":null},{"arcs":[[208]],"areaCode":null},{"arcs":[[209]],"areaCode":null},{"arcs":[[210]],"areaCode":null},{"arcs":[[211]],"areaCode":null},{"arcs":[[212,213]],"areaCode":null},{"arcs":[[214]],"areaCode":null},{"arcs":[[215]],"areaCode":null},{"arcs":[[216]],"areaCode":null},{"arcs":[[217]],"areaCode":null},{"arcs":[[218]],"areaCode":null},{"arcs":[[219]],"areaCode":null},{"arcs":[[220]],"areaCode":null},{"arcs":[[221]],"areaCode":null},{"arcs":[[222]],"areaCode":null},{"arcs":[[223]],"areaCode":null},{"arcs":[[224]],"areaCode":null},{"arcs":[[225]],"areaCode":null},{"arcs":[[226]],"areaCode":null},{"arcs":[[227]],"areaCode":null},{"arcs":[[228]],"areaCode":null},{"arcs":[[229]],"areaCode":null},{"arcs":[[230]],"areaCode":null},{"arcs":[[231]],"areaCode":null},{"arcs":[[233]],"areaCode":null},{"arcs":[[234]],"areaCode":null},{"arcs":[[235]],"areaCode":null},{"arcs":[[236]],"areaCode":null},{"arcs":[[237]],"areaCode":null},{"arcs":[[238]],"areaCode":null},{"arcs":[[239]],"areaCode":null},{"arcs":[[240]],"areaCode":null},{"arcs":[[241]],"areaCode":null},{"arcs":[[242]],"areaCode":null},{"arcs":[[243]],"areaCode":null},{"arcs":[[245]],"areaCode":null},{"arcs":[[246]],"areaCode":null},{"arcs":[[247]],"areaCode":null},{"arcs":[[248]],"areaCode":null},{"arcs":[[249]],"areaCode":null},{"arcs":[[250]],"areaCode":null},{"arcs":[[251]],"areaCode":null},{"arcs":[[252]],"areaCode":null},{"arcs":[[253]],"areaCode":null},{"arcs":[[254]],"areaCode":null},{"arcs":[[255]],"areaCode":null},{"arcs":[[256]],"areaCode":null},{"arcs":[[257]],"areaCode":null},{"arcs":[[258]],"areaCode":null},{"arcs":[[259]],"areaCode":null},{"arcs":[[260]],"areaCode":null},{"arcs":[[261]],"areaCode":null},{"arcs":[[262]],"areaCode":null},{"arcs":[[264,265,266,267,268,269,270,271,272,273,274,275],[232]],"areaCode":null},{"arcs":[[276]],"areaCode":null},{"arcs":[[277]],"areaCode":null},{"arcs":[[278]],"areaCode":null},{"arcs":[[279]],"areaCode":null},{"arcs":[[280]],"areaCode":null},{"arcs":[[281]],"areaCode":null},{"arcs":[[282]],"areaCode":null},{"arcs":[[283]],"areaCode":null},{"arcs":[[284]],"areaCode":null},{"arcs":[[285]],"areaCode":null},{"arcs":[[286]],"areaCode":null},{"arcs":[[287]],"areaCode":null},{"arcs":[[288]],"areaCode":null},{"arcs":[[289]],"areaCode":null},{"arcs":[[290]],"areaCode":null},{"arcs":[[291]],"areaCode":null},{"arcs":[[292]],"areaCode":null},{"arcs":[[293]],"areaCode":null},{"arcs":[[294]],"areaCode":null},{"arcs":[[295]],"areaCode":null},{"arcs":[[296]],"areaCode":null},{"arcs":[[297]],"areaCode":null},{"arcs":[[298]],"areaCode":null},{"arcs":[[299]],"areaCode":null},{"arcs":[[300]],"areaCode":null},{"arcs":[[301]],"areaCode":null},{"arcs":[[302]],"areaCode":null},{"arcs":[[303]],"areaCode":null},{"arcs":[[304]],"areaCode":null},{"arcs":[[305]],"areaCode":null},{"arcs":[[306]],"areaCode":null},{"arcs":[[307,-110,308,-108,309]],"areaCode":null},{"arcs":[[310]],"areaCode":null},{"arcs":[[311]],"areaCode":null},{"arcs":[[312]],"areaCode":null},{"arcs":[[313]],"areaCode":null},{"arcs":[[314]],"areaCode":null},{"arcs":[[315]],"areaCode":null},{"arcs":[[316]],"areaCode":null},{"arcs":[[317]],"areaCode":null},{"arcs":[[318]],"areaCode":null},{"arcs":[[319]],"areaCode":null},{"arcs":[[320]],"areaCode":null},{"arcs":[[321]],"areaCode":null},{"arcs":[[-21,322,-18,323]],"areaCode":null},{"arcs":[[324]],"areaCode":null},{"arcs":[[325]],"areaCode":null},{"arcs":[[326]],"areaCode":null},{"arcs":[[327]],"areaCode":null},{"arcs":[[328]],"areaCode":null},{"arcs":[[329]],"areaCode":null},{"arcs":[[330]],"areaCode":null},{"arcs":[[331]],"areaCode":null},{"arcs":[[332]],"areaCode":null},{"arcs":[[333]],"areaCode":null},{"arcs":[[334]],"areaCode":null},{"arcs":[[335]],"areaCode":null},{"arcs":[[336]],"areaCode":null},{"arcs":[[337]],"areaCode":null},{"arcs":[[338]],"areaCode":null},{"arcs":[[339]],"areaCode":null},{"arcs":[[340]],"areaCode":null},{"arcs":[[341]],"areaCode":null},{"arcs":[[342]],"areaCode":null},{"arcs":[[343]],"areaCode":null},{"arcs":[[344]],"areaCode":null},{"arcs":[[345]],"areaCode":null},{"arcs":[[346]],"areaCode":null},{"arcs":[[347]],"areaCode":null},{"arcs":[[348]],"areaCode":null},{"arcs":[[349]],"areaCode":null},{"arcs":[[350]],"areaCode":null},{"arcs":[[351]],"areaCode":null},{"arcs":[[-27,352,353,354]],"areaCode":null},{"arcs":[[355]],"areaCode":null},{"arcs":[[356]],"areaCode":null},{"arcs":[[357]],"areaCode":null},{"arcs":[[358,359,360,361,362,363,364,365,-201,366,367,368,369,370,371,372,373,374,375,376,377]],"areaCode":null},{"arcs":[[378,379]],"areaCode":null},{"arcs":[[-207,380,381,382]],"areaCode":null},{"arcs":[[383,384,385,386]],"areaCode":null},{"arcs":[[387,388,389,390]],"areaCode":null},{"arcs":[[391,392,393,394]],"areaCode":null},{"arcs":[[395,396,397,398,-4,399,-5,400]],"areaCode":null},{"arcs":[[401,-381,-206]],"areaCode":null},{"arcs":[[402,-192,403,404,405,406,407]],"areaCode":null},{"arcs":[[408]],"areaCode":null},{"arcs":[[409]],"areaCode":null},{"arcs":[[410]],"areaCode":null},{"arcs":[[411]],"areaCode":null},{"arcs":[[412]],"areaCode":null},{"arcs":[[413]],"areaCode":null},{"arcs":[[414]],"areaCode":null},{"arcs":[[415,416,417,418]],"areaCode":null},{"arcs":[[419]],"areaCode":null},{"arcs":[[420]],"areaCode":null},{"arcs":[[421,422,423,424]],"areaCode":null},{"arcs":[[-387,426,-395,427]],"areaCode":null},{"arcs":[[429,-391,430,-393]],"areaCode":null},{"arcs":[[431,432,-112,433]],"areaCode":null},{"arcs":[[434]],"areaCode":null},{"arcs":[[435]],"areaCode":null},{"arcs":[[436,437,438,439,440,441,442,443,-121,444,445,446]],"areaCode":null},{"arcs":[[447]],"areaCode":null},{"arcs":[[448,449,450]],"areaCode":null},{"arcs":[[451]],"areaCode":null},{"arcs":[[452]],"areaCode":null},{"arcs":[[453]],"areaCode":null},{"arcs":[[454]],"areaCode":null},{"arcs":[[455]],"areaCode":null},{"arcs":[[456]],"areaCode":null},{"arcs":[[-447,457]],"areaCode":null},{"arcs":[[458,459]],"areaCode":null},{"arcs":[[460,461,462,463,464,465]],"areaCode":null},{"arcs":[[466]],"areaCode":null},{"arcs":[[467]],"areaCode":null},{"arcs":[[468]],"areaCode":null},{"arcs":[[469]],"areaCode":null},{"arcs":[[470]],"areaCode":null},{"arcs":[[471,472,-405]],"areaCode":null},{"arcs":[[473]],"areaCode":null},{"arcs":[[474,475,476,477,478]],"areaCode":null},{"arcs":[[479]],"areaCode":null},{"arcs":[[480,481]],"areaCode":null},{"arcs":[[482]],"areaCode":null},{"arcs":[[483]],"areaCode":null},{"arcs":[[484]],"areaCode":null},{"arcs":[[485]],"areaCode":null},{"arcs":[[486]],"areaCode":null},{"arcs":[[487]],"areaCode":null},{"arcs":[[492]],"areaCode":null},{"arcs":[[493]],"areaCode":null},{"arcs":[[494]],"areaCode":null},{"arcs":[[495,496,497,498,499,500]],"areaCode":null},{"arcs":[[501]],"areaCode":null},{"arcs":[[502]],"areaCode":null},{"arcs":[[503,504]],"areaCode":null},{"arcs":[[-450,505,506]],"areaCode":null},{"arcs":[[507]],"areaCode":null},{"arcs":[[508,509,510,511]],"areaCode":null},{"arcs":[[512]],"areaCode":null},{"arcs":[[513]],"areaCode":null},{"arcs":[[514]],"areaCode":null},{"arcs":[[515]],"areaCode":null},{"arcs":[[516]],"areaCode":null},{"arcs":[[517]],"areaCode":null},{"arcs":[[518]],"areaCode":null},{"arcs":[[-183,519]],"areaCode":null},{"arcs":[[520]],"areaCode":null},{"arcs":[[521]],"areaCode":null},{"arcs":[[522]],"areaCode":null},{"arcs":[[523]],"areaCode":null},{"arcs":[[524,-443,525,526,527,-498,528,-496,529,-123]],"areaCode":null},{"arcs":[[530,531]],"areaCode":null},{"arcs":[[532]],"areaCode":null},{"arcs":[[533]],"areaCode":null},{"arcs":[[534,535]],"areaCode":null},{"arcs":[[536]],"areaCode":null},{"arcs":[[537]],"areaCode":null},{"arcs":[[538]],"areaCode":null},{"arcs":[[539]],"areaCode":null},{"arcs":[[540]],"areaCode":null},{"arcs":[[541]],"areaCode":null},{"arcs":[[542]],"areaCode":null},{"arcs":[[543]],"areaCode":null},{"arcs":[[544]],"areaCode":null},{"arcs":[[-118,-33,545,546,547]],"areaCode":null},{"arcs":[[548,549,-134]],"areaCode":null},{"arcs":[[550,551,552,553,554]],"areaCode":null},{"arcs":[[555,556]],"areaCode":null},{"arcs":[[557]],"areaCode":null},{"arcs":[[558]],"areaCode":null},{"arcs":[[-531,559]],"areaCode":null},{"arcs":[[560]],"areaCode":null},{"arcs":[[561]],"areaCode":null},{"arcs":[[562]],"areaCode":null},{"arcs":[[564]],"areaCode":null},{"arcs":[[565]],"areaCode":null},{"arcs":[[566]],"areaCode":null},{"arcs":[[567]],"areaCode":null},{"arcs":[[568]],"areaCode":null},{"arcs":[[569]],"areaCode":null},{"arcs":[[570]],"areaCode":null},{"arcs":[[571]],"areaCode":null},{"arcs":[[572]],"areaCode":null},{"arcs":[[573]],"areaCode":null},{"arcs":[[574]],"areaCode":null},{"arcs":[[575,576]],"areaCode":null},{"arcs":[[577]],"areaCode":null},{"arcs":[[578]],"areaCode":null},{"arcs":[[579]],"areaCode":null},{"arcs":[[580]],"areaCode":null},{"arcs":[[581]],"areaCode":null},{"arcs":[[582]],"areaCode":null},{"arcs":[[583]],"areaCode":null},{"arcs":[[584]],"areaCode":null},{"arcs":[[585]],"areaCode":null},{"arcs":[[586]],"areaCode":null},{"arcs":[[587]],"areaCode":null},{"arcs":[[588]],"areaCode":null},{"arcs":[[589]],"areaCode":null},{"arcs":[[590]],"areaCode":null},{"arcs":[[591]],"areaCode":null},{"arcs":[[592]],"areaCode":null},{"arcs":[[593]],"areaCode":null},{"arcs":[[594]],"areaCode":null},{"arcs":[[595]],"areaCode":null},{"arcs":[[596]],"areaCode":null},{"arcs":[[597]],"areaCode":null},{"arcs":[[598]],"areaCode":null},{"arcs":[[599]],"areaCode":null},{"arcs":[[600]],"areaCode":null},{"arcs":[[601]],"areaCode":null},{"arcs":[[602]],"areaCode":null},{"arcs":[[603]],"areaCode":null},{"arcs":[[604,-194,605,606]],"areaCode":null},{"arcs":[[607,-361]],"areaCode":null},{"arcs":[[608]],"areaCode":null},{"arcs":[[609,610,611,612]],"areaCode":null},{"arcs":[[-159,613]],"areaCode":null},{"arcs":[[614]],"areaCode":null},{"arcs":[[615]],"areaCode":null},{"arcs":[[618]],"areaCode":null},{"arcs":[[619]],"areaCode":null},{"arcs":[[620,-161,621],[616]],"areaCode":null},{"arcs":[[-459,622]],"areaCode":null},{"arcs":[[623]],"areaCode":null},{"arcs":[[624,625,626,627,-105,628]],"areaCode":null},{"arcs":[[629]],"areaCode":null},{"arcs":[[630]],"areaCode":null},{"arcs":[[631,632,633,634]],"areaCode":null},{"arcs":[[635]],"areaCode":null},{"arcs":[[636]],"areaCode":null},{"arcs":[[637]],"areaCode":null},{"arcs":[[638]],"areaCode":null},{"arcs":[[639]],"areaCode":null},{"arcs":[[640]],"areaCode":null},{"arcs":[[641]],"areaCode":null},{"arcs":[[642]],"areaCode":null},{"arcs":[[643]],"areaCode":null},{"arcs":[[644]],"areaCode":null},{"arcs":[[645]],"areaCode":null},{"arcs":[[646]],"areaCode":null},{"arcs":[[647]],"areaCode":null},{"arcs":[[648]],"areaCode":null},{"arcs":[[649]],"areaCode":null},{"arcs":[[650]],"areaCode":null},{"arcs":[[651]],"areaCode":null},{"arcs":[[652]],"areaCode":null},{"arcs":[[653]],"areaCode":null},{"arcs":[[654]],"areaCode":null},{"arcs":[[655]],"areaCode":null},{"arcs":[[656]],"areaCode":null},{"arcs":[[657]],"areaCode":null},{"arcs":[[658]],"areaCode":null},{"arcs":[[659]],"areaCode":null},{"arcs":[[660]],"areaCode":null},{"arcs":[[661]],"areaCode":null},{"arcs":[[662]],"areaCode":null},{"arcs":[[663]],"areaCode":null},{"arcs":[[664]],"areaCode":null},{"arcs":[[665]],"areaCode":null},{"arcs":[[666]],"areaCode":null},{"arcs":[[667]],"areaCode":null},{"arcs":[[668]],"areaCode":null},{"arcs":[[669]],"areaCode":null},{"arcs":[[670]],"areaCode":null},{"arcs":[[671]],"areaCode":null},{"arcs":[[672]],"areaCode":null},{"arcs":[[673]],"areaCode":null},{"arcs":[[674]],"areaCode":null},{"arcs":[[675]],"areaCode":null},{"arcs":[[676]],"areaCode":null},{"arcs":[[677]],"areaCode":null},{"arcs":[[678]],"areaCode":null},{"arcs":[[679]],"areaCode":null},{"arcs":[[680]],"areaCode":null},{"arcs":[[681]],"areaCode":null},{"arcs":[[682,683]],"areaCode":null},{"arcs":[[684]],"areaCode":null},{"arcs":[[685]],"areaCode":null},{"arcs":[[686]],"areaCode":null},{"arcs":[[687]],"areaCode":null},{"arcs":[[688]],"areaCode":null},{"arcs":[[689]],"areaCode":null},{"arcs":[[690]],"areaCode":null},{"arcs":[[691]],"areaCode":null},{"arcs":[[692]],"areaCode":null},{"arcs":[[693]],"areaCode":null},{"arcs":[[694]],"areaCode":null},{"arcs":[[695]],"areaCode":null},{"arcs":[[696]],"areaCode":null},{"arcs":[[697]],"areaCode":null},{"arcs":[[698]],"areaCode":null},{"arcs":[[699]],"areaCode":null},{"arcs":[[700]],"areaCode":null},{"arcs":[[701]],"areaCode":null},{"arcs":[[702,703]],"areaCode":null},{"arcs":[[704]],"areaCode":null},{"arcs":[[705,706]],"areaCode":null},{"arcs":[[707]],"areaCode":null},{"arcs":[[708]],"areaCode":null},{"arcs":[[709]],"areaCode":null},{"arcs":[[710]],"areaCode":null},{"arcs":[[711]],"areaCode":null},{"arcs":[[712,-367,-200,-366,713,-142,714,715,716,-369]],"areaCode":null},{"arcs":[[717]],"areaCode":null},{"arcs":[[-535,718]],"areaCode":null},{"arcs":[[719]],"areaCode":null},{"arcs":[[-30,-117,720,721,722,723,724,725,726,-113]],"areaCode":null},{"arcs":[[-726,727,728,729,730,731,732]],"areaCode":null},{"arcs":[[733]],"areaCode":null},{"arcs":[[734,735,736,-476,737,738,739]],"areaCode":null},{"arcs":[[740]],"areaCode":null},{"arcs":[[741]],"areaCode":null},{"arcs":[[-527,742]],"areaCode":null},{"arcs":[[743]],"areaCode":null},{"arcs":[[744]],"areaCode":null},{"arcs":[[745]],"areaCode":null},{"arcs":[[746]],"areaCode":null},{"arcs":[[-375,748,749,750,751,752],[747],[753]],"areaCode":null},{"arcs":[[754,755,756,757,758,759]],"areaCode":null},{"arcs":[[760],[761]],"areaCode":null},{"arcs":[[762,763,764,765]],"areaCode":null},{"arcs":[[766]],"areaCode":null},{"arcs":[[767]],"areaCode":null},{"arcs":[[768]],"areaCode":null},{"arcs":[[769]],"areaCode":null},{"arcs":[[770,771]],"areaCode":null},{"arcs":[[772,-7,773,774]],"areaCode":null},{"arcs":[[775]],"areaCode":null},{"arcs":[[776,-729,777]],"areaCode":null},{"arcs":[[778]],"areaCode":null},{"arcs":[[779]],"areaCode":null},{"arcs":[[780,-553]],"areaCode":null},{"arcs":[[781,782,-461,783]],"areaCode":null},{"arcs":[[784]],"areaCode":null},{"arcs":[[-309,-109]],"areaCode":null},{"arcs":[[785]],"areaCode":null},{"arcs":[[786]],"areaCode":null},{"arcs":[[787,788]],"areaCode":null},{"arcs":[[789,790]],"areaCode":null},{"arcs":[[791]],"areaCode":null},{"arcs":[[-165,792]],"areaCode":null},{"arcs":[[793,794]],"areaCode":null},{"arcs":[[-491,795,-489,796]],"areaCode":null},{"arcs":[[797,798]],"areaCode":null},{"arcs":[[799]],"areaCode":null},{"arcs":[[800]],"areaCode":null},{"arcs":[[801]],"areaCode":null},{"arcs":[[802]],"areaCode":null},{"arcs":[[803]],"areaCode":null},{"arcs":[[804]],"areaCode":null},{"arcs":[[805]],"areaCode":null},{"arcs":[[806,-167,807,808]],"areaCode":null},{"arcs":[[-144,809,-8,-773,810]],"areaCode":null},{"arcs":[[811,-138,812,-551,813,814,-463]],"areaCode":null},{"arcs":[[815]],"areaCode":null},{"arcs":[[816]],"areaCode":null},{"arcs":[[817]],"areaCode":null},{"arcs":[[818]],"areaCode":null},{"arcs":[[819]],"areaCode":null},{"arcs":[[820]],"areaCode":null},{"arcs":[[821]],"areaCode":null},{"arcs":[[822]],"areaCode":null},{"arcs":[[823,824,825,-140,-714,-365]],"areaCode":null},{"arcs":[[-774,-10,826]],"areaCode":null},{"arcs":[[827]],"areaCode":null},{"arcs":[[828,829,830,831,832,833,834]],"areaCode":null},{"arcs":[[835]],"areaCode":null},{"arcs":[[836]],"areaCode":null},{"arcs":[[-833,837,838]],"areaCode":null},{"arcs":[[840]],"areaCode":null},{"arcs":[[841,842]],"areaCode":null},{"arcs":[[-707,843,-199,844,-196,845]],"areaCode":null},{"arcs":[[846]],"areaCode":null},{"arcs":[[847,-204,848,849,850]],"areaCode":null},{"arcs":[[851]],"areaCode":null},{"arcs":[[852]],"areaCode":null},{"arcs":[[853]],"areaCode":null},{"arcs":[[854,855,-131,-132,-812,-462,-783]],"areaCode":null},{"arcs":[[856]],"areaCode":null},{"arcs":[[857,-419,858,-610]],"areaCode":null},{"arcs":[[859]],"areaCode":null},{"arcs":[[-125,860]],"areaCode":null},{"arcs":[[-445,-127,861]],"areaCode":null},{"arcs":[[862]],"areaCode":null},{"arcs":[[863]],"areaCode":null},{"arcs":[[864]],"areaCode":null},{"arcs":[[865]],"areaCode":null},{"arcs":[[866]],"areaCode":null},{"arcs":[[867]],"areaCode":null},{"arcs":[[868]],"areaCode":null},{"arcs":[[869]],"areaCode":null},{"arcs":[[870]],"areaCode":null},{"arcs":[[871]],"areaCode":null},{"arcs":[[872]],"areaCode":null},{"arcs":[[873]],"areaCode":null},{"arcs":[[874]],"areaCode":null},{"arcs":[[875]],"areaCode":null},{"arcs":[[876]],"areaCode":null},{"arcs":[[877,-512,878,879]],"areaCode":null},{"arcs":[[880]],"areaCode":null},{"arcs":[[881]],"areaCode":null},{"arcs":[[882]],"areaCode":null},{"arcs":[[884]],"areaCode":null},{"arcs":[[885]],"areaCode":null},{"arcs":[[886]],"areaCode":null},{"arcs":[[887]],"areaCode":null},{"arcs":[[888]],"areaCode":null},{"arcs":[[889]],"areaCode":null},{"arcs":[[890]],"areaCode":null},{"arcs":[[891]],"areaCode":null},{"arcs":[[892]],"areaCode":null},{"arcs":[[893,894,-14,895]],"areaCode":null},{"arcs":[[-17,896]],"areaCode":null},{"arcs":[[897,-716,898,-724,899,-371]],"areaCode":null},{"arcs":[[900]],"areaCode":null},{"arcs":[[-407,901,-417,902]],"areaCode":null},{"arcs":[[-191,903,-354,904,-472,-404]],"areaCode":null},{"arcs":[[905]],"areaCode":null},{"arcs":[[906]],"areaCode":null},{"arcs":[[907]],"areaCode":null},{"arcs":[[908]],"areaCode":null},{"arcs":[[909]],"areaCode":null},{"arcs":[[910]],"areaCode":null},{"arcs":[[911]],"areaCode":null},{"arcs":[[912]],"areaCode":null},{"arcs":[[913]],"areaCode":null},{"arcs":[[914]],"areaCode":null},{"arcs":[[915]],"areaCode":null},{"arcs":[[916]],"areaCode":null},{"arcs":[[917]],"areaCode":null},{"arcs":[[918]],"areaCode":null},{"arcs":[[919]],"areaCode":null},{"arcs":[[920]],"areaCode":null},{"arcs":[[921]],"areaCode":null},{"arcs":[[922]],"areaCode":null},{"arcs":[[923]],"areaCode":null},{"arcs":[[924]],"areaCode":null},{"arcs":[[925]],"areaCode":null},{"arcs":[[926]],"areaCode":null},{"arcs":[[927]],"areaCode":null},{"arcs":[[928]],"areaCode":null},{"arcs":[[929]],"areaCode":null},{"arcs":[[930]],"areaCode":null},{"arcs":[[931]],"areaCode":null},{"arcs":[[932]],"areaCode":null},{"arcs":[[933]],"areaCode":null},{"arcs":[[934]],"areaCode":null},{"arcs":[[935]],"areaCode":null},{"arcs":[[936]],"areaCode":null},{"arcs":[[937]],"areaCode":null},{"arcs":[[938]],"areaCode":null},{"arcs":[[939]],"areaCode":null},{"arcs":[[-683,940]],"areaCode":null},{"arcs":[[941]],"areaCode":null},{"arcs":[[942]],"areaCode":null},{"arcs":[[943]],"areaCode":null},{"arcs":[[-163,944,945,-432,946,947,948,949,950]],"areaCode":null},{"arcs":[[951]],"areaCode":null},{"arcs":[[952,953,-771,954,-359]],"areaCode":null},{"arcs":[[955]],"areaCode":null},{"arcs":[[956]],"areaCode":null},{"arcs":[[957,-500]],"areaCode":null},{"arcs":[[958,959,960,961,-169]],"areaCode":null},{"arcs":[[-475,962,-738]],"areaCode":null},{"arcs":[[963,-736]],"areaCode":null},{"arcs":[[964]],"areaCode":null},{"arcs":[[965]],"areaCode":null},{"arcs":[[966]],"areaCode":null},{"arcs":[[-146,967,-626,968]],"areaCode":null},{"arcs":[[969]],"areaCode":null},{"arcs":[[970]],"areaCode":null},{"arcs":[[971]],"areaCode":null},{"arcs":[[972]],"areaCode":null},{"arcs":[[973,-788,974,-790]],"areaCode":null},{"arcs":[[975]],"areaCode":null},{"arcs":[[976]],"areaCode":null},{"arcs":[[977]],"areaCode":null},{"arcs":[[978]],"areaCode":null},{"arcs":[[979]],"areaCode":null},{"arcs":[[980]],"areaCode":null},{"arcs":[[981]],"areaCode":null},{"arcs":[[982]],"areaCode":null},{"arcs":[[983]],"areaCode":null},{"arcs":[[984]],"areaCode":null},{"arcs":[[985]],"areaCode":null},{"arcs":[[986]],"areaCode":null},{"arcs":[[987]],"areaCode":null},{"arcs":[[988]],"areaCode":null},{"arcs":[[989]],"areaCode":null},{"arcs":[[990]],"areaCode":null},{"arcs":[[991]],"areaCode":null},{"arcs":[[992]],"areaCode":null},{"arcs":[[993]],"areaCode":null},{"arcs":[[994]],"areaCode":null},{"arcs":[[995]],"areaCode":null},{"arcs":[[996]],"areaCode":null},{"arcs":[[997]],"areaCode":null},{"arcs":[[998]],"areaCode":null},{"arcs":[[999]],"areaCode":null},{"arcs":[[1000]],"areaCode":null},{"arcs":[[1001]],"areaCode":null},{"arcs":[[1002]],"areaCode":null},{"arcs":[[1003]],"areaCode":null},{"arcs":[[1004]],"areaCode":null},{"arcs":[[-953,-378,1005,-376,-753,1006,-115,-548,1007,1008,1009,-504,1010,-509,-878,1011]],"areaCode":null},{"arcs":[[1012]],"areaCode":null},{"arcs":[[1013]],"areaCode":null},{"arcs":[[1014]],"areaCode":null},{"arcs":[[1015]],"areaCode":null},{"arcs":[[1016]],"areaCode":null},{"arcs":[[1017]],"areaCode":null},{"arcs":[[1018]],"areaCode":null},{"arcs":[[1019]],"areaCode":null},{"arcs":[[1020]],"areaCode":null},{"arcs":[[1021]],"areaCode":null},{"arcs":[[1022]],"areaCode":null},{"arcs":[[1024]],"areaCode":null},{"arcs":[[1025]],"areaCode":null},{"arcs":[[1026]],"areaCode":null},{"arcs":[[1027]],"areaCode":null},{"arcs":[[1028,-120,1029,1030]],"areaCode":null},{"arcs":[[-465,1031]],"areaCode":null},{"arcs":[[1032]],"areaCode":null},{"arcs":[[-777,1033,-15,-895,1034,1035,-730]],"areaCode":null},{"arcs":[[1036,-481,1037,1038,1039,-478]],"areaCode":null},{"arcs":[[1040,-760,1041,-396,1042,-1039]],"areaCode":null},{"arcs":[[-814,-555,1043,-557,1044]],"areaCode":null},{"arcs":[[1045]],"areaCode":null},{"arcs":[[1046]],"areaCode":null},{"arcs":[[1047]],"areaCode":null},{"arcs":[[1048]],"areaCode":null},{"arcs":[[1049]],"areaCode":null},{"arcs":[[1050]],"areaCode":null},{"arcs":[[1051]],"areaCode":null},{"arcs":[[1052]],"areaCode":null},{"arcs":[[1053]],"areaCode":null},{"arcs":[[1054]],"areaCode":null},{"arcs":[[1055]],"areaCode":null},{"arcs":[[1056]],"areaCode":null},{"arcs":[[1057]],"areaCode":null},{"arcs":[[-612,1058]],"areaCode":null},{"arcs":[[-506,-449,1059]],"areaCode":null},{"arcs":[[-756,1060]],"areaCode":null},{"arcs":[[1061]],"areaCode":null},{"arcs":[[-157,-621,1062]],"areaCode":null},{"arcs":[[1063]],"areaCode":null},{"arcs":[[1064]],"areaCode":null},{"arcs":[[1065,-629,-104,-433,-946]],"areaCode":null},{"arcs":[[1066,-106,-628]],"areaCode":null},{"arcs":[[1067]],"areaCode":null},{"arcs":[[1068,-879,-511]],"areaCode":null},{"arcs":[[1069]],"areaCode":null},{"arcs":[[1070,-794]],"areaCode":null},{"arcs":[[-732,1071,-740,1072,1073]],"areaCode":null},{"arcs":[[1074,-208,-383,1075,-855,-782]],"areaCode":null},{"arcs":[[-129,1076,-549,-133]],"areaCode":null},{"arcs":[[1077]],"areaCode":null},{"arcs":[[1078,-764,1079,-843,1080,-825]],"areaCode":null},{"arcs":[[1081,-373,1082,1083]],"areaCode":null},{"arcs":[[1084,-722,1085,-751,1086]],"areaCode":null},{"arcs":[[1087,-633]],"areaCode":null},{"arcs":[[-635,1088]],"areaCode":null},{"arcs":[[1089]],"areaCode":null},{"arcs":[[1090]],"areaCode":null},{"arcs":[[1091]],"areaCode":null},{"arcs":[[1092]],"areaCode":null},{"arcs":[[-576,1093]],"areaCode":null},{"arcs":[[-546,-32,-114,-727,-733,-1074,1094]],"areaCode":null},{"arcs":[[1095]],"areaCode":null},{"arcs":[[1096]],"areaCode":null},{"arcs":[[1097]],"areaCode":null},{"arcs":[[-758,1098,-834,-839,1099,-398,1100]],"areaCode":null},{"arcs":[[-1031,1101]],"areaCode":null},{"arcs":[[1102,-799,1103,-1009]],"areaCode":null},{"arcs":[[1104]],"areaCode":null},{"arcs":[[1105]],"areaCode":null},{"arcs":[[1106]],"areaCode":null},{"arcs":[[1107]],"areaCode":null},{"arcs":[[1108]],"areaCode":null},{"arcs":[[1109]],"areaCode":null},{"arcs":[[1110]],"areaCode":null},{"arcs":[[1111]],"areaCode":null},{"arcs":[[1113]],"areaCode":null},{"arcs":[[1114]],"areaCode":null},{"arcs":[[1115]],"areaCode":null},{"arcs":[[1116]],"areaCode":null},{"arcs":[[1117]],"areaCode":null},{"arcs":[[1118]],"areaCode":null},{"arcs":[[1119]],"areaCode":null},{"arcs":[[1121,-269,1122,1123,1124,-265,-214,1125,-809,1126,-271],[1112]],"areaCode":null},{"arcs":[[1127]],"areaCode":null},{"arcs":[[1128]],"areaCode":null},{"arcs":[[1129]],"areaCode":null},{"arcs":[[1130]],"areaCode":null},{"arcs":[[1131]],"areaCode":null},{"arcs":[[1132]],"areaCode":null},{"arcs":[[1133]],"areaCode":null},{"arcs":[[1134]],"areaCode":null},{"arcs":[[1135]],"areaCode":null},{"arcs":[[1136]],"areaCode":null},{"arcs":[[1137]],"areaCode":null},{"arcs":[[1138]],"areaCode":null},{"arcs":[[1139]],"areaCode":null},{"arcs":[[1140]],"areaCode":null},{"arcs":[[1141]],"areaCode":null},{"arcs":[[1142]],"areaCode":null},{"arcs":[[1143]],"areaCode":null},{"arcs":[[1144]],"areaCode":null},{"arcs":[[1145]],"areaCode":null},{"arcs":[[1146]],"areaCode":null},{"arcs":[[1147]],"areaCode":null},{"arcs":[[1148]],"areaCode":null},{"arcs":[[1149]],"areaCode":null},{"arcs":[[1150]],"areaCode":null},{"arcs":[[1151]],"areaCode":null},{"arcs":[[1152]],"areaCode":null},{"arcs":[[1153]],"areaCode":null},{"arcs":[[1154]],"areaCode":null},{"arcs":[[1155]],"areaCode":null},{"arcs":[[1156]],"areaCode":null},{"arcs":[[1157]],"areaCode":null},{"arcs":[[1158]],"areaCode":null},{"arcs":[[1159]],"areaCode":null},{"arcs":[[1160]],"areaCode":null},{"arcs":[[1162]],"areaCode":null},{"arcs":[[-275,1163]],"areaCode":null},{"arcs":[[1166]],"areaCode":null},{"arcs":[[1167,-1084,1168,-1087,-750]],"areaCode":null},{"arcs":[[1169]],"areaCode":null},{"arcs":[[1170]],"areaCode":null},{"arcs":[[1171]],"areaCode":null},{"arcs":[[-606,-193,-403,1172]],"areaCode":null},{"arcs":[[1173]],"areaCode":null},{"arcs":[[1174]],"areaCode":null},{"arcs":[[1175,-766,1176,-363]],"areaCode":null},{"arcs":[[1177]],"areaCode":null},{"arcs":[[1178]],"areaCode":null},{"arcs":[[1179]],"areaCode":null},{"arcs":[[1180]],"areaCode":null},{"arcs":[[1181]],"areaCode":null},{"arcs":[[1182]],"areaCode":null},{"arcs":[[1183]],"areaCode":null},{"arcs":[[1184]],"areaCode":null},{"arcs":[[1185]],"areaCode":null},{"arcs":[[1186]],"areaCode":null},{"arcs":[[1187]],"areaCode":null},{"arcs":[[1188,-1035,-894]],"areaCode":null},{"arcs":[[-831,1189,-829,1190,1191],[1192]],"areaCode":null},{"arcs":[[1193,-848,1194]],"areaCode":null},{"arcs":[[1195,-202,-1194]],"areaCode":null}],"arcs":[{"arc":[{"x":28879,"y":30513},{"x":-36,"y":37},{"x":-73,"y":-12},{"x":-6,"y":42},{"x":-187,"y":-21},{"x":-86,"y":27},{"x":175,"y":200},{"x":-8,"y":56},{"x":-47,"y":-6},{"x":47,"y":74},{"x":-8,"y":42},{"x":-36,"y":28},{"x":15,"y":-21},{"x":-15,"y":-12},{"x":3,"y":-4},{"x":-4,"y":-12},{"x":-11,"y":-4},{"x":-1,"y":-9},{"x":-2,"y":-2},{"x":-4,"y":0},{"x":-9,"y":6},{"x":-5,"y":8},{"x":-14,"y":8},{"x":-14,"y":-1},{"x":-33,"y":-61},{"x":18,"y":-32},{"x":1,"y":-16},{"x":-4,"y":-16},{"x":0,"y":-22},{"x":-3,"y":-7},{"x":2,"y":-10},{"x":-10,"y":-68},{"x":-3,"y":-8},{"x":-4,"y":-6},{"x":-10,"y":-7},{"x":-7,"y":-30},{"x":-5,"y":-7},{"x":-3,"y":0},{"x":-8,"y":2},{"x":-39,"y":-48},{"x":-19,"y":1},{"x":14,"y":-21},{"x":-75,"y":-47},{"x":-18,"y":-7},{"x":-4,"y":1},{"x":-12,"y":10},{"x":-9,"y":12},{"x":-8,"y":1},{"x":-3,"y":1},{"x":-9,"y":7},{"x":-15,"y":5},{"x":-8,"y":1},{"x":-5,"y":3},{"x":-4,"y":2},{"x":-4,"y":0},{"x":-4,"y":-1},{"x":-9,"y":-3},{"x":-4,"y":1},{"x":-8,"y":9},{"x":-5,"y":3},{"x":-56,"y":-8},{"x":-25,"y":13},{"x":-148,"y":-82},{"x":-108,"y":13},{"x":-8,"y":-145},{"x":-157,"y":51},{"x":-65,"y":-98},{"x":-128,"y":-31},{"x":-74,"y":2},{"x":-42,"y":7},{"x":-14,"y":-10},{"x":-33,"y":-13},{"x":-9,"y":-5},{"x":-10,"y":-9},{"x":-2,"y":-3},{"x":-9,"y":-21},{"x":50,"y":-81},{"x":-66,"y":-69},{"x":-44,"y":24},{"x":-29,"y":-51},{"x":1,"y":-16},{"x":7,"y":-10},{"x":-2,"y":-7},{"x":0,"y":-2},{"x":1,"y":-4},{"x":1,"y":-1},{"x":2,"y":-1},{"x":5,"y":2},{"x":5,"y":0},{"x":3,"y":-1},{"x":1,"y":-2},{"x":0,"y":-7},{"x":-8,"y":-13},{"x":-19,"y":-17},{"x":-49,"y":-18},{"x":-12,"y":-22},{"x":-194,"y":-18},{"x":-23,"y":15},{"x":-16,"y":-8},{"x":-11,"y":-10},{"x":-67,"y":-141},{"x":7,"y":-68},{"x":-41,"y":-47},{"x":4,"y":-196},{"x":102,"y":-198},{"x":260,"y":119},{"x":80,"y":-17},{"x":28,"y":-105},{"x":351,"y":-32},{"x":103,"y":44},{"x":28,"y":-50},{"x":112,"y":-2},{"x":41,"y":48},{"x":44,"y":-23},{"x":67,"y":44},{"x":181,"y":25},{"x":-40,"y":90},{"x":-67,"y":34},{"x":31,"y":18},{"x":-12,"y":12},{"x":-2,"y":9},{"x":1,"y":2},{"x":6,"y":8},{"x":42,"y":47},{"x":95,"y":3},{"x":32,"y":115},{"x":61,"y":52},{"x":34,"y":14},{"x":18,"y":2},{"x":17,"y":-2},{"x":5,"y":0},{"x":5,"y":0},{"x":8,"y":2},{"x":55,"y":19},{"x":8,"y":2},{"x":40,"y":0},{"x":22,"y":25},{"x":4,"y":9},{"x":6,"y":58},{"x":72,"y":27},{"x":-56,"y":65},{"x":12,"y":87},{"x":-45,"y":30},{"x":22,"y":30},{"x":-14,"y":7},{"x":2,"y":23},{"x":-26,"y":3},{"x":-42,"y":30},{"x":93,"y":105},{"x":-4,"y":12},{"x":-34,"y":17},{"x":-15,"y":15},{"x":1,"y":2},{"x":3,"y":7},{"x":10,"y":8},{"x":13,"y":7},{"x":80,"y":8},{"x":-8,"y":79},{"x":91,"y":1},{"x":103,"y":60},{"x":1,"y":47}],"type":"coastline"},{"arc":[{"x":17796,"y":24791},{"x":-121,"y":11},{"x":-51,"y":-13},{"x":-169,"y":9},{"x":-91,"y":-20},{"x":-47,"y":17},{"x":0,"y":-246},{"x":-712,"y":0},{"x":-97,"y":21},{"x":-235,"y":149},{"x":-88,"y":-313},{"x":53,"y":-233},{"x":92,"y":-53},{"x":-8,"y":-543},{"x":103,"y":-75},{"x":-24,"y":-63}],"type":"coastline"},{"arc":[{"x":16401,"y":23439},{"x":-40,"y":-131},{"x":313,"y":-4},{"x":155,"y":50},{"x":396,"y":45},{"x":144,"y":57},{"x":59,"y":57},{"x":161,"y":41},{"x":250,"y":-3},{"x":356,"y":-94},{"x":77,"y":47},{"x":91,"y":0},{"x":323,"y":-67},{"x":179,"y":-68},{"x":59,"y":111}],"type":"coastline"},{"arc":[{"x":18924,"y":23480},{"x":-16,"y":415},{"x":-288,"y":42},{"x":-201,"y":80},{"x":22,"y":213},{"x":225,"y":20},{"x":19,"y":133},{"x":-83,"y":-11},{"x":1,"y":153},{"x":-161,"y":-3},{"x":-103,"y":23},{"x":-214,"y":-19},{"x":-216,"y":64},{"x":-198,"y":-10},{"x":46,"y":32},{"x":3,"y":162},{"x":36,"y":17}],"type":"area"},{"arc":[{"x":19198,"y":23466},{"x":-94,"y":-76},{"x":-151,"y":8},{"x":-9,"y":-36}],"type":"area"},{"arc":[{"x":18944,"y":23362},{"x":169,"y":-9},{"x":-1,"y":-16},{"x":56,"y":22},{"x":85,"y":70},{"x":-5,"y":13},{"x":-50,"y":24}],"type":"coastline"},{"arc":[{"x":29809,"y":24316},{"x":-151,"y":61}],"type":"area"},{"arc":[{"x":29658,"y":24377},{"x":-144,"y":-8},{"x":-86,"y":57}],"type":"area"},{"arc":[{"x":29428,"y":24426},{"x":-66,"y":6},{"x":-104,"y":-45},{"x":-24,"y":-42},{"x":-73,"y":-7},{"x":-6,"y":-7},{"x":10,"y":-12},{"x":4,"y":-9},{"x":-2,"y":-2},{"x":-1,"y":0},{"x":0,"y":-1},{"x":81,"y":-15},{"x":84,"y":-70},{"x":-16,"y":23},{"x":68,"y":-21},{"x":215,"y":37},{"x":55,"y":-30}],"type":"coastline"},{"arc":[{"x":29653,"y":24231},{"x":76,"y":-11},{"x":93,"y":42},{"x":-13,"y":54}],"type":"area"},{"arc":[{"x":33818,"y":24298},{"x":-21,"y":44},{"x":-52,"y":-40},{"x":49,"y":-37},{"x":24,"y":33}],"type":"coastline"},{"arc":[{"x":29799,"y":22085},{"x":-15,"y":-32},{"x":12,"y":-4},{"x":4,"y":5},{"x":5,"y":-6},{"x":12,"y":2},{"x":3,"y":1},{"x":2,"y":3},{"x":9,"y":2},{"x":1,"y":7},{"x":-9,"y":24},{"x":-24,"y":-2}],"type":"coastline"},{"arc":[{"x":26004,"y":28718},{"x":-146,"y":12}],"type":"coastline"},{"arc":[{"x":25858,"y":28730},{"x":-56,"y":-34},{"x":55,"y":-15},{"x":-20,"y":-22},{"x":-147,"y":-5},{"x":-34,"y":30},{"x":-26,"y":-66},{"x":-283,"y":-33}],"type":"area"},{"arc":[{"x":25347,"y":28585},{"x":52,"y":-319},{"x":297,"y":-121}],"type":"area"},{"arc":[{"x":25696,"y":28145},{"x":7,"y":23},{"x":-73,"y":21},{"x":55,"y":82},{"x":-14,"y":185},{"x":431,"y":237}],"type":"coastline"},{"arc":[{"x":26102,"y":28693},{"x":-98,"y":25}],"type":"area"},{"arc":[{"x":7897,"y":13533},{"x":20,"y":2}],"type":"coastline"},{"arc":[{"x":7917,"y":13535},{"x":-20,"y":-2}],"type":"coastline"},{"arc":[{"x":7935,"y":14057},{"x":-3,"y":65},{"x":-38,"y":-107},{"x":41,"y":42}],"type":"coastline"},{"arc":[{"x":7920,"y":13535},{"x":482,"y":1}],"type":"area"},{"arc":[{"x":8402,"y":13536},{"x":-104,"y":49},{"x":-30,"y":-39},{"x":-24,"y":53},{"x":-127,"y":66},{"x":-125,"y":132},{"x":-41,"y":163},{"x":-63,"y":-26},{"x":-28,"y":-133},{"x":60,"y":-266}],"type":"coastline"},{"arc":[{"x":11136,"y":14337},{"x":-6,"y":-24},{"x":30,"y":8},{"x":-24,"y":16}],"type":"coastline"},{"arc":[{"x":15252,"y":14011},{"x":-155,"y":48},{"x":74,"y":9},{"x":23,"y":11},{"x":41,"y":9},{"x":6,"y":5},{"x":30,"y":5},{"x":7,"y":5},{"x":6,"y":1},{"x":7,"y":1},{"x":0,"y":0},{"x":2,"y":2},{"x":1,"y":3},{"x":-2,"y":12},{"x":-10,"y":8},{"x":12,"y":13},{"x":0,"y":94},{"x":-2,"y":7},{"x":-29,"y":3},{"x":-39,"y":19},{"x":-40,"y":41},{"x":-12,"y":6},{"x":-112,"y":34},{"x":-173,"y":116},{"x":-45,"y":118},{"x":-174,"y":149},{"x":-16,"y":41},{"x":-32,"y":16},{"x":11,"y":14},{"x":-32,"y":43},{"x":-21,"y":14},{"x":-44,"y":14},{"x":-9,"y":7},{"x":-4,"y":2},{"x":-2,"y":1},{"x":-4,"y":0},{"x":-24,"y":-2},{"x":-138,"y":-70},{"x":-106,"y":-4},{"x":-150,"y":-51},{"x":13,"y":70},{"x":-74,"y":198},{"x":65,"y":33},{"x":-32,"y":45},{"x":104,"y":41},{"x":75,"y":76},{"x":101,"y":19},{"x":140,"y":4}],"type":"coastline"},{"arc":[{"x":14489,"y":15241},{"x":-26,"y":19},{"x":44,"y":40},{"x":-33,"y":27},{"x":-139,"y":28},{"x":-198,"y":-19},{"x":-87,"y":-120},{"x":-159,"y":-117},{"x":-37,"y":9},{"x":5,"y":-25},{"x":-406,"y":-208}],"type":"area"},{"arc":[{"x":13453,"y":14875},{"x":-3,"y":-3},{"x":-30,"y":-2},{"x":-35,"y":-24},{"x":-7,"y":-3},{"x":-8,"y":-2},{"x":-9,"y":1},{"x":-27,"y":8},{"x":-36,"y":3},{"x":-230,"y":-50},{"x":-260,"y":7},{"x":-12,"y":-34},{"x":-136,"y":-15},{"x":-108,"y":21},{"x":-23,"y":-23},{"x":-83,"y":31},{"x":-146,"y":135},{"x":-150,"y":-20},{"x":-92,"y":52},{"x":15,"y":24},{"x":-130,"y":9},{"x":-276,"y":-108},{"x":-83,"y":-94},{"x":-115,"y":-342},{"x":46,"y":-150},{"x":-103,"y":6},{"x":-27,"y":37},{"x":15,"y":-32},{"x":-37,"y":29},{"x":-187,"y":-54},{"x":-72,"y":38},{"x":-55,"y":-19},{"x":-65,"y":-156},{"x":76,"y":-157},{"x":22,"y":14},{"x":-27,"y":-41},{"x":-281,"y":16},{"x":-36,"y":63},{"x":-43,"y":5},{"x":4,"y":41},{"x":35,"y":5},{"x":8,"y":-33},{"x":36,"y":69},{"x":-116,"y":23},{"x":-47,"y":-11},{"x":-19,"y":-53},{"x":83,"y":-34},{"x":-31,"y":-68},{"x":-29,"y":-6},{"x":-45,"y":84},{"x":-58,"y":-78},{"x":-95,"y":-47},{"x":-158,"y":14},{"x":-100,"y":-62},{"x":-27,"y":25},{"x":-73,"y":-171},{"x":-166,"y":-79},{"x":-129,"y":19},{"x":-99,"y":77},{"x":-44,"y":127},{"x":-121,"y":-12},{"x":-28,"y":-67},{"x":21,"y":60},{"x":-40,"y":17},{"x":-240,"y":-218},{"x":-220,"y":-42},{"x":-28,"y":-54},{"x":88,"y":-48},{"x":-45,"y":20},{"x":-18,"y":-54},{"x":-32,"y":81},{"x":-40,"y":-64},{"x":-170,"y":-65},{"x":24,"y":30},{"x":-131,"y":25},{"x":-15,"y":-80},{"x":2,"y":78},{"x":-164,"y":64}],"type":"coastline"},{"arc":[{"x":8468,"y":13558},{"x":76,"y":-183},{"x":9,"y":-244},{"x":94,"y":-59},{"x":203,"y":18},{"x":-27,"y":-102},{"x":147,"y":-49},{"x":179,"y":9},{"x":10,"y":45},{"x":212,"y":98},{"x":94,"y":-31},{"x":275,"y":105},{"x":121,"y":-28},{"x":41,"y":37},{"x":90,"y":-19},{"x":61,"y":55},{"x":116,"y":-94},{"x":-3,"y":96},{"x":56,"y":21},{"x":38,"y":-90},{"x":102,"y":25},{"x":108,"y":-36},{"x":57,"y":26},{"x":43,"y":-50},{"x":166,"y":3},{"x":40,"y":48},{"x":307,"y":-27},{"x":401,"y":66},{"x":79,"y":70},{"x":198,"y":-42},{"x":195,"y":-2},{"x":79,"y":19},{"x":96,"y":80},{"x":180,"y":-24},{"x":218,"y":64},{"x":13,"y":27},{"x":192,"y":5},{"x":47,"y":-39},{"x":66,"y":14},{"x":185,"y":-48},{"x":25,"y":18},{"x":84,"y":-42},{"x":86,"y":6},{"x":34,"y":33},{"x":151,"y":12},{"x":45,"y":41},{"x":195,"y":-25},{"x":202,"y":47},{"x":100,"y":56},{"x":187,"y":46},{"x":17,"y":59},{"x":133,"y":-33},{"x":70,"y":23},{"x":159,"y":-24},{"x":70,"y":29},{"x":80,"y":-25},{"x":86,"y":40},{"x":87,"y":110},{"x":225,"y":40},{"x":40,"y":-22}],"type":"area"},{"arc":[{"x":15108,"y":13711},{"x":134,"y":55},{"x":34,"y":52},{"x":65,"y":11},{"x":-74,"y":58},{"x":-15,"y":124}],"type":"coastline"},{"arc":[{"x":29527,"y":27347},{"x":-52,"y":8},{"x":-44,"y":65},{"x":-43,"y":-28},{"x":-52,"y":19},{"x":-49,"y":55},{"x":-57,"y":-49},{"x":-94,"y":115},{"x":-32,"y":-20},{"x":-44,"y":30},{"x":-5,"y":-26},{"x":-70,"y":15}],"type":"area"},{"arc":[{"x":28985,"y":27531},{"x":-4,"y":-46}],"type":"area"},{"arc":[{"x":28981,"y":27485},{"x":154,"y":-42},{"x":35,"y":-124}],"type":"area"},{"arc":[{"x":29170,"y":27319},{"x":74,"y":-54},{"x":17,"y":-80},{"x":147,"y":6},{"x":77,"y":-34}],"type":"area"},{"arc":[{"x":29485,"y":27157},{"x":42,"y":190}],"type":"area"},{"arc":[{"x":1598,"y":2138},{"x":-57,"y":1},{"x":68,"y":-171},{"x":-11,"y":170}],"type":"coastline"},{"arc":[{"x":1890,"y":2372},{"x":26,"y":-394},{"x":36,"y":-15},{"x":-62,"y":409}],"type":"coastline"},{"arc":[{"x":2318,"y":14576},{"x":-117,"y":96},{"x":-168,"y":-166},{"x":21,"y":-228},{"x":62,"y":-75},{"x":-36,"y":-139},{"x":76,"y":-293},{"x":49,"y":56},{"x":-45,"y":39},{"x":6,"y":506},{"x":107,"y":28},{"x":45,"y":176}],"type":"coastline"},{"arc":[{"x":2294,"y":18093},{"x":-8,"y":111},{"x":42,"y":-70},{"x":-59,"y":144},{"x":3,"y":-234},{"x":56,"y":-59},{"x":-34,"y":108}],"type":"coastline"},{"arc":[{"x":2353,"y":13654},{"x":-16,"y":224},{"x":-13,"y":-107},{"x":-25,"y":139},{"x":-69,"y":-81},{"x":123,"y":-175}],"type":"coastline"},{"arc":[{"x":2414,"y":13728},{"x":-54,"y":-51},{"x":16,"y":-134},{"x":29,"y":134},{"x":-5,"y":-117},{"x":23,"y":51},{"x":-9,"y":117}],"type":"coastline"},{"arc":[{"x":2413,"y":17743},{"x":20,"y":-355},{"x":21,"y":174},{"x":-41,"y":181}],"type":"coastline"},{"arc":[{"x":2414,"y":2395},{"x":-124,"y":149},{"x":-8,"y":-200},{"x":99,"y":-392},{"x":83,"y":-37},{"x":76,"y":122},{"x":-126,"y":358}],"type":"coastline"},{"arc":[{"x":2601,"y":13754},{"x":-263,"y":-341},{"x":-11,"y":-219},{"x":88,"y":-30},{"x":85,"y":134},{"x":115,"y":366},{"x":-14,"y":90}],"type":"coastline"},{"arc":[{"x":2657,"y":42245},{"x":-28,"y":-153},{"x":45,"y":-40},{"x":-23,"y":98},{"x":49,"y":87},{"x":-43,"y":8}],"type":"coastline"},{"arc":[{"x":2543,"y":16366},{"x":-24,"y":195},{"x":-86,"y":74},{"x":-229,"y":-48},{"x":-133,"y":-762},{"x":-19,"y":-530},{"x":173,"y":91},{"x":12,"y":129},{"x":-30,"y":-6},{"x":146,"y":259},{"x":236,"y":32},{"x":100,"y":113},{"x":61,"y":225},{"x":-107,"y":414},{"x":-78,"y":-13},{"x":-22,"y":-173}],"type":"coastline"},{"arc":[{"x":2860,"y":42189},{"x":-54,"y":273},{"x":-76,"y":-326},{"x":152,"y":-19},{"x":-22,"y":72}],"type":"coastline"},{"arc":[{"x":2947,"y":3674},{"x":-55,"y":56},{"x":30,"y":-179},{"x":25,"y":123}],"type":"coastline"},{"arc":[{"x":2949,"y":4103},{"x":-23,"y":-104},{"x":37,"y":3},{"x":-14,"y":101}],"type":"coastline"},{"arc":[{"x":3526,"y":5874},{"x":-63,"y":70},{"x":25,"y":-120},{"x":38,"y":50}],"type":"coastline"},{"arc":[{"x":3507,"y":6380},{"x":-54,"y":0},{"x":77,"y":-81},{"x":-23,"y":81}],"type":"coastline"},{"arc":[{"x":3584,"y":7700},{"x":-21,"y":-88},{"x":66,"y":128},{"x":-45,"y":-40}],"type":"coastline"},{"arc":[{"x":3574,"y":7353},{"x":64,"y":-49},{"x":10,"y":95},{"x":-74,"y":-46}],"type":"coastline"},{"arc":[{"x":3655,"y":7154},{"x":-49,"y":109},{"x":-77,"y":-85},{"x":-6,"y":-238},{"x":94,"y":70},{"x":15,"y":-125},{"x":38,"y":28},{"x":-15,"y":241}],"type":"coastline"},{"arc":[{"x":3580,"y":19365},{"x":-95,"y":17},{"x":81,"y":-72},{"x":9,"y":-111},{"x":116,"y":170},{"x":-111,"y":-4}],"type":"coastline"},{"arc":[{"x":3755,"y":6553},{"x":-76,"y":106},{"x":-38,"y":-69},{"x":-10,"y":213},{"x":-92,"y":12},{"x":23,"y":-155},{"x":110,"y":-163},{"x":-12,"y":-87},{"x":92,"y":-5},{"x":3,"y":148}],"type":"coastline"},{"arc":[{"x":3829,"y":11002},{"x":-3,"y":-104},{"x":31,"y":67},{"x":-28,"y":37}],"type":"coastline"},{"arc":[{"x":3854,"y":12768},{"x":-29,"y":89},{"x":-140,"y":-46},{"x":103,"y":-186},{"x":26,"y":132},{"x":33,"y":-89},{"x":7,"y":100}],"type":"coastline"},{"arc":[{"x":3861,"y":10827},{"x":-86,"y":-57},{"x":136,"y":-36},{"x":11,"y":94},{"x":-61,"y":-1}],"type":"coastline"},{"arc":[{"x":3901,"y":10349},{"x":1,"y":-51},{"x":41,"y":91},{"x":-42,"y":-40}],"type":"coastline"},{"arc":[{"x":4030,"y":9932},{"x":-18,"y":56},{"x":61,"y":27},{"x":-72,"y":25},{"x":81,"y":49},{"x":2,"y":86},{"x":-39,"y":18},{"x":-45,"y":-105},{"x":37,"y":163},{"x":-54,"y":-92},{"x":-15,"y":119},{"x":-51,"y":-75},{"x":2,"y":-307},{"x":115,"y":-455},{"x":54,"y":266},{"x":-39,"y":-39},{"x":15,"y":116},{"x":-40,"y":99},{"x":43,"y":-57},{"x":36,"y":76},{"x":-23,"y":67},{"x":-50,"y":-37}],"type":"coastline"},{"arc":[{"x":4344,"y":21525},{"x":-32,"y":100},{"x":-77,"y":-80},{"x":97,"y":-103},{"x":12,"y":83}],"type":"coastline"},{"arc":[{"x":4370,"y":12898},{"x":-41,"y":39},{"x":-50,"y":-102},{"x":-28,"y":-247},{"x":47,"y":6},{"x":67,"y":168},{"x":-46,"y":49},{"x":49,"y":16},{"x":2,"y":71}],"type":"coastline"},{"arc":[{"x":4403,"y":21156},{"x":-43,"y":-26},{"x":38,"y":-37},{"x":5,"y":63}],"type":"coastline"},{"arc":[{"x":4360,"y":22237},{"x":20,"y":-46},{"x":34,"y":68},{"x":-54,"y":-22}],"type":"coastline"},{"arc":[{"x":4378,"y":21497},{"x":12,"y":-44},{"x":45,"y":80},{"x":-57,"y":-36}],"type":"coastline"},{"arc":[{"x":4409,"y":25141},{"x":6,"y":-105},{"x":68,"y":41},{"x":-74,"y":64}],"type":"coastline"},{"arc":[{"x":4476,"y":22054},{"x":-72,"y":-35},{"x":70,"y":-27},{"x":2,"y":62}],"type":"coastline"},{"arc":[{"x":4551,"y":12796},{"x":-90,"y":-5},{"x":19,"y":-125},{"x":70,"y":43},{"x":1,"y":87}],"type":"coastline"},{"arc":[{"x":4482,"y":23843},{"x":53,"y":-71},{"x":26,"y":117},{"x":-79,"y":-46}],"type":"coastline"},{"arc":[{"x":4569,"y":13133},{"x":8,"y":-100},{"x":42,"y":-19},{"x":-50,"y":119}],"type":"coastline"},{"arc":[{"x":4609,"y":14366},{"x":-50,"y":-36},{"x":128,"y":-53},{"x":-78,"y":89}],"type":"coastline"},{"arc":[{"x":4680,"y":13367},{"x":-362,"y":206},{"x":-319,"y":-11},{"x":-73,"y":-97},{"x":-30,"y":-388},{"x":50,"y":-90},{"x":36,"y":40},{"x":-23,"y":256},{"x":35,"y":72},{"x":19,"y":-235},{"x":69,"y":148},{"x":-11,"y":-121},{"x":64,"y":-62},{"x":-69,"y":-63},{"x":13,"y":-124},{"x":-34,"y":46},{"x":-36,"y":-75},{"x":56,"y":-150},{"x":59,"y":-7},{"x":31,"y":48},{"x":-30,"y":88},{"x":62,"y":8},{"x":-48,"y":93},{"x":61,"y":-15},{"x":-11,"y":170},{"x":52,"y":-114},{"x":18,"y":41},{"x":-22,"y":133},{"x":48,"y":156},{"x":-46,"y":69},{"x":67,"y":7},{"x":39,"y":-180},{"x":48,"y":32},{"x":16,"y":172},{"x":57,"y":-74},{"x":-18,"y":-105},{"x":40,"y":-88},{"x":133,"y":20},{"x":83,"y":-70},{"x":68,"y":214},{"x":-92,"y":50}],"type":"coastline"},{"arc":[{"x":5159,"y":13614},{"x":-92,"y":2},{"x":-65,"y":-113},{"x":74,"y":-26},{"x":182,"y":164},{"x":-99,"y":-27}],"type":"coastline"},{"arc":[{"x":5383,"y":33634},{"x":-24,"y":34},{"x":-11,"y":-79},{"x":35,"y":45}],"type":"coastline"},{"arc":[{"x":5473,"y":34156},{"x":29,"y":-87},{"x":28,"y":100},{"x":-57,"y":-13}],"type":"coastline"},{"arc":[{"x":5720,"y":14923},{"x":26,"y":-27},{"x":26,"y":68},{"x":-52,"y":-41}],"type":"coastline"},{"arc":[{"x":5785,"y":14188},{"x":-64,"y":-4},{"x":-5,"y":54},{"x":-61,"y":-101},{"x":33,"y":-74},{"x":97,"y":125}],"type":"coastline"},{"arc":[{"x":5825,"y":14309},{"x":-59,"y":13},{"x":-31,"y":-73},{"x":101,"y":23},{"x":-11,"y":37}],"type":"coastline"},{"arc":[{"x":5888,"y":14852},{"x":-56,"y":-7},{"x":32,"y":45},{"x":-53,"y":51},{"x":-58,"y":-97},{"x":75,"y":-72},{"x":60,"y":80}],"type":"coastline"},{"arc":[{"x":5883,"y":14901},{"x":0,"y":38},{"x":6,"y":-74},{"x":-6,"y":36}],"type":"coastline"},{"arc":[{"x":5942,"y":15079},{"x":32,"y":-33},{"x":2,"y":56},{"x":-34,"y":-23}],"type":"coastline"},{"arc":[{"x":6009,"y":14946},{"x":-80,"y":25},{"x":43,"y":-76},{"x":-176,"y":-202},{"x":-71,"y":36},{"x":52,"y":-82},{"x":-62,"y":-12},{"x":45,"y":-45},{"x":-140,"y":-133},{"x":8,"y":-85},{"x":-60,"y":15},{"x":-14,"y":-69},{"x":-54,"y":60},{"x":-84,"y":-81},{"x":-56,"y":94},{"x":56,"y":32},{"x":-5,"y":92},{"x":-90,"y":-51},{"x":51,"y":-58},{"x":-82,"y":-34},{"x":63,"y":-26},{"x":-7,"y":-85},{"x":-111,"y":3},{"x":107,"y":-69},{"x":13,"y":-73},{"x":-45,"y":29},{"x":-57,"y":-69},{"x":-57,"y":47},{"x":29,"y":-105},{"x":-98,"y":-55},{"x":-24,"y":39},{"x":0,"y":-102},{"x":-152,"y":31},{"x":-41,"y":-52},{"x":13,"y":122},{"x":-47,"y":-90},{"x":-20,"y":63},{"x":-50,"y":-32},{"x":-45,"y":147},{"x":58,"y":-27},{"x":34,"y":168},{"x":-36,"y":-108},{"x":-58,"y":67},{"x":-32,"y":-84},{"x":-120,"y":183},{"x":-78,"y":-16},{"x":-78,"y":80},{"x":-2,"y":-64},{"x":-72,"y":25},{"x":-5,"y":101},{"x":-47,"y":-95},{"x":-35,"y":21},{"x":15,"y":80},{"x":-108,"y":47},{"x":-68,"y":-145},{"x":24,"y":118},{"x":-51,"y":45},{"x":-36,"y":-203},{"x":-48,"y":23},{"x":31,"y":190},{"x":-98,"y":6},{"x":6,"y":-100},{"x":-54,"y":5},{"x":-31,"y":35},{"x":29,"y":71},{"x":-95,"y":-26},{"x":42,"y":99},{"x":-88,"y":-9},{"x":22,"y":-70},{"x":-48,"y":-16},{"x":60,"y":-162},{"x":-91,"y":46},{"x":-41,"y":116},{"x":-55,"y":-33},{"x":12,"y":-96},{"x":-44,"y":90},{"x":-50,"y":-101},{"x":0,"y":146},{"x":-49,"y":-105},{"x":32,"y":-99},{"x":-72,"y":70},{"x":-62,"y":-83},{"x":74,"y":-97},{"x":-54,"y":23},{"x":-20,"y":-123},{"x":-34,"y":127},{"x":-38,"y":-169},{"x":-21,"y":155},{"x":-206,"y":-776},{"x":-82,"y":-57},{"x":39,"y":-793},{"x":-35,"y":-21},{"x":42,"y":-119},{"x":-237,"y":263},{"x":-8,"y":341},{"x":-99,"y":-91},{"x":-48,"y":-192},{"x":126,"y":-695},{"x":-43,"y":-103},{"x":-126,"y":511},{"x":-68,"y":-35},{"x":-28,"y":-316},{"x":198,"y":-426},{"x":-114,"y":104},{"x":12,"y":-114},{"x":-260,"y":412},{"x":72,"y":8},{"x":-30,"y":512},{"x":-123,"y":-51},{"x":-10,"y":-371},{"x":-44,"y":172},{"x":22,"y":243},{"x":-183,"y":88},{"x":22,"y":176},{"x":-37,"y":184},{"x":79,"y":215},{"x":-83,"y":103},{"x":0,"y":185},{"x":-120,"y":398},{"x":-10,"y":336},{"x":-31,"y":25},{"x":-4,"y":-424},{"x":-28,"y":270},{"x":-25,"y":-338},{"x":-77,"y":21},{"x":-27,"y":199},{"x":54,"y":491},{"x":-79,"y":-291},{"x":-115,"y":75},{"x":19,"y":143},{"x":-94,"y":-103},{"x":-21,"y":289},{"x":285,"y":628},{"x":52,"y":431},{"x":16,"y":313},{"x":-41,"y":113},{"x":36,"y":119},{"x":-111,"y":-50},{"x":-27,"y":142},{"x":302,"y":544},{"x":73,"y":274},{"x":-52,"y":189},{"x":107,"y":228},{"x":26,"y":609},{"x":43,"y":-118},{"x":29,"y":189},{"x":59,"y":879},{"x":45,"y":-210},{"x":29,"y":-780},{"x":69,"y":138},{"x":-2,"y":-120},{"x":57,"y":35},{"x":-47,"y":-314},{"x":88,"y":-417},{"x":144,"y":29},{"x":203,"y":279},{"x":36,"y":219},{"x":160,"y":314},{"x":114,"y":412},{"x":65,"y":415},{"x":-16,"y":153},{"x":54,"y":106},{"x":3,"y":261},{"x":52,"y":-74},{"x":193,"y":157},{"x":2,"y":289},{"x":113,"y":101},{"x":-6,"y":-262},{"x":22,"y":84},{"x":23,"y":-92},{"x":61,"y":18},{"x":75,"y":106},{"x":-7,"y":198},{"x":90,"y":-56},{"x":-28,"y":123},{"x":94,"y":242},{"x":143,"y":66},{"x":33,"y":-158},{"x":63,"y":-24},{"x":18,"y":83},{"x":-68,"y":110},{"x":150,"y":84},{"x":-184,"y":201},{"x":26,"y":100},{"x":173,"y":-39},{"x":-18,"y":157},{"x":55,"y":74},{"x":-36,"y":54},{"x":-118,"y":-71},{"x":16,"y":269},{"x":-52,"y":54},{"x":53,"y":25},{"x":-44,"y":143},{"x":52,"y":118},{"x":-115,"y":75},{"x":113,"y":130},{"x":81,"y":240},{"x":86,"y":626},{"x":74,"y":-23},{"x":-66,"y":117},{"x":24,"y":84},{"x":67,"y":19},{"x":-84,"y":83},{"x":-74,"y":224},{"x":123,"y":149},{"x":37,"y":-73},{"x":6,"y":64},{"x":-68,"y":107},{"x":-7,"y":240},{"x":55,"y":91},{"x":-72,"y":-8},{"x":-20,"y":193},{"x":83,"y":103},{"x":-127,"y":-2},{"x":-47,"y":78},{"x":30,"y":198},{"x":132,"y":66},{"x":-71,"y":102},{"x":-25,"y":-92},{"x":-24,"y":61},{"x":-14,"y":118},{"x":93,"y":99},{"x":-121,"y":104},{"x":-10,"y":281},{"x":34,"y":-7},{"x":119,"y":318},{"x":67,"y":353},{"x":114,"y":31},{"x":136,"y":-60},{"x":52,"y":87},{"x":-4,"y":131},{"x":-82,"y":-84},{"x":-47,"y":185},{"x":-107,"y":14},{"x":24,"y":178},{"x":-58,"y":40},{"x":46,"y":91},{"x":-116,"y":150},{"x":48,"y":-26},{"x":84,"y":118},{"x":176,"y":10},{"x":101,"y":325},{"x":64,"y":36},{"x":20,"y":219},{"x":62,"y":42},{"x":-3,"y":173},{"x":106,"y":10},{"x":-30,"y":117},{"x":-22,"y":-64},{"x":-14,"y":50},{"x":-31,"y":-29},{"x":10,"y":66},{"x":-25,"y":-33},{"x":9,"y":133},{"x":-66,"y":-9},{"x":124,"y":24},{"x":56,"y":100},{"x":8,"y":-113},{"x":39,"y":-14},{"x":44,"y":104},{"x":-41,"y":-7},{"x":-17,"y":88},{"x":-47,"y":-22},{"x":39,"y":55},{"x":-23,"y":89},{"x":57,"y":-55},{"x":42,"y":48},{"x":2,"y":-66},{"x":66,"y":-5},{"x":98,"y":186},{"x":43,"y":245},{"x":-41,"y":222},{"x":-129,"y":203},{"x":-29,"y":-33},{"x":33,"y":-124},{"x":-71,"y":87},{"x":6,"y":-53},{"x":-75,"y":-62},{"x":3,"y":47},{"x":-48,"y":3},{"x":67,"y":47},{"x":27,"y":126},{"x":-53,"y":55},{"x":11,"y":105},{"x":-28,"y":-39},{"x":-69,"y":112},{"x":47,"y":17},{"x":6,"y":99},{"x":-50,"y":98},{"x":20,"y":289},{"x":-88,"y":574},{"x":33,"y":150},{"x":-168,"y":69},{"x":-75,"y":-109},{"x":-10,"y":70},{"x":-39,"y":-67},{"x":-56,"y":53},{"x":-21,"y":-121},{"x":-51,"y":74},{"x":-74,"y":-40},{"x":-17,"y":-55},{"x":68,"y":-48},{"x":-122,"y":-117},{"x":-38,"y":248},{"x":-607,"y":-356},{"x":-41,"y":109},{"x":37,"y":97},{"x":144,"y":38},{"x":10,"y":149},{"x":77,"y":36},{"x":39,"y":106},{"x":26,"y":-34},{"x":50,"y":133},{"x":34,"y":-47},{"x":154,"y":69},{"x":74,"y":137},{"x":64,"y":-26},{"x":81,"y":93},{"x":20,"y":82},{"x":-47,"y":27},{"x":25,"y":119},{"x":-30,"y":17},{"x":94,"y":49},{"x":89,"y":246},{"x":69,"y":17},{"x":28,"y":83},{"x":98,"y":9},{"x":133,"y":403},{"x":7,"y":189},{"x":43,"y":-28},{"x":75,"y":128},{"x":-17,"y":143},{"x":94,"y":286},{"x":-11,"y":296},{"x":72,"y":189},{"x":-19,"y":203},{"x":-37,"y":14},{"x":62,"y":143},{"x":-53,"y":78},{"x":49,"y":185},{"x":-42,"y":75},{"x":52,"y":101},{"x":-40,"y":1},{"x":30,"y":65},{"x":-94,"y":-30},{"x":79,"y":85},{"x":9,"y":118},{"x":129,"y":102},{"x":-8,"y":313},{"x":-129,"y":470},{"x":-66,"y":-8},{"x":50,"y":60},{"x":-78,"y":79},{"x":58,"y":230},{"x":91,"y":-31},{"x":57,"y":53},{"x":65,"y":276},{"x":-103,"y":149},{"x":-64,"y":-13},{"x":7,"y":97},{"x":-70,"y":81},{"x":-90,"y":-213},{"x":-70,"y":-40},{"x":124,"y":394},{"x":-42,"y":-7},{"x":23,"y":187},{"x":-33,"y":-16},{"x":-1,"y":68},{"x":54,"y":188},{"x":-75,"y":-203},{"x":-32,"y":28},{"x":187,"y":615},{"x":-38,"y":85},{"x":102,"y":146},{"x":-58,"y":55},{"x":47,"y":7},{"x":-22,"y":52},{"x":-48,"y":-35},{"x":-106,"y":62},{"x":46,"y":34},{"x":-55,"y":207},{"x":166,"y":80},{"x":65,"y":123},{"x":10,"y":372},{"x":-47,"y":77},{"x":-46,"y":-9},{"x":94,"y":120},{"x":-99,"y":160},{"x":43,"y":10},{"x":1,"y":87},{"x":-63,"y":82},{"x":23,"y":62},{"x":-62,"y":144},{"x":0,"y":262},{"x":-51,"y":60},{"x":41,"y":126},{"x":-67,"y":29},{"x":5,"y":111},{"x":-183,"y":-95},{"x":94,"y":170},{"x":-50,"y":41},{"x":34,"y":52},{"x":-82,"y":44},{"x":3,"y":57},{"x":-54,"y":-33},{"x":31,"y":56},{"x":-85,"y":-4},{"x":17,"y":477},{"x":-98,"y":8},{"x":-31,"y":66},{"x":56,"y":44},{"x":-48,"y":142},{"x":27,"y":91},{"x":108,"y":4},{"x":-192,"y":214},{"x":42,"y":12},{"x":-58,"y":75},{"x":10,"y":96},{"x":-63,"y":34},{"x":60,"y":69},{"x":-75,"y":217},{"x":-65,"y":68},{"x":-44,"y":-56},{"x":-25,"y":108},{"x":-180,"y":73},{"x":-47,"y":119},{"x":151,"y":-42},{"x":38,"y":73},{"x":-115,"y":158},{"x":65,"y":42},{"x":-67,"y":420},{"x":-54,"y":-63},{"x":4,"y":85},{"x":-48,"y":-15},{"x":10,"y":111},{"x":-111,"y":184},{"x":86,"y":10},{"x":-122,"y":85},{"x":-39,"y":-46},{"x":47,"y":-31},{"x":-94,"y":-68},{"x":-86,"y":59},{"x":51,"y":-236},{"x":-81,"y":196},{"x":-122,"y":-87},{"x":69,"y":-100},{"x":-44,"y":-7},{"x":3,"y":-141},{"x":56,"y":-101},{"x":-104,"y":53},{"x":2,"y":140},{"x":-53,"y":-131},{"x":25,"y":-87},{"x":-97,"y":-59},{"x":129,"y":-36},{"x":2,"y":-101},{"x":-157,"y":95},{"x":19,"y":-109},{"x":-154,"y":125},{"x":3,"y":-213},{"x":61,"y":-26},{"x":-112,"y":-135},{"x":-86,"y":29},{"x":-35,"y":-245},{"x":-2,"y":195},{"x":-98,"y":87},{"x":-85,"y":-99},{"x":-53,"y":97},{"x":-115,"y":-71},{"x":-108,"y":185},{"x":-101,"y":-12},{"x":1,"y":99},{"x":-79,"y":-85},{"x":-22,"y":97},{"x":69,"y":104},{"x":-91,"y":36},{"x":-51,"y":176},{"x":10,"y":-344},{"x":-77,"y":-217},{"x":99,"y":-130},{"x":-127,"y":62},{"x":31,"y":-129},{"x":-122,"y":4},{"x":-11,"y":-170},{"x":-21,"y":146},{"x":-45,"y":-163},{"x":-19,"y":240},{"x":-122,"y":-399},{"x":11,"y":319},{"x":-39,"y":-129},{"x":-48,"y":194},{"x":-14,"y":-225},{"x":-16,"y":168},{"x":-104,"y":-69},{"x":-10,"y":139},{"x":-173,"y":299},{"x":-67,"y":-378},{"x":22,"y":538},{"x":-143,"y":267},{"x":5,"y":145},{"x":-59,"y":-25},{"x":9,"y":-165},{"x":-49,"y":503},{"x":-97,"y":269},{"x":10,"y":190},{"x":-98,"y":581},{"x":-19,"y":30},{"x":0,"y":0},{"x":-36,"y":0},{"x":-113,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-113,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-1},{"x":0,"y":-59},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-53},{"x":0,"y":-7},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":0,"y":-61},{"x":0,"y":-60},{"x":0,"y":-61},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":113,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":113,"y":0},{"x":36,"y":0},{"x":-66,"y":1428},{"x":-50,"y":98},{"x":-3,"y":559},{"x":-76,"y":831},{"x":73,"y":-198},{"x":15,"y":242},{"x":103,"y":-1310},{"x":2,"y":416},{"x":50,"y":-262},{"x":20,"y":177},{"x":57,"y":-155},{"x":4,"y":-378},{"x":68,"y":-84},{"x":161,"y":-676},{"x":-124,"y":576},{"x":25,"y":549},{"x":-69,"y":57},{"x":43,"y":180},{"x":-47,"y":117},{"x":-4,"y":362},{"x":71,"y":276},{"x":25,"y":-192},{"x":16,"y":354},{"x":112,"y":370},{"x":136,"y":-279},{"x":59,"y":124},{"x":96,"y":-394},{"x":75,"y":1147},{"x":45,"y":-223},{"x":19,"y":146},{"x":46,"y":-335},{"x":8,"y":127},{"x":72,"y":-49},{"x":5,"y":342},{"x":43,"y":-175},{"x":-10,"y":235},{"x":134,"y":-632},{"x":51,"y":66},{"x":11,"y":-395},{"x":83,"y":-189},{"x":97,"y":330},{"x":-4,"y":-412},{"x":63,"y":-139},{"x":195,"y":5},{"x":-57,"y":156},{"x":66,"y":85},{"x":-9,"y":173},{"x":-89,"y":282},{"x":45,"y":28},{"x":-117,"y":303},{"x":14,"y":74},{"x":30,"y":-66},{"x":-18,"y":110},{"x":48,"y":132},{"x":36,"y":-151},{"x":50,"y":64},{"x":-70,"y":103},{"x":42,"y":84},{"x":-65,"y":184},{"x":65,"y":-60},{"x":0,"y":86},{"x":52,"y":-138},{"x":-13,"y":130},{"x":46,"y":-79},{"x":24,"y":61},{"x":71,"y":-197},{"x":-16,"y":-167},{"x":46,"y":-133},{"x":48,"y":164},{"x":-78,"y":346},{"x":83,"y":-136},{"x":56,"y":276},{"x":45,"y":-13},{"x":41,"y":224},{"x":-84,"y":221},{"x":69,"y":-79},{"x":84,"y":254},{"x":-12,"y":348},{"x":94,"y":-60},{"x":3,"y":138},{"x":41,"y":34},{"x":-81,"y":189},{"x":35,"y":131},{"x":-32,"y":342},{"x":52,"y":332},{"x":-23,"y":665},{"x":41,"y":353},{"x":36,"y":-24},{"x":41,"y":133},{"x":-58,"y":23},{"x":30,"y":228},{"x":-29,"y":81},{"x":94,"y":14},{"x":52,"y":111},{"x":-48,"y":-4},{"x":-5,"y":98},{"x":-79,"y":-44},{"x":11,"y":70},{"x":-66,"y":-138},{"x":-4,"y":65},{"x":-77,"y":-50},{"x":57,"y":327},{"x":142,"y":-6},{"x":-69,"y":179},{"x":-170,"y":-151},{"x":20,"y":203},{"x":-53,"y":377},{"x":61,"y":190},{"x":5,"y":211},{"x":1,"y":186},{"x":-79,"y":79},{"x":28,"y":300},{"x":39,"y":26},{"x":56,"y":-256},{"x":81,"y":88},{"x":5,"y":-192},{"x":113,"y":-24},{"x":18,"y":-153},{"x":70,"y":-18},{"x":-39,"y":288},{"x":43,"y":214},{"x":51,"y":-109},{"x":13,"y":-378},{"x":103,"y":-68},{"x":32,"y":48},{"x":-14,"y":115},{"x":-53,"y":-71},{"x":-4,"y":603},{"x":-37,"y":-26},{"x":-25,"y":177},{"x":35,"y":446},{"x":-43,"y":210},{"x":50,"y":224},{"x":107,"y":-14},{"x":-22,"y":143},{"x":-119,"y":-33},{"x":21,"y":133},{"x":-48,"y":49},{"x":46,"y":154},{"x":-69,"y":70},{"x":-91,"y":360},{"x":42,"y":116},{"x":102,"y":-6},{"x":-34,"y":126},{"x":101,"y":-36},{"x":-87,"y":208},{"x":-61,"y":-7},{"x":33,"y":242},{"x":-94,"y":-28},{"x":59,"y":220},{"x":-24,"y":151},{"x":63,"y":116},{"x":34,"y":338},{"x":101,"y":335},{"x":196,"y":92},{"x":572,"y":-249},{"x":34,"y":67},{"x":-50,"y":108},{"x":97,"y":76},{"x":55,"y":-87},{"x":17,"y":63},{"x":101,"y":-24},{"x":12,"y":65},{"x":63,"y":-78},{"x":99,"y":92},{"x":-4,"y":-134},{"x":110,"y":16},{"x":26,"y":64},{"x":-76,"y":-3},{"x":-13,"y":63},{"x":154,"y":-11},{"x":-7,"y":105},{"x":120,"y":-2},{"x":0,"y":74},{"x":43,"y":-20},{"x":-17,"y":82},{"x":90,"y":13},{"x":6,"y":83},{"x":126,"y":-10},{"x":-27,"y":96},{"x":49,"y":-15},{"x":16,"y":97},{"x":63,"y":-10},{"x":-42,"y":43},{"x":65,"y":41},{"x":-38,"y":27},{"x":135,"y":72},{"x":24,"y":124},{"x":42,"y":19},{"x":-31,"y":46},{"x":47,"y":13},{"x":88,"y":178},{"x":6,"y":101}],"type":"coastline"},{"arc":[{"x":6043,"y":15123},{"x":-48,"y":56},{"x":-5,"y":-175},{"x":53,"y":119}],"type":"coastline"},{"arc":[{"x":6078,"y":15014},{"x":-10,"y":51},{"x":-36,"y":-27},{"x":46,"y":-24}],"type":"coastline"},{"arc":[{"x":6173,"y":14577},{"x":-13,"y":32},{"x":-33,"y":-59},{"x":37,"y":-110},{"x":9,"y":137}],"type":"coastline"},{"arc":[{"x":6311,"y":14841},{"x":-20,"y":37},{"x":-43,"y":-173},{"x":63,"y":136}],"type":"coastline"},{"arc":[{"x":6501,"y":15183},{"x":-3,"y":52},{"x":-36,"y":-72},{"x":34,"y":-25},{"x":5,"y":45}],"type":"coastline"},{"arc":[{"x":6629,"y":16327},{"x":-48,"y":64},{"x":27,"y":-105},{"x":21,"y":41}],"type":"coastline"},{"arc":[{"x":9266,"y":30262},{"x":6,"y":25},{"x":-76,"y":-15},{"x":35,"y":64},{"x":-72,"y":-22},{"x":40,"y":135},{"x":-77,"y":-7},{"x":8,"y":-94},{"x":-29,"y":73},{"x":-34,"y":-6},{"x":44,"y":-123},{"x":-50,"y":-54},{"x":194,"y":1},{"x":43,"y":34},{"x":-32,"y":-11}],"type":"coastline"},{"arc":[{"x":24092,"y":14370},{"x":-22,"y":10},{"x":0,"y":-24},{"x":22,"y":14}],"type":"coastline"},{"arc":[{"x":10485,"y":39788},{"x":-12,"y":-33},{"x":38,"y":26},{"x":-26,"y":7}],"type":"coastline"},{"arc":[{"x":11081,"y":39473},{"x":2,"y":61},{"x":-104,"y":160},{"x":100,"y":170},{"x":-23,"y":27},{"x":-307,"y":19},{"x":58,"y":-22},{"x":-135,"y":-36},{"x":-154,"y":13},{"x":43,"y":-45},{"x":31,"y":26},{"x":15,"y":-37},{"x":-47,"y":-12},{"x":60,"y":-18},{"x":-187,"y":-44},{"x":13,"y":-109},{"x":42,"y":-10},{"x":10,"y":34},{"x":6,"y":-48},{"x":155,"y":-69},{"x":92,"y":-9},{"x":-71,"y":34},{"x":38,"y":11},{"x":33,"y":-40},{"x":176,"y":-58},{"x":154,"y":2}],"type":"coastline"},{"arc":[{"x":11163,"y":39914},{"x":-31,"y":-7},{"x":19,"y":-42},{"x":12,"y":49}],"type":"coastline"},{"arc":[{"x":11310,"y":39860},{"x":-119,"y":43},{"x":0,"y":-31},{"x":81,"y":-36},{"x":38,"y":24}],"type":"coastline"},{"arc":[{"x":11233,"y":39388},{"x":-17,"y":-20},{"x":44,"y":-8},{"x":81,"y":16},{"x":-108,"y":12}],"type":"coastline"},{"arc":[{"x":12238,"y":38604},{"x":-36,"y":-2},{"x":-27,"y":64},{"x":-49,"y":-81},{"x":38,"y":-113},{"x":35,"y":8},{"x":39,"y":124}],"type":"coastline"},{"arc":[{"x":14678,"y":40508},{"x":-62,"y":11},{"x":-177,"y":-39},{"x":132,"y":-5},{"x":107,"y":33}],"type":"coastline"},{"arc":[{"x":14967,"y":40235},{"x":-9,"y":24},{"x":-64,"y":5},{"x":73,"y":-29}],"type":"coastline"},{"arc":[{"x":16142,"y":39651},{"x":-60,"y":7},{"x":51,"y":-24},{"x":9,"y":17}],"type":"coastline"},{"arc":[{"x":16542,"y":38857},{"x":-70,"y":-68},{"x":64,"y":18},{"x":6,"y":50}],"type":"coastline"},{"arc":[{"x":17162,"y":38495},{"x":-34,"y":1},{"x":8,"y":24},{"x":-84,"y":-26},{"x":7,"y":32},{"x":-29,"y":-3},{"x":10,"y":-76},{"x":93,"y":10},{"x":29,"y":38}],"type":"coastline"},{"arc":[{"x":17661,"y":37725},{"x":-52,"y":7},{"x":-23,"y":22},{"x":-2,"y":-72},{"x":107,"y":29},{"x":-30,"y":14}],"type":"coastline"},{"arc":[{"x":17704,"y":37739},{"x":-35,"y":23},{"x":42,"y":56},{"x":-34,"y":8},{"x":47,"y":7},{"x":-61,"y":32},{"x":-106,"y":-70},{"x":64,"y":-57},{"x":108,"y":-14},{"x":-25,"y":15}],"type":"coastline"},{"arc":[{"x":17832,"y":39203},{"x":-53,"y":-6},{"x":-31,"y":35},{"x":-169,"y":9},{"x":-30,"y":47},{"x":-81,"y":-21},{"x":-64,"y":44},{"x":-60,"y":-9},{"x":11,"y":22},{"x":-207,"y":-2},{"x":-146,"y":31},{"x":-25,"y":19},{"x":79,"y":67},{"x":-89,"y":23},{"x":-87,"y":81},{"x":-337,"y":7},{"x":-123,"y":45},{"x":26,"y":22},{"x":-171,"y":24},{"x":-136,"y":-17},{"x":-62,"y":24},{"x":-3,"y":16},{"x":-97,"y":-1},{"x":-78,"y":70},{"x":29,"y":14},{"x":-53,"y":13},{"x":24,"y":33},{"x":-118,"y":34},{"x":26,"y":17},{"x":-109,"y":71},{"x":33,"y":19},{"x":-42,"y":27},{"x":-67,"y":19},{"x":22,"y":-29},{"x":-30,"y":-5},{"x":-116,"y":69},{"x":-95,"y":8},{"x":-6,"y":23},{"x":-215,"y":22},{"x":26,"y":18},{"x":-60,"y":28},{"x":113,"y":1},{"x":-105,"y":68},{"x":56,"y":8},{"x":-258,"y":17},{"x":-131,"y":89},{"x":15,"y":28},{"x":-260,"y":96},{"x":-24,"y":42},{"x":-154,"y":13},{"x":34,"y":5},{"x":-26,"y":17},{"x":-257,"y":1},{"x":-26,"y":-21},{"x":-135,"y":50},{"x":-195,"y":22},{"x":-431,"y":-74},{"x":-112,"y":5},{"x":-307,"y":-64},{"x":-246,"y":-159},{"x":-94,"y":6},{"x":-134,"y":-58},{"x":-119,"y":5},{"x":11,"y":-18},{"x":-157,"y":-61},{"x":-308,"y":-38},{"x":-90,"y":13},{"x":-65,"y":-60},{"x":-45,"y":-211},{"x":-157,"y":-110},{"x":-7,"y":-76},{"x":-44,"y":7},{"x":22,"y":24},{"x":-74,"y":-9},{"x":136,"y":-126},{"x":68,"y":11},{"x":-62,"y":-63},{"x":40,"y":-32},{"x":39,"y":54},{"x":65,"y":-23},{"x":-56,"y":-68},{"x":-6,"y":40},{"x":-32,"y":-6},{"x":-128,"y":-136},{"x":108,"y":-126},{"x":26,"y":-90},{"x":-33,"y":-42},{"x":63,"y":-34},{"x":47,"y":-89},{"x":146,"y":-74},{"x":202,"y":-8},{"x":179,"y":-98},{"x":-147,"y":91},{"x":140,"y":-76},{"x":23,"y":14},{"x":-41,"y":22},{"x":70,"y":3},{"x":-55,"y":-153},{"x":62,"y":41},{"x":126,"y":13},{"x":144,"y":-55},{"x":-222,"y":-42},{"x":-28,"y":-111},{"x":79,"y":22},{"x":-3,"y":52},{"x":171,"y":1},{"x":121,"y":58},{"x":81,"y":-15},{"x":40,"y":28},{"x":126,"y":-32},{"x":-104,"y":0},{"x":-35,"y":-39},{"x":-116,"y":-28},{"x":-56,"y":-75},{"x":-142,"y":-82},{"x":-61,"y":-16},{"x":14,"y":26},{"x":-59,"y":-6},{"x":92,"y":-104},{"x":37,"y":12},{"x":-40,"y":36},{"x":138,"y":-30},{"x":82,"y":-51},{"x":103,"y":-16},{"x":-7,"y":-45},{"x":62,"y":-33},{"x":48,"y":1},{"x":8,"y":27},{"x":50,"y":-18},{"x":-20,"y":-34},{"x":35,"y":10},{"x":65,"y":-37},{"x":-26,"y":-46},{"x":60,"y":-60},{"x":-18,"y":-66},{"x":124,"y":-128},{"x":-47,"y":-266},{"x":-132,"y":-207},{"x":0,"y":-155},{"x":-171,"y":-220},{"x":-203,"y":-82},{"x":-18,"y":-174},{"x":45,"y":-11},{"x":1,"y":-81},{"x":-25,"y":-162},{"x":-49,"y":-53},{"x":-54,"y":-1},{"x":-16,"y":-88},{"x":-150,"y":-110},{"x":27,"y":-178},{"x":166,"y":-176},{"x":167,"y":-4},{"x":-25,"y":46},{"x":81,"y":42},{"x":355,"y":-1},{"x":263,"y":-78},{"x":318,"y":-26},{"x":226,"y":-83},{"x":178,"y":-18},{"x":261,"y":-104},{"x":-18,"y":14},{"x":53,"y":4},{"x":-87,"y":9},{"x":83,"y":-2},{"x":-124,"y":24},{"x":10,"y":37},{"x":178,"y":-54},{"x":50,"y":11},{"x":-155,"y":26},{"x":57,"y":16},{"x":-101,"y":20},{"x":17,"y":26},{"x":107,"y":3},{"x":321,"y":-106},{"x":215,"y":46},{"x":198,"y":-15},{"x":166,"y":48},{"x":8,"y":16},{"x":-157,"y":-6},{"x":2,"y":26},{"x":146,"y":38},{"x":77,"y":101},{"x":217,"y":159},{"x":-39,"y":8},{"x":12,"y":107},{"x":68,"y":51},{"x":17,"y":79},{"x":70,"y":36},{"x":-22,"y":60},{"x":123,"y":187},{"x":237,"y":83},{"x":85,"y":67},{"x":24,"y":-24},{"x":200,"y":13},{"x":70,"y":66},{"x":42,"y":-7},{"x":49,"y":30},{"x":-56,"y":-3},{"x":-217,"y":72},{"x":136,"y":2},{"x":-52,"y":39},{"x":48,"y":-14},{"x":39,"y":19},{"x":39,"y":-54},{"x":24,"y":12},{"x":13,"y":-22},{"x":14,"y":35},{"x":55,"y":-18},{"x":5,"y":25},{"x":-60,"y":11},{"x":47,"y":6},{"x":-40,"y":38},{"x":-1,"y":83},{"x":16,"y":-62},{"x":118,"y":41},{"x":-43,"y":-30},{"x":106,"y":-14},{"x":12,"y":38},{"x":50,"y":-3},{"x":-60,"y":64},{"x":46,"y":-5},{"x":3,"y":-32},{"x":31,"y":21},{"x":4,"y":-26},{"x":39,"y":28},{"x":-43,"y":11},{"x":34,"y":0},{"x":-29,"y":33},{"x":91,"y":-36},{"x":53,"y":25},{"x":-11,"y":30},{"x":72,"y":2},{"x":-92,"y":4},{"x":53,"y":10},{"x":-54,"y":23},{"x":27,"y":15},{"x":135,"y":-2},{"x":-8,"y":25},{"x":-62,"y":8},{"x":68,"y":29},{"x":-68,"y":9},{"x":110,"y":32},{"x":-45,"y":67},{"x":-174,"y":99},{"x":-175,"y":-25},{"x":70,"y":12},{"x":-49,"y":20},{"x":77,"y":-11},{"x":35,"y":14},{"x":-31,"y":17},{"x":65,"y":10},{"x":-35,"y":69},{"x":-71,"y":6},{"x":87,"y":9},{"x":-80,"y":61},{"x":81,"y":-10},{"x":6,"y":41},{"x":18,"y":1},{"x":-21,"y":-28},{"x":46,"y":-21},{"x":19,"y":24},{"x":45,"y":-50},{"x":62,"y":13},{"x":14,"y":31},{"x":125,"y":19},{"x":20,"y":53},{"x":91,"y":-24},{"x":78,"y":46},{"x":-24,"y":22},{"x":68,"y":-14},{"x":-54,"y":39},{"x":54,"y":-9},{"x":6,"y":28},{"x":51,"y":-3},{"x":-20,"y":28},{"x":43,"y":4},{"x":-55,"y":19},{"x":30,"y":98},{"x":-51,"y":16},{"x":51,"y":6},{"x":5,"y":39},{"x":148,"y":-32},{"x":-11,"y":-47},{"x":48,"y":-41},{"x":41,"y":26},{"x":-63,"y":23},{"x":61,"y":-3},{"x":-30,"y":17},{"x":33,"y":7},{"x":-87,"y":40},{"x":40,"y":29},{"x":-120,"y":75},{"x":32,"y":47},{"x":-30,"y":-9},{"x":-5,"y":36},{"x":-44,"y":6},{"x":29,"y":70},{"x":-80,"y":55},{"x":122,"y":83},{"x":-100,"y":-30},{"x":-24,"y":10},{"x":55,"y":39},{"x":-90,"y":-3},{"x":11,"y":31},{"x":44,"y":9},{"x":11,"y":-22},{"x":62,"y":48},{"x":-82,"y":11},{"x":-19,"y":39},{"x":-109,"y":-46},{"x":13,"y":-17},{"x":-50,"y":23},{"x":5,"y":-19},{"x":-61,"y":-3},{"x":-14,"y":-19},{"x":58,"y":2},{"x":-62,"y":-55},{"x":-87,"y":0},{"x":11,"y":24},{"x":-120,"y":-21},{"x":-118,"y":-66},{"x":-44,"y":10},{"x":-229,"y":154},{"x":16,"y":34},{"x":-187,"y":145},{"x":-45,"y":100},{"x":-102,"y":32},{"x":-80,"y":88},{"x":17,"y":64},{"x":42,"y":39},{"x":208,"y":53},{"x":320,"y":46},{"x":276,"y":-23},{"x":139,"y":27},{"x":59,"y":-13},{"x":72,"y":27},{"x":-54,"y":16},{"x":43,"y":8},{"x":59,"y":-32},{"x":-16,"y":-18},{"x":117,"y":29},{"x":-8,"y":24},{"x":245,"y":15},{"x":54,"y":48}],"type":"coastline"},{"arc":[{"x":31172,"y":23937},{"x":-135,"y":25}],"type":"area"},{"arc":[{"x":31037,"y":23962},{"x":-67,"y":-9},{"x":-10,"y":-81},{"x":-28,"y":34},{"x":-32,"y":-31},{"x":-90,"y":6},{"x":-30,"y":-47}],"type":"area"},{"arc":[{"x":30780,"y":23834},{"x":-43,"y":-10},{"x":-5,"y":-116},{"x":-61,"y":-63},{"x":32,"y":-102}],"type":"area"},{"arc":[{"x":30703,"y":23543},{"x":38,"y":-158},{"x":89,"y":-27},{"x":-27,"y":-122},{"x":-44,"y":-22},{"x":21,"y":-66}],"type":"coastline"},{"arc":[{"x":30780,"y":23148},{"x":44,"y":-106}],"type":"area"},{"arc":[{"x":30824,"y":23042},{"x":46,"y":-7}],"type":"area"},{"arc":[{"x":30870,"y":23035},{"x":61,"y":3}],"type":"area"},{"arc":[{"x":30931,"y":23038},{"x":1,"y":48},{"x":-60,"y":26},{"x":69,"y":33},{"x":-42,"y":98},{"x":76,"y":122},{"x":-14,"y":64},{"x":-45,"y":29},{"x":6,"y":4},{"x":37,"y":4},{"x":102,"y":-40},{"x":104,"y":87},{"x":-12,"y":32},{"x":55,"y":12}],"type":"coastline"},{"arc":[{"x":31208,"y":23557},{"x":-43,"y":104},{"x":98,"y":40},{"x":-91,"y":236}],"type":"area"},{"arc":[{"x":28981,"y":27485},{"x":32,"y":-85},{"x":143,"y":-77}],"type":"area"},{"arc":[{"x":29156,"y":27323},{"x":14,"y":-4}],"type":"area"},{"arc":[{"x":29662,"y":27521},{"x":-157,"y":159},{"x":146,"y":102}],"type":"area"},{"arc":[{"x":29651,"y":27782},{"x":-267,"y":117},{"x":-36,"y":84},{"x":-59,"y":19},{"x":30,"y":-60},{"x":-48,"y":-49},{"x":-194,"y":-10},{"x":-74,"y":-40},{"x":48,"y":-15},{"x":-167,"y":-10}],"type":"coastline"},{"arc":[{"x":28884,"y":27818},{"x":-8,"y":-33},{"x":95,"y":-72},{"x":126,"y":40},{"x":74,"y":-47},{"x":-186,"y":-175}],"type":"area"},{"arc":[{"x":29527,"y":27347},{"x":31,"y":56},{"x":-87,"y":126},{"x":54,"y":23},{"x":84,"y":-62},{"x":53,"y":31}],"type":"area"},{"arc":[{"x":19701,"y":25591},{"x":-14,"y":-5},{"x":-31,"y":-7},{"x":-10,"y":-5},{"x":-6,"y":0},{"x":-2,"y":1},{"x":7,"y":12},{"x":-46,"y":-13},{"x":-28,"y":50},{"x":-61,"y":-1},{"x":-273,"y":-132},{"x":3,"y":-40},{"x":315,"y":-20},{"x":74,"y":-27}],"type":"coastline"},{"arc":[{"x":19629,"y":25404},{"x":28,"y":12},{"x":-52,"y":27},{"x":5,"y":47},{"x":110,"y":25},{"x":-19,"y":76}],"type":"area"},{"arc":[{"x":31654,"y":22606},{"x":-94,"y":46},{"x":-47,"y":-31}],"type":"area"},{"arc":[{"x":31513,"y":22621},{"x":8,"y":-4},{"x":2,"y":-15},{"x":-16,"y":-11},{"x":-27,"y":-7},{"x":-6,"y":-6},{"x":-13,"y":-5},{"x":-2,"y":-1},{"x":-5,"y":5},{"x":-13,"y":-3},{"x":-36,"y":19},{"x":-23,"y":-12}],"type":"coastline"},{"arc":[{"x":31382,"y":22581},{"x":55,"y":-113},{"x":85,"y":-5},{"x":-42,"y":-83},{"x":64,"y":8},{"x":9,"y":-61},{"x":108,"y":-69},{"x":-13,"y":-42},{"x":82,"y":-32}],"type":"area"},{"arc":[{"x":31730,"y":22184},{"x":65,"y":101}],"type":"coastline"},{"arc":[{"x":31795,"y":22285},{"x":-38,"y":55},{"x":36,"y":51}],"type":"area"},{"arc":[{"x":31793,"y":22391},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":31793,"y":22395},{"x":25,"y":94},{"x":-72,"y":97},{"x":-74,"y":-25},{"x":-18,"y":45}],"type":"area"},{"arc":[{"x":22871,"y":22315},{"x":-62,"y":-16},{"x":-184,"y":45},{"x":-339,"y":-93},{"x":-8,"y":-37},{"x":-605,"y":-8},{"x":-35,"y":-132}],"type":"coastline"},{"arc":[{"x":21638,"y":22074},{"x":14,"y":20},{"x":161,"y":-30},{"x":463,"y":8},{"x":106,"y":-33},{"x":107,"y":0},{"x":87,"y":-69},{"x":137,"y":17}],"type":"area"},{"arc":[{"x":22713,"y":21987},{"x":108,"y":65},{"x":-10,"y":70},{"x":105,"y":46}],"type":"area"},{"arc":[{"x":22916,"y":22168},{"x":77,"y":-2},{"x":36,"y":57},{"x":-158,"y":92}],"type":"area"},{"arc":[{"x":23594,"y":21904},{"x":-93,"y":-7},{"x":-182,"y":53},{"x":-77,"y":82},{"x":5,"y":-35},{"x":-75,"y":0},{"x":-90,"y":71},{"x":16,"y":66},{"x":-63,"y":16},{"x":-19,"y":-23},{"x":-100,"y":41}],"type":"area"},{"arc":[{"x":22713,"y":21987},{"x":32,"y":-130}],"type":"area"},{"arc":[{"x":22745,"y":21857},{"x":-51,"y":-57},{"x":20,"y":-267},{"x":-82,"y":-12},{"x":-257,"y":30}],"type":"area"},{"arc":[{"x":22375,"y":21551},{"x":-18,"y":-15},{"x":114,"y":-49},{"x":-25,"y":-116}],"type":"coastline"},{"arc":[{"x":22446,"y":21371},{"x":-50,"y":-25},{"x":50,"y":-50}],"type":"coastline"},{"arc":[{"x":22446,"y":21296},{"x":110,"y":-41},{"x":29,"y":-49}],"type":"coastline"},{"arc":[{"x":22585,"y":21206},{"x":146,"y":3},{"x":78,"y":34},{"x":92,"y":-23},{"x":108,"y":122},{"x":91,"y":-10},{"x":24,"y":34},{"x":67,"y":-17},{"x":86,"y":45},{"x":-75,"y":64},{"x":28,"y":25},{"x":91,"y":-5},{"x":-10,"y":48},{"x":78,"y":3},{"x":60,"y":43},{"x":-19,"y":58},{"x":65,"y":5},{"x":137,"y":155},{"x":-38,"y":114}],"type":"area"},{"arc":[{"x":25223,"y":32917},{"x":-29,"y":-27},{"x":79,"y":10},{"x":51,"y":-16},{"x":40,"y":7},{"x":-141,"y":26}],"type":"coastline"},{"arc":[{"x":25183,"y":33129},{"x":-152,"y":8},{"x":26,"y":-49},{"x":-80,"y":4}],"type":"area"},{"arc":[{"x":24977,"y":33092},{"x":-72,"y":7},{"x":158,"y":-45},{"x":221,"y":-6},{"x":-42,"y":-15},{"x":150,"y":-36},{"x":-40,"y":-37},{"x":-41,"y":2},{"x":9,"y":-31},{"x":108,"y":-38},{"x":121,"y":-1},{"x":-5,"y":-18},{"x":-44,"y":9},{"x":18,"y":-36},{"x":-61,"y":44},{"x":-97,"y":-29},{"x":-10,"y":14},{"x":-51,"y":-6},{"x":16,"y":14},{"x":-56,"y":7},{"x":-54,"y":-21},{"x":48,"y":-6},{"x":-97,"y":-15},{"x":1,"y":-30},{"x":76,"y":26},{"x":-45,"y":-37},{"x":111,"y":9},{"x":-137,"y":-15},{"x":10,"y":-29},{"x":-51,"y":-7},{"x":143,"y":5},{"x":-155,"y":-46},{"x":109,"y":-23}],"type":"coastline"},{"arc":[{"x":25218,"y":32702},{"x":190,"y":-27},{"x":51,"y":15},{"x":11,"y":-32},{"x":53,"y":9},{"x":34,"y":-28},{"x":146,"y":24},{"x":80,"y":-87},{"x":123,"y":51},{"x":21,"y":66},{"x":123,"y":-109},{"x":117,"y":50},{"x":61,"y":-14},{"x":-81,"y":34},{"x":-6,"y":43},{"x":34,"y":-16},{"x":-1,"y":19},{"x":-86,"y":35},{"x":-9,"y":26},{"x":59,"y":13},{"x":-211,"y":20},{"x":-23,"y":269},{"x":-57,"y":55},{"x":-8,"y":-32},{"x":-165,"y":-42},{"x":-13,"y":-62},{"x":-86,"y":-28},{"x":-139,"y":22},{"x":36,"y":10},{"x":-71,"y":23},{"x":32,"y":25},{"x":143,"y":16},{"x":-4,"y":41},{"x":-389,"y":38}],"type":"area"},{"arc":[{"x":30078,"y":25351},{"x":-65,"y":-2},{"x":-14,"y":-54},{"x":-153,"y":-27},{"x":-52,"y":-54},{"x":-114,"y":69},{"x":5,"y":-25},{"x":-11,"y":0},{"x":-10,"y":-32},{"x":40,"y":-30},{"x":3,"y":-4},{"x":1,"y":-4},{"x":-3,"y":-23},{"x":-26,"y":-28},{"x":0,"y":-26},{"x":-60,"y":-67},{"x":-60,"y":15},{"x":-29,"y":-36},{"x":-14,"y":-78},{"x":72,"y":-88},{"x":-43,"y":-110},{"x":6,"y":-39},{"x":-18,"y":-16},{"x":4,"y":-29}],"type":"coastline"},{"arc":[{"x":29537,"y":24663},{"x":91,"y":11},{"x":129,"y":-81}],"type":"area"},{"arc":[{"x":29757,"y":24593},{"x":3,"y":10},{"x":29,"y":13},{"x":80,"y":-13},{"x":81,"y":68},{"x":143,"y":-77},{"x":94,"y":41}],"type":"coastline"},{"arc":[{"x":30187,"y":24635},{"x":-30,"y":42},{"x":-57,"y":-18},{"x":-43,"y":306},{"x":119,"y":197},{"x":-98,"y":189}],"type":"area"},{"arc":[{"x":24999,"y":13001},{"x":-46,"y":-23},{"x":15,"y":-59},{"x":72,"y":82},{"x":-41,"y":0}],"type":"coastline"},{"arc":[{"x":25350,"y":12902},{"x":-54,"y":-2},{"x":-69,"y":-50},{"x":123,"y":52}],"type":"coastline"},{"arc":[{"x":25360,"y":12860},{"x":-10,"y":21},{"x":23,"y":-40},{"x":-13,"y":19}],"type":"coastline"},{"arc":[{"x":25564,"y":12724},{"x":-182,"y":57},{"x":70,"y":-47},{"x":-13,"y":20},{"x":125,"y":-30}],"type":"coastline"},{"arc":[{"x":25668,"y":12428},{"x":-2,"y":24},{"x":-86,"y":-2},{"x":1,"y":-26},{"x":23,"y":25},{"x":-14,"y":-18},{"x":70,"y":-27},{"x":46,"y":33},{"x":-38,"y":-9}],"type":"coastline"},{"arc":[{"x":25687,"y":12724},{"x":-17,"y":-24},{"x":30,"y":12},{"x":95,"y":-39},{"x":-108,"y":51}],"type":"coastline"},{"arc":[{"x":25900,"y":12384},{"x":-149,"y":47},{"x":-51,"y":-37},{"x":79,"y":-51},{"x":-5,"y":30},{"x":126,"y":11}],"type":"coastline"},{"arc":[{"x":25990,"y":12555},{"x":-97,"y":71},{"x":-110,"y":-5},{"x":38,"y":-22},{"x":71,"y":21},{"x":67,"y":-75},{"x":31,"y":10}],"type":"coastline"},{"arc":[{"x":26252,"y":12334},{"x":-15,"y":75},{"x":-38,"y":-95},{"x":47,"y":-38},{"x":-30,"y":34},{"x":36,"y":24}],"type":"coastline"},{"arc":[{"x":26296,"y":12425},{"x":-6,"y":27},{"x":-86,"y":61},{"x":-142,"y":-22},{"x":33,"y":-22},{"x":120,"y":30},{"x":67,"y":-45},{"x":7,"y":-52},{"x":7,"y":23}],"type":"coastline"},{"arc":[{"x":30331,"y":24189},{"x":5,"y":43},{"x":-118,"y":-32},{"x":-74,"y":62},{"x":-7,"y":-46},{"x":-80,"y":32},{"x":-26,"y":-37}],"type":"area"},{"arc":[{"x":30031,"y":24211},{"x":-6,"y":-35},{"x":-44,"y":19},{"x":7,"y":-30},{"x":-78,"y":-45},{"x":-98,"y":-2}],"type":"coastline"},{"arc":[{"x":29812,"y":24118},{"x":75,"y":-95}],"type":"area"},{"arc":[{"x":29887,"y":24023},{"x":11,"y":-9}],"type":"coastline"},{"arc":[{"x":29898,"y":24014},{"x":411,"y":-225},{"x":95,"y":8},{"x":-43,"y":64},{"x":64,"y":74},{"x":-50,"y":110},{"x":21,"y":49},{"x":-65,"y":95}],"type":"area"},{"arc":[{"x":32867,"y":25299},{"x":-23,"y":19},{"x":11,"y":37},{"x":-35,"y":24},{"x":20,"y":27},{"x":-2,"y":14},{"x":-8,"y":9},{"x":-6,"y":19},{"x":-1,"y":2},{"x":-2,"y":2},{"x":-3,"y":3},{"x":-2,"y":1},{"x":-2,"y":0},{"x":-27,"y":-12},{"x":-8,"y":2},{"x":-5,"y":6},{"x":-9,"y":6},{"x":-2,"y":3},{"x":40,"y":87},{"x":-58,"y":83},{"x":-183,"y":-14},{"x":-165,"y":128},{"x":-58,"y":-9},{"x":-18,"y":85},{"x":-62,"y":33},{"x":-77,"y":-63},{"x":23,"y":-95},{"x":-42,"y":-21},{"x":-205,"y":63},{"x":-9,"y":-103},{"x":-186,"y":-46},{"x":56,"y":-47},{"x":-26,"y":-101},{"x":53,"y":-19},{"x":5,"y":-5},{"x":1,"y":-5},{"x":0,"y":-2},{"x":-1,"y":-2},{"x":-3,"y":-3},{"x":-10,"y":-5},{"x":-8,"y":-22},{"x":-29,"y":-9},{"x":34,"y":-15},{"x":-6,"y":-33},{"x":11,"y":-3},{"x":6,"y":-6},{"x":8,"y":-2},{"x":3,"y":-4},{"x":-9,"y":-46},{"x":-33,"y":-14},{"x":66,"y":-69},{"x":-2,"y":-36},{"x":12,"y":-23},{"x":1,"y":-26},{"x":10,"y":-5},{"x":1,"y":-28},{"x":10,"y":-12},{"x":1,"y":-3},{"x":5,"y":-35},{"x":-1,"y":-50},{"x":6,"y":-21},{"x":-2,"y":-11},{"x":-7,"y":-11},{"x":-6,"y":-34},{"x":2,"y":-10},{"x":-4,"y":-33},{"x":-35,"y":-15},{"x":-30,"y":-32},{"x":10,"y":-43},{"x":-3,"y":-2},{"x":-3,"y":-2},{"x":-1,"y":0},{"x":-15,"y":4},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":31827,"y":24747},{"x":32,"y":-9},{"x":95,"y":12},{"x":46,"y":-57},{"x":102,"y":92},{"x":269,"y":-53}],"type":"area"},{"arc":[{"x":32371,"y":24732},{"x":5,"y":83},{"x":-16,"y":25},{"x":24,"y":36},{"x":-7,"y":4},{"x":2,"y":13},{"x":27,"y":-3},{"x":9,"y":4},{"x":37,"y":78},{"x":-34,"y":7},{"x":-4,"y":16},{"x":4,"y":5},{"x":2,"y":9},{"x":37,"y":-29},{"x":124,"y":31},{"x":90,"y":124},{"x":12,"y":-43},{"x":77,"y":18}],"type":"coastline"},{"arc":[{"x":32760,"y":25110},{"x":29,"y":121},{"x":78,"y":68}],"type":"area"},{"arc":[{"x":24397,"y":11145},{"x":-40,"y":-7},{"x":16,"y":32},{"x":-37,"y":2},{"x":-136,"y":-25},{"x":-178,"y":5},{"x":-210,"y":-86},{"x":3,"y":-34},{"x":432,"y":9}],"type":"coastline"},{"arc":[{"x":24247,"y":11041},{"x":150,"y":104}],"type":"area"},{"arc":[{"x":17289,"y":14292},{"x":-6,"y":36},{"x":-88,"y":34},{"x":18,"y":96},{"x":-75,"y":70},{"x":-290,"y":24},{"x":-3,"y":-38},{"x":-85,"y":41},{"x":-177,"y":10},{"x":-6,"y":222},{"x":-213,"y":-7},{"x":-67,"y":72},{"x":-153,"y":41},{"x":-341,"y":-80},{"x":-56,"y":32},{"x":-41,"y":-36}],"type":"coastline"},{"arc":[{"x":15706,"y":14809},{"x":77,"y":-2},{"x":120,"y":-111},{"x":-81,"y":-324},{"x":-204,"y":-63},{"x":-115,"y":-1},{"x":-263,"y":-45}],"type":"area"},{"arc":[{"x":15240,"y":14263},{"x":23,"y":-16},{"x":27,"y":-2},{"x":2,"y":-1},{"x":1,"y":-2},{"x":1,"y":-5},{"x":0,"y":-94},{"x":-12,"y":-13},{"x":11,"y":-23},{"x":-2,"y":-2},{"x":-13,"y":-2},{"x":-7,"y":-5},{"x":-30,"y":-5},{"x":-6,"y":-5},{"x":-41,"y":-9},{"x":-23,"y":-11},{"x":-74,"y":-9},{"x":155,"y":-48}],"type":"coastline"},{"arc":[{"x":15252,"y":14011},{"x":15,"y":-124},{"x":74,"y":-58},{"x":-65,"y":-11},{"x":-34,"y":-52},{"x":-134,"y":-55},{"x":1,"y":-85},{"x":345,"y":-39},{"x":194,"y":-67},{"x":71,"y":-4},{"x":42,"y":31},{"x":46,"y":-20},{"x":63,"y":31},{"x":110,"y":-66},{"x":204,"y":-11},{"x":14,"y":-27},{"x":136,"y":-26},{"x":19,"y":-18},{"x":215,"y":101},{"x":30,"y":-42},{"x":128,"y":-30},{"x":89,"y":34},{"x":97,"y":-27},{"x":137,"y":62},{"x":118,"y":-29},{"x":180,"y":14},{"x":82,"y":37},{"x":349,"y":-109},{"x":-37,"y":117},{"x":271,"y":240},{"x":52,"y":149},{"x":-360,"y":3},{"x":-159,"y":46},{"x":-108,"y":77},{"x":-38,"y":152},{"x":-110,"y":87}],"type":"coastline"},{"arc":[{"x":14894,"y":16380},{"x":-42,"y":0},{"x":11,"y":-26},{"x":31,"y":26}],"type":"coastline"},{"arc":[{"x":15045,"y":16505},{"x":-15,"y":15},{"x":-12,"y":-30},{"x":27,"y":15}],"type":"coastline"},{"arc":[{"x":17230,"y":17149},{"x":-64,"y":-1},{"x":48,"y":-16},{"x":16,"y":17}],"type":"coastline"},{"arc":[{"x":19606,"y":16467},{"x":-54,"y":-10},{"x":80,"y":14},{"x":-26,"y":-4}],"type":"coastline"},{"arc":[{"x":20115,"y":15652},{"x":-105,"y":-7},{"x":-100,"y":-79},{"x":181,"y":45},{"x":24,"y":41}],"type":"coastline"},{"arc":[{"x":20211,"y":15789},{"x":-35,"y":209},{"x":-174,"y":-31},{"x":-18,"y":-35},{"x":-62,"y":10},{"x":28,"y":-19},{"x":-35,"y":18},{"x":13,"y":-43},{"x":-44,"y":4},{"x":23,"y":-27},{"x":-37,"y":2},{"x":34,"y":-20},{"x":-50,"y":-2},{"x":31,"y":-23},{"x":-53,"y":-8},{"x":18,"y":-51},{"x":57,"y":-4},{"x":-72,"y":-5},{"x":7,"y":-37},{"x":98,"y":-25},{"x":56,"y":2},{"x":-21,"y":28},{"x":32,"y":10},{"x":5,"y":-38},{"x":105,"y":7},{"x":-29,"y":23},{"x":69,"y":-19},{"x":60,"y":41},{"x":-6,"y":33}],"type":"coastline"},{"arc":[{"x":20172,"y":15692},{"x":31,"y":-17},{"x":48,"y":32},{"x":-34,"y":17},{"x":-45,"y":-32}],"type":"coastline"},{"arc":[{"x":20256,"y":15863},{"x":-42,"y":6},{"x":3,"y":-48},{"x":39,"y":42}],"type":"coastline"},{"arc":[{"x":20308,"y":15858},{"x":-79,"y":-58},{"x":37,"y":-46},{"x":42,"y":104}],"type":"coastline"},{"arc":[{"x":20372,"y":15797},{"x":-47,"y":-33},{"x":47,"y":5},{"x":0,"y":28}],"type":"coastline"},{"arc":[{"x":20677,"y":15013},{"x":-24,"y":56},{"x":12,"y":12},{"x":37,"y":0},{"x":46,"y":-28},{"x":32,"y":17},{"x":24,"y":2},{"x":4,"y":0},{"x":2,"y":3},{"x":-1,"y":3},{"x":-3,"y":2},{"x":-10,"y":7},{"x":-2,"y":2},{"x":-5,"y":10},{"x":-9,"y":6},{"x":47,"y":93},{"x":-36,"y":9},{"x":-3,"y":5},{"x":7,"y":10},{"x":0,"y":2},{"x":-2,"y":3},{"x":-2,"y":2},{"x":-10,"y":1},{"x":-6,"y":-3},{"x":-12,"y":2},{"x":-1,"y":3},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":20764,"y":15239},{"x":-6,"y":9},{"x":-19,"y":8},{"x":-24,"y":42},{"x":58,"y":45},{"x":-39,"y":103},{"x":415,"y":150}],"type":"area"},{"arc":[{"x":21149,"y":15596},{"x":44,"y":13},{"x":-69,"y":17},{"x":115,"y":-10},{"x":-62,"y":36},{"x":-471,"y":54},{"x":-78,"y":100},{"x":-93,"y":9},{"x":-20,"y":-33},{"x":-10,"y":32},{"x":-226,"y":-110},{"x":-56,"y":-65},{"x":-284,"y":-74},{"x":-58,"y":-94},{"x":18,"y":52},{"x":-38,"y":10},{"x":174,"y":165},{"x":-48,"y":-14},{"x":-137,"y":37},{"x":-49,"y":-23},{"x":32,"y":28},{"x":-59,"y":24},{"x":56,"y":53},{"x":-63,"y":20},{"x":46,"y":-4},{"x":-25,"y":31},{"x":53,"y":21},{"x":-201,"y":-24},{"x":241,"y":79},{"x":-56,"y":-8},{"x":105,"y":46},{"x":-63,"y":27},{"x":43,"y":13},{"x":2,"y":-21},{"x":40,"y":2},{"x":21,"y":28},{"x":105,"y":17},{"x":36,"y":37},{"x":-43,"y":9},{"x":40,"y":18},{"x":-53,"y":23},{"x":49,"y":-8},{"x":0,"y":20},{"x":-61,"y":29},{"x":38,"y":11},{"x":-46,"y":2},{"x":43,"y":15},{"x":-52,"y":10},{"x":29,"y":16},{"x":-46,"y":-16},{"x":33,"y":39},{"x":-39,"y":-6},{"x":-11,"y":27},{"x":42,"y":6},{"x":-62,"y":-7},{"x":28,"y":34},{"x":-44,"y":4},{"x":42,"y":10},{"x":-59,"y":7},{"x":43,"y":13},{"x":-52,"y":3},{"x":16,"y":32},{"x":-56,"y":-6},{"x":52,"y":16},{"x":-97,"y":1},{"x":59,"y":19},{"x":-25,"y":24},{"x":38,"y":13},{"x":-52,"y":-9},{"x":18,"y":14},{"x":-53,"y":1},{"x":15,"y":26},{"x":-54,"y":13},{"x":-66,"y":-40},{"x":-34,"y":20},{"x":64,"y":24},{"x":-37,"y":12},{"x":-64,"y":-36},{"x":13,"y":14},{"x":-172,"y":-31},{"x":79,"y":44},{"x":106,"y":17},{"x":14,"y":31},{"x":-88,"y":-38},{"x":-14,"y":18},{"x":73,"y":34},{"x":-1,"y":57},{"x":48,"y":3},{"x":-152,"y":266},{"x":31,"y":-2},{"x":6,"y":155},{"x":-191,"y":183},{"x":-273,"y":157},{"x":-71,"y":216},{"x":-428,"y":60},{"x":33,"y":11},{"x":-213,"y":1},{"x":-284,"y":-60},{"x":-108,"y":-47},{"x":14,"y":-33},{"x":-24,"y":20},{"x":-176,"y":-74},{"x":-141,"y":-88},{"x":24,"y":-17},{"x":-37,"y":15},{"x":-39,"y":-39},{"x":-26,"y":13},{"x":-262,"y":-83},{"x":-86,"y":-56},{"x":101,"y":-22},{"x":-59,"y":-14},{"x":22,"y":-14},{"x":-26,"y":8},{"x":-4,"y":16},{"x":-119,"y":-41},{"x":-98,"y":10},{"x":22,"y":-21},{"x":-98,"y":14},{"x":62,"y":13},{"x":-175,"y":-17},{"x":-265,"y":25},{"x":-294,"y":-42},{"x":-116,"y":9},{"x":-134,"y":-64},{"x":-299,"y":-15},{"x":-368,"y":-142},{"x":-174,"y":-5},{"x":-117,"y":-118},{"x":-101,"y":-6},{"x":2,"y":-124},{"x":69,"y":-5},{"x":-18,"y":-24},{"x":-56,"y":6},{"x":-21,"y":-95},{"x":18,"y":49},{"x":26,"y":-30},{"x":-34,"y":-98},{"x":-38,"y":-6},{"x":-19,"y":25},{"x":-72,"y":-111},{"x":-48,"y":-2},{"x":17,"y":-53},{"x":-60,"y":-51},{"x":34,"y":-12},{"x":-34,"y":1},{"x":-228,"y":-204},{"x":-5,"y":20},{"x":-90,"y":-39},{"x":40,"y":10},{"x":-17,"y":-25},{"x":29,"y":1},{"x":-56,"y":-18},{"x":28,"y":-33},{"x":-49,"y":47},{"x":-67,"y":-50},{"x":1,"y":25},{"x":-72,"y":-4},{"x":26,"y":-24},{"x":-244,"y":39},{"x":-300,"y":-35},{"x":32,"y":-14},{"x":-41,"y":15},{"x":-206,"y":-129},{"x":-360,"y":-110},{"x":-253,"y":-165},{"x":77,"y":-1},{"x":82,"y":102},{"x":86,"y":10},{"x":-12,"y":23},{"x":54,"y":-1},{"x":37,"y":35},{"x":82,"y":-4},{"x":-19,"y":20},{"x":59,"y":-6},{"x":-55,"y":-39},{"x":95,"y":-43},{"x":-49,"y":-5},{"x":-28,"y":29},{"x":-97,"y":-22},{"x":31,"y":-13},{"x":-98,"y":-8},{"x":-57,"y":-63},{"x":-114,"y":-35},{"x":-73,"y":19},{"x":-211,"y":-64},{"x":-143,"y":-92},{"x":128,"y":-19},{"x":16,"y":3},{"x":7,"y":3},{"x":21,"y":19},{"x":19,"y":3},{"x":38,"y":23},{"x":150,"y":-78},{"x":182,"y":-181},{"x":89,"y":-42},{"x":-53,"y":-51},{"x":64,"y":0},{"x":152,"y":-95}],"type":"coastline"},{"arc":[{"x":13466,"y":14975},{"x":-38,"y":-55},{"x":25,"y":-45}],"type":"coastline"},{"arc":[{"x":14489,"y":15241},{"x":96,"y":21},{"x":178,"y":20},{"x":47,"y":-8},{"x":22,"y":10},{"x":55,"y":-47},{"x":-42,"y":-89},{"x":58,"y":-9}],"type":"coastline"},{"arc":[{"x":14903,"y":15139},{"x":206,"y":-26}],"type":"coastline"},{"arc":[{"x":15109,"y":15113},{"x":119,"y":-25},{"x":48,"y":-68},{"x":-49,"y":-53},{"x":34,"y":-120},{"x":74,"y":-11}],"type":"coastline"},{"arc":[{"x":15335,"y":14836},{"x":193,"y":14},{"x":11,"y":-12},{"x":17,"y":7},{"x":8,"y":-10},{"x":12,"y":10},{"x":16,"y":-7},{"x":-5,"y":-8},{"x":58,"y":-1},{"x":43,"y":-21},{"x":18,"y":1},{"x":41,"y":36},{"x":56,"y":-32},{"x":341,"y":80},{"x":153,"y":-41},{"x":67,"y":-72},{"x":213,"y":7},{"x":6,"y":-222},{"x":177,"y":-10},{"x":85,"y":-41},{"x":3,"y":38},{"x":290,"y":-24},{"x":75,"y":-70},{"x":-18,"y":-96},{"x":88,"y":-34},{"x":6,"y":-36}],"type":"coastline"},{"arc":[{"x":17289,"y":14292},{"x":110,"y":-87},{"x":38,"y":-152},{"x":108,"y":-77},{"x":159,"y":-46},{"x":360,"y":-3},{"x":-52,"y":-149},{"x":-271,"y":-240},{"x":37,"y":-117}],"type":"coastline"},{"arc":[{"x":17778,"y":13421},{"x":-14,"y":-129},{"x":356,"y":14},{"x":-127,"y":-94},{"x":-3,"y":-109},{"x":107,"y":-15},{"x":28,"y":-109},{"x":95,"y":29},{"x":324,"y":-127},{"x":42,"y":4},{"x":12,"y":33},{"x":94,"y":-5},{"x":92,"y":74},{"x":90,"y":-11},{"x":212,"y":39},{"x":138,"y":123},{"x":30,"y":114},{"x":52,"y":22},{"x":3,"y":55},{"x":-45,"y":16},{"x":24,"y":29}],"type":"area"},{"arc":[{"x":19288,"y":13374},{"x":687,"y":69},{"x":148,"y":-27},{"x":82,"y":-55},{"x":168,"y":2},{"x":14,"y":111},{"x":87,"y":-18},{"x":5,"y":-68},{"x":146,"y":-1},{"x":3,"y":206},{"x":66,"y":-4},{"x":-62,"y":32},{"x":90,"y":62},{"x":-97,"y":37},{"x":-120,"y":4},{"x":11,"y":25}],"type":"area"},{"arc":[{"x":20516,"y":13749},{"x":-108,"y":72},{"x":54,"y":84},{"x":-75,"y":9},{"x":107,"y":47},{"x":86,"y":88},{"x":-32,"y":7},{"x":133,"y":43},{"x":43,"y":71},{"x":59,"y":6},{"x":13,"y":-83},{"x":253,"y":-19},{"x":155,"y":-71},{"x":-39,"y":78},{"x":-51,"y":13},{"x":17,"y":84},{"x":-90,"y":56},{"x":107,"y":17},{"x":113,"y":215},{"x":93,"y":47},{"x":57,"y":-18}],"type":"area"},{"arc":[{"x":21411,"y":14495},{"x":9,"y":74},{"x":-42,"y":18},{"x":-119,"y":-21},{"x":-33,"y":57},{"x":-99,"y":19},{"x":-81,"y":-40},{"x":-199,"y":-17},{"x":-97,"y":31},{"x":-91,"y":-2},{"x":-106,"y":61},{"x":-45,"y":54},{"x":18,"y":36},{"x":75,"y":24},{"x":-19,"y":36},{"x":103,"y":86},{"x":-8,"y":102}],"type":"area"},{"arc":[{"x":23200,"y":14655},{"x":-15,"y":-24},{"x":52,"y":-3},{"x":-37,"y":27}],"type":"coastline"},{"arc":[{"x":21345,"y":35873},{"x":-134,"y":24},{"x":17,"y":-30},{"x":97,"y":-9}],"type":"area"},{"arc":[{"x":21325,"y":35858},{"x":20,"y":15}],"type":"coastline"},{"arc":[{"x":21275,"y":35733},{"x":101,"y":134},{"x":-36,"y":-14}],"type":"coastline"},{"arc":[{"x":21340,"y":35853},{"x":-36,"y":-30},{"x":-75,"y":13},{"x":-85,"y":-26},{"x":131,"y":-77}],"type":"area"},{"arc":[{"x":26484,"y":33015},{"x":-51,"y":-4},{"x":-54,"y":59},{"x":-91,"y":-2},{"x":-19,"y":-23},{"x":21,"y":-186},{"x":-42,"y":-90},{"x":53,"y":-92},{"x":46,"y":-15},{"x":37,"y":20}],"type":"area"},{"arc":[{"x":26384,"y":32682},{"x":164,"y":68},{"x":67,"y":75},{"x":-25,"y":63},{"x":-36,"y":-14},{"x":4,"y":99},{"x":-34,"y":42},{"x":-40,"y":0}],"type":"area"},{"arc":[{"x":16239,"y":24948},{"x":-392,"y":108},{"x":-125,"y":128},{"x":-91,"y":8},{"x":-3,"y":52},{"x":-126,"y":-4},{"x":-108,"y":40},{"x":-56,"y":127},{"x":-50,"y":0},{"x":-11,"y":24},{"x":-26,"y":14}],"type":"area"},{"arc":[{"x":15251,"y":25445},{"x":1,"y":-16},{"x":-9,"y":-22},{"x":-20,"y":-10},{"x":-16,"y":1},{"x":-13,"y":-4},{"x":-3,"y":-2},{"x":1,"y":-8},{"x":-10,"y":-4},{"x":-21,"y":-36},{"x":-4,"y":-27},{"x":-139,"y":-66},{"x":-68,"y":-76},{"x":-167,"y":-35},{"x":-82,"y":-53},{"x":-26,"y":-65},{"x":-217,"y":-50},{"x":-25,"y":-97},{"x":122,"y":-146},{"x":-4,"y":-52},{"x":-204,"y":-59},{"x":-148,"y":-107},{"x":-6,"y":-119},{"x":89,"y":-10},{"x":82,"y":29},{"x":149,"y":-23},{"x":161,"y":-82}],"type":"coastline"},{"arc":[{"x":14674,"y":24306},{"x":619,"y":0},{"x":8,"y":122},{"x":820,"y":-1},{"x":72,"y":282},{"x":-108,"y":38},{"x":117,"y":90},{"x":-21,"y":26},{"x":58,"y":85}],"type":"area"},{"arc":[{"x":22696,"y":24656},{"x":-6,"y":0},{"x":-46,"y":18},{"x":-55,"y":34},{"x":-130,"y":43},{"x":-132,"y":-1},{"x":-58,"y":-24},{"x":-10,"y":16},{"x":-43,"y":-10},{"x":-11,"y":1},{"x":-5,"y":1},{"x":-2,"y":3},{"x":0,"y":2},{"x":7,"y":6},{"x":-7,"y":16},{"x":4,"y":10},{"x":-9,"y":37},{"x":2,"y":13},{"x":-84,"y":-8},{"x":-16,"y":22},{"x":6,"y":12},{"x":-15,"y":10},{"x":3,"y":12},{"x":-3,"y":12},{"x":-4,"y":4},{"x":-2,"y":7},{"x":-3,"y":4},{"x":-18,"y":10},{"x":-20,"y":4},{"x":-23,"y":13},{"x":-2,"y":4},{"x":1,"y":10},{"x":-6,"y":5},{"x":-6,"y":3},{"x":-17,"y":4},{"x":-23,"y":1},{"x":-8,"y":-3},{"x":-10,"y":-11},{"x":-17,"y":3},{"x":-19,"y":15},{"x":-16,"y":4},{"x":-16,"y":13},{"x":-63,"y":70},{"x":-77,"y":43},{"x":-131,"y":5},{"x":-68,"y":85},{"x":-157,"y":39},{"x":30,"y":-45},{"x":-35,"y":-69},{"x":74,"y":-117},{"x":-78,"y":-29},{"x":-25,"y":-70},{"x":46,"y":-40},{"x":-120,"y":-120},{"x":52,"y":-62},{"x":-156,"y":-73},{"x":65,"y":-209},{"x":80,"y":-29},{"x":73,"y":-63},{"x":5,"y":-6},{"x":1,"y":-3},{"x":3,"y":-4},{"x":4,"y":-18},{"x":-4,"y":-17},{"x":-2,"y":-3},{"x":-9,"y":-4},{"x":-17,"y":-16},{"x":-14,"y":-5},{"x":-1,"y":-8},{"x":-1,"y":-2},{"x":-7,"y":-4},{"x":-4,"y":-2},{"x":-6,"y":-1},{"x":-9,"y":-2},{"x":-5,"y":-3},{"x":-9,"y":-1},{"x":-46,"y":-22},{"x":-36,"y":-9},{"x":-16,"y":-26},{"x":-63,"y":13},{"x":-76,"y":-7},{"x":-52,"y":4}],"type":"coastline"},{"arc":[{"x":21023,"y":24141},{"x":52,"y":-142},{"x":-41,"y":-99},{"x":-290,"y":-54}],"type":"area"},{"arc":[{"x":20744,"y":23846},{"x":158,"y":-17},{"x":184,"y":-108},{"x":60,"y":-17},{"x":8,"y":20},{"x":126,"y":-58},{"x":150,"y":-24},{"x":130,"y":12},{"x":39,"y":-28},{"x":63,"y":47},{"x":271,"y":86}],"type":"area"},{"arc":[{"x":21933,"y":23759},{"x":-8,"y":54},{"x":86,"y":76},{"x":-74,"y":31},{"x":99,"y":101},{"x":15,"y":116},{"x":141,"y":65},{"x":50,"y":-28},{"x":54,"y":187},{"x":260,"y":156},{"x":77,"y":1},{"x":81,"y":88},{"x":-18,"y":50}],"type":"area"},{"arc":[{"x":30315,"y":13762},{"x":-39,"y":10},{"x":-4,"y":-26},{"x":43,"y":16}],"type":"coastline"},{"arc":[{"x":30479,"y":12939},{"x":-18,"y":-52},{"x":60,"y":61},{"x":-42,"y":-9}],"type":"coastline"},{"arc":[{"x":30811,"y":14524},{"x":-44,"y":23},{"x":-137,"y":-35},{"x":20,"y":21},{"x":-38,"y":-25},{"x":-38,"y":-59},{"x":25,"y":47},{"x":-79,"y":-50},{"x":-5,"y":50},{"x":70,"y":40},{"x":-9,"y":-46},{"x":84,"y":61},{"x":-39,"y":-1},{"x":3,"y":58},{"x":-53,"y":1},{"x":-66,"y":-72},{"x":-21,"y":-108},{"x":107,"y":-33},{"x":220,"y":128}],"type":"coastline"},{"arc":[{"x":30772,"y":14095},{"x":-84,"y":27},{"x":-1,"y":223},{"x":-47,"y":-73},{"x":-48,"y":15},{"x":-17,"y":-36},{"x":26,"y":-34},{"x":57,"y":8},{"x":-40,"y":-36},{"x":61,"y":-106},{"x":51,"y":7},{"x":9,"y":-42},{"x":87,"y":51},{"x":-54,"y":-4}],"type":"coastline"},{"arc":[{"x":30361,"y":12797},{"x":96,"y":145},{"x":140,"y":44},{"x":107,"y":117},{"x":32,"y":40},{"x":-8,"y":18},{"x":25,"y":50},{"x":60,"y":94},{"x":346,"y":256},{"x":161,"y":348},{"x":-69,"y":154},{"x":-44,"y":15},{"x":27,"y":-47},{"x":-87,"y":41},{"x":-108,"y":-129},{"x":47,"y":-75},{"x":-51,"y":-115},{"x":-20,"y":125},{"x":-64,"y":22},{"x":51,"y":74},{"x":-25,"y":42},{"x":-146,"y":-83},{"x":-2,"y":69},{"x":-169,"y":11},{"x":-45,"y":111},{"x":-22,"y":-37},{"x":-42,"y":41},{"x":-16,"y":132},{"x":-30,"y":-14},{"x":-7,"y":36},{"x":63,"y":71},{"x":-44,"y":4},{"x":-42,"y":78},{"x":-34,"y":-28},{"x":-19,"y":60},{"x":-124,"y":-226},{"x":-1,"y":-101},{"x":-62,"y":3},{"x":16,"y":-36},{"x":42,"y":5},{"x":-50,"y":-22},{"x":20,"y":-28},{"x":-67,"y":4},{"x":17,"y":-19},{"x":-141,"y":-73},{"x":6,"y":-41},{"x":-61,"y":-13},{"x":75,"y":-47},{"x":-14,"y":-32},{"x":82,"y":-11},{"x":108,"y":44},{"x":-34,"y":-40},{"x":184,"y":211},{"x":20,"y":-4},{"x":-81,"y":39},{"x":53,"y":5},{"x":32,"y":92},{"x":12,"y":-148},{"x":-20,"y":-43},{"x":99,"y":81},{"x":28,"y":-10},{"x":-35,"y":-24},{"x":38,"y":1},{"x":42,"y":-26},{"x":-51,"y":21},{"x":-56,"y":-24},{"x":-83,"y":-119},{"x":15,"y":-47},{"x":34,"y":16},{"x":-86,"y":-53},{"x":22,"y":-89}],"type":"coastline"},{"arc":[{"x":30401,"y":13713},{"x":20,"y":-36},{"x":74,"y":5},{"x":26,"y":-46},{"x":308,"y":-1},{"x":64,"y":-59},{"x":-39,"y":-73},{"x":60,"y":-39},{"x":-500,"y":-203},{"x":12,"y":-54},{"x":-62,"y":-20},{"x":-3,"y":-390}],"type":"area"},{"arc":[{"x":31414,"y":6766},{"x":-43,"y":23},{"x":70,"y":-63},{"x":-27,"y":40}],"type":"coastline"},{"arc":[{"x":31453,"y":6473},{"x":-59,"y":13},{"x":32,"y":-41},{"x":27,"y":28}],"type":"coastline"},{"arc":[{"x":31474,"y":14083},{"x":-77,"y":194},{"x":-102,"y":106},{"x":-18,"y":-75},{"x":71,"y":-159},{"x":108,"y":-112},{"x":18,"y":46}],"type":"coastline"},{"arc":[{"x":31573,"y":6661},{"x":-59,"y":7},{"x":46,"y":-32},{"x":13,"y":25}],"type":"coastline"},{"arc":[{"x":31680,"y":6334},{"x":-121,"y":296},{"x":-192,"y":80},{"x":-55,"y":102},{"x":-181,"y":81},{"x":-25,"y":-45},{"x":94,"y":-175},{"x":16,"y":-11},{"x":49,"y":41},{"x":51,"y":5},{"x":-52,"y":-10},{"x":6,"y":-55},{"x":-28,"y":-18},{"x":39,"y":-46},{"x":26,"y":31},{"x":37,"y":-19},{"x":-22,"y":-31},{"x":37,"y":14},{"x":-12,"y":-77},{"x":46,"y":-2},{"x":20,"y":56},{"x":7,"y":-57},{"x":59,"y":-33},{"x":-24,"y":-37},{"x":64,"y":6},{"x":-8,"y":-97},{"x":78,"y":-4},{"x":-19,"y":58},{"x":51,"y":4},{"x":6,"y":-56},{"x":-19,"y":35},{"x":-21,"y":-57},{"x":72,"y":-44},{"x":21,"y":65}],"type":"coastline"},{"arc":[{"x":31849,"y":15085},{"x":-12,"y":59},{"x":-57,"y":-24},{"x":14,"y":-60},{"x":-65,"y":44},{"x":-81,"y":-43},{"x":35,"y":-9},{"x":-299,"y":-85},{"x":137,"y":90},{"x":-52,"y":-9},{"x":8,"y":88},{"x":-47,"y":-65},{"x":-73,"y":-16},{"x":18,"y":93},{"x":-44,"y":6},{"x":51,"y":22},{"x":-111,"y":-30},{"x":113,"y":113},{"x":-63,"y":-4},{"x":48,"y":54},{"x":-50,"y":71},{"x":-103,"y":-88},{"x":-26,"y":71},{"x":-66,"y":-69},{"x":48,"y":144},{"x":-56,"y":-25},{"x":-35,"y":-92},{"x":-32,"y":34},{"x":-9,"y":-30},{"x":8,"y":37},{"x":-46,"y":-39},{"x":-73,"y":31},{"x":110,"y":48},{"x":22,"y":54},{"x":-125,"y":-52},{"x":-31,"y":16},{"x":86,"y":43},{"x":-65,"y":19},{"x":-199,"y":-64},{"x":6,"y":-58},{"x":124,"y":8},{"x":-85,"y":-77},{"x":134,"y":47},{"x":102,"y":-34},{"x":-96,"y":-39},{"x":-22,"y":-24},{"x":58,"y":23},{"x":-43,"y":-52},{"x":-124,"y":-70},{"x":23,"y":-68},{"x":158,"y":155},{"x":-16,"y":-47},{"x":42,"y":18},{"x":-46,"y":-20},{"x":31,"y":-39},{"x":-72,"y":-21},{"x":32,"y":-5},{"x":-24,"y":-34},{"x":34,"y":21},{"x":-19,"y":-51},{"x":39,"y":65},{"x":-4,"y":-34},{"x":67,"y":16},{"x":-73,"y":-49},{"x":27,"y":-15},{"x":-50,"y":-59},{"x":50,"y":-179},{"x":-29,"y":-127},{"x":64,"y":-11},{"x":138,"y":137},{"x":4,"y":-116},{"x":54,"y":56},{"x":-37,"y":-23},{"x":-11,"y":29},{"x":131,"y":42},{"x":-40,"y":59},{"x":90,"y":-42},{"x":43,"y":28},{"x":-22,"y":37},{"x":48,"y":-31},{"x":213,"y":97},{"x":19,"y":-30},{"x":47,"y":58},{"x":23,"y":-20},{"x":67,"y":45},{"x":67,"y":101}],"type":"coastline"},{"arc":[{"x":31993,"y":6397},{"x":-68,"y":-63},{"x":108,"y":76},{"x":-40,"y":-13}],"type":"coastline"},{"arc":[{"x":32070,"y":6256},{"x":-37,"y":4},{"x":20,"y":-39},{"x":17,"y":35}],"type":"coastline"},{"arc":[{"x":32094,"y":6192},{"x":-57,"y":9},{"x":84,"y":-36},{"x":-27,"y":27}],"type":"coastline"},{"arc":[{"x":32212,"y":11981},{"x":-27,"y":54},{"x":-92,"y":34},{"x":72,"y":-166},{"x":47,"y":78}],"type":"coastline"},{"arc":[{"x":32217,"y":5859},{"x":-47,"y":24},{"x":5,"y":-49},{"x":-31,"y":47},{"x":-11,"y":-45},{"x":-147,"y":118},{"x":-23,"y":-20},{"x":156,"y":-128},{"x":41,"y":14},{"x":22,"y":-53},{"x":12,"y":1},{"x":-4,"y":21},{"x":6,"y":37},{"x":21,"y":33}],"type":"coastline"},{"arc":[{"x":32195,"y":6245},{"x":-69,"y":10},{"x":-56,"y":-26},{"x":81,"y":13},{"x":-67,"y":-30},{"x":46,"y":-29},{"x":42,"y":34},{"x":-11,"y":-42},{"x":68,"y":16},{"x":-34,"y":54}],"type":"coastline"},{"arc":[{"x":32239,"y":6208},{"x":3,"y":-27},{"x":40,"y":18},{"x":-43,"y":9}],"type":"coastline"},{"arc":[{"x":32289,"y":6048},{"x":-93,"y":57},{"x":106,"y":-91},{"x":-13,"y":34}],"type":"coastline"},{"arc":[{"x":32293,"y":6213},{"x":-1,"y":-12},{"x":-17,"y":-14},{"x":-28,"y":-9},{"x":59,"y":4},{"x":-13,"y":31}],"type":"coastline"},{"arc":[{"x":32311,"y":6106},{"x":-96,"y":49},{"x":144,"y":-110},{"x":-48,"y":61}],"type":"coastline"},{"arc":[{"x":32388,"y":6045},{"x":-39,"y":-11},{"x":36,"y":1},{"x":-32,"y":-45},{"x":47,"y":24},{"x":-12,"y":31}],"type":"coastline"},{"arc":[{"x":32422,"y":5713},{"x":-10,"y":51},{"x":-40,"y":-10},{"x":15,"y":60},{"x":-52,"y":-9},{"x":-20,"y":-51},{"x":-25,"y":21},{"x":28,"y":40},{"x":43,"y":9},{"x":34,"y":-12},{"x":28,"y":63},{"x":-182,"y":-30},{"x":-33,"y":-45},{"x":-3,"y":19},{"x":-9,"y":-9},{"x":9,"y":-14},{"x":-8,"y":-1},{"x":-4,"y":-17},{"x":26,"y":-30},{"x":15,"y":37},{"x":51,"y":-70},{"x":137,"y":-2}],"type":"coastline"},{"arc":[{"x":32586,"y":12243},{"x":-25,"y":-62},{"x":36,"y":92},{"x":-11,"y":-30}],"type":"coastline"},{"arc":[{"x":32917,"y":12198},{"x":-38,"y":-56},{"x":75,"y":67},{"x":-37,"y":-11}],"type":"coastline"},{"arc":[{"x":32952,"y":14420},{"x":-18,"y":26},{"x":6,"y":-60},{"x":12,"y":34}],"type":"coastline"},{"arc":[{"x":32983,"y":12256},{"x":-75,"y":34},{"x":-105,"y":-39},{"x":120,"y":27},{"x":-118,"y":-37},{"x":83,"y":16},{"x":-100,"y":-77},{"x":74,"y":38},{"x":-66,"y":-53},{"x":25,"y":-11},{"x":140,"y":67},{"x":-97,"y":-19},{"x":21,"y":24},{"x":98,"y":30}],"type":"coastline"},{"arc":[{"x":33045,"y":14411},{"x":-71,"y":3},{"x":26,"y":-29},{"x":45,"y":26}],"type":"coastline"},{"arc":[{"x":33867,"y":13603},{"x":-39,"y":28},{"x":-49,"y":-64},{"x":88,"y":36}],"type":"coastline"},{"arc":[{"x":34099,"y":14003},{"x":-65,"y":-11},{"x":60,"y":-74},{"x":5,"y":85}],"type":"coastline"},{"arc":[{"x":34270,"y":12222},{"x":-88,"y":14},{"x":-94,"y":-62},{"x":127,"y":-46},{"x":56,"y":36},{"x":-1,"y":58}],"type":"coastline"},{"arc":[{"x":34305,"y":14014},{"x":-7,"y":41},{"x":-31,"y":-28},{"x":15,"y":-44},{"x":23,"y":31}],"type":"coastline"},{"arc":[{"x":34373,"y":13274},{"x":-65,"y":68},{"x":2,"y":-62},{"x":74,"y":-61},{"x":-11,"y":55}],"type":"coastline"},{"arc":[{"x":34402,"y":11898},{"x":-61,"y":18},{"x":-115,"y":-134},{"x":-10,"y":-78},{"x":71,"y":-29},{"x":98,"y":64},{"x":17,"y":159}],"type":"coastline"},{"arc":[{"x":34520,"y":12347},{"x":-12,"y":89},{"x":-57,"y":15},{"x":-22,"y":-47},{"x":91,"y":-57}],"type":"coastline"},{"arc":[{"x":34497,"y":14072},{"x":-26,"y":20},{"x":91,"y":-41},{"x":-65,"y":21}],"type":"coastline"},{"arc":[{"x":34559,"y":12500},{"x":-67,"y":55},{"x":51,"y":-89},{"x":16,"y":34}],"type":"coastline"},{"arc":[{"x":34611,"y":14022},{"x":-49,"y":25},{"x":32,"y":-60},{"x":17,"y":35}],"type":"coastline"},{"arc":[{"x":35038,"y":11487},{"x":-130,"y":68},{"x":60,"y":46},{"x":-219,"y":338},{"x":-85,"y":20},{"x":-30,"y":-47},{"x":28,"y":134},{"x":-83,"y":86},{"x":-66,"y":-115},{"x":50,"y":-164},{"x":51,"y":13},{"x":11,"y":-87},{"x":52,"y":0},{"x":-240,"y":-266},{"x":146,"y":-53},{"x":-47,"y":-172},{"x":75,"y":21},{"x":46,"y":92},{"x":318,"y":11},{"x":92,"y":75},{"x":-29,"y":0}],"type":"coastline"},{"arc":[{"x":35110,"y":11626},{"x":-108,"y":127},{"x":29,"y":-102},{"x":79,"y":-25}],"type":"coastline"},{"arc":[{"x":35551,"y":12850},{"x":-19,"y":101},{"x":-47,"y":7},{"x":6,"y":-142},{"x":57,"y":-24},{"x":3,"y":58}],"type":"coastline"},{"arc":[{"x":35519,"y":11380},{"x":-45,"y":-38},{"x":129,"y":-1},{"x":-84,"y":39}],"type":"coastline"},{"arc":[{"x":35604,"y":12689},{"x":-38,"y":72},{"x":-148,"y":-16},{"x":-51,"y":-91},{"x":-4,"y":-133},{"x":105,"y":-41},{"x":100,"y":54},{"x":36,"y":155}],"type":"coastline"},{"arc":[{"x":35658,"y":12774},{"x":-52,"y":11},{"x":45,"y":-73},{"x":45,"y":18},{"x":-38,"y":44}],"type":"coastline"},{"arc":[{"x":35711,"y":9507},{"x":-49,"y":-8},{"x":26,"y":-62},{"x":23,"y":70}],"type":"coastline"},{"arc":[{"x":35741,"y":9705},{"x":-37,"y":-55},{"x":63,"y":5},{"x":-26,"y":50}],"type":"coastline"},{"arc":[{"x":35847,"y":12342},{"x":-42,"y":14},{"x":-84,"y":-115},{"x":126,"y":101}],"type":"coastline"},{"arc":[{"x":35853,"y":12513},{"x":-8,"y":49},{"x":-63,"y":-31},{"x":27,"y":-57},{"x":44,"y":39}],"type":"coastline"},{"arc":[{"x":35884,"y":10131},{"x":1,"y":60},{"x":-47,"y":1},{"x":46,"y":-61}],"type":"coastline"},{"arc":[{"x":35918,"y":13627},{"x":-39,"y":-3},{"x":13,"y":-49},{"x":26,"y":52}],"type":"coastline"},{"arc":[{"x":35943,"y":12194},{"x":-25,"y":42},{"x":-47,"y":-82},{"x":39,"y":-97},{"x":33,"y":137}],"type":"coastline"},{"arc":[{"x":35893,"y":10040},{"x":-64,"y":143},{"x":-98,"y":47},{"x":-4,"y":75},{"x":-93,"y":-159},{"x":128,"y":-373},{"x":66,"y":144},{"x":62,"y":-17},{"x":-34,"y":64},{"x":102,"y":0},{"x":-65,"y":76}],"type":"coastline"},{"arc":[{"x":36010,"y":11303},{"x":-28,"y":64},{"x":25,"y":-110},{"x":3,"y":46}],"type":"coastline"},{"arc":[{"x":36222,"y":13147},{"x":-30,"y":54},{"x":-26,"y":-86},{"x":56,"y":32}],"type":"coastline"},{"arc":[{"x":36303,"y":12986},{"x":-28,"y":15},{"x":62,"y":-17},{"x":-34,"y":2}],"type":"coastline"},{"arc":[{"x":30361,"y":12797},{"x":-156,"y":-175},{"x":-153,"y":-84},{"x":1,"y":-224},{"x":-37,"y":-59},{"x":-42,"y":14}],"type":"area"},{"arc":[{"x":29974,"y":12269},{"x":-26,"y":1}],"type":"coastline"},{"arc":[{"x":29948,"y":12270},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":29942,"y":12270},{"x":-43,"y":16}],"type":"coastline"},{"arc":[{"x":29899,"y":12286},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":29895,"y":12287},{"x":-20,"y":-7}],"type":"coastline"},{"arc":[{"x":29875,"y":12280},{"x":-261,"y":-421},{"x":38,"y":-78},{"x":88,"y":-7},{"x":86,"y":73},{"x":215,"y":46},{"x":395,"y":-49},{"x":109,"y":-127},{"x":67,"y":-2},{"x":-12,"y":-43},{"x":104,"y":-17},{"x":-14,"y":-56},{"x":98,"y":-38},{"x":316,"y":-425},{"x":-73,"y":-120},{"x":24,"y":-168},{"x":33,"y":-15},{"x":-41,"y":-86},{"x":67,"y":-60},{"x":-28,"y":-37},{"x":89,"y":-73},{"x":-23,"y":-95},{"x":47,"y":-101},{"x":142,"y":-48},{"x":-82,"y":-23},{"x":0,"y":-321},{"x":0,"y":-1069},{"x":0,"y":-988},{"x":0,"y":-974}],"type":"area"},{"arc":[{"x":31259,"y":6958},{"x":0,"y":-34}],"type":"coastline"},{"arc":[{"x":31259,"y":6924},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":31259,"y":6917},{"x":63,"y":-19},{"x":38,"y":47},{"x":-24,"y":-50},{"x":83,"y":12},{"x":-71,"y":-44},{"x":54,"y":-64},{"x":26,"y":15},{"x":-54,"y":19},{"x":45,"y":30},{"x":13,"y":-48},{"x":89,"y":12},{"x":-74,"y":-13},{"x":-19,"y":-42},{"x":66,"y":-66},{"x":103,"y":58},{"x":-39,"y":-89},{"x":136,"y":32},{"x":-110,"y":-38},{"x":7,"y":-54},{"x":56,"y":15},{"x":-63,"y":-31},{"x":42,"y":-69},{"x":13,"y":69},{"x":58,"y":24},{"x":37,"y":-16},{"x":-73,"y":-1},{"x":-24,"y":-65},{"x":27,"y":18},{"x":10,"y":-62},{"x":23,"y":45},{"x":31,"y":-41},{"x":-45,"y":-20},{"x":14,"y":-59},{"x":-26,"y":15},{"x":77,"y":-90},{"x":39,"y":79},{"x":-2,"y":-79},{"x":65,"y":35},{"x":11,"y":54},{"x":-5,"y":45},{"x":7,"y":6},{"x":28,"y":-5},{"x":-31,"y":-4},{"x":11,"y":-79},{"x":-10,"y":-9},{"x":45,"y":9},{"x":-93,"y":-44},{"x":49,"y":-19},{"x":55,"y":2},{"x":89,"y":83},{"x":-74,"y":61},{"x":72,"y":-33},{"x":15,"y":25},{"x":3,"y":-55},{"x":78,"y":32},{"x":34,"y":-19},{"x":-39,"y":11},{"x":-93,"y":-76},{"x":-17,"y":-31},{"x":66,"y":-2},{"x":-38,"y":-16},{"x":54,"y":17},{"x":-65,"y":-63},{"x":139,"y":45},{"x":-20,"y":-51},{"x":72,"y":-4},{"x":30,"y":-45},{"x":47,"y":2},{"x":-7,"y":-10},{"x":22,"y":-7},{"x":3,"y":22},{"x":-50,"y":36},{"x":24,"y":45},{"x":-50,"y":31},{"x":58,"y":-29},{"x":-12,"y":-51},{"x":41,"y":-34},{"x":50,"y":41},{"x":43,"y":-16},{"x":-57,"y":-40},{"x":27,"y":-9},{"x":-115,"y":-35},{"x":126,"y":-99},{"x":47,"y":7},{"x":-45,"y":41},{"x":52,"y":-26},{"x":11,"y":55},{"x":1,"y":-43},{"x":-18,"y":-36},{"x":48,"y":-44},{"x":58,"y":7},{"x":-70,"y":57},{"x":77,"y":-50},{"x":-9,"y":60},{"x":50,"y":-36},{"x":33,"y":65},{"x":7,"y":-44},{"x":99,"y":64},{"x":35,"y":-43},{"x":-59,"y":5},{"x":-79,"y":-41},{"x":65,"y":21},{"x":138,"y":-8}],"type":"coastline"},{"arc":[{"x":32814,"y":6075},{"x":44,"y":-9},{"x":110,"y":-211},{"x":407,"y":-190},{"x":312,"y":-252},{"x":-44,"y":-108},{"x":-95,"y":-26},{"x":-5,"y":-33},{"x":-56,"y":-79},{"x":76,"y":-15},{"x":188,"y":-191},{"x":60,"y":13},{"x":-34,"y":-114},{"x":26,"y":-119},{"x":1053,"y":-1},{"x":1049,"y":-1}],"type":"area"},{"arc":[{"x":35905,"y":4739},{"x":-31,"y":227},{"x":-127,"y":233},{"x":-65,"y":252},{"x":65,"y":-104},{"x":18,"y":59},{"x":51,"y":-50},{"x":-35,"y":63},{"x":50,"y":-47},{"x":27,"y":161},{"x":64,"y":18},{"x":-40,"y":70},{"x":-88,"y":-64},{"x":250,"y":560},{"x":-63,"y":9},{"x":-95,"y":-163},{"x":17,"y":-13},{"x":-24,"y":-114},{"x":-112,"y":-148},{"x":-50,"y":-34},{"x":-27,"y":68},{"x":34,"y":-57},{"x":-9,"y":110},{"x":60,"y":-46},{"x":37,"y":55},{"x":-28,"y":-7},{"x":27,"y":17},{"x":-18,"y":14},{"x":62,"y":37},{"x":6,"y":53},{"x":-25,"y":0},{"x":36,"y":27},{"x":-42,"y":-12},{"x":17,"y":23},{"x":43,"y":-10},{"x":-48,"y":13},{"x":55,"y":-3},{"x":-107,"y":28},{"x":125,"y":67},{"x":63,"y":177},{"x":-65,"y":0},{"x":100,"y":71},{"x":20,"y":100},{"x":36,"y":-80},{"x":48,"y":22},{"x":-287,"y":309},{"x":85,"y":10},{"x":4,"y":66},{"x":22,"y":-55},{"x":39,"y":79},{"x":4,"y":-70},{"x":34,"y":97},{"x":-94,"y":-12},{"x":-12,"y":57},{"x":-71,"y":-47},{"x":11,"y":126},{"x":94,"y":49},{"x":-3,"y":115},{"x":-208,"y":592},{"x":-19,"y":145},{"x":32,"y":-43},{"x":13,"y":50},{"x":-32,"y":113},{"x":-105,"y":131},{"x":-36,"y":-16},{"x":-12,"y":-146},{"x":-60,"y":-37},{"x":-27,"y":52},{"x":-26,"y":393},{"x":72,"y":222},{"x":-65,"y":41},{"x":1,"y":79},{"x":-82,"y":30},{"x":61,"y":22},{"x":-78,"y":79},{"x":-52,"y":13},{"x":1,"y":-80},{"x":-159,"y":158},{"x":95,"y":-68},{"x":69,"y":19},{"x":-53,"y":10},{"x":30,"y":20},{"x":-32,"y":38},{"x":197,"y":-112},{"x":87,"y":16},{"x":13,"y":174},{"x":109,"y":97},{"x":-27,"y":-110},{"x":-50,"y":0},{"x":11,"y":-155},{"x":-40,"y":26},{"x":24,"y":-146},{"x":78,"y":65},{"x":73,"y":250},{"x":-205,"y":211},{"x":31,"y":130},{"x":-108,"y":146},{"x":36,"y":183},{"x":-35,"y":216},{"x":22,"y":69},{"x":68,"y":-27},{"x":-90,"y":80},{"x":-16,"y":87},{"x":68,"y":-4},{"x":22,"y":-54},{"x":-42,"y":-49},{"x":122,"y":-75},{"x":-2,"y":117},{"x":40,"y":-28},{"x":-82,"y":165},{"x":30,"y":26},{"x":-68,"y":-43},{"x":63,"y":105},{"x":-184,"y":-69},{"x":-57,"y":43},{"x":34,"y":67},{"x":-47,"y":-33},{"x":8,"y":48},{"x":-51,"y":11},{"x":19,"y":-135},{"x":-103,"y":81},{"x":73,"y":-37},{"x":11,"y":107},{"x":245,"y":-32},{"x":-6,"y":83},{"x":135,"y":173},{"x":-6,"y":-46},{"x":103,"y":-9},{"x":-69,"y":-33},{"x":-1,"y":-66},{"x":91,"y":77},{"x":36,"y":-34},{"x":27,"y":92},{"x":-62,"y":-38},{"x":73,"y":47},{"x":-9,"y":-106},{"x":53,"y":-37},{"x":-26,"y":-30},{"x":39,"y":-111},{"x":86,"y":-89},{"x":100,"y":35},{"x":-8,"y":54},{"x":57,"y":-99},{"x":110,"y":12},{"x":30,"y":45},{"x":-26,"y":73},{"x":70,"y":-46},{"x":58,"y":159},{"x":19,"y":-75},{"x":9,"y":89},{"x":-30,"y":4},{"x":-8,"y":-23},{"x":-18,"y":6},{"x":13,"y":29},{"x":-30,"y":-7},{"x":22,"y":85},{"x":-94,"y":90},{"x":-109,"y":-8},{"x":-157,"y":186},{"x":17,"y":-104},{"x":-36,"y":-27},{"x":-12,"y":79},{"x":-79,"y":-120},{"x":-49,"y":318},{"x":-45,"y":-60},{"x":23,"y":-78},{"x":-108,"y":123},{"x":-121,"y":-5},{"x":-17,"y":43},{"x":228,"y":112},{"x":-106,"y":143},{"x":-107,"y":28},{"x":-9,"y":-74},{"x":-71,"y":3},{"x":-193,"y":105},{"x":56,"y":120},{"x":306,"y":104},{"x":2,"y":107},{"x":48,"y":-43},{"x":17,"y":75},{"x":57,"y":-115},{"x":130,"y":-11},{"x":-35,"y":361},{"x":-46,"y":9},{"x":10,"y":-94},{"x":-78,"y":237},{"x":-71,"y":-87},{"x":-2,"y":83},{"x":-52,"y":13},{"x":-46,"y":-168},{"x":-219,"y":172},{"x":-103,"y":-33},{"x":-146,"y":-226},{"x":54,"y":-75},{"x":66,"y":8},{"x":-39,"y":-27},{"x":59,"y":-28},{"x":-12,"y":-102},{"x":4,"y":74},{"x":-168,"y":108},{"x":48,"y":-100},{"x":-54,"y":16},{"x":24,"y":-102},{"x":68,"y":-27},{"x":-12,"y":-160},{"x":-81,"y":112},{"x":-187,"y":-185},{"x":7,"y":-83},{"x":132,"y":-197},{"x":0,"y":-39},{"x":-28,"y":29},{"x":28,"y":-210},{"x":-34,"y":187},{"x":-105,"y":111},{"x":-21,"y":243},{"x":-235,"y":-114},{"x":-49,"y":-88},{"x":42,"y":-67},{"x":-47,"y":28},{"x":29,"y":-63},{"x":-29,"y":4},{"x":67,"y":-33},{"x":-27,"y":-42},{"x":-46,"y":36},{"x":19,"y":-54},{"x":-85,"y":16},{"x":-14,"y":-93},{"x":140,"y":-349},{"x":-70,"y":16},{"x":-41,"y":189},{"x":-38,"y":-45},{"x":42,"y":84},{"x":-71,"y":120},{"x":-76,"y":20},{"x":-62,"y":-94},{"x":9,"y":-128},{"x":-46,"y":68},{"x":0,"y":-89},{"x":-60,"y":-25},{"x":-46,"y":43},{"x":49,"y":-95},{"x":-34,"y":60},{"x":-41,"y":-79},{"x":-31,"y":16},{"x":12,"y":-41},{"x":-48,"y":42},{"x":-63,"y":-87},{"x":-80,"y":0},{"x":-135,"y":-99},{"x":-257,"y":17},{"x":-69,"y":-41},{"x":-74,"y":68},{"x":19,"y":29},{"x":-131,"y":-19},{"x":125,"y":22},{"x":-8,"y":124},{"x":-313,"y":89},{"x":-100,"y":-53},{"x":80,"y":222},{"x":-91,"y":262},{"x":-193,"y":153},{"x":-146,"y":303},{"x":-79,"y":-35},{"x":66,"y":44},{"x":-40,"y":340},{"x":-483,"y":-6},{"x":-150,"y":100},{"x":-24,"y":-49},{"x":-40,"y":107},{"x":-121,"y":69},{"x":-100,"y":-70},{"x":60,"y":107},{"x":-129,"y":97},{"x":105,"y":-50},{"x":106,"y":51},{"x":-113,"y":58},{"x":73,"y":19},{"x":63,"y":-42},{"x":108,"y":77},{"x":176,"y":-70},{"x":152,"y":-21},{"x":25,"y":31},{"x":62,"y":-48},{"x":20,"y":30},{"x":3,"y":-41},{"x":104,"y":-46},{"x":138,"y":241},{"x":235,"y":151},{"x":306,"y":-33},{"x":216,"y":-214},{"x":72,"y":0},{"x":100,"y":109},{"x":69,"y":-13},{"x":-32,"y":57},{"x":40,"y":-29},{"x":71,"y":44},{"x":1,"y":-54},{"x":76,"y":-14},{"x":32,"y":40},{"x":22,"y":-50},{"x":45,"y":39},{"x":-11,"y":-84},{"x":168,"y":88},{"x":39,"y":-63},{"x":131,"y":-20},{"x":67,"y":83},{"x":-72,"y":229},{"x":-25,"y":-37},{"x":35,"y":69},{"x":-47,"y":94},{"x":31,"y":-21},{"x":53,"y":128},{"x":-82,"y":127},{"x":-64,"y":-20},{"x":7,"y":72},{"x":-42,"y":25},{"x":-25,"y":-37},{"x":10,"y":87},{"x":-41,"y":-37},{"x":-62,"y":38},{"x":-15,"y":173},{"x":-62,"y":29},{"x":60,"y":46},{"x":-225,"y":-11},{"x":-3,"y":-171},{"x":-21,"y":158},{"x":-147,"y":-3},{"x":2,"y":61},{"x":-117,"y":-38},{"x":57,"y":-36},{"x":-53,"y":8},{"x":-12,"y":-55},{"x":-39,"y":53},{"x":73,"y":127},{"x":-84,"y":70},{"x":-96,"y":-19},{"x":-79,"y":-124},{"x":60,"y":116},{"x":122,"y":50},{"x":-112,"y":-15},{"x":88,"y":45},{"x":-122,"y":7},{"x":208,"y":160},{"x":-53,"y":54},{"x":-65,"y":-14},{"x":56,"y":28},{"x":76,"y":-19},{"x":29,"y":80},{"x":25,"y":-48},{"x":49,"y":19},{"x":-21,"y":25},{"x":47,"y":-25},{"x":-25,"y":70},{"x":93,"y":-62},{"x":-6,"y":62},{"x":28,"y":-30},{"x":106,"y":45},{"x":-26,"y":59},{"x":-2,"y":-46},{"x":-15,"y":46},{"x":-42,"y":-54},{"x":33,"y":54},{"x":-51,"y":-17},{"x":29,"y":41},{"x":-60,"y":-10},{"x":-25,"y":41},{"x":-31,"y":-24},{"x":0,"y":48},{"x":-29,"y":-41},{"x":-25,"y":83},{"x":-58,"y":-80},{"x":10,"y":110},{"x":-46,"y":-23},{"x":-39,"y":58},{"x":-86,"y":-91},{"x":39,"y":126},{"x":-59,"y":-42},{"x":-6,"y":33},{"x":-46,"y":-86},{"x":45,"y":107},{"x":-34,"y":19},{"x":-22,"y":-45},{"x":10,"y":65},{"x":-77,"y":31},{"x":-32,"y":-79},{"x":-87,"y":142},{"x":-71,"y":-65},{"x":-39,"y":26},{"x":37,"y":-99},{"x":13,"y":50},{"x":-10,"y":-60},{"x":-50,"y":106},{"x":-27,"y":-53},{"x":-38,"y":66},{"x":0,"y":-56},{"x":-14,"y":88},{"x":-40,"y":13},{"x":-8,"y":-33},{"x":-36,"y":92},{"x":-27,"y":-24},{"x":20,"y":42},{"x":-57,"y":-10},{"x":49,"y":42},{"x":-97,"y":-18},{"x":17,"y":35},{"x":-97,"y":-60},{"x":76,"y":111},{"x":-49,"y":-23},{"x":6,"y":65},{"x":-90,"y":-60},{"x":112,"y":93},{"x":-59,"y":-27},{"x":41,"y":43},{"x":-70,"y":14},{"x":-58,"y":190},{"x":-48,"y":-37},{"x":-74,"y":-234},{"x":40,"y":147},{"x":-100,"y":-214},{"x":-57,"y":-1},{"x":68,"y":-90},{"x":-26,"y":-5},{"x":-49,"y":106},{"x":-51,"y":-45},{"x":94,"y":163},{"x":58,"y":29},{"x":28,"y":127},{"x":16,"y":-75},{"x":22,"y":45},{"x":-9,"y":70},{"x":-56,"y":37},{"x":-47,"y":5},{"x":-34,"y":-52},{"x":-35,"y":21},{"x":80,"y":109},{"x":-23,"y":-30},{"x":-24,"y":84},{"x":-6,"y":-28},{"x":-67,"y":63},{"x":-50,"y":-51},{"x":-92,"y":50},{"x":-6,"y":-91},{"x":-35,"y":104},{"x":1,"y":-67},{"x":-51,"y":71},{"x":-64,"y":-37},{"x":-115,"y":-127},{"x":-33,"y":-202},{"x":-116,"y":-46},{"x":30,"y":-8},{"x":-143,"y":-106},{"x":-36,"y":-216},{"x":20,"y":17},{"x":28,"y":-137},{"x":-10,"y":-457},{"x":-98,"y":-81},{"x":-111,"y":-30},{"x":-10,"y":-82},{"x":-52,"y":-41},{"x":30,"y":-6},{"x":-236,"y":-150},{"x":67,"y":-169},{"x":-73,"y":162},{"x":-141,"y":-61},{"x":-11,"y":-31},{"x":-74,"y":-27},{"x":-80,"y":-72},{"x":-16,"y":-70},{"x":-108,"y":-135},{"x":-160,"y":-120},{"x":14,"y":-49},{"x":-46,"y":51},{"x":-80,"y":-91}],"type":"coastline"},{"arc":[{"x":36727,"y":7998},{"x":-108,"y":27},{"x":-58,"y":-70},{"x":10,"y":108},{"x":88,"y":97},{"x":-63,"y":200},{"x":-116,"y":-65},{"x":83,"y":127},{"x":-32,"y":113},{"x":54,"y":-63},{"x":9,"y":63},{"x":61,"y":-119},{"x":2,"y":83},{"x":-97,"y":175},{"x":-215,"y":97},{"x":66,"y":71},{"x":316,"y":-110},{"x":-29,"y":132},{"x":31,"y":24},{"x":-57,"y":124},{"x":-334,"y":181},{"x":-113,"y":-28},{"x":-105,"y":124},{"x":-24,"y":78},{"x":40,"y":-19},{"x":-126,"y":186},{"x":10,"y":70},{"x":-112,"y":2},{"x":55,"y":-58},{"x":-59,"y":-28},{"x":61,"y":-67},{"x":-83,"y":-42},{"x":33,"y":-112},{"x":-48,"y":58},{"x":-81,"y":-22},{"x":83,"y":135},{"x":-113,"y":29},{"x":-46,"y":-187},{"x":25,"y":-211},{"x":43,"y":22},{"x":23,"y":-179},{"x":71,"y":-21},{"x":-108,"y":-91},{"x":-67,"y":-206},{"x":-61,"y":-512},{"x":165,"y":-36},{"x":51,"y":-363},{"x":78,"y":-89},{"x":74,"y":7},{"x":45,"y":699},{"x":95,"y":-309},{"x":-25,"y":-433},{"x":84,"y":-104},{"x":123,"y":407},{"x":-29,"y":-387},{"x":62,"y":67},{"x":-20,"y":-145},{"x":39,"y":-30},{"x":111,"y":125},{"x":52,"y":-57},{"x":99,"y":146},{"x":87,"y":386}],"type":"coastline"},{"arc":[{"x":36729,"y":9165},{"x":-104,"y":-84},{"x":147,"y":-211},{"x":46,"y":51},{"x":10,"y":174},{"x":-99,"y":70}],"type":"coastline"},{"arc":[{"x":36829,"y":12114},{"x":-45,"y":353},{"x":-160,"y":158},{"x":-20,"y":-418},{"x":127,"y":-158},{"x":96,"y":0},{"x":2,"y":65}],"type":"coastline"},{"arc":[{"x":36850,"y":11357},{"x":-24,"y":209},{"x":-228,"y":-231},{"x":-211,"y":74},{"x":-114,"y":157},{"x":-67,"y":-241},{"x":46,"y":225},{"x":-51,"y":26},{"x":157,"y":16},{"x":78,"y":-173},{"x":57,"y":70},{"x":-54,"y":159},{"x":60,"y":-94},{"x":20,"y":61},{"x":18,"y":-131},{"x":97,"y":-20},{"x":-30,"y":210},{"x":86,"y":-178},{"x":-35,"y":216},{"x":75,"y":-179},{"x":-20,"y":93},{"x":56,"y":20},{"x":-40,"y":70},{"x":66,"y":-4},{"x":27,"y":256},{"x":-220,"y":156},{"x":-111,"y":-138},{"x":61,"y":103},{"x":-141,"y":-55},{"x":93,"y":90},{"x":-39,"y":69},{"x":45,"y":-59},{"x":40,"y":42},{"x":-64,"y":6},{"x":41,"y":53},{"x":-27,"y":46},{"x":-69,"y":-33},{"x":-23,"y":88},{"x":67,"y":-40},{"x":-95,"y":132},{"x":132,"y":-129},{"x":-46,"y":220},{"x":66,"y":-186},{"x":38,"y":12},{"x":33,"y":187},{"x":-59,"y":96},{"x":4,"y":110},{"x":-66,"y":20},{"x":-77,"y":-168},{"x":50,"y":142},{"x":-85,"y":-75},{"x":95,"y":97},{"x":-11,"y":100},{"x":-58,"y":-1},{"x":-33,"y":-139},{"x":-3,"y":55},{"x":-32,"y":-55},{"x":34,"y":92},{"x":-109,"y":-53},{"x":107,"y":67},{"x":17,"y":50},{"x":-45,"y":-4},{"x":54,"y":51},{"x":-81,"y":-72},{"x":-48,"y":9},{"x":80,"y":82},{"x":-114,"y":-38},{"x":65,"y":69},{"x":-81,"y":-8},{"x":154,"y":101},{"x":-89,"y":174},{"x":-102,"y":-202},{"x":5,"y":74},{"x":-51,"y":-49},{"x":103,"y":237},{"x":-78,"y":-22},{"x":-68,"y":-142},{"x":-29,"y":18},{"x":55,"y":80},{"x":-115,"y":-46},{"x":137,"y":68},{"x":56,"y":135},{"x":-91,"y":-73},{"x":70,"y":122},{"x":-61,"y":145},{"x":-106,"y":-228},{"x":-12,"y":41},{"x":-33,"y":-80},{"x":80,"y":218},{"x":-130,"y":-161},{"x":72,"y":165},{"x":86,"y":69},{"x":-85,"y":104},{"x":-50,"y":13},{"x":11,"y":-109},{"x":-32,"y":-41},{"x":-22,"y":-203},{"x":12,"y":174},{"x":-73,"y":233},{"x":-30,"y":-13},{"x":38,"y":-295},{"x":-18,"y":137},{"x":1,"y":-108},{"x":-5,"y":56},{"x":-53,"y":-62},{"x":48,"y":78},{"x":-35,"y":82},{"x":-9,"y":-103},{"x":-48,"y":89},{"x":25,"y":-188},{"x":-44,"y":160},{"x":-18,"y":-104},{"x":-10,"y":118},{"x":-36,"y":-3},{"x":37,"y":35},{"x":-41,"y":8},{"x":13,"y":114},{"x":-39,"y":-146},{"x":13,"y":101},{"x":-36,"y":-69},{"x":19,"y":99},{"x":-59,"y":6},{"x":32,"y":52},{"x":-57,"y":-53},{"x":-22,"y":44},{"x":87,"y":55},{"x":-119,"y":-10},{"x":76,"y":25},{"x":5,"y":43},{"x":-90,"y":11},{"x":71,"y":-7},{"x":20,"y":82},{"x":-81,"y":-54},{"x":37,"y":84},{"x":-112,"y":72},{"x":10,"y":-108},{"x":-13,"y":69},{"x":-22,"y":-66},{"x":18,"y":98},{"x":-60,"y":-89},{"x":52,"y":145},{"x":-63,"y":-32},{"x":85,"y":73},{"x":-82,"y":-8},{"x":-35,"y":-71},{"x":21,"y":46},{"x":-46,"y":1},{"x":59,"y":69},{"x":-75,"y":-5},{"x":69,"y":19},{"x":-49,"y":53},{"x":75,"y":27},{"x":-91,"y":99},{"x":-5,"y":-111},{"x":-65,"y":76},{"x":-1,"y":-162},{"x":-72,"y":114},{"x":24,"y":-135},{"x":-68,"y":94},{"x":19,"y":-70},{"x":-72,"y":26},{"x":39,"y":-33},{"x":-29,"y":-32},{"x":69,"y":-39},{"x":-234,"y":-3},{"x":65,"y":-33},{"x":-19,"y":-57},{"x":74,"y":5},{"x":-61,"y":-60},{"x":41,"y":-22},{"x":31,"y":61},{"x":-25,"y":-73},{"x":65,"y":37},{"x":-17,"y":-77},{"x":33,"y":67},{"x":6,"y":-87},{"x":134,"y":140},{"x":-90,"y":-188},{"x":99,"y":51},{"x":-62,"y":-65},{"x":119,"y":-127},{"x":-36,"y":-9},{"x":19,"y":-74},{"x":-60,"y":72},{"x":46,"y":-102},{"x":-133,"y":97},{"x":-3,"y":-89},{"x":41,"y":-6},{"x":49,"y":-66},{"x":-25,"y":-41},{"x":-26,"y":100},{"x":-25,"y":-10},{"x":17,"y":-29},{"x":-55,"y":18},{"x":4,"y":47},{"x":-73,"y":-26},{"x":35,"y":92},{"x":-32,"y":-23},{"x":-18,"y":49},{"x":-16,"y":-43},{"x":-25,"y":58},{"x":-40,"y":-21},{"x":28,"y":47},{"x":-94,"y":2},{"x":62,"y":3},{"x":-79,"y":56},{"x":37,"y":24},{"x":-50,"y":26},{"x":47,"y":11},{"x":-80,"y":1},{"x":-9,"y":77},{"x":-33,"y":-70},{"x":-70,"y":123},{"x":-37,"y":-43},{"x":-35,"y":57},{"x":-93,"y":-1},{"x":125,"y":-93},{"x":-203,"y":82},{"x":22,"y":-79},{"x":-99,"y":13},{"x":79,"y":-19},{"x":-21,"y":-34},{"x":70,"y":-83},{"x":-42,"y":22},{"x":11,"y":-35},{"x":85,"y":-32},{"x":-78,"y":-2},{"x":166,"y":-152},{"x":-90,"y":27},{"x":88,"y":-157},{"x":-154,"y":122},{"x":5,"y":46},{"x":-31,"y":-20},{"x":19,"y":29},{"x":-28,"y":-15},{"x":-161,"y":210},{"x":-71,"y":-5},{"x":81,"y":-314},{"x":69,"y":-108},{"x":48,"y":7},{"x":29,"y":-175},{"x":22,"y":-40},{"x":40,"y":28},{"x":-26,"y":-58},{"x":88,"y":-90},{"x":35,"y":111},{"x":48,"y":-84},{"x":-37,"y":-1},{"x":6,"y":-47},{"x":63,"y":9},{"x":-40,"y":-16},{"x":17,"y":-35},{"x":51,"y":0},{"x":44,"y":-88},{"x":87,"y":10},{"x":-36,"y":-19},{"x":23,"y":-56},{"x":-56,"y":-29},{"x":82,"y":13},{"x":-22,"y":-59},{"x":61,"y":-1},{"x":-22,"y":-54},{"x":-54,"y":63},{"x":-41,"y":-25},{"x":55,"y":-139},{"x":-56,"y":10},{"x":-41,"y":-115},{"x":53,"y":-161},{"x":63,"y":-35},{"x":111,"y":120},{"x":61,"y":-10},{"x":-54,"y":194},{"x":-115,"y":51},{"x":87,"y":22},{"x":48,"y":-91},{"x":31,"y":300},{"x":155,"y":-121},{"x":254,"y":277},{"x":216,"y":-97},{"x":9,"y":-61},{"x":23,"y":34},{"x":-29,"y":-49},{"x":37,"y":-40},{"x":61,"y":23},{"x":10,"y":-52},{"x":-48,"y":-4},{"x":73,"y":-43},{"x":-7,"y":-50},{"x":53,"y":38},{"x":-82,"y":-238},{"x":75,"y":-1},{"x":16,"y":123},{"x":34,"y":3},{"x":69,"y":-125},{"x":28,"y":54},{"x":-5,"y":-124},{"x":66,"y":28},{"x":-44,"y":-78},{"x":103,"y":-11},{"x":3,"y":-85},{"x":105,"y":-74},{"x":-61,"y":-70},{"x":-25,"y":81},{"x":-95,"y":15},{"x":57,"y":-359},{"x":-94,"y":100},{"x":134,"y":-252},{"x":-97,"y":154},{"x":-21,"y":-49},{"x":75,"y":-325},{"x":-28,"y":-118},{"x":55,"y":-93},{"x":65,"y":22},{"x":-45,"y":-33},{"x":33,"y":-41},{"x":-41,"y":0},{"x":-12,"y":-106},{"x":55,"y":-112},{"x":137,"y":-95},{"x":-21,"y":310},{"x":62,"y":-105},{"x":17,"y":-245},{"x":242,"y":-4},{"x":224,"y":149},{"x":97,"y":259}],"type":"coastline"},{"arc":[{"x":36860,"y":9744},{"x":-47,"y":78},{"x":33,"y":246},{"x":-80,"y":-61},{"x":-27,"y":60},{"x":-110,"y":-155},{"x":39,"y":56},{"x":-18,"y":89},{"x":-79,"y":7},{"x":31,"y":80},{"x":-71,"y":28},{"x":-24,"y":-69},{"x":-114,"y":35},{"x":-46,"y":-133},{"x":64,"y":-74},{"x":-83,"y":30},{"x":-59,"y":-82},{"x":328,"y":-489},{"x":82,"y":97},{"x":-83,"y":74},{"x":4,"y":110},{"x":66,"y":-1},{"x":-21,"y":49},{"x":65,"y":-63},{"x":-5,"y":95},{"x":64,"y":-225},{"x":25,"y":86},{"x":-44,"y":58},{"x":71,"y":-83},{"x":39,"y":157}],"type":"coastline"},{"arc":[{"x":36899,"y":10010},{"x":-43,"y":-61},{"x":1,"y":-154},{"x":42,"y":215}],"type":"coastline"},{"arc":[{"x":36902,"y":10605},{"x":-51,"y":305},{"x":-250,"y":-226},{"x":8,"y":-266},{"x":-76,"y":98},{"x":-104,"y":-71},{"x":10,"y":-34},{"x":-13,"y":-98},{"x":43,"y":44},{"x":145,"y":-107},{"x":199,"y":-6},{"x":-7,"y":133},{"x":58,"y":-86},{"x":42,"y":74},{"x":-4,"y":240}],"type":"coastline"},{"arc":[{"x":37008,"y":7100},{"x":-73,"y":251},{"x":-44,"y":-30},{"x":43,"y":35},{"x":-53,"y":35},{"x":52,"y":56},{"x":2,"y":160},{"x":-169,"y":254},{"x":-191,"y":-467},{"x":-70,"y":-33},{"x":-11,"y":-96},{"x":-175,"y":-50},{"x":-5,"y":-129},{"x":-87,"y":-170},{"x":139,"y":-118},{"x":62,"y":-114},{"x":-3,"y":-106},{"x":405,"y":256},{"x":128,"y":-123},{"x":50,"y":389}],"type":"coastline"},{"arc":[{"x":37173,"y":9268},{"x":-51,"y":-15},{"x":14,"y":-126},{"x":69,"y":61},{"x":-32,"y":80}],"type":"coastline"},{"arc":[{"x":37244,"y":10405},{"x":-76,"y":108},{"x":-124,"y":6},{"x":-19,"y":-154},{"x":97,"y":-229},{"x":99,"y":99},{"x":23,"y":170}],"type":"coastline"},{"arc":[{"x":37254,"y":10175},{"x":-23,"y":42},{"x":-43,"y":-114},{"x":66,"y":72}],"type":"coastline"},{"arc":[{"x":37361,"y":7577},{"x":-118,"y":-66},{"x":0,"y":-147},{"x":118,"y":213}],"type":"coastline"},{"arc":[{"x":37394,"y":9402},{"x":-43,"y":-24},{"x":2,"y":-191},{"x":41,"y":215}],"type":"coastline"},{"arc":[{"x":37473,"y":9245},{"x":-66,"y":73},{"x":1,"y":-130},{"x":60,"y":-34},{"x":5,"y":91}],"type":"coastline"},{"arc":[{"x":37483,"y":9917},{"x":-41,"y":90},{"x":-166,"y":-33},{"x":-77,"y":80},{"x":38,"y":-58},{"x":-54,"y":-50},{"x":-41,"y":73},{"x":-31,"y":-336},{"x":51,"y":42},{"x":44,"y":-89},{"x":61,"y":220},{"x":-47,"y":-453},{"x":27,"y":-30},{"x":19,"y":106},{"x":37,"y":-31},{"x":-12,"y":164},{"x":135,"y":-136},{"x":-121,"y":254},{"x":22,"y":61},{"x":36,"y":-95},{"x":7,"y":98},{"x":77,"y":-191},{"x":29,"y":164},{"x":-52,"y":69},{"x":59,"y":81}],"type":"coastline"},{"arc":[{"x":37518,"y":8670},{"x":-233,"y":78},{"x":25,"y":115},{"x":-56,"y":24},{"x":93,"y":33},{"x":-46,"y":139},{"x":-180,"y":-65},{"x":-31,"y":-150},{"x":41,"y":-65},{"x":-42,"y":-79},{"x":35,"y":-49},{"x":-128,"y":-345},{"x":-13,"y":-247},{"x":61,"y":-85},{"x":65,"y":341},{"x":53,"y":81},{"x":-27,"y":-173},{"x":36,"y":-41},{"x":-50,"y":-146},{"x":82,"y":68},{"x":12,"y":-91},{"x":-115,"y":-120},{"x":49,"y":-25},{"x":-48,"y":-55},{"x":54,"y":-66},{"x":-2,"y":-152},{"x":63,"y":38},{"x":49,"y":267},{"x":-26,"y":-272},{"x":46,"y":43},{"x":24,"y":253},{"x":1,"y":-231},{"x":50,"y":9},{"x":7,"y":233},{"x":30,"y":-147},{"x":53,"y":149},{"x":-74,"y":89},{"x":-5,"y":187},{"x":-146,"y":143},{"x":-9,"y":284},{"x":47,"y":10},{"x":46,"y":-149},{"x":50,"y":89},{"x":63,"y":-130},{"x":96,"y":210}],"type":"coastline"},{"arc":[{"x":37531,"y":8054},{"x":-40,"y":10},{"x":14,"y":-149},{"x":26,"y":139}],"type":"coastline"},{"arc":[{"x":37561,"y":10302},{"x":-59,"y":248},{"x":-80,"y":-44},{"x":52,"y":58},{"x":15,"y":200},{"x":-47,"y":118},{"x":-6,"y":-114},{"x":-36,"y":256},{"x":-39,"y":-97},{"x":32,"y":-184},{"x":-45,"y":173},{"x":-11,"y":-118},{"x":-41,"y":4},{"x":40,"y":141},{"x":-56,"y":98},{"x":-41,"y":-73},{"x":-34,"y":100},{"x":57,"y":26},{"x":-48,"y":60},{"x":34,"y":117},{"x":-57,"y":79},{"x":8,"y":133},{"x":23,"y":-77},{"x":72,"y":262},{"x":-47,"y":459},{"x":-75,"y":95},{"x":-55,"y":-122},{"x":-31,"y":135},{"x":3,"y":-129},{"x":-74,"y":22},{"x":-15,"y":-307},{"x":88,"y":-91},{"x":-75,"y":0},{"x":-16,"y":-93},{"x":44,"y":-92},{"x":-47,"y":-21},{"x":44,"y":-42},{"x":-43,"y":-9},{"x":1,"y":-354},{"x":90,"y":-3},{"x":-79,"y":-109},{"x":34,"y":-193},{"x":42,"y":29},{"x":-55,"y":-88},{"x":129,"y":-121},{"x":100,"y":60},{"x":154,"y":-127},{"x":-24,"y":-283},{"x":20,"y":71},{"x":24,"y":-142},{"x":39,"y":47},{"x":24,"y":-163},{"x":10,"y":75},{"x":51,"y":-60},{"x":6,"y":190}],"type":"coastline"},{"arc":[{"x":37664,"y":7763},{"x":-37,"y":89},{"x":-38,"y":-122},{"x":-99,"y":62},{"x":-33,"y":-136},{"x":-59,"y":-15},{"x":27,"y":-113},{"x":93,"y":24},{"x":-165,"y":-148},{"x":55,"y":-77},{"x":-107,"y":-18},{"x":-11,"y":-70},{"x":88,"y":-52},{"x":-58,"y":-15},{"x":0,"y":-198},{"x":92,"y":3},{"x":22,"y":132},{"x":195,"y":281},{"x":-5,"y":262},{"x":54,"y":17},{"x":-14,"y":94}],"type":"coastline"},{"arc":[{"x":37699,"y":10902},{"x":-66,"y":80},{"x":-31,"y":-87},{"x":85,"y":-103},{"x":12,"y":110}],"type":"coastline"},{"arc":[{"x":37651,"y":9114},{"x":-68,"y":32},{"x":147,"y":-141},{"x":-79,"y":109}],"type":"coastline"},{"arc":[{"x":37733,"y":10282},{"x":-10,"y":263},{"x":-65,"y":-37},{"x":7,"y":-297},{"x":51,"y":-30},{"x":17,"y":101}],"type":"coastline"},{"arc":[{"x":37725,"y":9610},{"x":-11,"y":-151},{"x":38,"y":-39},{"x":-27,"y":190}],"type":"coastline"},{"arc":[{"x":37786,"y":7983},{"x":-45,"y":90},{"x":-24,"y":-71},{"x":56,"y":-116},{"x":13,"y":97}],"type":"coastline"},{"arc":[{"x":37799,"y":8556},{"x":-49,"y":-158},{"x":-18,"y":97},{"x":-61,"y":-16},{"x":-40,"y":-227},{"x":42,"y":-129},{"x":92,"y":3},{"x":34,"y":430}],"type":"coastline"},{"arc":[{"x":37952,"y":8460},{"x":-100,"y":120},{"x":-5,"y":-467},{"x":105,"y":347}],"type":"coastline"},{"arc":[{"x":37941,"y":10101},{"x":-77,"y":251},{"x":-88,"y":-28},{"x":-41,"y":-219},{"x":57,"y":-111},{"x":21,"y":110},{"x":81,"y":-188},{"x":73,"y":32},{"x":-26,"y":153}],"type":"coastline"},{"arc":[{"x":38084,"y":9279},{"x":-104,"y":128},{"x":46,"y":116},{"x":-109,"y":254},{"x":-170,"y":46},{"x":5,"y":-174},{"x":77,"y":-54},{"x":39,"y":-205},{"x":-31,"y":-146},{"x":25,"y":-104},{"x":42,"y":-21},{"x":-9,"y":174},{"x":53,"y":27},{"x":59,"y":-113},{"x":-43,"y":-92},{"x":96,"y":-68},{"x":24,"y":232}],"type":"coastline"},{"arc":[{"x":38258,"y":9790},{"x":-100,"y":76},{"x":54,"y":-165},{"x":46,"y":89}],"type":"coastline"},{"arc":[{"x":38529,"y":10602},{"x":-274,"y":514},{"x":67,"y":-12},{"x":1,"y":117},{"x":-199,"y":34},{"x":29,"y":132},{"x":-47,"y":37},{"x":40,"y":38},{"x":-72,"y":94},{"x":-53,"y":-250},{"x":-94,"y":-82},{"x":79,"y":-63},{"x":-99,"y":32},{"x":13,"y":-109},{"x":-101,"y":-6},{"x":102,"y":-140},{"x":-103,"y":62},{"x":40,"y":-379},{"x":35,"y":-43},{"x":17,"y":160},{"x":6,"y":-198},{"x":88,"y":-123},{"x":59,"y":477},{"x":0,"y":-275},{"x":33,"y":184},{"x":21,"y":-239},{"x":-51,"y":-103},{"x":37,"y":-67},{"x":-32,"y":-89},{"x":58,"y":-64},{"x":55,"y":173},{"x":-30,"y":-187},{"x":46,"y":-89},{"x":66,"y":-15},{"x":-36,"y":283},{"x":44,"y":34},{"x":-13,"y":-158},{"x":49,"y":-156},{"x":0,"y":152},{"x":54,"y":-72},{"x":-13,"y":273},{"x":85,"y":-207},{"x":43,"y":283},{"x":59,"y":-132},{"x":-9,"y":179}],"type":"coastline"},{"arc":[{"x":38933,"y":13408},{"x":-41,"y":411},{"x":-68,"y":-281},{"x":63,"y":476},{"x":-161,"y":411},{"x":-128,"y":-552},{"x":-14,"y":-286},{"x":36,"y":-133},{"x":-47,"y":88},{"x":0,"y":240},{"x":-92,"y":-415},{"x":82,"y":677},{"x":-241,"y":-598},{"x":38,"y":-177},{"x":-84,"y":81},{"x":8,"y":-270},{"x":-38,"y":5},{"x":10,"y":222},{"x":-71,"y":-76},{"x":-29,"y":-133},{"x":53,"y":-242},{"x":-87,"y":110},{"x":1,"y":-204},{"x":-32,"y":-4},{"x":40,"y":-255},{"x":-46,"y":148},{"x":3,"y":-261},{"x":-29,"y":436},{"x":-42,"y":1},{"x":36,"y":-197},{"x":-30,"y":-342},{"x":-10,"y":142},{"x":-56,"y":-66},{"x":59,"y":187},{"x":-16,"y":123},{"x":-26,"y":-89},{"x":-4,"y":204},{"x":-55,"y":18},{"x":-16,"y":-250},{"x":-41,"y":201},{"x":-25,"y":-226},{"x":-21,"y":155},{"x":-37,"y":-35},{"x":8,"y":-281},{"x":-88,"y":61},{"x":-72,"y":-172},{"x":10,"y":-201},{"x":79,"y":-140},{"x":-80,"y":93},{"x":-3,"y":-119},{"x":-33,"y":35},{"x":26,"y":92},{"x":-18,"y":120},{"x":-30,"y":-31},{"x":37,"y":114},{"x":-70,"y":7},{"x":-22,"y":80},{"x":44,"y":76},{"x":-81,"y":39},{"x":-120,"y":-401},{"x":65,"y":36},{"x":22,"y":-156},{"x":39,"y":33},{"x":29,"y":-115},{"x":-94,"y":55},{"x":81,"y":-136},{"x":-80,"y":15},{"x":58,"y":-124},{"x":-49,"y":7},{"x":17,"y":-99},{"x":-46,"y":81},{"x":-7,"y":-99},{"x":23,"y":-139},{"x":57,"y":-28},{"x":-66,"y":-18},{"x":61,"y":-102},{"x":-63,"y":-18},{"x":15,"y":-88},{"x":94,"y":-9},{"x":-93,"y":-11},{"x":43,"y":-14},{"x":-40,"y":-55},{"x":103,"y":-37},{"x":67,"y":349},{"x":43,"y":-136},{"x":111,"y":-61},{"x":-6,"y":215},{"x":-93,"y":80},{"x":-27,"y":161},{"x":10,"y":122},{"x":162,"y":137},{"x":-129,"y":-192},{"x":11,"y":-113},{"x":47,"y":42},{"x":-18,"y":-98},{"x":45,"y":-1},{"x":6,"y":122},{"x":8,"y":-166},{"x":55,"y":201},{"x":8,"y":-115},{"x":86,"y":39},{"x":-111,"y":-102},{"x":-5,"y":-97},{"x":68,"y":52},{"x":-56,"y":-201},{"x":152,"y":110},{"x":25,"y":192},{"x":-79,"y":326},{"x":60,"y":-111},{"x":1,"y":183},{"x":46,"y":33},{"x":-36,"y":-128},{"x":34,"y":-269},{"x":4,"y":168},{"x":126,"y":-201},{"x":33,"y":-177},{"x":45,"y":10},{"x":-8,"y":139},{"x":23,"y":-156},{"x":63,"y":4},{"x":-13,"y":330},{"x":-144,"y":243},{"x":-10,"y":146},{"x":31,"y":101},{"x":3,"y":-215},{"x":136,"y":-204},{"x":54,"y":619},{"x":12,"y":-225},{"x":59,"y":423},{"x":0,"y":-299},{"x":130,"y":254},{"x":-77,"y":-229},{"x":19,"y":-94},{"x":-61,"y":28},{"x":-67,"y":-236},{"x":-18,"y":-231},{"x":60,"y":165},{"x":-26,"y":-211},{"x":33,"y":27},{"x":-70,"y":-76},{"x":0,"y":-269},{"x":100,"y":60},{"x":46,"y":393},{"x":-34,"y":-412},{"x":-87,"y":-234},{"x":63,"y":-211},{"x":17,"y":333},{"x":66,"y":237},{"x":-64,"y":-617},{"x":41,"y":-57},{"x":12,"y":165},{"x":21,"y":-120},{"x":40,"y":317},{"x":-34,"y":-377},{"x":59,"y":101},{"x":-23,"y":-229},{"x":30,"y":-59},{"x":54,"y":208},{"x":-21,"y":111},{"x":67,"y":153},{"x":-48,"y":163},{"x":37,"y":12},{"x":-37,"y":247},{"x":71,"y":-277},{"x":62,"y":264},{"x":-93,"y":192},{"x":-6,"y":152},{"x":57,"y":-133},{"x":-108,"y":455},{"x":127,"y":-423},{"x":27,"y":149},{"x":35,"y":-103},{"x":-26,"y":213},{"x":63,"y":-117},{"x":-33,"y":364},{"x":51,"y":-229},{"x":5,"y":313},{"x":-106,"y":199},{"x":37,"y":99},{"x":94,"y":-210},{"x":-7,"y":356},{"x":-68,"y":196},{"x":83,"y":-47},{"x":-42,"y":260},{"x":48,"y":-35},{"x":4,"y":175}],"type":"coastline"},{"arc":[{"x":30962,"y":22985},{"x":-31,"y":53}],"type":"coastline"},{"arc":[{"x":30870,"y":23035},{"x":-46,"y":7}],"type":"area"},{"arc":[{"x":30780,"y":23148},{"x":-73,"y":-1},{"x":-1,"y":-50},{"x":-30,"y":13},{"x":-14,"y":-6},{"x":-17,"y":8},{"x":-4,"y":-1},{"x":-3,"y":-4},{"x":-3,"y":-5},{"x":0,"y":-4},{"x":34,"y":-15},{"x":-16,"y":-46},{"x":45,"y":-13},{"x":-7,"y":-6},{"x":8,"y":-6},{"x":-1,"y":-6},{"x":-3,"y":-3},{"x":-11,"y":-3},{"x":-24,"y":5},{"x":-22,"y":-6},{"x":-43,"y":-27},{"x":-49,"y":0},{"x":142,"y":-74},{"x":-41,"y":-38},{"x":-33,"y":3},{"x":-8,"y":-10},{"x":-20,"y":-5},{"x":-4,"y":-11},{"x":-5,"y":-3},{"x":-5,"y":0},{"x":0,"y":-2},{"x":-4,"y":-1},{"x":-1,"y":-2},{"x":3,"y":-12},{"x":0,"y":-4},{"x":12,"y":-19},{"x":-17,"y":-22},{"x":-7,"y":-25},{"x":3,"y":-11},{"x":10,"y":-6},{"x":13,"y":-3},{"x":13,"y":-9},{"x":0,"y":-8},{"x":14,"y":2},{"x":5,"y":-11},{"x":4,"y":-1},{"x":8,"y":1},{"x":8,"y":2},{"x":10,"y":4},{"x":18,"y":-9},{"x":15,"y":4},{"x":3,"y":-3},{"x":6,"y":-18},{"x":-1,"y":-16},{"x":-12,"y":-22},{"x":-35,"y":-2},{"x":-25,"y":-39},{"x":19,"y":0},{"x":7,"y":16},{"x":26,"y":5},{"x":50,"y":-2},{"x":40,"y":38},{"x":41,"y":2},{"x":87,"y":72},{"x":36,"y":-8},{"x":22,"y":193},{"x":48,"y":0},{"x":-29,"y":67}],"type":"coastline"},{"arc":[{"x":7738,"y":13691},{"x":-45,"y":2},{"x":17,"y":-29},{"x":28,"y":27}],"type":"coastline"},{"arc":[{"x":7872,"y":13571},{"x":-35,"y":-35},{"x":24,"y":-52},{"x":-49,"y":103},{"x":-2,"y":-65},{"x":-30,"y":73},{"x":-70,"y":9},{"x":54,"y":-34},{"x":-4,"y":-65},{"x":69,"y":10},{"x":6,"y":-77},{"x":-79,"y":33},{"x":47,"y":-76},{"x":29,"y":35},{"x":5,"y":-64},{"x":37,"y":90},{"x":-2,"y":115}],"type":"coastline"},{"arc":[{"x":7891,"y":13636},{"x":-12,"y":76},{"x":-73,"y":-5},{"x":16,"y":-111},{"x":65,"y":-27},{"x":4,"y":67}],"type":"coastline"},{"arc":[{"x":7882,"y":13308},{"x":-14,"y":-27},{"x":-22,"y":56},{"x":-22,"y":-28},{"x":37,"y":-62},{"x":21,"y":61}],"type":"coastline"},{"arc":[{"x":7892,"y":13429},{"x":-11,"y":42},{"x":-18,"y":-91},{"x":34,"y":0},{"x":-5,"y":49}],"type":"coastline"},{"arc":[{"x":8099,"y":13184},{"x":-44,"y":37},{"x":20,"y":25},{"x":-64,"y":-12},{"x":61,"y":-37},{"x":-26,"y":-30},{"x":53,"y":17}],"type":"coastline"},{"arc":[{"x":8122,"y":13143},{"x":-9,"y":26},{"x":-54,"y":-14},{"x":34,"y":-23},{"x":-73,"y":13},{"x":92,"y":-50},{"x":10,"y":48}],"type":"coastline"},{"arc":[{"x":8125,"y":13319},{"x":-40,"y":4},{"x":22,"y":-35},{"x":-61,"y":16},{"x":79,"y":-44},{"x":2,"y":36},{"x":68,"y":8},{"x":-70,"y":15}],"type":"coastline"},{"arc":[{"x":8230,"y":12937},{"x":-37,"y":9},{"x":30,"y":-39},{"x":7,"y":30}],"type":"coastline"},{"arc":[{"x":8211,"y":13004},{"x":-43,"y":15},{"x":51,"y":3},{"x":-77,"y":88},{"x":-11,"y":-31},{"x":-45,"y":6},{"x":-17,"y":-71},{"x":59,"y":34},{"x":10,"y":-50},{"x":-50,"y":-5},{"x":75,"y":-20},{"x":-12,"y":-40},{"x":40,"y":3},{"x":-19,"y":75},{"x":44,"y":-57},{"x":-5,"y":50}],"type":"coastline"},{"arc":[{"x":8361,"y":12931},{"x":-29,"y":25},{"x":9,"y":-50},{"x":20,"y":25}],"type":"coastline"},{"arc":[{"x":8384,"y":12801},{"x":-143,"y":193},{"x":9,"y":-60},{"x":58,"y":-36},{"x":-9,"y":-53},{"x":85,"y":-44}],"type":"coastline"},{"arc":[{"x":7920,"y":13535},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":7897,"y":13533},{"x":24,"y":-33},{"x":-26,"y":23},{"x":-11,"y":-48},{"x":57,"y":-60},{"x":-29,"y":-35},{"x":32,"y":-7},{"x":-36,"y":-3},{"x":0,"y":-38},{"x":33,"y":8},{"x":-34,"y":-63},{"x":51,"y":33},{"x":-36,"y":-65},{"x":55,"y":-25},{"x":-35,"y":-31},{"x":41,"y":-63},{"x":-15,"y":40},{"x":35,"y":-21},{"x":9,"y":59},{"x":-31,"y":33},{"x":44,"y":35},{"x":-64,"y":5},{"x":47,"y":21},{"x":-34,"y":56},{"x":97,"y":-98},{"x":-71,"y":97},{"x":38,"y":12},{"x":-67,"y":32},{"x":62,"y":-10},{"x":-14,"y":43},{"x":-27,"y":33},{"x":-49,"y":-18},{"x":23,"y":25},{"x":33,"y":22},{"x":72,"y":-124},{"x":68,"y":-21},{"x":102,"y":101},{"x":-4,"y":-129},{"x":82,"y":0},{"x":22,"y":40},{"x":33,"y":-41},{"x":-19,"y":62},{"x":90,"y":60},{"x":-53,"y":34},{"x":10,"y":62}],"type":"coastline"},{"arc":[{"x":8455,"y":12917},{"x":-63,"y":-9},{"x":30,"y":-9},{"x":-35,"y":-33},{"x":62,"y":14},{"x":6,"y":37}],"type":"coastline"},{"arc":[{"x":8521,"y":12855},{"x":-48,"y":36},{"x":-16,"y":-22},{"x":64,"y":-14}],"type":"coastline"},{"arc":[{"x":8636,"y":12880},{"x":-45,"y":2},{"x":23,"y":-28},{"x":22,"y":26}],"type":"coastline"},{"arc":[{"x":8726,"y":12801},{"x":-37,"y":16},{"x":-23,"y":-57},{"x":60,"y":41}],"type":"coastline"},{"arc":[{"x":8816,"y":12826},{"x":-65,"y":9},{"x":7,"y":-60},{"x":38,"y":-4},{"x":-8,"y":36},{"x":44,"y":-4},{"x":-16,"y":23}],"type":"coastline"},{"arc":[{"x":8837,"y":12793},{"x":-41,"y":6},{"x":8,"y":-29},{"x":33,"y":23}],"type":"coastline"},{"arc":[{"x":8886,"y":12718},{"x":-2,"y":32},{"x":-66,"y":-26},{"x":68,"y":-6}],"type":"coastline"},{"arc":[{"x":8889,"y":12824},{"x":-84,"y":35},{"x":26,"y":-38},{"x":58,"y":3}],"type":"coastline"},{"arc":[{"x":8898,"y":12765},{"x":-6,"y":-24},{"x":42,"y":30},{"x":-36,"y":-6}],"type":"coastline"},{"arc":[{"x":8989,"y":12726},{"x":-26,"y":61},{"x":-66,"y":-55},{"x":31,"y":6},{"x":-11,"y":-32},{"x":46,"y":11},{"x":-23,"y":27},{"x":49,"y":-18}],"type":"coastline"},{"arc":[{"x":9094,"y":12703},{"x":-77,"y":37},{"x":42,"y":-23},{"x":-33,"y":-30},{"x":68,"y":16}],"type":"coastline"},{"arc":[{"x":9212,"y":12752},{"x":-54,"y":18},{"x":30,"y":-37},{"x":24,"y":19}],"type":"coastline"},{"arc":[{"x":9248,"y":12710},{"x":-42,"y":24},{"x":22,"y":-51},{"x":20,"y":27}],"type":"coastline"},{"arc":[{"x":9282,"y":12801},{"x":-226,"y":31},{"x":-72,"y":-42},{"x":84,"y":-18},{"x":74,"y":33},{"x":-29,"y":-42},{"x":-94,"y":-2},{"x":129,"y":-56},{"x":-40,"y":37},{"x":55,"y":-17},{"x":-24,"y":50},{"x":93,"y":8},{"x":30,"y":-28},{"x":20,"y":46}],"type":"coastline"},{"arc":[{"x":9343,"y":12716},{"x":-54,"y":-26},{"x":56,"y":-4},{"x":-2,"y":30}],"type":"coastline"},{"arc":[{"x":9396,"y":12796},{"x":-106,"y":14},{"x":42,"y":-52},{"x":7,"y":36},{"x":57,"y":2}],"type":"coastline"},{"arc":[{"x":9423,"y":12747},{"x":-17,"y":39},{"x":-60,"y":-28},{"x":77,"y":-11}],"type":"coastline"},{"arc":[{"x":9432,"y":12719},{"x":-145,"y":16},{"x":80,"y":-12},{"x":-11,"y":-28},{"x":23,"y":25},{"x":47,"y":-29},{"x":6,"y":28}],"type":"coastline"},{"arc":[{"x":9488,"y":12782},{"x":-66,"y":13},{"x":17,"y":-66},{"x":49,"y":53}],"type":"coastline"},{"arc":[{"x":9477,"y":12886},{"x":-21,"y":18},{"x":8,"y":-82},{"x":13,"y":64}],"type":"coastline"},{"arc":[{"x":9938,"y":12796},{"x":-48,"y":-9},{"x":-17,"y":-33},{"x":23,"y":25},{"x":28,"y":-30},{"x":14,"y":47}],"type":"coastline"},{"arc":[{"x":9980,"y":12848},{"x":-34,"y":-22},{"x":74,"y":8},{"x":-40,"y":14}],"type":"coastline"},{"arc":[{"x":9981,"y":12929},{"x":-30,"y":-7},{"x":71,"y":2},{"x":-41,"y":5}],"type":"coastline"},{"arc":[{"x":10120,"y":12902},{"x":-63,"y":13},{"x":30,"y":-61},{"x":33,"y":48}],"type":"coastline"},{"arc":[{"x":10204,"y":12892},{"x":-40,"y":-40},{"x":27,"y":-19},{"x":13,"y":59}],"type":"coastline"},{"arc":[{"x":10244,"y":13013},{"x":-18,"y":26},{"x":-16,"y":-32},{"x":-24,"y":18},{"x":-52,"y":-54},{"x":67,"y":-23},{"x":17,"y":40},{"x":35,"y":-9},{"x":-9,"y":34}],"type":"coastline"},{"arc":[{"x":10398,"y":12901},{"x":-28,"y":11},{"x":3,"y":-49},{"x":25,"y":38}],"type":"coastline"},{"arc":[{"x":10838,"y":12889},{"x":-7,"y":55},{"x":-94,"y":16},{"x":-53,"y":-54},{"x":-136,"y":39},{"x":-4,"y":-34},{"x":-69,"y":-9},{"x":42,"y":-68},{"x":321,"y":55}],"type":"coastline"},{"arc":[{"x":8468,"y":13558},{"x":32,"y":-95},{"x":-73,"y":-54},{"x":-43,"y":-144},{"x":-233,"y":-14},{"x":-29,"y":-38},{"x":108,"y":-142},{"x":40,"y":73},{"x":-66,"y":5},{"x":67,"y":9},{"x":68,"y":76},{"x":43,"y":-34},{"x":-89,"y":-76},{"x":10,"y":-66},{"x":-22,"y":45},{"x":-31,"y":-55},{"x":-50,"y":34},{"x":67,"y":-101},{"x":-11,"y":59},{"x":101,"y":-32},{"x":30,"y":33},{"x":-36,"y":-1},{"x":50,"y":150},{"x":32,"y":-168},{"x":-45,"y":-16},{"x":11,"y":39},{"x":-42,"y":-42},{"x":-48,"y":4},{"x":9,"y":-55},{"x":26,"y":28},{"x":23,"y":-44},{"x":63,"y":83},{"x":19,"y":-38},{"x":-54,"y":-9},{"x":29,"y":-15},{"x":-39,"y":-37},{"x":54,"y":25},{"x":100,"y":-29},{"x":-43,"y":52},{"x":35,"y":37},{"x":-43,"y":16},{"x":72,"y":8},{"x":-64,"y":32},{"x":-51,"y":-48},{"x":0,"y":50},{"x":148,"y":7},{"x":83,"y":-76},{"x":-16,"y":-21},{"x":-64,"y":85},{"x":39,"y":-87},{"x":-42,"y":35},{"x":-20,"y":-26},{"x":5,"y":35},{"x":-53,"y":-37},{"x":99,"y":-20},{"x":-115,"y":11},{"x":28,"y":-33},{"x":80,"y":13},{"x":-21,"y":-31},{"x":84,"y":-27},{"x":-50,"y":40},{"x":110,"y":-10},{"x":-11,"y":-53},{"x":56,"y":-16},{"x":-5,"y":55},{"x":65,"y":4},{"x":0,"y":36},{"x":25,"y":-30},{"x":35,"y":19},{"x":-94,"y":-58},{"x":77,"y":-31},{"x":-14,"y":51},{"x":40,"y":-17},{"x":-17,"y":-28},{"x":58,"y":-54},{"x":21,"y":42},{"x":-45,"y":60},{"x":67,"y":-62},{"x":-19,"y":58},{"x":49,"y":-2},{"x":-3,"y":-51},{"x":35,"y":32},{"x":18,"y":-32},{"x":21,"y":33},{"x":-40,"y":44},{"x":67,"y":-53},{"x":36,"y":6},{"x":-20,"y":28},{"x":60,"y":-24},{"x":12,"y":26},{"x":4,"y":-28},{"x":-115,"y":-19},{"x":31,"y":-25},{"x":130,"y":-3},{"x":15,"y":47},{"x":29,"y":-41},{"x":31,"y":24},{"x":-28,"y":25},{"x":42,"y":12},{"x":92,"y":-89},{"x":-51,"y":51},{"x":54,"y":-12},{"x":-9,"y":65},{"x":-49,"y":26},{"x":38,"y":34},{"x":41,"y":-45},{"x":-24,"y":51},{"x":51,"y":-58},{"x":56,"y":-2},{"x":-71,"y":-24},{"x":28,"y":-99},{"x":38,"y":22},{"x":-47,"y":42},{"x":33,"y":20},{"x":40,"y":-59},{"x":48,"y":25},{"x":-8,"y":43},{"x":96,"y":-19},{"x":17,"y":-107},{"x":71,"y":9},{"x":-59,"y":-81},{"x":-52,"y":23},{"x":62,"y":-36},{"x":195,"y":164},{"x":-11,"y":31},{"x":-67,"y":-8},{"x":12,"y":24},{"x":-38,"y":-42},{"x":14,"y":-21},{"x":-16,"y":18},{"x":15,"y":35},{"x":-29,"y":-3},{"x":-4,"y":28},{"x":45,"y":-4},{"x":-41,"y":13},{"x":-53,"y":-26},{"x":-8,"y":16},{"x":127,"y":62},{"x":-66,"y":-42},{"x":111,"y":16},{"x":37,"y":45},{"x":-26,"y":-49},{"x":74,"y":10},{"x":34,"y":34},{"x":-27,"y":49},{"x":45,"y":-77},{"x":55,"y":9},{"x":6,"y":33},{"x":43,"y":47},{"x":57,"y":16},{"x":37,"y":1},{"x":-37,"y":-16},{"x":85,"y":-69},{"x":71,"y":56},{"x":111,"y":-31},{"x":53,"y":42},{"x":125,"y":-13},{"x":-8,"y":37},{"x":63,"y":-37},{"x":22,"y":30},{"x":-58,"y":21},{"x":104,"y":-5},{"x":15,"y":-51},{"x":59,"y":71},{"x":55,"y":0},{"x":-69,"y":-35},{"x":51,"y":-44},{"x":-68,"y":-31},{"x":8,"y":-67},{"x":54,"y":32},{"x":-10,"y":-38},{"x":131,"y":-17},{"x":226,"y":29},{"x":15,"y":40},{"x":159,"y":20},{"x":415,"y":-57},{"x":44,"y":9},{"x":-2,"y":49},{"x":87,"y":0},{"x":40,"y":11},{"x":-24,"y":15},{"x":256,"y":42},{"x":101,"y":50},{"x":220,"y":26},{"x":108,"y":45},{"x":125,"y":-14},{"x":98,"y":39},{"x":461,"y":-33},{"x":166,"y":53},{"x":211,"y":-29},{"x":297,"y":74},{"x":103,"y":-6},{"x":185,"y":40},{"x":115,"y":-13},{"x":133,"y":37},{"x":160,"y":-18},{"x":213,"y":23},{"x":14,"y":-29},{"x":103,"y":8},{"x":35,"y":33},{"x":330,"y":28},{"x":697,"y":-40}],"type":"coastline"},{"arc":[{"x":16117,"y":13322},{"x":19,"y":51},{"x":126,"y":15},{"x":41,"y":41}],"type":"area"},{"arc":[{"x":16303,"y":13429},{"x":-105,"y":25},{"x":-14,"y":27},{"x":-204,"y":11},{"x":-110,"y":66},{"x":-63,"y":-31},{"x":-46,"y":20},{"x":-42,"y":-31},{"x":-71,"y":4},{"x":-194,"y":67},{"x":-345,"y":39},{"x":-1,"y":85}],"type":"coastline"},{"arc":[{"x":24773,"y":35330},{"x":-115,"y":43},{"x":-106,"y":-68},{"x":-112,"y":-7},{"x":-113,"y":-103},{"x":78,"y":-108},{"x":171,"y":-7},{"x":98,"y":83},{"x":3,"y":-18},{"x":39,"y":12},{"x":1,"y":89},{"x":37,"y":20},{"x":-33,"y":32},{"x":36,"y":-4},{"x":-36,"y":27},{"x":52,"y":9}],"type":"coastline"},{"arc":[{"x":24985,"y":35294},{"x":-35,"y":17},{"x":10,"y":-34},{"x":25,"y":17}],"type":"coastline"},{"arc":[{"x":27011,"y":36727},{"x":-38,"y":14},{"x":47,"y":-40},{"x":-9,"y":26}],"type":"coastline"},{"arc":[{"x":29806,"y":37742},{"x":107,"y":-75},{"x":-127,"y":-25},{"x":0,"y":-44},{"x":-92,"y":-49},{"x":-9,"y":-110},{"x":-92,"y":33},{"x":-47,"y":-19},{"x":81,"y":-179},{"x":-188,"y":-81},{"x":-180,"y":-199}],"type":"area"},{"arc":[{"x":29259,"y":36994},{"x":-60,"y":-31},{"x":-4,"y":-106},{"x":-195,"y":-167},{"x":-50,"y":-87},{"x":49,"y":-5},{"x":32,"y":68},{"x":40,"y":-10},{"x":30,"y":43},{"x":29,"y":-88},{"x":219,"y":131},{"x":111,"y":-52},{"x":-33,"y":-16},{"x":19,"y":-66},{"x":-161,"y":-88},{"x":-73,"y":-114},{"x":-171,"y":-74},{"x":-4,"y":-147},{"x":-111,"y":-21},{"x":-54,"y":21},{"x":-53,"y":42},{"x":-10,"y":108},{"x":-86,"y":38},{"x":-28,"y":-36},{"x":-93,"y":22},{"x":-6,"y":76},{"x":120,"y":54},{"x":33,"y":63},{"x":-91,"y":101},{"x":30,"y":67},{"x":-34,"y":69},{"x":-131,"y":-40},{"x":37,"y":-52},{"x":-57,"y":-37},{"x":-27,"y":-106},{"x":-16,"y":26},{"x":-91,"y":-33},{"x":-23,"y":-42},{"x":53,"y":-5},{"x":-11,"y":-26},{"x":-57,"y":25},{"x":-219,"y":-135},{"x":-63,"y":0},{"x":-92,"y":130},{"x":-292,"y":77},{"x":-71,"y":-8},{"x":-218,"y":134},{"x":20,"y":-116},{"x":59,"y":-41},{"x":-30,"y":-62},{"x":80,"y":-35},{"x":12,"y":-28},{"x":-91,"y":48},{"x":-9,"y":27},{"x":26,"y":30},{"x":-11,"y":34},{"x":-37,"y":-3},{"x":-119,"y":121},{"x":-83,"y":31},{"x":-77,"y":-117},{"x":-62,"y":-25},{"x":22,"y":-14},{"x":2,"y":-26},{"x":-46,"y":-41},{"x":39,"y":58},{"x":-31,"y":14},{"x":-25,"y":-13},{"x":-13,"y":20},{"x":36,"y":-5},{"x":23,"y":76},{"x":-82,"y":42},{"x":-13,"y":49},{"x":-98,"y":-85},{"x":39,"y":59},{"x":-86,"y":10},{"x":-21,"y":-26},{"x":47,"y":1},{"x":-43,"y":-8},{"x":27,"y":-18},{"x":-32,"y":-20},{"x":-33,"y":34},{"x":-15,"y":-23},{"x":-50,"y":13},{"x":27,"y":-57},{"x":-42,"y":45},{"x":-87,"y":12},{"x":-28,"y":-34},{"x":53,"y":-19},{"x":-89,"y":-25},{"x":28,"y":-49},{"x":-52,"y":37},{"x":-26,"y":-28},{"x":-127,"y":-15},{"x":22,"y":-39},{"x":-34,"y":28},{"x":-56,"y":-48},{"x":-23,"y":12},{"x":-34,"y":1},{"x":-27,"y":-35},{"x":61,"y":28},{"x":-1,"y":-19},{"x":-31,"y":-8},{"x":45,"y":-1},{"x":-15,"y":-33},{"x":-75,"y":29},{"x":-4,"y":-29},{"x":-16,"y":45},{"x":-86,"y":-59},{"x":37,"y":-45},{"x":-46,"y":29},{"x":12,"y":45},{"x":-69,"y":-30},{"x":-74,"y":25},{"x":55,"y":-43},{"x":-41,"y":-25},{"x":-40,"y":30},{"x":-30,"y":-30},{"x":30,"y":-27},{"x":-64,"y":17},{"x":-17,"y":-54},{"x":-27,"y":23},{"x":-49,"y":-17},{"x":35,"y":-23},{"x":-36,"y":-26},{"x":34,"y":-7},{"x":-56,"y":-17},{"x":5,"y":-28},{"x":-46,"y":41},{"x":-80,"y":-46},{"x":35,"y":-10},{"x":-73,"y":-9},{"x":47,"y":-21},{"x":-74,"y":-20},{"x":10,"y":-41},{"x":-70,"y":-18},{"x":15,"y":-30},{"x":-41,"y":34},{"x":0,"y":-36},{"x":-66,"y":-2},{"x":-44,"y":-83},{"x":42,"y":-9},{"x":-2,"y":-40},{"x":-13,"y":25},{"x":-44,"y":-4},{"x":27,"y":-42},{"x":26,"y":10},{"x":-32,"y":-55},{"x":-48,"y":4},{"x":60,"y":-13},{"x":-25,"y":-32},{"x":-57,"y":-1},{"x":23,"y":-35}],"type":"coastline"},{"arc":[{"x":25313,"y":35761},{"x":-6,"y":-18}],"type":"area"},{"arc":[{"x":25307,"y":35743},{"x":-17,"y":-23},{"x":122,"y":-44},{"x":28,"y":37},{"x":-5,"y":-51},{"x":-39,"y":9},{"x":-4,"y":-33},{"x":-74,"y":47},{"x":-93,"y":-12},{"x":93,"y":-41},{"x":-89,"y":29},{"x":-35,"y":-30},{"x":41,"y":-9},{"x":-79,"y":-21},{"x":25,"y":-10},{"x":-44,"y":-34},{"x":67,"y":-19},{"x":-81,"y":-13},{"x":49,"y":-48},{"x":-34,"y":13},{"x":1,"y":-39},{"x":-37,"y":13},{"x":-19,"y":-19},{"x":2,"y":-73},{"x":-78,"y":-73},{"x":54,"y":-8},{"x":-132,"y":-25},{"x":0,"y":26},{"x":-43,"y":-8},{"x":-40,"y":28},{"x":-51,"y":-31},{"x":-3,"y":-44},{"x":44,"y":11},{"x":111,"y":-42},{"x":127,"y":34},{"x":7,"y":-35},{"x":50,"y":-7},{"x":-57,"y":-8},{"x":-20,"y":-48},{"x":45,"y":0},{"x":49,"y":-41},{"x":-49,"y":-6},{"x":77,"y":-33},{"x":-79,"y":5},{"x":30,"y":-22},{"x":-54,"y":-42}],"type":"coastline"},{"arc":[{"x":25073,"y":35003},{"x":107,"y":-162},{"x":107,"y":-16},{"x":81,"y":32},{"x":24,"y":-114},{"x":104,"y":-66},{"x":-46,"y":-53},{"x":-78,"y":-21},{"x":-6,"y":-75},{"x":-64,"y":-15},{"x":66,"y":-38},{"x":-49,"y":-17},{"x":47,"y":-23},{"x":-81,"y":-38},{"x":76,"y":-65},{"x":-80,"y":-31},{"x":-3,"y":-12}],"type":"area"},{"arc":[{"x":25278,"y":34289},{"x":0,"y":-1},{"x":6,"y":-2},{"x":1,"y":-1},{"x":4,"y":-8},{"x":0,"y":-3},{"x":-1,"y":-2},{"x":-1,"y":-3},{"x":-1,"y":-5},{"x":-1,"y":-2},{"x":-11,"y":-3},{"x":1,"y":-3},{"x":24,"y":-16},{"x":-55,"y":-24},{"x":-140,"y":35},{"x":-107,"y":-5},{"x":7,"y":-61},{"x":84,"y":-12}],"type":"coastline"},{"arc":[{"x":25088,"y":34173},{"x":48,"y":-10},{"x":-76,"y":-109},{"x":139,"y":-29},{"x":24,"y":-97},{"x":174,"y":48},{"x":57,"y":-83},{"x":175,"y":-24},{"x":42,"y":25},{"x":-46,"y":-164},{"x":46,"y":25},{"x":71,"y":-26},{"x":174,"y":35},{"x":139,"y":108},{"x":57,"y":-17},{"x":154,"y":25},{"x":181,"y":-11},{"x":20,"y":-31},{"x":-33,"y":-14},{"x":135,"y":-21},{"x":84,"y":-54},{"x":-66,"y":-43}],"type":"area"},{"arc":[{"x":26587,"y":33706},{"x":83,"y":-76},{"x":-37,"y":-24},{"x":87,"y":10},{"x":65,"y":-28},{"x":-16,"y":-19},{"x":51,"y":21},{"x":26,"y":-27},{"x":-72,"y":-105},{"x":60,"y":-79},{"x":-86,"y":-46},{"x":-88,"y":-125},{"x":-154,"y":-85},{"x":-22,"y":-108}],"type":"area"},{"arc":[{"x":26384,"y":32682},{"x":160,"y":-14},{"x":18,"y":-23},{"x":-36,"y":-58},{"x":-10,"y":-2},{"x":-10,"y":3}],"type":"area"},{"arc":[{"x":26506,"y":32588},{"x":8,"y":-11},{"x":3,"y":-24},{"x":-22,"y":-13},{"x":4,"y":-69},{"x":63,"y":-60},{"x":-45,"y":-29},{"x":56,"y":-33},{"x":-52,"y":-5},{"x":-8,"y":-6},{"x":-1,"y":-10},{"x":1,"y":-2},{"x":6,"y":-2},{"x":13,"y":1},{"x":14,"y":-7},{"x":24,"y":-5},{"x":18,"y":-15},{"x":25,"y":-5},{"x":-10,"y":-71},{"x":69,"y":6},{"x":31,"y":-86},{"x":117,"y":-44},{"x":-16,"y":-69},{"x":62,"y":-20},{"x":3,"y":-11},{"x":16,"y":-1},{"x":7,"y":-4},{"x":3,"y":-4},{"x":5,"y":-1},{"x":2,"y":-1},{"x":99,"y":-124},{"x":27,"y":0},{"x":11,"y":-9},{"x":19,"y":1},{"x":4,"y":0},{"x":1,"y":-2},{"x":18,"y":-56},{"x":-20,"y":-13},{"x":11,"y":-15},{"x":-49,"y":-4},{"x":-7,"y":-10},{"x":-13,"y":0},{"x":-4,"y":-5},{"x":-6,"y":0},{"x":-4,"y":-4},{"x":4,"y":-6},{"x":-2,"y":-6},{"x":2,"y":-1},{"x":11,"y":-2},{"x":3,"y":-1},{"x":8,"y":-2},{"x":7,"y":-2},{"x":4,"y":-1},{"x":4,"y":-2},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":27032,"y":31722},{"x":81,"y":-99},{"x":40,"y":5},{"x":49,"y":-45},{"x":16,"y":-55},{"x":91,"y":-39},{"x":-27,"y":-41},{"x":147,"y":0},{"x":131,"y":-43},{"x":19,"y":42},{"x":-64,"y":25},{"x":90,"y":68},{"x":94,"y":-15},{"x":74,"y":-70},{"x":132,"y":-9},{"x":52,"y":30},{"x":71,"y":-82},{"x":195,"y":-31},{"x":0,"y":-30}],"type":"area"},{"arc":[{"x":28223,"y":31333},{"x":34,"y":-124}],"type":"coastline"},{"arc":[{"x":28257,"y":31209},{"x":57,"y":-27},{"x":-21,"y":-47},{"x":51,"y":-30},{"x":148,"y":-16},{"x":75,"y":-151}],"type":"area"},{"arc":[{"x":28567,"y":30938},{"x":23,"y":-20},{"x":5,"y":-2},{"x":4,"y":0},{"x":3,"y":11},{"x":11,"y":4},{"x":1,"y":1},{"x":3,"y":11},{"x":-3,"y":4},{"x":15,"y":12},{"x":-15,"y":21}],"type":"coastline"},{"arc":[{"x":28614,"y":30980},{"x":38,"y":33},{"x":45,"y":-33},{"x":194,"y":-7},{"x":46,"y":-61},{"x":-18,"y":-63},{"x":64,"y":-16},{"x":23,"y":17},{"x":52,"y":-26},{"x":54,"y":3}],"type":"area"},{"arc":[{"x":29112,"y":30827},{"x":5,"y":23},{"x":2,"y":2},{"x":24,"y":10},{"x":2,"y":1},{"x":26,"y":-4},{"x":9,"y":-8},{"x":4,"y":-1},{"x":4,"y":0},{"x":5,"y":0},{"x":4,"y":1},{"x":3,"y":2},{"x":6,"y":4},{"x":12,"y":2},{"x":12,"y":6},{"x":11,"y":1},{"x":5,"y":3},{"x":12,"y":43},{"x":53,"y":45},{"x":-1,"y":19},{"x":42,"y":-3},{"x":-16,"y":44},{"x":43,"y":44},{"x":-77,"y":15},{"x":13,"y":79},{"x":149,"y":64},{"x":6,"y":148},{"x":76,"y":34},{"x":113,"y":169},{"x":28,"y":12},{"x":7,"y":47},{"x":7,"y":3},{"x":4,"y":0},{"x":24,"y":-6}],"type":"coastline"},{"arc":[{"x":29729,"y":31626},{"x":102,"y":-8},{"x":57,"y":50},{"x":30,"y":-22},{"x":27,"y":51},{"x":218,"y":-55},{"x":137,"y":19},{"x":39,"y":-77},{"x":100,"y":219},{"x":-50,"y":107},{"x":65,"y":11},{"x":27,"y":-42},{"x":376,"y":89},{"x":-50,"y":200},{"x":-38,"y":9},{"x":53,"y":92},{"x":294,"y":27},{"x":38,"y":103},{"x":130,"y":36},{"x":-4,"y":56}],"type":"area"},{"arc":[{"x":31280,"y":32491},{"x":18,"y":60}],"type":"area"},{"arc":[{"x":31298,"y":32551},{"x":-45,"y":7},{"x":-10,"y":-14},{"x":-12,"y":-3},{"x":-36,"y":39},{"x":-25,"y":-14},{"x":-10,"y":5},{"x":-2,"y":10},{"x":-11,"y":12},{"x":0,"y":9},{"x":-6,"y":8},{"x":-17,"y":14},{"x":0,"y":10},{"x":-11,"y":8},{"x":-4,"y":1},{"x":-9,"y":-2},{"x":-4,"y":0},{"x":-13,"y":3},{"x":-3,"y":2},{"x":-5,"y":4},{"x":-2,"y":9},{"x":-14,"y":12},{"x":0,"y":14},{"x":-25,"y":15},{"x":-2,"y":4},{"x":-2,"y":17},{"x":1,"y":3},{"x":13,"y":14},{"x":-1,"y":23},{"x":-47,"y":25},{"x":13,"y":36},{"x":-50,"y":36},{"x":-145,"y":45},{"x":-16,"y":21},{"x":-85,"y":20},{"x":-59,"y":-19},{"x":-63,"y":13},{"x":-119,"y":-43},{"x":-69,"y":27},{"x":-53,"y":323},{"x":-137,"y":142},{"x":-14,"y":85},{"x":-59,"y":-9},{"x":-13,"y":26},{"x":-160,"y":41},{"x":-118,"y":59},{"x":14,"y":102},{"x":-50,"y":277},{"x":25,"y":66},{"x":-31,"y":183},{"x":-79,"y":62},{"x":-96,"y":201},{"x":25,"y":99},{"x":-48,"y":0},{"x":-16,"y":57},{"x":158,"y":218},{"x":36,"y":331},{"x":72,"y":112},{"x":123,"y":68},{"x":86,"y":117},{"x":146,"y":-65},{"x":156,"y":54},{"x":-66,"y":218},{"x":144,"y":109},{"x":15,"y":138},{"x":57,"y":61},{"x":131,"y":48},{"x":15,"y":94},{"x":48,"y":7},{"x":44,"y":176},{"x":-35,"y":57},{"x":-4,"y":45},{"x":15,"y":21},{"x":3,"y":2},{"x":8,"y":4},{"x":2,"y":0},{"x":41,"y":-1},{"x":59,"y":-24},{"x":186,"y":-149},{"x":1,"y":-86},{"x":-77,"y":-49},{"x":51,"y":-66},{"x":-43,"y":-110},{"x":4,"y":-8},{"x":46,"y":-33},{"x":50,"y":-8},{"x":25,"y":35},{"x":356,"y":108}],"type":"coastline"},{"arc":[{"x":31446,"y":36060},{"x":-71,"y":140},{"x":100,"y":98},{"x":14,"y":68},{"x":68,"y":19},{"x":17,"y":-27},{"x":388,"y":199},{"x":95,"y":-7},{"x":11,"y":-78},{"x":38,"y":-5},{"x":117,"y":102},{"x":64,"y":333},{"x":-177,"y":300},{"x":-578,"y":183},{"x":-94,"y":-6},{"x":-46,"y":38},{"x":-37,"y":198},{"x":-121,"y":87},{"x":-2,"y":58},{"x":-58,"y":-18},{"x":-205,"y":53},{"x":1,"y":190},{"x":90,"y":69},{"x":61,"y":157},{"x":-26,"y":40},{"x":-124,"y":7},{"x":-87,"y":-72},{"x":-240,"y":-34},{"x":-255,"y":-95},{"x":-22,"y":-24},{"x":70,"y":-130},{"x":-112,"y":-112},{"x":-328,"y":43},{"x":-106,"y":-22},{"x":-39,"y":-85},{"x":-46,"y":15}],"type":"area"},{"arc":[{"x":22446,"y":21296},{"x":-50,"y":50},{"x":50,"y":25}],"type":"coastline"},{"arc":[{"x":22446,"y":21371},{"x":25,"y":116},{"x":-114,"y":49},{"x":-4,"y":6},{"x":22,"y":9},{"x":-4,"y":1},{"x":-49,"y":2},{"x":-45,"y":-14},{"x":-190,"y":33},{"x":-60,"y":-35},{"x":-298,"y":-57},{"x":-205,"y":28},{"x":-22,"y":10},{"x":6,"y":9},{"x":-4,"y":8},{"x":-2,"y":2},{"x":-3,"y":1},{"x":-50,"y":7},{"x":-6,"y":-8},{"x":-42,"y":3},{"x":-4,"y":-45},{"x":51,"y":-1},{"x":-56,"y":-20},{"x":33,"y":-84},{"x":0,"y":33},{"x":25,"y":-9},{"x":-14,"y":-106},{"x":-30,"y":-16},{"x":11,"y":99},{"x":-23,"y":-109},{"x":23,"y":-52},{"x":-23,"y":38},{"x":-22,"y":-103},{"x":-152,"y":-205},{"x":335,"y":11},{"x":26,"y":-41},{"x":70,"y":-15},{"x":50,"y":-86},{"x":113,"y":40},{"x":126,"y":-24},{"x":-3,"y":31},{"x":106,"y":33},{"x":52,"y":-37},{"x":45,"y":1},{"x":10,"y":7},{"x":2,"y":28},{"x":-3,"y":3},{"x":-9,"y":2},{"x":-4,"y":3},{"x":-2,"y":5},{"x":2,"y":2},{"x":11,"y":3},{"x":-20,"y":6},{"x":-3,"y":13},{"x":99,"y":-37},{"x":59,"y":27},{"x":24,"y":-22},{"x":8,"y":0},{"x":20,"y":4},{"x":25,"y":3},{"x":-8,"y":-15},{"x":1,"y":-7},{"x":28,"y":-12},{"x":9,"y":-1},{"x":5,"y":0},{"x":61,"y":4},{"x":20,"y":-6},{"x":2,"y":0},{"x":1,"y":3},{"x":3,"y":1},{"x":2,"y":1},{"x":3,"y":-3},{"x":6,"y":1},{"x":10,"y":5},{"x":7,"y":9},{"x":17,"y":5},{"x":11,"y":20},{"x":51,"y":20},{"x":5,"y":18},{"x":-1,"y":3},{"x":-3,"y":2},{"x":-3,"y":1},{"x":-7,"y":0},{"x":-8,"y":3},{"x":-6,"y":0},{"x":2,"y":8},{"x":-21,"y":2},{"x":-10,"y":31},{"x":-15,"y":8},{"x":0,"y":3},{"x":2,"y":3},{"x":4,"y":2},{"x":4,"y":2},{"x":15,"y":-5},{"x":21,"y":4},{"x":4,"y":36},{"x":66,"y":0},{"x":-23,"y":27},{"x":39,"y":23},{"x":-48,"y":-1},{"x":-21,"y":10},{"x":-38,"y":-7},{"x":-14,"y":27},{"x":42,"y":17},{"x":9,"y":9},{"x":6,"y":15},{"x":3,"y":12},{"x":-9,"y":9},{"x":-26,"y":13},{"x":-1,"y":34},{"x":-110,"y":41}],"type":"coastline"},{"arc":[{"x":20744,"y":23846},{"x":-131,"y":-15},{"x":62,"y":-44},{"x":62,"y":-140},{"x":-17,"y":-15},{"x":9,"y":-14},{"x":-4,"y":-6},{"x":2,"y":-119}],"type":"area"},{"arc":[{"x":20727,"y":23493},{"x":12,"y":1},{"x":3,"y":-1},{"x":3,"y":-1},{"x":3,"y":-2},{"x":2,"y":-2},{"x":2,"y":-1},{"x":9,"y":-112},{"x":-3,"y":-118},{"x":-30,"y":-3},{"x":0,"y":-162},{"x":10,"y":-15},{"x":12,"y":-7},{"x":17,"y":-1},{"x":209,"y":15},{"x":124,"y":-46},{"x":0,"y":24},{"x":31,"y":-15},{"x":40,"y":16},{"x":-50,"y":-50},{"x":42,"y":-45},{"x":121,"y":-15},{"x":22,"y":-24},{"x":-50,"y":9},{"x":8,"y":-27},{"x":137,"y":36},{"x":151,"y":6},{"x":217,"y":114},{"x":48,"y":43},{"x":-30,"y":43},{"x":57,"y":10},{"x":-87,"y":56},{"x":-9,"y":2},{"x":-29,"y":1},{"x":-28,"y":4},{"x":-3,"y":2},{"x":-1,"y":4},{"x":2,"y":11},{"x":-2,"y":3},{"x":3,"y":2},{"x":-2,"y":5},{"x":5,"y":6},{"x":4,"y":3},{"x":22,"y":3},{"x":16,"y":14},{"x":52,"y":4},{"x":46,"y":37},{"x":41,"y":-16},{"x":157,"y":55},{"x":96,"y":5},{"x":50,"y":17},{"x":-1,"y":23},{"x":12,"y":12},{"x":21,"y":6},{"x":2,"y":8},{"x":6,"y":3},{"x":52,"y":4},{"x":17,"y":-1},{"x":38,"y":9},{"x":26,"y":-5},{"x":37,"y":41},{"x":113,"y":5},{"x":24,"y":24},{"x":194,"y":39},{"x":59,"y":28},{"x":-9,"y":22},{"x":58,"y":52},{"x":10,"y":3},{"x":38,"y":-9},{"x":105,"y":15},{"x":44,"y":-58},{"x":159,"y":-15}],"type":"coastline"},{"arc":[{"x":23182,"y":23587},{"x":1,"y":43},{"x":-105,"y":50},{"x":-187,"y":34},{"x":-280,"y":3},{"x":-123,"y":66},{"x":-3,"y":-182},{"x":-77,"y":-28},{"x":-260,"y":150},{"x":-155,"y":46},{"x":-60,"y":-10}],"type":"area"},{"arc":[{"x":28126,"y":26011},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":28125,"y":26013},{"x":1,"y":-15}],"type":"coastline"},{"arc":[{"x":28126,"y":25998},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":28128,"y":25999},{"x":-2,"y":12}],"type":"area"},{"arc":[{"x":28151,"y":25838},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":28152,"y":25840},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":28154,"y":25845},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":28154,"y":25847},{"x":-3,"y":-9}],"type":"area"},{"arc":[{"x":28120,"y":25971},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":28109,"y":25974},{"x":44,"y":-123}],"type":"area"},{"arc":[{"x":28153,"y":25851},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":28153,"y":25853},{"x":-33,"y":118}],"type":"area"},{"arc":[{"x":21381,"y":25213},{"x":-107,"y":40},{"x":-72,"y":74},{"x":63,"y":45},{"x":-49,"y":54},{"x":75,"y":32},{"x":-20,"y":36},{"x":-141,"y":53},{"x":-104,"y":79}],"type":"area"},{"arc":[{"x":21026,"y":25626},{"x":-235,"y":-16},{"x":-77,"y":68},{"x":-288,"y":-161},{"x":-498,"y":-45},{"x":-56,"y":-40},{"x":-126,"y":-13},{"x":-14,"y":-8},{"x":-4,"y":-10},{"x":-2,"y":-1},{"x":-4,"y":0},{"x":-8,"y":-3},{"x":-3,"y":-1},{"x":-2,"y":-3},{"x":-4,"y":-5},{"x":-2,"y":-2},{"x":-6,"y":-1},{"x":-9,"y":1},{"x":-7,"y":1},{"x":-7,"y":-2},{"x":-13,"y":5},{"x":-17,"y":-1},{"x":-89,"y":42},{"x":-315,"y":20}],"type":"coastline"},{"arc":[{"x":19240,"y":25451},{"x":-419,"y":17},{"x":-188,"y":92},{"x":-235,"y":55}],"type":"area"},{"arc":[{"x":18398,"y":25615},{"x":-65,"y":-226},{"x":-64,"y":0},{"x":-114,"y":-65},{"x":-117,"y":42},{"x":-96,"y":-16},{"x":-95,"y":16},{"x":-200,"y":-42},{"x":-190,"y":82},{"x":-17,"y":57},{"x":47,"y":-3},{"x":20,"y":39},{"x":-292,"y":-2},{"x":51,"y":-25},{"x":-38,"y":-71},{"x":197,"y":-69},{"x":51,"y":-95},{"x":163,"y":-56},{"x":-100,"y":-56},{"x":25,"y":-90},{"x":58,"y":-77},{"x":101,"y":-4},{"x":-60,"y":-105},{"x":12,"y":-10},{"x":0,"y":-7},{"x":2,"y":-2},{"x":4,"y":-1},{"x":63,"y":11},{"x":13,"y":-30},{"x":28,"y":-2},{"x":11,"y":-17}],"type":"coastline"},{"arc":[{"x":18924,"y":23480},{"x":-44,"y":-91},{"x":64,"y":-27}],"type":"coastline"},{"arc":[{"x":19198,"y":23466},{"x":-56,"y":39},{"x":45,"y":39},{"x":52,"y":0},{"x":40,"y":82},{"x":-137,"y":2},{"x":-3,"y":33},{"x":189,"y":104},{"x":32,"y":46},{"x":136,"y":39},{"x":254,"y":-4},{"x":205,"y":77},{"x":168,"y":112},{"x":603,"y":39},{"x":125,"y":39},{"x":79,"y":16},{"x":14,"y":11},{"x":12,"y":2},{"x":32,"y":1},{"x":28,"y":-1},{"x":59,"y":-5},{"x":76,"y":7},{"x":63,"y":-13},{"x":16,"y":26},{"x":36,"y":9},{"x":46,"y":22},{"x":9,"y":1},{"x":5,"y":3},{"x":15,"y":3},{"x":11,"y":6},{"x":42,"y":35},{"x":2,"y":14},{"x":4,"y":6},{"x":-4,"y":4},{"x":0,"y":14},{"x":-1,"y":1},{"x":-3,"y":6},{"x":-7,"y":8},{"x":-19,"y":6},{"x":-52,"y":55},{"x":-80,"y":29},{"x":-65,"y":209},{"x":156,"y":73},{"x":-52,"y":62},{"x":120,"y":120},{"x":-46,"y":40},{"x":25,"y":70},{"x":78,"y":29},{"x":-74,"y":117},{"x":35,"y":69},{"x":-30,"y":45}],"type":"coastline"},{"arc":[{"x":21023,"y":24141},{"x":-35,"y":2},{"x":-32,"y":-1},{"x":-12,"y":-2},{"x":-14,"y":-11},{"x":-204,"y":-55},{"x":-603,"y":-39},{"x":-168,"y":-112},{"x":-205,"y":-77},{"x":-254,"y":4},{"x":-136,"y":-39},{"x":-32,"y":-46},{"x":-189,"y":-104},{"x":3,"y":-33},{"x":137,"y":-2},{"x":-40,"y":-82},{"x":-52,"y":0},{"x":-45,"y":-39},{"x":69,"y":-34},{"x":-13,"y":-5},{"x":5,"y":-5},{"x":50,"y":-32},{"x":-141,"y":-92},{"x":99,"y":-25},{"x":144,"y":-84},{"x":96,"y":45},{"x":-8,"y":11},{"x":-28,"y":9},{"x":-6,"y":5},{"x":-3,"y":18},{"x":5,"y":5},{"x":10,"y":4},{"x":77,"y":4},{"x":98,"y":-50},{"x":53,"y":11},{"x":29,"y":-5},{"x":16,"y":0},{"x":18,"y":-3},{"x":5,"y":1},{"x":0,"y":5},{"x":-4,"y":6},{"x":-15,"y":12},{"x":19,"y":23},{"x":-19,"y":15},{"x":19,"y":48},{"x":100,"y":-4},{"x":13,"y":25},{"x":-21,"y":21},{"x":-102,"y":20},{"x":-15,"y":59},{"x":77,"y":35},{"x":-83,"y":12},{"x":-7,"y":30},{"x":32,"y":18},{"x":29,"y":-11},{"x":21,"y":10},{"x":21,"y":3},{"x":5,"y":-3},{"x":6,"y":1},{"x":2,"y":0},{"x":2,"y":1},{"x":1,"y":1},{"x":14,"y":17},{"x":3,"y":1},{"x":10,"y":-1},{"x":25,"y":2},{"x":11,"y":5},{"x":17,"y":-11},{"x":46,"y":15},{"x":17,"y":-7},{"x":24,"y":5},{"x":13,"y":-5},{"x":33,"y":-4},{"x":22,"y":2},{"x":15,"y":6},{"x":18,"y":-2},{"x":25,"y":6},{"x":8,"y":1},{"x":7,"y":-1},{"x":10,"y":-3},{"x":3,"y":-2},{"x":13,"y":-7},{"x":5,"y":-4},{"x":4,"y":-5},{"x":2,"y":-3},{"x":-4,"y":-6},{"x":3,"y":-6},{"x":-4,"y":-5},{"x":40,"y":-7},{"x":16,"y":-32},{"x":12,"y":1},{"x":23,"y":9},{"x":56,"y":-6},{"x":34,"y":9},{"x":61,"y":47},{"x":66,"y":17},{"x":49,"y":-23},{"x":45,"y":-3},{"x":14,"y":-13},{"x":9,"y":-43},{"x":-34,"y":-30},{"x":-6,"y":-48},{"x":1,"y":2},{"x":6,"y":1},{"x":1,"y":1},{"x":4,"y":6},{"x":6,"y":2},{"x":21,"y":-1},{"x":37,"y":-14},{"x":69,"y":4},{"x":33,"y":15},{"x":5,"y":1},{"x":7,"y":0},{"x":14,"y":0}],"type":"coastline"},{"arc":[{"x":22906,"y":13208},{"x":-43,"y":-78},{"x":-114,"y":-36},{"x":-7,"y":-28},{"x":-438,"y":-109},{"x":27,"y":47},{"x":-41,"y":26},{"x":-227,"y":56},{"x":-139,"y":-18},{"x":-106,"y":59},{"x":-9,"y":227},{"x":-201,"y":107},{"x":53,"y":173},{"x":-26,"y":46},{"x":-194,"y":-47},{"x":-181,"y":-5},{"x":-258,"y":69},{"x":-134,"y":-67},{"x":5,"y":28},{"x":-94,"y":53},{"x":-263,"y":38}],"type":"area"},{"arc":[{"x":19288,"y":13374},{"x":91,"y":-42},{"x":11,"y":-52},{"x":259,"y":78},{"x":94,"y":-98},{"x":-37,"y":-63},{"x":55,"y":-40},{"x":-62,"y":-52},{"x":-4,"y":-92},{"x":48,"y":-32},{"x":95,"y":0},{"x":26,"y":-41},{"x":94,"y":-12},{"x":64,"y":-77},{"x":180,"y":-68},{"x":15,"y":-56}],"type":"area"},{"arc":[{"x":20217,"y":12727},{"x":127,"y":-123},{"x":-55,"y":-32},{"x":39,"y":-102},{"x":102,"y":-37},{"x":18,"y":-50},{"x":115,"y":-86}],"type":"area"},{"arc":[{"x":20563,"y":12297},{"x":46,"y":-24},{"x":32,"y":55},{"x":92,"y":-16},{"x":55,"y":15},{"x":48,"y":28},{"x":-35,"y":26},{"x":36,"y":5},{"x":-14,"y":40},{"x":88,"y":5},{"x":210,"y":84},{"x":-17,"y":-27},{"x":51,"y":8},{"x":-8,"y":-30},{"x":53,"y":24},{"x":18,"y":-18},{"x":81,"y":15},{"x":157,"y":-15},{"x":22,"y":-21},{"x":52,"y":38},{"x":102,"y":-29},{"x":85,"y":17},{"x":151,"y":-67}],"type":"coastline"},{"arc":[{"x":21868,"y":12410},{"x":106,"y":16},{"x":-40,"y":22},{"x":92,"y":51},{"x":120,"y":-40},{"x":43,"y":14}],"type":"area"},{"arc":[{"x":22189,"y":12473},{"x":-166,"y":75},{"x":111,"y":-2},{"x":28,"y":-21},{"x":202,"y":122},{"x":3,"y":39},{"x":177,"y":11},{"x":-24,"y":-21},{"x":97,"y":22},{"x":122,"y":83},{"x":-26,"y":66},{"x":-28,"y":-36},{"x":-27,"y":24},{"x":134,"y":30},{"x":-11,"y":104},{"x":133,"y":126},{"x":78,"y":11},{"x":-15,"y":28},{"x":67,"y":29},{"x":-36,"y":57},{"x":-52,"y":15},{"x":-50,"y":-27}],"type":"coastline"},{"arc":[{"x":17523,"y":27284},{"x":-67,"y":4},{"x":50,"y":-38},{"x":17,"y":34}],"type":"coastline"},{"arc":[{"x":17557,"y":27160},{"x":41,"y":-30},{"x":83,"y":7},{"x":-124,"y":23}],"type":"coastline"},{"arc":[{"x":23576,"y":18920},{"x":36,"y":-19},{"x":9,"y":19},{"x":-45,"y":0}],"type":"coastline"},{"arc":[{"x":23685,"y":18992},{"x":-89,"y":30},{"x":27,"y":-34},{"x":62,"y":4}],"type":"coastline"},{"arc":[{"x":23885,"y":19100},{"x":-12,"y":21},{"x":-37,"y":-15},{"x":15,"y":-20},{"x":34,"y":14}],"type":"coastline"},{"arc":[{"x":23983,"y":18925},{"x":-18,"y":32},{"x":-17,"y":-36},{"x":35,"y":-13},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":24107,"y":18828},{"x":-24,"y":14},{"x":-38,"y":-39},{"x":35,"y":-7},{"x":27,"y":32}],"type":"coastline"},{"arc":[{"x":22698,"y":11711},{"x":-179,"y":54},{"x":-125,"y":76}],"type":"coastline"},{"arc":[{"x":22394,"y":11841},{"x":-27,"y":-44},{"x":-89,"y":0},{"x":-31,"y":27},{"x":-37,"y":-25},{"x":-66,"y":9},{"x":-30,"y":-25},{"x":-66,"y":19}],"type":"area"},{"arc":[{"x":22048,"y":11802},{"x":75,"y":-31},{"x":60,"y":-2},{"x":17,"y":-38},{"x":-75,"y":24},{"x":48,"y":-55},{"x":102,"y":12},{"x":120,"y":-119},{"x":87,"y":-14},{"x":71,"y":-68},{"x":-102,"y":52},{"x":-61,"y":-30},{"x":77,"y":-67},{"x":102,"y":-26},{"x":96,"y":26},{"x":25,"y":-35},{"x":43,"y":30}],"type":"coastline"},{"arc":[{"x":22733,"y":11461},{"x":29,"y":13},{"x":-61,"y":84},{"x":29,"y":28},{"x":-80,"y":92},{"x":48,"y":33}],"type":"area"},{"arc":[{"x":25173,"y":11807},{"x":-76,"y":38},{"x":-29,"y":-64},{"x":37,"y":-15},{"x":-15,"y":29},{"x":63,"y":-15},{"x":20,"y":27}],"type":"coastline"},{"arc":[{"x":25310,"y":12354},{"x":-27,"y":-9},{"x":27,"y":-32},{"x":0,"y":41}],"type":"coastline"},{"arc":[{"x":24715,"y":12750},{"x":17,"y":-5}],"type":"coastline"},{"arc":[{"x":24732,"y":12745},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":24732,"y":12742},{"x":-16,"y":-8}],"type":"coastline"},{"arc":[{"x":24716,"y":12734},{"x":-16,"y":-301},{"x":121,"y":72},{"x":61,"y":-10},{"x":17,"y":-106},{"x":73,"y":-51},{"x":135,"y":-31},{"x":19,"y":-153},{"x":106,"y":-59},{"x":-34,"y":2},{"x":10,"y":-75},{"x":44,"y":-13},{"x":-50,"y":-1},{"x":29,"y":-76},{"x":47,"y":-41},{"x":20,"y":62},{"x":43,"y":-27},{"x":6,"y":-107},{"x":-117,"y":-80},{"x":-3,"y":-62},{"x":-57,"y":-13},{"x":-34,"y":-58},{"x":37,"y":2},{"x":-12,"y":-55},{"x":32,"y":80},{"x":41,"y":-19},{"x":85,"y":28},{"x":95,"y":120},{"x":43,"y":122},{"x":-33,"y":84},{"x":37,"y":46},{"x":-20,"y":-16},{"x":-20,"y":16},{"x":27,"y":68},{"x":-46,"y":20},{"x":-12,"y":77},{"x":-109,"y":55},{"x":-6,"y":77},{"x":-168,"y":166},{"x":65,"y":-26},{"x":-59,"y":52},{"x":-12,"y":-28},{"x":-30,"y":12},{"x":29,"y":21},{"x":-67,"y":24},{"x":-43,"y":144},{"x":-24,"y":16},{"x":-27,"y":-20},{"x":-16,"y":23},{"x":4,"y":-27},{"x":-32,"y":6},{"x":1,"y":88},{"x":-103,"y":104},{"x":-78,"y":-116}],"type":"coastline"},{"arc":[{"x":28152,"y":25840},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":28128,"y":25999},{"x":-8,"y":-28}],"type":"coastline"},{"arc":[{"x":28153,"y":25853},{"x":48,"y":26},{"x":-8,"y":90},{"x":75,"y":113},{"x":-86,"y":-78},{"x":-56,"y":7}],"type":"coastline"},{"arc":[{"x":28125,"y":26013},{"x":1,"y":-15}],"type":"coastline"},{"arc":[{"x":28109,"y":25974},{"x":-58,"y":-41},{"x":-19,"y":-80},{"x":91,"y":-53},{"x":28,"y":38}],"type":"coastline"},{"arc":[{"x":28154,"y":25847},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":31679,"y":23678},{"x":0,"y":20},{"x":30,"y":-2},{"x":4,"y":22},{"x":-53,"y":26},{"x":-30,"y":118},{"x":-53,"y":-16},{"x":-71,"y":56},{"x":29,"y":44},{"x":48,"y":-15},{"x":-28,"y":99},{"x":-46,"y":-9},{"x":-44,"y":112},{"x":-90,"y":34}],"type":"area"},{"arc":[{"x":31375,"y":24167},{"x":-203,"y":-230}],"type":"area"},{"arc":[{"x":31208,"y":23557},{"x":149,"y":-143},{"x":199,"y":-69},{"x":-34,"y":28},{"x":51,"y":25},{"x":110,"y":223},{"x":36,"y":-7},{"x":0,"y":24},{"x":-43,"y":16},{"x":-7,"y":10},{"x":-1,"y":7},{"x":0,"y":2},{"x":2,"y":2},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":32401,"y":23577},{"x":-43,"y":26},{"x":-7,"y":-43},{"x":35,"y":25},{"x":36,"y":-35},{"x":-21,"y":27}],"type":"coastline"},{"arc":[{"x":32531,"y":23505},{"x":-68,"y":46},{"x":-27,"y":-44},{"x":25,"y":-35},{"x":11,"y":18},{"x":35,"y":-15},{"x":-12,"y":44},{"x":36,"y":-14}],"type":"coastline"},{"arc":[{"x":32567,"y":23025},{"x":-7,"y":62},{"x":-68,"y":-14},{"x":4,"y":37},{"x":-38,"y":0},{"x":14,"y":121},{"x":-96,"y":-28},{"x":-12,"y":67},{"x":56,"y":28},{"x":-13,"y":52},{"x":86,"y":48},{"x":-10,"y":50},{"x":-42,"y":-59},{"x":42,"y":73},{"x":-35,"y":10},{"x":-41,"y":42},{"x":2,"y":42},{"x":-57,"y":1},{"x":-23,"y":54},{"x":-10,"y":-6},{"x":-108,"y":24}],"type":"coastline"},{"arc":[{"x":32211,"y":23629},{"x":-42,"y":-11}],"type":"coastline"},{"arc":[{"x":32169,"y":23618},{"x":-42,"y":-24},{"x":-62,"y":63},{"x":-223,"y":11}],"type":"coastline"},{"arc":[{"x":31842,"y":23668},{"x":-35,"y":29}],"type":"coastline"},{"arc":[{"x":31807,"y":23697},{"x":-41,"y":8},{"x":-43,"y":-9},{"x":-31,"y":-12},{"x":-9,"y":-6},{"x":-15,"y":-5},{"x":0,"y":-2},{"x":0,"y":-2},{"x":1,"y":-5},{"x":7,"y":-10},{"x":43,"y":-16},{"x":0,"y":-24},{"x":-36,"y":7},{"x":-110,"y":-223},{"x":-51,"y":-25},{"x":34,"y":-28},{"x":-199,"y":69},{"x":-149,"y":143},{"x":-55,"y":-12},{"x":12,"y":-32},{"x":-104,"y":-87},{"x":-102,"y":40},{"x":-37,"y":-4},{"x":-6,"y":-3},{"x":0,"y":-1},{"x":0,"y":-2},{"x":2,"y":-2},{"x":-1,"y":-5},{"x":19,"y":-18},{"x":25,"y":-2},{"x":14,"y":-64},{"x":-76,"y":-122},{"x":42,"y":-98},{"x":-69,"y":-33},{"x":60,"y":-26},{"x":30,"y":-101}],"type":"coastline"},{"arc":[{"x":30962,"y":22985},{"x":29,"y":-67},{"x":-48,"y":0},{"x":-1,"y":-118}],"type":"coastline"},{"arc":[{"x":30942,"y":22800},{"x":119,"y":-1},{"x":190,"y":75},{"x":45,"y":-179},{"x":67,"y":-46}],"type":"area"},{"arc":[{"x":31363,"y":22649},{"x":77,"y":19},{"x":73,"y":-47}],"type":"coastline"},{"arc":[{"x":31654,"y":22606},{"x":66,"y":-17},{"x":93,"y":43},{"x":81,"y":-34},{"x":32,"y":107},{"x":91,"y":29},{"x":40,"y":-46},{"x":24,"y":45},{"x":134,"y":19}],"type":"area"},{"arc":[{"x":32215,"y":22752},{"x":46,"y":-21},{"x":53,"y":34},{"x":5,"y":89},{"x":-66,"y":21},{"x":45,"y":8},{"x":-16,"y":34},{"x":-41,"y":-6},{"x":120,"y":18},{"x":-14,"y":25},{"x":8,"y":51},{"x":-73,"y":68},{"x":65,"y":-54},{"x":12,"y":-16},{"x":3,"y":-33},{"x":9,"y":-9},{"x":85,"y":6},{"x":5,"y":-44},{"x":38,"y":50},{"x":88,"y":-43}],"type":"coastline"},{"arc":[{"x":32587,"y":22930},{"x":-20,"y":95}],"type":"area"},{"arc":[{"x":32586,"y":22897},{"x":0,"y":32},{"x":-34,"y":-45},{"x":73,"y":16},{"x":-39,"y":-3}],"type":"coastline"},{"arc":[{"x":22824,"y":27133},{"x":-110,"y":-38}],"type":"area"},{"arc":[{"x":22714,"y":27095},{"x":0,"y":-142},{"x":159,"y":4},{"x":171,"y":71}],"type":"area"},{"arc":[{"x":23044,"y":27028},{"x":-24,"y":37},{"x":79,"y":53},{"x":-50,"y":26},{"x":-109,"y":6},{"x":-96,"y":-105},{"x":-20,"y":88}],"type":"coastline"},{"arc":[{"x":23659,"y":14419},{"x":98,"y":-13},{"x":-37,"y":26},{"x":-61,"y":-13}],"type":"coastline"},{"arc":[{"x":32600,"y":23246},{"x":-19,"y":57},{"x":-49,"y":10},{"x":27,"y":-97},{"x":41,"y":30}],"type":"coastline"},{"arc":[{"x":32596,"y":23195},{"x":-46,"y":-18},{"x":96,"y":29},{"x":-50,"y":-11}],"type":"coastline"},{"arc":[{"x":32662,"y":23687},{"x":-54,"y":22},{"x":25,"y":-47},{"x":29,"y":25}],"type":"coastline"},{"arc":[{"x":32747,"y":23134},{"x":-38,"y":12},{"x":35,"y":27},{"x":-69,"y":21},{"x":-58,"y":-36},{"x":22,"y":-67},{"x":82,"y":-37},{"x":26,"y":80}],"type":"coastline"},{"arc":[{"x":32863,"y":23376},{"x":-18,"y":36},{"x":-81,"y":-3},{"x":-44,"y":-49},{"x":-45,"y":33},{"x":-66,"y":-70},{"x":-34,"y":34},{"x":-62,"y":-27},{"x":130,"y":-17},{"x":12,"y":-67},{"x":122,"y":-47},{"x":3,"y":58},{"x":54,"y":-9},{"x":-6,"y":60},{"x":-42,"y":-20},{"x":-28,"y":21},{"x":62,"y":19},{"x":-63,"y":15},{"x":65,"y":-4},{"x":1,"y":-21},{"x":40,"y":58}],"type":"coastline"},{"arc":[{"x":32587,"y":22930},{"x":121,"y":-5},{"x":25,"y":-64},{"x":99,"y":4},{"x":-39,"y":8},{"x":21,"y":25},{"x":26,"y":-35},{"x":146,"y":9},{"x":-42,"y":66},{"x":74,"y":41},{"x":-64,"y":32},{"x":92,"y":-15},{"x":27,"y":87},{"x":-24,"y":-151},{"x":-81,"y":-14},{"x":50,"y":-38},{"x":69,"y":45},{"x":10,"y":96},{"x":132,"y":144},{"x":-167,"y":-30},{"x":11,"y":-51},{"x":-17,"y":47},{"x":-60,"y":3},{"x":-17,"y":-65},{"x":14,"y":65},{"x":-53,"y":-19},{"x":30,"y":18},{"x":-36,"y":77},{"x":-64,"y":-27},{"x":8,"y":-59},{"x":-110,"y":-30},{"x":3,"y":-55},{"x":-20,"y":36},{"x":-31,"y":-43},{"x":-54,"y":26},{"x":-48,"y":-34},{"x":-30,"y":40},{"x":-21,"y":-39}],"type":"coastline"},{"arc":[{"x":24298,"y":13154},{"x":61,"y":8},{"x":64,"y":-37},{"x":38,"y":35},{"x":45,"y":-17},{"x":42,"y":27},{"x":125,"y":-14}],"type":"area"},{"arc":[{"x":24673,"y":13156},{"x":42,"y":12},{"x":10,"y":80},{"x":-59,"y":128},{"x":-85,"y":22},{"x":2,"y":73},{"x":-48,"y":-54},{"x":-29,"y":106},{"x":-79,"y":50},{"x":-91,"y":-40},{"x":54,"y":-71},{"x":5,"y":-78},{"x":-60,"y":-73},{"x":51,"y":-21},{"x":-27,"y":-50},{"x":-159,"y":-43},{"x":98,"y":-43}],"type":"coastline"},{"arc":[{"x":27039,"y":23035},{"x":-25,"y":-29},{"x":-222,"y":66},{"x":-293,"y":13},{"x":-121,"y":-26},{"x":-100,"y":23},{"x":-72,"y":-7},{"x":-80,"y":-58},{"x":-188,"y":77},{"x":-170,"y":31},{"x":-63,"y":155},{"x":-175,"y":52}],"type":"area"},{"arc":[{"x":25530,"y":23332},{"x":-595,"y":-545},{"x":-320,"y":-205},{"x":-69,"y":-191}],"type":"area"},{"arc":[{"x":24546,"y":22391},{"x":-14,"y":-130},{"x":166,"y":5},{"x":109,"y":-172},{"x":98,"y":-76},{"x":81,"y":-1},{"x":876,"y":-726}],"type":"area"},{"arc":[{"x":25862,"y":21291},{"x":515,"y":-469}],"type":"coastline"},{"arc":[{"x":26377,"y":20822},{"x":85,"y":0}],"type":"area"},{"arc":[{"x":26462,"y":20822},{"x":226,"y":0},{"x":6,"y":1},{"x":4,"y":1},{"x":29,"y":29},{"x":14,"y":6},{"x":8,"y":8},{"x":12,"y":8},{"x":10,"y":8},{"x":14,"y":18},{"x":62,"y":46},{"x":3,"y":4},{"x":-1,"y":33},{"x":28,"y":25},{"x":-14,"y":44},{"x":38,"y":125},{"x":-21,"y":26},{"x":222,"y":142},{"x":46,"y":88},{"x":55,"y":11},{"x":48,"y":-35},{"x":107,"y":23},{"x":33,"y":101},{"x":63,"y":-7},{"x":3,"y":203},{"x":92,"y":22},{"x":167,"y":-78},{"x":338,"y":-12},{"x":78,"y":-55},{"x":9,"y":56},{"x":171,"y":156},{"x":-21,"y":48},{"x":155,"y":137},{"x":25,"y":190},{"x":71,"y":149},{"x":-4,"y":116},{"x":-56,"y":63},{"x":101,"y":135},{"x":-46,"y":65},{"x":45,"y":33},{"x":-54,"y":84},{"x":20,"y":84},{"x":-93,"y":-53},{"x":-21,"y":23},{"x":-136,"y":-14},{"x":-132,"y":23},{"x":-133,"y":-23},{"x":-27,"y":-18},{"x":-26,"y":-32},{"x":-38,"y":-8},{"x":-34,"y":-30},{"x":-45,"y":-4},{"x":-8,"y":0},{"x":-45,"y":9},{"x":-54,"y":18},{"x":-42,"y":2},{"x":-31,"y":44},{"x":-127,"y":30},{"x":-103,"y":87},{"x":-414,"y":58}],"type":"coastline"},{"arc":[{"x":19566,"y":12140},{"x":-4,"y":-18},{"x":66,"y":7},{"x":2,"y":37},{"x":-64,"y":-26}],"type":"coastline"},{"arc":[{"x":20127,"y":10910},{"x":-54,"y":-3},{"x":14,"y":-34},{"x":40,"y":37}],"type":"coastline"},{"arc":[{"x":20183,"y":10762},{"x":-44,"y":6},{"x":0,"y":-25},{"x":38,"y":-7},{"x":6,"y":26}],"type":"coastline"},{"arc":[{"x":20207,"y":10844},{"x":-48,"y":23},{"x":5,"y":-28},{"x":43,"y":5}],"type":"coastline"},{"arc":[{"x":20275,"y":10776},{"x":-201,"y":66},{"x":-65,"y":-44},{"x":30,"y":-42},{"x":67,"y":51},{"x":133,"y":-64},{"x":36,"y":33}],"type":"coastline"},{"arc":[{"x":20217,"y":12727},{"x":-5,"y":-43},{"x":-94,"y":46},{"x":-94,"y":4},{"x":9,"y":-22},{"x":-138,"y":-20},{"x":-225,"y":-128},{"x":-102,"y":-151},{"x":-109,"y":-36},{"x":19,"y":-22},{"x":-261,"y":-40},{"x":-103,"y":-47},{"x":11,"y":-29},{"x":117,"y":-43},{"x":35,"y":-59},{"x":-34,"y":-42},{"x":53,"y":17},{"x":42,"y":-18},{"x":28,"y":40},{"x":111,"y":-21}],"type":"area"},{"arc":[{"x":19477,"y":12113},{"x":49,"y":48},{"x":131,"y":26},{"x":133,"y":-4},{"x":-121,"y":-16},{"x":-8,"y":-21},{"x":56,"y":7},{"x":-90,"y":-30},{"x":92,"y":-80},{"x":34,"y":-12},{"x":6,"y":28},{"x":48,"y":6},{"x":194,"y":-22},{"x":34,"y":42},{"x":69,"y":15},{"x":-12,"y":18},{"x":63,"y":-24},{"x":106,"y":54},{"x":163,"y":-3},{"x":68,"y":132},{"x":71,"y":20}],"type":"coastline"},{"arc":[{"x":27266,"y":25901},{"x":-3,"y":19},{"x":-17,"y":-40},{"x":20,"y":21}],"type":"coastline"},{"arc":[{"x":27283,"y":26034},{"x":-23,"y":6}],"type":"area"},{"arc":[{"x":27260,"y":26040},{"x":-387,"y":78}],"type":"area"},{"arc":[{"x":26873,"y":26118},{"x":-396,"y":-78},{"x":189,"y":-124},{"x":324,"y":-79},{"x":-92,"y":-29},{"x":-230,"y":64},{"x":-154,"y":84},{"x":-279,"y":47},{"x":-484,"y":146},{"x":-135,"y":79},{"x":4,"y":-38},{"x":-214,"y":24},{"x":-219,"y":146}],"type":"coastline"},{"arc":[{"x":25187,"y":26360},{"x":0,"y":-662},{"x":52,"y":-1},{"x":-52,"y":-22},{"x":0,"y":-761}],"type":"area"},{"arc":[{"x":25187,"y":24914},{"x":1094,"y":0},{"x":522,"y":0},{"x":217,"y":-36},{"x":80,"y":27},{"x":64,"y":10},{"x":57,"y":-13},{"x":77,"y":-3},{"x":26,"y":20},{"x":36,"y":15},{"x":-28,"y":5},{"x":-6,"y":14},{"x":25,"y":81},{"x":-177,"y":372},{"x":113,"y":126},{"x":-21,"y":27},{"x":61,"y":9},{"x":17,"y":74},{"x":-41,"y":-52},{"x":-3,"y":23},{"x":49,"y":44},{"x":-37,"y":56},{"x":21,"y":39},{"x":-3,"y":8},{"x":-51,"y":31},{"x":22,"y":-25},{"x":31,"y":-13},{"x":-23,"y":-1},{"x":3,"y":-7},{"x":-20,"y":5},{"x":-16,"y":-11},{"x":-52,"y":41},{"x":55,"y":12},{"x":-53,"y":48},{"x":21,"y":40},{"x":-26,"y":-24},{"x":62,"y":178}],"type":"coastline"},{"arc":[{"x":23813,"y":26742},{"x":-68,"y":47},{"x":5,"y":-52},{"x":63,"y":5}],"type":"coastline"},{"arc":[{"x":23448,"y":26317},{"x":196,"y":-12},{"x":258,"y":64},{"x":176,"y":2},{"x":-7,"y":53},{"x":63,"y":11},{"x":48,"y":89},{"x":108,"y":45}],"type":"area"},{"arc":[{"x":24290,"y":26569},{"x":-655,"y":136},{"x":92,"y":19},{"x":-117,"y":35},{"x":8,"y":42},{"x":-72,"y":31},{"x":-14,"y":49},{"x":-156,"y":62},{"x":-82,"y":74},{"x":-80,"y":11},{"x":-114,"y":91},{"x":-80,"y":-54},{"x":24,"y":-37},{"x":369,"y":-188},{"x":10,"y":-7},{"x":10,"y":-23},{"x":11,"y":-13},{"x":7,"y":-7},{"x":29,"y":-17},{"x":9,"y":-10},{"x":5,"y":-11},{"x":23,"y":-72},{"x":-29,"y":-37},{"x":48,"y":-24},{"x":-53,"y":-71},{"x":104,"y":-65},{"x":-174,"y":-41},{"x":79,"y":-32},{"x":-41,"y":-28},{"x":0,"y":-4},{"x":-2,"y":-2},{"x":0,"y":-2},{"x":9,"y":-6},{"x":6,"y":-24},{"x":-9,"y":-22},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":26492,"y":19704},{"x":-35,"y":-12},{"x":18,"y":-22},{"x":17,"y":34}],"type":"coastline"},{"arc":[{"x":26570,"y":20004},{"x":-65,"y":4},{"x":-20,"y":-37},{"x":90,"y":-2},{"x":-5,"y":35}],"type":"coastline"},{"arc":[{"x":26544,"y":19786},{"x":40,"y":-12},{"x":-13,"y":23},{"x":-27,"y":-11}],"type":"coastline"},{"arc":[{"x":26666,"y":19919},{"x":-128,"y":-70},{"x":80,"y":-28},{"x":48,"y":98}],"type":"coastline"},{"arc":[{"x":26567,"y":20146},{"x":-13,"y":-32},{"x":151,"y":78},{"x":-105,"y":-5},{"x":-33,"y":-41}],"type":"coastline"},{"arc":[{"x":26727,"y":19706},{"x":-87,"y":4},{"x":66,"y":-21},{"x":21,"y":17}],"type":"coastline"},{"arc":[{"x":28174,"y":21523},{"x":12,"y":-4}],"type":"coastline"},{"arc":[{"x":28186,"y":21519},{"x":-12,"y":4}],"type":"coastline"},{"arc":[{"x":28303,"y":21228},{"x":17,"y":-7}],"type":"coastline"},{"arc":[{"x":28320,"y":21221},{"x":-17,"y":7}],"type":"coastline"},{"arc":[{"x":29035,"y":22069},{"x":-61,"y":-21},{"x":12,"y":-23},{"x":49,"y":44}],"type":"coastline"},{"arc":[{"x":29229,"y":22264},{"x":-40,"y":-5},{"x":-16,"y":41},{"x":-100,"y":-49},{"x":64,"y":-87},{"x":92,"y":100}],"type":"coastline"},{"arc":[{"x":29250,"y":22378},{"x":-54,"y":22},{"x":26,"y":-57},{"x":28,"y":35}],"type":"coastline"},{"arc":[{"x":29998,"y":21659},{"x":-32,"y":48},{"x":-45,"y":-7},{"x":-61,"y":108},{"x":-20,"y":148},{"x":36,"y":10},{"x":-56,"y":85}],"type":"area"},{"arc":[{"x":29820,"y":22051},{"x":-15,"y":-3},{"x":-5,"y":6},{"x":-4,"y":-5},{"x":-12,"y":4},{"x":15,"y":32}],"type":"coastline"},{"arc":[{"x":29799,"y":22085},{"x":-35,"y":37},{"x":19,"y":142}],"type":"area"},{"arc":[{"x":29783,"y":22264},{"x":-131,"y":-4},{"x":-232,"y":-296},{"x":-29,"y":18},{"x":-263,"y":-144},{"x":-116,"y":20},{"x":-58,"y":48},{"x":-91,"y":-90},{"x":-134,"y":-43},{"x":-28,"y":19},{"x":-57,"y":-118},{"x":-141,"y":-55},{"x":-3,"y":-277},{"x":-162,"y":-147},{"x":142,"y":-95},{"x":67,"y":25},{"x":-28,"y":-24},{"x":109,"y":-56},{"x":-23,"y":-69}],"type":"coastline"},{"arc":[{"x":28605,"y":20976},{"x":92,"y":-12},{"x":134,"y":69},{"x":56,"y":-50},{"x":128,"y":47},{"x":149,"y":-71},{"x":4,"y":65},{"x":109,"y":-3},{"x":40,"y":31},{"x":148,"y":-18},{"x":125,"y":89},{"x":20,"y":-41},{"x":68,"y":-8},{"x":-34,"y":-191},{"x":77,"y":-5},{"x":-42,"y":-64}],"type":"area"},{"arc":[{"x":29679,"y":20814},{"x":34,"y":-18},{"x":73,"y":30},{"x":6,"y":-35},{"x":49,"y":25},{"x":-35,"y":-34},{"x":67,"y":15},{"x":-16,"y":-26},{"x":67,"y":-21},{"x":63,"y":53},{"x":-5,"y":77},{"x":57,"y":-13},{"x":45,"y":49},{"x":-65,"y":105},{"x":41,"y":145},{"x":-63,"y":167},{"x":31,"y":109},{"x":-45,"y":70},{"x":15,"y":147}],"type":"coastline"},{"arc":[{"x":33417,"y":24629},{"x":-33,"y":83},{"x":-53,"y":-121},{"x":-66,"y":-38},{"x":53,"y":23},{"x":82,"y":-45},{"x":17,"y":98}],"type":"coastline"},{"arc":[{"x":33512,"y":24639},{"x":-38,"y":39},{"x":-34,"y":-52},{"x":55,"y":-69},{"x":17,"y":82}],"type":"coastline"},{"arc":[{"x":33618,"y":25283},{"x":-28,"y":20},{"x":-136,"y":-94},{"x":-201,"y":47},{"x":-75,"y":-54}],"type":"area"},{"arc":[{"x":33178,"y":25202},{"x":-2,"y":-104},{"x":125,"y":-148},{"x":-46,"y":-118},{"x":105,"y":29},{"x":2,"y":-98},{"x":79,"y":-30},{"x":17,"y":46},{"x":-1,"y":-54},{"x":58,"y":-2},{"x":46,"y":14},{"x":77,"y":155},{"x":-18,"y":74},{"x":40,"y":9},{"x":-42,"y":308}],"type":"coastline"},{"arc":[{"x":22714,"y":27095},{"x":-82,"y":-34},{"x":-96,"y":23},{"x":-178,"y":71},{"x":-91,"y":68},{"x":-228,"y":364},{"x":0,"y":122}],"type":"area"},{"arc":[{"x":22039,"y":27709},{"x":-694,"y":-369},{"x":-15,"y":-172},{"x":-122,"y":-85},{"x":-25,"y":-88},{"x":-27,"y":-22},{"x":-27,"y":-11},{"x":-2,"y":-81},{"x":77,"y":-49},{"x":-94,"y":-111},{"x":-104,"y":-42},{"x":47,"y":-171},{"x":151,"y":-122},{"x":11,"y":-2},{"x":0,"y":-4},{"x":9,"y":-4},{"x":10,"y":-13},{"x":3,"y":-7},{"x":0,"y":-24},{"x":3,"y":-4},{"x":-2,"y":-41},{"x":3,"y":-5},{"x":-1,"y":-24},{"x":4,"y":-5},{"x":10,"y":-7},{"x":26,"y":-3},{"x":41,"y":-19},{"x":58,"y":-1},{"x":19,"y":7},{"x":23,"y":-4},{"x":16,"y":3},{"x":12,"y":-63},{"x":295,"y":-71},{"x":219,"y":-120},{"x":43,"y":-85},{"x":136,"y":27},{"x":-20,"y":61},{"x":15,"y":26},{"x":3,"y":2},{"x":20,"y":12},{"x":5,"y":3},{"x":5,"y":1},{"x":11,"y":2},{"x":203,"y":-6},{"x":233,"y":26},{"x":71,"y":36},{"x":-34,"y":32},{"x":245,"y":28},{"x":189,"y":75},{"x":9,"y":52},{"x":75,"y":3},{"x":121,"y":29},{"x":23,"y":2},{"x":33,"y":8},{"x":28,"y":-3},{"x":5,"y":0},{"x":5,"y":0},{"x":61,"y":11},{"x":7,"y":5},{"x":9,"y":22},{"x":0,"y":8},{"x":-6,"y":16},{"x":-8,"y":4},{"x":-1,"y":2},{"x":-1,"y":1},{"x":3,"y":7},{"x":5,"y":3},{"x":33,"y":8},{"x":3,"y":17},{"x":-79,"y":32},{"x":174,"y":41},{"x":-104,"y":65},{"x":53,"y":71},{"x":-48,"y":24},{"x":29,"y":37},{"x":-32,"y":46},{"x":9,"y":24},{"x":-5,"y":13},{"x":-9,"y":10},{"x":-29,"y":17},{"x":-18,"y":20},{"x":-10,"y":23},{"x":-10,"y":7},{"x":-369,"y":188}],"type":"coastline"},{"arc":[{"x":33778,"y":24653},{"x":-44,"y":-44},{"x":50,"y":-3},{"x":-8,"y":2},{"x":9,"y":42},{"x":15,"y":18},{"x":-22,"y":-15}],"type":"coastline"},{"arc":[{"x":35765,"y":25397},{"x":-29,"y":-66},{"x":-15,"y":47},{"x":-142,"y":-17},{"x":-116,"y":164},{"x":-175,"y":-117},{"x":-269,"y":129},{"x":-19,"y":-49},{"x":-143,"y":-14},{"x":-204,"y":121},{"x":-77,"y":-74},{"x":-188,"y":194},{"x":-295,"y":-218},{"x":-234,"y":-240}],"type":"area"},{"arc":[{"x":33859,"y":25257},{"x":-31,"y":-136},{"x":53,"y":-3},{"x":-62,"y":-39},{"x":25,"y":-51},{"x":-54,"y":1},{"x":26,"y":-32},{"x":-83,"y":-148},{"x":-8,"y":-124},{"x":26,"y":14},{"x":-59,"y":-78},{"x":45,"y":52},{"x":-20,"y":-27},{"x":51,"y":-28},{"x":46,"y":25},{"x":-34,"y":-68},{"x":17,"y":15},{"x":-3,"y":-23},{"x":30,"y":20},{"x":41,"y":-147},{"x":203,"y":1},{"x":10,"y":36},{"x":282,"y":-73},{"x":55,"y":70},{"x":43,"y":-23},{"x":-17,"y":58},{"x":126,"y":74},{"x":73,"y":123},{"x":175,"y":114},{"x":6,"y":100},{"x":147,"y":-1},{"x":34,"y":-82},{"x":62,"y":4},{"x":-20,"y":-67}],"type":"coastline"},{"arc":[{"x":35044,"y":24814},{"x":111,"y":-60},{"x":110,"y":41},{"x":153,"y":-70},{"x":104,"y":28},{"x":245,"y":-369}],"type":"area"},{"arc":[{"x":35767,"y":24384},{"x":53,"y":124},{"x":-126,"y":93},{"x":-21,"y":96},{"x":44,"y":89},{"x":-58,"y":119},{"x":98,"y":108},{"x":157,"y":25},{"x":86,"y":226},{"x":-92,"y":156},{"x":-143,"y":-23}],"type":"area"},{"arc":[{"x":15985,"y":43558},{"x":-20,"y":14},{"x":-27,"y":-66},{"x":47,"y":52}],"type":"coastline"},{"arc":[{"x":16338,"y":43545},{"x":-67,"y":40},{"x":-97,"y":9},{"x":-43,"y":-95},{"x":43,"y":-71},{"x":130,"y":25},{"x":34,"y":92}],"type":"coastline"},{"arc":[{"x":16448,"y":16},{"x":-23,"y":-16},{"x":40,"y":0},{"x":25,"y":15},{"x":-42,"y":1}],"type":"coastline"},{"arc":[{"x":16590,"y":43743},{"x":-118,"y":-51},{"x":66,"y":56},{"x":-68,"y":-4},{"x":-9,"y":-74},{"x":26,"y":-4},{"x":-71,"y":-65},{"x":48,"y":-30},{"x":75,"y":55},{"x":70,"y":129},{"x":-5,"y":0},{"x":-14,"y":-12}],"type":"coastline"},{"arc":[{"x":8691,"y":14662},{"x":-54,"y":-4},{"x":-127,"y":-118},{"x":26,"y":-81},{"x":64,"y":104},{"x":20,"y":-54},{"x":-5,"y":67},{"x":77,"y":-70},{"x":-31,"y":60},{"x":30,"y":96}],"type":"coastline"},{"arc":[{"x":8697,"y":14739},{"x":-1,"y":42},{"x":-36,"y":-16},{"x":-36,"y":35},{"x":52,"y":-7},{"x":10,"y":46},{"x":-37,"y":16},{"x":0,"y":-45},{"x":-34,"y":50},{"x":-45,"y":-83},{"x":22,"y":-63},{"x":-70,"y":36},{"x":26,"y":-76},{"x":-35,"y":28},{"x":1,"y":-51},{"x":-45,"y":14},{"x":55,"y":-46},{"x":88,"y":62},{"x":-22,"y":27},{"x":82,"y":-16},{"x":43,"y":20},{"x":-18,"y":27}],"type":"coastline"},{"arc":[{"x":15546,"y":28623},{"x":-59,"y":43},{"x":-46,"y":-5},{"x":27,"y":-61},{"x":48,"y":-10},{"x":30,"y":33}],"type":"coastline"},{"arc":[{"x":20764,"y":15239},{"x":3,"y":11},{"x":32,"y":19},{"x":83,"y":25},{"x":136,"y":20},{"x":17,"y":-1},{"x":14,"y":2},{"x":4,"y":1},{"x":3,"y":-1},{"x":4,"y":-3},{"x":-2,"y":-4},{"x":35,"y":-9},{"x":19,"y":-14},{"x":38,"y":-14},{"x":24,"y":2},{"x":4,"y":-5},{"x":5,"y":-3},{"x":4,"y":-1},{"x":8,"y":2},{"x":6,"y":0},{"x":48,"y":-7},{"x":27,"y":4},{"x":67,"y":-8},{"x":190,"y":66},{"x":-77,"y":127},{"x":-106,"y":75},{"x":-47,"y":-7},{"x":34,"y":13},{"x":-41,"y":25},{"x":-81,"y":-2},{"x":73,"y":24},{"x":-139,"y":20}],"type":"coastline"},{"arc":[{"x":23566,"y":14466},{"x":-85,"y":15},{"x":93,"y":-45},{"x":-8,"y":30}],"type":"coastline"},{"arc":[{"x":23902,"y":14390},{"x":-74,"y":-11},{"x":81,"y":-12},{"x":-7,"y":23}],"type":"coastline"},{"arc":[{"x":23916,"y":14421},{"x":-20,"y":23},{"x":-7,"y":-44},{"x":60,"y":2},{"x":-33,"y":19}],"type":"coastline"},{"arc":[{"x":29840,"y":23026},{"x":-127,"y":13},{"x":-169,"y":-43},{"x":86,"y":-67},{"x":35,"y":19},{"x":-1,"y":-24},{"x":107,"y":-7},{"x":67,"y":90},{"x":77,"y":16},{"x":-75,"y":3}],"type":"coastline"},{"arc":[{"x":31382,"y":22581},{"x":-19,"y":68}],"type":"coastline"},{"arc":[{"x":30942,"y":22800},{"x":-21,"y":-75},{"x":-36,"y":8},{"x":-87,"y":-72},{"x":-41,"y":-2},{"x":-40,"y":-38},{"x":-76,"y":-3},{"x":-7,"y":-16},{"x":-19,"y":0},{"x":2,"y":18},{"x":23,"y":21},{"x":35,"y":2},{"x":3,"y":12},{"x":9,"y":10},{"x":2,"y":8},{"x":-1,"y":8},{"x":-6,"y":18},{"x":-18,"y":-1},{"x":-18,"y":9},{"x":-10,"y":-4},{"x":-16,"y":-3},{"x":-4,"y":1},{"x":-5,"y":11},{"x":-14,"y":-2},{"x":-28,"y":21}],"type":"coastline"},{"arc":[{"x":30569,"y":22731},{"x":-33,"y":-29},{"x":-117,"y":39},{"x":-35,"y":-61},{"x":-62,"y":49},{"x":-130,"y":-4},{"x":-16,"y":83},{"x":-87,"y":-19}],"type":"area"},{"arc":[{"x":30089,"y":22789},{"x":-170,"y":-163},{"x":68,"y":-137},{"x":32,"y":24},{"x":18,"y":-24},{"x":-49,"y":-21},{"x":53,"y":-20},{"x":-52,"y":15},{"x":44,"y":-105},{"x":-98,"y":-102},{"x":-152,"y":8}],"type":"coastline"},{"arc":[{"x":29799,"y":22085},{"x":21,"y":-34}],"type":"coastline"},{"arc":[{"x":29998,"y":21659},{"x":44,"y":39},{"x":245,"y":53},{"x":24,"y":-16},{"x":-34,"y":-11},{"x":212,"y":22},{"x":-128,"y":71},{"x":107,"y":-36},{"x":53,"y":-55},{"x":1,"y":32},{"x":132,"y":-16},{"x":43,"y":-83},{"x":73,"y":-39},{"x":49,"y":16},{"x":24,"y":-31},{"x":29,"y":10},{"x":-14,"y":53},{"x":25,"y":-35},{"x":-5,"y":-64},{"x":47,"y":21},{"x":-1,"y":-56},{"x":31,"y":15},{"x":-37,"y":-52},{"x":70,"y":-18},{"x":4,"y":-133},{"x":53,"y":-43},{"x":17,"y":54},{"x":14,"y":-33},{"x":38,"y":1},{"x":-12,"y":4},{"x":3,"y":40},{"x":6,"y":-33},{"x":22,"y":20},{"x":-20,"y":-58},{"x":40,"y":0},{"x":79,"y":187},{"x":-82,"y":66},{"x":43,"y":45},{"x":-42,"y":41},{"x":42,"y":4},{"x":-13,"y":72},{"x":243,"y":-71},{"x":-6,"y":82},{"x":-79,"y":17},{"x":-14,"y":110},{"x":38,"y":76},{"x":15,"y":-40},{"x":42,"y":13},{"x":110,"y":181},{"x":152,"y":-11},{"x":49,"y":114}],"type":"coastline"},{"arc":[{"x":20465,"y":23069},{"x":0,"y":186},{"x":263,"y":-1}],"type":"area"},{"arc":[{"x":20728,"y":23254},{"x":30,"y":3},{"x":5,"y":37},{"x":-2,"y":81},{"x":-17,"y":52},{"x":8,"y":60},{"x":-2,"y":1},{"x":-5,"y":4},{"x":-3,"y":1},{"x":-3,"y":1},{"x":-7,"y":-1},{"x":-19,"y":0},{"x":-7,"y":0},{"x":-107,"y":-20},{"x":-37,"y":14},{"x":-16,"y":0},{"x":-5,"y":1},{"x":-1,"y":0},{"x":-5,"y":-2},{"x":-5,"y":-7},{"x":-6,"y":-1},{"x":-1,"y":-2},{"x":-7,"y":4},{"x":13,"y":44},{"x":34,"y":30},{"x":-23,"y":56},{"x":-45,"y":3},{"x":-49,"y":23},{"x":-22,"y":-3},{"x":-44,"y":-14},{"x":-18,"y":-31},{"x":-43,"y":-16},{"x":-34,"y":-9},{"x":-56,"y":6},{"x":-23,"y":-9},{"x":-5,"y":-1},{"x":-7,"y":0},{"x":-13,"y":6},{"x":-3,"y":26},{"x":-40,"y":7},{"x":4,"y":5},{"x":-3,"y":6},{"x":4,"y":6},{"x":-6,"y":8},{"x":-21,"y":13},{"x":-17,"y":4},{"x":-33,"y":-7},{"x":-18,"y":2},{"x":-15,"y":-6},{"x":-19,"y":-2},{"x":-3,"y":0},{"x":-26,"y":5},{"x":-7,"y":-1},{"x":-13,"y":5},{"x":-24,"y":-5},{"x":-17,"y":7},{"x":-46,"y":-15},{"x":-17,"y":11},{"x":-46,"y":-6},{"x":-3,"y":-1},{"x":-3,"y":-3},{"x":-11,"y":-14},{"x":-3,"y":-2},{"x":-55,"y":-11},{"x":-29,"y":11},{"x":-32,"y":-18},{"x":7,"y":-30},{"x":83,"y":-12},{"x":-77,"y":-35},{"x":15,"y":-59},{"x":102,"y":-20},{"x":8,"y":-46},{"x":-100,"y":4},{"x":-19,"y":-48},{"x":19,"y":-15},{"x":-19,"y":-23},{"x":15,"y":-12},{"x":4,"y":-6},{"x":0,"y":-4},{"x":0,"y":-1},{"x":-5,"y":-1},{"x":-116,"y":-3},{"x":-98,"y":50},{"x":-55,"y":-14},{"x":-10,"y":1},{"x":-7,"y":8},{"x":-5,"y":1},{"x":-5,"y":-1},{"x":-5,"y":-3},{"x":-5,"y":-5},{"x":4,"y":-11},{"x":-1,"y":-7},{"x":1,"y":-3},{"x":41,"y":-22},{"x":-89,"y":-50},{"x":329,"y":-166},{"x":-42,"y":33},{"x":23,"y":20},{"x":40,"y":-66},{"x":107,"y":-40},{"x":-44,"y":33},{"x":32,"y":-3},{"x":21,"y":-32},{"x":136,"y":-33},{"x":-100,"y":36},{"x":15,"y":34},{"x":9,"y":-33},{"x":64,"y":6},{"x":-4,"y":-37},{"x":161,"y":-41},{"x":-65,"y":39},{"x":122,"y":36},{"x":155,"y":4},{"x":-58,"y":18},{"x":-17,"y":39},{"x":37,"y":26},{"x":23,"y":-64},{"x":57,"y":-23},{"x":31,"y":28},{"x":-48,"y":8},{"x":116,"y":-5},{"x":3,"y":29}],"type":"coastline"},{"arc":[{"x":31659,"y":21720},{"x":-38,"y":15},{"x":12,"y":-48},{"x":26,"y":33}],"type":"coastline"},{"arc":[{"x":32227,"y":21367},{"x":-37,"y":-26},{"x":58,"y":-19},{"x":-21,"y":45}],"type":"coastline"},{"arc":[{"x":32407,"y":21115},{"x":-13,"y":-43},{"x":84,"y":-47},{"x":-65,"y":-32},{"x":4,"y":-40},{"x":67,"y":-67},{"x":142,"y":111}],"type":"area"},{"arc":[{"x":32626,"y":20997},{"x":24,"y":146},{"x":-87,"y":43},{"x":-42,"y":-26},{"x":17,"y":40},{"x":-49,"y":17},{"x":-28,"y":-10},{"x":54,"y":-23},{"x":-68,"y":15},{"x":-40,"y":-84}],"type":"coastline"},{"arc":[{"x":32797,"y":21136},{"x":-56,"y":-26},{"x":58,"y":-17},{"x":-2,"y":43}],"type":"coastline"},{"arc":[{"x":32840,"y":21175},{"x":-48,"y":-34},{"x":77,"y":42},{"x":-29,"y":-8}],"type":"coastline"},{"arc":[{"x":32974,"y":21144},{"x":-49,"y":46},{"x":-30,"y":-78},{"x":50,"y":36},{"x":26,"y":-39},{"x":3,"y":35}],"type":"coastline"},{"arc":[{"x":33207,"y":21004},{"x":-32,"y":4},{"x":18,"y":-48},{"x":14,"y":44}],"type":"coastline"},{"arc":[{"x":33218,"y":21110},{"x":-90,"y":20},{"x":-9,"y":61},{"x":-52,"y":-37},{"x":35,"y":13},{"x":-6,"y":-57},{"x":61,"y":-56},{"x":39,"y":16},{"x":-32,"y":40},{"x":54,"y":0}],"type":"coastline"},{"arc":[{"x":33365,"y":21124},{"x":-140,"y":-95},{"x":112,"y":-8},{"x":-28,"y":23},{"x":91,"y":72},{"x":-35,"y":8}],"type":"coastline"},{"arc":[{"x":33431,"y":21471},{"x":-2,"y":40},{"x":-61,"y":-14},{"x":-91,"y":-116},{"x":-22,"y":9},{"x":9,"y":-46},{"x":-20,"y":42},{"x":8,"y":32},{"x":-62,"y":-79},{"x":28,"y":296},{"x":-52,"y":29},{"x":-198,"y":-92},{"x":-51,"y":-98},{"x":21,"y":53},{"x":-52,"y":29},{"x":-45,"y":-85},{"x":18,"y":-60},{"x":-36,"y":92},{"x":25,"y":54},{"x":-106,"y":122},{"x":-216,"y":52},{"x":-116,"y":137},{"x":-121,"y":25},{"x":29,"y":-104},{"x":-64,"y":115},{"x":-61,"y":17},{"x":-58,"y":-42},{"x":-27,"y":45},{"x":46,"y":71},{"x":-54,"y":89},{"x":-146,"y":-14},{"x":-12,"y":-52},{"x":-42,"y":15},{"x":-88,"y":-109},{"x":-13,"y":127},{"x":-47,"y":-3},{"x":-98,"y":-138},{"x":38,"y":-211},{"x":-27,"y":18},{"x":-61,"y":-138},{"x":46,"y":-50},{"x":-12,"y":-73},{"x":-102,"y":-22},{"x":53,"y":-67},{"x":-31,"y":1},{"x":-29,"y":-105},{"x":-53,"y":-16},{"x":39,"y":-63},{"x":86,"y":105},{"x":113,"y":38},{"x":44,"y":46},{"x":-4,"y":137},{"x":128,"y":78},{"x":-85,"y":-110},{"x":54,"y":-69},{"x":-16,"y":-53},{"x":27,"y":27},{"x":26,"y":-36},{"x":-43,"y":-71},{"x":18,"y":-21},{"x":26,"y":36},{"x":-24,"y":-43},{"x":40,"y":-16},{"x":154,"y":166},{"x":85,"y":-16},{"x":-31,"y":-83},{"x":96,"y":71},{"x":30,"y":179},{"x":47,"y":-49},{"x":155,"y":38},{"x":-42,"y":-43},{"x":101,"y":-59},{"x":104,"y":74},{"x":5,"y":-66},{"x":-51,"y":-54},{"x":31,"y":-48},{"x":-51,"y":3},{"x":42,"y":-58},{"x":-48,"y":-10},{"x":80,"y":-28},{"x":-22,"y":19},{"x":131,"y":48},{"x":96,"y":-32},{"x":2,"y":49},{"x":13,"y":-45},{"x":49,"y":12},{"x":-79,"y":-66},{"x":86,"y":30},{"x":-210,"y":-88},{"x":231,"y":24},{"x":87,"y":70},{"x":-49,"y":-82},{"x":32,"y":-41},{"x":12,"y":57},{"x":4,"y":-84},{"x":89,"y":101},{"x":11,"y":-34},{"x":37,"y":29},{"x":-5,"y":-35},{"x":28,"y":34},{"x":-15,"y":-43},{"x":50,"y":-4},{"x":-8,"y":39},{"x":65,"y":-36},{"x":0,"y":90},{"x":57,"y":-46},{"x":39,"y":7},{"x":-8,"y":56},{"x":89,"y":-9},{"x":-38,"y":62},{"x":45,"y":140}],"type":"coastline"},{"arc":[{"x":33542,"y":21494},{"x":-49,"y":54},{"x":7,"y":-74},{"x":42,"y":20}],"type":"coastline"},{"arc":[{"x":33869,"y":21720},{"x":-44,"y":-9},{"x":11,"y":41},{"x":-134,"y":-29},{"x":88,"y":0},{"x":9,"y":-51},{"x":15,"y":52},{"x":29,"y":-42},{"x":26,"y":38}],"type":"coastline"},{"arc":[{"x":29485,"y":27157},{"x":107,"y":-77},{"x":-33,"y":-41},{"x":18,"y":-115}],"type":"area"},{"arc":[{"x":29577,"y":26924},{"x":88,"y":31},{"x":182,"y":-39},{"x":152,"y":-179}],"type":"coastline"},{"arc":[{"x":29999,"y":26737},{"x":42,"y":31},{"x":-81,"y":163},{"x":-11,"y":152},{"x":-139,"y":135},{"x":34,"y":144},{"x":-52,"y":75},{"x":-60,"y":-13},{"x":-70,"y":97}],"type":"area"},{"arc":[{"x":22745,"y":21857},{"x":-16,"y":22},{"x":-97,"y":-12},{"x":-79,"y":59},{"x":-191,"y":-21},{"x":-7,"y":37},{"x":-141,"y":-20},{"x":-107,"y":42},{"x":-21,"y":-17},{"x":-307,"y":-7},{"x":-166,"y":82}],"type":"area"},{"arc":[{"x":21613,"y":22022},{"x":-70,"y":-28},{"x":-8,"y":-87},{"x":-226,"y":-270},{"x":77,"y":-139},{"x":15,"y":43},{"x":48,"y":5},{"x":18,"y":-4},{"x":17,"y":-2},{"x":11,"y":-1},{"x":7,"y":-1},{"x":0,"y":-19},{"x":22,"y":-10},{"x":205,"y":-28},{"x":298,"y":57},{"x":60,"y":35},{"x":190,"y":-33},{"x":45,"y":14},{"x":13,"y":-6},{"x":14,"y":5},{"x":26,"y":-2}],"type":"coastline"},{"arc":[{"x":23030,"y":20493},{"x":-48,"y":-14},{"x":-37,"y":21},{"x":44,"y":46},{"x":-74,"y":30},{"x":73,"y":54},{"x":-43,"y":66},{"x":55,"y":47},{"x":51,"y":0},{"x":-24,"y":41},{"x":-165,"y":18},{"x":-65,"y":58},{"x":-91,"y":-39},{"x":14,"y":44},{"x":-110,"y":4},{"x":-84,"y":37}],"type":"area"},{"arc":[{"x":22526,"y":20906},{"x":-17,"y":-5},{"x":-7,"y":-9},{"x":-4,"y":-2},{"x":-6,"y":-3},{"x":-6,"y":-1},{"x":-3,"y":3},{"x":-2,"y":-1},{"x":-4,"y":-4},{"x":-22,"y":6},{"x":-61,"y":-4},{"x":-5,"y":0},{"x":-5,"y":0},{"x":-4,"y":1},{"x":-3,"y":0},{"x":-19,"y":8},{"x":-6,"y":4},{"x":-1,"y":7},{"x":8,"y":10},{"x":0,"y":5},{"x":-2,"y":1},{"x":-51,"y":-8},{"x":-24,"y":22},{"x":-59,"y":-27},{"x":-99,"y":37},{"x":23,"y":-19},{"x":-13,"y":-5},{"x":1,"y":-3},{"x":1,"y":-2},{"x":1,"y":-1},{"x":3,"y":-2},{"x":9,"y":-2},{"x":3,"y":-3},{"x":-2,"y":-28},{"x":-8,"y":-6},{"x":-2,"y":-1},{"x":-2,"y":0},{"x":-13,"y":3},{"x":-30,"y":-4},{"x":-52,"y":37},{"x":-106,"y":-33},{"x":3,"y":-31}],"type":"coastline"},{"arc":[{"x":21940,"y":20846},{"x":31,"y":-24},{"x":-95,"y":-21},{"x":-18,"y":-33},{"x":41,"y":-44},{"x":56,"y":17},{"x":162,"y":-18},{"x":49,"y":-33},{"x":-17,"y":-62}],"type":"area"},{"arc":[{"x":22149,"y":20628},{"x":-45,"y":-55},{"x":87,"y":31},{"x":93,"y":-33},{"x":50,"y":9},{"x":152,"y":-64},{"x":-23,"y":-154},{"x":-120,"y":-36},{"x":-69,"y":-65},{"x":32,"y":17},{"x":87,"y":-40},{"x":-13,"y":-29},{"x":62,"y":20},{"x":-10,"y":-20},{"x":46,"y":5},{"x":-20,"y":-19},{"x":37,"y":-26},{"x":40,"y":7},{"x":-33,"y":-19},{"x":95,"y":-61},{"x":93,"y":19},{"x":-56,"y":-24},{"x":61,"y":-15},{"x":34,"y":17},{"x":-56,"y":-45},{"x":153,"y":41},{"x":48,"y":120},{"x":66,"y":0},{"x":33,"y":-30},{"x":29,"y":16},{"x":-5,"y":12},{"x":3,"y":4},{"x":5,"y":2},{"x":38,"y":4},{"x":48,"y":-8}],"type":"coastline"},{"arc":[{"x":23091,"y":20209},{"x":-9,"y":79},{"x":-36,"y":3},{"x":-38,"y":84},{"x":22,"y":118}],"type":"area"},{"arc":[{"x":23179,"y":19841},{"x":97,"y":9},{"x":-65,"y":32},{"x":15,"y":32},{"x":35,"y":-1},{"x":15,"y":106},{"x":-9,"y":-103},{"x":-27,"y":-31},{"x":56,"y":-20}],"type":"coastline"},{"arc":[{"x":23296,"y":19865},{"x":-1,"y":126},{"x":53,"y":54},{"x":-81,"y":86},{"x":25,"y":52},{"x":-43,"y":14},{"x":-32,"y":-66},{"x":80,"y":-93},{"x":-47,"y":-17},{"x":-11,"y":-66},{"x":-39,"y":-2},{"x":-21,"y":-112}],"type":"area"},{"arc":[{"x":22753,"y":19925},{"x":-30,"y":-1},{"x":15,"y":-21},{"x":15,"y":22}],"type":"coastline"},{"arc":[{"x":23039,"y":20217},{"x":-39,"y":-6},{"x":-27,"y":-32},{"x":-33,"y":30},{"x":-66,"y":0},{"x":-48,"y":-120},{"x":-128,"y":-45},{"x":65,"y":10},{"x":-50,"y":-28},{"x":54,"y":3},{"x":12,"y":-26},{"x":33,"y":19},{"x":-17,"y":-29},{"x":60,"y":27},{"x":-3,"y":33},{"x":32,"y":-26},{"x":-44,"y":-26},{"x":39,"y":-14},{"x":47,"y":56},{"x":-42,"y":19},{"x":51,"y":-9},{"x":-55,"y":-115},{"x":63,"y":30},{"x":-29,"y":-50},{"x":45,"y":-28},{"x":59,"y":35},{"x":-40,"y":-48},{"x":36,"y":-33},{"x":24,"y":128},{"x":54,"y":59},{"x":-1,"y":178},{"x":-52,"y":8}],"type":"coastline"},{"arc":[{"x":20465,"y":23069},{"x":41,"y":-55},{"x":94,"y":48},{"x":10,"y":-17},{"x":66,"y":25},{"x":88,"y":-4},{"x":3,"y":3},{"x":-3,"y":1},{"x":-14,"y":0},{"x":-8,"y":4},{"x":-4,"y":3},{"x":-10,"y":15},{"x":0,"y":162}],"type":"coastline"},{"arc":[{"x":21084,"y":22943},{"x":-16,"y":24},{"x":-81,"y":-23},{"x":-14,"y":-37},{"x":111,"y":36}],"type":"coastline"},{"arc":[{"x":28231,"y":24783},{"x":15,"y":31},{"x":-56,"y":22},{"x":-2,"y":173},{"x":-50,"y":4},{"x":19,"y":64},{"x":-45,"y":-23},{"x":-15,"y":-170},{"x":58,"y":-41},{"x":23,"y":-107},{"x":72,"y":10},{"x":-19,"y":37}],"type":"coastline"},{"arc":[{"x":28434,"y":25310},{"x":-85,"y":-18},{"x":-31,"y":-44},{"x":54,"y":-6},{"x":62,"y":68}],"type":"coastline"},{"arc":[{"x":28520,"y":25182},{"x":-24,"y":-32},{"x":35,"y":52},{"x":-11,"y":-20}],"type":"coastline"},{"arc":[{"x":28584,"y":24988},{"x":-41,"y":-17},{"x":37,"y":-13},{"x":4,"y":30}],"type":"coastline"},{"arc":[{"x":28754,"y":24400},{"x":-35,"y":29},{"x":-10,"y":-22},{"x":45,"y":-7}],"type":"coastline"},{"arc":[{"x":28768,"y":24898},{"x":-52,"y":14},{"x":63,"y":-33},{"x":-11,"y":19}],"type":"coastline"},{"arc":[{"x":28893,"y":24378},{"x":-91,"y":27},{"x":26,"y":-55},{"x":65,"y":28}],"type":"coastline"},{"arc":[{"x":28918,"y":25046},{"x":-96,"y":-7},{"x":87,"y":-22},{"x":9,"y":29}],"type":"coastline"},{"arc":[{"x":28940,"y":24393},{"x":-25,"y":-18},{"x":63,"y":17},{"x":-38,"y":1}],"type":"coastline"},{"arc":[{"x":28989,"y":24727},{"x":-56,"y":86},{"x":-149,"y":50},{"x":189,"y":-165},{"x":-1,"y":-45},{"x":49,"y":56},{"x":-32,"y":18}],"type":"coastline"},{"arc":[{"x":29084,"y":25088},{"x":-77,"y":13},{"x":22,"y":-53},{"x":28,"y":22},{"x":-5,"y":-53},{"x":32,"y":71}],"type":"coastline"},{"arc":[{"x":29190,"y":24300},{"x":-96,"y":21},{"x":86,"y":-58},{"x":10,"y":37}],"type":"coastline"},{"arc":[{"x":29242,"y":24969},{"x":-53,"y":-11},{"x":11,"y":-36},{"x":35,"y":-2},{"x":7,"y":49}],"type":"coastline"},{"arc":[{"x":29376,"y":24890},{"x":16,"y":-33},{"x":22,"y":24},{"x":-38,"y":9}],"type":"coastline"},{"arc":[{"x":29622,"y":25078},{"x":-80,"y":36},{"x":-25,"y":-37},{"x":-64,"y":4},{"x":-50,"y":-38}],"type":"area"},{"arc":[{"x":29403,"y":25043},{"x":61,"y":-110},{"x":-56,"y":-168},{"x":-79,"y":13},{"x":-58,"y":64},{"x":46,"y":-80},{"x":-91,"y":25},{"x":69,"y":-70},{"x":-78,"y":41},{"x":106,"y":-99},{"x":58,"y":3},{"x":-39,"y":-40},{"x":-93,"y":-1},{"x":-197,"y":94},{"x":-18,"y":-36},{"x":18,"y":20},{"x":41,"y":-34},{"x":-32,"y":-13},{"x":-41,"y":30},{"x":-40,"y":-67},{"x":-147,"y":188},{"x":-116,"y":0},{"x":79,"y":-67},{"x":-36,"y":-64},{"x":-99,"y":65},{"x":-32,"y":-44},{"x":60,"y":-53},{"x":-255,"y":57},{"x":85,"y":-62},{"x":-94,"y":-24},{"x":142,"y":-41},{"x":-67,"y":-33},{"x":21,"y":-21},{"x":130,"y":-4},{"x":103,"y":-69},{"x":82,"y":32},{"x":26,"y":71},{"x":-89,"y":113},{"x":50,"y":41},{"x":66,"y":-100},{"x":-36,"y":-107},{"x":45,"y":-24},{"x":-34,"y":-29},{"x":105,"y":-43},{"x":42,"y":52},{"x":26,"y":-41},{"x":-37,"y":-10},{"x":101,"y":-61},{"x":51,"y":-7},{"x":11,"y":-11},{"x":5,"y":-11},{"x":-3,"y":11},{"x":-10,"y":12},{"x":6,"y":7},{"x":73,"y":7},{"x":24,"y":42},{"x":104,"y":45},{"x":66,"y":-6},{"x":3,"y":75},{"x":65,"y":56},{"x":-3,"y":80},{"x":44,"y":9},{"x":-4,"y":46},{"x":18,"y":16},{"x":-6,"y":39},{"x":43,"y":78},{"x":0,"y":32},{"x":-48,"y":32},{"x":-24,"y":56},{"x":14,"y":78},{"x":29,"y":36},{"x":60,"y":-15},{"x":3,"y":34}],"type":"coastline"},{"arc":[{"x":22949,"y":14387},{"x":-8,"y":-20},{"x":52,"y":17},{"x":-44,"y":3}],"type":"coastline"},{"arc":[{"x":33763,"y":16576},{"x":-26,"y":56},{"x":16,"y":-51},{"x":-36,"y":-2},{"x":49,"y":-65},{"x":-3,"y":62}],"type":"coastline"},{"arc":[{"x":33919,"y":16054},{"x":-14,"y":32},{"x":9,"y":-71},{"x":5,"y":39}],"type":"coastline"},{"arc":[{"x":34367,"y":16730},{"x":-17,"y":59},{"x":-11,"y":-64},{"x":28,"y":5}],"type":"coastline"},{"arc":[{"x":34502,"y":16829},{"x":-43,"y":53},{"x":56,"y":-93},{"x":-13,"y":40}],"type":"coastline"},{"arc":[{"x":34797,"y":16960},{"x":-65,"y":34},{"x":111,"y":-79},{"x":-46,"y":45}],"type":"coastline"},{"arc":[{"x":35044,"y":17332},{"x":-41,"y":3},{"x":-12,"y":-65},{"x":64,"y":10},{"x":-11,"y":52}],"type":"coastline"},{"arc":[{"x":35965,"y":15678},{"x":-19,"y":42},{"x":-73,"y":-58},{"x":92,"y":16}],"type":"coastline"},{"arc":[{"x":35967,"y":15469},{"x":-66,"y":108},{"x":-89,"y":-208},{"x":40,"y":-87},{"x":5,"y":105},{"x":33,"y":6},{"x":-28,"y":-56},{"x":54,"y":-143},{"x":-4,"y":73},{"x":41,"y":-66},{"x":12,"y":86},{"x":38,"y":-74},{"x":51,"y":46},{"x":-25,"y":144},{"x":-62,"y":66}],"type":"coastline"},{"arc":[{"x":36157,"y":18781},{"x":-53,"y":-64},{"x":-22,"y":-257},{"x":99,"y":118},{"x":13,"y":102},{"x":34,"y":73},{"x":-71,"y":28}],"type":"coastline"},{"arc":[{"x":36217,"y":15374},{"x":18,"y":-58},{"x":46,"y":45},{"x":-64,"y":13}],"type":"coastline"},{"arc":[{"x":36246,"y":15477},{"x":40,"y":-62},{"x":2,"y":93},{"x":-42,"y":-31}],"type":"coastline"},{"arc":[{"x":36631,"y":18969},{"x":-9,"y":96},{"x":-79,"y":144},{"x":-11,"y":-98},{"x":-71,"y":68},{"x":72,"y":-226},{"x":86,"y":-51},{"x":12,"y":67}],"type":"coastline"},{"arc":[{"x":36675,"y":19053},{"x":-30,"y":154},{"x":-57,"y":9},{"x":2,"y":-92},{"x":41,"y":-62},{"x":7,"y":-168},{"x":37,"y":159}],"type":"coastline"},{"arc":[{"x":36739,"y":18960},{"x":-29,"y":97},{"x":19,"y":-220},{"x":-47,"y":247},{"x":18,"y":-331},{"x":51,"y":56},{"x":-12,"y":151}],"type":"coastline"},{"arc":[{"x":36980,"y":19332},{"x":-54,"y":99},{"x":-23,"y":-139},{"x":43,"y":-84},{"x":34,"y":124}],"type":"coastline"},{"arc":[{"x":37086,"y":19425},{"x":-46,"y":5},{"x":77,"y":-42},{"x":-31,"y":37}],"type":"coastline"},{"arc":[{"x":37179,"y":19714},{"x":-85,"y":26},{"x":14,"y":-159},{"x":75,"y":-6},{"x":-4,"y":139}],"type":"coastline"},{"arc":[{"x":37475,"y":19610},{"x":-166,"y":3},{"x":196,"y":-45},{"x":-30,"y":42}],"type":"coastline"},{"arc":[{"x":37858,"y":19578},{"x":-34,"y":-19},{"x":65,"y":17},{"x":-31,"y":2}],"type":"coastline"},{"arc":[{"x":38018,"y":19756},{"x":-22,"y":-59},{"x":55,"y":41},{"x":-33,"y":18}],"type":"coastline"},{"arc":[{"x":38227,"y":19773},{"x":-64,"y":-104},{"x":35,"y":-151},{"x":40,"y":68},{"x":-11,"y":187}],"type":"coastline"},{"arc":[{"x":38680,"y":15650},{"x":27,"y":-237},{"x":50,"y":16},{"x":-77,"y":221}],"type":"coastline"},{"arc":[{"x":38826,"y":16288},{"x":-57,"y":190},{"x":-74,"y":-74},{"x":128,"y":-330},{"x":3,"y":214}],"type":"coastline"},{"arc":[{"x":39045,"y":17963},{"x":-77,"y":788},{"x":-47,"y":-782},{"x":22,"y":-156},{"x":-27,"y":116},{"x":-27,"y":-375},{"x":-39,"y":12},{"x":95,"y":1246},{"x":-89,"y":-79},{"x":32,"y":236},{"x":-67,"y":317},{"x":-76,"y":-312},{"x":-13,"y":-935},{"x":-31,"y":199},{"x":-69,"y":-349},{"x":-22,"y":81},{"x":86,"y":533},{"x":-17,"y":382},{"x":-126,"y":-215},{"x":66,"y":363},{"x":68,"y":25},{"x":12,"y":227},{"x":-125,"y":9},{"x":-210,"y":-317},{"x":250,"y":505},{"x":-72,"y":30},{"x":8,"y":281},{"x":96,"y":226},{"x":-82,"y":476},{"x":-186,"y":-492},{"x":-20,"y":-659},{"x":6,"y":480},{"x":-37,"y":139},{"x":-45,"y":-85},{"x":9,"y":-367},{"x":-35,"y":-85},{"x":-60,"y":-31},{"x":-29,"y":148},{"x":-119,"y":-48},{"x":48,"y":40},{"x":-38,"y":48},{"x":-100,"y":-254},{"x":-248,"y":-121},{"x":-29,"y":47},{"x":96,"y":78},{"x":-66,"y":220},{"x":-35,"y":-28},{"x":39,"y":-90},{"x":-43,"y":-100},{"x":-72,"y":200},{"x":21,"y":90},{"x":-100,"y":23},{"x":-30,"y":-35},{"x":30,"y":-52},{"x":24,"y":-177},{"x":-12,"y":-148},{"x":-11,"y":116},{"x":-44,"y":-103},{"x":47,"y":-69},{"x":-35,"y":-67},{"x":-25,"y":114},{"x":-31,"y":-85},{"x":-2,"y":112},{"x":-46,"y":-8},{"x":-23,"y":241},{"x":-32,"y":-281},{"x":-13,"y":249},{"x":-45,"y":71},{"x":-133,"y":-29},{"x":101,"y":-253},{"x":17,"y":-72},{"x":-49,"y":99},{"x":23,"y":-129},{"x":-80,"y":237},{"x":-47,"y":-146},{"x":41,"y":-82},{"x":-47,"y":81},{"x":22,"y":139},{"x":-91,"y":-58},{"x":8,"y":206},{"x":-46,"y":52},{"x":-55,"y":-79},{"x":47,"y":-91},{"x":-1,"y":-152},{"x":34,"y":-59},{"x":-41,"y":42},{"x":-75,"y":-88},{"x":-95,"y":79},{"x":90,"y":30},{"x":-39,"y":158},{"x":-92,"y":-16},{"x":3,"y":-136},{"x":-54,"y":-94},{"x":101,"y":-208},{"x":-16,"y":225},{"x":44,"y":-229},{"x":-63,"y":-48},{"x":93,"y":-150},{"x":-103,"y":120},{"x":-5,"y":-72},{"x":-53,"y":-104},{"x":58,"y":-144},{"x":-58,"y":114},{"x":-24,"y":-161},{"x":-47,"y":29},{"x":61,"y":126},{"x":-25,"y":170},{"x":-68,"y":-126},{"x":15,"y":-158},{"x":-17,"y":120},{"x":-44,"y":-9},{"x":59,"y":115},{"x":-34,"y":98},{"x":-41,"y":2},{"x":-19,"y":-147},{"x":-7,"y":76},{"x":-60,"y":-27},{"x":67,"y":117},{"x":-114,"y":246},{"x":-64,"y":-73},{"x":25,"y":149},{"x":-107,"y":-70},{"x":56,"y":85},{"x":-89,"y":7},{"x":-13,"y":-75},{"x":1,"y":80},{"x":-128,"y":17},{"x":-11,"y":-103},{"x":92,"y":-12},{"x":-92,"y":-18},{"x":-2,"y":-87},{"x":208,"y":-157},{"x":63,"y":-214},{"x":-22,"y":-47},{"x":132,"y":-225},{"x":-93,"y":159},{"x":-34,"y":-142},{"x":-17,"y":327},{"x":-47,"y":47},{"x":-15,"y":-11},{"x":9,"y":-33},{"x":-20,"y":22},{"x":-43,"y":-100},{"x":-8,"y":-132},{"x":48,"y":-36},{"x":-47,"y":21},{"x":8,"y":-93},{"x":-60,"y":43},{"x":-72,"y":-141},{"x":-3,"y":350},{"x":-75,"y":-269},{"x":-17,"y":146},{"x":64,"y":55},{"x":35,"y":199},{"x":-30,"y":-10},{"x":-33,"y":178},{"x":5,"y":213},{"x":-34,"y":-22},{"x":-55,"y":-199},{"x":-44,"y":34},{"x":8,"y":-86},{"x":-41,"y":30},{"x":4,"y":-76},{"x":-40,"y":12},{"x":6,"y":-67},{"x":-39,"y":14},{"x":-4,"y":-71},{"x":-28,"y":25},{"x":-65,"y":-106},{"x":-62,"y":-346},{"x":-45,"y":-25},{"x":48,"y":-58},{"x":-68,"y":-25},{"x":32,"y":-92},{"x":-44,"y":45},{"x":4,"y":-138},{"x":123,"y":-110},{"x":-157,"y":55},{"x":-52,"y":-142},{"x":-139,"y":-41},{"x":-171,"y":-153},{"x":29,"y":-126},{"x":-75,"y":30},{"x":-45,"y":-90},{"x":39,"y":-27},{"x":-55,"y":-56},{"x":50,"y":-8},{"x":-65,"y":-13},{"x":39,"y":-60},{"x":-14,"y":-21},{"x":97,"y":83},{"x":29,"y":-83},{"x":-114,"y":-18},{"x":17,"y":-59},{"x":-83,"y":32},{"x":-20,"y":-104},{"x":43,"y":-32},{"x":-45,"y":2},{"x":31,"y":-40},{"x":-40,"y":-69},{"x":-21,"y":53},{"x":-71,"y":-19},{"x":5,"y":-143},{"x":-171,"y":92},{"x":-21,"y":-147},{"x":-36,"y":123},{"x":-35,"y":-34},{"x":-57,"y":38},{"x":37,"y":-117},{"x":-73,"y":91},{"x":7,"y":-66},{"x":-40,"y":19},{"x":39,"y":-35},{"x":-36,"y":21},{"x":28,"y":-30},{"x":-8,"y":-12},{"x":-42,"y":57},{"x":28,"y":-50},{"x":27,"y":-23},{"x":-18,"y":-22},{"x":-78,"y":57},{"x":29,"y":-72},{"x":-49,"y":59},{"x":17,"y":-81},{"x":-26,"y":70},{"x":-34,"y":-15},{"x":23,"y":-67},{"x":-56,"y":-22},{"x":14,"y":-81},{"x":-83,"y":120},{"x":30,"y":-99},{"x":-47,"y":87},{"x":-82,"y":-35},{"x":13,"y":53},{"x":-56,"y":-28},{"x":6,"y":-63},{"x":-13,"y":70},{"x":-38,"y":-18},{"x":8,"y":-79},{"x":-43,"y":81},{"x":-14,"y":-101},{"x":-54,"y":75},{"x":6,"y":-119},{"x":-15,"y":110},{"x":-40,"y":-39},{"x":13,"y":-55},{"x":-31,"y":82},{"x":9,"y":-88},{"x":-34,"y":95},{"x":-50,"y":-58},{"x":57,"y":-57},{"x":-37,"y":9},{"x":10,"y":-71},{"x":-32,"y":105},{"x":-35,"y":-31},{"x":21,"y":51},{"x":-67,"y":10},{"x":16,"y":-130},{"x":49,"y":7},{"x":-90,"y":-63},{"x":22,"y":-67},{"x":108,"y":86},{"x":-96,"y":-90},{"x":134,"y":71},{"x":-67,"y":-72},{"x":51,"y":18},{"x":-39,"y":-52},{"x":52,"y":45},{"x":-57,"y":-56},{"x":40,"y":-5},{"x":-15,"y":-43},{"x":95,"y":74},{"x":-54,"y":-103},{"x":101,"y":122},{"x":-67,"y":-99},{"x":52,"y":50},{"x":43,"y":-21},{"x":-19,"y":-39},{"x":-35,"y":24},{"x":-2,"y":-61},{"x":-65,"y":-54},{"x":40,"y":-21},{"x":-36,"y":-141},{"x":43,"y":61},{"x":-5,"y":-86},{"x":13,"y":68},{"x":33,"y":8},{"x":-1,"y":-54},{"x":32,"y":37},{"x":-44,"y":-60},{"x":24,"y":-28},{"x":31,"y":36},{"x":6,"y":-88},{"x":32,"y":102},{"x":3,"y":-130},{"x":17,"y":86},{"x":20,"y":-68},{"x":60,"y":44},{"x":-60,"y":-53},{"x":40,"y":6},{"x":-18,"y":-31},{"x":58,"y":71},{"x":30,"y":-23},{"x":-50,"y":-74},{"x":62,"y":43},{"x":-5,"y":-73},{"x":59,"y":-52},{"x":88,"y":54},{"x":-43,"y":-49},{"x":33,"y":4},{"x":47,"y":66},{"x":-23,"y":-59},{"x":-38,"y":-25},{"x":52,"y":29},{"x":17,"y":-55},{"x":30,"y":66},{"x":-20,"y":-103},{"x":47,"y":-22},{"x":12,"y":99},{"x":9,"y":-115},{"x":25,"y":58},{"x":21,"y":-38},{"x":5,"y":67},{"x":-1,"y":-69},{"x":-36,"y":-11},{"x":47,"y":-48},{"x":50,"y":77},{"x":-27,"y":-65},{"x":49,"y":-20},{"x":16,"y":191},{"x":16,"y":-61},{"x":41,"y":23},{"x":-62,"y":-131},{"x":23,"y":-39},{"x":59,"y":193},{"x":44,"y":-80},{"x":9,"y":60},{"x":-45,"y":23},{"x":-32,"y":69},{"x":42,"y":-58},{"x":77,"y":6},{"x":-19,"y":-69},{"x":95,"y":-15},{"x":-101,"y":7},{"x":-32,"y":-61},{"x":32,"y":-13},{"x":-121,"y":-108},{"x":110,"y":1},{"x":70,"y":108},{"x":-50,"y":-114},{"x":116,"y":22},{"x":-28,"y":-65},{"x":29,"y":-4},{"x":95,"y":131},{"x":-11,"y":117},{"x":18,"y":-111},{"x":-86,"y":-127},{"x":93,"y":-25},{"x":-12,"y":-69},{"x":40,"y":185},{"x":33,"y":1},{"x":-49,"y":-176},{"x":37,"y":37},{"x":3,"y":-72},{"x":182,"y":265},{"x":-4,"y":112},{"x":17,"y":-79},{"x":18,"y":28},{"x":0,"y":96},{"x":7,"y":-78},{"x":14,"y":39},{"x":-34,"y":-104},{"x":-185,"y":-277},{"x":42,"y":40},{"x":-9,"y":-61},{"x":58,"y":0},{"x":8,"y":147},{"x":21,"y":-127},{"x":16,"y":107},{"x":3,"y":-68},{"x":18,"y":59},{"x":12,"y":-42},{"x":-2,"y":93},{"x":31,"y":-26},{"x":-16,"y":-146},{"x":18,"y":52},{"x":16,"y":-74},{"x":11,"y":52},{"x":-2,"y":-68},{"x":23,"y":70},{"x":8,"y":-17},{"x":16,"y":125},{"x":13,"y":37},{"x":-9,"y":78},{"x":-46,"y":45},{"x":14,"y":101},{"x":-10,"y":-101},{"x":50,"y":-41},{"x":14,"y":49},{"x":-5,"y":-126},{"x":-28,"y":-117},{"x":3,"y":-14},{"x":11,"y":5},{"x":-31,"y":-70},{"x":13,"y":-15},{"x":114,"y":162},{"x":-57,"y":302},{"x":18,"y":-98},{"x":32,"y":94},{"x":-6,"y":-148},{"x":23,"y":125},{"x":-11,"y":-109},{"x":48,"y":18},{"x":-10,"y":-65},{"x":-47,"y":10},{"x":21,"y":-103},{"x":35,"y":89},{"x":-84,"y":-261},{"x":85,"y":105},{"x":15,"y":-35},{"x":-16,"y":136},{"x":48,"y":-152},{"x":-60,"y":381},{"x":63,"y":-153},{"x":-3,"y":58},{"x":15,"y":-52},{"x":57,"y":65},{"x":-74,"y":-194},{"x":19,"y":-60},{"x":20,"y":43},{"x":-5,"y":-98},{"x":65,"y":308},{"x":48,"y":25},{"x":-19,"y":-78},{"x":79,"y":21},{"x":-43,"y":96},{"x":49,"y":-43},{"x":21,"y":67},{"x":29,"y":-36},{"x":-31,"y":-83},{"x":70,"y":111},{"x":-3,"y":-83},{"x":114,"y":82},{"x":8,"y":-257},{"x":137,"y":-280},{"x":38,"y":57},{"x":-16,"y":166},{"x":-98,"y":265},{"x":46,"y":13},{"x":-23,"y":-59},{"x":33,"y":-43},{"x":18,"y":84},{"x":18,"y":-96},{"x":2,"y":99},{"x":64,"y":-161},{"x":-14,"y":116},{"x":41,"y":-27},{"x":-4,"y":-124},{"x":54,"y":73},{"x":-48,"y":-109},{"x":74,"y":145},{"x":-14,"y":-200},{"x":67,"y":163},{"x":-2,"y":-197},{"x":68,"y":71},{"x":-54,"y":-81},{"x":132,"y":-25},{"x":-207,"y":-48},{"x":-13,"y":-162},{"x":68,"y":-75},{"x":121,"y":185},{"x":-66,"y":-108},{"x":99,"y":71},{"x":18,"y":-117},{"x":8,"y":165},{"x":9,"y":-88},{"x":107,"y":28},{"x":16,"y":-111},{"x":67,"y":74},{"x":64,"y":-119},{"x":15,"y":55},{"x":78,"y":-97},{"x":48,"y":35},{"x":-40,"y":-145},{"x":88,"y":143},{"x":126,"y":-243},{"x":152,"y":-37},{"x":146,"y":-598},{"x":-55,"y":-81},{"x":48,"y":-48},{"x":-72,"y":-113},{"x":54,"y":-35},{"x":-41,"y":-94},{"x":39,"y":-83},{"x":-79,"y":74},{"x":38,"y":-233},{"x":77,"y":-148},{"x":60,"y":199},{"x":19,"y":-246},{"x":53,"y":57},{"x":-49,"y":-119},{"x":46,"y":-100},{"x":45,"y":54},{"x":-4,"y":572},{"x":22,"y":-353},{"x":-5,"y":349},{"x":105,"y":-53},{"x":-49,"y":-206},{"x":38,"y":-45},{"x":-48,"y":-60},{"x":27,"y":-129},{"x":42,"y":94},{"x":-18,"y":-142},{"x":40,"y":74},{"x":-20,"y":-151},{"x":87,"y":-212},{"x":82,"y":57},{"x":71,"y":463},{"x":28,"y":-40},{"x":40,"y":195},{"x":0,"y":209},{"x":199,"y":90},{"x":29,"y":154},{"x":-21,"y":-398},{"x":59,"y":-53},{"x":186,"y":466},{"x":-88,"y":106},{"x":102,"y":-45},{"x":-21,"y":252},{"x":157,"y":-25},{"x":10,"y":297},{"x":-118,"y":290},{"x":150,"y":-366},{"x":60,"y":426},{"x":-26,"y":103},{"x":49,"y":82},{"x":-190,"y":92},{"x":115,"y":92},{"x":-96,"y":365},{"x":202,"y":-144},{"x":-13,"y":255},{"x":-157,"y":528},{"x":121,"y":12},{"x":-17,"y":275},{"x":126,"y":-419},{"x":-5,"y":450},{"x":-62,"y":53},{"x":60,"y":4},{"x":-87,"y":216},{"x":32,"y":5},{"x":51,"y":-68},{"x":26,"y":-687},{"x":39,"y":-86},{"x":-22,"y":403},{"x":49,"y":-262},{"x":-9,"y":324},{"x":23,"y":-139},{"x":18,"y":162},{"x":-120,"y":492},{"x":58,"y":-59},{"x":34,"y":270},{"x":12,"y":-219},{"x":51,"y":-19},{"x":-17,"y":290},{"x":40,"y":-35},{"x":-17,"y":354},{"x":34,"y":197}],"type":"coastline"},{"arc":[{"x":24247,"y":11041},{"x":-432,"y":-9},{"x":-43,"y":76},{"x":60,"y":0},{"x":-63,"y":44},{"x":-141,"y":-111},{"x":-108,"y":0},{"x":-40,"y":-52},{"x":-39,"y":8},{"x":-113,"y":-70},{"x":102,"y":-202},{"x":82,"y":-59},{"x":119,"y":21},{"x":44,"y":-17},{"x":174,"y":56},{"x":4,"y":1},{"x":1,"y":2},{"x":1,"y":89},{"x":0,"y":64},{"x":2,"y":2},{"x":6,"y":2},{"x":-2,"y":-3},{"x":9,"y":3},{"x":4,"y":-2},{"x":2,"y":3},{"x":6,"y":-4},{"x":4,"y":-1},{"x":3,"y":1},{"x":3,"y":3},{"x":5,"y":-3},{"x":25,"y":10},{"x":11,"y":-2},{"x":16,"y":-18},{"x":-1,"y":-11},{"x":59,"y":-13},{"x":9,"y":-8},{"x":4,"y":1},{"x":2,"y":-2},{"x":5,"y":-13},{"x":14,"y":-4},{"x":2,"y":-12},{"x":61,"y":-28},{"x":3,"y":-10},{"x":5,"y":-1},{"x":5,"y":-9},{"x":4,"y":1},{"x":0,"y":54},{"x":123,"y":0},{"x":3,"y":4},{"x":0,"y":219}],"type":"coastline"},{"arc":[{"x":23308,"y":39487},{"x":-88,"y":-25},{"x":41,"y":-7},{"x":47,"y":32}],"type":"coastline"},{"arc":[{"x":20857,"y":14937},{"x":-160,"y":48},{"x":-20,"y":28}],"type":"coastline"},{"arc":[{"x":21411,"y":14495},{"x":167,"y":-80},{"x":54,"y":34},{"x":119,"y":-1},{"x":76,"y":100},{"x":31,"y":-39},{"x":75,"y":-13},{"x":162,"y":110},{"x":70,"y":-24}],"type":"area"},{"arc":[{"x":22165,"y":14582},{"x":-122,"y":112},{"x":-143,"y":75},{"x":-225,"y":-24},{"x":116,"y":45},{"x":-182,"y":139},{"x":-173,"y":-20},{"x":-33,"y":18},{"x":-55,"y":-81},{"x":-174,"y":-26},{"x":-171,"y":50},{"x":1,"y":42},{"x":-147,"y":25}],"type":"coastline"},{"arc":[{"x":25313,"y":35761},{"x":-35,"y":-2},{"x":8,"y":23},{"x":-40,"y":-13},{"x":27,"y":-46},{"x":34,"y":20}],"type":"coastline"},{"arc":[{"x":8296,"y":30839},{"x":-17,"y":-31},{"x":46,"y":-29},{"x":-29,"y":60}],"type":"coastline"},{"arc":[{"x":23613,"y":11774},{"x":-84,"y":-165},{"x":44,"y":-51},{"x":-223,"y":-102},{"x":52,"y":-34},{"x":-68,"y":-38},{"x":1,"y":-50},{"x":-106,"y":4},{"x":-69,"y":-39},{"x":0,"y":-34}],"type":"area"},{"arc":[{"x":23160,"y":11265},{"x":69,"y":-24},{"x":27,"y":15},{"x":0,"y":-52}],"type":"coastline"},{"arc":[{"x":23256,"y":11204},{"x":114,"y":0},{"x":-14,"y":-83},{"x":127,"y":-105}],"type":"area"},{"arc":[{"x":23483,"y":11016},{"x":37,"y":25},{"x":108,"y":0},{"x":194,"y":175},{"x":-35,"y":163},{"x":59,"y":45},{"x":-36,"y":63},{"x":26,"y":59},{"x":-48,"y":42},{"x":8,"y":44},{"x":-92,"y":69},{"x":34,"y":-59},{"x":-66,"y":33},{"x":35,"y":-9},{"x":-44,"y":65},{"x":42,"y":-27},{"x":-92,"y":70}],"type":"coastline"},{"arc":[{"x":29812,"y":24118},{"x":-15,"y":0},{"x":-17,"y":8},{"x":143,"y":-182},{"x":-36,"y":79}],"type":"coastline"},{"arc":[{"x":29963,"y":23891},{"x":-23,"y":76},{"x":15,"y":-100},{"x":8,"y":24}],"type":"coastline"},{"arc":[{"x":30157,"y":23699},{"x":-50,"y":25},{"x":69,"y":-42},{"x":-19,"y":17}],"type":"coastline"},{"arc":[{"x":30271,"y":23682},{"x":-65,"y":45},{"x":88,"y":-59},{"x":-23,"y":14}],"type":"coastline"},{"arc":[{"x":30271,"y":23629},{"x":-26,"y":15},{"x":52,"y":-24},{"x":-26,"y":9}],"type":"coastline"},{"arc":[{"x":30351,"y":23636},{"x":-76,"y":5},{"x":125,"y":-24},{"x":-49,"y":19}],"type":"coastline"},{"arc":[{"x":30417,"y":23648},{"x":-68,"y":23},{"x":32,"y":-40},{"x":36,"y":17}],"type":"coastline"},{"arc":[{"x":30570,"y":24175},{"x":-80,"y":0},{"x":-14,"y":25},{"x":-26,"y":-16},{"x":-43,"y":52},{"x":-15,"y":-44},{"x":-61,"y":-3}],"type":"area"},{"arc":[{"x":29898,"y":24014},{"x":104,"y":-85},{"x":23,"y":-112},{"x":155,"y":-99},{"x":17,"y":47},{"x":67,"y":-63},{"x":167,"y":-58},{"x":7,"y":-27},{"x":-128,"y":-50},{"x":163,"y":-49},{"x":-17,"y":48},{"x":21,"y":10},{"x":-9,"y":48},{"x":43,"y":26},{"x":-45,"y":26},{"x":-3,"y":64},{"x":61,"y":-8},{"x":26,"y":51},{"x":44,"y":2},{"x":17,"y":-13},{"x":6,"y":0},{"x":6,"y":2},{"x":6,"y":2},{"x":4,"y":2},{"x":1,"y":3},{"x":-1,"y":11},{"x":10,"y":8},{"x":10,"y":25},{"x":18,"y":4},{"x":-1,"y":27},{"x":39,"y":8},{"x":-174,"y":184},{"x":3,"y":43},{"x":-9,"y":13},{"x":2,"y":6},{"x":-3,"y":2},{"x":0,"y":2},{"x":0,"y":0},{"x":0,"y":1},{"x":2,"y":3},{"x":9,"y":6},{"x":0,"y":6},{"x":6,"y":5},{"x":20,"y":10},{"x":5,"y":30}],"type":"coastline"},{"arc":[{"x":24298,"y":13154},{"x":44,"y":-36},{"x":5,"y":-192},{"x":-52,"y":-27},{"x":90,"y":-75},{"x":55,"y":28},{"x":-54,"y":165},{"x":22,"y":66},{"x":118,"y":-55},{"x":88,"y":14},{"x":63,"y":-94},{"x":49,"y":80},{"x":-53,"y":128}],"type":"coastline"},{"arc":[{"x":24754,"y":13034},{"x":-19,"y":15},{"x":17,"y":-39},{"x":2,"y":24}],"type":"coastline"},{"arc":[{"x":31127,"y":24568},{"x":-103,"y":90}],"type":"coastline"},{"arc":[{"x":31024,"y":24658},{"x":-97,"y":-106},{"x":-277,"y":-105},{"x":-40,"y":-109}],"type":"area"},{"arc":[{"x":30610,"y":24338},{"x":7,"y":-7},{"x":4,"y":-11},{"x":2,"y":-66},{"x":-41,"y":-35},{"x":-17,"y":-74},{"x":-20,"y":-10},{"x":-6,"y":-11},{"x":-11,"y":-9},{"x":0,"y":-1},{"x":0,"y":-2},{"x":3,"y":-2},{"x":-2,"y":-6},{"x":9,"y":-13},{"x":-3,"y":-43},{"x":164,"y":-163}],"type":"coastline"},{"arc":[{"x":30699,"y":23885},{"x":81,"y":-51}],"type":"area"},{"arc":[{"x":31037,"y":23962},{"x":-58,"y":82},{"x":7,"y":105},{"x":59,"y":18},{"x":20,"y":133},{"x":91,"y":70},{"x":-29,"y":198}],"type":"area"},{"arc":[{"x":17863,"y":36872},{"x":-54,"y":-19},{"x":-18,"y":-48},{"x":103,"y":69},{"x":-31,"y":-2}],"type":"coastline"},{"arc":[{"x":18136,"y":36464},{"x":-141,"y":97},{"x":-48,"y":-10},{"x":-5,"y":-70},{"x":102,"y":-63},{"x":48,"y":-85},{"x":43,"y":41},{"x":1,"y":90}],"type":"coastline"},{"arc":[{"x":18107,"y":37078},{"x":-148,"y":-74},{"x":-49,"y":-120},{"x":65,"y":36},{"x":9,"y":-23},{"x":91,"y":12},{"x":65,"y":43}],"type":"coastline"},{"arc":[{"x":18140,"y":36952},{"x":-33,"y":34},{"x":69,"y":17}],"type":"area"},{"arc":[{"x":18176,"y":37003},{"x":49,"y":57}],"type":"coastline"},{"arc":[{"x":18225,"y":37060},{"x":-22,"y":30},{"x":-34,"y":-25},{"x":-62,"y":13}],"type":"area"},{"arc":[{"x":18334,"y":36398},{"x":-19,"y":14},{"x":-40,"y":-25},{"x":59,"y":11}],"type":"coastline"},{"arc":[{"x":18386,"y":36862},{"x":-35,"y":0},{"x":2,"y":-32},{"x":33,"y":32}],"type":"coastline"},{"arc":[{"x":18353,"y":36067},{"x":-113,"y":-22},{"x":18,"y":-88},{"x":18,"y":30},{"x":65,"y":-7},{"x":47,"y":31},{"x":-35,"y":56}],"type":"coastline"},{"arc":[{"x":18387,"y":36942},{"x":-73,"y":-44},{"x":9,"y":-43},{"x":58,"y":22},{"x":6,"y":65}],"type":"coastline"},{"arc":[{"x":18356,"y":36977},{"x":-39,"y":-15},{"x":22,"y":-25},{"x":62,"y":45},{"x":-45,"y":-5}],"type":"coastline"},{"arc":[{"x":18362,"y":38760},{"x":1,"y":-43},{"x":43,"y":29},{"x":-44,"y":14}],"type":"coastline"},{"arc":[{"x":18356,"y":36165},{"x":44,"y":-8},{"x":8,"y":22},{"x":-52,"y":-14}],"type":"coastline"},{"arc":[{"x":18412,"y":37018},{"x":-6,"y":63},{"x":-41,"y":6},{"x":-26,"y":-95},{"x":73,"y":26}],"type":"coastline"},{"arc":[{"x":18419,"y":36216},{"x":-61,"y":41},{"x":19,"y":41},{"x":-59,"y":3},{"x":50,"y":10},{"x":4,"y":29},{"x":-93,"y":23},{"x":-32,"y":-87},{"x":63,"y":-6},{"x":-64,"y":-31},{"x":-33,"y":-170},{"x":114,"y":9},{"x":34,"y":44},{"x":-18,"y":52},{"x":-63,"y":22},{"x":17,"y":58},{"x":93,"y":-70},{"x":29,"y":32}],"type":"coastline"},{"arc":[{"x":18405,"y":36825},{"x":-101,"y":-21},{"x":-62,"y":-125},{"x":33,"y":-240},{"x":74,"y":7},{"x":41,"y":68},{"x":-84,"y":131},{"x":40,"y":63},{"x":-47,"y":33},{"x":78,"y":72},{"x":40,"y":-11},{"x":-12,"y":23}],"type":"coastline"},{"arc":[{"x":18403,"y":35916},{"x":-56,"y":24},{"x":-97,"y":-69},{"x":43,"y":3},{"x":121,"y":-86},{"x":-11,"y":128}],"type":"coastline"},{"arc":[{"x":18484,"y":37649},{"x":-55,"y":2},{"x":35,"y":-23},{"x":20,"y":21}],"type":"coastline"},{"arc":[{"x":18516,"y":37279},{"x":-20,"y":14},{"x":-47,"y":-45},{"x":-9,"y":-84},{"x":78,"y":24},{"x":-2,"y":91}],"type":"coastline"},{"arc":[{"x":18432,"y":38759},{"x":-83,"y":-63},{"x":-3,"y":-90},{"x":177,"y":45},{"x":52,"y":47},{"x":7,"y":50},{"x":-45,"y":33},{"x":-105,"y":-22}],"type":"coastline"},{"arc":[{"x":18629,"y":37879},{"x":-102,"y":-3},{"x":-90,"y":-38},{"x":4,"y":-24},{"x":116,"y":15},{"x":72,"y":50}],"type":"coastline"},{"arc":[{"x":18643,"y":37911},{"x":-34,"y":6},{"x":26,"y":-29},{"x":8,"y":23}],"type":"coastline"},{"arc":[{"x":18694,"y":35732},{"x":-23,"y":16},{"x":-60,"y":-74},{"x":38,"y":-99},{"x":40,"y":21},{"x":5,"y":136}],"type":"coastline"},{"arc":[{"x":18704,"y":35901},{"x":-22,"y":23},{"x":-17,"y":-34},{"x":39,"y":11}],"type":"coastline"},{"arc":[{"x":18791,"y":38217},{"x":-43,"y":8},{"x":-63,"y":-38},{"x":166,"y":-10},{"x":-60,"y":40}],"type":"coastline"},{"arc":[{"x":18890,"y":38183},{"x":-13,"y":14},{"x":-18,"y":-3},{"x":-31,"y":21},{"x":19,"y":-31},{"x":43,"y":-1}],"type":"coastline"},{"arc":[{"x":18889,"y":34780},{"x":-21,"y":83},{"x":43,"y":25},{"x":-73,"y":77},{"x":-2,"y":83},{"x":-116,"y":30},{"x":-20,"y":41},{"x":-28,"y":174},{"x":128,"y":66},{"x":-64,"y":27},{"x":-39,"y":173},{"x":-164,"y":34},{"x":-44,"y":55},{"x":40,"y":91},{"x":-41,"y":48},{"x":-163,"y":-8},{"x":-50,"y":30},{"x":103,"y":-168},{"x":-37,"y":-69},{"x":43,"y":-201},{"x":145,"y":-261},{"x":-47,"y":-51},{"x":17,"y":-71},{"x":56,"y":-56},{"x":26,"y":-123},{"x":94,"y":14},{"x":27,"y":-152},{"x":74,"y":63},{"x":139,"y":29},{"x":-26,"y":17}],"type":"coastline"},{"arc":[{"x":19021,"y":38235},{"x":-56,"y":21},{"x":-67,"y":-2},{"x":4,"y":-17},{"x":-31,"y":21},{"x":-63,"y":-20},{"x":48,"y":-39},{"x":23,"y":1},{"x":7,"y":9},{"x":24,"y":-10},{"x":28,"y":11},{"x":18,"y":-21},{"x":65,"y":46}],"type":"coastline"},{"arc":[{"x":18970,"y":38048},{"x":-78,"y":-25},{"x":159,"y":39},{"x":-81,"y":-14}],"type":"coastline"},{"arc":[{"x":19095,"y":36696},{"x":-83,"y":13},{"x":46,"y":-27},{"x":37,"y":14}],"type":"coastline"},{"arc":[{"x":19128,"y":36800},{"x":-106,"y":-22},{"x":11,"y":-38},{"x":140,"y":12},{"x":30,"y":40},{"x":-75,"y":8}],"type":"coastline"},{"arc":[{"x":19189,"y":36853},{"x":-112,"y":-32},{"x":-29,"y":32},{"x":-84,"y":-68},{"x":270,"y":31},{"x":20,"y":22},{"x":-65,"y":15}],"type":"coastline"},{"arc":[{"x":19341,"y":36837},{"x":-11,"y":21},{"x":-43,"y":-14},{"x":43,"y":-23},{"x":11,"y":16}],"type":"coastline"},{"arc":[{"x":19334,"y":35991},{"x":90,"y":-13},{"x":93,"y":31},{"x":-152,"y":5},{"x":-31,"y":-23}],"type":"coastline"},{"arc":[{"x":19541,"y":37298},{"x":-59,"y":47},{"x":-52,"y":-2},{"x":-57,"y":-61},{"x":112,"y":-89},{"x":56,"y":10},{"x":0,"y":95}],"type":"coastline"},{"arc":[{"x":19615,"y":37622},{"x":-78,"y":127},{"x":-100,"y":35},{"x":-66,"y":-4},{"x":120,"y":-115},{"x":7,"y":-47},{"x":-36,"y":-3},{"x":58,"y":-74},{"x":-58,"y":-47},{"x":89,"y":-39},{"x":-103,"y":-32},{"x":81,"y":-7},{"x":69,"y":40},{"x":12,"y":107},{"x":-35,"y":15},{"x":40,"y":44}],"type":"coastline"},{"arc":[{"x":19551,"y":34088},{"x":-60,"y":0},{"x":122,"y":-33},{"x":-62,"y":33}],"type":"coastline"},{"arc":[{"x":19667,"y":34986},{"x":-46,"y":50},{"x":-86,"y":-6},{"x":-23,"y":-28},{"x":42,"y":-14},{"x":-42,"y":-29},{"x":75,"y":-10},{"x":78,"y":15},{"x":2,"y":22}],"type":"coastline"},{"arc":[{"x":19620,"y":34056},{"x":-17,"y":-22},{"x":79,"y":-4},{"x":-62,"y":26}],"type":"coastline"},{"arc":[{"x":19762,"y":33996},{"x":-56,"y":18},{"x":52,"y":-40},{"x":4,"y":22}],"type":"coastline"},{"arc":[{"x":19837,"y":37122},{"x":-5,"y":112},{"x":-30,"y":-111},{"x":35,"y":-1}],"type":"coastline"},{"arc":[{"x":19859,"y":37721},{"x":-63,"y":10},{"x":-18,"y":-26},{"x":40,"y":-62},{"x":41,"y":78}],"type":"coastline"},{"arc":[{"x":19873,"y":37013},{"x":-22,"y":92},{"x":-34,"y":4},{"x":-27,"y":-111},{"x":40,"y":-9},{"x":43,"y":24}],"type":"coastline"},{"arc":[{"x":19883,"y":38344},{"x":-47,"y":172},{"x":-25,"y":-76},{"x":72,"y":-96}],"type":"coastline"},{"arc":[{"x":19906,"y":34746},{"x":-212,"y":54},{"x":-31,"y":62},{"x":-77,"y":-28},{"x":-38,"y":17},{"x":58,"y":-92},{"x":151,"y":-25},{"x":24,"y":-79},{"x":109,"y":42},{"x":-53,"y":41},{"x":59,"y":-14},{"x":10,"y":22}],"type":"coastline"},{"arc":[{"x":19881,"y":36896},{"x":-25,"y":-9},{"x":52,"y":4},{"x":-27,"y":5}],"type":"coastline"},{"arc":[{"x":19919,"y":37414},{"x":-54,"y":39},{"x":9,"y":-94},{"x":48,"y":6},{"x":-3,"y":49}],"type":"coastline"},{"arc":[{"x":19981,"y":36852},{"x":-54,"y":3},{"x":39,"y":22},{"x":-48,"y":14},{"x":3,"y":-29},{"x":-45,"y":-13},{"x":72,"y":-4},{"x":-64,"y":-33},{"x":90,"y":3},{"x":7,"y":37}],"type":"coastline"},{"arc":[{"x":20021,"y":35199},{"x":-37,"y":21},{"x":-34,"y":-38},{"x":69,"y":-1},{"x":2,"y":18}],"type":"coastline"},{"arc":[{"x":20029,"y":33900},{"x":-188,"y":40},{"x":22,"y":-44},{"x":108,"y":-35},{"x":55,"y":9},{"x":3,"y":30}],"type":"coastline"},{"arc":[{"x":20032,"y":37792},{"x":-10,"y":17},{"x":-86,"y":-14},{"x":82,"y":-38},{"x":14,"y":35}],"type":"coastline"},{"arc":[{"x":20093,"y":38337},{"x":-11,"y":54},{"x":-94,"y":62},{"x":-13,"y":-60},{"x":77,"y":-14},{"x":41,"y":-42}],"type":"coastline"},{"arc":[{"x":20065,"y":37352},{"x":2,"y":-20},{"x":34,"y":6},{"x":-36,"y":14}],"type":"coastline"},{"arc":[{"x":19656,"y":39012},{"x":-923,"y":-15},{"x":-540,"y":15}],"type":"area"},{"arc":[{"x":18193,"y":39012},{"x":205,"y":-120},{"x":69,"y":20},{"x":-47,"y":-22},{"x":-24,"y":-70},{"x":56,"y":-22},{"x":-76,"y":-37},{"x":164,"y":22},{"x":82,"y":-52},{"x":10,"y":70},{"x":53,"y":-83},{"x":-13,"y":77},{"x":59,"y":-62},{"x":2,"y":18},{"x":177,"y":-69},{"x":18,"y":17},{"x":14,"y":-30},{"x":22,"y":25},{"x":-12,"y":-35},{"x":72,"y":0},{"x":106,"y":-96},{"x":110,"y":-255},{"x":74,"y":-65},{"x":39,"y":5},{"x":2,"y":34},{"x":7,"y":-36},{"x":-27,"y":-18},{"x":36,"y":-23},{"x":-34,"y":-3},{"x":61,"y":-22},{"x":-23,"y":-19},{"x":82,"y":-40},{"x":60,"y":6},{"x":23,"y":29},{"x":43,"y":-9},{"x":-102,"y":-42},{"x":-110,"y":-7},{"x":-56,"y":-57},{"x":98,"y":-31},{"x":28,"y":24},{"x":62,"y":-14},{"x":79,"y":-102},{"x":57,"y":28},{"x":-30,"y":65},{"x":87,"y":53},{"x":-57,"y":25},{"x":41,"y":8},{"x":-34,"y":0},{"x":23,"y":23},{"x":-39,"y":5},{"x":62,"y":8},{"x":12,"y":32},{"x":41,"y":-7},{"x":-13,"y":-19},{"x":35,"y":18},{"x":-36,"y":-199},{"x":83,"y":-44},{"x":81,"y":5},{"x":28,"y":-126},{"x":66,"y":35},{"x":67,"y":1},{"x":105,"y":140},{"x":-83,"y":121},{"x":0,"y":71},{"x":-141,"y":37},{"x":-75,"y":-23},{"x":-156,"y":13},{"x":-109,"y":32},{"x":73,"y":3},{"x":6,"y":19},{"x":-169,"y":31},{"x":-29,"y":54},{"x":91,"y":69},{"x":169,"y":57},{"x":29,"y":97},{"x":69,"y":-6},{"x":74,"y":87},{"x":-199,"y":236},{"x":-55,"y":145}],"type":"coastline"},{"arc":[{"x":20151,"y":34585},{"x":-59,"y":-24},{"x":58,"y":-9},{"x":1,"y":33}],"type":"coastline"},{"arc":[{"x":20147,"y":37390},{"x":-65,"y":3},{"x":-14,"y":29},{"x":-27,"y":-17},{"x":16,"y":-36},{"x":76,"y":-20},{"x":34,"y":8},{"x":-20,"y":33}],"type":"coastline"},{"arc":[{"x":20126,"y":33848},{"x":-3,"y":-26},{"x":63,"y":19},{"x":-60,"y":7}],"type":"coastline"},{"arc":[{"x":20240,"y":37778},{"x":-64,"y":63},{"x":-16,"y":-45},{"x":63,"y":-39},{"x":-65,"y":36},{"x":-15,"y":-49},{"x":40,"y":-2},{"x":12,"y":-38},{"x":45,"y":74}],"type":"coastline"},{"arc":[{"x":20243,"y":34589},{"x":-69,"y":51},{"x":17,"y":-68},{"x":52,"y":17}],"type":"coastline"},{"arc":[{"x":20465,"y":34353},{"x":-66,"y":47},{"x":38,"y":-76},{"x":18,"y":12},{"x":41,"y":-2},{"x":-31,"y":19}],"type":"coastline"},{"arc":[{"x":20476,"y":34401},{"x":-48,"y":11},{"x":42,"y":-61},{"x":33,"y":16},{"x":-27,"y":34}],"type":"coastline"},{"arc":[{"x":20497,"y":34536},{"x":-34,"y":-7},{"x":19,"y":-23},{"x":15,"y":30}],"type":"coastline"},{"arc":[{"x":20510,"y":34590},{"x":-82,"y":1},{"x":51,"y":-18},{"x":-10,"y":-25},{"x":41,"y":42}],"type":"coastline"},{"arc":[{"x":20457,"y":34331},{"x":-6,"y":-11},{"x":33,"y":-16},{"x":74,"y":-3},{"x":-38,"y":31},{"x":-63,"y":-1}],"type":"coastline"},{"arc":[{"x":20582,"y":33713},{"x":-120,"y":68},{"x":-96,"y":-14},{"x":188,"y":-92},{"x":28,"y":38}],"type":"coastline"},{"arc":[{"x":20594,"y":34304},{"x":-18,"y":30},{"x":-48,"y":3},{"x":76,"y":-61},{"x":-10,"y":28}],"type":"coastline"},{"arc":[{"x":20617,"y":37078},{"x":-42,"y":22},{"x":-245,"y":-112},{"x":-29,"y":-85},{"x":56,"y":-67},{"x":8,"y":-179},{"x":-39,"y":-161},{"x":-101,"y":-31},{"x":-122,"y":6},{"x":-176,"y":74},{"x":-3,"y":52},{"x":137,"y":62},{"x":-29,"y":59},{"x":37,"y":13},{"x":1,"y":88},{"x":25,"y":-24},{"x":21,"y":41},{"x":-20,"y":40},{"x":-43,"y":5},{"x":-49,"y":-16},{"x":49,"y":-26},{"x":-15,"y":-31},{"x":-133,"y":-58},{"x":-93,"y":-82},{"x":20,"y":-48},{"x":-300,"y":143},{"x":-100,"y":-32},{"x":-66,"y":54},{"x":-56,"y":4},{"x":18,"y":19},{"x":-74,"y":7},{"x":-30,"y":-96},{"x":-72,"y":-4},{"x":22,"y":-64},{"x":147,"y":9},{"x":124,"y":-89},{"x":175,"y":23},{"x":26,"y":-47},{"x":-71,"y":-60},{"x":-67,"y":27},{"x":-312,"y":3},{"x":-114,"y":-22},{"x":-105,"y":24},{"x":7,"y":-125},{"x":362,"y":26},{"x":111,"y":-20},{"x":-18,"y":-68},{"x":177,"y":-21},{"x":184,"y":72},{"x":160,"y":-4},{"x":87,"y":26},{"x":51,"y":25},{"x":-45,"y":16},{"x":160,"y":-8},{"x":24,"y":-21},{"x":-10,"y":27},{"x":68,"y":-8},{"x":111,"y":32},{"x":58,"y":28},{"x":-47,"y":36},{"x":128,"y":41},{"x":-120,"y":236},{"x":35,"y":41},{"x":-32,"y":91},{"x":189,"y":137}],"type":"coastline"},{"arc":[{"x":20704,"y":34241},{"x":-63,"y":-1},{"x":-10,"y":-27},{"x":69,"y":-9},{"x":4,"y":37}],"type":"coastline"},{"arc":[{"x":20734,"y":37442},{"x":-77,"y":-26},{"x":-123,"y":21},{"x":-87,"y":-46},{"x":-21,"y":28},{"x":127,"y":41},{"x":41,"y":62},{"x":-113,"y":-2},{"x":-66,"y":-59},{"x":-124,"y":83},{"x":48,"y":-120},{"x":-158,"y":8},{"x":-145,"y":56},{"x":153,"y":-93},{"x":239,"y":-6},{"x":52,"y":-27},{"x":155,"y":22},{"x":99,"y":58}],"type":"coastline"},{"arc":[{"x":20827,"y":37507},{"x":-109,"y":-3},{"x":-29,"y":-36},{"x":66,"y":-8},{"x":72,"y":47}],"type":"coastline"},{"arc":[{"x":20894,"y":33535},{"x":-122,"y":69},{"x":66,"y":-84},{"x":40,"y":-11},{"x":16,"y":26}],"type":"coastline"},{"arc":[{"x":21032,"y":37146},{"x":-12,"y":-14},{"x":61,"y":-8},{"x":-49,"y":22}],"type":"coastline"},{"arc":[{"x":21177,"y":36183},{"x":-2,"y":25}],"type":"coastline"},{"arc":[{"x":21175,"y":36208},{"x":-28,"y":-4},{"x":30,"y":-21}],"type":"coastline"},{"arc":[{"x":21160,"y":35041},{"x":-48,"y":12},{"x":-51,"y":-27},{"x":33,"y":10},{"x":49,"y":-34},{"x":52,"y":29},{"x":-35,"y":10}],"type":"coastline"},{"arc":[{"x":21176,"y":36167},{"x":2,"y":-24},{"x":-104,"y":55},{"x":20,"y":-43},{"x":-42,"y":5},{"x":-3,"y":-58},{"x":-36,"y":50},{"x":-45,"y":-21},{"x":-33,"y":42},{"x":-37,"y":-9},{"x":-5,"y":23},{"x":-17,"y":-14},{"x":-110,"y":56},{"x":-68,"y":-40},{"x":-238,"y":153},{"x":-38,"y":-76},{"x":69,"y":-59},{"x":-70,"y":16},{"x":-14,"y":-35},{"x":-142,"y":-33},{"x":-142,"y":-3},{"x":23,"y":22},{"x":-63,"y":-17},{"x":-18,"y":17},{"x":-6,"y":-42},{"x":-97,"y":-39},{"x":48,"y":-26},{"x":-76,"y":2},{"x":-96,"y":-66},{"x":-26,"y":30},{"x":-59,"y":-22},{"x":-6,"y":39},{"x":-81,"y":-11},{"x":7,"y":-26},{"x":-104,"y":-2},{"x":34,"y":-18},{"x":-68,"y":16},{"x":-106,"y":-37},{"x":-129,"y":-158},{"x":188,"y":-14},{"x":-35,"y":-9},{"x":24,"y":-26},{"x":41,"y":13},{"x":-55,"y":-89},{"x":64,"y":-3},{"x":-22,"y":-32},{"x":78,"y":-38},{"x":-54,"y":-2},{"x":-57,"y":-46},{"x":20,"y":-53},{"x":-55,"y":-36},{"x":188,"y":-19},{"x":-63,"y":-22},{"x":-2,"y":-99},{"x":33,"y":24},{"x":-45,"y":-35},{"x":48,"y":-14},{"x":-31,"y":-35},{"x":109,"y":2},{"x":156,"y":-46},{"x":108,"y":20},{"x":107,"y":-37},{"x":4,"y":-59},{"x":42,"y":-2},{"x":-13,"y":30},{"x":50,"y":-46},{"x":61,"y":-9},{"x":-2,"y":21},{"x":58,"y":-8},{"x":-2,"y":17},{"x":69,"y":-45},{"x":111,"y":-9},{"x":83,"y":9},{"x":48,"y":41},{"x":-40,"y":-34},{"x":72,"y":10},{"x":123,"y":70}],"type":"coastline"},{"arc":[{"x":20709,"y":35204},{"x":-109,"y":2},{"x":-167,"y":103},{"x":49,"y":84},{"x":-15,"y":76},{"x":126,"y":78},{"x":1,"y":61},{"x":-35,"y":-1},{"x":-42,"y":81},{"x":48,"y":34},{"x":-2,"y":78},{"x":106,"y":34},{"x":77,"y":-6},{"x":59,"y":52},{"x":73,"y":-17},{"x":44,"y":48},{"x":200,"y":9},{"x":106,"y":37},{"x":-8,"y":166},{"x":-44,"y":44}],"type":"area"},{"arc":[{"x":21251,"y":37298},{"x":-110,"y":-24},{"x":120,"y":7},{"x":-10,"y":17}],"type":"coastline"},{"arc":[{"x":21501,"y":33485},{"x":-87,"y":110},{"x":6,"y":136},{"x":-184,"y":91},{"x":-71,"y":-12},{"x":-209,"y":191},{"x":-130,"y":32},{"x":23,"y":24},{"x":-198,"y":90},{"x":86,"y":-18},{"x":19,"y":30},{"x":-131,"y":46},{"x":-73,"y":84},{"x":-81,"y":11},{"x":-49,"y":26},{"x":-65,"y":80},{"x":-61,"y":-79},{"x":-20,"y":18},{"x":85,"y":95},{"x":-54,"y":45},{"x":-68,"y":9},{"x":-56,"y":-65},{"x":10,"y":27},{"x":-35,"y":-18},{"x":-16,"y":31},{"x":-2,"y":-27},{"x":-56,"y":-4},{"x":-85,"y":59},{"x":10,"y":67},{"x":-204,"y":14},{"x":-42,"y":47},{"x":-146,"y":-43},{"x":109,"y":41},{"x":-24,"y":90},{"x":-113,"y":25},{"x":-26,"y":28},{"x":-148,"y":-27},{"x":-286,"y":11},{"x":-214,"y":-22},{"x":101,"y":-55},{"x":-77,"y":-14},{"x":63,"y":-74},{"x":-93,"y":20},{"x":-2,"y":-19},{"x":186,"y":-81},{"x":250,"y":-192},{"x":78,"y":-11},{"x":94,"y":-74},{"x":201,"y":-84},{"x":99,"y":-8},{"x":419,"y":-135},{"x":66,"y":-74},{"x":334,"y":-44},{"x":120,"y":-125},{"x":131,"y":-18},{"x":184,"y":-87},{"x":21,"y":-49},{"x":194,"y":-111},{"x":147,"y":-45},{"x":63,"y":2},{"x":7,"y":35}],"type":"coastline"},{"arc":[{"x":21863,"y":33285},{"x":-105,"y":-3},{"x":84,"y":-22},{"x":21,"y":25}],"type":"coastline"},{"arc":[{"x":22667,"y":33130},{"x":-58,"y":-24},{"x":57,"y":-1},{"x":1,"y":25}],"type":"coastline"},{"arc":[{"x":23292,"y":33183},{"x":-466,"y":-37},{"x":81,"y":-23},{"x":79,"y":33},{"x":135,"y":-7},{"x":171,"y":34}],"type":"coastline"},{"arc":[{"x":27032,"y":31722},{"x":-5,"y":-9},{"x":8,"y":-5},{"x":-2,"y":-2},{"x":-7,"y":-4},{"x":-6,"y":2},{"x":-6,"y":-2},{"x":-23,"y":-14},{"x":-15,"y":-18},{"x":-32,"y":-11},{"x":-11,"y":-13},{"x":-12,"y":-2},{"x":-22,"y":4},{"x":-43,"y":-21},{"x":-48,"y":5},{"x":-82,"y":-27},{"x":-222,"y":221},{"x":-35,"y":101},{"x":-45,"y":8},{"x":-37,"y":65},{"x":32,"y":12},{"x":-29,"y":57},{"x":20,"y":-2},{"x":2,"y":21},{"x":15,"y":9},{"x":1,"y":4},{"x":-45,"y":60},{"x":-64,"y":4},{"x":-65,"y":78},{"x":25,"y":40},{"x":-64,"y":26},{"x":-34,"y":108},{"x":37,"y":40},{"x":-39,"y":8},{"x":-13,"y":23},{"x":-1,"y":2},{"x":2,"y":1},{"x":12,"y":4},{"x":5,"y":7},{"x":-11,"y":21},{"x":19,"y":34},{"x":-22,"y":13},{"x":1,"y":4},{"x":19,"y":8},{"x":29,"y":4},{"x":18,"y":5},{"x":10,"y":2},{"x":4,"y":1},{"x":4,"y":0},{"x":5,"y":0},{"x":22,"y":-2},{"x":56,"y":-23},{"x":149,"y":24},{"x":9,"y":-1},{"x":7,"y":1},{"x":1,"y":-1},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":26587,"y":33706},{"x":-73,"y":2},{"x":-66,"y":-58},{"x":-116,"y":32},{"x":62,"y":-51},{"x":-23,"y":-68},{"x":-145,"y":-124},{"x":-127,"y":3},{"x":-147,"y":-66},{"x":-83,"y":13},{"x":-263,"y":-71},{"x":50,"y":-98},{"x":-97,"y":13},{"x":-117,"y":-7},{"x":-80,"y":-35},{"x":-115,"y":11},{"x":-62,"y":-25},{"x":38,"y":-35},{"x":-40,"y":-13}],"type":"area"},{"arc":[{"x":25218,"y":32702},{"x":-43,"y":0},{"x":6,"y":-19},{"x":-79,"y":22},{"x":34,"y":-27},{"x":-42,"y":-19},{"x":140,"y":-6},{"x":-145,"y":-10},{"x":89,"y":-10},{"x":-74,"y":-4},{"x":39,"y":-24},{"x":-55,"y":-1},{"x":138,"y":-7},{"x":58,"y":-35},{"x":-75,"y":31},{"x":-82,"y":-40},{"x":-90,"y":-111},{"x":-123,"y":-5},{"x":-18,"y":20},{"x":-158,"y":-75},{"x":33,"y":-33},{"x":-40,"y":26},{"x":-67,"y":-108},{"x":47,"y":11},{"x":-22,"y":-37},{"x":-68,"y":-17},{"x":48,"y":55},{"x":-122,"y":-102},{"x":-191,"y":-76},{"x":-264,"y":-210},{"x":-123,"y":-10},{"x":-57,"y":-66},{"x":2,"y":-61},{"x":-125,"y":-30},{"x":57,"y":-14},{"x":-71,"y":-11},{"x":43,"y":-17},{"x":-46,"y":-47},{"x":-137,"y":-28},{"x":-119,"y":18},{"x":-80,"y":-18},{"x":-173,"y":32},{"x":65,"y":-21},{"x":-24,"y":-11},{"x":-95,"y":34},{"x":-428,"y":-80},{"x":10,"y":20},{"x":-235,"y":2},{"x":-10,"y":-69},{"x":-175,"y":-45},{"x":-71,"y":65},{"x":27,"y":-56},{"x":-40,"y":-70},{"x":-165,"y":-43},{"x":-65,"y":-67},{"x":188,"y":-117},{"x":21,"y":15},{"x":-13,"y":-17},{"x":85,"y":-20},{"x":143,"y":-14},{"x":-99,"y":13},{"x":3,"y":18},{"x":158,"y":-32},{"x":582,"y":-172},{"x":371,"y":-48},{"x":356,"y":-119},{"x":487,"y":-64},{"x":11,"y":18},{"x":35,"y":-22},{"x":165,"y":10},{"x":-48,"y":-23},{"x":82,"y":0},{"x":-21,"y":32},{"x":36,"y":-35},{"x":34,"y":14},{"x":70,"y":-27},{"x":206,"y":36},{"x":141,"y":-47},{"x":84,"y":69},{"x":-21,"y":-71},{"x":74,"y":23},{"x":-4,"y":-29},{"x":49,"y":9},{"x":17,"y":42},{"x":2,"y":-93},{"x":-45,"y":19},{"x":-63,"y":-38},{"x":-39,"y":37},{"x":-94,"y":-24},{"x":-110,"y":-166},{"x":97,"y":-83},{"x":258,"y":-135},{"x":42,"y":16},{"x":-47,"y":17},{"x":65,"y":117},{"x":122,"y":40},{"x":-81,"y":-96},{"x":24,"y":-63},{"x":134,"y":-94},{"x":97,"y":48},{"x":-66,"y":-61},{"x":6,"y":-21},{"x":52,"y":5}],"type":"coastline"},{"arc":[{"x":25603,"y":30165},{"x":27,"y":65},{"x":83,"y":3},{"x":-38,"y":149},{"x":54,"y":54},{"x":-39,"y":41},{"x":41,"y":40},{"x":284,"y":-52},{"x":46,"y":-66},{"x":146,"y":6},{"x":46,"y":-80},{"x":88,"y":4},{"x":199,"y":98},{"x":-69,"y":59},{"x":58,"y":127},{"x":181,"y":59},{"x":63,"y":70},{"x":198,"y":53},{"x":59,"y":70},{"x":41,"y":-11},{"x":160,"y":98},{"x":164,"y":-15},{"x":101,"y":100},{"x":47,"y":-82},{"x":81,"y":0},{"x":-14,"y":-41},{"x":92,"y":-42},{"x":71,"y":19},{"x":54,"y":-24},{"x":52,"y":38},{"x":20,"y":-46},{"x":133,"y":3},{"x":29,"y":52},{"x":-61,"y":174},{"x":55,"y":106},{"x":82,"y":48}],"type":"area"},{"arc":[{"x":28137,"y":31242},{"x":86,"y":91}],"type":"coastline"},{"arc":[{"x":32389,"y":20667},{"x":-31,"y":0},{"x":21,"y":-37},{"x":10,"y":37}],"type":"coastline"},{"arc":[{"x":32407,"y":21115},{"x":-256,"y":34},{"x":-134,"y":-61},{"x":-40,"y":17},{"x":-14,"y":-70},{"x":37,"y":-8},{"x":-104,"y":-124},{"x":13,"y":-50},{"x":-36,"y":10},{"x":-42,"y":-71},{"x":-20,"y":-108},{"x":71,"y":32},{"x":-41,"y":-73},{"x":67,"y":70},{"x":-20,"y":-92},{"x":81,"y":70},{"x":7,"y":-85},{"x":15,"y":88},{"x":37,"y":-26},{"x":36,"y":37},{"x":23,"y":109},{"x":-27,"y":-144},{"x":150,"y":126},{"x":43,"y":-155},{"x":102,"y":75},{"x":3,"y":-47},{"x":52,"y":13},{"x":28,"y":-34},{"x":-6,"y":195},{"x":34,"y":-19},{"x":64,"y":66},{"x":11,"y":-82},{"x":31,"y":58},{"x":74,"y":5},{"x":22,"y":59},{"x":-36,"y":11},{"x":39,"y":7},{"x":-71,"y":-2},{"x":97,"y":34},{"x":-33,"y":54},{"x":-38,"y":-37}],"type":"coastline"},{"arc":[{"x":26292,"y":28705},{"x":-81,"y":-107},{"x":92,"y":56},{"x":-11,"y":51}],"type":"coastline"},{"arc":[{"x":28884,"y":27818},{"x":-182,"y":31},{"x":-53,"y":129},{"x":-146,"y":109},{"x":-35,"y":100},{"x":83,"y":255},{"x":-17,"y":-49},{"x":-19,"y":34},{"x":12,"y":18},{"x":112,"y":-15}],"type":"coastline"},{"arc":[{"x":28639,"y":28430},{"x":22,"y":90},{"x":145,"y":97},{"x":43,"y":211},{"x":-70,"y":20},{"x":-98,"y":238},{"x":-73,"y":19},{"x":-40,"y":67},{"x":-88,"y":40},{"x":0,"y":100},{"x":-229,"y":12}],"type":"area"},{"arc":[{"x":28251,"y":29324},{"x":-181,"y":-25},{"x":-67,"y":-44},{"x":-44,"y":23},{"x":-41,"y":-48},{"x":-112,"y":2},{"x":-28,"y":50},{"x":-103,"y":-44},{"x":-351,"y":32},{"x":-28,"y":105},{"x":-80,"y":17},{"x":-260,"y":-119}],"type":"coastline"},{"arc":[{"x":26956,"y":29273},{"x":-296,"y":127},{"x":-67,"y":106},{"x":-220,"y":-3},{"x":-34,"y":70},{"x":-110,"y":-21},{"x":-15,"y":-88},{"x":-75,"y":-71},{"x":-230,"y":-30}],"type":"area"},{"arc":[{"x":25909,"y":29363},{"x":-33,"y":-21},{"x":88,"y":-105},{"x":-36,"y":-10},{"x":25,"y":-173},{"x":85,"y":-209},{"x":306,"y":-63},{"x":5,"y":-83},{"x":-150,"y":-162},{"x":48,"y":-131},{"x":145,"y":-135},{"x":63,"y":-17},{"x":67,"y":-129},{"x":226,"y":-73},{"x":27,"y":16},{"x":20,"y":-35},{"x":69,"y":1},{"x":168,"y":-70},{"x":-39,"y":-66},{"x":30,"y":-7},{"x":0,"y":-28},{"x":24,"y":-3},{"x":-9,"y":-7},{"x":35,"y":-30},{"x":6,"y":18},{"x":-14,"y":17},{"x":36,"y":1},{"x":2,"y":-28},{"x":-18,"y":7},{"x":-3,"y":-13},{"x":-17,"y":-9},{"x":-68,"y":7},{"x":-18,"y":-47}],"type":"coastline"},{"arc":[{"x":26979,"y":27776},{"x":113,"y":-63},{"x":118,"y":0},{"x":1,"y":-41},{"x":183,"y":19},{"x":132,"y":-51},{"x":126,"y":-160},{"x":69,"y":7},{"x":160,"y":-94},{"x":139,"y":15},{"x":-9,"y":24},{"x":58,"y":-4},{"x":68,"y":59},{"x":127,"y":-18},{"x":29,"y":39},{"x":43,"y":-122},{"x":258,"y":-68}],"type":"area"},{"arc":[{"x":28594,"y":27318},{"x":129,"y":-20},{"x":41,"y":-48},{"x":99,"y":31},{"x":233,"y":-54},{"x":9,"y":45},{"x":79,"y":22},{"x":-28,"y":29}],"type":"area"},{"arc":[{"x":26979,"y":27776},{"x":33,"y":-72},{"x":-26,"y":1}],"type":"coastline"},{"arc":[{"x":26986,"y":27705},{"x":2,"y":-97},{"x":-204,"y":-75}],"type":"area"},{"arc":[{"x":26784,"y":27533},{"x":24,"y":-224},{"x":422,"y":-318},{"x":189,"y":-200},{"x":45,"y":-156}],"type":"area"},{"arc":[{"x":27464,"y":26635},{"x":28,"y":18},{"x":25,"y":-7},{"x":-10,"y":-23},{"x":4,"y":-2},{"x":33,"y":-6},{"x":5,"y":10},{"x":197,"y":-35}],"type":"coastline"},{"arc":[{"x":27746,"y":26590},{"x":231,"y":266},{"x":282,"y":49},{"x":158,"y":-11},{"x":170,"y":132}],"type":"area"},{"arc":[{"x":28587,"y":27026},{"x":59,"y":51},{"x":-39,"y":125},{"x":25,"y":34},{"x":-77,"y":24},{"x":39,"y":58}],"type":"area"},{"arc":[{"x":35204,"y":19930},{"x":-86,"y":78},{"x":52,"y":99},{"x":-61,"y":-74},{"x":-26,"y":68},{"x":-53,"y":-33},{"x":5,"y":68},{"x":-63,"y":-28},{"x":36,"y":38},{"x":-33,"y":77},{"x":-53,"y":-48},{"x":-4,"y":53},{"x":-14,"y":-56},{"x":-30,"y":64},{"x":-7,"y":-88},{"x":-25,"y":65},{"x":2,"y":-44},{"x":-48,"y":1},{"x":18,"y":-57},{"x":-33,"y":30},{"x":-84,"y":-74},{"x":26,"y":-72},{"x":-134,"y":-161},{"x":-4,"y":-112},{"x":-58,"y":-30},{"x":-29,"y":-93},{"x":34,"y":-177},{"x":65,"y":-27},{"x":-27,"y":-21},{"x":52,"y":-56},{"x":-30,"y":-200},{"x":61,"y":-2},{"x":-8,"y":81},{"x":71,"y":72},{"x":-11,"y":-80},{"x":76,"y":72},{"x":-44,"y":-79},{"x":82,"y":-30},{"x":-22,"y":-173},{"x":37,"y":-28},{"x":33,"y":272},{"x":39,"y":7},{"x":-9,"y":-96},{"x":64,"y":105},{"x":-5,"y":-68},{"x":37,"y":18},{"x":8,"y":-54},{"x":-51,"y":-164},{"x":23,"y":-78},{"x":6,"y":89},{"x":61,"y":-35},{"x":-28,"y":98},{"x":44,"y":-70},{"x":-7,"y":80},{"x":37,"y":-74},{"x":-5,"y":53},{"x":49,"y":-10},{"x":-81,"y":125},{"x":57,"y":6},{"x":30,"y":-72},{"x":10,"y":74},{"x":35,"y":-93},{"x":7,"y":85},{"x":-100,"y":132},{"x":-62,"y":2},{"x":6,"y":-54},{"x":-136,"y":83},{"x":98,"y":21},{"x":21,"y":30},{"x":-45,"y":24},{"x":38,"y":25},{"x":96,"y":-17},{"x":-81,"y":116},{"x":73,"y":0},{"x":34,"y":76},{"x":-126,"y":93},{"x":120,"y":-28},{"x":-60,"y":90},{"x":70,"y":50},{"x":-18,"y":87},{"x":79,"y":-17},{"x":9,"y":66}],"type":"coastline"},{"arc":[{"x":27605,"y":26224},{"x":-1,"y":-3},{"x":-7,"y":-6},{"x":-7,"y":-6},{"x":1,"y":-3},{"x":-10,"y":-6},{"x":-57,"y":0}],"type":"coastline"},{"arc":[{"x":27524,"y":26200},{"x":17,"y":-61},{"x":-140,"y":-14},{"x":-21,"y":32},{"x":-78,"y":-42},{"x":21,"y":72}],"type":"area"},{"arc":[{"x":27323,"y":26187},{"x":-450,"y":-69}],"type":"coastline"},{"arc":[{"x":27260,"y":26040},{"x":84,"y":28}],"type":"area"},{"arc":[{"x":27344,"y":26068},{"x":338,"y":76},{"x":0,"y":46},{"x":72,"y":41}],"type":"coastline"},{"arc":[{"x":27754,"y":26231},{"x":-104,"y":8},{"x":-26,"y":-6},{"x":-12,"y":-6},{"x":-7,"y":-3}],"type":"area"},{"arc":[{"x":28846,"y":23779},{"x":-173,"y":-67},{"x":-109,"y":29},{"x":-80,"y":-29},{"x":257,"y":-324},{"x":89,"y":37},{"x":-37,"y":21},{"x":43,"y":50},{"x":-55,"y":58},{"x":65,"y":225}],"type":"coastline"},{"arc":[{"x":29517,"y":23000},{"x":-55,"y":52},{"x":-17,"y":-19},{"x":-89,"y":39},{"x":-278,"y":-23},{"x":-43,"y":-15},{"x":36,"y":-61},{"x":-60,"y":2},{"x":-30,"y":-47},{"x":81,"y":-33},{"x":141,"y":22},{"x":246,"y":-45},{"x":-27,"y":41},{"x":95,"y":87}],"type":"coastline"},{"arc":[{"x":30569,"y":22731},{"x":-8,"y":5},{"x":-2,"y":3},{"x":-1,"y":8},{"x":24,"y":47},{"x":-4,"y":12},{"x":-3,"y":4},{"x":-5,"y":3},{"x":-1,"y":1},{"x":1,"y":3},{"x":-3,"y":6},{"x":0,"y":6},{"x":1,"y":2},{"x":4,"y":1},{"x":0,"y":2},{"x":5,"y":0},{"x":3,"y":2},{"x":2,"y":1},{"x":4,"y":11},{"x":20,"y":5},{"x":8,"y":10},{"x":33,"y":-3},{"x":41,"y":38},{"x":-142,"y":74},{"x":49,"y":0},{"x":43,"y":27},{"x":22,"y":6},{"x":24,"y":-5},{"x":14,"y":6},{"x":-45,"y":31},{"x":16,"y":46},{"x":-34,"y":19},{"x":6,"y":9},{"x":4,"y":1},{"x":31,"y":-2},{"x":30,"y":-13},{"x":1,"y":50},{"x":73,"y":1},{"x":-21,"y":66},{"x":44,"y":22},{"x":27,"y":122},{"x":-89,"y":27},{"x":-38,"y":158},{"x":-52,"y":-41},{"x":-25,"y":33},{"x":-39,"y":-21},{"x":-4,"y":17},{"x":-5,"y":2},{"x":-30,"y":-7},{"x":-20,"y":26},{"x":-25,"y":14},{"x":-11,"y":-5},{"x":2,"y":-17},{"x":5,"y":12},{"x":40,"y":-29},{"x":-4,"y":-55},{"x":-104,"y":-117},{"x":-77,"y":46},{"x":-32,"y":-33},{"x":-136,"y":15},{"x":-149,"y":149},{"x":-216,"y":56},{"x":-116,"y":81},{"x":-37,"y":170},{"x":-99,"y":-25},{"x":-186,"y":252},{"x":-115,"y":62},{"x":-73,"y":-15},{"x":106,"y":-64},{"x":46,"y":-108},{"x":-161,"y":-59},{"x":-83,"y":81},{"x":-100,"y":2},{"x":-37,"y":-72},{"x":-83,"y":-2},{"x":-110,"y":-59},{"x":0,"y":-45},{"x":160,"y":15},{"x":46,"y":47},{"x":275,"y":-72},{"x":-11,"y":-45},{"x":48,"y":-42},{"x":96,"y":-16},{"x":-22,"y":-53},{"x":36,"y":16},{"x":13,"y":-52},{"x":104,"y":-40},{"x":-5,"y":-82},{"x":236,"y":-169},{"x":25,"y":-67},{"x":39,"y":7},{"x":85,"y":-80},{"x":244,"y":-50},{"x":91,"y":-162},{"x":-120,"y":-84},{"x":-24,"y":-69}],"type":"coastline"},{"arc":[{"x":24292,"y":12608},{"x":-35,"y":-12},{"x":30,"y":-59},{"x":-65,"y":-40},{"x":127,"y":-145},{"x":56,"y":57},{"x":-13,"y":77},{"x":-100,"y":122}],"type":"coastline"},{"arc":[{"x":27507,"y":26623},{"x":-15,"y":30},{"x":-53,"y":-36},{"x":-116,"y":-247},{"x":-223,"y":124},{"x":-114,"y":-62},{"x":-31,"y":-90},{"x":-81,"y":-31},{"x":-66,"y":-50},{"x":-2,"y":-3},{"x":-1,"y":-3},{"x":37,"y":-130},{"x":394,"y":60},{"x":34,"y":-5},{"x":115,"y":19},{"x":65,"y":-4},{"x":41,"y":6},{"x":90,"y":-1},{"x":7,"y":4},{"x":3,"y":2},{"x":-1,"y":3},{"x":2,"y":2},{"x":5,"y":4},{"x":7,"y":6},{"x":1,"y":3},{"x":0,"y":0},{"x":1,"y":1},{"x":-4,"y":2},{"x":-4,"y":13},{"x":-90,"y":111},{"x":238,"y":239},{"x":-197,"y":35},{"x":-5,"y":-10},{"x":-37,"y":8}],"type":"coastline"},{"arc":[{"x":30488,"y":29581},{"x":2,"y":-14},{"x":6,"y":-13},{"x":8,"y":-12},{"x":11,"y":-11},{"x":14,"y":-8},{"x":16,"y":-7},{"x":17,"y":-4},{"x":19,"y":-2},{"x":19,"y":2},{"x":17,"y":4},{"x":16,"y":7},{"x":14,"y":8},{"x":11,"y":11},{"x":8,"y":12},{"x":6,"y":13},{"x":2,"y":14},{"x":-2,"y":15},{"x":-6,"y":13},{"x":-8,"y":12},{"x":-11,"y":10},{"x":-14,"y":9},{"x":-16,"y":7},{"x":-17,"y":4},{"x":-19,"y":1},{"x":-19,"y":-1},{"x":-17,"y":-4},{"x":-16,"y":-7},{"x":-14,"y":-9},{"x":-11,"y":-10},{"x":-8,"y":-12},{"x":-6,"y":-13},{"x":-2,"y":-15}],"type":"coastline"},{"arc":[{"x":28242,"y":31233},{"x":-19,"y":100},{"x":-86,"y":-91},{"x":120,"y":-33},{"x":-15,"y":24}],"type":"coastline"},{"arc":[{"x":30345,"y":27958},{"x":-22,"y":17},{"x":56,"y":-7},{"x":-34,"y":-10}],"type":"coastline"},{"arc":[{"x":29729,"y":31626},{"x":53,"y":-35},{"x":10,"y":-60},{"x":72,"y":-34},{"x":45,"y":-266},{"x":-12,"y":-141},{"x":-30,"y":-21},{"x":5,"y":-8},{"x":0,"y":-8},{"x":4,"y":-27},{"x":1,"y":-11},{"x":34,"y":-57},{"x":59,"y":-65},{"x":-52,"y":-74},{"x":-141,"y":-8},{"x":97,"y":-201},{"x":-20,"y":-73},{"x":-41,"y":-30},{"x":-21,"y":8},{"x":-37,"y":-26},{"x":-13,"y":12}],"type":"coastline"},{"arc":[{"x":29742,"y":30501},{"x":-196,"y":-233},{"x":-178,"y":-70},{"x":51,"y":-57},{"x":49,"y":17},{"x":38,"y":-23},{"x":-9,"y":-147},{"x":188,"y":-27},{"x":2,"y":-61},{"x":222,"y":12},{"x":-25,"y":-38},{"x":189,"y":-106},{"x":-39,"y":-60},{"x":-15,"y":-292},{"x":203,"y":-120},{"x":265,"y":-304},{"x":-127,"y":-311},{"x":-826,"y":0}],"type":"area"},{"arc":[{"x":29534,"y":28681},{"x":-10,"y":-64},{"x":147,"y":-66},{"x":91,"y":-95},{"x":-47,"y":-139},{"x":-85,"y":-66}],"type":"area"},{"arc":[{"x":29630,"y":28251},{"x":177,"y":29},{"x":46,"y":-14},{"x":-9,"y":21},{"x":42,"y":-69},{"x":-10,"y":-31},{"x":78,"y":-32},{"x":-8,"y":-45},{"x":233,"y":-52},{"x":33,"y":-70},{"x":52,"y":-6},{"x":-13,"y":162},{"x":79,"y":-72},{"x":119,"y":55},{"x":-11,"y":224},{"x":48,"y":-64},{"x":256,"y":57},{"x":59,"y":-35},{"x":-32,"y":-98},{"x":69,"y":-109},{"x":-131,"y":-170},{"x":11,"y":-62},{"x":-58,"y":-9}],"type":"coastline"},{"arc":[{"x":30660,"y":27861},{"x":74,"y":-94},{"x":25,"y":67},{"x":212,"y":-101},{"x":28,"y":-93},{"x":-35,"y":-6},{"x":131,"y":-32},{"x":33,"y":-75},{"x":166,"y":68},{"x":41,"y":-32},{"x":110,"y":15},{"x":133,"y":69},{"x":-123,"y":94},{"x":15,"y":66},{"x":159,"y":-26},{"x":150,"y":213},{"x":102,"y":54},{"x":-29,"y":73},{"x":-36,"y":-8},{"x":69,"y":122},{"x":-71,"y":29},{"x":5,"y":105},{"x":-142,"y":130},{"x":-74,"y":2},{"x":114,"y":17},{"x":-112,"y":125},{"x":122,"y":99},{"x":6,"y":82},{"x":-54,"y":38},{"x":58,"y":37},{"x":7,"y":65},{"x":-81,"y":44},{"x":-71,"y":104},{"x":86,"y":61},{"x":-39,"y":34},{"x":9,"y":96},{"x":120,"y":69},{"x":157,"y":-204},{"x":86,"y":128},{"x":75,"y":-44},{"x":68,"y":36},{"x":4,"y":137},{"x":69,"y":-114},{"x":46,"y":9},{"x":1,"y":39},{"x":28,"y":-82},{"x":37,"y":39},{"x":33,"y":-25},{"x":19,"y":172},{"x":-35,"y":14},{"x":70,"y":77},{"x":29,"y":246},{"x":71,"y":32},{"x":74,"y":331},{"x":48,"y":1},{"x":25,"y":96},{"x":34,"y":-5},{"x":-67,"y":156},{"x":36,"y":74},{"x":-142,"y":54},{"x":-80,"y":-36},{"x":-46,"y":24},{"x":33,"y":73},{"x":-27,"y":47},{"x":56,"y":-13},{"x":-54,"y":53},{"x":-52,"y":-11},{"x":12,"y":38},{"x":39,"y":-10},{"x":-44,"y":90},{"x":27,"y":46},{"x":-89,"y":-62},{"x":-52,"y":22},{"x":47,"y":60},{"x":-40,"y":59},{"x":83,"y":46},{"x":142,"y":259},{"x":-74,"y":-29},{"x":5,"y":-35},{"x":-37,"y":15},{"x":-162,"y":167},{"x":-566,"y":266},{"x":123,"y":76},{"x":-26,"y":57},{"x":-52,"y":-12},{"x":1,"y":42},{"x":-51,"y":7},{"x":-4,"y":124},{"x":63,"y":116},{"x":-48,"y":63},{"x":-117,"y":36},{"x":-43,"y":90},{"x":-106,"y":29},{"x":-30,"y":116},{"x":72,"y":69},{"x":-47,"y":-18},{"x":-110,"y":88}],"type":"area"},{"arc":[{"x":30600,"y":29512},{"x":-19,"y":-2},{"x":-19,"y":2},{"x":-33,"y":11},{"x":-25,"y":19},{"x":-8,"y":12},{"x":-6,"y":13},{"x":-2,"y":14},{"x":2,"y":15},{"x":14,"y":25},{"x":25,"y":19},{"x":16,"y":7},{"x":17,"y":4},{"x":19,"y":1},{"x":19,"y":-1},{"x":33,"y":-11},{"x":25,"y":-19},{"x":8,"y":-12},{"x":6,"y":-13},{"x":2,"y":-15},{"x":-2,"y":-14},{"x":-14,"y":-25},{"x":-25,"y":-19},{"x":-16,"y":-7},{"x":-17,"y":-4}],"type":"coastline"},{"arc":[{"x":21280,"y":26243},{"x":-26,"y":3},{"x":-14,"y":12},{"x":1,"y":24},{"x":-3,"y":5},{"x":2,"y":41},{"x":-3,"y":4},{"x":0,"y":24},{"x":-13,"y":20},{"x":-9,"y":8},{"x":-11,"y":2},{"x":-151,"y":122},{"x":-47,"y":171},{"x":104,"y":42},{"x":94,"y":111},{"x":-77,"y":49},{"x":13,"y":65},{"x":-11,"y":16},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":21135,"y":26968},{"x":-261,"y":-111},{"x":-829,"y":1},{"x":-186,"y":68}],"type":"area"},{"arc":[{"x":19859,"y":26926},{"x":-61,"y":-31},{"x":1,"y":-51},{"x":-78,"y":10},{"x":-81,"y":-87},{"x":-134,"y":-13},{"x":-174,"y":-68},{"x":-88,"y":-3},{"x":-55,"y":-42}],"type":"coastline"},{"arc":[{"x":19189,"y":26641},{"x":261,"y":-194},{"x":106,"y":6},{"x":459,"y":-455}],"type":"area"},{"arc":[{"x":20015,"y":25998},{"x":250,"y":-1},{"x":219,"y":72},{"x":34,"y":38},{"x":154,"y":25},{"x":151,"y":-16},{"x":133,"y":-53},{"x":110,"y":0},{"x":24,"y":-35},{"x":22,"y":7},{"x":1,"y":-15},{"x":14,"y":3},{"x":4,"y":0},{"x":11,"y":-6},{"x":18,"y":1},{"x":30,"y":-11}],"type":"coastline"},{"arc":[{"x":21190,"y":26007},{"x":90,"y":49},{"x":92,"y":125},{"x":-92,"y":25},{"x":-7,"y":11},{"x":20,"y":4},{"x":-13,"y":5},{"x":0,"y":17}],"type":"area"},{"arc":[{"x":29876,"y":31018},{"x":0,"y":8},{"x":-4,"y":27},{"x":0,"y":5},{"x":0,"y":3},{"x":-5,"y":8},{"x":1,"y":3},{"x":29,"y":18},{"x":-12,"y":75},{"x":24,"y":66},{"x":-45,"y":266},{"x":-72,"y":34},{"x":-10,"y":60},{"x":-53,"y":35},{"x":-28,"y":6},{"x":-7,"y":-3},{"x":-3,"y":-6},{"x":-4,"y":-41},{"x":-28,"y":-12},{"x":-78,"y":-132},{"x":-35,"y":-37},{"x":-76,"y":-34},{"x":-6,"y":-148},{"x":-149,"y":-64},{"x":-13,"y":-79},{"x":77,"y":-15},{"x":-43,"y":-44},{"x":16,"y":-44},{"x":-42,"y":3},{"x":1,"y":-19},{"x":-53,"y":-45},{"x":2,"y":-20},{"x":-10,"y":-20},{"x":-4,"y":-3},{"x":-2,"y":-2},{"x":-3,"y":-1},{"x":-3,"y":0},{"x":-8,"y":-1},{"x":-12,"y":-6},{"x":-12,"y":-2},{"x":-6,"y":-4},{"x":-7,"y":-3},{"x":-9,"y":0},{"x":-4,"y":1},{"x":-9,"y":8},{"x":-26,"y":4},{"x":-10,"y":-7},{"x":-13,"y":-3},{"x":-5,"y":-3},{"x":-1,"y":-42},{"x":-24,"y":-38},{"x":4,"y":-78},{"x":-42,"y":-36},{"x":41,"y":-21},{"x":-22,"y":-37},{"x":76,"y":-35},{"x":-51,"y":-84},{"x":49,"y":-36},{"x":-19,"y":-143},{"x":70,"y":-7},{"x":67,"y":34},{"x":18,"y":59},{"x":-39,"y":63},{"x":-30,"y":-6},{"x":95,"y":95},{"x":-14,"y":45},{"x":-27,"y":8},{"x":9,"y":10},{"x":16,"y":8},{"x":-3,"y":22},{"x":17,"y":-8},{"x":25,"y":18},{"x":7,"y":8},{"x":1,"y":8},{"x":0,"y":2},{"x":-2,"y":2},{"x":-2,"y":-1},{"x":-4,"y":-6},{"x":-9,"y":20},{"x":1,"y":2},{"x":5,"y":3},{"x":11,"y":1},{"x":12,"y":-7},{"x":20,"y":-2},{"x":-21,"y":34},{"x":68,"y":63},{"x":42,"y":-119},{"x":124,"y":-60},{"x":-95,"y":-31},{"x":-4,"y":-29},{"x":81,"y":-62},{"x":11,"y":-61},{"x":144,"y":130},{"x":33,"y":-47},{"x":37,"y":13},{"x":0,"y":13},{"x":21,"y":-8},{"x":41,"y":30},{"x":20,"y":73},{"x":-97,"y":201},{"x":141,"y":8},{"x":52,"y":74},{"x":-59,"y":65},{"x":-5,"y":18},{"x":-11,"y":14},{"x":-6,"y":11},{"x":-12,"y":14},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":29272,"y":30508},{"x":-3,"y":-4},{"x":-7,"y":-2},{"x":-8,"y":-1},{"x":-3,"y":1},{"x":-13,"y":4},{"x":-3,"y":7},{"x":-24,"y":-5},{"x":0,"y":24},{"x":36,"y":5},{"x":25,"y":-29}],"type":"coastline"},{"arc":[{"x":22584,"y":34573},{"x":63,"y":-71},{"x":-45,"y":-30},{"x":26,"y":-15},{"x":63,"y":27},{"x":60,"y":-23},{"x":-62,"y":-16},{"x":-1,"y":-33},{"x":122,"y":5},{"x":91,"y":-34},{"x":-41,"y":3}],"type":"coastline"},{"arc":[{"x":22860,"y":34386},{"x":431,"y":-71},{"x":9,"y":32},{"x":161,"y":66},{"x":27,"y":199},{"x":-51,"y":33},{"x":30,"y":17}],"type":"area"},{"arc":[{"x":23467,"y":34662},{"x":-17,"y":1},{"x":-20,"y":8},{"x":-16,"y":9},{"x":-44,"y":89},{"x":31,"y":10},{"x":39,"y":-17},{"x":14,"y":-1},{"x":10,"y":-4},{"x":7,"y":1},{"x":-4,"y":8},{"x":1,"y":2},{"x":5,"y":1},{"x":-1,"y":13},{"x":28,"y":7},{"x":-6,"y":23},{"x":28,"y":11},{"x":-62,"y":36},{"x":-2,"y":4},{"x":7,"y":5},{"x":0,"y":2},{"x":-3,"y":3},{"x":-1,"y":1},{"x":26,"y":12},{"x":-8,"y":6},{"x":2,"y":3},{"x":4,"y":3},{"x":6,"y":4},{"x":10,"y":2},{"x":0,"y":5},{"x":23,"y":8},{"x":-13,"y":16},{"x":37,"y":13}],"type":"coastline"},{"arc":[{"x":23548,"y":34946},{"x":-132,"y":-25},{"x":-140,"y":35},{"x":-259,"y":-11},{"x":-84,"y":-136},{"x":-70,"y":4},{"x":25,"y":-50},{"x":-33,"y":-26},{"x":-193,"y":45},{"x":56,"y":-51},{"x":-40,"y":-53},{"x":25,"y":-29},{"x":-94,"y":-27},{"x":-25,"y":-49}],"type":"area"},{"arc":[{"x":20695,"y":2744},{"x":-68,"y":30},{"x":37,"y":-49},{"x":-10,"y":18},{"x":41,"y":1}],"type":"coastline"},{"arc":[{"x":24139,"y":14257},{"x":-24,"y":9},{"x":38,"y":-28},{"x":-14,"y":19}],"type":"coastline"},{"arc":[{"x":27788,"y":37292},{"x":-56,"y":2},{"x":-9,"y":-81},{"x":65,"y":79}],"type":"coastline"},{"arc":[{"x":28102,"y":37523},{"x":-56,"y":-17},{"x":37,"y":-12},{"x":19,"y":29}],"type":"coastline"},{"arc":[{"x":28748,"y":37273},{"x":103,"y":51},{"x":4,"y":116},{"x":72,"y":39}],"type":"area"},{"arc":[{"x":28927,"y":37479},{"x":-349,"y":130},{"x":-351,"y":3},{"x":-105,"y":-56},{"x":38,"y":-48},{"x":-84,"y":-23},{"x":55,"y":-42},{"x":-21,"y":-42},{"x":-84,"y":-10},{"x":62,"y":-15},{"x":-101,"y":-21},{"x":22,"y":-27},{"x":51,"y":15},{"x":-107,"y":-86},{"x":61,"y":0},{"x":24,"y":-33},{"x":-9,"y":44},{"x":27,"y":-32},{"x":13,"y":37},{"x":-4,"y":-36},{"x":75,"y":-14},{"x":-24,"y":20},{"x":48,"y":-14},{"x":68,"y":47},{"x":24,"y":-27},{"x":57,"y":45},{"x":17,"y":-39},{"x":21,"y":43},{"x":15,"y":-46},{"x":139,"y":-2},{"x":-37,"y":-22},{"x":40,"y":-21},{"x":46,"y":22},{"x":-40,"y":6},{"x":48,"y":0},{"x":-23,"y":28},{"x":35,"y":-10},{"x":-68,"y":42},{"x":52,"y":23},{"x":40,"y":-45},{"x":24,"y":25},{"x":25,"y":-31},{"x":101,"y":6}],"type":"coastline"},{"arc":[{"x":29742,"y":24498},{"x":-84,"y":-121}],"type":"area"},{"arc":[{"x":29809,"y":24316},{"x":46,"y":-3},{"x":17,"y":37}],"type":"area"},{"arc":[{"x":29872,"y":24350},{"x":97,"y":58},{"x":-115,"y":68},{"x":-17,"y":47},{"x":-95,"y":-25}],"type":"coastline"},{"arc":[{"x":26984,"y":27734},{"x":-52,"y":21},{"x":-34,"y":-16},{"x":45,"y":-22},{"x":41,"y":17}],"type":"coastline"},{"arc":[{"x":26659,"y":27764},{"x":-1,"y":-93},{"x":103,"y":-28},{"x":23,"y":-110}],"type":"area"},{"arc":[{"x":26986,"y":27705},{"x":-101,"y":28},{"x":-41,"y":-57},{"x":-3,"y":48},{"x":-182,"y":40}],"type":"coastline"},{"arc":[{"x":25274,"y":34259},{"x":12,"y":5},{"x":1,"y":5},{"x":1,"y":3},{"x":1,"y":5},{"x":-5,"y":9},{"x":-6,"y":2},{"x":0,"y":1},{"x":-13,"y":3},{"x":-3,"y":2},{"x":-5,"y":0},{"x":-13,"y":6},{"x":-51,"y":33},{"x":-14,"y":0},{"x":-13,"y":14},{"x":-55,"y":7},{"x":41,"y":19},{"x":-23,"y":17},{"x":-108,"y":-18},{"x":-6,"y":11},{"x":-34,"y":7},{"x":-8,"y":8},{"x":-32,"y":9},{"x":-7,"y":3},{"x":-4,"y":3},{"x":-8,"y":37},{"x":-36,"y":28},{"x":69,"y":51},{"x":-71,"y":64},{"x":-47,"y":-31},{"x":-99,"y":71},{"x":-88,"y":-41},{"x":17,"y":-74},{"x":-45,"y":11},{"x":-41,"y":-30},{"x":-135,"y":154},{"x":-88,"y":7},{"x":-297,"y":165},{"x":-122,"y":17},{"x":19,"y":22},{"x":-104,"y":71},{"x":-66,"y":-34},{"x":-114,"y":62},{"x":-54,"y":-26},{"x":-31,"y":13},{"x":-78,"y":-17},{"x":13,"y":-16},{"x":-23,"y":-8},{"x":0,"y":-5},{"x":-10,"y":-2},{"x":-10,"y":-7},{"x":6,"y":-9},{"x":-25,"y":-10},{"x":-1,"y":-2},{"x":1,"y":-1},{"x":2,"y":-2},{"x":1,"y":-1},{"x":0,"y":-2},{"x":-7,"y":-5},{"x":64,"y":-40},{"x":-22,"y":-34},{"x":-28,"y":-7},{"x":1,"y":-13},{"x":-5,"y":-1},{"x":3,"y":-10},{"x":-2,"y":-1},{"x":-5,"y":0},{"x":-3,"y":1},{"x":-7,"y":3},{"x":-14,"y":1},{"x":-39,"y":17},{"x":-31,"y":-10},{"x":56,"y":-65},{"x":-13,"y":-20},{"x":17,"y":-13},{"x":37,"y":-9},{"x":49,"y":39},{"x":96,"y":10},{"x":32,"y":-18},{"x":31,"y":15},{"x":18,"y":-11},{"x":20,"y":16},{"x":44,"y":5},{"x":10,"y":-1},{"x":9,"y":-3},{"x":7,"y":-6},{"x":11,"y":-19},{"x":47,"y":2},{"x":25,"y":-45},{"x":88,"y":-35},{"x":4,"y":-1},{"x":10,"y":-1},{"x":30,"y":4},{"x":66,"y":-5},{"x":38,"y":8},{"x":16,"y":1},{"x":24,"y":0},{"x":6,"y":0},{"x":12,"y":-3},{"x":22,"y":-11},{"x":26,"y":-27},{"x":13,"y":-7},{"x":27,"y":-8},{"x":12,"y":-10},{"x":31,"y":-8},{"x":19,"y":-10},{"x":27,"y":-7},{"x":19,"y":-6},{"x":7,"y":-5},{"x":1,"y":-3},{"x":-2,"y":-3},{"x":-2,"y":-2},{"x":-7,"y":-3},{"x":-1,"y":-1},{"x":1,"y":-2},{"x":8,"y":-4},{"x":4,"y":-3},{"x":17,"y":-31},{"x":6,"y":-18},{"x":-3,"y":-11},{"x":-6,"y":-6},{"x":-10,"y":-3},{"x":-15,"y":7},{"x":-9,"y":-15},{"x":-58,"y":-16},{"x":-41,"y":-43},{"x":91,"y":-74},{"x":-169,"y":-115},{"x":19,"y":-18},{"x":6,"y":-12},{"x":5,"y":0},{"x":23,"y":9},{"x":42,"y":5},{"x":38,"y":20},{"x":84,"y":-16},{"x":133,"y":36},{"x":119,"y":-9},{"x":-5,"y":-95},{"x":144,"y":9},{"x":50,"y":-24},{"x":-34,"y":-24},{"x":6,"y":-6},{"x":4,"y":-1},{"x":8,"y":1},{"x":7,"y":-1},{"x":3,"y":1},{"x":6,"y":2},{"x":52,"y":7},{"x":17,"y":4},{"x":8,"y":5},{"x":7,"y":3},{"x":3,"y":2},{"x":2,"y":5},{"x":10,"y":4},{"x":-5,"y":21},{"x":16,"y":14},{"x":6,"y":-16},{"x":92,"y":25},{"x":54,"y":53},{"x":-84,"y":12},{"x":-7,"y":61},{"x":107,"y":5},{"x":140,"y":-35},{"x":55,"y":24},{"x":1,"y":5},{"x":-26,"y":14}],"type":"coastline"},{"arc":[{"x":28027,"y":26301},{"x":-24,"y":-9},{"x":-71,"y":34},{"x":-82,"y":-28},{"x":-3,"y":-4},{"x":7,"y":-13},{"x":-5,"y":-8},{"x":5,"y":-3},{"x":-8,"y":-11},{"x":-24,"y":-12},{"x":-16,"y":-4},{"x":-16,"y":14},{"x":-65,"y":-59},{"x":-43,"y":-8},{"x":0,"y":-46},{"x":275,"y":68},{"x":76,"y":37},{"x":-6,"y":52}],"type":"coastline"},{"arc":[{"x":21940,"y":20846},{"x":-126,"y":24},{"x":-113,"y":-40},{"x":-50,"y":86},{"x":-70,"y":15},{"x":-26,"y":41},{"x":-335,"y":-11},{"x":152,"y":-190},{"x":249,"y":-149},{"x":133,"y":-127},{"x":43,"y":-12},{"x":49,"y":12},{"x":142,"y":92},{"x":59,"y":1},{"x":34,"y":35},{"x":68,"y":5}],"type":"coastline"},{"arc":[{"x":24625,"y":24792},{"x":439,"y":-480},{"x":449,"y":-492},{"x":-101,"y":-122}],"type":"area"},{"arc":[{"x":25412,"y":23698},{"x":-85,"y":-93},{"x":127,"y":-89},{"x":76,"y":-184}],"type":"area"},{"arc":[{"x":27039,"y":23035},{"x":138,"y":89},{"x":132,"y":-18},{"x":56,"y":19},{"x":15,"y":29},{"x":88,"y":45},{"x":52,"y":69},{"x":15,"y":13},{"x":7,"y":2},{"x":9,"y":0},{"x":30,"y":-14},{"x":122,"y":7},{"x":-78,"y":102},{"x":19,"y":111},{"x":-118,"y":234},{"x":-226,"y":70},{"x":-105,"y":254},{"x":-148,"y":147},{"x":35,"y":68},{"x":116,"y":58},{"x":185,"y":-22},{"x":94,"y":19},{"x":171,"y":189},{"x":-67,"y":180},{"x":-69,"y":-3},{"x":-38,"y":28},{"x":-48,"y":207},{"x":-64,"y":17},{"x":-19,"y":-12},{"x":-19,"y":-4},{"x":-26,"y":-20},{"x":-7,"y":-1},{"x":-70,"y":4},{"x":-48,"y":12},{"x":-9,"y":1},{"x":-8,"y":0},{"x":-56,"y":-10},{"x":-80,"y":-27},{"x":-217,"y":36},{"x":-697,"y":0},{"x":-1367,"y":0},{"x":-1,"y":-122},{"x":-113,"y":0}],"type":"coastline"},{"arc":[{"x":23391,"y":14477},{"x":-66,"y":-8},{"x":37,"y":-15},{"x":29,"y":23}],"type":"coastline"},{"arc":[{"x":22395,"y":31658},{"x":-69,"y":43},{"x":-74,"y":11},{"x":-66,"y":39},{"x":-33,"y":-12},{"x":-5,"y":28},{"x":-329,"y":64},{"x":-132,"y":-30},{"x":-114,"y":-128},{"x":77,"y":-68},{"x":412,"y":-41},{"x":57,"y":10},{"x":-78,"y":7},{"x":210,"y":10},{"x":120,"y":34},{"x":28,"y":-18},{"x":-32,"y":29},{"x":-2,"y":40},{"x":73,"y":-86},{"x":-44,"y":65},{"x":56,"y":-24},{"x":-55,"y":27}],"type":"coastline"},{"arc":[{"x":13739,"y":25400},{"x":-97,"y":55},{"x":-128,"y":-34},{"x":-2,"y":-1},{"x":-4,"y":-6},{"x":-29,"y":-29},{"x":-5,"y":-8},{"x":-13,"y":-50},{"x":-115,"y":-37},{"x":16,"y":-44},{"x":62,"y":-42},{"x":38,"y":1},{"x":37,"y":-22},{"x":70,"y":-24},{"x":9,"y":2},{"x":2,"y":1},{"x":0,"y":1},{"x":-3,"y":1},{"x":7,"y":3},{"x":-4,"y":3},{"x":9,"y":5},{"x":8,"y":16},{"x":14,"y":11},{"x":128,"y":48},{"x":47,"y":49},{"x":29,"y":59},{"x":-76,"y":42}],"type":"coastline"},{"arc":[{"x":32671,"y":24429},{"x":3,"y":-8}],"type":"area"},{"arc":[{"x":32674,"y":24421},{"x":99,"y":19},{"x":-102,"y":-11}],"type":"coastline"},{"arc":[{"x":32465,"y":24645},{"x":22,"y":-11},{"x":26,"y":0},{"x":59,"y":20},{"x":53,"y":-34},{"x":41,"y":-158}],"type":"area"},{"arc":[{"x":32666,"y":24462},{"x":185,"y":-26},{"x":78,"y":127},{"x":-36,"y":248},{"x":41,"y":89},{"x":-174,"y":210},{"x":-77,"y":-18},{"x":-12,"y":43},{"x":-90,"y":-124},{"x":-124,"y":-31},{"x":0,"y":21},{"x":-19,"y":11},{"x":-18,"y":-3},{"x":-2,"y":-3},{"x":0,"y":-6},{"x":-4,"y":-5},{"x":0,"y":-2},{"x":4,"y":-14},{"x":34,"y":-7},{"x":-37,"y":-78},{"x":-9,"y":-4},{"x":-16,"y":4},{"x":-7,"y":0},{"x":-4,"y":-1},{"x":-1,"y":-3},{"x":-18,"y":-50},{"x":16,"y":-25},{"x":-14,"y":-66},{"x":9,"y":-17},{"x":2,"y":0},{"x":1,"y":1},{"x":1,"y":-1},{"x":4,"y":-3},{"x":2,"y":0},{"x":2,"y":0},{"x":7,"y":4},{"x":5,"y":0},{"x":15,"y":-2},{"x":10,"y":-3},{"x":3,"y":-2},{"x":3,"y":-5},{"x":8,"y":-5},{"x":19,"y":-29},{"x":-2,"y":-8},{"x":20,"y":-11},{"x":-6,"y":-23}],"type":"coastline"},{"arc":[{"x":31519,"y":22611},{"x":2,"y":6},{"x":-2,"y":2},{"x":-6,"y":2},{"x":-17,"y":-3},{"x":-10,"y":3},{"x":-26,"y":13},{"x":-20,"y":34},{"x":-77,"y":-19},{"x":19,"y":-68},{"x":23,"y":12},{"x":36,"y":-19},{"x":18,"y":-2},{"x":15,"y":6},{"x":6,"y":6},{"x":27,"y":7},{"x":16,"y":11},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":32760,"y":25110},{"x":174,"y":-210},{"x":-41,"y":-89},{"x":36,"y":-248},{"x":-78,"y":-127},{"x":170,"y":0},{"x":168,"y":83},{"x":42,"y":104},{"x":-149,"y":82},{"x":-19,"y":84},{"x":55,"y":54},{"x":137,"y":-11},{"x":46,"y":118},{"x":-125,"y":148},{"x":3,"y":125},{"x":-22,"y":-2},{"x":-10,"y":16},{"x":-9,"y":8},{"x":-10,"y":15},{"x":-8,"y":2},{"x":-37,"y":-20},{"x":-14,"y":8},{"x":-44,"y":-15},{"x":-67,"y":61},{"x":-91,"y":3}],"type":"coastline"},{"arc":[{"x":24296,"y":14218},{"x":7,"y":-11}],"type":"area"},{"arc":[{"x":24303,"y":14207},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":28303,"y":21228},{"x":-145,"y":87},{"x":28,"y":204}],"type":"coastline"},{"arc":[{"x":28174,"y":21523},{"x":-120,"y":139},{"x":-338,"y":12},{"x":-167,"y":78},{"x":-92,"y":-22},{"x":-3,"y":-203},{"x":-63,"y":7},{"x":-33,"y":-101},{"x":-107,"y":-23},{"x":-48,"y":35},{"x":-55,"y":-11},{"x":-46,"y":-88},{"x":-222,"y":-142},{"x":21,"y":-26},{"x":-38,"y":-125},{"x":14,"y":-44},{"x":-28,"y":-25},{"x":1,"y":-33},{"x":-65,"y":-50},{"x":-14,"y":-18},{"x":-22,"y":-16},{"x":-5,"y":-7},{"x":-3,"y":-1},{"x":-14,"y":-6},{"x":-26,"y":-27},{"x":-3,"y":-2},{"x":-4,"y":-1},{"x":-6,"y":-1},{"x":-226,"y":0},{"x":-1,"y":-16},{"x":-121,"y":3},{"x":-7,"y":-75},{"x":-54,"y":-50},{"x":38,"y":-114},{"x":-30,"y":-77},{"x":-57,"y":7},{"x":-119,"y":-47},{"x":-25,"y":-41},{"x":-261,"y":-45},{"x":-191,"y":-107},{"x":-65,"y":-71},{"x":-311,"y":-40},{"x":-182,"y":-64},{"x":-18,"y":-275},{"x":115,"y":11},{"x":100,"y":55},{"x":345,"y":84},{"x":-60,"y":-27},{"x":30,"y":7},{"x":209,"y":127},{"x":349,"y":59},{"x":110,"y":103},{"x":266,"y":74},{"x":89,"y":179},{"x":219,"y":150},{"x":186,"y":72},{"x":62,"y":5},{"x":55,"y":-33},{"x":170,"y":5},{"x":179,"y":69},{"x":85,"y":2},{"x":156,"y":89},{"x":152,"y":195},{"x":413,"y":121},{"x":32,"y":64}],"type":"coastline"},{"arc":[{"x":30465,"y":25305},{"x":29,"y":-17},{"x":9,"y":13},{"x":86,"y":-10},{"x":50,"y":3},{"x":43,"y":17},{"x":43,"y":0},{"x":10,"y":-2},{"x":17,"y":-7},{"x":4,"y":0},{"x":18,"y":-7},{"x":6,"y":1},{"x":7,"y":-2},{"x":2,"y":-2},{"x":7,"y":1},{"x":8,"y":-2},{"x":4,"y":-2},{"x":6,"y":-4},{"x":4,"y":-1},{"x":3,"y":-11},{"x":22,"y":-16},{"x":71,"y":-28},{"x":7,"y":-12},{"x":40,"y":-21},{"x":6,"y":-3},{"x":5,"y":-1},{"x":8,"y":2},{"x":14,"y":-8},{"x":3,"y":4},{"x":21,"y":-11},{"x":14,"y":1},{"x":41,"y":-21},{"x":21,"y":-46}],"type":"coastline"},{"arc":[{"x":31094,"y":25113},{"x":51,"y":120},{"x":-115,"y":184},{"x":-118,"y":4},{"x":-28,"y":49},{"x":-85,"y":0},{"x":-118,"y":70},{"x":7,"y":-144},{"x":-102,"y":1},{"x":-111,"y":-55},{"x":-10,"y":-37}],"type":"area"},{"arc":[{"x":17522,"y":27876},{"x":-30,"y":-15},{"x":-35,"y":38},{"x":-148,"y":49},{"x":-542,"y":65},{"x":-121,"y":-38},{"x":126,"y":-32},{"x":-27,"y":-32},{"x":-289,"y":24},{"x":-102,"y":-50},{"x":-257,"y":-8},{"x":-882,"y":-172},{"x":-582,"y":-100},{"x":-149,"y":-240},{"x":134,"y":-136},{"x":150,"y":-43},{"x":196,"y":10},{"x":272,"y":-65},{"x":212,"y":34},{"x":19,"y":38},{"x":286,"y":81},{"x":555,"y":-67},{"x":177,"y":61},{"x":115,"y":2},{"x":-7,"y":51},{"x":66,"y":48},{"x":-42,"y":4},{"x":14,"y":37},{"x":55,"y":7},{"x":-13,"y":49},{"x":36,"y":10},{"x":-57,"y":39},{"x":73,"y":-16},{"x":98,"y":75},{"x":-79,"y":1},{"x":26,"y":33},{"x":54,"y":-21},{"x":117,"y":47},{"x":-98,"y":-2},{"x":122,"y":45},{"x":-44,"y":25},{"x":71,"y":-37},{"x":81,"y":27},{"x":-40,"y":14},{"x":148,"y":-16},{"x":20,"y":20},{"x":-65,"y":24},{"x":100,"y":26},{"x":-5,"y":36},{"x":128,"y":22},{"x":85,"y":-28},{"x":-10,"y":26},{"x":121,"y":39},{"x":-33,"y":11}],"type":"coastline"},{"arc":[{"x":24866,"y":11334},{"x":-69,"y":-30},{"x":65,"y":7},{"x":4,"y":23}],"type":"coastline"},{"arc":[{"x":25871,"y":8436},{"x":-39,"y":2},{"x":55,"y":-16},{"x":-16,"y":14}],"type":"coastline"},{"arc":[{"x":25860,"y":8245},{"x":-100,"y":13},{"x":56,"y":-30},{"x":107,"y":22},{"x":-63,"y":-5}],"type":"coastline"},{"arc":[{"x":26559,"y":7878},{"x":-3,"y":-21},{"x":67,"y":17},{"x":-64,"y":4}],"type":"coastline"},{"arc":[{"x":26813,"y":8231},{"x":-107,"y":-4},{"x":29,"y":-33},{"x":69,"y":14},{"x":9,"y":23}],"type":"coastline"},{"arc":[{"x":26883,"y":8083},{"x":-124,"y":46},{"x":96,"y":-57},{"x":28,"y":11}],"type":"coastline"},{"arc":[{"x":26080,"y":10071},{"x":-489,"y":-83},{"x":-269,"y":-8},{"x":-232,"y":70},{"x":-65,"y":-13},{"x":59,"y":6},{"x":126,"y":-50},{"x":-326,"y":77},{"x":-175,"y":84},{"x":-121,"y":20},{"x":-119,"y":66},{"x":12,"y":-25},{"x":-30,"y":11},{"x":-4,"y":82},{"x":-126,"y":88},{"x":64,"y":111},{"x":-20,"y":52},{"x":57,"y":50},{"x":-37,"y":5},{"x":42,"y":-3},{"x":13,"y":35},{"x":4,"y":56},{"x":-32,"y":-13},{"x":-36,"y":29},{"x":11,"y":40},{"x":49,"y":37},{"x":36,"y":-28},{"x":32,"y":21},{"x":-32,"y":-32},{"x":111,"y":89},{"x":138,"y":36},{"x":250,"y":17},{"x":122,"y":229},{"x":-30,"y":145},{"x":27,"y":15},{"x":-6,"y":-34},{"x":15,"y":45},{"x":-99,"y":37},{"x":-212,"y":-84},{"x":-98,"y":-6},{"x":41,"y":0},{"x":-66,"y":-32},{"x":-38,"y":8},{"x":17,"y":32},{"x":-60,"y":-32},{"x":2,"y":26},{"x":-253,"y":-46},{"x":68,"y":-29},{"x":85,"y":5},{"x":-89,"y":-32}],"type":"coastline"},{"arc":[{"x":24247,"y":11041},{"x":0,"y":-107},{"x":0,"y":-112},{"x":-1,"y":-3},{"x":-2,"y":-1},{"x":-123,"y":0},{"x":0,"y":-53},{"x":0,"y":-1},{"x":-4,"y":-1},{"x":-10,"y":10},{"x":-3,"y":10},{"x":-61,"y":28},{"x":-2,"y":12},{"x":-14,"y":4},{"x":-7,"y":15},{"x":-4,"y":-1},{"x":-9,"y":8},{"x":-21,"y":9},{"x":-15,"y":0},{"x":1,"y":4},{"x":-24,"y":0},{"x":-15,"y":29},{"x":-11,"y":2},{"x":-25,"y":-10},{"x":-5,"y":3},{"x":-6,"y":-4},{"x":-4,"y":1},{"x":-6,"y":4},{"x":-2,"y":-3},{"x":-4,"y":2},{"x":-5,"y":-3},{"x":-4,"y":0},{"x":2,"y":3},{"x":-2,"y":0},{"x":-4,"y":-2},{"x":-2,"y":-2},{"x":0,"y":-2},{"x":-2,"y":-153},{"x":-178,"y":-57},{"x":-44,"y":17},{"x":-119,"y":-21},{"x":378,"y":-231},{"x":4,"y":-35},{"x":-56,"y":57},{"x":46,"y":-92},{"x":28,"y":17},{"x":-15,"y":-26},{"x":37,"y":-10},{"x":-35,"y":-23},{"x":-15,"y":36},{"x":-122,"y":-217},{"x":72,"y":-148},{"x":130,"y":-122},{"x":34,"y":-111},{"x":125,"y":-166},{"x":155,"y":-106},{"x":86,"y":-191},{"x":122,"y":-58},{"x":105,"y":-124},{"x":155,"y":-64},{"x":84,"y":-21},{"x":40,"y":55},{"x":41,"y":-37},{"x":66,"y":38},{"x":86,"y":6},{"x":115,"y":-54},{"x":203,"y":-43},{"x":507,"y":-285},{"x":-18,"y":40},{"x":74,"y":-89},{"x":-2,"y":17},{"x":43,"y":-21},{"x":-13,"y":-37},{"x":72,"y":28},{"x":-48,"y":-27},{"x":21,"y":-23},{"x":-29,"y":11},{"x":20,"y":-30},{"x":85,"y":-3},{"x":60,"y":42},{"x":102,"y":-48},{"x":-5,"y":-37},{"x":87,"y":-22},{"x":41,"y":-68},{"x":131,"y":2},{"x":14,"y":-72},{"x":232,"y":-129},{"x":79,"y":-9},{"x":6,"y":-21},{"x":298,"y":-81},{"x":120,"y":-2},{"x":28,"y":-64},{"x":76,"y":-44},{"x":-34,"y":-28},{"x":103,"y":-99},{"x":-71,"y":30},{"x":-120,"y":-13},{"x":-260,"y":43},{"x":-343,"y":205},{"x":-154,"y":17},{"x":-149,"y":92},{"x":-117,"y":20},{"x":73,"y":-4},{"x":-86,"y":46},{"x":-166,"y":16},{"x":-218,"y":79},{"x":-101,"y":-3},{"x":-56,"y":32},{"x":54,"y":21},{"x":-65,"y":51},{"x":-193,"y":45},{"x":-69,"y":-66},{"x":145,"y":-37},{"x":235,"y":-167},{"x":-18,"y":-16},{"x":83,"y":-24},{"x":-25,"y":-9},{"x":213,"y":1},{"x":-47,"y":-4},{"x":161,"y":-33},{"x":118,"y":-102},{"x":51,"y":9},{"x":-49,"y":-16},{"x":-6,"y":-44},{"x":228,"y":-169},{"x":31,"y":86},{"x":-50,"y":44},{"x":56,"y":-39},{"x":28,"y":29},{"x":97,"y":0},{"x":207,"y":-113},{"x":85,"y":-89},{"x":235,"y":-43},{"x":35,"y":-34},{"x":179,"y":-51},{"x":20,"y":17},{"x":155,"y":-62}],"type":"coastline"},{"arc":[{"x":27557,"y":7642},{"x":41,"y":292},{"x":-48,"y":-12},{"x":-264,"y":464},{"x":0,"y":339},{"x":101,"y":0},{"x":-4,"y":217},{"x":-258,"y":182},{"x":-212,"y":49},{"x":-74,"y":57},{"x":-80,"y":111},{"x":171,"y":56},{"x":34,"y":44},{"x":-26,"y":112},{"x":-149,"y":89},{"x":-189,"y":48},{"x":-155,"y":92},{"x":-262,"y":50},{"x":-128,"y":204},{"x":25,"y":35}],"type":"area"},{"arc":[{"x":29537,"y":24663},{"x":1,"y":-11},{"x":-1,"y":-6},{"x":-5,"y":-3},{"x":-39,"y":-6},{"x":3,"y":-80},{"x":-65,"y":-56},{"x":-3,"y":-75}],"type":"coastline"},{"arc":[{"x":29742,"y":24498},{"x":-3,"y":14},{"x":23,"y":31},{"x":-7,"y":20},{"x":15,"y":21},{"x":-7,"y":1},{"x":-3,"y":2},{"x":-2,"y":2},{"x":-1,"y":2},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":24546,"y":22391},{"x":-613,"y":-5},{"x":-165,"y":-41},{"x":-74,"y":-41},{"x":-16,"y":-265},{"x":-69,"y":-46},{"x":-15,"y":-89}],"type":"area"},{"arc":[{"x":22585,"y":21206},{"x":6,"y":-6},{"x":1,"y":-1},{"x":0,"y":-1},{"x":-3,"y":-11},{"x":-6,"y":-15},{"x":-51,"y":-26},{"x":6,"y":-20},{"x":8,"y":-7},{"x":38,"y":7},{"x":21,"y":-10},{"x":26,"y":7},{"x":22,"y":-6},{"x":-39,"y":-23},{"x":23,"y":-27},{"x":-66,"y":0},{"x":-4,"y":-36},{"x":-36,"y":1},{"x":-4,"y":-2},{"x":-6,"y":-5},{"x":15,"y":-11},{"x":10,"y":-31},{"x":21,"y":-2},{"x":-2,"y":-8},{"x":6,"y":0},{"x":8,"y":-3},{"x":7,"y":0},{"x":3,"y":-1},{"x":2,"y":-1},{"x":1,"y":-1},{"x":1,"y":-1},{"x":0,"y":-2},{"x":-10,"y":-5},{"x":5,"y":-13},{"x":-62,"y":-40}],"type":"coastline"},{"arc":[{"x":23030,"y":20493},{"x":130,"y":0},{"x":163,"y":-86},{"x":104,"y":12},{"x":136,"y":-32}],"type":"area"},{"arc":[{"x":23563,"y":20387},{"x":-9,"y":23},{"x":38,"y":31},{"x":144,"y":11},{"x":23,"y":25},{"x":-122,"y":74},{"x":74,"y":23},{"x":2,"y":158},{"x":58,"y":8},{"x":-45,"y":1},{"x":-1,"y":244},{"x":0,"y":119},{"x":0,"y":34},{"x":0,"y":18},{"x":0,"y":51},{"x":0,"y":0},{"x":0,"y":1},{"x":0,"y":0},{"x":184,"y":19},{"x":49,"y":-33},{"x":479,"y":-28},{"x":131,"y":-8},{"x":113,"y":-7},{"x":113,"y":-7},{"x":56,"y":-4},{"x":66,"y":-4},{"x":70,"y":-4},{"x":54,"y":-4},{"x":109,"y":-6},{"x":108,"y":-7},{"x":136,"y":-9},{"x":469,"y":-30},{"x":0,"y":215}],"type":"coastline"},{"arc":[{"x":22698,"y":33816},{"x":-53,"y":3},{"x":44,"y":-21},{"x":9,"y":18}],"type":"coastline"},{"arc":[{"x":22829,"y":33823},{"x":-12,"y":-14},{"x":77,"y":13},{"x":-65,"y":1}],"type":"coastline"},{"arc":[{"x":22894,"y":33855},{"x":-60,"y":-1},{"x":58,"y":-20},{"x":2,"y":21}],"type":"coastline"},{"arc":[{"x":22941,"y":33852},{"x":-16,"y":17},{"x":-10,"y":-22},{"x":50,"y":-5},{"x":-24,"y":10}],"type":"coastline"},{"arc":[{"x":23068,"y":33837},{"x":-53,"y":-12},{"x":79,"y":2},{"x":-26,"y":10}],"type":"coastline"},{"arc":[{"x":23183,"y":33825},{"x":-38,"y":0},{"x":68,"y":-6},{"x":-30,"y":6}],"type":"coastline"},{"arc":[{"x":24484,"y":33264},{"x":-44,"y":1},{"x":46,"y":-25},{"x":-2,"y":24}],"type":"coastline"},{"arc":[{"x":24623,"y":33278},{"x":-16,"y":21},{"x":-31,"y":-14},{"x":2,"y":-9},{"x":46,"y":-17},{"x":-1,"y":19}],"type":"coastline"},{"arc":[{"x":25088,"y":34173},{"x":-54,"y":-53},{"x":-92,"y":-25},{"x":-6,"y":16},{"x":-11,"y":-35},{"x":-10,"y":-4},{"x":-2,"y":-5},{"x":-10,"y":-5},{"x":-5,"y":-3},{"x":-3,"y":-2},{"x":-6,"y":-1},{"x":-11,"y":-3},{"x":-16,"y":-3},{"x":-36,"y":-4},{"x":-6,"y":-2},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":24810,"y":34044},{"x":6,"y":-6},{"x":6,"y":-2},{"x":4,"y":-6},{"x":13,"y":-6},{"x":-16,"y":-63},{"x":-50,"y":11},{"x":-12,"y":-53},{"x":-79,"y":-21},{"x":-19,"y":-81},{"x":31,"y":-25},{"x":-197,"y":-45},{"x":-80,"y":11},{"x":-4,"y":-48},{"x":-55,"y":35},{"x":-139,"y":14},{"x":-179,"y":92},{"x":-137,"y":18},{"x":22,"y":29},{"x":-61,"y":-11},{"x":-14,"y":-32},{"x":-156,"y":2},{"x":-56,"y":-49},{"x":-164,"y":47},{"x":-114,"y":66},{"x":-187,"y":0},{"x":-275,"y":66},{"x":-253,"y":-105},{"x":-77,"y":-3}],"type":"area"},{"arc":[{"x":22568,"y":33879},{"x":-81,"y":-24},{"x":164,"y":-11},{"x":47,"y":31},{"x":161,"y":3},{"x":12,"y":19},{"x":41,"y":-42},{"x":9,"y":14},{"x":18,"y":7},{"x":54,"y":-2},{"x":1,"y":-20},{"x":24,"y":20},{"x":188,"y":-15},{"x":198,"y":-47},{"x":-119,"y":-6},{"x":258,"y":-31},{"x":-8,"y":17},{"x":52,"y":-28},{"x":266,"y":-28},{"x":112,"y":21},{"x":-17,"y":-45},{"x":140,"y":-13},{"x":79,"y":-46},{"x":-199,"y":-25},{"x":-22,"y":-29},{"x":67,"y":-33},{"x":-81,"y":19},{"x":-43,"y":-73},{"x":-112,"y":-38},{"x":95,"y":-6},{"x":-81,"y":-18},{"x":81,"y":-10},{"x":-77,"y":-12},{"x":-3,"y":-23},{"x":103,"y":18},{"x":-88,"y":-33},{"x":14,"y":-14},{"x":54,"y":23},{"x":-51,"y":-28},{"x":133,"y":20},{"x":-123,"y":-59},{"x":353,"y":45},{"x":268,"y":-41},{"x":27,"y":-29},{"x":116,"y":4},{"x":-116,"y":-17},{"x":111,"y":-54},{"x":-26,"y":38},{"x":14,"y":16},{"x":16,"y":6},{"x":19,"y":1},{"x":40,"y":-31},{"x":25,"y":9},{"x":-6,"y":-25},{"x":47,"y":17},{"x":38,"y":-75},{"x":-65,"y":5},{"x":73,"y":-24},{"x":95,"y":13},{"x":-96,"y":-26},{"x":44,"y":10},{"x":85,"y":-37},{"x":-99,"y":11},{"x":180,"y":-56}],"type":"coastline"},{"arc":[{"x":29653,"y":24231},{"x":122,"y":-96},{"x":20,"y":14},{"x":-19,"y":-19},{"x":21,"y":-12},{"x":113,"y":2},{"x":78,"y":45},{"x":-7,"y":30},{"x":44,"y":-19},{"x":6,"y":35},{"x":-159,"y":139}],"type":"coastline"},{"arc":[{"x":31875,"y":34032},{"x":-1,"y":62},{"x":-62,"y":102},{"x":5,"y":21},{"x":-5,"y":24},{"x":-9,"y":12},{"x":1,"y":10},{"x":-7,"y":18},{"x":-14,"y":16},{"x":-4,"y":1},{"x":-15,"y":-7},{"x":-32,"y":2},{"x":-120,"y":19},{"x":-82,"y":118},{"x":-11,"y":103},{"x":74,"y":146},{"x":-34,"y":162},{"x":-72,"y":65},{"x":-16,"y":91},{"x":-60,"y":-2},{"x":-77,"y":74},{"x":-42,"y":267},{"x":81,"y":249},{"x":175,"y":183},{"x":-87,"y":134},{"x":28,"y":91},{"x":0,"y":10},{"x":-21,"y":43},{"x":-378,"y":-94},{"x":-25,"y":-35},{"x":-44,"y":6},{"x":-6,"y":2},{"x":-5,"y":3},{"x":-41,"y":30},{"x":-4,"y":8},{"x":43,"y":110},{"x":-51,"y":66},{"x":77,"y":49},{"x":-1,"y":86},{"x":-186,"y":149},{"x":-59,"y":24},{"x":-33,"y":-2},{"x":-6,"y":3},{"x":-4,"y":0},{"x":-11,"y":-6},{"x":-1,"y":-9},{"x":-14,"y":-12},{"x":39,"y":-102},{"x":-44,"y":-176},{"x":-48,"y":-7},{"x":-15,"y":-94},{"x":-131,"y":-48},{"x":-57,"y":-61},{"x":-15,"y":-138},{"x":-144,"y":-109},{"x":66,"y":-218},{"x":-156,"y":-54},{"x":-146,"y":65},{"x":-86,"y":-117},{"x":-123,"y":-68},{"x":-72,"y":-112},{"x":-36,"y":-331},{"x":-158,"y":-218},{"x":16,"y":-57},{"x":48,"y":0},{"x":-25,"y":-99},{"x":96,"y":-201},{"x":79,"y":-62},{"x":31,"y":-183},{"x":-25,"y":-66},{"x":50,"y":-277},{"x":-15,"y":-99},{"x":1,"y":-3},{"x":4,"y":-1},{"x":38,"y":-4},{"x":76,"y":-54},{"x":160,"y":-41},{"x":13,"y":-26},{"x":59,"y":9},{"x":14,"y":-85},{"x":137,"y":-142},{"x":53,"y":-323},{"x":69,"y":-27},{"x":119,"y":43},{"x":122,"y":6},{"x":85,"y":-20},{"x":16,"y":-21},{"x":66,"y":-30},{"x":79,"y":-15},{"x":50,"y":-36},{"x":-13,"y":-36},{"x":47,"y":-25},{"x":1,"y":-23},{"x":-13,"y":-14},{"x":1,"y":-20},{"x":2,"y":-4},{"x":25,"y":-15},{"x":0,"y":-14},{"x":16,"y":-21},{"x":8,"y":-6},{"x":17,"y":-3},{"x":9,"y":2},{"x":15,"y":-9},{"x":0,"y":-10},{"x":17,"y":-14},{"x":6,"y":-17},{"x":11,"y":-12},{"x":2,"y":-10},{"x":5,"y":-4},{"x":5,"y":-1},{"x":17,"y":14},{"x":8,"y":0},{"x":18,"y":-29},{"x":12,"y":-3},{"x":6,"y":-7},{"x":4,"y":0},{"x":63,"y":10},{"x":23,"y":40},{"x":20,"y":-4},{"x":19,"y":7},{"x":3,"y":3},{"x":5,"y":22},{"x":-3,"y":20},{"x":6,"y":9},{"x":-12,"y":31},{"x":20,"y":-1},{"x":3,"y":1},{"x":0,"y":2},{"x":-1,"y":3},{"x":-18,"y":8},{"x":11,"y":22},{"x":29,"y":7},{"x":19,"y":59},{"x":47,"y":-4},{"x":212,"y":327},{"x":-61,"y":91},{"x":-9,"y":140},{"x":-121,"y":42},{"x":-5,"y":176},{"x":-25,"y":111},{"x":-36,"y":41},{"x":5,"y":11},{"x":17,"y":18},{"x":5,"y":4},{"x":16,"y":-1},{"x":24,"y":58},{"x":58,"y":26},{"x":162,"y":-55},{"x":102,"y":28},{"x":146,"y":100},{"x":5,"y":3},{"x":0,"y":5},{"x":-3,"y":5},{"x":-13,"y":3},{"x":-28,"y":40},{"x":-12,"y":47},{"x":-29,"y":26},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":14203,"y":25875},{"x":1,"y":-94}],"type":"area"},{"arc":[{"x":14204,"y":25781},{"x":187,"y":-6},{"x":12,"y":-14}],"type":"coastline"},{"arc":[{"x":14403,"y":25761},{"x":345,"y":4},{"x":456,"y":-85}],"type":"area"},{"arc":[{"x":15204,"y":25680},{"x":243,"y":141},{"x":160,"y":4},{"x":129,"y":64},{"x":242,"y":-39},{"x":135,"y":44},{"x":227,"y":-3},{"x":92,"y":-23},{"x":57,"y":17},{"x":57,"y":-129},{"x":91,"y":-79},{"x":5,"y":-104},{"x":84,"y":1},{"x":18,"y":-6},{"x":15,"y":3},{"x":56,"y":-15},{"x":56,"y":-6},{"x":218,"y":363}],"type":"coastline"},{"arc":[{"x":17089,"y":25913},{"x":-132,"y":54},{"x":48,"y":85},{"x":-42,"y":19},{"x":-163,"y":8},{"x":-133,"y":-41},{"x":-212,"y":108},{"x":-62,"y":-7},{"x":-5,"y":28},{"x":133,"y":-20},{"x":90,"y":30},{"x":22,"y":50},{"x":260,"y":14},{"x":266,"y":-99},{"x":85,"y":-66},{"x":263,"y":-22},{"x":130,"y":31},{"x":1,"y":42}],"type":"area"},{"arc":[{"x":17638,"y":26127},{"x":-7,"y":74},{"x":43,"y":31},{"x":-65,"y":45},{"x":31,"y":101},{"x":-35,"y":54},{"x":98,"y":57},{"x":-29,"y":67},{"x":55,"y":94},{"x":156,"y":142}],"type":"area"},{"arc":[{"x":17885,"y":26792},{"x":-48,"y":27},{"x":-142,"y":-37},{"x":-325,"y":36},{"x":-44,"y":-29},{"x":-4,"y":23},{"x":-357,"y":4},{"x":23,"y":26},{"x":-75,"y":-1},{"x":-13,"y":-24},{"x":-32,"y":16},{"x":-42,"y":-32},{"x":-4,"y":20},{"x":-62,"y":-10},{"x":-186,"y":-98},{"x":-28,"y":9},{"x":-125,"y":-93},{"x":-46,"y":-123},{"x":-185,"y":-133},{"x":30,"y":-19},{"x":-38,"y":18},{"x":-166,"y":-69},{"x":20,"y":-21},{"x":-44,"y":3},{"x":-13,"y":-50},{"x":-192,"y":-106},{"x":50,"y":-52},{"x":-53,"y":27},{"x":-163,"y":-13},{"x":-96,"y":55},{"x":-342,"y":33},{"x":70,"y":19},{"x":-166,"y":7},{"x":-171,"y":-32},{"x":-96,"y":19},{"x":-111,"y":-48},{"x":-220,"y":-274},{"x":-92,"y":-45},{"x":-69,"y":44},{"x":48,"y":14},{"x":-173,"y":-8}],"type":"coastline"},{"arc":[{"x":25013,"y":21130},{"x":-27,"y":2},{"x":-41,"y":2},{"x":-71,"y":5},{"x":-80,"y":5},{"x":-56,"y":3},{"x":-57,"y":4},{"x":-56,"y":3},{"x":-146,"y":9},{"x":-521,"y":31},{"x":-49,"y":33},{"x":-92,"y":-10},{"x":-92,"y":-9},{"x":0,"y":0},{"x":0,"y":-1},{"x":0,"y":-35},{"x":0,"y":-16},{"x":0,"y":-9},{"x":0,"y":-61},{"x":0,"y":-122},{"x":1,"y":-223},{"x":45,"y":-1},{"x":-58,"y":-8},{"x":-2,"y":-158},{"x":-74,"y":-23},{"x":122,"y":-74},{"x":-23,"y":-25},{"x":-144,"y":-11},{"x":-38,"y":-31},{"x":117,"y":-99},{"x":58,"y":-9},{"x":25,"y":-33},{"x":120,"y":-30},{"x":-8,"y":-43},{"x":49,"y":-17},{"x":73,"y":-53},{"x":6,"y":-69},{"x":-47,"y":-84},{"x":10,"y":-73},{"x":-161,"y":-33},{"x":118,"y":2},{"x":272,"y":54},{"x":135,"y":6},{"x":189,"y":-21},{"x":89,"y":-40},{"x":8,"y":21},{"x":26,"y":9},{"x":-27,"y":-22},{"x":86,"y":28},{"x":99,"y":4},{"x":208,"y":-87},{"x":-88,"y":-17},{"x":31,"y":-2},{"x":94,"y":13},{"x":2,"y":1},{"x":0,"y":238},{"x":0,"y":242},{"x":335,"y":-17},{"x":101,"y":65},{"x":43,"y":73},{"x":570,"y":0},{"x":1,"y":405},{"x":289,"y":0},{"x":-515,"y":469},{"x":0,"y":-215},{"x":-421,"y":27},{"x":-102,"y":7},{"x":-109,"y":6},{"x":-217,"y":14}],"type":"coastline"},{"arc":[{"x":15721,"y":28892},{"x":-76,"y":1},{"x":-16,"y":-42},{"x":108,"y":19},{"x":-16,"y":22}],"type":"coastline"},{"arc":[{"x":17089,"y":25913},{"x":-8,"y":-25},{"x":102,"y":-41},{"x":88,"y":41},{"x":133,"y":3},{"x":58,"y":61},{"x":49,"y":-33},{"x":219,"y":17},{"x":63,"y":-19},{"x":69,"y":53},{"x":115,"y":-45},{"x":37,"y":8},{"x":7,"y":-1},{"x":9,"y":-2},{"x":1,"y":-1},{"x":5,"y":-6},{"x":17,"y":-8},{"x":7,"y":-2},{"x":9,"y":1},{"x":12,"y":-4},{"x":3,"y":-10},{"x":-16,"y":-2},{"x":7,"y":-11},{"x":50,"y":-8}],"type":"coastline"},{"arc":[{"x":18125,"y":25879},{"x":-70,"y":120},{"x":54,"y":12},{"x":-54,"y":38},{"x":-73,"y":26},{"x":-238,"y":9},{"x":-106,"y":43}],"type":"area"},{"arc":[{"x":21177,"y":36183},{"x":-2,"y":25}],"type":"coastline"},{"arc":[{"x":21687,"y":34015},{"x":-38,"y":-16},{"x":30,"y":-10},{"x":8,"y":26}],"type":"coastline"},{"arc":[{"x":21648,"y":34284},{"x":-174,"y":116},{"x":-152,"y":51},{"x":-424,"y":-1},{"x":-131,"y":62},{"x":-219,"y":40},{"x":63,"y":-38},{"x":-45,"y":5},{"x":-40,"y":-60},{"x":61,"y":-18},{"x":295,"y":-253},{"x":95,"y":1},{"x":137,"y":-71},{"x":30,"y":20},{"x":68,"y":-38},{"x":79,"y":13},{"x":93,"y":-37},{"x":209,"y":-2},{"x":96,"y":-27}],"type":"coastline"},{"arc":[{"x":21689,"y":34047},{"x":58,"y":17},{"x":-46,"y":56},{"x":-58,"y":13},{"x":2,"y":30},{"x":-102,"y":-14},{"x":-36,"y":19},{"x":63,"y":53},{"x":-38,"y":30},{"x":116,"y":33}],"type":"area"},{"arc":[{"x":20709,"y":35204},{"x":-88,"y":34},{"x":25,"y":49},{"x":-80,"y":42},{"x":28,"y":15},{"x":-49,"y":71},{"x":45,"y":-46},{"x":17,"y":32},{"x":33,"y":-21},{"x":87,"y":35},{"x":-4,"y":-24},{"x":61,"y":4},{"x":-16,"y":34},{"x":75,"y":-7},{"x":37,"y":28},{"x":72,"y":163},{"x":250,"y":114},{"x":73,"y":6}],"type":"coastline"},{"arc":[{"x":21340,"y":35853},{"x":-15,"y":5}],"type":"coastline"},{"arc":[{"x":21345,"y":35873},{"x":35,"y":49},{"x":78,"y":-19},{"x":50,"y":25},{"x":-17,"y":30},{"x":326,"y":109},{"x":-96,"y":10},{"x":95,"y":39},{"x":-83,"y":18},{"x":-42,"y":52},{"x":-107,"y":-7},{"x":-24,"y":-24},{"x":44,"y":66},{"x":-45,"y":14},{"x":-39,"y":-20},{"x":28,"y":49},{"x":-65,"y":24},{"x":25,"y":11},{"x":-65,"y":76},{"x":-54,"y":-15},{"x":-50,"y":-124},{"x":-82,"y":56},{"x":-35,"y":-5},{"x":-30,"y":-70},{"x":44,"y":-39},{"x":-60,"y":-11}],"type":"coastline"},{"arc":[{"x":21860,"y":36130},{"x":-22,"y":-23},{"x":52,"y":9},{"x":-30,"y":14}],"type":"coastline"},{"arc":[{"x":16273,"y":24719},{"x":34,"y":159},{"x":-68,"y":70}],"type":"area"},{"arc":[{"x":14674,"y":24306},{"x":-825,"y":0},{"x":-121,"y":-109},{"x":57,"y":-204},{"x":107,"y":-7},{"x":45,"y":-32},{"x":-105,"y":-46}],"type":"coastline"},{"arc":[{"x":13832,"y":23908},{"x":-14,"y":-44},{"x":278,"y":-127},{"x":353,"y":-56},{"x":155,"y":2},{"x":217,"y":-48},{"x":349,"y":6},{"x":775,"y":-236},{"x":225,"y":-89},{"x":191,"y":-8},{"x":40,"y":131}],"type":"coastline"},{"arc":[{"x":16401,"y":23439},{"x":24,"y":63},{"x":-103,"y":75},{"x":8,"y":543},{"x":-92,"y":53},{"x":-53,"y":233},{"x":88,"y":313}],"type":"coastline"},{"arc":[{"x":15433,"y":42293},{"x":-17,"y":21},{"x":-46,"y":-13},{"x":61,"y":-28},{"x":2,"y":20}],"type":"coastline"},{"arc":[{"x":15582,"y":42212},{"x":-104,"y":10},{"x":60,"y":-45},{"x":23,"y":21},{"x":21,"y":-16},{"x":0,"y":30}],"type":"coastline"},{"arc":[{"x":15724,"y":41812},{"x":-153,"y":146},{"x":-113,"y":50},{"x":-183,"y":160},{"x":-58,"y":7},{"x":7,"y":-69},{"x":93,"y":-45},{"x":121,"y":-135},{"x":286,"y":-114}],"type":"coastline"},{"arc":[{"x":25412,"y":23698},{"x":-338,"y":25},{"x":-260,"y":96},{"x":-97,"y":-29},{"x":-672,"y":-32},{"x":-557,"y":-246},{"x":-165,"y":19}],"type":"area"},{"arc":[{"x":23323,"y":23531},{"x":-49,"y":-93},{"x":-95,"y":-45},{"x":70,"y":-218},{"x":-28,"y":-68},{"x":-101,"y":-64},{"x":27,"y":-111},{"x":95,"y":-104},{"x":-79,"y":-107},{"x":113,"y":-52},{"x":29,"y":-17},{"x":9,"y":-9},{"x":48,"y":-94},{"x":-24,"y":-85},{"x":-22,"y":-45},{"x":-45,"y":-40},{"x":-108,"y":-5},{"x":-55,"y":-19},{"x":-13,"y":-8},{"x":-37,"y":-26},{"x":-2,"y":-1},{"x":-138,"y":-4},{"x":-33,"y":7},{"x":-14,"y":-8}],"type":"coastline"},{"arc":[{"x":23336,"y":22587},{"x":-28,"y":37},{"x":9,"y":11},{"x":-12,"y":17},{"x":-142,"y":69},{"x":79,"y":107},{"x":-95,"y":104},{"x":-27,"y":111},{"x":101,"y":64},{"x":28,"y":68},{"x":-70,"y":218},{"x":95,"y":45},{"x":49,"y":93},{"x":-141,"y":56},{"x":-159,"y":15},{"x":-44,"y":58},{"x":-105,"y":-15},{"x":-18,"y":10},{"x":-10,"y":0},{"x":-10,"y":-1},{"x":-6,"y":-1},{"x":-4,"y":-2},{"x":-6,"y":-8},{"x":-13,"y":-10},{"x":-6,"y":-9},{"x":-33,"y":-25},{"x":9,"y":-22},{"x":-59,"y":-28},{"x":-194,"y":-39},{"x":-24,"y":-24},{"x":-113,"y":-5},{"x":-37,"y":-41},{"x":-26,"y":5},{"x":-38,"y":-9},{"x":-17,"y":1},{"x":-42,"y":-3},{"x":-10,"y":-1},{"x":-6,"y":-3},{"x":-2,"y":-8},{"x":-21,"y":-6},{"x":-12,"y":-12},{"x":1,"y":-23},{"x":-50,"y":-17},{"x":-96,"y":-5},{"x":-157,"y":-55},{"x":-41,"y":16},{"x":-105,"y":-44},{"x":-9,"y":-11},{"x":-22,"y":-3},{"x":-4,"y":-3},{"x":-3,"y":-3},{"x":-2,"y":-3},{"x":2,"y":-5},{"x":-3,"y":-2},{"x":2,"y":-3},{"x":-1,"y":-15},{"x":3,"y":-2},{"x":11,"y":-2},{"x":17,"y":-2},{"x":29,"y":-1},{"x":9,"y":-2},{"x":87,"y":-56},{"x":-57,"y":-10},{"x":30,"y":-43},{"x":-48,"y":-43},{"x":-217,"y":-114},{"x":-151,"y":-6},{"x":-101,"y":-33},{"x":63,"y":-43},{"x":-99,"y":14},{"x":-6,"y":-89},{"x":42,"y":-1},{"x":-46,"y":-33},{"x":57,"y":-25},{"x":-58,"y":13},{"x":-15,"y":-16},{"x":67,"y":-10},{"x":-77,"y":7},{"x":0,"y":-17},{"x":100,"y":-20},{"x":-107,"y":19},{"x":-1,"y":-19},{"x":57,"y":2},{"x":-61,"y":-6},{"x":38,"y":-16},{"x":-38,"y":2},{"x":-10,"y":-36},{"x":46,"y":-5},{"x":-51,"y":-15},{"x":130,"y":-77},{"x":111,"y":-16},{"x":9,"y":28},{"x":36,"y":8},{"x":-33,"y":-25},{"x":24,"y":-29},{"x":20,"y":38},{"x":8,"y":-46},{"x":64,"y":20},{"x":-32,"y":-30},{"x":133,"y":-78},{"x":19,"y":-124},{"x":37,"y":56},{"x":-54,"y":-139},{"x":605,"y":8},{"x":8,"y":37},{"x":339,"y":93},{"x":184,"y":-45},{"x":76,"y":24},{"x":33,"y":-7},{"x":18,"y":6},{"x":25,"y":-4},{"x":39,"y":3},{"x":58,"y":0},{"x":105,"y":53},{"x":108,"y":5},{"x":45,"y":40},{"x":22,"y":49},{"x":-6,"y":49},{"x":30,"y":32},{"x":-26,"y":38}],"type":"coastline"},{"arc":[{"x":23613,"y":11774},{"x":-43,"y":-36},{"x":-103,"y":29},{"x":-209,"y":-45},{"x":-225,"y":9},{"x":-7,"y":-19},{"x":96,"y":9},{"x":-63,"y":-26},{"x":-41,"y":20},{"x":-108,"y":-27},{"x":-56,"y":22},{"x":-78,"y":-26},{"x":-78,"y":27}],"type":"coastline"},{"arc":[{"x":22733,"y":11461},{"x":413,"y":-241},{"x":37,"y":12},{"x":-23,"y":33}],"type":"coastline"},{"arc":[{"x":22945,"y":13584},{"x":64,"y":-19},{"x":-21,"y":24},{"x":-43,"y":-5}],"type":"coastline"},{"arc":[{"x":31795,"y":22285},{"x":-2,"y":106}],"type":"coastline"},{"arc":[{"x":31793,"y":22395},{"x":40,"y":-99},{"x":-22,"y":102},{"x":83,"y":-51},{"x":117,"y":78},{"x":142,"y":29},{"x":98,"y":150},{"x":10,"y":104},{"x":-46,"y":44}],"type":"coastline"},{"arc":[{"x":33575,"y":22519},{"x":-33,"y":-8},{"x":61,"y":-3},{"x":-28,"y":11}],"type":"coastline"},{"arc":[{"x":33806,"y":22497},{"x":-29,"y":-2},{"x":56,"y":-16},{"x":-27,"y":18}],"type":"coastline"},{"arc":[{"x":33841,"y":22567},{"x":-8,"y":-21},{"x":24,"y":-21},{"x":18,"y":29},{"x":15,"y":9},{"x":-49,"y":4}],"type":"coastline"},{"arc":[{"x":34557,"y":22967},{"x":-28,"y":17},{"x":-19,"y":-99},{"x":47,"y":82}],"type":"coastline"},{"arc":[{"x":35632,"y":23719},{"x":-64,"y":-116},{"x":49,"y":23},{"x":15,"y":93}],"type":"coastline"},{"arc":[{"x":35749,"y":23811},{"x":-96,"y":-20},{"x":84,"y":62},{"x":-79,"y":30},{"x":-57,"y":-106},{"x":47,"y":-11},{"x":-57,"y":-65},{"x":158,"y":110}],"type":"coastline"},{"arc":[{"x":35744,"y":23724},{"x":-64,"y":17},{"x":-13,"y":-59},{"x":40,"y":22},{"x":-36,"y":-72},{"x":73,"y":92}],"type":"coastline"},{"arc":[{"x":35764,"y":23800},{"x":-32,"y":-47},{"x":97,"y":82},{"x":-65,"y":-35}],"type":"coastline"},{"arc":[{"x":35883,"y":24033},{"x":-82,"y":31},{"x":-30,"y":-142},{"x":76,"y":13},{"x":36,"y":98}],"type":"coastline"},{"arc":[{"x":35956,"y":24168},{"x":-65,"y":-3},{"x":-3,"y":-97},{"x":68,"y":100}],"type":"coastline"},{"arc":[{"x":36000,"y":24214},{"x":-20,"y":56},{"x":-44,"y":-68},{"x":36,"y":-48},{"x":28,"y":60}],"type":"coastline"},{"arc":[{"x":36009,"y":24402},{"x":-9,"y":-43},{"x":36,"y":18},{"x":-27,"y":25}],"type":"coastline"},{"arc":[{"x":36070,"y":24636},{"x":-31,"y":37},{"x":10,"y":-67},{"x":21,"y":30}],"type":"coastline"},{"arc":[{"x":36122,"y":24734},{"x":-75,"y":-48},{"x":38,"y":-26},{"x":37,"y":74}],"type":"coastline"},{"arc":[{"x":36173,"y":24721},{"x":-58,"y":-37},{"x":-25,"y":-114},{"x":42,"y":-20},{"x":-13,"y":90},{"x":54,"y":81}],"type":"coastline"},{"arc":[{"x":35940,"y":25626},{"x":-59,"y":7},{"x":20,"y":-95},{"x":-136,"y":-141}],"type":"area"},{"arc":[{"x":35767,"y":24384},{"x":-4,"y":-63},{"x":-150,"y":-16},{"x":50,"y":-187},{"x":-136,"y":-62},{"x":30,"y":-73},{"x":-47,"y":-66},{"x":-106,"y":-79},{"x":-83,"y":35},{"x":-175,"y":-114},{"x":-34,"y":-114},{"x":-182,"y":-3},{"x":-165,"y":-106},{"x":-93,"y":61},{"x":-36,"y":-22},{"x":11,"y":-120},{"x":-103,"y":-98},{"x":-422,"y":-1},{"x":-84,"y":88},{"x":-68,"y":-22},{"x":-10,"y":-55},{"x":-199,"y":31},{"x":-55,"y":-80},{"x":-214,"y":-23},{"x":16,"y":-27}],"type":"area"},{"arc":[{"x":33508,"y":23268},{"x":50,"y":-85},{"x":157,"y":-6},{"x":-85,"y":-18},{"x":42,"y":-39},{"x":-149,"y":10},{"x":-23,"y":-56},{"x":37,"y":-37},{"x":-37,"y":18},{"x":-188,"y":-181},{"x":-29,"y":-145},{"x":24,"y":17},{"x":5,"y":-75},{"x":34,"y":39},{"x":62,"y":-146},{"x":110,"y":-12},{"x":-44,"y":83},{"x":47,"y":48},{"x":-33,"y":-72},{"x":36,"y":-19},{"x":111,"y":81},{"x":21,"y":-31},{"x":-43,"y":-17},{"x":-23,"y":-27},{"x":27,"y":27},{"x":14,"y":-42},{"x":-59,"y":-36},{"x":60,"y":-37},{"x":67,"y":132},{"x":3,"y":-78},{"x":115,"y":86},{"x":11,"y":35},{"x":-75,"y":-15},{"x":95,"y":71},{"x":-8,"y":-113},{"x":-107,"y":-53},{"x":90,"y":0},{"x":-59,"y":-40},{"x":49,"y":-33},{"x":40,"y":20},{"x":-21,"y":21},{"x":-1,"y":22},{"x":12,"y":7},{"x":53,"y":4},{"x":9,"y":-9},{"x":-14,"y":-17},{"x":-15,"y":-1},{"x":-12,"y":-37},{"x":50,"y":-36},{"x":-38,"y":62},{"x":33,"y":-24},{"x":22,"y":36},{"x":-14,"y":-49},{"x":53,"y":-14},{"x":-8,"y":163},{"x":37,"y":30},{"x":-71,"y":61},{"x":52,"y":-13},{"x":32,"y":85},{"x":12,"y":-47},{"x":44,"y":32},{"x":-20,"y":-38},{"x":-52,"y":5},{"x":14,"y":-90},{"x":40,"y":17},{"x":-65,"y":-32},{"x":-2,"y":-151},{"x":38,"y":-26},{"x":20,"y":79},{"x":12,"y":-83},{"x":9,"y":104},{"x":12,"y":-76},{"x":18,"y":30},{"x":35,"y":-53},{"x":-5,"y":22},{"x":11,"y":-11},{"x":31,"y":38},{"x":-5,"y":34},{"x":-16,"y":-7},{"x":6,"y":40},{"x":-24,"y":-5},{"x":31,"y":111},{"x":-11,"y":-41},{"x":14,"y":-91},{"x":6,"y":28},{"x":5,"y":-65},{"x":-9,"y":-33},{"x":28,"y":30},{"x":37,"y":-39},{"x":-40,"y":46},{"x":41,"y":-1},{"x":-29,"y":111},{"x":37,"y":-53},{"x":33,"y":47},{"x":-59,"y":26},{"x":62,"y":-16},{"x":15,"y":38},{"x":-79,"y":58},{"x":37,"y":-19},{"x":2,"y":42},{"x":46,"y":-71},{"x":-6,"y":-67},{"x":9,"y":53},{"x":23,"y":-50},{"x":-21,"y":155},{"x":39,"y":-2},{"x":4,"y":76},{"x":7,"y":-143},{"x":46,"y":-8},{"x":19,"y":40},{"x":-23,"y":32},{"x":15,"y":58},{"x":-72,"y":69},{"x":66,"y":-48},{"x":13,"y":-33},{"x":23,"y":25},{"x":-65,"y":75},{"x":66,"y":-65},{"x":22,"y":94},{"x":18,"y":-56},{"x":29,"y":24},{"x":10,"y":42},{"x":-39,"y":9},{"x":79,"y":73},{"x":-71,"y":17},{"x":29,"y":130},{"x":35,"y":-21},{"x":40,"y":88},{"x":15,"y":-44},{"x":58,"y":32},{"x":-137,"y":-155},{"x":36,"y":-35},{"x":23,"y":37},{"x":1,"y":-67},{"x":37,"y":79},{"x":39,"y":-24},{"x":111,"y":116},{"x":-63,"y":33},{"x":35,"y":52},{"x":51,"y":-31},{"x":52,"y":100},{"x":-18,"y":-119},{"x":102,"y":205},{"x":-18,"y":-83},{"x":51,"y":65},{"x":33,"y":-52},{"x":7,"y":53},{"x":65,"y":-13},{"x":-16,"y":60},{"x":47,"y":-62},{"x":61,"y":180},{"x":-35,"y":-135},{"x":29,"y":60},{"x":3,"y":-60},{"x":45,"y":-8},{"x":-15,"y":48},{"x":34,"y":44},{"x":-13,"y":-59},{"x":27,"y":-6},{"x":-7,"y":43},{"x":17,"y":-39},{"x":17,"y":93},{"x":30,"y":-54},{"x":22,"y":124},{"x":42,"y":4},{"x":-7,"y":139},{"x":15,"y":-172},{"x":46,"y":88},{"x":0,"y":-28},{"x":10,"y":-12},{"x":20,"y":41},{"x":-23,"y":-28},{"x":-2,"y":23},{"x":12,"y":19},{"x":-23,"y":-5},{"x":14,"y":36},{"x":-40,"y":33},{"x":57,"y":24},{"x":14,"y":-88},{"x":40,"y":63},{"x":-35,"y":-104},{"x":39,"y":-8},{"x":19,"y":132},{"x":38,"y":5},{"x":-7,"y":-75},{"x":48,"y":85},{"x":-50,"y":7},{"x":-52,"y":54},{"x":46,"y":-34},{"x":-23,"y":32},{"x":39,"y":27},{"x":54,"y":-66},{"x":-41,"y":80},{"x":50,"y":-71},{"x":4,"y":110},{"x":-46,"y":25},{"x":54,"y":-10},{"x":-3,"y":76},{"x":26,"y":-171},{"x":44,"y":60},{"x":-10,"y":87},{"x":22,"y":-54},{"x":-2,"y":67},{"x":34,"y":-44},{"x":57,"y":89},{"x":75,"y":13},{"x":-57,"y":29},{"x":12,"y":62},{"x":38,"y":-67},{"x":22,"y":48},{"x":-35,"y":20},{"x":-17,"y":44},{"x":-16,"y":-25},{"x":-5,"y":41},{"x":34,"y":-20},{"x":19,"y":-42},{"x":13,"y":32},{"x":21,"y":-39},{"x":36,"y":37},{"x":6,"y":65},{"x":-90,"y":-31},{"x":110,"y":108},{"x":-141,"y":-57},{"x":70,"y":65},{"x":-18,"y":45},{"x":60,"y":-45},{"x":60,"y":103},{"x":-65,"y":92},{"x":85,"y":1},{"x":20,"y":-108},{"x":26,"y":42},{"x":-40,"y":39},{"x":40,"y":14},{"x":-42,"y":35},{"x":16,"y":84},{"x":-38,"y":-81},{"x":24,"y":87},{"x":-36,"y":55},{"x":86,"y":5},{"x":20,"y":102},{"x":53,"y":0},{"x":-16,"y":45},{"x":37,"y":-58},{"x":42,"y":44},{"x":-41,"y":78},{"x":42,"y":14},{"x":-30,"y":10},{"x":5,"y":59},{"x":-81,"y":-104},{"x":-99,"y":-8},{"x":199,"y":195},{"x":-132,"y":-13},{"x":24,"y":73},{"x":148,"y":66},{"x":-35,"y":109},{"x":-82,"y":-109},{"x":25,"y":77},{"x":-146,"y":-33},{"x":183,"y":127},{"x":-135,"y":246},{"x":-48,"y":-112},{"x":8,"y":-186},{"x":-30,"y":129},{"x":-70,"y":-25},{"x":6,"y":85},{"x":43,"y":-2},{"x":-47,"y":24},{"x":31,"y":58}],"type":"coastline"},{"arc":[{"x":36244,"y":24998},{"x":-29,"y":66},{"x":-23,"y":-81},{"x":26,"y":-31},{"x":26,"y":46}],"type":"coastline"},{"arc":[{"x":37828,"y":24713},{"x":-49,"y":-25},{"x":-36,"y":158},{"x":-132,"y":-209},{"x":71,"y":9},{"x":-22,"y":-232},{"x":104,"y":96},{"x":41,"y":-95},{"x":23,"y":298}],"type":"coastline"},{"arc":[{"x":37914,"y":24488},{"x":-71,"y":96},{"x":-18,"y":-194},{"x":68,"y":-61},{"x":21,"y":159}],"type":"coastline"},{"arc":[{"x":37907,"y":23249},{"x":-80,"y":104},{"x":159,"y":-197},{"x":-79,"y":93}],"type":"coastline"},{"arc":[{"x":37988,"y":25406},{"x":-3,"y":82},{"x":-13,"y":-227},{"x":16,"y":145}],"type":"coastline"},{"arc":[{"x":38204,"y":23922},{"x":-33,"y":155},{"x":-80,"y":-54},{"x":58,"y":84},{"x":-106,"y":73},{"x":-86,"y":317},{"x":-69,"y":-311},{"x":-428,"y":-265},{"x":70,"y":-159},{"x":28,"y":124},{"x":40,"y":-252},{"x":80,"y":-66},{"x":-21,"y":281},{"x":50,"y":-180},{"x":25,"y":288},{"x":37,"y":-12},{"x":-49,"y":-371},{"x":75,"y":-45},{"x":-20,"y":90},{"x":105,"y":361},{"x":4,"y":-118},{"x":60,"y":28},{"x":-58,"y":-136},{"x":88,"y":-7},{"x":-57,"y":-48},{"x":18,"y":-66},{"x":-65,"y":35},{"x":-42,"y":-209},{"x":64,"y":-79},{"x":13,"y":102},{"x":21,"y":-158},{"x":71,"y":-67},{"x":-9,"y":141},{"x":35,"y":-100},{"x":52,"y":52},{"x":-45,"y":-108},{"x":99,"y":-67},{"x":56,"y":67},{"x":-28,"y":130},{"x":39,"y":-11},{"x":10,"y":193},{"x":-71,"y":-163},{"x":6,"y":121},{"x":-74,"y":72},{"x":123,"y":62},{"x":-202,"y":229},{"x":259,"y":-17},{"x":-43,"y":64}],"type":"coastline"},{"arc":[{"x":38318,"y":24690},{"x":-59,"y":-2},{"x":58,"y":138},{"x":-63,"y":362},{"x":-147,"y":-171},{"x":-57,"y":-216},{"x":8,"y":-137},{"x":44,"y":-4},{"x":11,"y":-328},{"x":32,"y":-68},{"x":-10,"y":185},{"x":27,"y":-83},{"x":23,"y":228},{"x":-15,"y":-433},{"x":41,"y":-82},{"x":34,"y":100},{"x":18,"y":-140},{"x":-10,"y":188},{"x":93,"y":40},{"x":-66,"y":145},{"x":14,"y":121},{"x":-65,"y":53},{"x":120,"y":60},{"x":-31,"y":44}],"type":"coastline"},{"arc":[{"x":27068,"y":31817},{"x":3,"y":8},{"x":-10,"y":15},{"x":3,"y":10},{"x":-2,"y":5},{"x":-23,"y":-1},{"x":-11,"y":9},{"x":-27,"y":0},{"x":-90,"y":83},{"x":1,"y":17},{"x":-19,"y":10},{"x":9,"y":5},{"x":1,"y":7},{"x":-3,"y":3},{"x":-5,"y":1},{"x":-10,"y":8},{"x":-16,"y":1},{"x":-3,"y":11},{"x":-62,"y":20},{"x":16,"y":69},{"x":-117,"y":44},{"x":-31,"y":86},{"x":-69,"y":-6},{"x":10,"y":71},{"x":-43,"y":20},{"x":-38,"y":12},{"x":-19,"y":1},{"x":0,"y":12},{"x":8,"y":6},{"x":52,"y":5},{"x":-56,"y":33},{"x":45,"y":29},{"x":-63,"y":60},{"x":-4,"y":69},{"x":22,"y":13},{"x":-3,"y":24},{"x":-7,"y":8},{"x":-3,"y":7},{"x":-1,"y":1},{"x":-3,"y":0},{"x":-4,"y":-1},{"x":-9,"y":1},{"x":-30,"y":-6},{"x":-33,"y":-11},{"x":-86,"y":-7},{"x":-78,"y":25},{"x":-5,"y":0},{"x":-8,"y":-1},{"x":-10,"y":-2},{"x":-18,"y":-5},{"x":-29,"y":-4},{"x":-11,"y":-3},{"x":-8,"y":-5},{"x":-1,"y":-4},{"x":22,"y":-13},{"x":-19,"y":-34},{"x":11,"y":-21},{"x":-5,"y":-7},{"x":-14,"y":-5},{"x":6,"y":-9},{"x":9,"y":-3},{"x":-1,"y":-13},{"x":39,"y":-8},{"x":-37,"y":-40},{"x":45,"y":-52},{"x":-11,"y":-56},{"x":64,"y":-26},{"x":-25,"y":-40},{"x":65,"y":-78},{"x":64,"y":-4},{"x":14,"y":-39},{"x":13,"y":-6},{"x":1,"y":-6},{"x":8,"y":-3},{"x":3,"y":-4},{"x":6,"y":-2},{"x":1,"y":-2},{"x":-19,"y":-32},{"x":-20,"y":2},{"x":29,"y":-57},{"x":-32,"y":-12},{"x":37,"y":-65},{"x":45,"y":-8},{"x":35,"y":-101},{"x":222,"y":-221},{"x":82,"y":27},{"x":48,"y":-5},{"x":71,"y":17},{"x":6,"y":2},{"x":4,"y":3},{"x":7,"y":10},{"x":32,"y":11},{"x":15,"y":18},{"x":23,"y":14},{"x":12,"y":0},{"x":9,"y":6},{"x":-8,"y":5},{"x":5,"y":8},{"x":0,"y":1},{"x":-2,"y":1},{"x":-8,"y":3},{"x":-7,"y":2},{"x":-11,"y":3},{"x":-11,"y":2},{"x":-2,"y":1},{"x":2,"y":6},{"x":-4,"y":6},{"x":0,"y":3},{"x":34,"y":16},{"x":49,"y":4},{"x":-11,"y":15},{"x":20,"y":13},{"x":-13,"y":20}],"type":"coastline"},{"arc":[{"x":8877,"y":42081},{"x":-73,"y":2},{"x":0,"y":-42},{"x":73,"y":40}],"type":"coastline"},{"arc":[{"x":9738,"y":42293},{"x":-44,"y":27},{"x":-17,"y":-28},{"x":-26,"y":36},{"x":-42,"y":-90},{"x":129,"y":55}],"type":"coastline"},{"arc":[{"x":10409,"y":419},{"x":-3,"y":47},{"x":-41,"y":-27},{"x":35,"y":-18},{"x":-64,"y":29},{"x":-18,"y":-27},{"x":64,"y":-6},{"x":4,"y":-35},{"x":23,"y":37}],"type":"coastline"},{"arc":[{"x":11130,"y":42893},{"x":-31,"y":-30},{"x":-34,"y":43},{"x":-114,"y":11},{"x":86,"y":91},{"x":-2,"y":22},{"x":-18,"y":-31},{"x":-10,"y":21},{"x":-53,"y":-20},{"x":26,"y":42},{"x":-3,"y":-29},{"x":50,"y":13},{"x":-9,"y":39},{"x":-41,"y":-13},{"x":-20,"y":-34},{"x":14,"y":47},{"x":-49,"y":-33},{"x":-72,"y":29},{"x":-270,"y":-122},{"x":-70,"y":-66},{"x":-84,"y":-8},{"x":-2,"y":47},{"x":-46,"y":4},{"x":26,"y":-83},{"x":-121,"y":-130},{"x":-364,"y":-96},{"x":4,"y":27},{"x":-23,"y":-54},{"x":-135,"y":-85},{"x":-9,"y":-153},{"x":46,"y":-1},{"x":5,"y":-64},{"x":53,"y":-30},{"x":-8,"y":-108},{"x":56,"y":30},{"x":-32,"y":-41},{"x":35,"y":24},{"x":-18,"y":-39},{"x":44,"y":-2},{"x":22,"y":65},{"x":24,"y":-29},{"x":27,"y":35},{"x":-12,"y":-43},{"x":59,"y":22},{"x":-44,"y":39},{"x":34,"y":-19},{"x":3,"y":31},{"x":37,"y":-36},{"x":27,"y":41},{"x":18,"y":-17},{"x":24,"y":26},{"x":-34,"y":11},{"x":88,"y":29},{"x":-22,"y":22},{"x":44,"y":-11},{"x":104,"y":65},{"x":15,"y":59},{"x":238,"y":232},{"x":259,"y":85},{"x":79,"y":73},{"x":118,"y":5},{"x":85,"y":97}],"type":"coastline"},{"arc":[{"x":12502,"y":42914},{"x":-30,"y":-21},{"x":-104,"y":44},{"x":47,"y":21},{"x":-41,"y":2},{"x":-35,"y":81},{"x":-53,"y":3},{"x":38,"y":25},{"x":-144,"y":30},{"x":29,"y":-30},{"x":-29,"y":0},{"x":-115,"y":64},{"x":-125,"y":-25},{"x":-8,"y":69},{"x":-69,"y":44},{"x":171,"y":-31},{"x":-4,"y":22},{"x":-57,"y":12},{"x":10,"y":27},{"x":-35,"y":-17},{"x":-169,"y":55},{"x":-2,"y":-21},{"x":-87,"y":138},{"x":107,"y":105},{"x":-35,"y":70},{"x":-187,"y":-33},{"x":-38,"y":-44},{"x":-125,"y":-3},{"x":39,"y":-18},{"x":-26,"y":-85},{"x":-220,"y":-27},{"x":-241,"y":-106},{"x":-82,"y":-80},{"x":44,"y":-54},{"x":43,"y":3},{"x":-7,"y":-35},{"x":131,"y":65},{"x":128,"y":4},{"x":181,"y":-172},{"x":108,"y":102},{"x":241,"y":47},{"x":154,"y":-51},{"x":-40,"y":22},{"x":32,"y":25},{"x":35,"y":-14},{"x":-20,"y":-40},{"x":120,"y":-38},{"x":-33,"y":32},{"x":61,"y":1},{"x":8,"y":-23},{"x":45,"y":20},{"x":5,"y":-26},{"x":-33,"y":2},{"x":89,"y":-40},{"x":-119,"y":20},{"x":186,"y":-81},{"x":58,"y":31},{"x":-47,"y":-35},{"x":68,"y":-34},{"x":62,"y":7},{"x":104,"y":-58},{"x":16,"y":49}],"type":"coastline"},{"arc":[{"x":23983,"y":28330},{"x":530,"y":-135}],"type":"area"},{"arc":[{"x":24513,"y":28195},{"x":225,"y":365},{"x":446,"y":80},{"x":163,"y":-55}],"type":"area"},{"arc":[{"x":25858,"y":28730},{"x":-230,"y":94},{"x":-93,"y":196},{"x":-220,"y":91},{"x":-12,"y":38},{"x":-61,"y":-2},{"x":-410,"y":-157},{"x":-2,"y":-38},{"x":47,"y":0},{"x":-80,"y":-43},{"x":-120,"y":-20},{"x":-165,"y":16},{"x":-56,"y":-123},{"x":-181,"y":-55},{"x":-22,"y":-111},{"x":-187,"y":-50},{"x":0,"y":-115},{"x":-83,"y":-121}],"type":"coastline"},{"arc":[{"x":26102,"y":28693},{"x":67,"y":52},{"x":-165,"y":-27}],"type":"coastline"},{"arc":[{"x":28257,"y":31209},{"x":-120,"y":33}],"type":"coastline"},{"arc":[{"x":25603,"y":30165},{"x":-34,"y":-5},{"x":56,"y":-16},{"x":-39,"y":0},{"x":28,"y":-65},{"x":192,"y":-27},{"x":21,"y":-73},{"x":77,"y":10},{"x":100,"y":-44},{"x":-34,"y":-34},{"x":-17,"y":49},{"x":-17,"y":-213},{"x":-36,"y":-11},{"x":65,"y":-64},{"x":-20,"y":-68},{"x":-38,"y":-9},{"x":14,"y":-124},{"x":-38,"y":-12},{"x":29,"y":-28},{"x":-46,"y":-48},{"x":39,"y":4},{"x":4,"y":-24}],"type":"coastline"},{"arc":[{"x":26956,"y":29273},{"x":-102,"y":198},{"x":-4,"y":196},{"x":41,"y":47},{"x":-7,"y":68},{"x":67,"y":141},{"x":27,"y":18},{"x":217,"y":3},{"x":61,"y":40},{"x":27,"y":30},{"x":0,"y":7},{"x":-1,"y":2},{"x":-8,"y":1},{"x":-7,"y":-1},{"x":-1,"y":1},{"x":-1,"y":1},{"x":0,"y":3},{"x":0,"y":2},{"x":2,"y":7},{"x":-7,"y":10},{"x":-1,"y":16},{"x":29,"y":51},{"x":44,"y":-24},{"x":66,"y":69},{"x":-50,"y":81},{"x":9,"y":21},{"x":2,"y":3},{"x":5,"y":5},{"x":5,"y":4},{"x":4,"y":1},{"x":5,"y":4},{"x":33,"y":13},{"x":12,"y":9},{"x":2,"y":1},{"x":3,"y":0},{"x":39,"y":-7},{"x":38,"y":2},{"x":36,"y":-4},{"x":128,"y":31},{"x":65,"y":98},{"x":157,"y":-51},{"x":8,"y":145},{"x":108,"y":-13},{"x":148,"y":82},{"x":25,"y":-13},{"x":29,"y":12},{"x":9,"y":-5},{"x":18,"y":1},{"x":3,"y":-1},{"x":14,"y":-12},{"x":13,"y":4},{"x":8,"y":-2},{"x":5,"y":-3},{"x":8,"y":-1},{"x":4,"y":-1},{"x":11,"y":-4},{"x":3,"y":-1},{"x":6,"y":-6},{"x":11,"y":-2},{"x":3,"y":-2},{"x":6,"y":-10},{"x":12,"y":-10},{"x":4,"y":-1},{"x":18,"y":7},{"x":9,"y":10},{"x":8,"y":2},{"x":29,"y":29},{"x":29,"y":6},{"x":-14,"y":21},{"x":19,"y":-1},{"x":39,"y":48},{"x":8,"y":-2},{"x":3,"y":0},{"x":2,"y":2},{"x":3,"y":5},{"x":4,"y":11},{"x":3,"y":19},{"x":14,"y":13},{"x":4,"y":16},{"x":-1,"y":21},{"x":7,"y":21},{"x":3,"y":18},{"x":-2,"y":10},{"x":3,"y":7},{"x":1,"y":14},{"x":-1,"y":8},{"x":4,"y":16},{"x":-19,"y":48},{"x":40,"y":43},{"x":-7,"y":18},{"x":14,"y":1}],"type":"coastline"},{"arc":[{"x":21960,"y":11943},{"x":-70,"y":18},{"x":35,"y":-35},{"x":35,"y":17}],"type":"coastline"},{"arc":[{"x":21868,"y":12410},{"x":185,"y":-66},{"x":78,"y":37},{"x":-62,"y":48},{"x":97,"y":-48},{"x":-40,"y":-13},{"x":36,"y":2},{"x":1,"y":-22},{"x":-43,"y":-1},{"x":94,"y":-24},{"x":49,"y":-58},{"x":34,"y":13},{"x":-41,"y":-71},{"x":-86,"y":-25},{"x":-81,"y":-85},{"x":-157,"y":58},{"x":-62,"y":-54},{"x":-7,"y":-53},{"x":157,"y":-22},{"x":-3,"y":-20},{"x":-65,"y":0},{"x":14,"y":-25},{"x":117,"y":-39},{"x":-8,"y":-50},{"x":42,"y":-3},{"x":-11,"y":-76},{"x":-58,"y":-11}],"type":"coastline"},{"arc":[{"x":22394,"y":11841},{"x":-84,"y":49},{"x":-44,"y":-8},{"x":-15,"y":56},{"x":54,"y":-13},{"x":-89,"y":71},{"x":127,"y":183},{"x":59,"y":20},{"x":-8,"y":80},{"x":-26,"y":-10},{"x":-50,"y":124},{"x":-129,"y":80}],"type":"coastline"},{"arc":[{"x":17778,"y":13421},{"x":-349,"y":109},{"x":-82,"y":-37},{"x":-180,"y":-14},{"x":-118,"y":29},{"x":-137,"y":-62},{"x":-97,"y":27},{"x":-89,"y":-34},{"x":-128,"y":30},{"x":-30,"y":42},{"x":-192,"y":-96},{"x":-23,"y":-5},{"x":-50,"y":19}],"type":"coastline"},{"arc":[{"x":16117,"y":13322},{"x":143,"y":-121},{"x":91,"y":-13},{"x":124,"y":-108},{"x":304,"y":-338},{"x":268,"y":-135},{"x":72,"y":-14},{"x":118,"y":20},{"x":289,"y":-115},{"x":95,"y":-5},{"x":80,"y":-53},{"x":82,"y":-3},{"x":610,"y":-160},{"x":332,"y":-123},{"x":159,"y":-137},{"x":86,"y":33},{"x":99,"y":-41},{"x":42,"y":16},{"x":78,"y":-33},{"x":85,"y":6},{"x":203,"y":115}],"type":"coastline"},{"arc":[{"x":21426,"y":36489},{"x":-35,"y":0},{"x":-12,"y":-48},{"x":47,"y":48}],"type":"coastline"},{"arc":[{"x":21612,"y":36589},{"x":-29,"y":47},{"x":-18,"y":-61},{"x":47,"y":14}],"type":"coastline"},{"arc":[{"x":21683,"y":36713},{"x":56,"y":-29},{"x":-11,"y":62},{"x":-45,"y":-33}],"type":"coastline"},{"arc":[{"x":22402,"y":37148},{"x":-83,"y":52},{"x":14,"y":18},{"x":-101,"y":16},{"x":-56,"y":-29},{"x":-25,"y":36},{"x":-137,"y":-3},{"x":-37,"y":25},{"x":-100,"y":4},{"x":-110,"y":-34},{"x":26,"y":-20},{"x":-139,"y":3},{"x":236,"y":-42},{"x":-17,"y":-23},{"x":-131,"y":-35},{"x":-127,"y":41},{"x":-119,"y":-38},{"x":49,"y":-27},{"x":66,"y":9},{"x":-53,"y":-35},{"x":82,"y":-93},{"x":137,"y":-29},{"x":129,"y":35},{"x":91,"y":-66},{"x":-2,"y":-32},{"x":-97,"y":-1},{"x":32,"y":-36},{"x":52,"y":-3},{"x":-64,"y":-36},{"x":64,"y":0},{"x":7,"y":-24},{"x":-190,"y":-57},{"x":11,"y":-26},{"x":228,"y":40},{"x":38,"y":82},{"x":74,"y":12},{"x":53,"y":45},{"x":-61,"y":53},{"x":-65,"y":4},{"x":-45,"y":-25},{"x":52,"y":64},{"x":93,"y":25},{"x":-25,"y":42},{"x":115,"y":7},{"x":-41,"y":36},{"x":58,"y":13},{"x":-16,"y":37},{"x":182,"y":-7},{"x":-48,"y":22}],"type":"coastline"},{"arc":[{"x":22456,"y":37209},{"x":0,"y":-21},{"x":47,"y":12},{"x":-47,"y":9}],"type":"coastline"},{"arc":[{"x":22524,"y":36991},{"x":-29,"y":29},{"x":-64,"y":1},{"x":-21,"y":-88},{"x":60,"y":2},{"x":54,"y":56}],"type":"coastline"},{"arc":[{"x":22580,"y":37153},{"x":-119,"y":2},{"x":61,"y":-25},{"x":58,"y":23}],"type":"coastline"},{"arc":[{"x":22621,"y":36793},{"x":-20,"y":-28},{"x":60,"y":22},{"x":-40,"y":6}],"type":"coastline"},{"arc":[{"x":22709,"y":36860},{"x":-44,"y":37},{"x":-205,"y":-51},{"x":-138,"y":20},{"x":-49,"y":-35},{"x":181,"y":-77},{"x":58,"y":58},{"x":172,"y":10},{"x":25,"y":38}],"type":"coastline"},{"arc":[{"x":22732,"y":36949},{"x":-157,"y":2},{"x":-218,"y":-84},{"x":127,"y":7},{"x":291,"y":84},{"x":-43,"y":-9}],"type":"coastline"},{"arc":[{"x":22791,"y":36405},{"x":-190,"y":22},{"x":-126,"y":-113},{"x":-140,"y":-34},{"x":-219,"y":-159},{"x":162,"y":57},{"x":326,"y":197},{"x":97,"y":-7},{"x":-47,"y":30},{"x":81,"y":-17},{"x":56,"y":24}],"type":"coastline"},{"arc":[{"x":22815,"y":37003},{"x":-32,"y":22},{"x":26,"y":38},{"x":-33,"y":4},{"x":-6,"y":8},{"x":-111,"y":-3},{"x":-102,"y":32},{"x":-26,"y":-15},{"x":44,"y":-20},{"x":-81,"y":5},{"x":37,"y":-32},{"x":145,"y":1},{"x":39,"y":-19},{"x":-15,"y":-27},{"x":137,"y":-12},{"x":-22,"y":18}],"type":"coastline"},{"arc":[{"x":22886,"y":36742},{"x":-73,"y":73},{"x":36,"y":32},{"x":-90,"y":-3},{"x":-90,"y":-48},{"x":-35,"y":-63},{"x":-47,"y":-34},{"x":275,"y":20},{"x":28,"y":-31},{"x":35,"y":13},{"x":-39,"y":41}],"type":"coastline"},{"arc":[{"x":23004,"y":36455},{"x":-63,"y":50},{"x":1,"y":-42},{"x":62,"y":-8}],"type":"coastline"},{"arc":[{"x":23003,"y":36782},{"x":45,"y":-22},{"x":-1,"y":24},{"x":-44,"y":-2}],"type":"coastline"},{"arc":[{"x":23066,"y":37060},{"x":3,"y":31},{"x":-82,"y":43},{"x":-135,"y":-7},{"x":-132,"y":36},{"x":28,"y":-14},{"x":-13,"y":-49},{"x":39,"y":-9},{"x":6,"y":-21},{"x":30,"y":1},{"x":19,"y":-22},{"x":56,"y":27},{"x":76,"y":-67},{"x":101,"y":-27},{"x":4,"y":78}],"type":"coastline"},{"arc":[{"x":23063,"y":36870},{"x":-77,"y":65},{"x":-108,"y":22},{"x":110,"y":-71},{"x":-67,"y":-39},{"x":152,"y":9},{"x":-10,"y":14}],"type":"coastline"},{"arc":[{"x":23082,"y":36725},{"x":-119,"y":-18},{"x":62,"y":-9},{"x":57,"y":27}],"type":"coastline"},{"arc":[{"x":23143,"y":36852},{"x":-48,"y":21},{"x":94,"y":-53},{"x":-46,"y":32}],"type":"coastline"},{"arc":[{"x":23283,"y":36581},{"x":-94,"y":70},{"x":-112,"y":-1},{"x":-89,"y":-36},{"x":276,"y":-114},{"x":19,"y":81}],"type":"coastline"},{"arc":[{"x":23289,"y":36692},{"x":-24,"y":28},{"x":-55,"y":-13},{"x":31,"y":-24},{"x":48,"y":9}],"type":"coastline"},{"arc":[{"x":23405,"y":36977},{"x":-91,"y":21},{"x":-32,"y":-27},{"x":33,"y":-19},{"x":90,"y":25}],"type":"coastline"},{"arc":[{"x":23625,"y":36702},{"x":-92,"y":-4},{"x":69,"y":-14},{"x":23,"y":18}],"type":"coastline"},{"arc":[{"x":24416,"y":36573},{"x":13,"y":32},{"x":-77,"y":88},{"x":54,"y":39},{"x":-42,"y":13},{"x":-134,"y":-23},{"x":-146,"y":48},{"x":-192,"y":-40},{"x":-68,"y":-76},{"x":-61,"y":7},{"x":-70,"y":-31},{"x":-139,"y":42},{"x":-122,"y":1},{"x":-64,"y":61},{"x":59,"y":-9},{"x":41,"y":63},{"x":-57,"y":44},{"x":-84,"y":8},{"x":15,"y":24},{"x":70,"y":3},{"x":-44,"y":11},{"x":-26,"y":62},{"x":-41,"y":-49},{"x":-85,"y":40},{"x":-37,"y":-13},{"x":-2,"y":53},{"x":-116,"y":-14},{"x":65,"y":-33},{"x":28,"y":28},{"x":-25,"y":-37},{"x":38,"y":-50},{"x":98,"y":-17},{"x":115,"y":-77},{"x":-177,"y":6},{"x":85,"y":-27},{"x":94,"y":-78},{"x":-84,"y":-54},{"x":22,"y":-48},{"x":49,"y":-1},{"x":-30,"y":-26},{"x":89,"y":-11},{"x":111,"y":44},{"x":53,"y":-42},{"x":-108,"y":-15},{"x":91,"y":-21},{"x":-5,"y":-26},{"x":318,"y":-39},{"x":37,"y":19},{"x":-73,"y":25},{"x":-1,"y":30},{"x":365,"y":-2},{"x":186,"y":27},{"x":14,"y":41}],"type":"coastline"},{"arc":[{"x":21948,"y":38244},{"x":-53,"y":-16},{"x":85,"y":12},{"x":-32,"y":4}],"type":"coastline"},{"arc":[{"x":17687,"y":40505},{"x":-57,"y":63},{"x":19,"y":-60},{"x":38,"y":-3}],"type":"coastline"},{"arc":[{"x":18006,"y":40236},{"x":2,"y":29},{"x":-61,"y":-6},{"x":21,"y":-34},{"x":91,"y":-23},{"x":-53,"y":34}],"type":"coastline"},{"arc":[{"x":18120,"y":40188},{"x":-53,"y":33},{"x":8,"y":-60},{"x":59,"y":0},{"x":-14,"y":27}],"type":"coastline"},{"arc":[{"x":18135,"y":40153},{"x":-35,"y":-6},{"x":49,"y":-25},{"x":-14,"y":31}],"type":"coastline"},{"arc":[{"x":18228,"y":40409},{"x":-67,"y":61},{"x":37,"y":-67},{"x":30,"y":6}],"type":"coastline"},{"arc":[{"x":18346,"y":40246},{"x":-91,"y":2},{"x":70,"y":-18},{"x":21,"y":16}],"type":"coastline"},{"arc":[{"x":19006,"y":39845},{"x":-32,"y":29},{"x":-47,"y":-5},{"x":79,"y":-24}],"type":"coastline"},{"arc":[{"x":19007,"y":40693},{"x":-198,"y":122},{"x":-100,"y":12},{"x":-6,"y":-47},{"x":64,"y":-41},{"x":53,"y":4},{"x":87,"y":-57},{"x":100,"y":7}],"type":"coastline"},{"arc":[{"x":19092,"y":40679},{"x":-79,"y":-7},{"x":80,"y":-11},{"x":-1,"y":18}],"type":"coastline"},{"arc":[{"x":19298,"y":40380},{"x":-111,"y":22},{"x":-65,"y":-20},{"x":-2,"y":-33},{"x":-106,"y":15},{"x":-18,"y":-77},{"x":-29,"y":8},{"x":-68,"y":-42},{"x":-69,"y":-88},{"x":-8,"y":-101},{"x":57,"y":-38},{"x":-24,"y":-32},{"x":35,"y":0},{"x":72,"y":-88},{"x":54,"y":12},{"x":-16,"y":180},{"x":114,"y":24},{"x":-121,"y":6},{"x":14,"y":92},{"x":111,"y":41},{"x":21,"y":52},{"x":162,"y":-17},{"x":-34,"y":52},{"x":31,"y":32}],"type":"coastline"},{"arc":[{"x":19656,"y":39012},{"x":-188,"y":310},{"x":-83,"y":60},{"x":-3,"y":60},{"x":-230,"y":156},{"x":-143,"y":-5},{"x":-118,"y":213},{"x":-75,"y":39},{"x":-80,"y":3},{"x":-13,"y":-108},{"x":-161,"y":27},{"x":-131,"y":116},{"x":-114,"y":11},{"x":-115,"y":43},{"x":11,"y":88},{"x":-106,"y":-10},{"x":-35,"y":95},{"x":-42,"y":-35},{"x":-42,"y":16},{"x":-47,"y":124},{"x":-17,"y":-58},{"x":-58,"y":36},{"x":-32,"y":-59},{"x":82,"y":-56},{"x":54,"y":-247},{"x":186,"y":-100},{"x":53,"y":10},{"x":6,"y":-45},{"x":208,"y":-61},{"x":68,"y":-149},{"x":47,"y":-3},{"x":-19,"y":-30},{"x":36,"y":-10},{"x":-68,"y":-2},{"x":42,"y":-24},{"x":-42,"y":-11},{"x":81,"y":-69},{"x":-120,"y":37},{"x":17,"y":-72},{"x":-77,"y":30},{"x":5,"y":-178},{"x":-57,"y":116},{"x":-67,"y":36},{"x":-52,"y":-3},{"x":-75,"y":-87},{"x":51,"y":-204}],"type":"coastline"},{"arc":[{"x":19631,"y":40236},{"x":-287,"y":231},{"x":-87,"y":23},{"x":-107,"y":-29},{"x":288,"y":-74},{"x":185,"y":-188},{"x":11,"y":18},{"x":32,"y":-9},{"x":-35,"y":28}],"type":"coastline"},{"arc":[{"x":19705,"y":40137},{"x":-61,"y":27},{"x":39,"y":-60},{"x":22,"y":33}],"type":"coastline"},{"arc":[{"x":19802,"y":39731},{"x":-19,"y":67},{"x":-38,"y":-110},{"x":47,"y":5},{"x":10,"y":38}],"type":"coastline"},{"arc":[{"x":31827,"y":24747},{"x":-48,"y":3},{"x":-101,"y":62},{"x":-71,"y":-4},{"x":-219,"y":-176},{"x":-91,"y":2},{"x":2,"y":3},{"x":-19,"y":18},{"x":-10,"y":-1},{"x":-7,"y":3},{"x":-4,"y":-2},{"x":18,"y":-38}],"type":"coastline"},{"arc":[{"x":31277,"y":24617},{"x":79,"y":-114},{"x":-7,"y":-156},{"x":-49,"y":-33},{"x":4,"y":-35},{"x":91,"y":-37},{"x":-46,"y":-38},{"x":26,"y":-37}],"type":"area"},{"arc":[{"x":31679,"y":23678},{"x":4,"y":0},{"x":9,"y":6},{"x":31,"y":12},{"x":43,"y":9},{"x":41,"y":-8}],"type":"coastline"},{"arc":[{"x":31807,"y":23697},{"x":35,"y":-29}],"type":"coastline"},{"arc":[{"x":31842,"y":23668},{"x":223,"y":-11},{"x":62,"y":-63},{"x":42,"y":24}],"type":"coastline"},{"arc":[{"x":32169,"y":23618},{"x":42,"y":11}],"type":"coastline"},{"arc":[{"x":32211,"y":23629},{"x":107,"y":-18},{"x":11,"y":4},{"x":-34,"y":36},{"x":57,"y":5},{"x":19,"y":-51},{"x":73,"y":239},{"x":66,"y":47},{"x":60,"y":160},{"x":4,"y":53},{"x":-34,"y":53},{"x":21,"y":-40},{"x":-78,"y":20},{"x":-19,"y":36},{"x":24,"y":88},{"x":-23,"y":324},{"x":-3,"y":51},{"x":3,"y":9},{"x":10,"y":8},{"x":-4,"y":15},{"x":-20,"y":11},{"x":2,"y":8},{"x":-1,"y":2},{"x":-14,"y":22},{"x":-4,"y":5},{"x":-8,"y":5},{"x":-3,"y":5},{"x":-3,"y":2},{"x":-5,"y":1},{"x":-5,"y":2},{"x":-15,"y":2},{"x":-12,"y":-4},{"x":-4,"y":0},{"x":-4,"y":3},{"x":-1,"y":1},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":24403,"y":13733},{"x":-12,"y":136},{"x":-50,"y":36},{"x":-68,"y":-69},{"x":1,"y":-126},{"x":98,"y":-8},{"x":31,"y":31}],"type":"coastline"},{"arc":[{"x":29806,"y":37742},{"x":-53,"y":21}],"type":"area"},{"arc":[{"x":29753,"y":37763},{"x":6,"y":-36},{"x":-151,"y":-87},{"x":-184,"y":3},{"x":-246,"y":-267},{"x":-121,"y":-15},{"x":-130,"y":118}],"type":"coastline"},{"arc":[{"x":28748,"y":37273},{"x":-20,"y":-68},{"x":66,"y":-62},{"x":-24,"y":17},{"x":-56,"y":-48},{"x":49,"y":20},{"x":7,"y":-64},{"x":34,"y":34},{"x":9,"y":-71},{"x":25,"y":38},{"x":99,"y":16},{"x":-8,"y":65},{"x":38,"y":-63},{"x":176,"y":37},{"x":45,"y":-85},{"x":-44,"y":-13},{"x":115,"y":-32}],"type":"coastline"},{"arc":[{"x":27620,"y":19803},{"x":-12,"y":48},{"x":-25,"y":-37},{"x":38,"y":-33},{"x":-1,"y":22}],"type":"coastline"},{"arc":[{"x":28751,"y":18756},{"x":-12,"y":67},{"x":15,"y":-89},{"x":-3,"y":22}],"type":"coastline"},{"arc":[{"x":28605,"y":20976},{"x":-43,"y":-49},{"x":5,"y":-143},{"x":159,"y":30},{"x":169,"y":-23},{"x":-14,"y":40},{"x":33,"y":-20},{"x":-33,"y":-55},{"x":55,"y":-3},{"x":-1,"y":18},{"x":26,"y":20},{"x":73,"y":21},{"x":-87,"y":-42},{"x":-1,"y":-46},{"x":150,"y":10},{"x":46,"y":39},{"x":264,"y":63},{"x":-23,"y":-22},{"x":296,"y":0}],"type":"coastline"},{"arc":[{"x":15706,"y":14809},{"x":-61,"y":20},{"x":-58,"y":1},{"x":5,"y":8},{"x":-14,"y":7},{"x":-2,"y":0},{"x":-1,"y":-1},{"x":-11,"y":-9},{"x":-8,"y":10},{"x":-17,"y":-7},{"x":-11,"y":12},{"x":-193,"y":-14}],"type":"coastline"},{"arc":[{"x":15335,"y":14836},{"x":-74,"y":11},{"x":-34,"y":120},{"x":49,"y":53},{"x":-48,"y":68},{"x":-119,"y":25}],"type":"coastline"},{"arc":[{"x":15109,"y":15113},{"x":-206,"y":26}],"type":"coastline"},{"arc":[{"x":14903,"y":15139},{"x":-58,"y":9},{"x":42,"y":89},{"x":-55,"y":47},{"x":-22,"y":-10},{"x":-47,"y":8},{"x":-178,"y":-20},{"x":-64,"y":-22},{"x":-172,"y":-3},{"x":-101,"y":-19},{"x":-75,"y":-76},{"x":-104,"y":-41},{"x":32,"y":-45},{"x":-65,"y":-33},{"x":74,"y":-198},{"x":-13,"y":-70},{"x":150,"y":51},{"x":106,"y":4},{"x":138,"y":70},{"x":28,"y":2},{"x":6,"y":-3},{"x":9,"y":-7},{"x":44,"y":-14},{"x":53,"y":-57},{"x":-11,"y":-14},{"x":32,"y":-16},{"x":16,"y":-41},{"x":174,"y":-149},{"x":45,"y":-118},{"x":173,"y":-116},{"x":74,"y":-28},{"x":18,"y":-1},{"x":5,"y":-7},{"x":11,"y":3},{"x":16,"y":-7},{"x":56,"y":-44}],"type":"coastline"},{"arc":[{"x":27283,"y":26034},{"x":61,"y":34}],"type":"coastline"},{"arc":[{"x":27524,"y":26200},{"x":-74,"y":-5},{"x":-65,"y":4},{"x":-62,"y":-12}],"type":"coastline"},{"arc":[{"x":16257,"y":3731},{"x":-30,"y":18},{"x":26,"y":-53},{"x":40,"y":-5},{"x":8,"y":30},{"x":-44,"y":10}],"type":"coastline"},{"arc":[{"x":18266,"y":4835},{"x":-26,"y":24},{"x":-12,"y":-21},{"x":38,"y":-3}],"type":"coastline"},{"arc":[{"x":25779,"y":28102},{"x":27,"y":-49},{"x":168,"y":-7},{"x":150,"y":61},{"x":-63,"y":39},{"x":-167,"y":5},{"x":-103,"y":-21},{"x":-12,"y":-28}],"type":"coastline"},{"arc":[{"x":30187,"y":24635},{"x":18,"y":-1},{"x":10,"y":-16},{"x":12,"y":-5},{"x":7,"y":0},{"x":5,"y":-3},{"x":1,"y":-1},{"x":3,"y":0},{"x":3,"y":1},{"x":2,"y":0},{"x":1,"y":1},{"x":2,"y":7},{"x":12,"y":4},{"x":-3,"y":20},{"x":7,"y":2},{"x":11,"y":-7},{"x":23,"y":-34},{"x":-52,"y":-36},{"x":65,"y":-89},{"x":80,"y":12},{"x":75,"y":-88},{"x":11,"y":4},{"x":17,"y":-6},{"x":33,"y":4},{"x":3,"y":-3},{"x":-6,"y":-4},{"x":1,"y":-5},{"x":33,"y":-14},{"x":20,"y":-27},{"x":17,"y":-6},{"x":12,"y":-7}],"type":"coastline"},{"arc":[{"x":31024,"y":24658},{"x":34,"y":32},{"x":-35,"y":170},{"x":-53,"y":43},{"x":64,"y":156},{"x":49,"y":15},{"x":-10,"y":85},{"x":-106,"y":34},{"x":-19,"y":11},{"x":-7,"y":7},{"x":-20,"y":6},{"x":-7,"y":12},{"x":-19,"y":0},{"x":-52,"y":28},{"x":-22,"y":16},{"x":-3,"y":11},{"x":-10,"y":5},{"x":-12,"y":4},{"x":-7,"y":-1},{"x":-2,"y":2},{"x":-13,"y":1},{"x":-18,"y":7},{"x":-4,"y":0},{"x":-17,"y":7},{"x":-13,"y":2},{"x":-23,"y":-4},{"x":-17,"y":4},{"x":-93,"y":-20},{"x":-86,"y":10},{"x":-9,"y":-13},{"x":-60,"y":33},{"x":-17,"y":30},{"x":-5,"y":16},{"x":1,"y":8},{"x":3,"y":3},{"x":7,"y":-5},{"x":10,"y":4},{"x":-9,"y":17},{"x":37,"y":47},{"x":-11,"y":30},{"x":-11,"y":10},{"x":-8,"y":2},{"x":-9,"y":1},{"x":-6,"y":-2},{"x":-2,"y":1},{"x":-1,"y":0},{"x":-2,"y":0},{"x":-1,"y":-1},{"x":0,"y":-4},{"x":-2,"y":0},{"x":-11,"y":9},{"x":-76,"y":-17},{"x":-30,"y":-68},{"x":63,"y":14},{"x":-6,"y":-30},{"x":-66,"y":-10},{"x":6,"y":25},{"x":-11,"y":-28},{"x":-199,"y":-22}],"type":"coastline"},{"arc":[{"x":31597,"y":40853},{"x":-99,"y":-109},{"x":53,"y":-3},{"x":25,"y":59},{"x":85,"y":47},{"x":-64,"y":6}],"type":"coastline"},{"arc":[{"x":31633,"y":40887},{"x":18,"y":-29},{"x":31,"y":33},{"x":-49,"y":-4}],"type":"coastline"},{"arc":[{"x":32448,"y":39239},{"x":-317,"y":63},{"x":-303,"y":-17},{"x":27,"y":17},{"x":-300,"y":52},{"x":-375,"y":117},{"x":138,"y":-84},{"x":31,"y":-98},{"x":-18,"y":50},{"x":-43,"y":-80},{"x":-305,"y":-56},{"x":-216,"y":66},{"x":-27,"y":30},{"x":33,"y":-19},{"x":4,"y":33},{"x":-107,"y":21},{"x":-78,"y":-24},{"x":119,"y":-7},{"x":36,"y":-91},{"x":-183,"y":-65},{"x":143,"y":-33},{"x":321,"y":46},{"x":182,"y":-41},{"x":526,"y":50},{"x":142,"y":-71},{"x":129,"y":-5},{"x":237,"y":15},{"x":35,"y":58},{"x":-33,"y":26},{"x":33,"y":28},{"x":29,"y":-23},{"x":11,"y":37},{"x":134,"y":-63},{"x":-15,"y":35},{"x":43,"y":16},{"x":-33,"y":17}],"type":"coastline"},{"arc":[{"x":32641,"y":38624},{"x":-23,"y":52},{"x":-93,"y":-60},{"x":58,"y":-28},{"x":-23,"y":-32},{"x":94,"y":42},{"x":-13,"y":26}],"type":"coastline"},{"arc":[{"x":32465,"y":24645},{"x":23,"y":-384},{"x":114,"y":45},{"x":2,"y":61},{"x":70,"y":54}],"type":"coastline"},{"arc":[{"x":32671,"y":24429},{"x":-74,"y":-53},{"x":-1,"y":82},{"x":70,"y":4}],"type":"coastline"},{"arc":[{"x":32692,"y":42048},{"x":-14,"y":40},{"x":-140,"y":46},{"x":139,"y":-111},{"x":15,"y":25}],"type":"coastline"},{"arc":[{"x":33551,"y":41881},{"x":-72,"y":6},{"x":-94,"y":-139},{"x":126,"y":28},{"x":40,"y":105}],"type":"coastline"},{"arc":[{"x":34794,"y":938},{"x":-6,"y":-43},{"x":34,"y":29},{"x":-28,"y":14}],"type":"coastline"},{"arc":[{"x":35262,"y":30298},{"x":-19,"y":93},{"x":-46,"y":1},{"x":65,"y":-94}],"type":"coastline"},{"arc":[{"x":35740,"y":35},{"x":-148,"y":199},{"x":19,"y":45},{"x":48,"y":-82},{"x":-60,"y":108},{"x":-21,"y":-18},{"x":-78,"y":209},{"x":-46,"y":-35},{"x":-17,"y":59},{"x":55,"y":-12},{"x":-35,"y":67},{"x":-310,"y":98},{"x":43,"y":54},{"x":-57,"y":2},{"x":50,"y":38},{"x":28,"y":-70},{"x":89,"y":29},{"x":23,"y":-71},{"x":12,"y":117},{"x":-16,"y":70},{"x":-50,"y":-28},{"x":38,"y":28},{"x":-13,"y":86},{"x":24,"y":-76},{"x":-20,"y":155},{"x":-143,"y":162},{"x":-18,"y":-30},{"x":-24,"y":113},{"x":-63,"y":-113},{"x":-55,"y":5},{"x":51,"y":-106},{"x":-82,"y":51},{"x":52,"y":-221},{"x":-48,"y":93},{"x":-55,"y":-12},{"x":2,"y":-62},{"x":-39,"y":76},{"x":-70,"y":-132},{"x":9,"y":43},{"x":-55,"y":-19},{"x":-34,"y":91},{"x":19,"y":-81},{"x":-57,"y":-27},{"x":85,"y":-38},{"x":-64,"y":-26},{"x":127,"y":-124},{"x":-29,"y":-92},{"x":143,"y":-61},{"x":46,"y":-130},{"x":-38,"y":-53},{"x":7,"y":-127},{"x":130,"y":-63},{"x":-8,"y":36},{"x":83,"y":25},{"x":-49,"y":-37},{"x":56,"y":-46},{"x":-61,"y":-11},{"x":9,"y":-54},{"x":-82,"y":-9},{"x":-64,"y":62},{"x":-105,"y":-90},{"x":0,"y":0},{"x":113,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":112,"y":0},{"x":96,"y":0},{"x":-15,"y":35}],"type":"coastline"},{"arc":[{"x":35802,"y":27988},{"x":-93,"y":-125},{"x":26,"y":-125},{"x":138,"y":84},{"x":-71,"y":166}],"type":"coastline"},{"arc":[{"x":35932,"y":42468},{"x":-46,"y":-65},{"x":60,"y":-136},{"x":43,"y":62},{"x":-57,"y":139}],"type":"coastline"},{"arc":[{"x":36063,"y":29091},{"x":-142,"y":137},{"x":-2,"y":-111},{"x":65,"y":-106},{"x":78,"y":-21},{"x":29,"y":61},{"x":-28,"y":40}],"type":"coastline"},{"arc":[{"x":36300,"y":28288},{"x":-99,"y":39},{"x":77,"y":-104},{"x":22,"y":65}],"type":"coastline"},{"arc":[{"x":36329,"y":43755},{"x":-109,"y":0},{"x":-13,"y":0},{"x":-43,"y":-147},{"x":67,"y":-15},{"x":98,"y":162}],"type":"coastline"},{"arc":[{"x":36339,"y":38634},{"x":-36,"y":-21},{"x":22,"y":-85},{"x":14,"y":106}],"type":"coastline"},{"arc":[{"x":36337,"y":154},{"x":-63,"y":148},{"x":-39,"y":-15},{"x":-29,"y":-287},{"x":14,"y":0},{"x":109,"y":0},{"x":8,"y":154}],"type":"coastline"},{"arc":[{"x":36502,"y":31330},{"x":6,"y":-112},{"x":68,"y":92},{"x":-32,"y":96},{"x":-42,"y":-76}],"type":"coastline"},{"arc":[{"x":36607,"y":37597},{"x":13,"y":-123},{"x":22,"y":109},{"x":-35,"y":14}],"type":"coastline"},{"arc":[{"x":36641,"y":31545},{"x":-49,"y":-18},{"x":23,"y":-95},{"x":66,"y":68},{"x":-40,"y":45}],"type":"coastline"},{"arc":[{"x":36679,"y":30974},{"x":-53,"y":-23},{"x":38,"y":-68},{"x":15,"y":91}],"type":"coastline"},{"arc":[{"x":36734,"y":28599},{"x":-47,"y":156},{"x":-37,"y":-118},{"x":-31,"y":74},{"x":-9,"y":-96},{"x":-26,"y":62},{"x":-50,"y":-101},{"x":-56,"y":56},{"x":-61,"y":-42},{"x":-150,"y":107},{"x":-119,"y":186},{"x":-7,"y":-109},{"x":-31,"y":70},{"x":42,"y":-233},{"x":-44,"y":-29},{"x":61,"y":-79},{"x":-40,"y":31},{"x":35,"y":-149},{"x":66,"y":-5},{"x":6,"y":90},{"x":32,"y":-96},{"x":44,"y":61},{"x":-35,"y":-57},{"x":59,"y":-14},{"x":-39,"y":-57},{"x":54,"y":-43},{"x":-36,"y":-16},{"x":21,"y":-107},{"x":118,"y":9},{"x":-1,"y":97},{"x":126,"y":99},{"x":18,"y":-103},{"x":36,"y":123},{"x":64,"y":-24},{"x":56,"y":204},{"x":-19,"y":53}],"type":"coastline"},{"arc":[{"x":36774,"y":30501},{"x":-106,"y":97},{"x":30,"y":-46},{"x":-34,"y":-177},{"x":84,"y":5},{"x":26,"y":121}],"type":"coastline"},{"arc":[{"x":36853,"y":39170},{"x":-73,"y":137},{"x":-75,"y":15},{"x":29,"y":-451},{"x":122,"y":159},{"x":-3,"y":140}],"type":"coastline"},{"arc":[{"x":36921,"y":38376},{"x":-66,"y":49},{"x":86,"y":-96},{"x":-20,"y":47}],"type":"coastline"},{"arc":[{"x":36864,"y":38960},{"x":62,"y":-43},{"x":19,"y":85},{"x":-81,"y":-42}],"type":"coastline"},{"arc":[{"x":36962,"y":35656},{"x":-59,"y":-72},{"x":51,"y":-160},{"x":53,"y":80},{"x":-45,"y":152}],"type":"coastline"},{"arc":[{"x":37211,"y":31860},{"x":-63,"y":-18},{"x":41,"y":-60},{"x":22,"y":78}],"type":"coastline"},{"arc":[{"x":37218,"y":39711},{"x":-34,"y":52},{"x":19,"y":152},{"x":-47,"y":25},{"x":-14,"y":281},{"x":-55,"y":-34},{"x":-23,"y":-300},{"x":90,"y":-250},{"x":88,"y":39},{"x":-24,"y":35}],"type":"coastline"},{"arc":[{"x":37355,"y":38785},{"x":-107,"y":191},{"x":126,"y":77},{"x":-72,"y":150},{"x":-57,"y":319},{"x":-125,"y":-97},{"x":20,"y":-179},{"x":127,"y":12},{"x":4,"y":-81},{"x":-117,"y":13},{"x":-62,"y":149},{"x":-23,"y":-437},{"x":35,"y":-51},{"x":-74,"y":-64},{"x":28,"y":-117},{"x":111,"y":-152},{"x":102,"y":19},{"x":4,"y":81},{"x":44,"y":-39},{"x":40,"y":88},{"x":28,"y":111},{"x":-32,"y":7}],"type":"coastline"},{"arc":[{"x":37402,"y":33580},{"x":-46,"y":7},{"x":26,"y":-131},{"x":20,"y":124}],"type":"coastline"},{"arc":[{"x":37471,"y":35553},{"x":-38,"y":6},{"x":35,"y":-74},{"x":3,"y":68}],"type":"coastline"},{"arc":[{"x":37475,"y":40018},{"x":-1,"y":-100},{"x":32,"y":124},{"x":-31,"y":-24}],"type":"coastline"},{"arc":[{"x":37550,"y":30162},{"x":-57,"y":106},{"x":-97,"y":-91},{"x":-214,"y":-852},{"x":-68,"y":-67},{"x":-5,"y":-97},{"x":-18,"y":93},{"x":-39,"y":-50},{"x":11,"y":-94},{"x":-48,"y":30},{"x":34,"y":-81},{"x":-66,"y":7},{"x":31,"y":-116},{"x":-77,"y":65},{"x":-57,"y":-73},{"x":44,"y":-87},{"x":-103,"y":41},{"x":37,"y":-145},{"x":-50,"y":129},{"x":3,"y":-107},{"x":-42,"y":63},{"x":-54,"y":-60},{"x":44,"y":-102},{"x":-31,"y":1},{"x":31,"y":-125},{"x":-17,"y":-105},{"x":77,"y":160},{"x":-24,"y":-155},{"x":46,"y":-51},{"x":81,"y":166},{"x":-15,"y":102},{"x":36,"y":-95},{"x":49,"y":146},{"x":43,"y":-81},{"x":3,"y":167},{"x":27,"y":-142},{"x":31,"y":104},{"x":11,"y":-98},{"x":45,"y":6},{"x":-26,"y":74},{"x":62,"y":37},{"x":-6,"y":110},{"x":79,"y":34},{"x":91,"y":373},{"x":44,"y":-1},{"x":7,"y":366},{"x":50,"y":232},{"x":93,"y":115},{"x":4,"y":148}],"type":"coastline"},{"arc":[{"x":37576,"y":33604},{"x":-17,"y":-152},{"x":46,"y":150},{"x":-29,"y":2}],"type":"coastline"},{"arc":[{"x":31446,"y":36060},{"x":22,"y":-14},{"x":21,"y":-43},{"x":-4,"y":-20},{"x":-27,"y":-41},{"x":3,"y":-40},{"x":87,"y":-134},{"x":-175,"y":-183},{"x":-81,"y":-249},{"x":42,"y":-267},{"x":77,"y":-74},{"x":60,"y":2},{"x":16,"y":-91},{"x":72,"y":-65},{"x":34,"y":-162},{"x":-74,"y":-146},{"x":11,"y":-103},{"x":82,"y":-118},{"x":167,"y":-14},{"x":4,"y":-1},{"x":12,"y":-13},{"x":2,"y":-3},{"x":0,"y":-9},{"x":7,"y":-9},{"x":-1,"y":-10},{"x":9,"y":-12},{"x":0,"y":-10},{"x":5,"y":-14},{"x":-5,"y":-21},{"x":62,"y":-102},{"x":5,"y":-72},{"x":29,"y":-26},{"x":12,"y":-47},{"x":14,"y":-11},{"x":14,"y":-29},{"x":13,"y":-3},{"x":3,"y":-10},{"x":-5,"y":-3},{"x":-15,"y":-2},{"x":-24,"y":-8},{"x":-25,"y":-11},{"x":-82,"y":-79},{"x":-102,"y":-28},{"x":-162,"y":55},{"x":-58,"y":-26},{"x":-24,"y":-58},{"x":-16,"y":1},{"x":-5,"y":-4},{"x":-8,"y":-8},{"x":-9,"y":-10},{"x":-3,"y":-6},{"x":-2,"y":-5},{"x":0,"y":-5},{"x":5,"y":-13},{"x":31,"y":-23},{"x":-7,"y":-46},{"x":32,"y":-65},{"x":-25,"y":-67},{"x":30,"y":-109},{"x":121,"y":-42},{"x":9,"y":-140},{"x":61,"y":-91},{"x":-212,"y":-327},{"x":-47,"y":4},{"x":-31,"y":-40},{"x":12,"y":-19},{"x":-40,"y":-29},{"x":18,"y":-8},{"x":1,"y":-5},{"x":-23,"y":0},{"x":4,"y":-82},{"x":-3,"y":-3},{"x":-3,"y":-1},{"x":-16,"y":-6},{"x":-20,"y":4},{"x":-23,"y":-40}],"type":"coastline"},{"arc":[{"x":30660,"y":27861},{"x":-54,"y":-73},{"x":-62,"y":11},{"x":35,"y":-20},{"x":-81,"y":-90},{"x":36,"y":-31},{"x":-47,"y":11},{"x":43,"y":-32},{"x":-42,"y":22},{"x":-85,"y":-24},{"x":-148,"y":-84},{"x":-71,"y":69},{"x":-158,"y":19},{"x":82,"y":36},{"x":-192,"y":-29},{"x":-265,"y":136}],"type":"coastline"},{"arc":[{"x":29999,"y":26737},{"x":199,"y":-149},{"x":205,"y":-265},{"x":22,"y":47},{"x":9,"y":-36},{"x":27,"y":20},{"x":-46,"y":30},{"x":15,"y":80},{"x":74,"y":-17},{"x":86,"y":42},{"x":-45,"y":12},{"x":68,"y":15},{"x":-7,"y":50},{"x":131,"y":-103},{"x":-4,"y":103},{"x":43,"y":-17},{"x":61,"y":116},{"x":38,"y":-37},{"x":-32,"y":-74},{"x":33,"y":41},{"x":-42,"y":-73}],"type":"coastline"},{"arc":[{"x":30834,"y":26522},{"x":103,"y":10},{"x":65,"y":65},{"x":-4,"y":113},{"x":99,"y":28},{"x":71,"y":-44},{"x":63,"y":52},{"x":34,"y":-46},{"x":49,"y":55},{"x":77,"y":0},{"x":108,"y":-222},{"x":-36,"y":-37},{"x":120,"y":-71},{"x":-52,"y":-100},{"x":49,"y":-59},{"x":-15,"y":-60},{"x":192,"y":-65},{"x":9,"y":-108},{"x":94,"y":-12},{"x":25,"y":39},{"x":130,"y":-74},{"x":-6,"y":-171},{"x":-56,"y":-20},{"x":5,"y":-57}],"type":"area"},{"arc":[{"x":31958,"y":25738},{"x":205,"y":-63},{"x":42,"y":21},{"x":-23,"y":95},{"x":77,"y":63},{"x":62,"y":-33},{"x":18,"y":-85},{"x":58,"y":9},{"x":165,"y":-128},{"x":183,"y":14},{"x":58,"y":-83},{"x":-40,"y":-87},{"x":2,"y":-3},{"x":9,"y":-6},{"x":5,"y":-6},{"x":3,"y":-1},{"x":5,"y":-1},{"x":3,"y":1},{"x":18,"y":4},{"x":6,"y":7},{"x":2,"y":0},{"x":5,"y":-4},{"x":2,"y":-2},{"x":1,"y":-2},{"x":6,"y":-19},{"x":8,"y":-9},{"x":2,"y":-14},{"x":-20,"y":-27},{"x":35,"y":-24},{"x":-11,"y":-37},{"x":19,"y":-17},{"x":4,"y":-2},{"x":29,"y":8},{"x":62,"y":-11},{"x":67,"y":-61},{"x":44,"y":15},{"x":14,"y":-8},{"x":13,"y":17},{"x":11,"y":2},{"x":13,"y":1},{"x":5,"y":-1},{"x":3,"y":-1},{"x":10,"y":-15},{"x":9,"y":-8},{"x":10,"y":-16},{"x":22,"y":2},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":33618,"y":25283},{"x":71,"y":8},{"x":-30,"y":35},{"x":76,"y":96},{"x":-6,"y":132},{"x":91,"y":-198},{"x":81,"y":9},{"x":-42,"y":-108}],"type":"coastline"},{"arc":[{"x":35940,"y":25626},{"x":-43,"y":59},{"x":40,"y":94},{"x":40,"y":-14},{"x":-51,"y":138},{"x":-37,"y":-30},{"x":17,"y":-110},{"x":-53,"y":33},{"x":13,"y":103},{"x":-40,"y":-33},{"x":29,"y":86},{"x":-107,"y":-61},{"x":84,"y":73},{"x":-11,"y":208},{"x":-360,"y":694},{"x":-200,"y":12},{"x":-112,"y":-129},{"x":-53,"y":-186},{"x":109,"y":-495},{"x":53,"y":-41},{"x":19,"y":-126},{"x":54,"y":-21},{"x":12,"y":-131},{"x":-114,"y":179},{"x":-16,"y":-52},{"x":-9,"y":78},{"x":-1,"y":-73},{"x":-23,"y":97},{"x":-25,"y":-52},{"x":-94,"y":188},{"x":-115,"y":-68},{"x":-145,"y":87},{"x":-42,"y":-33},{"x":-172,"y":328},{"x":37,"y":68},{"x":76,"y":3},{"x":23,"y":-110},{"x":72,"y":-68},{"x":97,"y":32},{"x":-68,"y":190},{"x":-45,"y":-41},{"x":39,"y":49},{"x":-62,"y":251},{"x":224,"y":-95},{"x":222,"y":294},{"x":-22,"y":140},{"x":-43,"y":47},{"x":-44,"y":-41},{"x":33,"y":58},{"x":-73,"y":42},{"x":238,"y":42},{"x":67,"y":-93},{"x":190,"y":79},{"x":136,"y":-133},{"x":-35,"y":276},{"x":-86,"y":115},{"x":-71,"y":20},{"x":-19,"y":-164},{"x":-81,"y":-53},{"x":-121,"y":135},{"x":9,"y":68},{"x":-28,"y":-21},{"x":27,"y":143},{"x":165,"y":32},{"x":9,"y":153},{"x":66,"y":-63},{"x":-16,"y":66},{"x":162,"y":370},{"x":-55,"y":28},{"x":30,"y":40},{"x":36,"y":-49},{"x":64,"y":134},{"x":19,"y":81},{"x":-1,"y":56},{"x":-20,"y":-117},{"x":-14,"y":52},{"x":-102,"y":-12},{"x":-31,"y":-84},{"x":-18,"y":194},{"x":87,"y":68},{"x":1,"y":235},{"x":98,"y":228},{"x":-132,"y":-14},{"x":-18,"y":71},{"x":79,"y":17},{"x":50,"y":141},{"x":150,"y":-101},{"x":66,"y":96},{"x":-72,"y":389},{"x":-55,"y":106},{"x":-35,"y":-26},{"x":27,"y":34},{"x":-93,"y":246},{"x":-150,"y":145},{"x":174,"y":113},{"x":5,"y":-92},{"x":127,"y":-43},{"x":35,"y":-132},{"x":-30,"y":-25},{"x":267,"y":63},{"x":3,"y":-78},{"x":58,"y":-9},{"x":145,"y":211},{"x":292,"y":135},{"x":-59,"y":410},{"x":-277,"y":-125},{"x":-139,"y":125},{"x":-429,"y":-32},{"x":-111,"y":131},{"x":-55,"y":-68},{"x":-118,"y":3},{"x":-16,"y":-65},{"x":-158,"y":-101},{"x":8,"y":-54},{"x":-66,"y":33},{"x":-32,"y":-108},{"x":27,"y":-48},{"x":27,"y":54},{"x":-17,"y":-55},{"x":43,"y":-47},{"x":-14,"y":-113},{"x":-46,"y":20},{"x":-61,"y":149},{"x":-10,"y":237},{"x":53,"y":1},{"x":99,"y":180},{"x":162,"y":113},{"x":233,"y":-30},{"x":58,"y":204},{"x":-103,"y":142},{"x":-169,"y":-25},{"x":-51,"y":69},{"x":6,"y":166},{"x":41,"y":-190},{"x":85,"y":5},{"x":32,"y":78},{"x":143,"y":-64},{"x":74,"y":-195},{"x":-27,"y":-268},{"x":141,"y":-39},{"x":206,"y":98},{"x":173,"y":-158},{"x":88,"y":61},{"x":66,"y":174},{"x":172,"y":10},{"x":-129,"y":87},{"x":-212,"y":-60},{"x":-65,"y":201},{"x":15,"y":105},{"x":-55,"y":77},{"x":9,"y":76},{"x":-5,"y":-72},{"x":104,"y":-56},{"x":-17,"y":-60},{"x":61,"y":-148},{"x":75,"y":-34},{"x":32,"y":107},{"x":-38,"y":150},{"x":74,"y":-81},{"x":40,"y":237},{"x":-140,"y":237},{"x":-14,"y":237},{"x":-95,"y":-124},{"x":-160,"y":-23},{"x":-82,"y":32},{"x":83,"y":-23},{"x":98,"y":89},{"x":-186,"y":-30},{"x":-22,"y":65},{"x":55,"y":-27},{"x":34,"y":100},{"x":143,"y":-80},{"x":116,"y":61},{"x":146,"y":-173},{"x":60,"y":-182},{"x":230,"y":-23},{"x":68,"y":798},{"x":-88,"y":-157},{"x":-108,"y":121},{"x":112,"y":-109},{"x":26,"y":156},{"x":62,"y":60},{"x":87,"y":-205},{"x":41,"y":61},{"x":-23,"y":96},{"x":63,"y":-185},{"x":40,"y":35},{"x":-46,"y":112},{"x":94,"y":102},{"x":31,"y":-93},{"x":-15,"y":112},{"x":92,"y":158},{"x":85,"y":553},{"x":18,"y":-118},{"x":38,"y":104},{"x":1,"y":266},{"x":-56,"y":-36},{"x":28,"y":115},{"x":-32,"y":-7},{"x":89,"y":286},{"x":-49,"y":114},{"x":-61,"y":-23},{"x":71,"y":38},{"x":95,"y":-125},{"x":-30,"y":413},{"x":39,"y":-167},{"x":94,"y":5},{"x":171,"y":382},{"x":-82,"y":271},{"x":-63,"y":-261},{"x":12,"y":217},{"x":-36,"y":-58},{"x":-13,"y":249},{"x":-94,"y":-131},{"x":6,"y":173},{"x":46,"y":12},{"x":5,"y":383},{"x":-65,"y":134},{"x":-29,"y":-45},{"x":-2,"y":112},{"x":-66,"y":-18},{"x":51,"y":80},{"x":-164,"y":36},{"x":70,"y":-148},{"x":-99,"y":168},{"x":-167,"y":-237},{"x":-79,"y":-268},{"x":-35,"y":28},{"x":-118,"y":-210},{"x":-4,"y":-112},{"x":-192,"y":-252},{"x":42,"y":117},{"x":-21,"y":130},{"x":27,"y":-107},{"x":48,"y":13},{"x":7,"y":241},{"x":44,"y":134},{"x":30,"y":-27},{"x":-22,"y":63},{"x":52,"y":144},{"x":-1,"y":-149},{"x":75,"y":43},{"x":-24,"y":114},{"x":32,"y":70},{"x":-40,"y":-29},{"x":-37,"y":130},{"x":65,"y":58},{"x":-81,"y":71},{"x":-42,"y":-36},{"x":-25,"y":44},{"x":-84,"y":-1},{"x":-23,"y":-45},{"x":-29,"y":7},{"x":-20,"y":39},{"x":-10,"y":72},{"x":18,"y":-85},{"x":32,"y":-28},{"x":35,"y":47},{"x":62,"y":2},{"x":21,"y":58},{"x":36,"y":-70},{"x":21,"y":79},{"x":-3,"y":527},{"x":-21,"y":67},{"x":-57,"y":-74},{"x":-63,"y":162},{"x":-30,"y":352},{"x":43,"y":-19},{"x":-21,"y":88},{"x":55,"y":58},{"x":85,"y":-51},{"x":51,"y":77},{"x":-16,"y":153},{"x":-66,"y":52},{"x":33,"y":88},{"x":-72,"y":33},{"x":67,"y":36},{"x":-14,"y":137},{"x":-111,"y":182},{"x":-15,"y":-145},{"x":-28,"y":-19},{"x":-29,"y":129},{"x":2,"y":-157},{"x":-45,"y":165},{"x":-76,"y":28},{"x":44,"y":-212},{"x":-132,"y":143},{"x":63,"y":14},{"x":-66,"y":61},{"x":-15,"y":-87},{"x":-128,"y":97},{"x":-25,"y":139},{"x":-53,"y":34},{"x":107,"y":139},{"x":164,"y":64},{"x":-13,"y":76},{"x":-17,"y":-76},{"x":-52,"y":53},{"x":-71,"y":184},{"x":80,"y":116},{"x":-22,"y":140},{"x":-91,"y":127},{"x":45,"y":66},{"x":15,"y":-65},{"x":44,"y":33},{"x":-25,"y":235},{"x":108,"y":-84},{"x":59,"y":104},{"x":5,"y":-134},{"x":59,"y":55},{"x":20,"y":190},{"x":70,"y":-46},{"x":-122,"y":744},{"x":19,"y":-232},{"x":-36,"y":-102},{"x":7,"y":344},{"x":-102,"y":-117},{"x":61,"y":46},{"x":26,"y":-89},{"x":-71,"y":23},{"x":12,"y":-101},{"x":-69,"y":-10},{"x":33,"y":154},{"x":114,"y":126},{"x":-40,"y":294},{"x":-64,"y":54},{"x":9,"y":-84},{"x":-52,"y":-66},{"x":-36,"y":220},{"x":-69,"y":-72},{"x":41,"y":75},{"x":-18,"y":113},{"x":-66,"y":66},{"x":-9,"y":-55},{"x":-42,"y":105},{"x":70,"y":412},{"x":-61,"y":402},{"x":-117,"y":104},{"x":-123,"y":-40},{"x":-27,"y":141},{"x":-121,"y":4},{"x":-28,"y":55},{"x":-102,"y":-72},{"x":89,"y":91},{"x":103,"y":-16},{"x":72,"y":108},{"x":17,"y":207},{"x":-47,"y":98},{"x":-16,"y":250},{"x":63,"y":110},{"x":-120,"y":60},{"x":-37,"y":131},{"x":-68,"y":31},{"x":-6,"y":122},{"x":66,"y":65},{"x":128,"y":-122},{"x":119,"y":39},{"x":-80,"y":330},{"x":35,"y":10},{"x":-38,"y":330},{"x":27,"y":16},{"x":-143,"y":387},{"x":-62,"y":84},{"x":-95,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-112,"y":0},{"x":-113,"y":0},{"x":0,"y":0},{"x":-107,"y":-175},{"x":23,"y":23},{"x":7,"y":-139},{"x":81,"y":-81},{"x":-7,"y":-77},{"x":-2,"y":79},{"x":-56,"y":30},{"x":38,"y":-141},{"x":-61,"y":-195},{"x":51,"y":200},{"x":-47,"y":41},{"x":-38,"y":-37},{"x":51,"y":167},{"x":-78,"y":-4},{"x":-49,"y":88},{"x":53,"y":2},{"x":-99,"y":54},{"x":-85,"y":14},{"x":-13,"y":-59},{"x":1,"y":53},{"x":-41,"y":-1},{"x":47,"y":9},{"x":-98,"y":74},{"x":-119,"y":22},{"x":-77,"y":-60},{"x":66,"y":-214},{"x":52,"y":18},{"x":-23,"y":-33},{"x":36,"y":-24},{"x":-68,"y":30},{"x":-207,"y":-417},{"x":23,"y":-32},{"x":-79,"y":-50},{"x":7,"y":-50},{"x":-34,"y":21},{"x":-15,"y":-67},{"x":-35,"y":17},{"x":10,"y":-57},{"x":-54,"y":4},{"x":-92,"y":-186},{"x":-119,"y":-30},{"x":159,"y":-128},{"x":-45,"y":-266},{"x":-135,"y":-95},{"x":151,"y":16},{"x":-82,"y":-167},{"x":-33,"y":26},{"x":-45,"y":-46},{"x":72,"y":-42},{"x":-57,"y":-37},{"x":43,"y":-68},{"x":-110,"y":-54},{"x":-107,"y":10},{"x":11,"y":-46},{"x":-37,"y":22},{"x":-198,"y":-131},{"x":-89,"y":44},{"x":63,"y":41},{"x":-59,"y":78},{"x":-81,"y":-64},{"x":-132,"y":-3},{"x":-6,"y":56},{"x":-125,"y":15},{"x":-39,"y":-38},{"x":50,"y":-60},{"x":70,"y":56},{"x":-35,"y":-73},{"x":-26,"y":21},{"x":-45,"y":-65},{"x":-115,"y":-35},{"x":-183,"y":42},{"x":-52,"y":-47},{"x":5,"y":-120},{"x":-80,"y":-83},{"x":-149,"y":-32},{"x":-94,"y":32},{"x":42,"y":-28},{"x":-88,"y":-136},{"x":30,"y":-33},{"x":-28,"y":26},{"x":-210,"y":-44},{"x":-248,"y":-197},{"x":906,"y":-128},{"x":389,"y":41},{"x":173,"y":125},{"x":86,"y":-22},{"x":7,"y":82},{"x":49,"y":20},{"x":-16,"y":85},{"x":554,"y":438},{"x":102,"y":217},{"x":30,"y":-29},{"x":77,"y":66},{"x":22,"y":-34},{"x":184,"y":46},{"x":43,"y":50},{"x":-29,"y":92},{"x":29,"y":-21},{"x":1,"y":64},{"x":52,"y":-146},{"x":-25,"y":-128},{"x":-175,"y":-51},{"x":-32,"y":42},{"x":-32,"y":-37},{"x":43,"y":-22},{"x":-7,"y":-51},{"x":-246,"y":-271},{"x":102,"y":31},{"x":-23,"y":-78},{"x":70,"y":-3},{"x":158,"y":69},{"x":-66,"y":-93},{"x":59,"y":-56},{"x":-59,"y":-254},{"x":-213,"y":-135},{"x":-188,"y":-206},{"x":-93,"y":-10},{"x":9,"y":100},{"x":-72,"y":28},{"x":-28,"y":-139},{"x":43,"y":-83},{"x":-76,"y":-57},{"x":35,"y":-65},{"x":-51,"y":-123},{"x":63,"y":-30},{"x":21,"y":148},{"x":89,"y":-113},{"x":-38,"y":-74},{"x":76,"y":-171},{"x":-29,"y":-41},{"x":-39,"y":21},{"x":1,"y":-57},{"x":-54,"y":23},{"x":39,"y":-87},{"x":-38,"y":-82},{"x":51,"y":-126},{"x":-73,"y":-55},{"x":62,"y":-12},{"x":-8,"y":-339},{"x":-224,"y":-275},{"x":-121,"y":-49},{"x":-199,"y":-228},{"x":-121,"y":-49},{"x":-344,"y":-365},{"x":-73,"y":65},{"x":18,"y":130},{"x":-196,"y":-7},{"x":17,"y":51},{"x":66,"y":-15},{"x":39,"y":82},{"x":-45,"y":-52},{"x":-34,"y":68},{"x":-99,"y":-65},{"x":32,"y":99},{"x":74,"y":53},{"x":-114,"y":-45},{"x":5,"y":28},{"x":113,"y":40},{"x":63,"y":-16},{"x":1,"y":137},{"x":-225,"y":199},{"x":-71,"y":-26},{"x":28,"y":-59},{"x":-58,"y":68},{"x":-97,"y":-17},{"x":-58,"y":52},{"x":-191,"y":-105},{"x":-176,"y":-30},{"x":-101,"y":30},{"x":-47,"y":-33},{"x":-67,"y":17},{"x":-250,"y":-46},{"x":-152,"y":-111},{"x":-448,"y":-194},{"x":-322,"y":-223},{"x":-192,"y":-84},{"x":-185,"y":-241},{"x":50,"y":-48},{"x":-15,"y":-55},{"x":102,"y":4},{"x":-51,"y":-51},{"x":55,"y":15},{"x":5,"y":-28},{"x":-176,"y":-73},{"x":25,"y":-68},{"x":-31,"y":26},{"x":-52,"y":-21}],"type":"coastline"},{"arc":[{"x":38069,"y":34388},{"x":-101,"y":-67},{"x":74,"y":173},{"x":-149,"y":183},{"x":-123,"y":-704},{"x":314,"y":246},{"x":-22,"y":86},{"x":43,"y":19},{"x":-36,"y":64}],"type":"coastline"},{"arc":[{"x":38249,"y":32926},{"x":-49,"y":346},{"x":-40,"y":-222},{"x":89,"y":-124}],"type":"coastline"},{"arc":[{"x":38223,"y":29138},{"x":18,"y":-116},{"x":19,"y":91},{"x":-37,"y":25}],"type":"coastline"},{"arc":[{"x":38262,"y":33761},{"x":-97,"y":-68},{"x":81,"y":163},{"x":-63,"y":185},{"x":-109,"y":-127},{"x":-79,"y":109},{"x":-37,"y":-164},{"x":58,"y":-433},{"x":127,"y":-138},{"x":-37,"y":-78},{"x":27,"y":-47},{"x":58,"y":223},{"x":19,"y":-56},{"x":46,"y":88},{"x":6,"y":343}],"type":"coastline"},{"arc":[{"x":38310,"y":28817},{"x":-59,"y":-2},{"x":5,"y":-166},{"x":52,"y":34},{"x":2,"y":134}],"type":"coastline"},{"arc":[{"x":38322,"y":28361},{"x":-40,"y":51},{"x":-11,"y":-136},{"x":51,"y":85}],"type":"coastline"},{"arc":[{"x":38310,"y":29081},{"x":-55,"y":-189},{"x":86,"y":-93},{"x":-31,"y":282}],"type":"coastline"},{"arc":[{"x":38415,"y":27695},{"x":-45,"y":105},{"x":35,"y":-123},{"x":-69,"y":-150},{"x":35,"y":-197},{"x":44,"y":365}],"type":"coastline"},{"arc":[{"x":38411,"y":29444},{"x":-86,"y":-142},{"x":4,"y":-176},{"x":92,"y":7},{"x":-10,"y":311}],"type":"coastline"},{"arc":[{"x":38427,"y":27954},{"x":-42,"y":207},{"x":-136,"y":-495},{"x":39,"y":37},{"x":15,"y":-156},{"x":3,"y":181},{"x":31,"y":-88},{"x":13,"y":216},{"x":77,"y":98}],"type":"coastline"},{"arc":[{"x":38452,"y":29327},{"x":4,"y":-154},{"x":27,"y":201},{"x":-31,"y":-47}],"type":"coastline"},{"arc":[{"x":38459,"y":28626},{"x":-58,"y":248},{"x":84,"y":-355},{"x":-26,"y":107}],"type":"coastline"},{"arc":[{"x":38503,"y":29742},{"x":-64,"y":90},{"x":-53,"y":-281},{"x":35,"y":-75},{"x":82,"y":266}],"type":"coastline"},{"arc":[{"x":38503,"y":33542},{"x":-108,"y":243},{"x":-96,"y":-71},{"x":-37,"y":-347},{"x":-30,"y":-102},{"x":39,"y":-198},{"x":31,"y":144},{"x":9,"y":-216},{"x":9,"y":141},{"x":16,"y":-90},{"x":120,"y":141},{"x":47,"y":355}],"type":"coastline"},{"arc":[{"x":38544,"y":28779},{"x":-20,"y":136},{"x":-21,"y":-279},{"x":41,"y":143}],"type":"coastline"},{"arc":[{"x":38578,"y":28902},{"x":-36,"y":62},{"x":17,"y":-190},{"x":19,"y":128}],"type":"coastline"},{"arc":[{"x":20001,"y":25581},{"x":-7,"y":-2},{"x":-13,"y":2},{"x":-37,"y":10},{"x":-62,"y":34},{"x":-110,"y":7},{"x":-59,"y":-7},{"x":-8,"y":-9},{"x":7,"y":-10},{"x":-10,"y":-5},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":19629,"y":25404},{"x":15,"y":-15},{"x":17,"y":1},{"x":13,"y":-5},{"x":7,"y":2},{"x":7,"y":-1},{"x":4,"y":-1},{"x":5,"y":0},{"x":6,"y":1},{"x":2,"y":2},{"x":4,"y":5},{"x":2,"y":3},{"x":3,"y":1},{"x":5,"y":2},{"x":3,"y":1},{"x":4,"y":0},{"x":2,"y":1},{"x":4,"y":10},{"x":14,"y":8},{"x":126,"y":13},{"x":56,"y":40}],"type":"coastline"},{"arc":[{"x":19928,"y":25472},{"x":-19,"y":44},{"x":92,"y":65}],"type":"area"},{"arc":[{"x":26377,"y":20822},{"x":-289,"y":0},{"x":-1,"y":-405},{"x":-570,"y":0},{"x":-43,"y":-73},{"x":-101,"y":-65},{"x":-335,"y":17},{"x":0,"y":-480},{"x":-96,"y":-14},{"x":-31,"y":2},{"x":22,"y":-5},{"x":125,"y":11},{"x":18,"y":275},{"x":182,"y":64},{"x":311,"y":40},{"x":65,"y":71},{"x":191,"y":107},{"x":261,"y":45},{"x":25,"y":41},{"x":119,"y":47},{"x":57,"y":-7},{"x":30,"y":77},{"x":-38,"y":114},{"x":54,"y":50},{"x":7,"y":75},{"x":122,"y":13}],"type":"coastline"},{"arc":[{"x":24008,"y":26970},{"x":9,"y":25},{"x":-47,"y":9},{"x":33,"y":-38},{"x":38,"y":-13},{"x":-33,"y":17}],"type":"coastline"},{"arc":[{"x":26659,"y":27764},{"x":-208,"y":49},{"x":-16,"y":49},{"x":-23,"y":-14},{"x":-66,"y":31},{"x":11,"y":24},{"x":-120,"y":71},{"x":14,"y":-21},{"x":-90,"y":28},{"x":-73,"y":-28},{"x":-284,"y":94},{"x":-38,"y":27},{"x":12,"y":56},{"x":-71,"y":-20},{"x":-11,"y":35}],"type":"coastline"},{"arc":[{"x":24513,"y":28195},{"x":-94,"y":-358},{"x":-97,"y":-106},{"x":-270,"y":-121},{"x":74,"y":-55},{"x":34,"y":-188},{"x":-28,"y":-152},{"x":49,"y":-61},{"x":-44,"y":-30},{"x":-149,"y":2},{"x":-66,"y":-48}],"type":"area"},{"arc":[{"x":23922,"y":27078},{"x":244,"y":-59},{"x":173,"y":-98},{"x":349,"y":-91},{"x":129,"y":-120},{"x":171,"y":-71},{"x":202,"y":-30},{"x":89,"y":26},{"x":262,"y":-66},{"x":144,"y":-79},{"x":36,"y":-63},{"x":109,"y":-34},{"x":72,"y":11},{"x":648,"y":-246},{"x":9,"y":-78},{"x":283,"y":45},{"x":-37,"y":130},{"x":3,"y":6},{"x":147,"y":81},{"x":31,"y":90},{"x":114,"y":62},{"x":223,"y":-124},{"x":113,"y":243},{"x":3,"y":4},{"x":25,"y":18}],"type":"coastline"},{"arc":[{"x":25187,"y":26360},{"x":-77,"y":1},{"x":-134,"y":52},{"x":34,"y":-26},{"x":-527,"y":40},{"x":-193,"y":142}],"type":"coastline"},{"arc":[{"x":23448,"y":26317},{"x":-66,"y":-11},{"x":-33,"y":3},{"x":-50,"y":-8},{"x":-6,"y":-2},{"x":-47,"y":-18},{"x":-74,"y":-11},{"x":-75,"y":-3},{"x":-9,"y":-52},{"x":-189,"y":-75},{"x":-245,"y":-28},{"x":34,"y":-32},{"x":-71,"y":-36},{"x":-77,"y":6},{"x":-122,"y":-28},{"x":-34,"y":-4},{"x":-17,"y":1}],"type":"coastline"},{"arc":[{"x":22367,"y":26019},{"x":0,"y":-21},{"x":10,"y":-2},{"x":152,"y":4},{"x":127,"y":-95},{"x":331,"y":9},{"x":1,"y":-58},{"x":-48,"y":2},{"x":-1,"y":-81},{"x":-66,"y":32},{"x":-140,"y":10},{"x":-296,"y":-154},{"x":-9,"y":-48},{"x":122,"y":-92},{"x":-212,"y":-142},{"x":1,"y":-97},{"x":60,"y":-18},{"x":-26,"y":-154},{"x":211,"y":-97},{"x":-30,"y":-92},{"x":-315,"y":-63},{"x":-9,"y":-21},{"x":-35,"y":-26}],"type":"area"},{"arc":[{"x":22195,"y":24815},{"x":7,"y":-44},{"x":-4,"y":-10},{"x":7,"y":-16},{"x":-7,"y":-8},{"x":2,"y":-3},{"x":5,"y":-1},{"x":54,"y":9},{"x":10,"y":-16},{"x":58,"y":24},{"x":132,"y":1},{"x":130,"y":-43},{"x":101,"y":-52},{"x":67,"y":11},{"x":14,"y":0},{"x":86,"y":-50},{"x":220,"y":-11},{"x":41,"y":-78},{"x":122,"y":56},{"x":100,"y":-23},{"x":81,"y":57},{"x":90,"y":-22},{"x":33,"y":38},{"x":115,"y":34},{"x":77,"y":-6},{"x":36,"y":22},{"x":4,"y":109},{"x":962,"y":-1},{"x":1,"y":122},{"x":448,"y":0}],"type":"coastline"},{"arc":[{"x":22367,"y":26019},{"x":-186,"y":5},{"x":-11,"y":-2},{"x":-5,"y":-1},{"x":-25,"y":-15},{"x":-3,"y":-2},{"x":-15,"y":-26},{"x":20,"y":-61},{"x":-136,"y":-27},{"x":-43,"y":85},{"x":-219,"y":120},{"x":-295,"y":71},{"x":-12,"y":63},{"x":-16,"y":-3},{"x":-23,"y":4},{"x":-19,"y":-7},{"x":-47,"y":0},{"x":-11,"y":1},{"x":-9,"y":3},{"x":-32,"y":16}],"type":"coastline"},{"arc":[{"x":21190,"y":26007},{"x":-106,"y":-59},{"x":30,"y":-60},{"x":-34,"y":-76},{"x":-25,"y":-22},{"x":-23,"y":-2},{"x":-1,"y":-1},{"x":-1,"y":-1},{"x":5,"y":-10},{"x":12,"y":-5},{"x":3,"y":-13},{"x":24,"y":-3},{"x":18,"y":-9},{"x":4,"y":-3},{"x":3,"y":-3},{"x":0,"y":0},{"x":-23,"y":-11},{"x":-13,"y":-20},{"x":26,"y":-28},{"x":3,"y":-5},{"x":2,"y":-10},{"x":-26,"y":-27},{"x":-42,"y":-13}],"type":"coastline"},{"arc":[{"x":21381,"y":25213},{"x":157,"y":-39},{"x":68,"y":-85},{"x":131,"y":-5},{"x":156,"y":-126},{"x":16,"y":-4},{"x":19,"y":-15},{"x":15,"y":-3},{"x":2,"y":0},{"x":5,"y":3},{"x":5,"y":8},{"x":8,"y":3},{"x":23,"y":-1},{"x":17,"y":-4},{"x":3,"y":-1},{"x":3,"y":-2},{"x":2,"y":-3},{"x":4,"y":-2},{"x":-1,"y":-10},{"x":2,"y":-4},{"x":6,"y":-3},{"x":17,"y":-10},{"x":20,"y":-4},{"x":18,"y":-10},{"x":5,"y":-11},{"x":4,"y":-4},{"x":3,"y":-12},{"x":-3,"y":-12},{"x":15,"y":-10},{"x":-6,"y":-12},{"x":16,"y":-22},{"x":59,"y":12},{"x":23,"y":-2},{"x":2,"y":-2},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":23091,"y":20209},{"x":1,"y":-178},{"x":-54,"y":-59},{"x":-24,"y":-128},{"x":37,"y":-8},{"x":31,"y":26},{"x":-15,"y":6},{"x":-4,"y":20},{"x":19,"y":41},{"x":-22,"y":47},{"x":68,"y":31},{"x":-63,"y":-31},{"x":38,"y":-46},{"x":-20,"y":-7},{"x":-17,"y":-35},{"x":16,"y":-15},{"x":17,"y":-1},{"x":-9,"y":-16},{"x":29,"y":4},{"x":-51,"y":-19},{"x":111,"y":0}],"type":"coastline"},{"arc":[{"x":23296,"y":19865},{"x":94,"y":9},{"x":-53,"y":-26},{"x":41,"y":-6},{"x":49,"y":47},{"x":-23,"y":-45},{"x":-51,"y":-5},{"x":124,"y":-22},{"x":83,"y":-71},{"x":107,"y":80},{"x":121,"y":41},{"x":169,"y":33},{"x":-10,"y":73},{"x":47,"y":84},{"x":-11,"y":8},{"x":-2,"y":51},{"x":7,"y":10},{"x":-6,"y":8},{"x":-67,"y":45},{"x":-49,"y":17},{"x":8,"y":43},{"x":-120,"y":30},{"x":-25,"y":33},{"x":-58,"y":9},{"x":-108,"y":76}],"type":"coastline"},{"arc":[{"x":8098,"y":17297},{"x":-28,"y":128},{"x":-146,"y":103},{"x":-27,"y":-40},{"x":84,"y":-47},{"x":55,"y":-109},{"x":27,"y":20},{"x":22,"y":-97},{"x":13,"y":42}],"type":"coastline"},{"arc":[{"x":17945,"y":41487},{"x":-56,"y":94},{"x":-86,"y":34},{"x":23,"y":-73},{"x":119,"y":-55}],"type":"coastline"},{"arc":[{"x":18119,"y":41317},{"x":5,"y":52},{"x":-102,"y":55},{"x":16,"y":-120},{"x":97,"y":-29},{"x":26,"y":14},{"x":-42,"y":28}],"type":"coastline"},{"arc":[{"x":18319,"y":41083},{"x":-50,"y":-2},{"x":30,"y":-15},{"x":20,"y":17}],"type":"coastline"},{"arc":[{"x":18313,"y":41006},{"x":-36,"y":2},{"x":37,"y":-24},{"x":35,"y":20},{"x":-36,"y":2}],"type":"coastline"},{"arc":[{"x":18361,"y":41421},{"x":-284,"y":72},{"x":135,"y":-72},{"x":153,"y":-26},{"x":-4,"y":26}],"type":"coastline"},{"arc":[{"x":18399,"y":41037},{"x":-89,"y":30},{"x":73,"y":-41},{"x":-13,"y":-39},{"x":77,"y":28},{"x":-48,"y":22}],"type":"coastline"},{"arc":[{"x":18417,"y":40982},{"x":5,"y":-22},{"x":48,"y":0},{"x":-53,"y":22}],"type":"coastline"},{"arc":[{"x":18538,"y":40912},{"x":-37,"y":25},{"x":-47,"y":-14},{"x":61,"y":-25},{"x":23,"y":14}],"type":"coastline"},{"arc":[{"x":18535,"y":41154},{"x":-90,"y":98},{"x":-127,"y":60},{"x":129,"y":-128},{"x":97,"y":-49},{"x":-9,"y":19}],"type":"coastline"},{"arc":[{"x":18745,"y":40909},{"x":-162,"y":115},{"x":20,"y":-63},{"x":123,"y":-67},{"x":19,"y":15}],"type":"coastline"},{"arc":[{"x":21953,"y":20347},{"x":-50,"y":7},{"x":40,"y":-51},{"x":10,"y":44}],"type":"coastline"},{"arc":[{"x":22464,"y":20520},{"x":-130,"y":60},{"x":-50,"y":-9},{"x":-93,"y":33},{"x":-87,"y":-31},{"x":47,"y":44},{"x":-2,"y":11},{"x":-12,"y":0},{"x":-56,"y":-5},{"x":-34,"y":-35},{"x":-59,"y":-1},{"x":-191,"y":-104},{"x":106,"y":-126},{"x":47,"y":40},{"x":-9,"y":-34},{"x":48,"y":1},{"x":25,"y":-59},{"x":49,"y":8},{"x":34,"y":-12},{"x":-19,"y":-23},{"x":74,"y":-15},{"x":-27,"y":30},{"x":69,"y":20},{"x":-3,"y":-35},{"x":-35,"y":0},{"x":70,"y":-10},{"x":7,"y":31},{"x":41,"y":-38},{"x":69,"y":65},{"x":120,"y":36},{"x":1,"y":158}],"type":"coastline"},{"arc":[{"x":23256,"y":11204},{"x":-56,"y":-13},{"x":25,"y":-97},{"x":-23,"y":32},{"x":126,"y":-199},{"x":113,"y":70},{"x":39,"y":-8},{"x":3,"y":27}],"type":"coastline"},{"arc":[{"x":22824,"y":27133},{"x":-172,"y":83},{"x":-76,"y":81},{"x":111,"y":143},{"x":-42,"y":83},{"x":111,"y":116},{"x":15,"y":187},{"x":-405,"y":0},{"x":-327,"y":-117}],"type":"coastline"},{"arc":[{"x":21135,"y":26968},{"x":48,"y":27},{"x":25,"y":88},{"x":122,"y":85},{"x":15,"y":172},{"x":694,"y":369},{"x":327,"y":117},{"x":405,"y":0},{"x":76,"y":161},{"x":82,"y":46},{"x":-27,"y":79},{"x":-315,"y":-35},{"x":29,"y":21},{"x":-37,"y":26},{"x":-16,"y":-57},{"x":-204,"y":-11},{"x":-334,"y":-123},{"x":-403,"y":-96},{"x":-379,"y":-132},{"x":-450,"y":-231},{"x":-345,"y":-275},{"x":-409,"y":-222},{"x":-180,"y":-51}],"type":"coastline"},{"arc":[{"x":30811,"y":15038},{"x":-50,"y":-10},{"x":81,"y":-1},{"x":-31,"y":11}],"type":"coastline"},{"arc":[{"x":30570,"y":24175},{"x":12,"y":44},{"x":41,"y":35},{"x":-6,"y":77},{"x":-19,"y":14},{"x":-17,"y":6},{"x":-20,"y":27},{"x":-33,"y":14},{"x":-1,"y":5},{"x":6,"y":3},{"x":0,"y":1},{"x":-1,"y":2},{"x":-2,"y":1},{"x":-18,"y":-1},{"x":-15,"y":-3},{"x":-17,"y":6},{"x":-11,"y":-4},{"x":-75,"y":88},{"x":-80,"y":-12},{"x":-65,"y":89},{"x":52,"y":36},{"x":-19,"y":20},{"x":-3,"y":4},{"x":-1,"y":10},{"x":-2,"y":1},{"x":-9,"y":6},{"x":-7,"y":-2},{"x":-14,"y":-32},{"x":-6,"y":-1},{"x":-6,"y":4},{"x":-7,"y":0},{"x":-12,"y":5},{"x":-10,"y":16},{"x":-18,"y":1},{"x":-94,"y":-41},{"x":-143,"y":77},{"x":-81,"y":-68},{"x":-109,"y":0},{"x":-3,"y":-10},{"x":1,"y":-4},{"x":5,"y":-4},{"x":7,"y":-1},{"x":-15,"y":-21},{"x":7,"y":-20},{"x":-23,"y":-31},{"x":2,"y":-12},{"x":1,"y":-2},{"x":6,"y":-1},{"x":10,"y":-5},{"x":5,"y":1},{"x":74,"y":30},{"x":17,"y":-47},{"x":115,"y":-68},{"x":-97,"y":-58},{"x":159,"y":-139}],"type":"coastline"},{"arc":[{"x":20258,"y":22682},{"x":41,"y":-18},{"x":33,"y":26},{"x":-74,"y":-8}],"type":"coastline"},{"arc":[{"x":20857,"y":14937},{"x":147,"y":-25},{"x":-1,"y":-42},{"x":171,"y":-50},{"x":174,"y":26},{"x":55,"y":81},{"x":33,"y":-18},{"x":143,"y":33},{"x":-62,"y":142},{"x":68,"y":6},{"x":-33,"y":222},{"x":-209,"y":-57},{"x":-67,"y":8},{"x":-27,"y":-4},{"x":-62,"y":5},{"x":-4,"y":1},{"x":-3,"y":1},{"x":-2,"y":2},{"x":-2,"y":4},{"x":-2,"y":1},{"x":-4,"y":1},{"x":-20,"y":-3},{"x":-57,"y":28},{"x":-35,"y":9},{"x":2,"y":4},{"x":-7,"y":4},{"x":-18,"y":-3},{"x":-17,"y":1},{"x":-9,"y":-2},{"x":-65,"y":-23},{"x":-62,"y":5},{"x":-83,"y":-25},{"x":-32,"y":-19},{"x":2,"y":-7},{"x":-7,"y":-11},{"x":0,"y":-2},{"x":1,"y":-1},{"x":2,"y":-1},{"x":10,"y":-1},{"x":6,"y":3},{"x":10,"y":-1},{"x":4,"y":-5},{"x":-7,"y":-12},{"x":3,"y":-5},{"x":36,"y":-9},{"x":-47,"y":-93},{"x":9,"y":-6},{"x":7,"y":-12},{"x":13,"y":-9},{"x":1,"y":-3},{"x":-1,"y":-2},{"x":-1,"y":-1},{"x":-4,"y":0},{"x":-10,"y":-2},{"x":-14,"y":0},{"x":-32,"y":-17},{"x":-46,"y":28},{"x":-37,"y":0},{"x":-12,"y":-12},{"x":44,"y":-84},{"x":160,"y":-48}],"type":"coastline"},{"arc":[{"x":31277,"y":24617},{"x":-150,"y":-49}],"type":"coastline"},{"arc":[{"x":30699,"y":23885},{"x":10,"y":-21},{"x":-39,"y":-8},{"x":1,"y":-27},{"x":-38,"y":-51},{"x":-10,"y":-4},{"x":-12,"y":-2},{"x":-17,"y":13},{"x":-44,"y":-2},{"x":-26,"y":-51},{"x":-61,"y":8},{"x":3,"y":-64},{"x":45,"y":-26},{"x":-43,"y":-26},{"x":-12,"y":-58},{"x":15,"y":-37},{"x":11,"y":-2},{"x":3,"y":22},{"x":9,"y":-5},{"x":9,"y":22},{"x":40,"y":-38},{"x":5,"y":-2},{"x":7,"y":1},{"x":23,"y":6},{"x":5,"y":-2},{"x":4,"y":-17},{"x":39,"y":21},{"x":25,"y":-33},{"x":52,"y":41}],"type":"coastline"},{"arc":[{"x":33249,"y":24161},{"x":-4,"y":36},{"x":-44,"y":-39},{"x":-53,"y":20},{"x":-108,"y":-92},{"x":143,"y":-5},{"x":66,"y":80}],"type":"coastline"},{"arc":[{"x":35044,"y":24814},{"x":-27,"y":-129},{"x":46,"y":-54},{"x":-33,"y":-54},{"x":-49,"y":24},{"x":42,"y":-78},{"x":-41,"y":53},{"x":-35,"y":-87},{"x":-34,"y":17},{"x":25,"y":-42},{"x":-64,"y":37},{"x":-53,"y":-67},{"x":-85,"y":70},{"x":-149,"y":-114},{"x":-81,"y":-120},{"x":29,"y":-29},{"x":-176,"y":-152},{"x":49,"y":-61},{"x":-90,"y":45},{"x":-24,"y":-89},{"x":-58,"y":39},{"x":-134,"y":-19},{"x":20,"y":-44},{"x":-32,"y":-9},{"x":-200,"y":15},{"x":-23,"y":96},{"x":-156,"y":133},{"x":-29,"y":-41},{"x":-4,"y":42},{"x":-77,"y":-130},{"x":-17,"y":78},{"x":-2,"y":-43},{"x":-40,"y":16},{"x":-64,"y":-65},{"x":70,"y":-28},{"x":-94,"y":-37},{"x":-27,"y":-143},{"x":-32,"y":92},{"x":-3,"y":-64},{"x":-64,"y":50},{"x":-71,"y":-8},{"x":6,"y":-36},{"x":-38,"y":30},{"x":36,"y":-35},{"x":-44,"y":39},{"x":-207,"y":-33},{"x":-156,"y":-75},{"x":19,"y":-137},{"x":-49,"y":-46},{"x":-126,"y":-20},{"x":-2,"y":-164},{"x":70,"y":27},{"x":137,"y":-73},{"x":-15,"y":44},{"x":41,"y":-23},{"x":29,"y":38},{"x":259,"y":-150},{"x":142,"y":22},{"x":4,"y":-81},{"x":148,"y":-13},{"x":-3,"y":40}],"type":"coastline"},{"arc":[{"x":14396,"y":25750},{"x":-5,"y":25},{"x":-129,"y":6},{"x":-58,"y":0},{"x":8,"y":-15},{"x":-115,"y":-3},{"x":2,"y":-54},{"x":23,"y":-45},{"x":5,"y":-3},{"x":15,"y":-6},{"x":19,"y":-13},{"x":7,"y":-2},{"x":52,"y":-9},{"x":-9,"y":-10},{"x":76,"y":-2},{"x":17,"y":3},{"x":110,"y":38},{"x":34,"y":23},{"x":3,"y":3},{"x":2,"y":5},{"x":0,"y":3},{"x":-2,"y":3},{"x":-55,"y":53}],"type":"coastline"},{"arc":[{"x":24296,"y":14218},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":27746,"y":26590},{"x":-238,"y":-239},{"x":15,"y":-51},{"x":33,"y":-25},{"x":-2,"y":-14},{"x":39,"y":-15},{"x":5,"y":-6},{"x":4,"y":-13},{"x":3,"y":-1},{"x":1,"y":-1},{"x":-1,"y":-1},{"x":0,"y":0}],"type":"coastline"},{"arc":[{"x":27754,"y":26231},{"x":36,"y":26},{"x":16,"y":-14},{"x":16,"y":4},{"x":11,"y":5},{"x":13,"y":7},{"x":8,"y":11},{"x":-5,"y":3},{"x":5,"y":8},{"x":-5,"y":9},{"x":-2,"y":4},{"x":0,"y":2},{"x":3,"y":2},{"x":5,"y":0},{"x":11,"y":-12},{"x":9,"y":2},{"x":57,"y":38},{"x":71,"y":-34},{"x":26,"y":15},{"x":15,"y":-60},{"x":198,"y":-28},{"x":76,"y":23}],"type":"coastline"},{"arc":[{"x":28318,"y":26242},{"x":-21,"y":30},{"x":91,"y":26},{"x":0,"y":36},{"x":135,"y":-3},{"x":-47,"y":50},{"x":65,"y":142},{"x":-55,"y":124},{"x":149,"y":361},{"x":-48,"y":18}],"type":"area"},{"arc":[{"x":24625,"y":24792},{"x":-849,"y":1},{"x":-4,"y":-109},{"x":-36,"y":-22},{"x":-77,"y":6},{"x":-115,"y":-34},{"x":-33,"y":-38},{"x":-90,"y":22},{"x":-81,"y":-57},{"x":-100,"y":23},{"x":-122,"y":-56},{"x":-41,"y":78},{"x":-220,"y":11},{"x":-86,"y":50},{"x":-75,"y":-11}],"type":"coastline"},{"arc":[{"x":23182,"y":23587},{"x":141,"y":-56}],"type":"coastline"},{"arc":[{"x":21638,"y":22074},{"x":-25,"y":-52}],"type":"coastline"},{"arc":[{"x":22082,"y":33824},{"x":-24,"y":18},{"x":-70,"y":-16},{"x":94,"y":-2}],"type":"coastline"},{"arc":[{"x":24810,"y":34044},{"x":16,"y":30},{"x":-50,"y":24},{"x":-144,"y":-9},{"x":5,"y":95},{"x":-119,"y":9},{"x":-133,"y":-36},{"x":-84,"y":16},{"x":-38,"y":-20},{"x":-65,"y":-14},{"x":-5,"y":0},{"x":-3,"y":2},{"x":-22,"y":28},{"x":169,"y":115},{"x":-91,"y":74},{"x":41,"y":43},{"x":67,"y":31},{"x":10,"y":-7},{"x":5,"y":0},{"x":5,"y":1},{"x":5,"y":2},{"x":6,"y":6},{"x":3,"y":11},{"x":-35,"y":56},{"x":-1,"y":2},{"x":1,"y":0},{"x":0,"y":1},{"x":7,"y":3},{"x":4,"y":5},{"x":-1,"y":3},{"x":-3,"y":3},{"x":-4,"y":2},{"x":-19,"y":6},{"x":-27,"y":7},{"x":-19,"y":10},{"x":-31,"y":8},{"x":-12,"y":10},{"x":-27,"y":8},{"x":-7,"y":4},{"x":-6,"y":3},{"x":-26,"y":27},{"x":-22,"y":11},{"x":-12,"y":3},{"x":-3,"y":0},{"x":-3,"y":0},{"x":-11,"y":0},{"x":-13,"y":0},{"x":-54,"y":-9},{"x":-66,"y":5},{"x":-40,"y":-3},{"x":-7,"y":3},{"x":-10,"y":9},{"x":-23,"y":6},{"x":-17,"y":13},{"x":-35,"y":5},{"x":-25,"y":45},{"x":-47,"y":-2},{"x":-18,"y":25},{"x":-19,"y":4},{"x":-44,"y":-5},{"x":-20,"y":-16},{"x":-18,"y":11},{"x":-31,"y":-15},{"x":-32,"y":18},{"x":-96,"y":-10},{"x":-49,"y":-39}],"type":"coastline"},{"arc":[{"x":22860,"y":34386},{"x":129,"y":-38},{"x":-39,"y":-2},{"x":32,"y":-35},{"x":40,"y":7},{"x":46,"y":-35},{"x":18,"y":-147},{"x":190,"y":17},{"x":4,"y":-88},{"x":-46,"y":-38},{"x":-57,"y":17},{"x":-194,"y":-10},{"x":-413,"y":-105},{"x":-243,"y":10},{"x":4,"y":75},{"x":-472,"y":87},{"x":135,"y":-37},{"x":-22,"y":-15},{"x":-76,"y":17},{"x":-113,"y":87},{"x":-4,"y":68},{"x":-131,"y":63}],"type":"coastline"},{"arc":[{"x":21689,"y":34047},{"x":98,"y":-54},{"x":113,"y":-10},{"x":-13,"y":-27},{"x":238,"y":-88},{"x":-52,"y":-28},{"x":18,"y":-17},{"x":221,"y":5},{"x":256,"y":51}],"type":"coastline"},{"arc":[{"x":29290,"y":30502},{"x":-76,"y":-59},{"x":30,"y":6},{"x":39,"y":-63},{"x":-18,"y":-59},{"x":-67,"y":-34},{"x":-70,"y":7},{"x":19,"y":143},{"x":-49,"y":36},{"x":51,"y":84},{"x":-76,"y":35},{"x":22,"y":37},{"x":-41,"y":21},{"x":42,"y":36},{"x":-4,"y":78},{"x":20,"y":57}],"type":"coastline"},{"arc":[{"x":28614,"y":30980},{"x":36,"y":-28},{"x":8,"y":-42},{"x":-47,"y":-74},{"x":47,"y":6},{"x":8,"y":-56},{"x":-175,"y":-200},{"x":86,"y":-27},{"x":187,"y":21},{"x":6,"y":-42},{"x":73,"y":12},{"x":50,"y":-46},{"x":-15,"y":-38},{"x":-103,"y":-60},{"x":-91,"y":-1},{"x":8,"y":-79},{"x":-103,"y":-23},{"x":-4,"y":-9},{"x":49,"y":-32},{"x":4,"y":-12},{"x":-93,"y":-105},{"x":59,"y":-29}],"type":"coastline"},{"arc":[{"x":28604,"y":30116},{"x":77,"y":6},{"x":145,"y":64},{"x":81,"y":-37},{"x":100,"y":6},{"x":54,"y":-92},{"x":72,"y":17},{"x":2,"y":125},{"x":97,"y":30},{"x":-23,"y":14},{"x":45,"y":-13},{"x":0,"y":26},{"x":19,"y":-49},{"x":7,"y":86},{"x":132,"y":8},{"x":-32,"y":44},{"x":90,"y":83},{"x":-68,"y":45},{"x":-83,"y":-48},{"x":-29,"y":71}],"type":"area"},{"arc":[{"x":28644,"y":29962},{"x":48,"y":-92},{"x":-72,"y":-27},{"x":-6,"y":-58},{"x":-4,"y":-9},{"x":-18,"y":-22},{"x":-4,"y":-3},{"x":-5,"y":-2},{"x":-35,"y":2},{"x":-8,"y":-2},{"x":-47,"y":-17},{"x":-8,"y":-2},{"x":-8,"y":-2},{"x":-10,"y":0},{"x":-17,"y":2},{"x":-18,"y":-2},{"x":-34,"y":-14},{"x":-61,"y":-52},{"x":-32,"y":-115},{"x":-95,"y":-3},{"x":-11,"y":-19},{"x":-29,"y":-26},{"x":-8,"y":-10},{"x":-18,"y":-41},{"x":67,"y":-34},{"x":40,"y":-90}],"type":"coastline"},{"arc":[{"x":28639,"y":28430},{"x":354,"y":9},{"x":98,"y":-51},{"x":-2,"y":-51},{"x":-37,"y":2},{"x":50,"y":-9},{"x":59,"y":23},{"x":-31,"y":-7},{"x":0,"y":62},{"x":28,"y":-38},{"x":71,"y":19},{"x":12,"y":-80},{"x":-57,"y":11},{"x":161,"y":-33},{"x":136,"y":22},{"x":-71,"y":25},{"x":26,"y":61},{"x":-59,"y":12},{"x":11,"y":83},{"x":49,"y":-19},{"x":-12,"y":48},{"x":45,"y":15},{"x":101,"y":-84},{"x":143,"y":-31},{"x":-31,"y":-105},{"x":-210,"y":-9},{"x":157,"y":-54}],"type":"coastline"},{"arc":[{"x":29534,"y":28681},{"x":-14,"y":128},{"x":143,"y":-6},{"x":66,"y":106},{"x":70,"y":20},{"x":-46,"y":58},{"x":74,"y":-45},{"x":37,"y":56},{"x":-100,"y":82},{"x":-33,"y":93},{"x":-52,"y":-14},{"x":-42,"y":42},{"x":-6,"y":-25},{"x":-82,"y":5},{"x":-59,"y":217},{"x":-251,"y":70},{"x":-184,"y":153},{"x":-215,"y":230},{"x":-55,"y":124},{"x":-141,"y":-13}],"type":"area"},{"arc":[{"x":18140,"y":36952},{"x":36,"y":51}],"type":"coastline"},{"arc":[{"x":18225,"y":37060},{"x":88,"y":57},{"x":59,"y":192},{"x":-24,"y":42},{"x":-241,"y":-273}],"type":"coastline"},{"arc":[{"x":15491,"y":569},{"x":-8,"y":32},{"x":-25,"y":-11},{"x":33,"y":-21}],"type":"coastline"},{"arc":[{"x":22678,"y":14475},{"x":-157,"y":-11},{"x":-19,"y":-113},{"x":51,"y":56},{"x":79,"y":-3},{"x":17,"y":-22},{"x":29,"y":93}],"type":"coastline"},{"arc":[{"x":27864,"y":23206},{"x":-58,"y":-5},{"x":55,"y":-19},{"x":3,"y":24}],"type":"coastline"},{"arc":[{"x":28633,"y":23076},{"x":-37,"y":-5},{"x":6,"y":55},{"x":-101,"y":10},{"x":80,"y":80},{"x":-48,"y":15},{"x":-171,"y":-80},{"x":-107,"y":68},{"x":-94,"y":15},{"x":-236,"y":-140},{"x":-105,"y":39},{"x":1,"y":47},{"x":-51,"y":3},{"x":31,"y":37},{"x":-91,"y":16},{"x":-7,"y":40},{"x":-161,"y":7},{"x":-7,"y":-2},{"x":-6,"y":-4},{"x":-9,"y":-9},{"x":-52,"y":-69},{"x":-88,"y":-45},{"x":-15,"y":-29},{"x":-56,"y":-19},{"x":-132,"y":18},{"x":-138,"y":-89},{"x":414,"y":-58},{"x":103,"y":-87},{"x":127,"y":-30},{"x":31,"y":-44},{"x":42,"y":-2},{"x":54,"y":-18},{"x":53,"y":-9},{"x":45,"y":4},{"x":72,"y":38},{"x":26,"y":32},{"x":24,"y":17},{"x":3,"y":1},{"x":7,"y":-4},{"x":16,"y":7},{"x":34,"y":-2},{"x":37,"y":6},{"x":39,"y":16},{"x":132,"y":-23},{"x":136,"y":14},{"x":21,"y":-23},{"x":158,"y":125},{"x":20,"y":81}],"type":"coastline"},{"arc":[{"x":29622,"y":25078},{"x":57,"y":33},{"x":26,"y":54},{"x":-6,"y":15},{"x":9,"y":5},{"x":-1,"y":7},{"x":-43,"y":34},{"x":15,"y":17},{"x":-5,"y":15},{"x":11,"y":0},{"x":-3,"y":19},{"x":-2,"y":6},{"x":-17,"y":3},{"x":-17,"y":-9},{"x":-68,"y":32},{"x":-64,"y":106},{"x":-61,"y":-34},{"x":6,"y":-158},{"x":-211,"y":-164},{"x":63,"y":5},{"x":61,"y":74},{"x":31,"y":-95}],"type":"coastline"},{"arc":[{"x":28318,"y":26242},{"x":91,"y":-15},{"x":76,"y":52},{"x":60,"y":-24},{"x":-86,"y":-81},{"x":61,"y":-80},{"x":-135,"y":-89},{"x":-42,"y":-140},{"x":117,"y":-96},{"x":77,"y":-162},{"x":-149,"y":-31},{"x":-23,"y":-92},{"x":60,"y":-70},{"x":62,"y":0},{"x":-15,"y":-33},{"x":64,"y":-45},{"x":-72,"y":-51},{"x":53,"y":10},{"x":-30,"y":-87},{"x":83,"y":113},{"x":-16,"y":-130},{"x":70,"y":43},{"x":18,"y":-52},{"x":70,"y":-21},{"x":17,"y":28},{"x":55,"y":-1},{"x":64,"y":-122},{"x":36,"y":34},{"x":55,"y":-13},{"x":-83,"y":32},{"x":33,"y":60},{"x":44,"y":-54},{"x":53,"y":42},{"x":87,"y":-55},{"x":68,"y":40},{"x":-23,"y":-105},{"x":113,"y":11},{"x":96,"y":69},{"x":-20,"y":125},{"x":50,"y":-1},{"x":-38,"y":23},{"x":0,"y":134},{"x":42,"y":-31},{"x":41,"y":139},{"x":17,"y":-83},{"x":49,"y":-30},{"x":46,"y":20},{"x":-32,"y":250},{"x":141,"y":126},{"x":68,"y":129},{"x":-17,"y":166},{"x":33,"y":40},{"x":-85,"y":34},{"x":-3,"y":90},{"x":-100,"y":43},{"x":25,"y":44},{"x":-101,"y":191},{"x":44,"y":134},{"x":-43,"y":87},{"x":133,"y":167}],"type":"coastline"},{"arc":[{"x":25913,"y":36661},{"x":-50,"y":45},{"x":-696,"y":-141},{"x":256,"y":-96},{"x":134,"y":11},{"x":313,"y":108},{"x":43,"y":73}],"type":"coastline"},{"arc":[{"x":18911,"y":26661},{"x":-124,"y":18},{"x":69,"y":-40},{"x":99,"y":17},{"x":-44,"y":5}],"type":"coastline"},{"arc":[{"x":19133,"y":26704},{"x":-14,"y":20},{"x":-105,"y":-18},{"x":119,"y":-2}],"type":"coastline"},{"arc":[{"x":19189,"y":26641},{"x":-310,"y":-50},{"x":-86,"y":16},{"x":-127,"y":78},{"x":-185,"y":-37},{"x":-2,"y":24},{"x":-107,"y":-20},{"x":-341,"y":63},{"x":-49,"y":-13},{"x":-58,"y":89},{"x":-39,"y":1}],"type":"coastline"},{"arc":[{"x":18125,"y":25879},{"x":78,"y":-120},{"x":106,"y":-71},{"x":-3,"y":-39},{"x":92,"y":-34}],"type":"coastline"},{"arc":[{"x":19240,"y":25451},{"x":-3,"y":40},{"x":43,"y":33},{"x":230,"y":99},{"x":61,"y":1},{"x":28,"y":-50},{"x":46,"y":13},{"x":-7,"y":-9},{"x":0,"y":-3},{"x":2,"y":-1},{"x":6,"y":0},{"x":10,"y":5},{"x":31,"y":7},{"x":14,"y":5},{"x":1,"y":10},{"x":10,"y":5},{"x":1,"y":19},{"x":59,"y":7},{"x":110,"y":-7},{"x":62,"y":-34},{"x":37,"y":-10},{"x":13,"y":-2},{"x":8,"y":3},{"x":17,"y":36},{"x":-4,"y":380}],"type":"coastline"},{"arc":[{"x":19928,"y":25472},{"x":498,"y":45},{"x":288,"y":161},{"x":77,"y":-68},{"x":277,"y":29},{"x":24,"y":23},{"x":2,"y":4},{"x":0,"y":5},{"x":-2,"y":5},{"x":-3,"y":5},{"x":-26,"y":28},{"x":36,"y":31},{"x":-3,"y":3},{"x":-4,"y":3},{"x":-18,"y":9},{"x":-24,"y":3},{"x":-3,"y":13},{"x":-12,"y":5},{"x":-4,"y":11},{"x":83,"y":101},{"x":-30,"y":60},{"x":106,"y":59},{"x":-3,"y":4},{"x":-27,"y":7},{"x":-18,"y":-1},{"x":-11,"y":6},{"x":-18,"y":-3},{"x":-1,"y":15},{"x":-22,"y":-7},{"x":-24,"y":35},{"x":-110,"y":0},{"x":-133,"y":53},{"x":-151,"y":16},{"x":-154,"y":-25},{"x":-34,"y":-38},{"x":-219,"y":-72},{"x":-250,"y":1},{"x":4,"y":-380},{"x":-20,"y":-17},{"x":2,"y":-5},{"x":-2,"y":-10},{"x":3,"y":-2},{"x":0,"y":-2},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":30834,"y":26522},{"x":-5,"y":-81},{"x":-100,"y":-94},{"x":32,"y":-9},{"x":-28,"y":-97},{"x":-131,"y":-110},{"x":59,"y":42},{"x":40,"y":-19},{"x":-78,"y":-45},{"x":-179,"y":63},{"x":-4,"y":159},{"x":-64,"y":-25},{"x":11,"y":-113},{"x":-165,"y":-188},{"x":44,"y":-71},{"x":10,"y":24},{"x":111,"y":-4},{"x":66,"y":-129},{"x":117,"y":158},{"x":66,"y":-66},{"x":-33,"y":-89},{"x":49,"y":-87},{"x":25,"y":32},{"x":41,"y":-66},{"x":-28,"y":98},{"x":42,"y":40},{"x":-5,"y":-75},{"x":142,"y":-35},{"x":-137,"y":20},{"x":-5,"y":-50},{"x":39,"y":-6},{"x":-39,"y":-3},{"x":-17,"y":-76},{"x":-157,"y":-71},{"x":-54,"y":-58},{"x":48,"y":-11},{"x":-136,"y":8},{"x":-1,"y":-6},{"x":3,"y":1},{"x":3,"y":-1},{"x":6,"y":2},{"x":17,"y":-3},{"x":11,"y":-10},{"x":8,"y":-16},{"x":3,"y":-14},{"x":-5,"y":-11},{"x":-32,"y":-36},{"x":9,"y":-17},{"x":-17,"y":1},{"x":-4,"y":-11},{"x":5,"y":-16},{"x":17,"y":-30},{"x":31,"y":-16}],"type":"coastline"},{"arc":[{"x":31094,"y":25113},{"x":-11,"y":-39},{"x":-49,"y":-15},{"x":-64,"y":-156},{"x":53,"y":-43},{"x":35,"y":-170},{"x":-34,"y":-32},{"x":103,"y":-90},{"x":150,"y":49},{"x":-6,"y":26},{"x":-12,"y":12},{"x":4,"y":2},{"x":7,"y":-3},{"x":10,"y":1},{"x":2,"y":-1},{"x":17,"y":-17},{"x":-2,"y":-3},{"x":91,"y":-2},{"x":219,"y":176},{"x":60,"y":-19},{"x":11,"y":23},{"x":101,"y":-62},{"x":22,"y":8},{"x":24,"y":-11},{"x":5,"y":2},{"x":15,"y":-4},{"x":4,"y":2},{"x":3,"y":2},{"x":3,"y":15},{"x":-13,"y":28},{"x":30,"y":32},{"x":24,"y":8},{"x":8,"y":5},{"x":3,"y":2},{"x":1,"y":3},{"x":16,"y":91},{"x":0,"y":5},{"x":-6,"y":21},{"x":1,"y":50},{"x":-6,"y":38},{"x":-10,"y":12},{"x":-1,"y":28},{"x":-10,"y":5},{"x":-13,"y":49},{"x":2,"y":36},{"x":-66,"y":69},{"x":33,"y":14},{"x":-12,"y":29},{"x":17,"y":12},{"x":4,"y":5},{"x":0,"y":3},{"x":-3,"y":1},{"x":-8,"y":2},{"x":-6,"y":6},{"x":-11,"y":3},{"x":6,"y":33},{"x":-34,"y":15},{"x":29,"y":9},{"x":8,"y":22},{"x":3,"y":2},{"x":7,"y":3},{"x":3,"y":3},{"x":1,"y":4},{"x":-59,"y":29},{"x":26,"y":101},{"x":-56,"y":47},{"x":186,"y":46},{"x":9,"y":103}],"type":"coastline"},{"arc":[{"x":13466,"y":14975},{"x":-152,"y":95},{"x":-64,"y":0},{"x":53,"y":51},{"x":-89,"y":42},{"x":-182,"y":181},{"x":-150,"y":78},{"x":-57,"y":-26},{"x":-15,"y":-15},{"x":-6,"y":-4},{"x":-7,"y":-3},{"x":0,"y":0},{"x":-16,"y":-3},{"x":-51,"y":2},{"x":-57,"y":-3},{"x":-20,"y":20},{"x":-147,"y":-47},{"x":-130,"y":-143},{"x":46,"y":-92},{"x":-39,"y":-56},{"x":110,"y":-121},{"x":-5,"y":-85},{"x":128,"y":-68},{"x":169,"y":5},{"x":13,"y":28},{"x":41,"y":11},{"x":229,"y":-19},{"x":230,"y":50},{"x":36,"y":-3},{"x":27,"y":-8},{"x":9,"y":-1},{"x":8,"y":2},{"x":42,"y":27},{"x":16,"y":4},{"x":14,"y":-2},{"x":2,"y":1},{"x":1,"y":2},{"x":-5,"y":3},{"x":-16,"y":6},{"x":-4,"y":36},{"x":38,"y":55}],"type":"coastline"},{"arc":[{"x":24770,"y":2965},{"x":-142,"y":96},{"x":-135,"y":-104},{"x":36,"y":-28},{"x":149,"y":-19},{"x":55,"y":27},{"x":62,"y":-5},{"x":-25,"y":33}],"type":"coastline"},{"arc":[{"x":24904,"y":2806},{"x":40,"y":-17},{"x":-16,"y":29},{"x":-24,"y":-12}],"type":"coastline"},{"arc":[{"x":24970,"y":2845},{"x":-77,"y":72},{"x":-22,"y":-50},{"x":66,"y":-33},{"x":33,"y":11}],"type":"coastline"},{"arc":[{"x":25013,"y":2765},{"x":-14,"y":66},{"x":-16,"y":-69},{"x":30,"y":3}],"type":"coastline"},{"arc":[{"x":25098,"y":2687},{"x":-75,"y":24},{"x":7,"y":-49},{"x":63,"y":-22},{"x":5,"y":47}],"type":"coastline"},{"arc":[{"x":25240,"y":2505},{"x":-78,"y":-3},{"x":22,"y":-42},{"x":56,"y":45}],"type":"coastline"},{"arc":[{"x":25899,"y":12110},{"x":-47,"y":-29},{"x":89,"y":43},{"x":-42,"y":-14}],"type":"coastline"},{"arc":[{"x":26460,"y":10066},{"x":-97,"y":-25},{"x":140,"y":41},{"x":-43,"y":-16}],"type":"coastline"},{"arc":[{"x":27893,"y":7287},{"x":-30,"y":-8},{"x":24,"y":-17},{"x":6,"y":25}],"type":"coastline"},{"arc":[{"x":28164,"y":12696},{"x":-10,"y":-24},{"x":23,"y":27},{"x":111,"y":0},{"x":-45,"y":8},{"x":-55,"y":-5},{"x":-24,"y":-6}],"type":"coastline"},{"arc":[{"x":29492,"y":13096},{"x":-51,"y":-45},{"x":37,"y":93},{"x":-110,"y":-210},{"x":8,"y":-55},{"x":73,"y":67},{"x":43,"y":150}],"type":"coastline"},{"arc":[{"x":29545,"y":13367},{"x":-30,"y":2},{"x":16,"y":-33},{"x":14,"y":31}],"type":"coastline"},{"arc":[{"x":29567,"y":13298},{"x":-24,"y":10},{"x":-4,"y":-41},{"x":28,"y":31}],"type":"coastline"},{"arc":[{"x":30205,"y":13588},{"x":-1,"y":-28},{"x":31,"y":19},{"x":-30,"y":9}],"type":"coastline"},{"arc":[{"x":31124,"y":6978},{"x":-22,"y":9},{"x":-14,"y":-26},{"x":-74,"y":41},{"x":73,"y":-44},{"x":37,"y":20}],"type":"coastline"},{"arc":[{"x":31259,"y":6924},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":29875,"y":12280},{"x":20,"y":7}],"type":"coastline"},{"arc":[{"x":29899,"y":12286},{"x":43,"y":-16}],"type":"coastline"},{"arc":[{"x":29942,"y":12270},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":29948,"y":12270},{"x":26,"y":-1}],"type":"coastline"},{"arc":[{"x":30401,"y":13713},{"x":-82,"y":24},{"x":-38,"y":-27},{"x":-10,"y":-72},{"x":-61,"y":-33},{"x":44,"y":-17},{"x":-7,"y":-33},{"x":-58,"y":-8},{"x":18,"y":-34},{"x":55,"y":2},{"x":-137,"y":-47},{"x":25,"y":-21},{"x":-51,"y":-22},{"x":42,"y":1},{"x":-48,"y":-7},{"x":49,"y":-4},{"x":-60,"y":-16},{"x":67,"y":-3},{"x":-73,"y":-1},{"x":17,"y":-39},{"x":-155,"y":-76},{"x":-66,"y":-15},{"x":-43,"y":32},{"x":-70,"y":-55},{"x":-136,"y":87},{"x":22,"y":41},{"x":54,"y":-10},{"x":-86,"y":17},{"x":-34,"y":-87},{"x":51,"y":-7},{"x":-63,"y":-58},{"x":74,"y":10},{"x":-33,"y":-19},{"x":38,"y":-16},{"x":-102,"y":-12},{"x":-14,"y":-172},{"x":-111,"y":-108},{"x":108,"y":-22},{"x":-81,"y":7},{"x":-98,"y":-44},{"x":-10,"y":37},{"x":-152,"y":-14},{"x":64,"y":4},{"x":-158,"y":-43},{"x":-97,"y":-66},{"x":57,"y":6},{"x":98,"y":-79},{"x":90,"y":65},{"x":-82,"y":-69},{"x":-276,"y":66},{"x":-292,"y":-109},{"x":188,"y":38},{"x":-2,"y":-29},{"x":102,"y":3},{"x":-39,"y":-23},{"x":54,"y":-34},{"x":30,"y":42},{"x":15,"y":-45},{"x":46,"y":28},{"x":-8,"y":-32},{"x":167,"y":66},{"x":-73,"y":-96},{"x":-53,"y":27},{"x":10,"y":-21},{"x":-168,"y":18},{"x":80,"y":-31},{"x":-43,"y":0},{"x":-99,"y":43},{"x":98,"y":-86},{"x":-20,"y":-27},{"x":115,"y":22},{"x":-125,"y":-33},{"x":11,"y":37},{"x":-111,"y":96},{"x":-60,"y":-7},{"x":5,"y":-24},{"x":114,"y":-76},{"x":-121,"y":70},{"x":-13,"y":33},{"x":-53,"y":3},{"x":24,"y":-19},{"x":-43,"y":-10},{"x":57,"y":-37},{"x":-107,"y":63},{"x":66,"y":-70},{"x":-1,"y":-51},{"x":-30,"y":74},{"x":-72,"y":18},{"x":16,"y":63},{"x":-256,"y":58},{"x":207,"y":-51},{"x":-143,"y":19},{"x":54,"y":-50},{"x":-36,"y":17},{"x":10,"y":-49},{"x":-24,"y":18},{"x":-19,"y":-32},{"x":69,"y":-18},{"x":-84,"y":0},{"x":8,"y":82},{"x":-75,"y":2},{"x":74,"y":22},{"x":-34,"y":16},{"x":-108,"y":-52},{"x":10,"y":-42},{"x":34,"y":4},{"x":-33,"y":-17},{"x":31,"y":-55},{"x":-59,"y":71},{"x":-63,"y":-36},{"x":37,"y":-38},{"x":-40,"y":17},{"x":-10,"y":49},{"x":32,"y":10},{"x":-43,"y":13},{"x":-39,"y":-35},{"x":12,"y":-60},{"x":-46,"y":-25},{"x":44,"y":-12},{"x":-51,"y":7},{"x":-135,"y":-69},{"x":59,"y":-2},{"x":-66,"y":-7},{"x":-27,"y":-91},{"x":-171,"y":-75},{"x":-37,"y":-68},{"x":-54,"y":-7},{"x":-20,"y":-81},{"x":-45,"y":24},{"x":-13,"y":-20},{"x":62,"y":-27},{"x":-73,"y":22},{"x":-101,"y":-73},{"x":-94,"y":-6},{"x":4,"y":-20},{"x":-24,"y":27},{"x":-93,"y":-32},{"x":-908,"y":182},{"x":-233,"y":-11},{"x":29,"y":-1},{"x":-161,"y":-33},{"x":-14,"y":-85},{"x":50,"y":-3},{"x":-23,"y":26},{"x":129,"y":-53},{"x":23,"y":-46},{"x":127,"y":-34},{"x":52,"y":28},{"x":-42,"y":-32},{"x":105,"y":8},{"x":4,"y":-36},{"x":-47,"y":15},{"x":10,"y":-20},{"x":150,"y":-51},{"x":90,"y":38},{"x":-21,"y":-13},{"x":27,"y":-2},{"x":21,"y":-18},{"x":-34,"y":16},{"x":-43,"y":-11},{"x":31,"y":-20},{"x":-50,"y":10},{"x":49,"y":-13},{"x":238,"y":25},{"x":233,"y":-127},{"x":42,"y":-64},{"x":-50,"y":-21},{"x":-47,"y":-118},{"x":103,"y":-40},{"x":-18,"y":34},{"x":32,"y":-39},{"x":29,"y":16},{"x":-14,"y":-32},{"x":-29,"y":16},{"x":61,"y":-96},{"x":-6,"y":48},{"x":28,"y":-11},{"x":-32,"y":-120},{"x":17,"y":36},{"x":38,"y":-16},{"x":-65,"y":-37},{"x":-9,"y":-24},{"x":46,"y":12},{"x":-47,"y":-19},{"x":-11,"y":-54},{"x":12,"y":32},{"x":103,"y":-32},{"x":-94,"y":-13},{"x":28,"y":-96},{"x":-64,"y":-81},{"x":52,"y":-72},{"x":-45,"y":-29},{"x":-37,"y":31},{"x":31,"y":61},{"x":-34,"y":-21},{"x":-30,"y":22},{"x":38,"y":36},{"x":-57,"y":2},{"x":-13,"y":-31},{"x":-23,"y":15},{"x":0,"y":-34},{"x":-103,"y":91},{"x":-55,"y":-49},{"x":52,"y":17},{"x":94,"y":-110},{"x":-63,"y":20},{"x":-48,"y":-26},{"x":61,"y":-25},{"x":-53,"y":-33},{"x":31,"y":-70},{"x":3,"y":20},{"x":75,"y":-14},{"x":-15,"y":-40},{"x":66,"y":-35},{"x":-15,"y":-43},{"x":-31,"y":22},{"x":-21,"y":-36},{"x":53,"y":-107},{"x":-16,"y":-77},{"x":65,"y":-3},{"x":-71,"y":-2},{"x":-69,"y":-108},{"x":45,"y":34},{"x":-8,"y":-36},{"x":57,"y":5},{"x":-8,"y":-38},{"x":-84,"y":28},{"x":-74,"y":-41},{"x":-125,"y":-129},{"x":35,"y":28},{"x":27,"y":-56},{"x":-42,"y":-5},{"x":34,"y":-20},{"x":-66,"y":30},{"x":-26,"y":-30},{"x":36,"y":-17},{"x":-74,"y":-10},{"x":2,"y":-36},{"x":-35,"y":3},{"x":21,"y":15},{"x":-59,"y":-19},{"x":8,"y":-41},{"x":-40,"y":31},{"x":-81,"y":-18},{"x":30,"y":-44},{"x":-42,"y":2},{"x":-4,"y":40},{"x":-96,"y":-16},{"x":-196,"y":51}],"type":"coastline"},{"arc":[{"x":27557,"y":7642},{"x":181,"y":-47},{"x":91,"y":-109},{"x":63,"y":-13},{"x":122,"y":-258},{"x":129,"y":-1},{"x":262,"y":-152},{"x":120,"y":11},{"x":63,"y":-65},{"x":93,"y":-22},{"x":63,"y":14},{"x":-78,"y":46},{"x":123,"y":-41},{"x":-1,"y":112},{"x":33,"y":-116},{"x":-76,"y":-16},{"x":40,"y":-60},{"x":56,"y":3},{"x":-33,"y":20},{"x":185,"y":-108},{"x":206,"y":-16},{"x":96,"y":-62},{"x":288,"y":36},{"x":291,"y":-61},{"x":197,"y":61},{"x":567,"y":6},{"x":-12,"y":102},{"x":21,"y":-109},{"x":86,"y":2},{"x":-62,"y":12},{"x":67,"y":24},{"x":50,"y":-44},{"x":14,"y":38},{"x":-8,"y":-44},{"x":329,"y":-67},{"x":-50,"y":92},{"x":4,"y":105},{"x":-43,"y":28},{"x":33,"y":13},{"x":-59,"y":18},{"x":-117,"y":-66},{"x":17,"y":39},{"x":-9,"y":-33},{"x":119,"y":68},{"x":-148,"y":-2},{"x":32,"y":-8},{"x":-52,"y":-17},{"x":50,"y":-4},{"x":-60,"y":-33},{"x":-9,"y":44},{"x":60,"y":47},{"x":151,"y":17},{"x":42,"y":-22},{"x":-36,"y":3},{"x":21,"y":-20},{"x":35,"y":16},{"x":29,"y":-22},{"x":-1,"y":-15},{"x":34,"y":30},{"x":93,"y":-38}],"type":"coastline"},{"arc":[{"x":31902,"y":262},{"x":1,"y":27},{"x":-58,"y":-36},{"x":62,"y":-36},{"x":-5,"y":45}],"type":"coastline"},{"arc":[{"x":31875,"y":349},{"x":-7,"y":-70},{"x":53,"y":65},{"x":-46,"y":5}],"type":"coastline"},{"arc":[{"x":31926,"y":418},{"x":-49,"y":16},{"x":-33,"y":-66},{"x":82,"y":50}],"type":"coastline"},{"arc":[{"x":31933,"y":43461},{"x":-22,"y":-43},{"x":54,"y":47},{"x":-32,"y":-4}],"type":"coastline"},{"arc":[{"x":31969,"y":779},{"x":-14,"y":77},{"x":8,"y":-134},{"x":6,"y":57}],"type":"coastline"},{"arc":[{"x":32025,"y":714},{"x":-64,"y":3},{"x":-22,"y":-151},{"x":21,"y":94},{"x":65,"y":54}],"type":"coastline"},{"arc":[{"x":32160,"y":42893},{"x":-36,"y":64},{"x":-20,"y":-60},{"x":40,"y":-56},{"x":16,"y":52}],"type":"coastline"},{"arc":[{"x":32288,"y":1457},{"x":-41,"y":20},{"x":-127,"y":-154},{"x":168,"y":134}],"type":"coastline"},{"arc":[{"x":32379,"y":1611},{"x":-32,"y":16},{"x":31,"y":43},{"x":-57,"y":-38},{"x":-6,"y":36},{"x":-86,"y":-191},{"x":52,"y":108},{"x":19,"y":-24},{"x":22,"y":55},{"x":31,"y":-56},{"x":26,"y":51}],"type":"coastline"},{"arc":[{"x":32424,"y":1717},{"x":-17,"y":24},{"x":-14,"y":-44},{"x":31,"y":20}],"type":"coastline"},{"arc":[{"x":32624,"y":1974},{"x":-4,"y":28},{"x":-60,"y":21},{"x":-26,"y":37},{"x":23,"y":-39},{"x":-79,"y":-177},{"x":39,"y":-16},{"x":68,"y":51},{"x":39,"y":95}],"type":"coastline"},{"arc":[{"x":32651,"y":5705},{"x":-114,"y":47},{"x":63,"y":-58},{"x":51,"y":11}],"type":"coastline"},{"arc":[{"x":32638,"y":5913},{"x":-28,"y":-30},{"x":62,"y":6},{"x":-34,"y":24}],"type":"coastline"},{"arc":[{"x":32679,"y":2347},{"x":-27,"y":28},{"x":-15,"y":-44},{"x":42,"y":16}],"type":"coastline"},{"arc":[{"x":32822,"y":5930},{"x":-67,"y":33},{"x":-103,"y":-31},{"x":49,"y":-2},{"x":-25,"y":-31},{"x":79,"y":14},{"x":-78,"y":-21},{"x":37,"y":-36},{"x":83,"y":16},{"x":25,"y":58}],"type":"coastline"},{"arc":[{"x":32871,"y":5665},{"x":-37,"y":10},{"x":-17,"y":-55},{"x":54,"y":45}],"type":"coastline"},{"arc":[{"x":32879,"y":5775},{"x":-60,"y":43},{"x":42,"y":-70},{"x":53,"y":37},{"x":-35,"y":-10}],"type":"coastline"},{"arc":[{"x":32914,"y":5641},{"x":-6,"y":51},{"x":-186,"y":123},{"x":29,"y":-45},{"x":-39,"y":-19},{"x":14,"y":34},{"x":-72,"y":20},{"x":14,"y":31},{"x":-60,"y":-29},{"x":9,"y":31},{"x":-76,"y":-4},{"x":74,"y":-46},{"x":-15,"y":-24},{"x":68,"y":-8},{"x":5,"y":-69},{"x":16,"y":44},{"x":30,"y":-34},{"x":33,"y":27},{"x":0,"y":-58},{"x":55,"y":29},{"x":65,"y":-17},{"x":10,"y":-40},{"x":32,"y":3}],"type":"coastline"},{"arc":[{"x":32934,"y":5756},{"x":-43,"y":-11},{"x":21,"y":-39},{"x":22,"y":50}],"type":"coastline"},{"arc":[{"x":32914,"y":5816},{"x":-52,"y":11},{"x":83,"y":-39},{"x":-31,"y":28}],"type":"coastline"},{"arc":[{"x":33015,"y":5727},{"x":-45,"y":42},{"x":-23,"y":-31},{"x":68,"y":-11}],"type":"coastline"},{"arc":[{"x":33030,"y":5593},{"x":-48,"y":-5},{"x":35,"y":20},{"x":-46,"y":19},{"x":-137,"y":-50},{"x":146,"y":3},{"x":44,"y":-39},{"x":6,"y":52}],"type":"coastline"},{"arc":[{"x":33077,"y":5620},{"x":-34,"y":96},{"x":-71,"y":0},{"x":50,"y":-46},{"x":-84,"y":23},{"x":1,"y":-61},{"x":88,"y":-2},{"x":37,"y":-41},{"x":13,"y":31}],"type":"coastline"},{"arc":[{"x":33099,"y":3260},{"x":-6,"y":36},{"x":-32,"y":-56},{"x":38,"y":20}],"type":"coastline"},{"arc":[{"x":33114,"y":5400},{"x":-57,"y":-33},{"x":76,"y":0},{"x":-19,"y":33}],"type":"coastline"},{"arc":[{"x":33161,"y":5420},{"x":-43,"y":69},{"x":-245,"y":21},{"x":83,"y":-47},{"x":34,"y":25},{"x":-20,"y":-32},{"x":36,"y":14},{"x":15,"y":-45},{"x":48,"y":24},{"x":71,"y":-62},{"x":21,"y":33}],"type":"coastline"},{"arc":[{"x":33269,"y":3280},{"x":-45,"y":16},{"x":41,"y":48},{"x":-47,"y":-8},{"x":-20,"y":48},{"x":-42,"y":-25},{"x":20,"y":-74},{"x":-49,"y":38},{"x":12,"y":-63},{"x":-21,"y":27},{"x":-19,"y":-71},{"x":-97,"y":-73},{"x":88,"y":49},{"x":-38,"y":-44},{"x":35,"y":17},{"x":-2,"y":-65},{"x":0,"y":47},{"x":-58,"y":-24},{"x":111,"y":-61},{"x":74,"y":71},{"x":-91,"y":72},{"x":121,"y":-36},{"x":19,"y":32},{"x":-60,"y":19},{"x":47,"y":4},{"x":-29,"y":36},{"x":28,"y":16},{"x":39,"y":-30},{"x":-17,"y":34}],"type":"coastline"},{"arc":[{"x":33336,"y":5382},{"x":-63,"y":8},{"x":43,"y":32},{"x":-25,"y":57},{"x":-41,"y":1},{"x":22,"y":-35},{"x":-36,"y":23},{"x":46,"y":-107},{"x":-59,"y":64},{"x":7,"y":55},{"x":-67,"y":5},{"x":69,"y":-114},{"x":-67,"y":32},{"x":-18,"y":-34},{"x":96,"y":-70},{"x":40,"y":9},{"x":-33,"y":36},{"x":84,"y":-39},{"x":-36,"y":31},{"x":37,"y":-5},{"x":1,"y":51}],"type":"coastline"},{"arc":[{"x":33369,"y":5479},{"x":-46,"y":28},{"x":-2,"y":62},{"x":-129,"y":48},{"x":115,"y":-63},{"x":-167,"y":53},{"x":7,"y":-37},{"x":-85,"y":-54},{"x":87,"y":7},{"x":-1,"y":31},{"x":221,"y":-75}],"type":"coastline"},{"arc":[{"x":33390,"y":3329},{"x":-52,"y":78},{"x":-7,"y":-74},{"x":-48,"y":-28},{"x":43,"y":-51},{"x":64,"y":75}],"type":"coastline"},{"arc":[{"x":33432,"y":2331},{"x":-24,"y":-31},{"x":32,"y":-12},{"x":29,"y":59},{"x":-37,"y":-16}],"type":"coastline"},{"arc":[{"x":33815,"y":3997},{"x":-108,"y":-43},{"x":-19,"y":-54},{"x":127,"y":97}],"type":"coastline"},{"arc":[{"x":33823,"y":1689},{"x":-92,"y":68},{"x":-51,"y":-73},{"x":103,"y":-159},{"x":40,"y":164}],"type":"coastline"},{"arc":[{"x":33840,"y":4067},{"x":-15,"y":56},{"x":-35,"y":-64},{"x":50,"y":8}],"type":"coastline"},{"arc":[{"x":33822,"y":907},{"x":-17,"y":40},{"x":57,"y":-101},{"x":-40,"y":61}],"type":"coastline"},{"arc":[{"x":34588,"y":1012},{"x":-40,"y":16},{"x":18,"y":150},{"x":-48,"y":27},{"x":-56,"y":165},{"x":-65,"y":-114},{"x":115,"y":-143},{"x":-18,"y":-109},{"x":94,"y":8}],"type":"coastline"},{"arc":[{"x":32814,"y":6075},{"x":-140,"y":3},{"x":-85,"y":-45},{"x":-32,"y":-40},{"x":46,"y":-7},{"x":-44,"y":-14},{"x":61,"y":-15},{"x":65,"y":64},{"x":-51,"y":-70},{"x":43,"y":52},{"x":151,"y":-71},{"x":32,"y":22},{"x":-57,"y":-110},{"x":-80,"y":-5},{"x":19,"y":-26},{"x":128,"y":25},{"x":15,"y":58},{"x":2,"y":-51},{"x":90,"y":-77},{"x":42,"y":22},{"x":6,"y":-49},{"x":56,"y":-4},{"x":20,"y":-92},{"x":41,"y":63},{"x":-5,"y":-47},{"x":56,"y":13},{"x":25,"y":-40},{"x":-42,"y":78},{"x":90,"y":-67},{"x":-14,"y":52},{"x":17,"y":-52},{"x":-31,"y":-16},{"x":82,"y":1},{"x":-19,"y":-46},{"x":102,"y":35},{"x":-72,"y":-47},{"x":39,"y":-73},{"x":245,"y":-72},{"x":-86,"y":5},{"x":32,"y":-30},{"x":-223,"y":56},{"x":55,"y":-48},{"x":-23,"y":-51},{"x":97,"y":-20},{"x":21,"y":36},{"x":30,"y":-46},{"x":-65,"y":-7},{"x":72,"y":-101},{"x":-31,"y":17},{"x":-24,"y":-27},{"x":5,"y":65},{"x":-84,"y":64},{"x":-57,"y":-73},{"x":219,"y":-217},{"x":79,"y":-171},{"x":101,"y":47},{"x":-94,"y":22},{"x":58,"y":1},{"x":-5,"y":47},{"x":54,"y":-76},{"x":-79,"y":-98},{"x":41,"y":-137},{"x":58,"y":9},{"x":-40,"y":-36},{"x":16,"y":-313},{"x":39,"y":7},{"x":22,"y":-91},{"x":93,"y":39},{"x":-81,"y":-79},{"x":22,"y":-81},{"x":50,"y":38},{"x":15,"y":-130},{"x":22,"y":73},{"x":18,"y":-78},{"x":47,"y":53},{"x":-54,"y":-129},{"x":59,"y":-24},{"x":-71,"y":-38},{"x":99,"y":17},{"x":-109,"y":-118},{"x":-37,"y":61},{"x":-39,"y":-60},{"x":33,"y":74},{"x":-32,"y":18},{"x":-113,"y":-61},{"x":22,"y":-81},{"x":-41,"y":-22},{"x":56,"y":-15},{"x":-91,"y":-14},{"x":55,"y":-24},{"x":-68,"y":-4},{"x":31,"y":-34},{"x":-134,"y":-112},{"x":26,"y":-35},{"x":-34,"y":-60},{"x":55,"y":-19},{"x":8,"y":62},{"x":75,"y":48},{"x":-39,"y":-51},{"x":32,"y":-56},{"x":143,"y":69},{"x":75,"y":-14},{"x":74,"y":125},{"x":-43,"y":166},{"x":67,"y":-127},{"x":81,"y":78},{"x":-117,"y":-260},{"x":-172,"y":-125},{"x":16,"y":-59},{"x":-49,"y":61},{"x":-38,"y":-17},{"x":-12,"y":-64},{"x":-48,"y":1},{"x":33,"y":-26},{"x":-145,"y":-99},{"x":-66,"y":122},{"x":-85,"y":-103},{"x":-88,"y":-28},{"x":26,"y":-19},{"x":-198,"y":-249},{"x":-76,"y":-1},{"x":-121,"y":-227},{"x":-39,"y":-28},{"x":-8,"y":64},{"x":-52,"y":-37},{"x":44,"y":-26},{"x":-55,"y":-5},{"x":-15,"y":-105},{"x":-70,"y":-10},{"x":62,"y":-25},{"x":-112,"y":-176},{"x":29,"y":-24},{"x":11,"y":41},{"x":18,"y":-58},{"x":-117,"y":-46},{"x":-12,"y":-55},{"x":58,"y":-24},{"x":-76,"y":11},{"x":40,"y":-76},{"x":-44,"y":16},{"x":-28,"y":-37},{"x":68,"y":3},{"x":57,"y":101},{"x":116,"y":85},{"x":29,"y":78},{"x":-14,"y":-25},{"x":8,"y":60},{"x":-62,"y":9},{"x":39,"y":1},{"x":-25,"y":66},{"x":35,"y":-40},{"x":77,"y":25},{"x":138,"y":180},{"x":-28,"y":30},{"x":124,"y":40},{"x":56,"y":67},{"x":-17,"y":42},{"x":36,"y":-36},{"x":102,"y":13},{"x":15,"y":57},{"x":43,"y":-52},{"x":178,"y":95},{"x":-60,"y":-37},{"x":-62,"y":-136},{"x":86,"y":-36},{"x":-19,"y":61},{"x":60,"y":-66},{"x":-173,"y":-35},{"x":118,"y":-96},{"x":-37,"y":-35},{"x":68,"y":-54},{"x":-115,"y":-172},{"x":20,"y":-50},{"x":36,"y":64},{"x":51,"y":-25},{"x":18,"y":35},{"x":35,"y":-59},{"x":52,"y":42},{"x":179,"y":-91},{"x":92,"y":70},{"x":6,"y":-37},{"x":-105,"y":-63},{"x":-60,"y":22},{"x":-44,"y":-133},{"x":9,"y":-62},{"x":158,"y":-104},{"x":2,"y":-54},{"x":35,"y":52},{"x":51,"y":8},{"x":-15,"y":12},{"x":10,"y":24},{"x":-20,"y":-4},{"x":-8,"y":49},{"x":-53,"y":-18},{"x":50,"y":52},{"x":-44,"y":25},{"x":39,"y":45},{"x":23,"y":-63},{"x":32,"y":28},{"x":-31,"y":-37},{"x":-1,"y":-68},{"x":17,"y":-8},{"x":6,"y":-30},{"x":-8,"y":-31},{"x":42,"y":45},{"x":-11,"y":-36},{"x":45,"y":-10},{"x":-24,"y":-2},{"x":13,"y":-25},{"x":88,"y":82},{"x":-43,"y":-63},{"x":-73,"y":-37},{"x":96,"y":-32},{"x":16,"y":-51},{"x":24,"y":52},{"x":29,"y":-41},{"x":9,"y":63},{"x":57,"y":-15},{"x":90,"y":70},{"x":-20,"y":67},{"x":31,"y":-34},{"x":41,"y":46},{"x":-28,"y":-40},{"x":49,"y":-9},{"x":39,"y":70},{"x":49,"y":-7},{"x":-3,"y":78},{"x":-52,"y":-10},{"x":17,"y":89},{"x":110,"y":95},{"x":-10,"y":135},{"x":71,"y":51},{"x":134,"y":-52},{"x":-5,"y":-42},{"x":72,"y":91},{"x":50,"y":-48},{"x":-134,"y":-194},{"x":71,"y":-45},{"x":-56,"y":-2},{"x":40,"y":-62},{"x":-31,"y":-165},{"x":31,"y":-140},{"x":133,"y":-94},{"x":15,"y":113},{"x":96,"y":-256},{"x":114,"y":225},{"x":-6,"y":95},{"x":39,"y":-32},{"x":62,"y":181},{"x":-7,"y":79},{"x":-85,"y":-69},{"x":-26,"y":63},{"x":-22,"y":226},{"x":68,"y":38},{"x":-35,"y":50},{"x":55,"y":-20},{"x":-20,"y":-80},{"x":153,"y":-69},{"x":-113,"y":103},{"x":-6,"y":173},{"x":50,"y":-8},{"x":-27,"y":-148},{"x":45,"y":-49},{"x":58,"y":45},{"x":0,"y":-113},{"x":39,"y":12},{"x":-34,"y":-27},{"x":22,"y":-139},{"x":114,"y":-52},{"x":165,"y":-325},{"x":12,"y":62},{"x":108,"y":12},{"x":10,"y":228},{"x":42,"y":88},{"x":270,"y":208},{"x":-37,"y":-26},{"x":100,"y":264},{"x":-91,"y":22},{"x":68,"y":-7},{"x":9,"y":65},{"x":24,"y":-98},{"x":55,"y":114},{"x":-45,"y":-8},{"x":40,"y":165},{"x":123,"y":170},{"x":-64,"y":111},{"x":-83,"y":-51},{"x":89,"y":108},{"x":-85,"y":104},{"x":18,"y":231},{"x":-62,"y":31},{"x":-5,"y":-67},{"x":-41,"y":171},{"x":33,"y":210},{"x":-123,"y":553},{"x":32,"y":207},{"x":-105,"y":271}],"type":"coastline"},{"arc":[{"x":24732,"y":12742},{"x":-16,"y":-8}],"type":"coastline"},{"arc":[{"x":24715,"y":12750},{"x":17,"y":-5}],"type":"coastline"},{"arc":[{"x":29246,"y":30528},{"x":-35,"y":4},{"x":0,"y":-24},{"x":17,"y":5},{"x":7,"y":0},{"x":3,"y":-7},{"x":13,"y":-4},{"x":3,"y":-1},{"x":4,"y":0},{"x":4,"y":1},{"x":7,"y":2},{"x":1,"y":7},{"x":-24,"y":17}],"type":"coastline"},{"arc":[{"x":29742,"y":30501},{"x":-20,"y":35},{"x":-144,"y":-130},{"x":-11,"y":61},{"x":-81,"y":62},{"x":4,"y":29},{"x":95,"y":31},{"x":-124,"y":60},{"x":-42,"y":119},{"x":-68,"y":-63},{"x":21,"y":-34},{"x":-32,"y":9},{"x":-16,"y":-4},{"x":8,"y":-22},{"x":4,"y":6},{"x":2,"y":1},{"x":2,"y":-2},{"x":-1,"y":-10},{"x":-7,"y":-8},{"x":-17,"y":-7},{"x":-8,"y":-11},{"x":-17,"y":8},{"x":-21,"y":-38},{"x":-1,"y":-2},{"x":2,"y":-2},{"x":25,"y":-6},{"x":14,"y":-45},{"x":-19,"y":-36}],"type":"coastline"},{"arc":[{"x":28604,"y":30116},{"x":9,"y":-4},{"x":6,"y":-14},{"x":-8,"y":-9},{"x":14,"y":-7},{"x":-22,"y":-30},{"x":45,"y":-30},{"x":-4,"y":-60}],"type":"coastline"},{"arc":[{"x":22170,"y":14416},{"x":-28,"y":15},{"x":25,"y":-33},{"x":3,"y":18}],"type":"coastline"},{"arc":[{"x":22237,"y":14497},{"x":-54,"y":-15},{"x":-7,"y":-40},{"x":61,"y":55}],"type":"coastline"},{"arc":[{"x":22715,"y":14124},{"x":-33,"y":-32},{"x":25,"y":-43},{"x":48,"y":64},{"x":-40,"y":11}],"type":"coastline"},{"arc":[{"x":22906,"y":13208},{"x":-67,"y":-78},{"x":-187,"y":48},{"x":-202,"y":-67},{"x":-174,"y":59},{"x":59,"y":69},{"x":96,"y":5},{"x":241,"y":-67},{"x":142,"y":188},{"x":28,"y":-15},{"x":-29,"y":45},{"x":58,"y":-3},{"x":-20,"y":-48},{"x":57,"y":-11},{"x":76,"y":34},{"x":-164,"y":48},{"x":-4,"y":93},{"x":-56,"y":56},{"x":-161,"y":33},{"x":37,"y":225},{"x":-83,"y":43},{"x":-53,"y":102},{"x":97,"y":109},{"x":4,"y":65},{"x":4,"y":-71},{"x":36,"y":-4},{"x":15,"y":295},{"x":-47,"y":-131},{"x":-57,"y":-10},{"x":27,"y":29},{"x":-60,"y":17},{"x":-20,"y":-24},{"x":14,"y":-24},{"x":-24,"y":27},{"x":21,"y":22},{"x":30,"y":4},{"x":-116,"y":32},{"x":52,"y":12},{"x":-68,"y":1},{"x":67,"y":2},{"x":-14,"y":21},{"x":33,"y":-21},{"x":-51,"y":44},{"x":-32,"y":-1},{"x":24,"y":8},{"x":-36,"y":4},{"x":22,"y":2},{"x":30,"y":-12},{"x":-10,"y":28},{"x":26,"y":-5},{"x":-100,"y":94},{"x":-32,"y":10},{"x":-47,"y":-37},{"x":18,"y":15},{"x":-129,"y":-30},{"x":1,"y":-55},{"x":-13,"y":8},{"x":-36,"y":38},{"x":40,"y":37},{"x":-4,"y":116}],"type":"coastline"},{"arc":[{"x":24236,"y":14010},{"x":-3,"y":21},{"x":-16,"y":-41},{"x":19,"y":20}],"type":"coastline"},{"arc":[{"x":22591,"y":34518},{"x":-100,"y":6},{"x":82,"y":-25},{"x":18,"y":19}],"type":"coastline"},{"arc":[{"x":25073,"y":35003},{"x":-36,"y":-70},{"x":-88,"y":-27},{"x":19,"y":-67},{"x":-77,"y":20},{"x":-31,"y":-35},{"x":-69,"y":6},{"x":-69,"y":-74},{"x":-212,"y":-42},{"x":-163,"y":58},{"x":-30,"y":42},{"x":-93,"y":7},{"x":14,"y":-25},{"x":-329,"y":185},{"x":-21,"y":48},{"x":-48,"y":-1},{"x":34,"y":16},{"x":-157,"y":36},{"x":-47,"y":40},{"x":-529,"y":62},{"x":-73,"y":-2},{"x":51,"y":-11},{"x":-34,"y":-19},{"x":-60,"y":17},{"x":13,"y":-23},{"x":-128,"y":17},{"x":59,"y":-14},{"x":-89,"y":8},{"x":-23,"y":-27},{"x":-62,"y":0},{"x":-99,"y":-111},{"x":-49,"y":-13},{"x":-72,"y":-88},{"x":23,"y":-35},{"x":49,"y":0},{"x":-52,"y":-3},{"x":45,"y":-27},{"x":-49,"y":-19},{"x":-37,"y":25},{"x":7,"y":-45},{"x":-59,"y":39},{"x":-17,"y":-18},{"x":63,"y":-37},{"x":-98,"y":42},{"x":94,"y":-62},{"x":-148,"y":51},{"x":95,"y":-88},{"x":-143,"y":45},{"x":-54,"y":-79},{"x":-127,"y":-83},{"x":11,"y":-17},{"x":24,"y":30},{"x":22,"y":-23},{"x":207,"y":10},{"x":48,"y":30},{"x":62,"y":-40},{"x":-19,"y":-20},{"x":62,"y":-19}],"type":"coastline"},{"arc":[{"x":23548,"y":34946},{"x":41,"y":4},{"x":31,"y":-13},{"x":54,"y":26},{"x":114,"y":-62},{"x":66,"y":34},{"x":104,"y":-71},{"x":-19,"y":-22},{"x":122,"y":-17},{"x":297,"y":-165},{"x":88,"y":-7},{"x":135,"y":-154},{"x":41,"y":30},{"x":45,"y":-11},{"x":-17,"y":74},{"x":88,"y":41},{"x":99,"y":-71},{"x":47,"y":31},{"x":71,"y":-64},{"x":-69,"y":-51},{"x":36,"y":-28},{"x":-6,"y":-11},{"x":8,"y":-11},{"x":0,"y":-7},{"x":4,"y":-3},{"x":1,"y":-4},{"x":1,"y":-1},{"x":1,"y":-1},{"x":3,"y":-2},{"x":7,"y":-3},{"x":7,"y":-2},{"x":25,"y":-7},{"x":8,"y":-8},{"x":34,"y":-7},{"x":6,"y":-11},{"x":108,"y":18},{"x":23,"y":-17},{"x":-41,"y":-19},{"x":55,"y":-7},{"x":13,"y":-14},{"x":14,"y":0},{"x":85,"y":-44}],"type":"coastline"},{"arc":[{"x":16027,"y":42441},{"x":-59,"y":10},{"x":27,"y":-35},{"x":51,"y":3},{"x":-19,"y":22}],"type":"coastline"},{"arc":[{"x":16294,"y":42337},{"x":-56,"y":25},{"x":18,"y":-47},{"x":38,"y":22}],"type":"coastline"},{"arc":[{"x":16513,"y":42319},{"x":-61,"y":35},{"x":15,"y":-39},{"x":46,"y":4}],"type":"coastline"},{"arc":[{"x":16571,"y":42336},{"x":19,"y":-50},{"x":34,"y":31},{"x":-53,"y":19}],"type":"coastline"},{"arc":[{"x":16617,"y":42227},{"x":-50,"y":42},{"x":-46,"y":0},{"x":-6,"y":-38},{"x":152,"y":-34},{"x":-50,"y":30}],"type":"coastline"},{"arc":[{"x":16760,"y":42280},{"x":6,"y":-23},{"x":38,"y":40},{"x":-44,"y":-17}],"type":"coastline"},{"arc":[{"x":16831,"y":42152},{"x":52,"y":33},{"x":-132,"y":19},{"x":-25,"y":-59},{"x":225,"y":-19},{"x":-120,"y":26}],"type":"coastline"},{"arc":[{"x":17127,"y":42245},{"x":-22,"y":-14},{"x":42,"y":-8},{"x":-20,"y":22}],"type":"coastline"},{"arc":[{"x":17106,"y":1025},{"x":-26,"y":15},{"x":38,"y":-75},{"x":-12,"y":60}],"type":"coastline"},{"arc":[{"x":17206,"y":938},{"x":-70,"y":8},{"x":0,"y":-37},{"x":64,"y":-32},{"x":6,"y":61}],"type":"coastline"},{"arc":[{"x":23098,"y":28389},{"x":-35,"y":117},{"x":-55,"y":-105},{"x":54,"y":-44},{"x":36,"y":32}],"type":"coastline"},{"arc":[{"x":23983,"y":28330},{"x":-85,"y":-97},{"x":-145,"y":-8},{"x":-218,"y":-347},{"x":-136,"y":-82},{"x":3,"y":-82},{"x":-141,"y":-160},{"x":-20,"y":-126},{"x":-130,"y":-74},{"x":-37,"y":-135},{"x":21,"y":-59},{"x":508,"y":-64},{"x":58,"y":-39},{"x":13,"y":24},{"x":248,"y":-3}],"type":"coastline"},{"arc":[{"x":14403,"y":25761},{"x":-7,"y":-11},{"x":1,"y":-3},{"x":54,"y":-50},{"x":2,"y":-6},{"x":-5,"y":-8},{"x":-144,"y":-61},{"x":-17,"y":-3},{"x":-70,"y":1},{"x":-6,"y":1},{"x":1,"y":2},{"x":8,"y":8},{"x":-52,"y":9},{"x":-7,"y":2},{"x":-19,"y":13},{"x":-15,"y":6},{"x":-3,"y":2},{"x":-2,"y":1},{"x":-21,"y":37},{"x":-2,"y":8},{"x":-2,"y":54},{"x":107,"y":18}],"type":"coastline"},{"arc":[{"x":14203,"y":25875},{"x":-384,"y":-62},{"x":-175,"y":-123},{"x":-441,"y":-165},{"x":-393,"y":-257},{"x":-161,"y":-168},{"x":-4,"y":-98},{"x":-59,"y":-1},{"x":15,"y":-84},{"x":-53,"y":-22},{"x":48,"y":-273},{"x":-88,"y":-96},{"x":-16,"y":-154},{"x":-83,"y":-64},{"x":46,"y":-85},{"x":73,"y":-19},{"x":-19,"y":-39},{"x":65,"y":-3},{"x":-4,"y":-39},{"x":-54,"y":-1},{"x":43,"y":-18},{"x":103,"y":14},{"x":197,"y":-72},{"x":48,"y":55},{"x":161,"y":-2},{"x":735,"y":-219},{"x":29,"y":28}],"type":"coastline"},{"arc":[{"x":13832,"y":23908},{"x":105,"y":46},{"x":-45,"y":32},{"x":-107,"y":7},{"x":-57,"y":204},{"x":121,"y":109},{"x":825,"y":0},{"x":-161,"y":82},{"x":-149,"y":23},{"x":-82,"y":-29},{"x":-89,"y":10},{"x":6,"y":119},{"x":148,"y":107},{"x":204,"y":59},{"x":4,"y":52},{"x":-122,"y":146},{"x":25,"y":97},{"x":217,"y":50},{"x":26,"y":65},{"x":82,"y":53},{"x":167,"y":35},{"x":68,"y":76},{"x":139,"y":66},{"x":7,"y":9},{"x":-3,"y":18},{"x":5,"y":12},{"x":16,"y":24},{"x":10,"y":4},{"x":-1,"y":8},{"x":16,"y":6},{"x":16,"y":-1},{"x":20,"y":10},{"x":2,"y":16},{"x":7,"y":6},{"x":-2,"y":19},{"x":7,"y":10},{"x":-3,"y":9},{"x":6,"y":2},{"x":1,"y":3},{"x":-1,"y":4},{"x":4,"y":7},{"x":-2,"y":2},{"x":1,"y":9},{"x":-59,"y":186}],"type":"coastline"},{"arc":[{"x":13790,"y":25322},{"x":-51,"y":-72},{"x":-128,"y":-48},{"x":-31,"y":-40},{"x":-11,"y":-3},{"x":-145,"y":45},{"x":-78,"y":86},{"x":115,"y":37},{"x":13,"y":50},{"x":5,"y":8},{"x":29,"y":29},{"x":4,"y":6},{"x":2,"y":1},{"x":13,"y":-3},{"x":6,"y":-3},{"x":17,"y":1},{"x":92,"y":39},{"x":173,"y":-97},{"x":-25,"y":-36}],"type":"coastline"},{"arc":[{"x":16724,"y":25572},{"x":5,"y":-68},{"x":-9,"y":-30},{"x":-70,"y":-80},{"x":-117,"y":-15},{"x":-107,"y":-121},{"x":-224,"y":-96},{"x":-9,"y":-134},{"x":46,"y":-80}],"type":"area"},{"arc":[{"x":16273,"y":24719},{"x":235,"y":-149},{"x":97,"y":-21},{"x":712,"y":0},{"x":0,"y":246},{"x":47,"y":-17},{"x":91,"y":20},{"x":53,"y":-9},{"x":116,"y":0},{"x":51,"y":13},{"x":66,"y":-9},{"x":55,"y":-2},{"x":-1,"y":4},{"x":-10,"y":13},{"x":-28,"y":2},{"x":-13,"y":30},{"x":-40,"y":2},{"x":-18,"y":-6},{"x":-5,"y":-7},{"x":-4,"y":1},{"x":-2,"y":9},{"x":-12,"y":10},{"x":0,"y":5},{"x":60,"y":100},{"x":-101,"y":4},{"x":-58,"y":77},{"x":-25,"y":90},{"x":100,"y":56},{"x":-163,"y":56},{"x":-51,"y":95},{"x":-197,"y":69},{"x":38,"y":71},{"x":-51,"y":25},{"x":292,"y":2},{"x":-20,"y":-39},{"x":-47,"y":3},{"x":17,"y":-57},{"x":190,"y":-82},{"x":200,"y":42},{"x":95,"y":-16},{"x":96,"y":16},{"x":117,"y":-42},{"x":114,"y":65},{"x":64,"y":0},{"x":65,"y":226},{"x":-92,"y":34},{"x":3,"y":39},{"x":-106,"y":71},{"x":-19,"y":59},{"x":-59,"y":61},{"x":-50,"y":8},{"x":-7,"y":11},{"x":16,"y":2},{"x":-3,"y":10},{"x":-3,"y":2},{"x":-9,"y":2},{"x":-3,"y":1},{"x":-6,"y":-2},{"x":-4,"y":1},{"x":-3,"y":1},{"x":-6,"y":4},{"x":-11,"y":4},{"x":-5,"y":6},{"x":-10,"y":3},{"x":-44,"y":-7},{"x":-115,"y":45},{"x":-69,"y":-53},{"x":-63,"y":19},{"x":-219,"y":-17},{"x":-49,"y":33},{"x":-58,"y":-61},{"x":-133,"y":-3},{"x":-88,"y":-41},{"x":-102,"y":41},{"x":8,"y":25},{"x":-218,"y":-363},{"x":-56,"y":6},{"x":-27,"y":12},{"x":-29,"y":3},{"x":-15,"y":-3},{"x":-20,"y":4}],"type":"coastline"},{"arc":[{"x":16724,"y":25572},{"x":-82,"y":1},{"x":-5,"y":104},{"x":-91,"y":79},{"x":-57,"y":129},{"x":-57,"y":-17},{"x":-92,"y":23},{"x":-227,"y":3},{"x":-135,"y":-44},{"x":-242,"y":39},{"x":-129,"y":-64},{"x":-160,"y":-4},{"x":-243,"y":-141},{"x":11,"y":-116},{"x":48,"y":-70},{"x":-1,"y":-9},{"x":2,"y":-2},{"x":0,"y":-3},{"x":-4,"y":-4},{"x":0,"y":-7},{"x":-6,"y":-2},{"x":3,"y":-9},{"x":-6,"y":-13}],"type":"coastline"}]},"municipalityEarthquakeTsunamiArea":{"scale":{"x":0.00007902932934733856,"y":0.00009671884443637047},"translate":{"x":24.04562392583911,"y":122.93374861200891},"polygons":[{"arcs":[[0,1,2,3,4,5]],"areaCode":110100},{"arcs":[[6,-6,7,8,9,10]],"areaCode":110200},{"arcs":[[11,-1,-7,12,13]],"areaCode":110300},{"arcs":[[14,15,16,-2,-12,17]],"areaCode":110400},{"arcs":[[18,19,-3,-17]],"areaCode":110500},{"arcs":[[20,21,-4,-20,22,23,24,25,26,27,28,29]],"areaCode":110600},{"arcs":[[-5,-22,30,-8]],"areaCode":110700},{"arcs":[[31,32,-15,33]],"areaCode":110800},{"arcs":[[34,-9,-31,-21,35]],"areaCode":110900},{"arcs":[[36,37,-23,-19,-16,-33]],"areaCode":111000},{"arcs":[[38]],"areaCode":120600},{"arcs":[[39]],"areaCode":120600},{"arcs":[[40]],"areaCode":120600},{"arcs":[[41,42,43]],"areaCode":120600},{"arcs":[[44,45,46,47,48,49,50]],"areaCode":120600},{"arcs":[[51,52,53,54,55,56,57,58,59,60,61,62]],"areaCode":120800},{"arcs":[[63,64,65,66,67]],"areaCode":123300},{"arcs":[[-26,68,69,70,71,72,73]],"areaCode":123300},{"arcs":[[74,75,76,77,78,79,80,81]],"areaCode":134600},{"arcs":[[82]],"areaCode":148400},{"arcs":[[83]],"areaCode":148400},{"arcs":[[84,85,86,87,88]],"areaCode":148400},{"arcs":[[89,90,91,92]],"areaCode":160100},{"arcs":[[93,94,95,96,97,98]],"areaCode":160100},{"arcs":[[99,100,101,102,103,104,105,106]],"areaCode":410100},{"arcs":[[109,110,111]],"areaCode":410200},{"arcs":[[112,113,114,-102,115,116,117]],"areaCode":410200},{"arcs":[[118,119,120,-103,-115]],"areaCode":410300},{"arcs":[[-104,-121,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643]],"areaCode":410400},{"arcs":[[644,-116,-101,645]],"areaCode":410500},{"arcs":[[646,647,648,649,650]],"areaCode":421300},{"arcs":[[-648,651,652,653,654,655,656,657,658,659,660]],"areaCode":421500},{"arcs":[[661,662,663,664,-646,-100,665]],"areaCode":442100},{"arcs":[[666]],"areaCode":520100},{"arcs":[[667]],"areaCode":520100},{"arcs":[[668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900]],"areaCode":520100},{"arcs":[[901]],"areaCode":521000},{"arcs":[[902,-894,903,-892,904,-890,905,-888,906,907,-885,908,-883,909,910,-880,911,-878,912,-876,913,-874,914,-872,915,-870,916,-868,917,-866,918,-864,919,-862,920,-860,921,-858,922,-856,923,-854,924,-852,925,-850,926,-848,927,-846,928,-844,929,-842,930,-840,931,-838,932,-836,933,-834,934,-832,935,-830,936,-828,937,-826,938,-824,939,-822,940,-820,941,-818,942,-816,943,-814,944,-812,945,946,947,-808,948,-806,949,-804,950,-802,951,952,-799,953,-797,954,-795,955,-793,956,-791,957,-789,958,-787,959,-785,960,-783,961,-781,962,963,-778,964,-776,965,-774,966,-772,967,-770,968,-768,969,-766,970,-764,971,-762,972,-760,973,-758,974,-756,975,-754,976,-752,977,-750,978,-748,979,-746,980,-744,981,-742,982,-740,983,984,-737,985,986,-734,987,988,989,-730,990,-728,991,-726,992,-724,993,-722,994,-720,995,-718,996,-716,997,-714,998,-712,999,1000,-709,1001,-707,1002,-705,1003,-703,1004,-701,1005,-699,1006,-697,1007,-695,1008,-693,1009,-691,1010,-689,1011,1012,-686,1013,-684,1014,-682,1015,-680,1016,-678,1017,-676,1018,-674,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,-898,1721,-896]],"areaCode":521000},{"arcs":[[1723]],"areaCode":620300},{"arcs":[[1724,1725,1726,1727,1728,1729],[1722]],"areaCode":620300},{"arcs":[[1730]],"areaCode":620400},{"arcs":[[1731,-1607,1732,-1605,1733,-1603,1734,1735,-1600,1736,-1598,1737,-1596,1738,-1594,1739,1740,1741,1742,1743,-1728,1744,1745,-1611,1746,-1609]],"areaCode":620400},{"arcs":[[1747]],"areaCode":620400},{"arcs":[[1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758]],"areaCode":720300},{"arcs":[[1759]],"areaCode":734400},{"arcs":[[-1755,1760,1761,1762,1763,1764,1765,1766]],"areaCode":734400},{"arcs":[[1767,1768]],"areaCode":1110100},{"arcs":[[1769,1770,1771,1772,1773,1774]],"areaCode":1110100},{"arcs":[[1775,1776,-1771,1777]],"areaCode":1110200},{"arcs":[[1778,1779,1780,1781,-1772,-1777]],"areaCode":1110300},{"arcs":[[1782,1783,-1779,-1776,1784,1785,1786]],"areaCode":1110400},{"arcs":[[1787,1788,1789,-1781]],"areaCode":1110500},{"arcs":[[1790,1791,1792,1793,-1773,-1782,-1790]],"areaCode":1110600},{"arcs":[[-1780,-1784,1794,1795,-1788]],"areaCode":1110700},{"arcs":[[1796,1797,1798,1799,-1791,-1789,-1796,1800]],"areaCode":1110800},{"arcs":[[1801,1802,-1801,-1795,-1783]],"areaCode":1110900},{"arcs":[[1803,1804,1805,-1802,-1787,1806,1807]],"areaCode":1111000},{"arcs":[[1808]],"areaCode":1210100},{"arcs":[[1809,1810,1811,1812,1813,1814]],"areaCode":1210100},{"arcs":[[1815,1816,1817,1818,1819,1820]],"areaCode":1210200},{"arcs":[[1821,1822,-1814,1823,-1818]],"areaCode":1210300},{"arcs":[[1824,1825,1826,1827,1828,-1815,-1823]],"areaCode":1210400},{"arcs":[[1829,1830,1831,1832,-1810,-1829]],"areaCode":1210500},{"arcs":[[-1824,-1813,1833,1834,-1819]],"areaCode":1210600},{"arcs":[[1835]],"areaCode":1410100},{"arcs":[[1836,1837]],"areaCode":1410100},{"arcs":[[1838,1839,1840,1841,1842]],"areaCode":1410100},{"arcs":[[1843]],"areaCode":1410200},{"arcs":[[1844,1845,1846,1847,1848,-1841]],"areaCode":1410200},{"arcs":[[1849,1850,1851,1852,-1846]],"areaCode":1410300},{"arcs":[[1853]],"areaCode":1410400},{"arcs":[[1854,1855,-1851,1856]],"areaCode":1410400},{"arcs":[[-1856,1857,1858,1859,1860,-1852]],"areaCode":1410500},{"arcs":[[1861,-1847,-1853,-1861,1862,1863]],"areaCode":1410600},{"arcs":[[1864,1865,1866,1867,-1858,-1855]],"areaCode":1410700},{"arcs":[[1868]],"areaCode":1410800},{"arcs":[[1869]],"areaCode":1410800},{"arcs":[[1870]],"areaCode":1410800},{"arcs":[[1872,1873,1874,1875,-1866,1876]],"areaCode":1410800},{"arcs":[[1877,1878,-1842,-1849,1879,1880,1881]],"areaCode":1410900},{"arcs":[[-1863,-1860,1882,1883,1884,1885,1886,1887]],"areaCode":1411000},{"arcs":[[-1868,1888,-1883,-1859]],"areaCode":1411100},{"arcs":[[-1864,-1888,1889,1890,1891]],"areaCode":1411200},{"arcs":[[1892,-1880,-1848,-1862,-1892,1893,1894,1895]],"areaCode":1411300},{"arcs":[[1896,1897,1898,-1894,-1891]],"areaCode":1411400},{"arcs":[[-1889,-1867,-1876,1899,-1884]],"areaCode":1411500},{"arcs":[[-1887,1900,1901,-1897,-1890]],"areaCode":1411600},{"arcs":[[1902,-1896,1903,1904,1905,1906,1907]],"areaCode":1411700},{"arcs":[[1908,1909,-1881,-1893,-1903]],"areaCode":1411800},{"arcs":[[-1838,1910]],"areaCode":1413100},{"arcs":[[1911]],"areaCode":1413100},{"arcs":[[1912]],"areaCode":1413100},{"arcs":[[1913,-1839,1914,1915]],"areaCode":1413100},{"arcs":[[1916,-1915,-1843,-1879,1917]],"areaCode":1413200},{"arcs":[[1918,-1918,-1878,1919,1920]],"areaCode":1413300},{"arcs":[[-1920,-1882,-1910,1921,1922,1923]],"areaCode":1413400},{"arcs":[[1924,1925,1926,1927,-1923,1928,1929]],"areaCode":1413500},{"arcs":[[-1922,-1909,-1908,1930,-1929]],"areaCode":1413600},{"arcs":[[-1905,1931]],"areaCode":1413700},{"arcs":[[-1930,-1931,-1907,1932,1933,1934]],"areaCode":1413700},{"arcs":[[1935,1936,1937,1938,1939,1940,1941,1942,1943]],"areaCode":1415100},{"arcs":[[1944,1945,1946,-1938,1947]],"areaCode":1415200},{"arcs":[[1948,1949,1950,-1945,1951]],"areaCode":1415300},{"arcs":[[1952,1953,1954,1955,1956,1957]],"areaCode":1510100},{"arcs":[[-1957,1958,1959,1960]],"areaCode":1510200},{"arcs":[[-1960,1961,1962,1963]],"areaCode":1510300},{"arcs":[[-1956,1964,1965,1966,1967,-1962,-1959]],"areaCode":1510400},{"arcs":[[1968,1969,1970,1971,-1966]],"areaCode":1510500},{"arcs":[[-1972,1972,1973,1974,1975,1976,1977,-1967]],"areaCode":1510600},{"arcs":[[-1968,-1978,1978,1979,-1963]],"areaCode":1510700},{"arcs":[[-1977,1980,1981,1982,1983,-1979]],"areaCode":1510800},{"arcs":[[1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994]],"areaCode":1620100},{"arcs":[[1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008]],"areaCode":2020100},{"arcs":[[2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023]],"areaCode":2020200},{"arcs":[[2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038]],"areaCode":2020500},{"arcs":[[2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053]],"areaCode":2020900},{"arcs":[[2054,2055,2056,-2048,2057,2058,2059,-2015]],"areaCode":2021500},{"arcs":[[2060,2061,2062,2063,2064,2065,2066,-2029,2067,-2043,2068,2069]],"areaCode":2210100},{"arcs":[[2070,2071,2072,-2064,2073]],"areaCode":2210200},{"arcs":[[2074]],"areaCode":2210300},{"arcs":[[2075,2076,2077,-2074,-2063,2078]],"areaCode":2210300},{"arcs":[[2079,2080,2081,2082]],"areaCode":2213100},{"arcs":[[2083,2084,-2080,2085,2086]],"areaCode":2213200},{"arcs":[[-2082,2087,2088,2089,2090]],"areaCode":2213300},{"arcs":[[2091,2092,-2088,-2081,-2085]],"areaCode":2213400},{"arcs":[[2093,2094,-2086,-2083,-2091,2095,2096,2097]],"areaCode":2213500},{"arcs":[[2098,-2087,-2095,2099]],"areaCode":2213600},{"arcs":[[2100,2101,2102,2103,-2100,-2094,2104,2105,2106,2107,-2031]],"areaCode":2213700},{"arcs":[[2108,2109,2110,2111,2112,2113]],"areaCode":2310100},{"arcs":[[2114,2115,-2112,2116]],"areaCode":2310200},{"arcs":[[2117,-2115,2118,2119,2120,2121,2122]],"areaCode":2310300},{"arcs":[[2123,2124,2125,2126,-2120]],"areaCode":2310400},{"arcs":[[2127,2128,2129,2130,2131,-2125]],"areaCode":2310500},{"arcs":[[-2117,-2111,2132,2133,2134,-2128,-2124,-2119]],"areaCode":2310600},{"arcs":[[2135,-2133,-2110,2136,2137]],"areaCode":2310700},{"arcs":[[2138,2139,-2138,2140]],"areaCode":2310800},{"arcs":[[-2134,-2136,-2140,2141,2142,2143]],"areaCode":2310900},{"arcs":[[-2129,-2135,-2144,2144,2145,2146,2147]],"areaCode":2311000},{"arcs":[[2148]],"areaCode":2311100},{"arcs":[[2149]],"areaCode":2311100},{"arcs":[[-2143,2150,2151,2152,2153,2154,-2145]],"areaCode":2311100},{"arcs":[[2155,2156,2157,-2151,-2142,-2139]],"areaCode":2311200},{"arcs":[[2158,2159,2160,-2113,-2116,-2118,2161,2162]],"areaCode":2311300},{"arcs":[[2163,2164,2165,2166,-2157,2167,2168]],"areaCode":2311400},{"arcs":[[2169,2170,2171,-2114,-2161]],"areaCode":2311500},{"arcs":[[-2172,2172,-2168,-2156,-2141,-2137,-2109]],"areaCode":2311600},{"arcs":[[2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186]],"areaCode":2321100},{"arcs":[[2187,2188,2189,2190,2191,2192,2193,2194]],"areaCode":2420100},{"arcs":[[2195,2196,2197,2198,2199,2200,2201,-2190]],"areaCode":2420400},{"arcs":[[2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213]],"areaCode":2520100},{"arcs":[[2214,2215,2216,2217,2218,2219,2220,2221,2222]],"areaCode":2620100},{"arcs":[[2223]],"areaCode":2621200},{"arcs":[[2224]],"areaCode":2621200},{"arcs":[[2225,2226,2227,2228,2229]],"areaCode":2621200},{"arcs":[[2230,2231,2232,2233,2234,2235,2236,2237,2238]],"areaCode":2621300},{"arcs":[[2239,2240,2241,2242,2243],[2244],[2245]],"areaCode":2621400},{"arcs":[[-2237,2246,-2217,2247]],"areaCode":2640700},{"arcs":[[2248,-2222,2249,-2228]],"areaCode":2646500},{"arcs":[[2250,2251,2252,2253,2254]],"areaCode":2710200},{"arcs":[[2255,2256,2257,2258,2259]],"areaCode":2710300},{"arcs":[[2260]],"areaCode":2710400},{"arcs":[[2261]],"areaCode":2710400},{"arcs":[[2262]],"areaCode":2710400},{"arcs":[[2263,2264,-2260,2265,2266]],"areaCode":2710400},{"arcs":[[-2266,-2259,2267,2268,2269,2270,2271]],"areaCode":2710600},{"arcs":[[2272,-2267,-2272,2273]],"areaCode":2710700},{"arcs":[[2274,2275,2276,-2274,-2271,2277]],"areaCode":2710800},{"arcs":[[2278,2279,2280,2281,2282,2283]],"areaCode":2710900},{"arcs":[[2284,-2283,2285,-2278,-2270]],"areaCode":2711100},{"arcs":[[2286,2287,-2256,-2265,2288]],"areaCode":2711300},{"arcs":[[2289,2290,2291,-2251,2292,2293,2294]],"areaCode":2711400},{"arcs":[[2295,2296,-2279,2297,2298]],"areaCode":2711500},{"arcs":[[2299,-2280,-2297,2300,2301,2302]],"areaCode":2711600},{"arcs":[[2303,2304,2305,-2252,-2292]],"areaCode":2711700},{"arcs":[[-2299,2306,-2253,-2306,2307,2308]],"areaCode":2711800},{"arcs":[[2309,2310,2311,-2281,-2300]],"areaCode":2711900},{"arcs":[[2312,2313,2314,2315,2316,2317,-2311]],"areaCode":2712000},{"arcs":[[-2310,-2303,2318,2319,-2313]],"areaCode":2712100},{"arcs":[[-2282,-2312,-2318,2320,-2275,-2286]],"areaCode":2712200},{"arcs":[[-2294,2321,-2257,-2288,2322,2323,2324]],"areaCode":2712300},{"arcs":[[-2308,-2305,2325,2326,2327,2328]],"areaCode":2712400},{"arcs":[[2329]],"areaCode":2712500},{"arcs":[[-2317,2330,2331,-2276,-2321]],"areaCode":2712500},{"arcs":[[2332]],"areaCode":2712500},{"arcs":[[-2319,-2302,2333,2334,2335]],"areaCode":2712600},{"arcs":[[2336,-2268,-2258,-2322,-2293,-2255]],"areaCode":2712700},{"arcs":[[-2298,-2284,-2285,-2269,-2337,-2254,-2307]],"areaCode":2712800},{"arcs":[[2337]],"areaCode":2714100},{"arcs":[[-2316,2338,2339,2340,-2331]],"areaCode":2714100},{"arcs":[[2341,2342,2343,2344,2345]],"areaCode":2714200},{"arcs":[[2346,2347,2348,-2346]],"areaCode":2714300},{"arcs":[[2349,2350]],"areaCode":2714400},{"arcs":[[2351,2352]],"areaCode":2714400},{"arcs":[[-2340,2353,-2344,2354,2355,2356,2357]],"areaCode":2714400},{"arcs":[[2358]],"areaCode":2714400},{"arcs":[[2359,2360,2361,-2355,-2343]],"areaCode":2714500},{"arcs":[[2362,-2347,-2345,-2354,-2339,-2315,2363]],"areaCode":2714600},{"arcs":[[2364,2365,2366,-2348,-2363,2367],[2368]],"areaCode":2714700},{"arcs":[[2369]],"areaCode":2810100},{"arcs":[[2370]],"areaCode":2810100},{"arcs":[[2371]],"areaCode":2810100},{"arcs":[[2372]],"areaCode":2810100},{"arcs":[[2373,2374,2375,2376]],"areaCode":2810100},{"arcs":[[2377]],"areaCode":2810200},{"arcs":[[2378,2379,2380,-2375]],"areaCode":2810200},{"arcs":[[2381]],"areaCode":2810500},{"arcs":[[2382,2383,2384,2385]],"areaCode":2810500},{"arcs":[[-2384,2386,2387,2388]],"areaCode":2810600},{"arcs":[[-2388,2389,2390,2391,2392]],"areaCode":2810700},{"arcs":[[2393]],"areaCode":2810800},{"arcs":[[2394,2395,2396,-2391]],"areaCode":2810800},{"arcs":[[2397,2398,2399,-2376,-2381,2400,-2385,-2389,-2393,2401,2402,2403]],"areaCode":2810900},{"arcs":[[2404]],"areaCode":2811000},{"arcs":[[2405]],"areaCode":2811000},{"arcs":[[2406]],"areaCode":2811000},{"arcs":[[2407,-2386,-2401,-2380]],"areaCode":2811000},{"arcs":[[-2402,-2392,-2397,2408,2409,2410]],"areaCode":2811100},{"arcs":[[2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422]],"areaCode":2920700},{"arcs":[[2423]],"areaCode":3020600},{"arcs":[[2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435]],"areaCode":3020600},{"arcs":[[2436]],"areaCode":3120100},{"arcs":[[2437,2438,2439,2440,2441,2442,2443,2444,2445,2446]],"areaCode":3120100},{"arcs":[[2447,2448,2449,2450,2451]],"areaCode":3139000},{"arcs":[[2452,2453,2454,2455,2456,2457,2458,2459,2460,2461]],"areaCode":3310100},{"arcs":[[2462,2463,2464,-2456]],"areaCode":3310200},{"arcs":[[2465]],"areaCode":3310300},{"arcs":[[2466]],"areaCode":3310300},{"arcs":[[2467]],"areaCode":3310300},{"arcs":[[2468,2469,2470,-2463,-2455,2471]],"areaCode":3310300},{"arcs":[[2472]],"areaCode":3310400},{"arcs":[[-2465,2473,2474,2475,2476,-2457]],"areaCode":3310400},{"arcs":[[2477,2478,2479,2480]],"areaCode":3410100},{"arcs":[[2481,2482,2483,-2479,2484,2485,2486]],"areaCode":3410200},{"arcs":[[2487]],"areaCode":3410300},{"arcs":[[2488]],"areaCode":3410300},{"arcs":[[2489]],"areaCode":3410300},{"arcs":[[2490]],"areaCode":3410300},{"arcs":[[2491,2492,2493]],"areaCode":3410300},{"arcs":[[2494,2495,2496,-2480,-2484]],"areaCode":3410300},{"arcs":[[-2485,-2478,2497,2498,2499]],"areaCode":3410400},{"arcs":[[-2486,-2500,2500,2501]],"areaCode":3410500},{"arcs":[[2502,2503,2504,-2487,-2502,2505,2506,2507]],"areaCode":3410600},{"arcs":[[2508,2509,2510]],"areaCode":3410700},{"arcs":[[2511,2512,-2492]],"areaCode":3410700},{"arcs":[[2513,2514,2515,2516]],"areaCode":3410700},{"arcs":[[-2494,2517,-2496,2518,-2482,-2505,2519,2520,2521]],"areaCode":3410700},{"arcs":[[2522,2523]],"areaCode":3410800},{"arcs":[[-2506,-2501,-2499,2524,2525,2526]],"areaCode":3410800},{"arcs":[[2527,2528,2529,2530,2531]],"areaCode":3620500},{"arcs":[[2532,-2531,2533,2534]],"areaCode":3620600},{"arcs":[[-2534,-2530,2535,2536,2537,2538,2539,2540,2541,2542,2543]],"areaCode":3620700},{"arcs":[[2544,2545,-2538,2546,2547,2548,2549,2550,2551]],"areaCode":3620800},{"arcs":[[-2540,2552,2553,2554]],"areaCode":3620800},{"arcs":[[2555,2556,2557,2558,2559,2560,2561,2562,-2547,-2537,2563]],"areaCode":3636800},{"arcs":[[2564]],"areaCode":3638700},{"arcs":[[2565,2566,2567,-2559,2568]],"areaCode":3638700},{"arcs":[[2569]],"areaCode":3638800},{"arcs":[[2570]],"areaCode":3638800},{"arcs":[[-2568,2571,2572,2573,2574,2575,-2560]],"areaCode":3638800},{"arcs":[[-2546,2576,-2553,-2539]],"areaCode":3646800},{"arcs":[[-2554,-2577,-2545,2577,2578]],"areaCode":3648900},{"arcs":[[2579]],"areaCode":4010100},{"arcs":[[2581,2582,2583],[2580]],"areaCode":4010100},{"arcs":[[2584,2585,2586,2587]],"areaCode":4010300},{"arcs":[[2588]],"areaCode":4010300},{"arcs":[[2589]],"areaCode":4010300},{"arcs":[[2590]],"areaCode":4010300},{"arcs":[[2591]],"areaCode":4010300},{"arcs":[[2592,2593,2594]],"areaCode":4010500},{"arcs":[[-2583,2595,2596,-2593,2597]],"areaCode":4010600},{"arcs":[[2598]],"areaCode":4010600},{"arcs":[[2599]],"areaCode":4010600},{"arcs":[[2600]],"areaCode":4010700},{"arcs":[[2601,2602]],"areaCode":4010700},{"arcs":[[2603,2604,2605,2606,2607,2608,2609,2610,2611,-2596,-2582]],"areaCode":4010700},{"arcs":[[-2594,-2597,-2612,2612,2613]],"areaCode":4010800},{"arcs":[[2614,-2613,-2611,2615,2616,2617,2618,-2585]],"areaCode":4010900},{"arcs":[[2619]],"areaCode":4013100},{"arcs":[[2621]],"areaCode":4013100},{"arcs":[[2622]],"areaCode":4013100},{"arcs":[[2623,2624,2625,2626,2627,2628]],"areaCode":4013100},{"arcs":[[2629,2630,2631,2632,2633,2634,2635,-2627]],"areaCode":4013200},{"arcs":[[-2635,2636,2637,2638,2639]],"areaCode":4013300},{"arcs":[[2640,2641,2642,2643,-2637,-2634]],"areaCode":4013400},{"arcs":[[2644]],"areaCode":4013500},{"arcs":[[2645,2646,2647]],"areaCode":4013500},{"arcs":[[2648]],"areaCode":4013500},{"arcs":[[2649]],"areaCode":4013500},{"arcs":[[2650]],"areaCode":4013500},{"arcs":[[-2644,2651,-2638]],"areaCode":4013600},{"arcs":[[-2639,-2652,-2643,2652,2653,2654,2655,2656,-2646,2657]],"areaCode":4013700},{"arcs":[[2658]],"areaCode":4220900},{"arcs":[[2659]],"areaCode":4220900},{"arcs":[[2660]],"areaCode":4220900},{"arcs":[[2661]],"areaCode":4220900},{"arcs":[[2662]],"areaCode":4220900},{"arcs":[[2663]],"areaCode":4220900},{"arcs":[[2664]],"areaCode":4220900},{"arcs":[[2665]],"areaCode":4220900},{"arcs":[[2666]],"areaCode":4220900},{"arcs":[[2667]],"areaCode":4220900},{"arcs":[[2668]],"areaCode":4220900},{"arcs":[[2669]],"areaCode":4220900},{"arcs":[[2670]],"areaCode":4220900},{"arcs":[[2671]],"areaCode":4220900},{"arcs":[[2672]],"areaCode":4220900},{"arcs":[[2673]],"areaCode":4220900},{"arcs":[[2674]],"areaCode":4220900},{"arcs":[[2675]],"areaCode":4220900},{"arcs":[[2676]],"areaCode":4220900},{"arcs":[[2677]],"areaCode":4220900},{"arcs":[[2678]],"areaCode":4220900},{"arcs":[[2679]],"areaCode":4220900},{"arcs":[[2680]],"areaCode":4220900},{"arcs":[[2681]],"areaCode":4220900},{"arcs":[[2682]],"areaCode":4220900},{"arcs":[[2683]],"areaCode":4221200},{"arcs":[[2684]],"areaCode":4221200},{"arcs":[[2685]],"areaCode":4221200},{"arcs":[[2686]],"areaCode":4221200},{"arcs":[[2687]],"areaCode":4221200},{"arcs":[[2688]],"areaCode":4221200},{"arcs":[[2689]],"areaCode":4221200},{"arcs":[[2690]],"areaCode":4221200},{"arcs":[[2691]],"areaCode":4221200},{"arcs":[[2692]],"areaCode":4221200},{"arcs":[[2693]],"areaCode":4221200},{"arcs":[[2694]],"areaCode":4221200},{"arcs":[[2695]],"areaCode":4221200},{"arcs":[[2696]],"areaCode":4221200},{"arcs":[[2697]],"areaCode":4221200},{"arcs":[[2698]],"areaCode":4221200},{"arcs":[[2699]],"areaCode":4221200},{"arcs":[[2700]],"areaCode":4221200},{"arcs":[[2701,2702]],"areaCode":4221200},{"arcs":[[2703,2704,2705,2706]],"areaCode":4310100},{"arcs":[[2707,2708,2709,-2704,2710,2711]],"areaCode":4310200},{"arcs":[[2712]],"areaCode":4310300},{"arcs":[[2713]],"areaCode":4310300},{"arcs":[[-2706,2714,2715,2716,2717,2718]],"areaCode":4310300},{"arcs":[[-2710,2719,2720,2721,2722,2723,2724,-2715,-2705]],"areaCode":4310400},{"arcs":[[2725,2726,2727,-2711,-2707,-2719,2728,2729]],"areaCode":4310500},{"arcs":[[2730]],"areaCode":4320200},{"arcs":[[2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741]],"areaCode":4320200},{"arcs":[[2742]],"areaCode":4321500},{"arcs":[[2743]],"areaCode":4321500},{"arcs":[[2744]],"areaCode":4321500},{"arcs":[[2745]],"areaCode":4321500},{"arcs":[[2746]],"areaCode":4321500},{"arcs":[[2747]],"areaCode":4321500},{"arcs":[[2748]],"areaCode":4321500},{"arcs":[[2749]],"areaCode":4321500},{"arcs":[[2750]],"areaCode":4321500},{"arcs":[[2751]],"areaCode":4321500},{"arcs":[[2752]],"areaCode":4321500},{"arcs":[[2753]],"areaCode":4321500},{"arcs":[[2754]],"areaCode":4321500},{"arcs":[[2755]],"areaCode":4321500},{"arcs":[[2756]],"areaCode":4321500},{"arcs":[[2757]],"areaCode":4321500},{"arcs":[[2758]],"areaCode":4321500},{"arcs":[[2761]],"areaCode":4321500},{"arcs":[[2762,2763]],"areaCode":4321500},{"arcs":[[2764]],"areaCode":4321500},{"arcs":[[2765]],"areaCode":4321500},{"arcs":[[2766]],"areaCode":4321500},{"arcs":[[2767,2768]],"areaCode":4321500},{"arcs":[[2769]],"areaCode":4321500},{"arcs":[[2770]],"areaCode":4321500},{"arcs":[[2771]],"areaCode":4321500},{"arcs":[[2772]],"areaCode":4321500},{"arcs":[[2773,2774]],"areaCode":4321500},{"arcs":[[2775]],"areaCode":4321500},{"arcs":[[2776,2777,2778,-2734,2779,2780,2781,2782,2783]],"areaCode":4344700},{"arcs":[[2784]],"areaCode":4735700},{"arcs":[[2785]],"areaCode":4735800},{"arcs":[[2786]],"areaCode":4735800},{"arcs":[[2787]],"areaCode":120200},{"arcs":[[2788,2789,2790,2791]],"areaCode":120200},{"arcs":[[2792]],"areaCode":120300},{"arcs":[[2793]],"areaCode":120300},{"arcs":[[2794,-36,-30,2795,2796,2797]],"areaCode":120300},{"arcs":[[2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809]],"areaCode":120400},{"arcs":[[2810]],"areaCode":120500},{"arcs":[[2811,-65,2812]],"areaCode":120500},{"arcs":[[2813,2814,2815,2816,2817,2818,-96,2819]],"areaCode":120700},{"arcs":[[2820,2821,2822,2823,2824,2825,2826,2827,2828]],"areaCode":120900},{"arcs":[[2829,-2826,2830,2831,2832,2833,2834,2835,2836]],"areaCode":121000},{"arcs":[[2838]],"areaCode":121100},{"arcs":[[2839,2840,-52,2841],[2837]],"areaCode":121100},{"arcs":[[2842]],"areaCode":121200},{"arcs":[[2843,2844,2845,2846,2847]],"areaCode":121200},{"arcs":[[2848]],"areaCode":121300},{"arcs":[[2849,2850,2851,2852,2853],[2854]],"areaCode":121300},{"arcs":[[2855,2856,2857]],"areaCode":121400},{"arcs":[[2858,2859,-2837,2860,2861,2862]],"areaCode":121500},{"arcs":[[2863,2864,2865,2866,-2828,2867,-2859,2868,2869,2870,2871,2872,-2807]],"areaCode":121600},{"arcs":[[-2834,2873,2874,-34,-18,-14,2875,2876]],"areaCode":121700},{"arcs":[[-2872,2877,2878,2879,2880]],"areaCode":121800},{"arcs":[[2881,2882,2883,2884,2885]],"areaCode":121900},{"arcs":[[2886,2887,2888,2889,2890,2891,2892,2893,2894,2895]],"areaCode":122000},{"arcs":[[2896,2897,-2887,2898,2899]],"areaCode":122100},{"arcs":[[-2868,-2827,-2830,-2860]],"areaCode":122200},{"arcs":[[2900]],"areaCode":122300},{"arcs":[[2901]],"areaCode":122300},{"arcs":[[2902]],"areaCode":122300},{"arcs":[[2904]],"areaCode":122300},{"arcs":[[2905]],"areaCode":122300},{"arcs":[[2906,2907,2908],[2903]],"areaCode":122300},{"arcs":[[2909]],"areaCode":122300},{"arcs":[[2910]],"areaCode":122300},{"arcs":[[2911]],"areaCode":122300},{"arcs":[[2912]],"areaCode":122300},{"arcs":[[2913]],"areaCode":122300},{"arcs":[[2914]],"areaCode":122300},{"arcs":[[2915]],"areaCode":122300},{"arcs":[[2916]],"areaCode":122300},{"arcs":[[2917]],"areaCode":122300},{"arcs":[[2918]],"areaCode":122300},{"arcs":[[2919]],"areaCode":122300},{"arcs":[[2920,-2853,2921,-69,-25,2922,2923,2924]],"areaCode":122400},{"arcs":[[2925,-2880,2926,2927,2928,2929]],"areaCode":122500},{"arcs":[[-2879,2930,2931,2932,2933,-2927]],"areaCode":122600},{"arcs":[[-2871,2934,-2931,-2878]],"areaCode":122700},{"arcs":[[-2808,-2873,-2881,-2926,2935,2936,2937,2938,2939]],"areaCode":122800},{"arcs":[[-2866,2940,2941,2942]],"areaCode":122900},{"arcs":[[2943,-2813,-64,2944,2945]],"areaCode":123000},{"arcs":[[-2923,-24,-38,2946,2947]],"areaCode":123100},{"arcs":[[2948,-2947,-37,-32,-2875,2949]],"areaCode":123400},{"arcs":[[2950]],"areaCode":123500},{"arcs":[[2951,2952,-10,-35,-2795,2953,2954]],"areaCode":123500},{"arcs":[[2955]],"areaCode":123600},{"arcs":[[2956,-2789,2957,2958,2959,2960]],"areaCode":123600},{"arcs":[[2961,2962,2963,-2876,-13,-11,-2953,2964]],"areaCode":130300},{"arcs":[[-2877,-2964,2965,-2835]],"areaCode":130400},{"arcs":[[2966]],"areaCode":133100},{"arcs":[[2967]],"areaCode":133100},{"arcs":[[2968,2969,2970]],"areaCode":133100},{"arcs":[[2971]],"areaCode":133200},{"arcs":[[2972,2973,-2969,2974]],"areaCode":133200},{"arcs":[[2975,-2973,2976,2977]],"areaCode":133300},{"arcs":[[-2959,2978,-2978,2979,2980]],"areaCode":133400},{"arcs":[[-2790,-2957,2981,2982]],"areaCode":133700},{"arcs":[[-2791,-2983,2983,2984]],"areaCode":134300},{"arcs":[[-2984,-2982,-2961,2985,-77,2986]],"areaCode":134500},{"arcs":[[2987]],"areaCode":134700},{"arcs":[[2988,2989,-75,2990,2991,2992]],"areaCode":134700},{"arcs":[[2993]],"areaCode":136100},{"arcs":[[2994,2995,2996,2997]],"areaCode":136100},{"arcs":[[-2980,-2977,-2975,-2971,2998,-2996,2999]],"areaCode":136200},{"arcs":[[-2986,-2960,-2981,-3000,-2995,3000,-78]],"areaCode":136300},{"arcs":[[-3001,-2998,3001,-79]],"areaCode":136400},{"arcs":[[3002]],"areaCode":136700},{"arcs":[[3003]],"areaCode":136700},{"arcs":[[-2991,-82,3004,3005]],"areaCode":137000},{"arcs":[[3006]],"areaCode":137100},{"arcs":[[-3005,-81,3007,3008],[3009]],"areaCode":137100},{"arcs":[[3010,-2992,-3006,-3009,3011,3012]],"areaCode":139100},{"arcs":[[3013,-3013,3014,3015]],"areaCode":139200},{"arcs":[[3016,3017,-2993,-3011,-3014]],"areaCode":139300},{"arcs":[[3018,3019,3020,3021,-3017,-3016,3022,3023]],"areaCode":139400},{"arcs":[[3024,3025,-3021,3026]],"areaCode":139500},{"arcs":[[3027,3028,3029,-3025,3030]],"areaCode":139600},{"arcs":[[-73,3031,-3028,3032]],"areaCode":139700},{"arcs":[[-27,-74,-3033,-3031,3033]],"areaCode":139800},{"arcs":[[-28,-3034,3034,3035]],"areaCode":139900},{"arcs":[[3036,-3035,-3027,-3020,3037,3038]],"areaCode":140000},{"arcs":[[3039,-3038,-3019,3040,3041,3042,3043]],"areaCode":140100},{"arcs":[[-3041,-3024,3044]],"areaCode":140200},{"arcs":[[3045]],"areaCode":140200},{"arcs":[[-3043,3046,3047,3048]],"areaCode":140300},{"arcs":[[3049,-3048,3050,3051]],"areaCode":140400},{"arcs":[[3052]],"areaCode":140500},{"arcs":[[3053,-3052,3054]],"areaCode":140500},{"arcs":[[3055,3056,-3044,-3049,-3050,-3054,3057]],"areaCode":140600},{"arcs":[[3058,-3039,-3040,-3057,3059]],"areaCode":140700},{"arcs":[[-2797,3060,-3060,-3056,3061]],"areaCode":140800},{"arcs":[[-29,-3036,-3037,-3059,-3061,-2796]],"areaCode":140900},{"arcs":[[-2950,-2874,-2833,3062]],"areaCode":142300},{"arcs":[[3063,-2869,-2863,3064,3065,-2933]],"areaCode":142400},{"arcs":[[-2935,-2870,-3064,-2932]],"areaCode":142500},{"arcs":[[-2824,3066,3067,-2925,3068,3069]],"areaCode":142700},{"arcs":[[3070,-3069,-2924,-2948,-2949,-3063,-2832]],"areaCode":142800},{"arcs":[[-2825,-3070,-3071,-2831]],"areaCode":142900},{"arcs":[[-2861,-2836,-2966,-2963,3071]],"areaCode":143000},{"arcs":[[-3065,-2862,-3072,-2962,3072]],"areaCode":143100},{"arcs":[[-2928,-2934,-3066,-3073,-2965,-2952,3073,3074]],"areaCode":143200},{"arcs":[[-2930,3075,3076,3077,-2936]],"areaCode":143300},{"arcs":[[-2937,-3078,3078,3079]],"areaCode":143400},{"arcs":[[-3076,-2929,-3075,3080,3081]],"areaCode":143600},{"arcs":[[3082,-3079,-3077,-3082,3083,-2845]],"areaCode":143700},{"arcs":[[-2938,-3080,-3083,-2844,3084]],"areaCode":143800},{"arcs":[[-2799,3085]],"areaCode":145200},{"arcs":[[3086,-2805,3087]],"areaCode":145300},{"arcs":[[3088,-2802,3089,3090]],"areaCode":145400},{"arcs":[[3091,-3090,-2801,3092,-2892]],"areaCode":145500},{"arcs":[[3093,-3091,-3092,-2891]],"areaCode":145600},{"arcs":[[3094,-59,3095,3096,3097,3098,-2803,-3089,-3094,-2890,3099]],"areaCode":145700},{"arcs":[[-3099,3100,-3088,-2804]],"areaCode":145800},{"arcs":[[3101,3102,3103,-2864,-2806,-3087,-3101,-3098]],"areaCode":145900},{"arcs":[[3104,3105,-2942,3106,-3103]],"areaCode":146000},{"arcs":[[-3107,-2941,-2865,-3104]],"areaCode":146100},{"arcs":[[3107,-99,3108,-2829,-2867,-2943,-3106,3109]],"areaCode":146200},{"arcs":[[-98,3110,3111,-2821,-3109]],"areaCode":146300},{"arcs":[[-3093,-2800,-3086,-2810,3112,-2895,3113,-2893]],"areaCode":146400},{"arcs":[[-3114,-2894]],"areaCode":146500},{"arcs":[[3114,3115,-2888,-2898,3116]],"areaCode":146800},{"arcs":[[3117,3118,-2900,3119,3120,3121]],"areaCode":146900},{"arcs":[[3122,-3122,3123,3124]],"areaCode":147000},{"arcs":[[3125,-3124,-3121,3126,3127,3128,3129]],"areaCode":147100},{"arcs":[[-3120,-2899,-2896,-3113,-2809,-2940,3130,3131,-85,3132,-3127]],"areaCode":147200},{"arcs":[[-3084,-3081,-3074,-2955,3133,-2846]],"areaCode":148100},{"arcs":[[-3131,-2939,-3085,-2848,3134,3135]],"areaCode":148200},{"arcs":[[-3132,-3136,3136,-86]],"areaCode":148300},{"arcs":[[-88,3137,3138]],"areaCode":148500},{"arcs":[[-3128,-3133,-89,-3139,3139,3140]],"areaCode":148600},{"arcs":[[-3129,-3141,3141,3142]],"areaCode":148700},{"arcs":[[3143,3144,3145,-2856,3146]],"areaCode":151100},{"arcs":[[3147,3148,3149,3150,-3144]],"areaCode":151200},{"arcs":[[3151,-3125,-3126,3152,-3150]],"areaCode":151300},{"arcs":[[3153,-3118,-3123,-3152,-3149,3154]],"areaCode":151400},{"arcs":[[-3146,3155,3156,-2857]],"areaCode":151600},{"arcs":[[3157]],"areaCode":151700},{"arcs":[[3158]],"areaCode":151700},{"arcs":[[3159]],"areaCode":151700},{"arcs":[[3160,3161]],"areaCode":151800},{"arcs":[[-3162,3163],[3162]],"areaCode":151900},{"arcs":[[-3151,-3153,-3130,-3143,3164,-3156,-3145]],"areaCode":152000},{"arcs":[[3165,3166,3167,-54,3168]],"areaCode":154300},{"arcs":[[3169,-51,3170,3171,3172,-55,-3168]],"areaCode":154400},{"arcs":[[3173,3174,3175,3176,3177]],"areaCode":154500},{"arcs":[[3178,3179,3180,3181,-3176]],"areaCode":154600},{"arcs":[[3182,-3177,-3182,3183,-3166,3184,-2840]],"areaCode":154700},{"arcs":[[-3173,3185,3186,-56]],"areaCode":154900},{"arcs":[[3187,3188,3189,-57,-3187]],"areaCode":155000},{"arcs":[[3190,3191,-61]],"areaCode":155200},{"arcs":[[3192,-3191,-60,-3095,3193,-2883]],"areaCode":155500},{"arcs":[[-62,-3192,-3193,-2882,3194]],"areaCode":155900},{"arcs":[[-2884,-3194,-3100,-2889,-3116,3195,3196]],"areaCode":156000},{"arcs":[[-2885,-3197,3197,3198,3199]],"areaCode":156100},{"arcs":[[-3198,-3196,-3115,3200]],"areaCode":156200},{"arcs":[[-3199,-3201,-3117,-2897,-3119,-3154,3201]],"areaCode":156300},{"arcs":[[-3185,-3169,-53,-2841]],"areaCode":156400},{"arcs":[[-3030,3202,3203,-2989,-3018,-3022,-3026]],"areaCode":157100},{"arcs":[[-71,3204,-2945,-68,3205]],"areaCode":157500},{"arcs":[[3206]],"areaCode":157800},{"arcs":[[-2852,3207,-2946,-3205,-70,-2922]],"areaCode":157800},{"arcs":[[3208]],"areaCode":158100},{"arcs":[[3209]],"areaCode":158100},{"arcs":[[3210,3211,-2850,3212,-3067,-2823]],"areaCode":158100},{"arcs":[[-72,-3206,-67,3213,-3203,-3029,-3032]],"areaCode":158400},{"arcs":[[-3213,-2854,-2921,-3068]],"areaCode":158500},{"arcs":[[-3112,3214,-92,3215,-3211,-2822]],"areaCode":158600},{"arcs":[[-97,-2819,3216,-93,-3215,-3111]],"areaCode":160200},{"arcs":[[3217,3218,3219,-90,-3217,-2818]],"areaCode":160400},{"arcs":[[3220,3221,3222,3223,3224]],"areaCode":160700},{"arcs":[[3225,3226,-3222,3227]],"areaCode":160800},{"arcs":[[3228,-3226,3229]],"areaCode":160900},{"arcs":[[3230,3231,-3224,3232,-3219]],"areaCode":161000},{"arcs":[[3233,3234,3235,-2814,3236,3237]],"areaCode":163100},{"arcs":[[3238,3239,-3234,3240,3241]],"areaCode":163200},{"arcs":[[-3190,3242,3243,-3242,3244,3245,-3096,-58]],"areaCode":163300},{"arcs":[[-3241,-3238,3246,3247,3248,-3245]],"areaCode":163400},{"arcs":[[-3097,-3246,-3249,3249,-3110,-3105,-3102]],"areaCode":163500},{"arcs":[[3250,-94,-3108,-3250,-3248]],"areaCode":163600},{"arcs":[[-3237,-2820,-95,-3251,-3247]],"areaCode":163700},{"arcs":[[3251,3252,-3231,-3218,-2817]],"areaCode":163800},{"arcs":[[3253,-3252,-2816,3254]],"areaCode":163900},{"arcs":[[3255,3256,-3225,-3232,-3253,-3254,3257,3258]],"areaCode":164100},{"arcs":[[3259,-3230,-3228,-3221,-3257]],"areaCode":164200},{"arcs":[[3260,-3258,-3255,-2815,-3236,3261]],"areaCode":164300},{"arcs":[[3262,3263,-3262,-3235,-3240,3264]],"areaCode":164400},{"arcs":[[3265,-3259,-3261,-3264,3266]],"areaCode":164500},{"arcs":[[3267,3268,-3265,-3239,-3244,3269]],"areaCode":164600},{"arcs":[[3270,-3171,-50,3271,-3270,-3243,-3189]],"areaCode":164700},{"arcs":[[-3172,-3271,-3188,-3186]],"areaCode":164800},{"arcs":[[3272,-43,3273,-3267,-3263,-3269]],"areaCode":164900},{"arcs":[[3274,3275,-47,3276,3277]],"areaCode":166100},{"arcs":[[3278]],"areaCode":166200},{"arcs":[[3279]],"areaCode":166200},{"arcs":[[3280,3281,-3275,3282,3283]],"areaCode":166200},{"arcs":[[3284]],"areaCode":166300},{"arcs":[[3285]],"areaCode":166300},{"arcs":[[-2907,3286,-3281,3287]],"areaCode":166300},{"arcs":[[3288,-3283,-3278,3289,3290,3291]],"areaCode":166400},{"arcs":[[-3181,3292,-3291,-45,-3170,-3167,-3184]],"areaCode":166500},{"arcs":[[-3277,-46,-3290]],"areaCode":166700},{"arcs":[[3293,-44,-3273,-3268,-3272,-49]],"areaCode":166800},{"arcs":[[3294]],"areaCode":169100},{"arcs":[[3295]],"areaCode":169100},{"arcs":[[3296]],"areaCode":169100},{"arcs":[[3297]],"areaCode":169100},{"arcs":[[3298,-2908,-3288,-3284,-3289,3299,3300]],"areaCode":169100},{"arcs":[[3301,3302]],"areaCode":169100},{"arcs":[[-3300,-3292,-3293,-3180,3303]],"areaCode":169200},{"arcs":[[3304,-3302,3305,-3301,-3304,-3179,-3175,3306]],"areaCode":169300},{"arcs":[[-3307,-3174,3307]],"areaCode":169400},{"arcs":[[3308]],"areaCode":220100},{"arcs":[[3309]],"areaCode":220100},{"arcs":[[3310]],"areaCode":220100},{"arcs":[[3311]],"areaCode":220100},{"arcs":[[3312,3313,3314,3315,3316,3317,3318,3319,3320,3321]],"areaCode":220100},{"arcs":[[3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417]],"areaCode":220200},{"arcs":[[3418]],"areaCode":220300},{"arcs":[[3419]],"areaCode":220300},{"arcs":[[3420]],"areaCode":220300},{"arcs":[[3421]],"areaCode":220300},{"arcs":[[3423,3424,3425,3426,3427,3428],[3422],[3429]],"areaCode":220300},{"arcs":[[3430,3431,3432,-3318]],"areaCode":220400},{"arcs":[[-3321,3433,3434,3435,3436,3437]],"areaCode":220500},{"arcs":[[3438,3439,3440,3441,3442,3443,3444]],"areaCode":220500},{"arcs":[[3445,3446,3447,3448,3449,3450,-3316,3451,3452]],"areaCode":220600},{"arcs":[[3453,3454,3455,3456,3457]],"areaCode":220700},{"arcs":[[3458]],"areaCode":220800},{"arcs":[[3459,3460,3461,3462,3463,3464,3465]],"areaCode":220800},{"arcs":[[3466]],"areaCode":220900},{"arcs":[[-3436,3467,-3418,3468,3469,-3443,3470]],"areaCode":220900},{"arcs":[[-3317,-3451,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,-3327,3636,-3431]],"areaCode":221000},{"arcs":[[3637]],"areaCode":230100},{"arcs":[[3638,3639,3640,-3314,3641]],"areaCode":230100},{"arcs":[[3642]],"areaCode":230100},{"arcs":[[3643,-3440,3644,3645]],"areaCode":230300},{"arcs":[[3646,-3322,-3438,3647,3648]],"areaCode":230400},{"arcs":[[-3649,3649,-3441,-3644,3650]],"areaCode":230700},{"arcs":[[-3645,-3439,3651,3652]],"areaCode":230700},{"arcs":[[-3417,3653,3654,3655,3656,3657,-3469]],"areaCode":232100},{"arcs":[[-3657,3658,3659]],"areaCode":232300},{"arcs":[[3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,-3654,-3416]],"areaCode":234300},{"arcs":[[-3433,3690,-3325,3691,-3319]],"areaCode":236100},{"arcs":[[-3636,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,-3328]],"areaCode":236200},{"arcs":[[-3432,-3637,-3326,-3691]],"areaCode":236700},{"arcs":[[-3320,-3692,-3324,4081,-3434]],"areaCode":238100},{"arcs":[[-3435,-4082,-3323,-3468]],"areaCode":238400},{"arcs":[[-3650,-3648,-3437,-3471,-3442],[-3467]],"areaCode":238700},{"arcs":[[-3445,4082,-3652]],"areaCode":238700},{"arcs":[[4083,4084,-3639,4085,4086]],"areaCode":240100},{"arcs":[[-3452,-3315,-3641,4087]],"areaCode":240200},{"arcs":[[4088,4089,-3446,4090,-3455]],"areaCode":240500},{"arcs":[[4091,4092,-4087,4093,-3461]],"areaCode":240600},{"arcs":[[-3456,-4091,-3453,-4088,-3640,-4085,4094]],"areaCode":240800},{"arcs":[[4095]],"areaCode":241100},{"arcs":[[-3457,-4095,-4084,-4093,4096,4097]],"areaCode":241100},{"arcs":[[4098,-3428,4099,-4089,-3454]],"areaCode":241200},{"arcs":[[4100]],"areaCode":242300},{"arcs":[[4101,-3464,4102,4103]],"areaCode":242300},{"arcs":[[4104]],"areaCode":242300},{"arcs":[[4105]],"areaCode":242400},{"arcs":[[-4097,-4092,-3460,4106]],"areaCode":242400},{"arcs":[[-3465,-4102,4107]],"areaCode":242500},{"arcs":[[-3463,4108,-4103]],"areaCode":242600},{"arcs":[[4109,4110,4111,4112,4113]],"areaCode":244100},{"arcs":[[-3427,4114,4115,-3447,-4090,-4100]],"areaCode":244200},{"arcs":[[4116,4117,4118,-4112]],"areaCode":244300},{"arcs":[[4119,4120,-4110,4121,-4115,-3426]],"areaCode":244500},{"arcs":[[4122,4123,4124,-3424]],"areaCode":244600},{"arcs":[[-4116,-4122,-4114,4125,-3448]],"areaCode":245000},{"arcs":[[4126,4127,4128,4129,4130,4131,4132,4133,4134,4135]],"areaCode":320100},{"arcs":[[4136]],"areaCode":320200},{"arcs":[[4137]],"areaCode":320200},{"arcs":[[4138,4139,4140]],"areaCode":320200},{"arcs":[[4141,4142,4143,4144,4145,-4129,4146]],"areaCode":320200},{"arcs":[[4147,4148,4149,4150]],"areaCode":320300},{"arcs":[[-4146,4151,4152,4153,4154,4155,4156,-4130]],"areaCode":320500},{"arcs":[[-4154,4157,4158,4159,4160]],"areaCode":320600},{"arcs":[[4161]],"areaCode":320700},{"arcs":[[4163,4164,4165,4166,4167,4168,4169],[4162],[4170]],"areaCode":320700},{"arcs":[[4171]],"areaCode":320700},{"arcs":[[4172,4173,4174,4175,-4152,-4145]],"areaCode":320800},{"arcs":[[4176,4177,4178,-651,4179,4180,4181,4182,4183]],"areaCode":320900},{"arcs":[[4184]],"areaCode":321000},{"arcs":[[-4149,4185,4186,-4177,4187]],"areaCode":321000},{"arcs":[[4188]],"areaCode":321100},{"arcs":[[4189,4190,-4151,4191,-4174]],"areaCode":321100},{"arcs":[[4192,4193,4194,4195,-4117,-4111,-4121]],"areaCode":321300},{"arcs":[[-4196,4196,4197,-4135,4198,4199,4200,4201,-4118]],"areaCode":321400},{"arcs":[[-4176,4202,-4183,4203,-4181,4204,4205,-4160,4206,-4158,-4153]],"areaCode":321500},{"arcs":[[4207,-4199,-4134]],"areaCode":321600},{"arcs":[[-4200,-4208,-4133,4208,4209,-4156,4210,4211]],"areaCode":330100},{"arcs":[[4212,-4167,4213,-4127,4214,4215]],"areaCode":330200},{"arcs":[[-4215,-4136,-4198,4216]],"areaCode":330300},{"arcs":[[-4157,-4210,4217,-4131]],"areaCode":332100},{"arcs":[[-4218,-4209,-4132]],"areaCode":332200},{"arcs":[[-4211,-4155,-4161,-4206,4218,4219,4220,4221,4222]],"areaCode":336600},{"arcs":[[-4207,-4159]],"areaCode":338100},{"arcs":[[-4182,-4204]],"areaCode":340200},{"arcs":[[-4192,-4150,-4188,-4184,-4203,-4175]],"areaCode":344100},{"arcs":[[4223,-4190,-4173,-4144,4224]],"areaCode":346100},{"arcs":[[4225]],"areaCode":348200},{"arcs":[[4226,-4225,-4143]],"areaCode":348200},{"arcs":[[4227,4228,4229,4230,-4140,4231,-4147,-4128,-4214,-4166]],"areaCode":348300},{"arcs":[[-4230,4232,4233]],"areaCode":348400},{"arcs":[[-4233,-4229,4234,4235]],"areaCode":348500},{"arcs":[[-4125,4236,-4169,4237,-4193,-4120,-3425]],"areaCode":350100},{"arcs":[[4238,-4235,-4228,-4165]],"areaCode":350300},{"arcs":[[-4168,-4213,4239,-4194,-4238]],"areaCode":350600},{"arcs":[[-4170,-4237,-4124,4240]],"areaCode":350700},{"arcs":[[-4240,-4216,-4217,-4197,-4195]],"areaCode":352400},{"arcs":[[4241]],"areaCode":420200},{"arcs":[[4242]],"areaCode":420200},{"arcs":[[4243]],"areaCode":420200},{"arcs":[[4244]],"areaCode":420200},{"arcs":[[4245]],"areaCode":420200},{"arcs":[[4246]],"areaCode":420200},{"arcs":[[4247]],"areaCode":420200},{"arcs":[[4248]],"areaCode":420200},{"arcs":[[4249]],"areaCode":420200},{"arcs":[[4250]],"areaCode":420200},{"arcs":[[4254]],"areaCode":420200},{"arcs":[[4255]],"areaCode":420200},{"arcs":[[4256,4257,4258,4259,4260,4261,4262,4263]],"areaCode":420200},{"arcs":[[4264]],"areaCode":420300},{"arcs":[[4265]],"areaCode":420300},{"arcs":[[4266]],"areaCode":420300},{"arcs":[[4267]],"areaCode":420300},{"arcs":[[4268]],"areaCode":420300},{"arcs":[[4269]],"areaCode":420300},{"arcs":[[4270]],"areaCode":420300},{"arcs":[[4271]],"areaCode":420300},{"arcs":[[4272,4273,4274,4275]],"areaCode":420300},{"arcs":[[4276]],"areaCode":420300},{"arcs":[[4277]],"areaCode":420300},{"arcs":[[4278]],"areaCode":420300},{"arcs":[[4279]],"areaCode":420500},{"arcs":[[4280]],"areaCode":420500},{"arcs":[[4281,4282,4283,-4178,-4187]],"areaCode":420500},{"arcs":[[4284,4285,4286,4287,4288,4289,4290,4291,4292]],"areaCode":420600},{"arcs":[[-120,4293,4294,4295,-122]],"areaCode":420700},{"arcs":[[4296,4297,-4286,4298,4299,4300]],"areaCode":420800},{"arcs":[[4301,-111,4302,-109,4303,-113,4304,-4275]],"areaCode":420900},{"arcs":[[-4295,4305,4306,4307,4308]],"areaCode":421100},{"arcs":[[-4284,4309,-4263,4310,-652,-647,-4179]],"areaCode":421200},{"arcs":[[4311]],"areaCode":421400},{"arcs":[[4312]],"areaCode":421400},{"arcs":[[4313]],"areaCode":421400},{"arcs":[[4314,4315,4316,-4260]],"areaCode":421400},{"arcs":[[4317,-117,-645,-665]],"areaCode":421600},{"arcs":[[4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,-4293,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690]],"areaCode":430100},{"arcs":[[-4429,-4292,4691,4692,4693]],"areaCode":430200},{"arcs":[[4694,-4299,-4285,-4428,4695]],"areaCode":432100},{"arcs":[[-4296,-4309,4696,-4696,-4427,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,-123]],"areaCode":432200},{"arcs":[[-4308,5020,-4300,-4695,-4697]],"areaCode":432300},{"arcs":[[-541,5021,-539,5022,5023,5024,5025,5026,-533,5027,-531,5028,5029,5030,-527,5031,5032,5033,5034,5035,5036,-520,5037,-518,5038,5039,5040,-514,5041,5042,-511,5043,-509,5044,5045,5046,5047,5048,-503,5049,5050,5051,-499,5052,-497,5053,5054,5055,5056,5057,5058,5059,5060,-488,5061,-486,5062,-484,5063,-482,5064,5065,5066,5067,5068,-476,5069,-474,5070,5071,-471,5072,-469,5073,-467,5074,5075,5076,-463,5077,-461,5078,5079,5080,5081,5082,5083,-454,5084,5085,-451,5086,-449,5087,5088,5089,-445,5090,5091,5092,5093,5094,5095,5096,-437,5097,5098,5099,-433,5100,-431,5101,-429,5102,-427,5103,5104,5105,5106,5107,5108,5109,-419,5110,5111,5112,-415,5113,5114,5115,-411,5116,5117,-408,5118,5119,-405,5120,5121,5122,5123,5124,5125,5126,-397,5127,5128,5129,-393,5130,5131,-390,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,-379,5142,-377,5143,-375,5144,5145,-372,5146,5147,5148,-368,5149,-366,5150,5151,5152,-362,5153,5154,5155,-358,5156,-356,5157,-354,5158,5159,5160,5161,5162,5163,5164,5165,-345,5166,5167,5168,-341,5169,5170,5171,5172,5173,-335,5174,5175,5176,5177,5178,-329,5179,-327,5180,5181,5182,5183,5184,5185,-320,5186,-318,5187,5188,-315,5189,-313,5190,5191,5192,-309,5193,5194,5195,5196,5197,5198,-302,5199,-300,5200,-298,5201,-296,5202,5203,5204,5205,-291,5206,5207,-288,5208,5209,-285,5210,-283,5211,5212,-280,5213,5214,5215,-276,5216,5217,5218,5219,5220,-270,5221,-268,5222,5223,5224,-264,5225,5226,5227,5228,5229,5230,5231,-256,5232,5233,-253,5234,5235,-250,5236,5237,5238,-246,5239,5240,5241,5242,5243,5244,-239,5245,5246,-236,5247,5248,-233,5249,5250,-230,5251,5252,5253,-226,5254,5255,5256,5257,5258,5259,5260,5261,-217,5262,5263,-214,5264,-212,5265,5266,5267,-208,5268,5269,-205,5270,5271,5272,-201,5273,5274,5275,5276,5277,5278,5279,-193,5280,-191,5281,5282,5283,5284,5285,5286,-184,5287,5288,5289,-180,5290,5291,-177,5292,5293,5294,-173,5295,5296,5297,5298,5299,-167,5300,-165,5301,-163,5302,-161,5303,-159,5304,-157,5305,-155,5306,5307,5308,-151,5309,5310,-148,5311,5312,5313,5314,-143,5315,5316,-140,5317,-138,5318,-136,5319,5320,5321,5322,5323,5324,-129,5325,5326,5327,-125,5328,5329,5330,-5017,5331,5332,-5014,5333,5334,-5011,5335,-5009,5336,5337,5338,-5005,5339,-5003,5340,-5001,5341,-4999,5342,-4997,5343,5344,5345,5346,5347,5348,-4990,5349,5350,5351,5352,5353,-4984,5354,5355,-4981,5356,5357,5358,-4977,5359,-4975,5360,-4973,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,-4959,5374,-4957,5375,5376,5377,-4953,5378,5379,-4950,5380,5381,5382,5383,5384,5385,5386,-4942,5387,-4940,5388,-4938,5389,5390,5391,5392,-4933,5393,5394,-4930,5395,-4928,5396,5397,-4925,5398,-4923,5399,5400,-4920,5401,5402,5403,5404,5405,-4914,5406,-4912,5407,5408,5409,5410,5411,5412,5413,-4904,5414,5415,-4901,5416,-4899,5417,5418,5419,5420,-4894,5421,5422,5423,5424,-4889,5425,5426,5427,5428,-4884,5429,5430,5431,5432,-4879,5433,5434,5435,-4875,5436,5437,5438,-4871,5439,-4869,5440,5441,5442,5443,-4864,5444,-4862,5445,5446,5447,5448,5449,5450,-4855,5451,5452,-4852,5453,-4850,5454,5455,5456,-4846,5457,-4844,5458,5459,-4841,5460,-4839,5461,5462,5463,-4835,5464,5465,5466,5467,-4830,5468,5469,5470,-4826,5471,5472,-4823,5473,5474,5475,5476,-4818,5477,5478,-4815,5479,5480,5481,-4811,5482,-4809,5483,5484,-4806,5485,5486,5487,-4802,5488,5489,-4799,5490,-4797,5491,-4795,5492,-4793,5493,-4791,5494,-4789,5495,5496,5497,-4785,5498,-4783,5499,5500,-4780,5501,5502,5503,5504,5505,-4774,5506,-4772,5507,-4770,5508,5509,5510,5511,5512,-4764,5513,5514,5515,-4760,5516,5517,-4757,5518,5519,-4754,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,-4742,5531,5532,5533,-4738,5534,5535,-4735,5536,5537,5538,-4731,5539,-4729,5540,5541,5542,-4725,5543,5544,5545,5546,-4720,5547,5548,-4717,5549,5550,-4714,5551,5552,5553,5554,-4709,5555,5556,5557,-4705,5558,-4703,5559,-4701,5560,-4699,5561,-4426,5562,5563,-4423,5564,5565,5566,-4419,5567,-4417,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,-4402,5582,-4400,5583,-4398,5584,5585,5586,5587,-4393,5588,5589,5590,5591,-4388,5592,5593,-4385,5594,5595,-4382,5596,5597,5598,5599,-4377,5600,5601,5602,5603,5604,5605,5606,-4369,5607,5608,5609,5610,5611,5612,-4362,5613,5614,5615,-4358,5616,5617,5618,5619,-4353,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,-4340,5632,5633,-4337,5634,5635,-4334,5636,-4332,5637,-4330,5638,5639,-4327,5640,-4325,5641,-4323,5642,5643,-4320,5644,5645,-4690,5646,5647,5648,5649,5650,5651,5652,-4682,5653,5654,5655,5656,5657,5658,-4675,5659,-4673,5660,5661,5662,5663,5664,-4667,5665,5666,-4664,5667,5668,5669,-4660,5670,5671,-4657,5672,-4655,5673,-4653,5674,-4651,5675,-4649,5676,5677,-4646,5678,5679,5680,5681,-4641,5682,5683,-4638,5684,5685,5686,-4634,5687,-4632,5688,-4630,5689,5690,5691,5692,5693,5694,-4623,5695,5696,5697,5698,5699,5700,-4616,5701,5702,5703,5704,5705,-4610,5706,-4608,5707,-4606,5708,5709,5710,5711,5712,5713,-4599,5714,-4597,5715,-4595,5716,-4593,5717,5718,5719,-4589,5720,5721,-4586,5722,-4584,5723,-4582,5724,-4580,5725,5726,5727,-4576,5728,-4574,5729,5730,-4571,5731,-4569,5732,5733,5734,-4565,5735,5736,-4562,5737,5738,5739,5740,5741,5742,-4555,5743,5744,-4552,5745,5746,-4549,5747,5748,5749,-4545,5750,5751,-4542,5752,5753,-4539,5754,-4537,5755,5756,-4534,5757,5758,5759,5760,-4529,5761,-4527,5762,-4525,5763,-4523,5764,5765,5766,5767,5768,-4517,5769,5770,5771,-4513,5772,-4511,5773,-4509,5774,-4507,5775,5776,5777,5778,5779,-4501,5780,5781,5782,5783,5784,5785,5786,5787,-4492,5788,5789,-4489,5790,5791,5792,-4485,5793,-4483,5794,5795,-4480,5796,5797,-4477,5798,5799,-4474,5800,5801,-4471,5802,5803,5804,-4467,5805,-4465,5806,5807,5808,5809,-4460,5810,-4458,5811,5812,5813,5814,5815,5816,5817,5818,-4449,5819,5820,5821,5822,5823,-4443,5824,5825,5826,5827,5828,5829,5830,-4435,5831,-4433,5832,-4431,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,-642,5999,-640,6000,6001,6002,-636,6003,-634,6004,6005,6006,-630,6007,6008,-627,6009,-625,6010,-623,6011,6012,6013,-619,6014,6015,-616,6016,6017,-613,6018,6019,-610,6020,-608,6021,6022,6023,6024,6025,6026,-601,6027,-599,6028,6029,-596,6030,6031,-593,6032,-591,6033,-589,6034,6035,6036,-585,6037,6038,6039,6040,6041,-579,6042,6043,6044,6045,-574,6046,-572,6047,6048,-569,6049,-567,6050,-565,6051,6052,6053,6054,-560,6055,6056,6057,6058,-555,6059,-553,6060,6061,-550,6062,-548,6063,-546,6064,6065,-543,6066]],"areaCode":432400},{"arcs":[[6067,6068,6069,6070,-4287,-4298]],"areaCode":434100},{"arcs":[[6071,6072,-4301,-5021,-4307]],"areaCode":436100},{"arcs":[[6073,6074,-6068,-4297,-6073]],"areaCode":436200},{"arcs":[[6075]],"areaCode":440100},{"arcs":[[6076]],"areaCode":440100},{"arcs":[[6077]],"areaCode":440100},{"arcs":[[6078]],"areaCode":440100},{"arcs":[[6079,-4316,6080,6081,6082,-655]],"areaCode":440100},{"arcs":[[-112,-4302,-4274,6083]],"areaCode":440400},{"arcs":[[6084]],"areaCode":440400},{"arcs":[[-6082,6085,-4276,-4305,-118,-4318,-664,6086]],"areaCode":440600},{"arcs":[[-6083,-6087,-663,6087,-656]],"areaCode":442200},{"arcs":[[-657,-6088,-662,6088]],"areaCode":442400},{"arcs":[[-658,-6089,-666,-107,6089,6090]],"areaCode":444400},{"arcs":[[-6091,6091,6092,-659]],"areaCode":444500},{"arcs":[[-4311,-4262,6093,-653]],"areaCode":450100},{"arcs":[[-6094,-4261,-4317,-6080,-654]],"areaCode":450500},{"arcs":[[6094]],"areaCode":458100},{"arcs":[[6095]],"areaCode":458100},{"arcs":[[6096]],"areaCode":458100},{"arcs":[[6097]],"areaCode":458100},{"arcs":[[6098]],"areaCode":458100},{"arcs":[[6099]],"areaCode":458100},{"arcs":[[6100,-4253,6101,-4258]],"areaCode":458100},{"arcs":[[6102]],"areaCode":460600},{"arcs":[[6103]],"areaCode":460600},{"arcs":[[6104,-4264,-4310,-4283]],"areaCode":460600},{"arcs":[[6105]],"areaCode":520200},{"arcs":[[6106,6107,6108,6109,6110,6111]],"areaCode":520200},{"arcs":[[6112,-4220,6113,6114,6115,-1336,6116,-1334,6117,-1332,6118,-1330,6119,-1328,6120,6121,-1325,6122,-1323,6123,-1321,6124,-1319,6125,-1317,6126,-1315,6127,6128,-1312,6129,-1310,6130,6131,-1307,6132,-1305,6133,-1303,6134,-1301,6135,-1299,6136,-1297,6137,-1295,6138,-1293,6139,-1291,6140,-1289,6141,-1287,6142,-1285,6143,-1283,6144,-1281,6145,6146,-1278,6147,-1276,6148,-1274,6149,-1272,6150,-1270,6151,-1268,6152,-1266,6153,-1264,6154,-1262,6155,-1260,6156,6157,-1257,6158,-1255,6159,-1253,6160,-1251,6161,-1249,6162,-1247,6163,-1245,6164,-1243,6165,-1241,6166,-1239,6167,-1237,6168,-1235,6169,-1233,6170,-1231,6171,-1229,6172,-1227,6173,-1225,6174,-1223,6175,-1221,6176,-1219,6177,-1217,6178,-1215,6179,-1213,6180,-1211,6181,-1209,6182,-1207,6183,-1205,6184,-1203,6185,-1201,6186,-1199,6187,-1197,6188,-1195,6189,-1193,6190,-1191,6191,-1189,6192,-1187,6193,-1185,6194,6195,-1182,6196,-1180,6197,-1178,6198,-1176,6199,-1174,6200,-1172,6201,-1170,6202,-1168,6203,-1166,6204,-1164,6205,-1162,6206,-1160,6207,-1158,6208,-1156,6209,-1154,6210,-1152,6211,-1150,6212,-1148,6213,-1146,6214,-1144,6215,-1142,6216,-1140,6217,-1138,6218,-1136,6219,-1134,6220,-1132,6221,-1130,6222,-1128,6223,6224,-1125,6225,6226,-1122,6227,-1120,6228]],"areaCode":520300},{"arcs":[[-3375,6229,-3373,6230,6231,6232,-3369,6233,-3367,6234,6235,-3364,6236,-3362,6237,6238,6239,6240,-3357,6241,-3355,6242,6243,6244,-3351,6245,6246,-3348,6247,6248,6249,6250,-3343,6251,6252,-3340,6253,6254,6255,-3336,6256,-3334,6257,6258,6259,-3330,6260,6261,6262,6263,-4078,6264,6265,-4075,6266,6267,6268,6269,-4070,6270,6271,-4067,6272,-4065,6273,6274,6275,6276,6277,6278,6279,-4057,6280,6281,-4054,6282,-4052,6283,-4050,6284,6285,-4047,6286,6287,-4044,6288,-4042,6289,-4040,6290,6291,-4037,6292,6293,6294,6295,-4032,6296,6297,-4029,6298,6299,-4026,6300,6301,-4023,6302,6303,6304,-4019,6305,-4017,6306,-4015,6307,-4013,6308,6309,-4010,6310,6311,-4007,6312,6313,6314,6315,6316,6317,-4000,6318,6319,-3997,6320,-3995,6321,6322,6323,-3991,6324,-3989,6325,6326,6327,6328,6329,6330,-3982,6331,6332,6333,6334,6335,6336,6337,6338,-3973,6339,-3971,6340,-3969,6341,6342,6343,-3965,6344,6345,6346,6347,6348,-3959,6349,6350,-3956,6351,6352,6353,-3952,6354,-3950,6355,-3948,6356,6357,-3945,6358,6359,6360,6361,6362,6363,6364,6365,6366,-3935,6367,-3933,6368,6369,6370,6371,6372,-3927,6373,-3925,6374,6375,6376,-3921,6377,-3919,6378,-3917,6379,6380,-3914,6381,6382,6383,6384,6385,6386,6387,6388,-3905,6389,6390,6391,6392,-3900,6393,6394,-3897,6395,6396,-3894,6397,6398,6399,6400,6401,-3888,6402,6403,6404,6405,6406,6407,6408,6409,-3879,6410,6411,6412,6413,6414,6415,-3872,6416,-3870,6417,6418,-3867,6419,6420,6421,-3863,6422,-3861,6423,-3859,6424,6425,-3856,6426,6427,-3853,6428,6429,6430,6431,-3848,6432,6433,6434,6435,-3843,6436,-3841,6437,6438,-3838,6439,6440,6441,6442,-3833,6443,6444,6445,6446,6447,-3827,6448,6449,6450,-3823,6451,-3821,6452,-3819,6453,6454,-3816,6455,6456,6457,6458,6459,6460,-3809,6461,6462,-3806,6463,-3804,6464,-3802,6465,-3800,6466,6467,6468,6469,6470,-3794,6471,-3792,6472,-3790,6473,6474,-3787,6475,6476,6477,6478,6479,6480,-3780,6481,-3778,6482,-3776,6483,-3774,6484,-3772,6485,6486,-3769,6487,-3767,6488,6489,-3764,6490,6491,6492,-3760,6493,6494,6495,-3756,6496,6497,6498,-3752,6499,6500,6501,-3748,6502,6503,6504,-3744,6505,6506,-3741,6507,6508,6509,6510,-3736,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,-3725,6521,-3723,6522,6523,6524,6525,6526,-3717,6527,6528,6529,6530,-3712,6531,6532,6533,6534,6535,6536,-3705,6537,-3703,6538,6539,6540,6541,-3698,6542,-3696,6543,-3694,6544,6545,6546,6547,6548,6549,6550,-3629,6551,6552,-3626,6553,6554,6555,6556,-3621,6557,-3619,6558,-3617,6559,-3615,6560,-3613,6561,6562,-3610,6563,-3608,6564,6565,6566,6567,6568,6569,-3601,6570,6571,6572,6573,6574,6575,6576,-3593,6577,-3591,6578,6579,-3588,6580,-3586,6581,6582,6583,-3582,6584,6585,-3579,6586,-3577,6587,6588,-3574,6589,6590,-3571,6591,6592,-3568,6593,6594,6595,6596,-3563,6597,6598,6599,-3559,6600,-3557,6601,6602,6603,-3553,6604,-3551,6605,6606,-3548,6607,6608,-3545,6609,6610,6611,-3541,6612,-3539,6613,-3537,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,-3520,6630,6631,6632,-3516,6633,6634,-3513,6635,-3511,6636,-3509,6637,6638,6639,-3505,6640,6641,6642,-3501,6643,-3499,6644,6645,-3496,6646,-3494,6647,6648,-3491,6649,-3489,6650,6651,-3486,6652,-3484,6653,6654,-3481,6655,6656,6657,-3477,6658,-3475,6659,-3473,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,-3688,8474,8475,8476,8477,8478,-3682,8479,-3680,8480,8481,8482,8483,8484,8485,-3673,8486,-3671,8487,8488,-3668,8489,8490,8491,8492,8493,-3662,8494,8495,8496,8497,8498,-3411,8499,8500,-3408,8501,8502,8503,8504,-3403,8505,-3401,8506,8507,-3398,8508,-3396,8509,8510,8511,8512,-3391,8513,8514,-3388,8515,8516,8517,8518,-3383,8519,-3381,8520,8521,8522,8523,8524]],"areaCode":520400},{"arcs":[[8525]],"areaCode":520600},{"arcs":[[8526,8527,8528,8529,8530]],"areaCode":520600},{"arcs":[[8531,-649,-661,8532,8533,8534,8535,-1541,8536,-1539,8537,-1537,8538,-1535,8539,8540,-1532,8541,-1530,8542,-1528,8543,-1526,8544,-1524,8545,-1522,8546,-1520,8547,-1518,8548,-1516,8549,-1514,8550,-1512,8551,8552,-6115]],"areaCode":520700},{"arcs":[[-4126,-4113,-4119,-4202,8553,8554,8555,-7439,8556,-7437,8557,8558,-7434,8559,8560,-7431,8561,8562,8563,-7427,8564,8565,-7424,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,-7413,8576,-7411,8577,8578,8579,-7407,8580,-7405,8581,8582,8583,8584,-7400,8585,8586,8587,-7396,8588,-7394,8589,8590,8591,-7390,8592,-7388,8593,8594,8595,8596,-7383,8597,8598,8599,-7379,8600,8601,8602,8603,8604,-7373,8605,8606,-7370,8607,8608,8609,-7366,8610,-7364,8611,8612,8613,8614,8615,-7358,8616,-7356,8617,-7354,8618,8619,8620,-7350,8621,8622,-7347,8623,8624,8625,8626,8627,-7341,8628,-7339,8629,8630,-7336,8631,8632,-7333,8633,-7331,8634,8635,-7328,8636,8637,8638,8639,-7323,8640,-7321,8641,8642,8643,-7317,8644,8645,8646,8647,-7312,8648,-7310,8649,8650,-7307,8651,8652,-7304,8653,8654,8655,-7300,8656,8657,8658,8659,-7295,8660,-7293,8661,8662,8663,-7289,8664,-7287,8665,8666,8667,8668,-7282,8669,8670,8671,8672,8673,-7276,8674,8675,-7273,8676,-7271,8677,-7269,8678,8679,8680,8681,8682,8683,8684,-7261,8685,8686,8687,8688,-7256,8689,8690,8691,-7252,8692,-7250,8693,8694,8695,-7246,8696,8697,8698,-7242,8699,8700,8701,8702,8703,8704,-7235,8705,8706,8707,-7231,8708,8709,8710,8711,-7226,8712,-7224,8713,-7222,8714,8715,8716,-7218,8717,-7216,8718,8719,-7213,8720,8721,8722,-7209,8723,8724,-7206,8725,8726,8727,8728,8729,-7200,8730,-7198,8731,8732,8733,8734,-7193,8735,8736,8737,-7189,8738,8739,8740,8741,8742,-7183,8743,8744,8745,-7179,8746,8747,8748,-7175,8749,8750,8751,-7171,8752,8753,-7168,8754,8755,8756,8757,8758,8759,-7161,8760,8761,-7158,8762,-7156,8763,8764,8765,-7152,8766,8767,8768,8769,8770,-7146,8771,-7144,8772,-7142,8773,8774,-7139,8775,8776,8777,-7135,8778,-7133,8779,8780,8781,8782,-7128,8783,8784,-7125,8785,-7123,8786,-7121,8787,8788,-7118,8789,-7116,8790,8791,8792,8793,-7111,8794,-7109,8795,8796,8797,8798,8799,-7103,8800,8801,-7100,8802,-7098,8803,8804,8805,-7094,8806,8807,8808,-7090,8809,-7088,8810,-7086,8811,8812,8813,-7082,8814,-7080,8815,-7078,8816,-7076,8817,8818,-7073,8819,-7071,8820,8821,-7068,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,-7057,8832,8833,-7054,8834,8835,-7051,8836,8837,-7048,8838,8839,8840,8841,8842,8843,-7041,8844,8845,8846,8847,8848,-7035,8849,8850,-7032,8851,-7030,8852,-7028,8853,8854,8855,-7024,8856,-7022,8857,8858,8859,8860,8861,8862,8863,8864,8865,-7012,8866,8867,-7009,8868,-7007,8869,8870,8871,8872,-7002,8873,8874,8875,-6998,8876,8877,8878,8879,-6993,8880,8881,-6990,8882,8883,-6987,8884,8885,-6984,8886,8887,8888,8889,8890,-6978,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,-6964,8904,-6962,8905,8906,8907,8908,-6957,8909,8910,8911,-6953,8912,-6951,8913,-6949,8914,-6947,8915,8916,-6944,8917,8918,8919,-6940,8920,8921,-6937,8922,8923,8924,-3449]],"areaCode":520900},{"arcs":[[8925,-900,8926,-8530,8927]],"areaCode":521100},{"arcs":[[-4222,8928,-6229,-1119,8929,-1117,8930,-1115,8931,-1113,8932,-1111,8933,-1109,8934,-1107,8935,-1105,8936,-1103,8937,-1101,8938,-1099,8939,-1097,8940,8941,-1094,8942,-1092,8943,-1090,8944,-1088,8945,-1086,8946,-1084,8947,-1082,8948,-1080,8949,-1078,8950,-1076,8951,-1074,8952,-1072,8953,-1070,8954,-1068,8955,-1066,8956,-1064,8957,-1062,8958,-1060,8959,-1058,8960,-1056,8961,-1054,8962,-1052,8963,-1050,8964,-1048,8965,-1046,8966,-1044,8967,-1042,8968,-1040,8969,-1038,8970,-1036,8971,-1034,8972,-1032,8973,-1030,8974,-1028,8975,-1026,8976,-1024,8977,-1022,8978,-1020,-673,8979]],"areaCode":521200},{"arcs":[[-8369,8980,8981,8982,8983,-8364,8984,8985,8986,8987,8988,8989,-8357,8990,-8355,8991,8992,8993,8994,-8350,8995,-8348,8996,-8346,8997,8998,-8343,8999,-8341,9000,-8339,9001,-8337,9002,9003,9004,9005,-8332,9006,-8330,9007,-8328,9008,9009,9010,9011,9012,-8322,9013,9014,9015,9016,9017,-8316,9018,9019,9020,9021,-8311,9022,-8309,9023,9024,9025,9026,-8304,9027,-8302,9028,-8300,9029,9030,-8297,9031,-8295,9032,9033,9034,9035,-8290,9036,9037,-8287,9038,-8285,9039,-8283,9040,-8281,9041,9042,9043,9044,-8276,9045,9046,9047,-8272,9048,-8270,9049,-8268,9050,-8266,9051,9052,-8263,9053,9054,-8260,9055,9056,9057,9058,9059,-8254,9060,9061,-8251,9062,9063,9064,-8247,9065,9066,9067,9068,-8242,9069,9070,-8239,9071,9072,9073,-8235,9074,9075,9076,9077,9078,-8229,9079,9080,9081,-8225,9082,9083,-8222,9084,9085,9086,9087,-8217,9088,9089,9090,-8213,9091,-8211,9092,-8209,9093,9094,-8206,9095,9096,-8203,9097,9098,9099,-8199,9100,9101,-8196,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,-8175,9122,9123,-8172,9124,-8170,9125,9126,9127,-8166,9128,9129,9130,9131,9132,9133,9134,9135,-8157,9136,9137,9138,9139,-8152,9140,-8150,9141,9142,9143,9144,-8145,9145,9146,9147,9148,9149,9150,-8138,9151,9152,-8135,9153,9154,9155,9156,-8130,9157,-8128,9158,-8126,9159,9160,-8123,9161,9162,-8120,9163,9164,-8117,9165,-8115,9166,9167,9168,-8111,9169,9170,9171,-8107,9172,-8105,9173,9174,9175,9176,-8100,9177,-8098,9178,9179,9180,9181,9182,-8092,9183,-8090,9184,-8088,9185,-8086,9186,-8084,9187,9188,-8081,9189,9190,9191,-8077,9192,9193,9194,9195,-8072,9196,9197,-8069,9198,-8067,9199,9200,9201,9202,9203,9204,-8060,9205,9206,9207,9208,9209,-8054,9210,-8052,9211,9212,-8049,9213,9214,9215,9216,9217,9218,9219,9220,-8040,9221,9222,9223,-8036,9224,9225,9226,9227,9228,9229,9230,-8028,9231,9232,9233,9234,-8023,9235,-8021,9236,9237,9238,9239,-8016,9240,-8014,9241,-8012,9242,9243,-8009,9244,9245,-8006,9246,-8004,9247,9248,9249,-8000,9250,9251,9252,-7996,9253,9254,9255,9256,9257,-7990,9258,-7988,9259,9260,9261,9262,9263,9264,9265,9266,-7979,9267,9268,-7976,9269,-7974,9270,-7972,9271,9272,9273,9274,9275,-7966,9276,9277,9278,-7962,9279,9280,9281,9282,-7957,9283,-7955,9284,9285,9286,-7951,9287,9288,9289,-7947,9290,9291,-7944,9292,-7942,9293,9294,9295,9296,-7937,9297,-7935,9298,-7933,9299,9300,9301,9302,9303,9304,9305,-7925,9306,9307,-7922,9308,-7920,9309,9310,9311,-7916,9312,9313,9314,9315,9316,9317,9318,9319,9320,-7906,9321,-7904,9322,9323,9324,9325,9326,-7898,9327,-7896,9328,9329,-7893,9330,9331,9332,-7889,9333,-7887,9334,-7885,9335,9336,9337,9338,9339,9340,9341,9342,-7876,9343,9344,-7873,9345,9346,9347,9348,9349,9350,9351,9352,9353,-7863,9354,9355,9356,9357,-7858,9358,9359,9360,-7854,9361,9362,-7851,9363,-7849,9364,-7847,9365,-7845,9366,9367,9368,9369,9370,9371,9372,-7837,9373,9374,-7834,9375,9376,9377,-7830,9378,9379,9380,9381,9382,9383,-7823,9384,9385,-7820,9386,9387,9388,-7816,9389,9390,-7813,9391,9392,9393,-7809,9394,-7807,9395,9396,9397,9398,9399,-7801,9400,-7799,9401,-7797,9402,9403,-7794,9404,-7792,9405,9406,9407,9408,-7787,9409,9410,-7784,9411,9412,9413,-7780,9414,9415,9416,9417,9418,9419,9420,-7772,9421,9422,9423,9424,-7767,9425,9426,-7764,9427,9428,-7761,9429,9430,-7758,9431,-7756,9432,-7754,9433,-7752,9434,9435,-7749,9436,9437,-7746,9438,-7744,9439,9440,-7741,9441,9442,-7738,9443,9444,9445,-7734,9446,-7732,9447,9448,9449,9450,9451,9452,-7725,9453,-7723,9454,-7721,9455,-7719,9456,-7717,9457,-7715,9458,9459,9460,9461,9462,-7709,9463,9464,-7706,9465,9466,-7703,9467,-7701,9468,-7699,9469,9470,-7696,9471,9472,9473,9474,9475,-7690,9476,9477,-7687,9478,-7685,9479,9480,9481,-7681,9482,9483,9484,9485,9486,-7675,9487,9488,9489,9490,9491,9492,9493,-7667,9494,9495,-7664,9496,9497,-7661,9498,9499,9500,-7657,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,-7646,9511,9512,-7643,9513,9514,9515,9516,-7638,9517,-7636,9518,9519,9520,-7632,9521,9522,9523,-7628,9524,9525,-7625,9526,9527,9528,-7621,9529,9530,9531,9532,-7616,9533,-7614,9534,-7612,9535,9536,9537,9538,9539,-7606,9540,9541,9542,9543,9544,9545,9546,9547,9548,-7596,9549,-7594,9550,9551,-7591,9552,9553,-7588,9554,9555,9556,-7584,9557,9558,9559,9560,9561,9562,9563,-7576,9564,9565,-7573,9566,-7571,9567,9568,9569,-7567,9570,9571,-7564,9572,9573,-7561,9574,-7559,9575,-7557,9576,-7555,9577,9578,9579,9580,-7550,9581,-7548,9582,9583,9584,-7544,9585,-7542,9586,9587,-7539,9588,9589,9590,9591,9592,9593,-7532,9594,-7530,9595,-7528,9596,9597,-7525,9598,-7523,9599,-7521,9600,-7519,9601,-7517,9602,9603,9604,9605,9606,-7511,9607,9608,-7508,9609,-7506,9610,-7504,9611,9612,-7501,9613,-7499,9614,9615,9616,-7495,9617,9618,-7492,9619,9620,9621,-7488,9622,9623,-7485,9624,-7483,9625,-7481,9626,9627,-7478,9628,9629,-7475,9630,-7473,9631,9632,-7470,9633,-7468,9634,9635,9636,-7464,9637,9638,9639,9640,-7459,9641,-7457,9642,9643,-7454,9644,-7452,9645,-7450,9646,9647,9648,9649,9650,-7444,9651,9652,-7441,9653,-8555,9654,-671,9655,-6108,9656,9657]],"areaCode":521300},{"arcs":[[9658,-1704,9659,-1702,9660,-1700,9661,-1698,9662,-1696,9663,-1694,9664,-1692,9665,-1690,9666,-1688,9667,-1686,9668,-1684,9669,-1682,9670,9671,-1679,9672,-1677,9673,-1675,9674,-1673,9675,-1671,9676,-1669,9677,-1667,9678,-1665,9679,-1663,9680,-1661,9681,-1659,9682,-1657,9683,-1655,9684,-1653,9685,-1651,9686,9687,9688,-1647,9689,-1645,9690,-1643,9691,9692,-1640,9693,-1638,9694,-1636,9695,9696,-1633,9697,-1631,9698,-1629,9699,-1627,9700,-1625,9701,-1623,9702,-1621,9703,-1619,9704,-1617,9705,9706,-1720,9707,-1718,9708,-1716,9709,-1714,9710,9711,-1711,9712,-1709,9713,9714,-1706]],"areaCode":521400},{"arcs":[[-4201,-4212,-4223,-8980,-672,-9655,-8554]],"areaCode":521500},{"arcs":[[-3450,-8925,9715,9716,9717,9718,9719,9720,9721,9722,9723,-6925,9724,9725,-6922,9726,9727,9728,9729,9730,-6916,9731,-6914,9732,-6912,9733,9734,-6909,9735,9736,9737,9738,-6904,9739,9740,-6901,9741,-6899,9742,-6897,9743,9744,9745,9746,9747,9748,9749,-6889,9750,9751,9752,-6885,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,-6873,9764,-6871,9765,-6869,9766,9767,9768,9769,-6864,9770,9771,9772,9773,-6859,9774,-6857,9775,-6855,9776,-6853,9777,9778,-6850,9779,9780,9781,-6846,9782,-6844,9783,9784,9785,9786,-6839,9787,9788,-6836,9789,-6834,9790,9791,9792,-6830,9793,9794,-6827,9795,9796,9797,-6823,9798,9799,9800,-6819,9801,-6817,9802,9803,-6814,9804,9805,9806,-6810,9807,-6808,9808,9809,9810,9811,-6803,9812,-6801,9813,-6799,9814,-6797,9815,9816,9817,9818,-6792,9819,9820,9821,9822,-6787,9823,9824,9825,9826,-6782,9827,9828,9829,-6778,9830,9831,-6775,9832,-6773,9833,-6771,9834,9835,9836,9837,9838,9839,-6764,9840,-6762,9841,9842,9843,9844,9845,-6756,9846,9847,-6753,9848,-6751,9849,9850,9851,-6747,9852,-6745,9853,9854,9855,9856,9857,9858,9859,9860,-6736,9861,9862,-6733,9863,9864,-6730,9865,-6728,9866,9867,-6725,9868,-6723,9869,-6721,9870,9871,9872,-6717,9873,9874,-6714,9875,9876,-6711,9877,-6709,9878,9879,9880,9881,9882,-6703,9883,9884,-6700,9885,-6698,9886,9887,9888,-6694,9889,9890,-6691,9891,-6689,9892,-6687,9893,-6685,9894,9895,9896,9897,-6680,9898,-6678,9899,-6676,9900,9901,-6673,9902,-6671,9903,-6669,9904,-6667,9905,9906,9907,-6663,9908,-6661,-3472]],"areaCode":530300},{"arcs":[[-670,9909,9910,-6109,-9656]],"areaCode":532700},{"arcs":[[9911,9912,9913,9914,9915,9916,9917,-8466,9918,9919,9920,-8462,9921,-8460,9922,9923,-8457,9924,9925,-8454,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,-8440,9939,-8438,9940,9941,-8435,9942,9943,9944,9945,-8430,9946,-8428,9947,-8426,9948,9949,9950,-8422,9951,-8420,9952,9953,-8417,9954,9955,9956,-8413,9957,-8411,9958,9959,9960,-8407,9961,9962,-8404,9963,9964,-8401,9965,-8399,9966,9967,-8396,9968,-8394,9969,9970,-8391,9971,9972,-8388,9973,-8386,9974,9975,9976,9977,9978,9979,-8379,9980,9981,9982,9983,9984,9985,9986,9987,9988,-9657,-6107,9989,-3655,-3690]],"areaCode":534600},{"arcs":[[-9911,9990,9991,9992,-8528,9993,-6110]],"areaCode":534800},{"arcs":[[-9990,-6112,9994,-3659,-3656]],"areaCode":534900},{"arcs":[[9995,9996,9997]],"areaCode":536100},{"arcs":[[-9910,-669,9998,9999,-9991]],"areaCode":536100},{"arcs":[[-9992,-10000,10000,-9998,10001]],"areaCode":536300},{"arcs":[[-901,-8926,-9996,-10001,-9999]],"areaCode":536600},{"arcs":[[-10002,-9997,-8928,-8529,-9993]],"areaCode":536800},{"arcs":[[-4221,-6113,-8929]],"areaCode":543400},{"arcs":[[-8553,-1510,10002,-1508,10003,-1506,10004,-1504,10005,-1502,10006,10007,-1499,10008,-1497,10009,-1495,10010,-1493,10011,-1491,10012,-1489,10013,-1487,10014,-1485,10015,-1483,10016,-1481,10017,-1479,10018,-1477,10019,-1475,10020,10021,-1472,10022,-1470,10023,-1468,10024,-1466,10025,-1464,10026,-1462,10027,-1460,10028,-1458,10029,-1456,10030,-1454,10031,-1452,10032,-1450,10033,-1448,10034,10035,-1445,10036,-1443,10037,-1441,10038,-1439,10039,-1437,10040,-1435,10041,-1433,10042,-1431,10043,-1429,10044,-1427,10045,-1425,10046,-1423,10047,-1421,10048,-1419,10049,-1417,10050,-1415,10051,-1413,10052,-1411,10053,-1409,10054,-1407,10055,-1405,10056,-1403,10057,-1401,10058,10059,-1398,10060,-1396,10061,-1394,10062,10063,-1391,10064,-1389,10065,-1387,10066,-1385,10067,-1383,10068,-1381,10069,-1379,10070,-1377,10071,-1375,10072,-1373,10073,-1371,10074,10075,-1368,10076,-1366,10077,-1364,10078,-1362,10079,-1360,10080,-1358,10081,-1356,10082,-1354,10083,-1352,10084,-1350,10085,-1348,10086,-1346,10087,-1344,10088,10089,-1341,10090,-1339,10091,-1337,-6116]],"areaCode":546300},{"arcs":[[-4219,-4205,-4180,-650,-8532,-6114]],"areaCode":546400},{"arcs":[[-643,10092,-5998,10093,-5996,10094,10095,-5993,10096,10097,10098,-5989,10099,10100,-5986,10101,10102,-5983,10103,10104,10105,10106,10107,10108,-5976,10109,-5974,10110,-5972,10111,-5970,10112,10113,-5967,10114,-5965,10115,-5963,10116,10117,10118,10119,-5958,10120,10121,-5955,10122,10123,10124,10125,-5950,10126,10127,10128,10129,10130,-5944,10131,10132,10133,10134,10135,10136,-5937,10137,10138,-5934,10139,-5932,10140,-5930,10141,-5928,10142,-5926,10143,10144,-5923,10145,-5921,10146,10147,10148,10149,10150,10151,-5914,10152,10153,10154,10155,10156,10157,10158,10159,10160,-5904,10161,10162,10163,10164,-5899,10165,-5897,10166,10167,10168,-5893,10169,-5891,10170,10171,10172,-5887,10173,-5885,10174,10175,10176,-5881,10177,-5879,10178,-5877,10179,-5875,10180,10181,10182,10183,10184,10185,-5868,10186,10187,10188,10189,-5863,10190,-5861,10191,-5859,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,-5848,10202,10203,10204,-5844,10205,10206,10207,-5840,10208,10209,-5837,10210,10211,-5834,10212,10213,10214,10215,10216,10217]],"areaCode":620100},{"arcs":[[10218,10219,10220,10221,10222,10223,10224]],"areaCode":620200},{"arcs":[[10225]],"areaCode":620500},{"arcs":[[-8534,10226,10227,10228,10229,10230,10231,10232],[10233]],"areaCode":620500},{"arcs":[[10234]],"areaCode":620600},{"arcs":[[10235,10236,10237,10238,10239,10240,10241,10242,10243],[10244],[10245],[10246],[10247]],"areaCode":620600},{"arcs":[[-4430,-4694,10248,10249,-10213]],"areaCode":620700},{"arcs":[[10250,10251,10252,-10236,10253,10254,10255]],"areaCode":620800},{"arcs":[[10256,10257,10258,10259,10260,10261]],"areaCode":620900},{"arcs":[[-10217,10262,-10238,10263,10264]],"areaCode":621000},{"arcs":[[-105,-644,-10218,-10265,10265,-10252,10266]],"areaCode":621100},{"arcs":[[-6092,-6090,-106,-10267,-10251,10267,10268,10269]],"areaCode":621200},{"arcs":[[-10250,10270,10271,10272,10273,-10259,10274,10275,-10214],[10276],[10277]],"areaCode":621300},{"arcs":[[-10215,-10276,10278,10279,10280,10281]],"areaCode":630100},{"arcs":[[-10263,-10216,-10282,10282,-10241,10283,-10239]],"areaCode":630200},{"arcs":[[-10266,-10264,-10237,-10253]],"areaCode":632100},{"arcs":[[10284,-10243,10285,10286,10287,10288,-1725,10289]],"areaCode":632200},{"arcs":[[-10280,10290,-10257,10291,-10287,10292]],"areaCode":632300},{"arcs":[[-10247]],"areaCode":632400},{"arcs":[[-10246]],"areaCode":632400},{"arcs":[[-10248]],"areaCode":632400},{"arcs":[[-10245]],"areaCode":632400},{"arcs":[[-10242,-10283,-10281,-10293,-10286],[-10235]],"areaCode":632400},{"arcs":[[-10256,10293,-10268]],"areaCode":634100},{"arcs":[[-8535,-10233,10294]],"areaCode":636100},{"arcs":[[10295]],"areaCode":636100},{"arcs":[[-660,-6093,-10270,10296,-10227,-8533]],"areaCode":636200},{"arcs":[[-10269,-10294,-10255,10297,-10228,-10297]],"areaCode":636300},{"arcs":[[10298,-1579,10299,-1577,10300,-1575,10301,-1573,10302,-1571,10303,-1569,10304,-1567,10305,-1565,10306,-1563,10307,-1561,10308,-1559,10309,-1557,10310,-1555,10311,-1553,10312,-1551,10313,-1549,10314,-1547,10315,10316,-1544,10317,-1542,-8536,-10295,-10232,10318,-1740,-1593,10319,-1591,10320,-1589,10321,10322,-1586,10323,-1584,10324,10325,-1581],[-10296]],"areaCode":636400},{"arcs":[[-10298,-10254,-10244,-10285,10326,10327,-10229],[-10226]],"areaCode":636500},{"arcs":[[-10234]],"areaCode":636500},{"arcs":[[-10231,10328,-1741,-10319]],"areaCode":636600},{"arcs":[[-10230,-10328,10329,-1742,-10329]],"areaCode":636700},{"arcs":[[-10278]],"areaCode":638100},{"arcs":[[-4693,10330,-10225,10331,-10273,10332,-10271,-10249]],"areaCode":638100},{"arcs":[[-10277]],"areaCode":638200},{"arcs":[[-10274,-10332,-10224,10333,-10260]],"areaCode":638200},{"arcs":[[-10292,-10262,10334,10335,10336,10337,10338,10339,-10288]],"areaCode":640100},{"arcs":[[-10279,-10275,-10258,-10291]],"areaCode":640200},{"arcs":[[-10334,-10223,10340,-10335,-10261]],"areaCode":640300},{"arcs":[[10341,-1729,-1744]],"areaCode":642600},{"arcs":[[-10330,-10327,-10290,-1730,-10342,-1743]],"areaCode":642800},{"arcs":[[-1612,-1746,10342,-9706,-1616,10343,-1614,10344]],"areaCode":646100},{"arcs":[[-4291,10345,10346,10347,10348,10349,-10219,-10331,-4692]],"areaCode":720100},{"arcs":[[10350,10351,10352,10353,-1756,-1767,10354,10355,10356,10357,10358]],"areaCode":720200},{"arcs":[[10359]],"areaCode":720400},{"arcs":[[10361]],"areaCode":720400},{"arcs":[[10362]],"areaCode":720400},{"arcs":[[10363,10364,10365,10366,10367,10368,10369,10370,10371,10372],[10360]],"areaCode":720400},{"arcs":[[10373,10374,10375,10376,10377,10378,10379,10380,-1764]],"areaCode":720500},{"arcs":[[10381,10382,10383,-1761,-1754]],"areaCode":720700},{"arcs":[[-10341,-10222,10385,10386,-10359,10387,10388,10389,10390,10391,-10336]],"areaCode":720800},{"arcs":[[10392]],"areaCode":720900},{"arcs":[[10393,10394,10395,-6070,10396,10397]],"areaCode":720900},{"arcs":[[10398,10399,10400,10401,10402,10403,-1758,10404,-10349,10405],[10406]],"areaCode":721000},{"arcs":[[10407,10408,10409,-10372,10410,-1751,10411,-10401,10412]],"areaCode":721100},{"arcs":[[10413,10414,10415,-10394]],"areaCode":721200},{"arcs":[[-6071,-10396,10416,10417,-10347,10418,10419,-4288]],"areaCode":721300},{"arcs":[[10420,-1749,10421,-10403]],"areaCode":721400},{"arcs":[[-10419,-10346,-4290,10422]],"areaCode":730100},{"arcs":[[-10420,-10423,-4289]],"areaCode":730300},{"arcs":[[10423,10424,-10406,-10348,-10418]],"areaCode":730800},{"arcs":[[-10407]],"areaCode":732200},{"arcs":[[-10422,-1759,-10404]],"areaCode":732200},{"arcs":[[10425,10426,-1762,-10384]],"areaCode":734200},{"arcs":[[-10355,-1766,10427,10428,10429,10430,10431]],"areaCode":736200},{"arcs":[[10432,10433,10434,10435,10436]],"areaCode":736400},{"arcs":[[10437,10438,10439,-10437,10440,10441,10442]],"areaCode":736700},{"arcs":[[10443,-10430,10444,10445,-10433,-10440]],"areaCode":736800},{"arcs":[[10446,10447,-10386,-10221]],"areaCode":740200},{"arcs":[[10448,10449,10450,10451,-10390]],"areaCode":740500},{"arcs":[[10452,-10353,-10385,-10351,-10387,-10448]],"areaCode":740700},{"arcs":[[-10350,-10405,-1757,-10354,-10453,-10447,-10220]],"areaCode":740800},{"arcs":[[10453,-10357,10454,10455,-10449,-10389]],"areaCode":742100},{"arcs":[[-10358,-10454,-10388]],"areaCode":742200},{"arcs":[[-10456,10456,10457,10458,10459,-10450]],"areaCode":742300},{"arcs":[[10460,10461,-10459]],"areaCode":744400},{"arcs":[[-10451,-10460,-10462,10462,-10438,10463]],"areaCode":744500},{"arcs":[[-10461,-10458,10464,-10431,-10444,-10439,-10463]],"areaCode":744600},{"arcs":[[-10356,-10432,-10465,-10457,-10455]],"areaCode":744700},{"arcs":[[-10381,10465,10466,-10428,-1765]],"areaCode":746100},{"arcs":[[10467,10468,-10375]],"areaCode":746400},{"arcs":[[10469,-10376,-10469,10470]],"areaCode":746500},{"arcs":[[10471,10472,-10471,-10468,-10374,-1763,-10427],[-1760]],"areaCode":746600},{"arcs":[[10473,10474,10475,10476,10477,10478,-10379,10479]],"areaCode":748100},{"arcs":[[10480,10481,-10476,10482]],"areaCode":748200},{"arcs":[[10483,10484,10485,-10483,-10475,10486]],"areaCode":748300},{"arcs":[[-10368,10487,-10487,-10474,10488,10489,10490]],"areaCode":748400},{"arcs":[[10491,10492,-10490,10493,-10377,-10470,-10473,10494]],"areaCode":750100},{"arcs":[[-10495,-10472,-10426,-10383,10495]],"areaCode":750200},{"arcs":[[10496,-10370,10497,-10492,-10496,-10382,-1753]],"areaCode":750300},{"arcs":[[-10489,-10480,-10378,-10494]],"areaCode":750400},{"arcs":[[-10369,-10491,-10493,-10498]],"areaCode":750500},{"arcs":[[-10412,-1750,-10421,-10402]],"areaCode":752100},{"arcs":[[-10371,-10497,-1752,-10411]],"areaCode":752200},{"arcs":[[10498,-10365,10499]],"areaCode":754100},{"arcs":[[10500,-10500,-10364,10501,10502]],"areaCode":754200},{"arcs":[[10503,-10503,10504,10505]],"areaCode":754300},{"arcs":[[10506,-10505,-10502,-10373,-10410]],"areaCode":754400},{"arcs":[[10507,-10506,-10507,-10409,10508,10509]],"areaCode":754500},{"arcs":[[10510,-10510,10511]],"areaCode":754600},{"arcs":[[10512,-10512,-10509,-10408,10513,-10399,-10425,10514,-10415]],"areaCode":754700},{"arcs":[[-10413,-10400,-10514]],"areaCode":754800},{"arcs":[[10515,-10397,-6069,-6075]],"areaCode":756100},{"arcs":[[-10416,-10515,-10424,-10417,-10395]],"areaCode":756400},{"arcs":[[10516,10517,10518,10519,10520,10521]],"areaCode":820100},{"arcs":[[10522]],"areaCode":820200},{"arcs":[[10523,10524,10525,10526,10527]],"areaCode":820200},{"arcs":[[10528,10529,10530,10531,10532]],"areaCode":820300},{"arcs":[[10533,10534,10535,10536,10537,10538,10539,10540,10541,10542]],"areaCode":820400},{"arcs":[[10543,10544,-10533,10545,10546,10547]],"areaCode":820500},{"arcs":[[10548,10549,-10543,10550]],"areaCode":820700},{"arcs":[[10551]],"areaCode":820800},{"arcs":[[10552,10553,10554,10555,10556,10557,10558]],"areaCode":820800},{"arcs":[[10559,10560,10561,10562]],"areaCode":821000},{"arcs":[[10563,10564,10565,10566,10567,10568,-10561]],"areaCode":821100},{"arcs":[[-10527,10569,10570,10571,-10481,-10486,10572]],"areaCode":821200},{"arcs":[[10573,10574,-10528,-10573,-10485]],"areaCode":821400},{"arcs":[[10576,-10574,-10484,-10488,-10367],[10575]],"areaCode":821500},{"arcs":[[-10521,10577,10578,-10548,10579,10580,10581]],"areaCode":821600},{"arcs":[[-10557,10582,10583,10584,10585,10586]],"areaCode":821700},{"arcs":[[10587,10588,-10553,10589,-10531],[-10552]],"areaCode":821900},{"arcs":[[10590,-10546,-10532,-10590,-10559,10591,-10564,-10560,10592]],"areaCode":822000},{"arcs":[[10593]],"areaCode":822100},{"arcs":[[10594,10595,10596,-10518,10597]],"areaCode":822100},{"arcs":[[10598,10599]],"areaCode":822200},{"arcs":[[10600,10601,10602,10603,10604,10605,10606,10607,10608]],"areaCode":822200},{"arcs":[[10609,10610,10611,10612,-10607]],"areaCode":822300},{"arcs":[[10613,-10586,10614,10615,-10566]],"areaCode":822400},{"arcs":[[-10571,10616,10617,10618,10619,10620,10621]],"areaCode":822500},{"arcs":[[-10570,-10526,10622,-10598,-10517,10623,-10617]],"areaCode":822600},{"arcs":[[10624,-10593,-10563,10625,-10549,10626,10627]],"areaCode":822700},{"arcs":[[10628]],"areaCode":822800},{"arcs":[[10629]],"areaCode":822800},{"arcs":[[10630,-10568,10631,10632,-10535],[10633]],"areaCode":822800},{"arcs":[[-10612,10634,10635,10636,-10554,-10589,10637,10638,10639]],"areaCode":822900},{"arcs":[[10640,10641,10642,10643,-10529,-10545]],"areaCode":823000},{"arcs":[[10644,-10580,-10547,-10591,-10625,10645,10646]],"areaCode":823100},{"arcs":[[-10604,10648]],"areaCode":823200},{"arcs":[[10649]],"areaCode":823200},{"arcs":[[10651,10652,10653,-10610,-10606,10654,-10599,10655],[10647]],"areaCode":823200},{"arcs":[[-10608,-10613,-10640,10656,-10642,10657,10658]],"areaCode":823300},{"arcs":[[10659,-10609,-10659,10660,10661,10662]],"areaCode":823400},{"arcs":[[-10558,-10587,-10614,-10565,-10592]],"areaCode":823500},{"arcs":[[10663,-10661,-10658,-10641,-10544,-10579]],"areaCode":823600},{"arcs":[[10664,-10662,-10664,-10578,-10520]],"areaCode":830200},{"arcs":[[10665,-10663,-10665,-10519,-10597]],"areaCode":830900},{"arcs":[[-10624,-10522,-10582,10666,-10618]],"areaCode":831000},{"arcs":[[10667,-10595,-10623,-10525]],"areaCode":834100},{"arcs":[[-10572,-10622,10668,10669,-10477,-10482]],"areaCode":836400},{"arcs":[[-10657,-10639,10670,-10643]],"areaCode":844200},{"arcs":[[-10644,-10671,-10638,-10588,-10530]],"areaCode":844300},{"arcs":[[10671,10672,10673,10674,-10555,-10637]],"areaCode":844700},{"arcs":[[-10569,-10631,-10534,-10550,-10626,-10562]],"areaCode":852100},{"arcs":[[10675,10676,10677,10678,-10537]],"areaCode":854200},{"arcs":[[-10634]],"areaCode":854600},{"arcs":[[-10633,10679,-10676,-10536],[-10630],[-10629]],"areaCode":854600},{"arcs":[[-10556,-10675,10680,10681,10682,-10583]],"areaCode":856400},{"arcs":[[10683,10684,10685,10686,10687,10688,10689,10690,10691,10692]],"areaCode":920100},{"arcs":[[10693,10694,10695,10696,10697]],"areaCode":920200},{"arcs":[[10698,10699,10700,10701,10702,10703,-10540,10704,10705,10706,10707]],"areaCode":920300},{"arcs":[[-10699,10708]],"areaCode":920400},{"arcs":[[-10707,10709,10710,-10698,10711,10712,10713]],"areaCode":920400},{"arcs":[[-10691,10714,-10700,-10709,-10708,-10714,10715,10716]],"areaCode":920500},{"arcs":[[10717,10718,-10692,-10717,10719,10720,10721,-10434,-10446]],"areaCode":920600},{"arcs":[[10722,-10627,-10551,-10542,10723,-10703,10724]],"areaCode":920800},{"arcs":[[10725,-10646,-10628,-10723,10726,10727,-10687,10728,10729]],"areaCode":920900},{"arcs":[[-10478,-10670,10730,10731,10732,10733,10734]],"areaCode":921000},{"arcs":[[-10733,10735,10736,10737]],"areaCode":921100},{"arcs":[[-10467,10738,-10734,-10738,10739,-10718,-10445,-10429]],"areaCode":921300},{"arcs":[[10740,10741,10742,-10684,10743,-10736,-10732]],"areaCode":921400},{"arcs":[[10744,-10620,10745,10746,10747,-10742]],"areaCode":921500},{"arcs":[[10748,-10727,-10725,-10702,10749,-10689]],"areaCode":921600},{"arcs":[[-10728,-10749,-10688]],"areaCode":930100},{"arcs":[[10750,-10647,-10726,10751]],"areaCode":934200},{"arcs":[[-10667,-10581,-10645,-10751,10752,-10746,-10619]],"areaCode":934300},{"arcs":[[-10753,-10752,-10730,10753,10754,-10747]],"areaCode":934400},{"arcs":[[-10754,-10729,-10686,10755]],"areaCode":934500},{"arcs":[[-10750,-10701,-10715,-10690]],"areaCode":936100},{"arcs":[[-10541,-10704,-10724]],"areaCode":936400},{"arcs":[[-10744,-10693,-10719,-10740,-10737]],"areaCode":938400},{"arcs":[[-10755,-10756,-10685,-10743,-10748]],"areaCode":938600},{"arcs":[[-10380,-10479,-10735,-10739,-10466]],"areaCode":940700},{"arcs":[[-10669,-10621,-10745,-10741,-10731]],"areaCode":941100},{"arcs":[[10756,10757,10758,10759,10760,10761,10762,10763]],"areaCode":1020100},{"arcs":[[10764,10765,10766]],"areaCode":1020200},{"arcs":[[10767,10768,-10760,10769,10770,10771,10772,10773,10774,10775,10776]],"areaCode":1020200},{"arcs":[[-10712,-10697,10777,10778]],"areaCode":1020300},{"arcs":[[10779,10780,-10757,10781]],"areaCode":1020300},{"arcs":[[10782,10783,10784,10785,10786,-10758,-10781]],"areaCode":1020400},{"arcs":[[-10696,10787,10788,10789,10790,-10784,10791,-10778]],"areaCode":1020500},{"arcs":[[10792,10793,-10721,10794,-10782,-10764,10795,10796,10797,10798,10799]],"areaCode":1020600},{"arcs":[[-10711,10800,10801,10802,10803,-10694]],"areaCode":1020700},{"arcs":[[10804,-10796,-10763,10805,10806,-10768,10807,10808,10809,-10798]],"areaCode":1020800},{"arcs":[[10810,-10766,10811,10812,10813,10814,10815,10816,-10771]],"areaCode":1020900},{"arcs":[[-10773,10817,10818,10819]],"areaCode":1021000},{"arcs":[[-10820,10820,10821,-10774]],"areaCode":1021100},{"arcs":[[-10720,-10716,-10713,-10779,-10792,-10783,-10780,-10795]],"areaCode":1021200},{"arcs":[[10822,-10761,-10769,-10807]],"areaCode":1034400},{"arcs":[[-10762,-10823,-10806]],"areaCode":1034500},{"arcs":[[10823,10824,10825,10826,10827,10828,10829,10830]],"areaCode":1036600},{"arcs":[[-10815,10831,10832,-10831,10833,10834]],"areaCode":1036700},{"arcs":[[-10819,10835,-10816,-10835,10836,10837,10838,-10821]],"areaCode":1038200},{"arcs":[[-10834,-10830,10839,10840,-10837]],"areaCode":1038300},{"arcs":[[-10817,-10836,-10818,-10772]],"areaCode":1038400},{"arcs":[[10841,10842,-10809,10843,10844,10845,10846,10847,10848,10849]],"areaCode":1042100},{"arcs":[[10850,-10776,10851,10852,10853,-10845]],"areaCode":1042400},{"arcs":[[-10853,10854,10855,10856,10857,10858,10859,10860,10861]],"areaCode":1042500},{"arcs":[[-10854,-10862,-10846]],"areaCode":1042600},{"arcs":[[-10799,-10810,-10843,10862]],"areaCode":1042800},{"arcs":[[-10808,-10777,-10851,-10844]],"areaCode":1042900},{"arcs":[[-10435,-10722,-10794,10863,10864,10865]],"areaCode":1044300},{"arcs":[[-10864,-10793,10866]],"areaCode":1044400},{"arcs":[[-10805,-10797]],"areaCode":1044800},{"arcs":[[-10865,-10867,-10800,-10863,-10842,10867,10868,10869]],"areaCode":1044900},{"arcs":[[-10787,10870,10871,-10767,-10811,-10770,-10759]],"areaCode":1046400},{"arcs":[[10872,10873,10874,-10801,-10710,-10706]],"areaCode":1052100},{"arcs":[[-10875,10875,10876,10877,-10802]],"areaCode":1052200},{"arcs":[[-10803,-10878,10878,10879,10880,10881]],"areaCode":1052300},{"arcs":[[10882,-10881,10883,-10789]],"areaCode":1052400},{"arcs":[[-10804,-10882,-10883,-10788,-10695]],"areaCode":1052500},{"arcs":[[10884,10885,-1768,-1775,10886,10887,10888,10889,10890,10891,10892,10893],[10894]],"areaCode":1120100},{"arcs":[[-10884,-10880,10895,10896,10897,10898,10899,10900,10901,-10790],[10902]],"areaCode":1120200},{"arcs":[[10903,10904,10905,10906,10907,10908,-1797,-1803,-1806]],"areaCode":1120300},{"arcs":[[-10903]],"areaCode":1120600},{"arcs":[[-10879,-10877,10909,10910,10911,-10896]],"areaCode":1120600},{"arcs":[[10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,-10825,10923,-10832,-10814]],"areaCode":1120700},{"arcs":[[-10890,10924,10925,10926,10927,10928,10929,10930,10931,10932]],"areaCode":1120800},{"arcs":[[10933,10934,10935,10936,10937,10938,10939,-10918,10940,10941]],"areaCode":1120900},{"arcs":[[-10705,-10539,10942,10943,-10911,10944,-10873]],"areaCode":1121000},{"arcs":[[10945,10946,10947,10948,10949,10950,-10871,-10786],[10951],[10952]],"areaCode":1121100},{"arcs":[[10953,10954,10955,10956,10957,10958,-10899]],"areaCode":1121200},{"arcs":[[10959,10960,-1804,10961,10962,10963,10964]],"areaCode":1121400},{"arcs":[[-10933,10965,-10937,10966,-10891]],"areaCode":1121500},{"arcs":[[-10910,-10876,-10874,-10945]],"areaCode":1121600},{"arcs":[[-10944,10967,10968,10969,10970,-10897,-10912]],"areaCode":1121700},{"arcs":[[-10902,10971,10972,10973,-10946,-10785,-10791]],"areaCode":1121800},{"arcs":[[-10895]],"areaCode":1121900},{"arcs":[[10974,10975,-1785,-1778,-1770,-1769,-10886,10976,10977]],"areaCode":1121900},{"arcs":[[10978,10979,10980,10981,-10905,10982]],"areaCode":1122100},{"arcs":[[10983,-10983,-10904,-1805,-10961,10984]],"areaCode":1122200},{"arcs":[[10985,-1798,-10909]],"areaCode":1122300},{"arcs":[[-10986,-10908,10986,10987,10988,10989,-1799]],"areaCode":1122400},{"arcs":[[-10966,-10932,10990,10991,-10938]],"areaCode":1122500},{"arcs":[[-10990,10992,10993,10994,10995,-1792,-1800]],"areaCode":1122700},{"arcs":[[-10996,10996,10997,10998,-1793]],"areaCode":1122800},{"arcs":[[10999,11000,-10993,-10989]],"areaCode":1122900},{"arcs":[[11001,11002,11003,11004,-10926,11005,-10997,-10995]],"areaCode":1123000},{"arcs":[[11006,11007,-10978,11008,11009,-10969,11010]],"areaCode":1123100},{"arcs":[[-10679,11011,11012,11013,11014,11015,-11011,-10968,-10943,-10538]],"areaCode":1123200},{"arcs":[[-11010,11016,11017,-10970]],"areaCode":1123300},{"arcs":[[11018,11019,11020,-10981]],"areaCode":1123400},{"arcs":[[-1774,-1794,-10999,11021,11022,-10887]],"areaCode":1123500},{"arcs":[[11023,11024,11025,-11019,-10980,11026]],"areaCode":1123700},{"arcs":[[-1807,-1786,-10976,11027,-11007,-11016,11028]],"areaCode":1123800},{"arcs":[[-10894,11029,11030,11031,11032,-10956,11033]],"areaCode":1123900},{"arcs":[[-10678,11034,11035,-11012]],"areaCode":1124000},{"arcs":[[-10893,11036,-11030]],"areaCode":1124100},{"arcs":[[-10892,-10967,-10936,11037,-11031,-11037]],"areaCode":1124200},{"arcs":[[11038,11039,-11027,-10979,-10984,11040]],"areaCode":1124300},{"arcs":[[-11023,11041,-10888]],"areaCode":1124500},{"arcs":[[11042,-10962,-1808,-11029,-11015]],"areaCode":1124600},{"arcs":[[-10975,-11008,-11028]],"areaCode":1130100},{"arcs":[[-11022,-10998,-11006,-10925,-10889,-11042]],"areaCode":1132400},{"arcs":[[-11038,-10935,11043,11044,-11032]],"areaCode":1132600},{"arcs":[[11045,-11044,-10934,11046]],"areaCode":1132700},{"arcs":[[-10959,11047,-10900]],"areaCode":1134100},{"arcs":[[-11048,-10958,11048,11049,11050,11051,-10972,-10901]],"areaCode":1134200},{"arcs":[[11052,11053,11054,-11051]],"areaCode":1134300},{"arcs":[[-11017,-11009,-10977,-10885,-11034,-10955,11055]],"areaCode":1134600},{"arcs":[[-11018,-11056,-10954,-10898,-10971]],"areaCode":1134700},{"arcs":[[-10957,-11033,-11045,-11046,11056,-11049]],"areaCode":1134800},{"arcs":[[-11057,-11047,-10942,11057,-10916,11058,-11053,-11050]],"areaCode":1134900},{"arcs":[[-11058,-10941,-10917]],"areaCode":1136100},{"arcs":[[11059,11060,11061,-10914,11062,-10949]],"areaCode":1136200},{"arcs":[[11063,11064,-11060,-10948]],"areaCode":1136300},{"arcs":[[-10924,-10824,-10833]],"areaCode":1136500},{"arcs":[[-11054,-11059,-10915,-11062,11065]],"areaCode":1136900},{"arcs":[[-10953]],"areaCode":1138100},{"arcs":[[-10952]],"areaCode":1138100},{"arcs":[[-10974,11066,-11064,-10947]],"areaCode":1138100},{"arcs":[[-10950,-11063,-10913,-10813,11067]],"areaCode":1138300},{"arcs":[[-10951,-11068,-10812,-10765,-10872]],"areaCode":1138500},{"arcs":[[-11052,-11055,-11066,-11061,-11065,-11067,-10973]],"areaCode":1140800},{"arcs":[[-10963,-11043,-11014,11068]],"areaCode":1144200},{"arcs":[[11069,-10964,-11069,-11013,-11036]],"areaCode":1146400},{"arcs":[[-11041,-10985,-10960,11070]],"areaCode":1146500},{"arcs":[[11071,11072,11073,-10652]],"areaCode":1220200},{"arcs":[[11074,11075,11076]],"areaCode":1220300},{"arcs":[[11077,11078,11079,11080,11081,11082]],"areaCode":1220300},{"arcs":[[11083]],"areaCode":1220400},{"arcs":[[11084,-11077,11085]],"areaCode":1220400},{"arcs":[[11086]],"areaCode":1220400},{"arcs":[[11087]],"areaCode":1220400},{"arcs":[[11088,11089,11090,-11079,11091,11092]],"areaCode":1220400},{"arcs":[[11093,11094]],"areaCode":1220500},{"arcs":[[11095]],"areaCode":1220600},{"arcs":[[11096,11097,11098,11099]],"areaCode":1220600},{"arcs":[[11100,11101,-11083,11102,11103,-11025,11104]],"areaCode":1220700},{"arcs":[[-10567,-10616,11105,11106,-11039,-11071,-10965,-11070,-11035,-10677,-10680,-10632]],"areaCode":1220800},{"arcs":[[11107,11108,11109,11110,11111,11112,11113,11114,-1832,11115]],"areaCode":1221000},{"arcs":[[11116,11117,11118,11119,11120,11121,11122,-10673,11123]],"areaCode":1221100},{"arcs":[[11124]],"areaCode":1221200},{"arcs":[[11125,11126,-1826,11127,-1816,11128,11129]],"areaCode":1221200},{"arcs":[[11130,11131,-1830,-1828,11132,11133,11134,11135],[11136],[11137],[11138]],"areaCode":1221300},{"arcs":[[-11073,11139,11140,11141,11142]],"areaCode":1221500},{"arcs":[[11143]],"areaCode":1221500},{"arcs":[[-1820,-1835,11144,-11090,11145]],"areaCode":1221600},{"arcs":[[-10585,11146,11147,11148,11149,-11101,11150,-11106,-10615]],"areaCode":1221700},{"arcs":[[11151,11152,11153,11154,11155]],"areaCode":1221800},{"arcs":[[-1811,-1833,-11115,11156,11157,11158,11159,-11098,11160,11161]],"areaCode":1221900},{"arcs":[[11162]],"areaCode":1221900},{"arcs":[[-11151,-11105,-11024,-11040,-11107]],"areaCode":1222000},{"arcs":[[-11129,-1821,-11146,-11089,11163,11164]],"areaCode":1222100},{"arcs":[[-10683,11165,-11147,-10584]],"areaCode":1222200},{"arcs":[[11166]],"areaCode":1222300},{"arcs":[[11167,-11154,11168,11169,11170,11171,11172]],"areaCode":1222300},{"arcs":[[11173,-11092,-11078,-11102,-11150],[-11088],[-11087]],"areaCode":1222400},{"arcs":[[-11099,-11160,11174,-11173,11175,11176]],"areaCode":1222500},{"arcs":[[11178]],"areaCode":1222600},{"arcs":[[-11176,-11172,11179,11180]],"areaCode":1222600},{"arcs":[[11181,11182,-11081]],"areaCode":1222700},{"arcs":[[-1825,-1822,-1817,-11128]],"areaCode":1222800},{"arcs":[[-11161,-11097,11183]],"areaCode":1222900},{"arcs":[[11184,-11135,11185,-11133,-1827,-11127,11186,11187]],"areaCode":1223000},{"arcs":[[-10682,11188,-11122,11189,-11130,-11165,11190,-11148,-11166],[11191]],"areaCode":1223100},{"arcs":[[-11191,-11164,-11093,-11174,-11149]],"areaCode":1223200},{"arcs":[[11192,11193,-11188,11194,-11120]],"areaCode":1223300},{"arcs":[[11195,-11095,11196,11197,-11170]],"areaCode":1223400},{"arcs":[[11198,-11141,11199,11200,11201]],"areaCode":1223500},{"arcs":[[-10654,11202,-11142,-11199,11203,-11117,11204,-10635,-10611]],"areaCode":1223600},{"arcs":[[-11186,-11134]],"areaCode":1223700},{"arcs":[[-11138]],"areaCode":1223700},{"arcs":[[-11137]],"areaCode":1223700},{"arcs":[[11205,11206,11207,11208,-11136,-11185,-11194]],"areaCode":1223700},{"arcs":[[11209,11210,-11156,11211,11212,11213]],"areaCode":1223800},{"arcs":[[11214,11215,11216,-11116,-1831,-11132]],"areaCode":1223900},{"arcs":[[-11195,-11187,-11126,-11190,-11121],[-11125]],"areaCode":1232200},{"arcs":[[-11192]],"areaCode":1232900},{"arcs":[[-11189,-10681,-10674,-11123]],"areaCode":1232900},{"arcs":[[-10672,-10636,-11205,-11124]],"areaCode":1234200},{"arcs":[[-11202,11217,11218,-11118,-11204]],"areaCode":1234700},{"arcs":[[-11074,-11143,-11203,-10653],[-11144]],"areaCode":1234900},{"arcs":[[-11139]],"areaCode":1240300},{"arcs":[[11219,-11215,-11131,-11209]],"areaCode":1240300},{"arcs":[[11220,-11206,-11193,-11119,-11219]],"areaCode":1240900},{"arcs":[[-11201,11221,-11207,-11221,-11218]],"areaCode":1241000},{"arcs":[[11222,-11214,11223,11224]],"areaCode":1242100},{"arcs":[[-11224,-11213,11225,11226,-11112,11227]],"areaCode":1242200},{"arcs":[[11228,-11110]],"areaCode":1242200},{"arcs":[[11229,-11225,-11228,-11111,-11229,-11109,11230]],"areaCode":1242300},{"arcs":[[11231,-11231,-11108,-11217]],"areaCode":1242400},{"arcs":[[-11114,11232,-11157]],"areaCode":1242600},{"arcs":[[-11113,-11227,11233,-11158,-11233]],"areaCode":1242700},{"arcs":[[-11226,-11212,-11155,-11168,-11175,-11159,-11234]],"areaCode":1244100},{"arcs":[[11234,-11152,-11211]],"areaCode":1244300},{"arcs":[[11235]],"areaCode":1246300},{"arcs":[[-11171,-11198,11236,-11180]],"areaCode":1246300},{"arcs":[[11237,11238,11239,11240,11241]],"areaCode":1310100},{"arcs":[[11242,11243,11244,11245,-11238,11246]],"areaCode":1310200},{"arcs":[[11247,11248]],"areaCode":1310300},{"arcs":[[11249,11250,11251]],"areaCode":1310300},{"arcs":[[-11239,-11246,11252,11253,11254,11255]],"areaCode":1310300},{"arcs":[[-11240,-11256,11256,11257,11258,11259]],"areaCode":1310400},{"arcs":[[11260,11261,11262,-11241,-11260,11263]],"areaCode":1310500},{"arcs":[[11264,11265,-11247,-11242,-11263]],"areaCode":1310600},{"arcs":[[11266,11267,11268,11269,11270,-11243,-11266]],"areaCode":1310700},{"arcs":[[11271]],"areaCode":1310800},{"arcs":[[11272,-11250,11273]],"areaCode":1310800},{"arcs":[[11274]],"areaCode":1310800},{"arcs":[[11275]],"areaCode":1310800},{"arcs":[[11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,-11244,-11271]],"areaCode":1310800},{"arcs":[[11313,11314]],"areaCode":1310900},{"arcs":[[11315,-11251,-11273]],"areaCode":1310900},{"arcs":[[-11248,11316]],"areaCode":1310900},{"arcs":[[11317,11318,11319,11320,-11254]],"areaCode":1310900},{"arcs":[[11321,11322,-11320,11323]],"areaCode":1311000},{"arcs":[[11324]],"areaCode":1311100},{"arcs":[[11325]],"areaCode":1311100},{"arcs":[[-11314,11326]],"areaCode":1311100},{"arcs":[[-11319,11327,-1916,-1917,-1919,11328,-11324]],"areaCode":1311100},{"arcs":[[11329,11330,-11322,-11329,-1921,-1924,-1928,11331,11332,11333]],"areaCode":1311200},{"arcs":[[-11255,-11321,-11323,-11331,11334,11335,-11257]],"areaCode":1311300},{"arcs":[[11336,-11258,-11336,11337,11338]],"areaCode":1311400},{"arcs":[[-11335,-11330,11339,11340,11341,-11338]],"areaCode":1311500},{"arcs":[[11342,-11264,-11259,-11337,11343,11344]],"areaCode":1311600},{"arcs":[[11345,11346,-11261,-11343,11347,-10987,-10907]],"areaCode":1311700},{"arcs":[[-11267,-11265,-11262,-11347,11348]],"areaCode":1311800},{"arcs":[[-11348,-11345,11349,-11000,-10988]],"areaCode":1311900},{"arcs":[[-11344,-11339,-11342,11350,11351,-11002,-10994,-11001,-11350]],"areaCode":1312000},{"arcs":[[-11021,11352,-11268,-11349,-11346,-10906,-10982]],"areaCode":1312100},{"arcs":[[-11104,11353,-11269,-11353,-11020,-11026]],"areaCode":1312200},{"arcs":[[11354]],"areaCode":1312300},{"arcs":[[11355]],"areaCode":1312300},{"arcs":[[-11082,-11183,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,-11277,-11270,-11354,-11103]],"areaCode":1312300},{"arcs":[[11376,11377,11378,11379,11380,-1936,11381,11382]],"areaCode":1320100},{"arcs":[[11383,11384,11385,11386,11387,11388,11389,11390]],"areaCode":1320200},{"arcs":[[11391,-11351,-11341,11392,11393]],"areaCode":1320300},{"arcs":[[-11340,-11334,11394,11395,-11393]],"areaCode":1320400},{"arcs":[[-10992,11396,11397,11398,11399,11400,11401,-10939]],"areaCode":1320500},{"arcs":[[11402,11403,11404,11405,11406,11407,11408]],"areaCode":1320600},{"arcs":[[11409,-11378,11410,-11389]],"areaCode":1320700},{"arcs":[[-11395,-11333,11411,-1926,11412,-11404,11413]],"areaCode":1320800},{"arcs":[[11414,-1933,-1906,-1932,-1904,-1895,-1899,11415,-1952,-1948,-1937,-11381]],"areaCode":1320900},{"arcs":[[-11396,-11414,-11403,11416,11417,11418,-11394]],"areaCode":1321000},{"arcs":[[11419,-11418,11420,-11385,11421,11422,11423]],"areaCode":1321100},{"arcs":[[11424,-11407,11425,-11379,-11410,-11388]],"areaCode":1321200},{"arcs":[[11426,11427,-11423,11428,-10928]],"areaCode":1321300},{"arcs":[[-11386,-11421,-11417,-11409,11429]],"areaCode":1321400},{"arcs":[[-11425,-11387,-11430,-11408]],"areaCode":1321500},{"arcs":[[11430,11431,-11390,-11411,-11377,11432,11433]],"areaCode":1321800},{"arcs":[[-11412,-11332,-1927]],"areaCode":1321900},{"arcs":[[-11429,-11422,-11384,11434,-10929]],"areaCode":1322000},{"arcs":[[11435,-11427,-10927,-11005]],"areaCode":1322100},{"arcs":[[11436,-11424,-11428,-11436,-11004]],"areaCode":1322200},{"arcs":[[-10930,-11435,-11391,-11432,11437]],"areaCode":1322300},{"arcs":[[-11380,-11426,-11406,11438,-1934,-11415]],"areaCode":1322400},{"arcs":[[-11413,-1925,-1935,-11439,-11405]],"areaCode":1322500},{"arcs":[[11439,-11434,11440,-11398]],"areaCode":1322700},{"arcs":[[11441,-11399,-11441,-11433,-11383,11442,11443,-11401]],"areaCode":1322800},{"arcs":[[-11392,-11419,-11420,-11437,-11003,-11352]],"areaCode":1322900},{"arcs":[[-10931,-11438,-11431,-11440,-11397,-10991]],"areaCode":1330300},{"arcs":[[-11442,-11400]],"areaCode":1330500},{"arcs":[[-11443,-11382,-1944,11444,11445]],"areaCode":1330700},{"arcs":[[-10940,-11402,-11444,-11446,11446,11447,11448,-10919]],"areaCode":1330800},{"arcs":[[11449]],"areaCode":1336100},{"arcs":[[11450]],"areaCode":1336200},{"arcs":[[11451]],"areaCode":1336300},{"arcs":[[11452]],"areaCode":1336300},{"arcs":[[11453]],"areaCode":1336300},{"arcs":[[11454]],"areaCode":1336300},{"arcs":[[11455]],"areaCode":1336300},{"arcs":[[11456]],"areaCode":1336400},{"arcs":[[11457]],"areaCode":1336400},{"arcs":[[11458]],"areaCode":1336400},{"arcs":[[11459]],"areaCode":1336400},{"arcs":[[11460]],"areaCode":1336400},{"arcs":[[11461]],"areaCode":1338100},{"arcs":[[11462]],"areaCode":1338200},{"arcs":[[11463]],"areaCode":1340100},{"arcs":[[11464]],"areaCode":1340100},{"arcs":[[11465]],"areaCode":1340200},{"arcs":[[11466]],"areaCode":1342100},{"arcs":[[11467]],"areaCode":1342100},{"arcs":[[11468]],"areaCode":1342100},{"arcs":[[11469]],"areaCode":1342100},{"arcs":[[11470]],"areaCode":1342100},{"arcs":[[11471]],"areaCode":1342100},{"arcs":[[11472]],"areaCode":1342100},{"arcs":[[11473]],"areaCode":1342100},{"arcs":[[11474]],"areaCode":1342100},{"arcs":[[11475]],"areaCode":1342100},{"arcs":[[11476]],"areaCode":1342100},{"arcs":[[11477]],"areaCode":1342100},{"arcs":[[11478]],"areaCode":1342100},{"arcs":[[11479]],"areaCode":1342100},{"arcs":[[11480]],"areaCode":1342100},{"arcs":[[11481]],"areaCode":1342100},{"arcs":[[11482]],"areaCode":1342100},{"arcs":[[11483]],"areaCode":1342100},{"arcs":[[11484]],"areaCode":1342100},{"arcs":[[11485]],"areaCode":1342100},{"arcs":[[11486]],"areaCode":1342100},{"arcs":[[11487]],"areaCode":1342100},{"arcs":[[11488]],"areaCode":1342100},{"arcs":[[11489]],"areaCode":1342100},{"arcs":[[11490]],"areaCode":1342100},{"arcs":[[11491]],"areaCode":1342100},{"arcs":[[11492]],"areaCode":1342100},{"arcs":[[11493]],"areaCode":1342100},{"arcs":[[11494]],"areaCode":1342100},{"arcs":[[11495]],"areaCode":1342100},{"arcs":[[11496]],"areaCode":1420100},{"arcs":[[11497]],"areaCode":1420100},{"arcs":[[11498]],"areaCode":1420100},{"arcs":[[11499,11500,11501,11502,-1873,11503]],"areaCode":1420100},{"arcs":[[11504,11505,11506,11507,11508,11509,11510,11511,11512]],"areaCode":1420300},{"arcs":[[-1900,-1875,11513,11514,11515,-1885]],"areaCode":1420400},{"arcs":[[11516]],"areaCode":1420500},{"arcs":[[-1901,-1886,-11516,11517,11518,11519,11520,11521,11522]],"areaCode":1420500},{"arcs":[[11523,11524,11525,11526,11527,11528,11529,11530,11531]],"areaCode":1420600},{"arcs":[[11532,-11506,11533,-11519]],"areaCode":1420700},{"arcs":[[-11503,11534,11535,-11514,-1874]],"areaCode":1420800},{"arcs":[[11536]],"areaCode":1421000},{"arcs":[[11537,-11500]],"areaCode":1421000},{"arcs":[[11538,11539,-11511,11540,11541,11542,11543,11544]],"areaCode":1421100},{"arcs":[[11545,11546,11547,-11513,11548,-11539,11549,11550,-1946,-1951]],"areaCode":1421200},{"arcs":[[-1898,-1902,-11523,11551,11552,11553,-1949,-11416]],"areaCode":1421300},{"arcs":[[-11512,-11540,-11549]],"areaCode":1421400},{"arcs":[[11554,-11521,11555,-11547,11556,-11553]],"areaCode":1421500},{"arcs":[[-11557,-11546,-1950,-11554]],"areaCode":1421600},{"arcs":[[11557,-11530,11558,11559,11560]],"areaCode":1421700},{"arcs":[[-11552,-11522,-11555]],"areaCode":1421800},{"arcs":[[-11502,11561,-11535]],"areaCode":1430100},{"arcs":[[-11534,-11505,-11548,-11556,-11520]],"areaCode":1432100},{"arcs":[[11562,11563,-11508]],"areaCode":1434100},{"arcs":[[-11564,11564,-11525,11565,-11509]],"areaCode":1434200},{"arcs":[[-11510,-11566,-11524,11566,-11541]],"areaCode":1436100},{"arcs":[[-11567,-11532,11567,11568,-11542]],"areaCode":1436200},{"arcs":[[-11543,-11569,11569,11570]],"areaCode":1436300},{"arcs":[[-1941,11571,-11544,-11571,11572,-11561,11573,11574,11575]],"areaCode":1436400},{"arcs":[[-11568,-11531,-11558,-11573,-11570]],"areaCode":1436600},{"arcs":[[-11529,11576,11577,11578,11579,11580,11581,-11559]],"areaCode":1438200},{"arcs":[[11582,11583,-11527]],"areaCode":1438300},{"arcs":[[-11584,11584,11585,11586,-11577,-11528]],"areaCode":1438400},{"arcs":[[-1947,-11551,11587,-1939]],"areaCode":1440100},{"arcs":[[-11588,-11550,-11545,-11572,-1940]],"areaCode":1440200},{"arcs":[[11588,11589,11590]],"areaCode":1520200},{"arcs":[[11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,-1983],[11604],[11605]],"areaCode":1520200},{"arcs":[[11606,11607,-10442,11608,-11596,11609,-11594,11610,-1975,11611]],"areaCode":1520400},{"arcs":[[-11602,11612,-11600,11613,11614,11615,11616],[11617]],"areaCode":1520500},{"arcs":[[-10337,-10392,11618,11619,-1954,11620,11621,11622]],"areaCode":1520600},{"arcs":[[11623,-11591,11624,-11598]],"areaCode":1520800},{"arcs":[[11625,11626,-11612,-1974]],"areaCode":1520900},{"arcs":[[-11625,-11590,11627,11628,11629,11630,11631,11632,-11614,-11599]],"areaCode":1521000},{"arcs":[[-11606]],"areaCode":1521100},{"arcs":[[-11595,-11610]],"areaCode":1521100},{"arcs":[[-10289,-10340,11633,11634,11635,-1726]],"areaCode":1521200},{"arcs":[[-11605]],"areaCode":1521300},{"arcs":[[-1976,-11611,-11593,11636,-1981]],"areaCode":1521300},{"arcs":[[11637,11638,11639,11640,11641,11642]],"areaCode":1521600},{"arcs":[[11643,11644,-2008,11645,-11638,11646]],"areaCode":1521700},{"arcs":[[11647,11648,-11607,-11627,11649,-1970]],"areaCode":1521800},{"arcs":[[11650]],"areaCode":1522200},{"arcs":[[11652]],"areaCode":1522200},{"arcs":[[-11633,11653,11654,-11647,-11643,11655,-11615],[11651]],"areaCode":1522200},{"arcs":[[11656,-11648,-1969,-1965,-1955,-11620]],"areaCode":1522300},{"arcs":[[11659],[11657],[11658],[11660]],"areaCode":1522400},{"arcs":[[11661]],"areaCode":1522400},{"arcs":[[-10441,-10436,-10866,-10870,11662,-11628,-11589,-11624,-11597,-11609]],"areaCode":1522500},{"arcs":[[-10869,11663,-11629,-11663]],"areaCode":1522600},{"arcs":[[-11635,11664,-10338,-11623,11665]],"areaCode":1522700},{"arcs":[[-1953,11666,-11621]],"areaCode":1530700},{"arcs":[[-11637,-11592,-1982]],"areaCode":1534200},{"arcs":[[-1973,-1971,-11650,-11626]],"areaCode":1536100},{"arcs":[[-10452,-10464,-10443,-11608,-11649,-11657,-11619,-10391]],"areaCode":1538500},{"arcs":[[-11617,11667,-11603]],"areaCode":1540500},{"arcs":[[-10868,-10850,11668,11669,-11630,-11664]],"areaCode":1546100},{"arcs":[[-11670,11670,-11631]],"areaCode":1548200},{"arcs":[[-11613,-11601]],"areaCode":1550400},{"arcs":[[-11618]],"areaCode":1550400},{"arcs":[[-10339,-11665,-11634]],"areaCode":1558100},{"arcs":[[11671]],"areaCode":1558600},{"arcs":[[11672,11673]],"areaCode":1620200},{"arcs":[[11674,11675,11676,11677,11678,11679,11680,11681,11682]],"areaCode":1620200},{"arcs":[[11683,11684,11685,11686]],"areaCode":1620400},{"arcs":[[11687,-11682,11688,11689,11690,11691]],"areaCode":1620500},{"arcs":[[-11685,11692,-1985,11693],[11694]],"areaCode":1620600},{"arcs":[[11695,11696,11697,11698,11699,-11687,11700,11701]],"areaCode":1620700},{"arcs":[[11702,-1993,11703,11704,11705,11706,-11678]],"areaCode":1620800},{"arcs":[[-11707,11708,11709,11710,-11679]],"areaCode":1620900},{"arcs":[[-11706,-11708,-11704,-1992,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,-11709]],"areaCode":1621000},{"arcs":[[-1994,-11703,-11677,11763]],"areaCode":1621100},{"arcs":[[11764,-11673,11765,-11675]],"areaCode":1621100},{"arcs":[[-1987,11766,11767]],"areaCode":1632100},{"arcs":[[-11695]],"areaCode":1632200},{"arcs":[[-11684,-11700,11768,-11767,-1986,-11693]],"areaCode":1632200},{"arcs":[[-11699,11769,-1988,-11768,-11769]],"areaCode":1632300},{"arcs":[[11770,-11702,11771]],"areaCode":1634200},{"arcs":[[-11641,11772,-11696,-11771,11773]],"areaCode":1634300},{"arcs":[[11774]],"areaCode":1720100},{"arcs":[[-11710,-11763,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310]],"areaCode":1720100},{"arcs":[[12311]],"areaCode":1720200},{"arcs":[[12312]],"areaCode":1720200},{"arcs":[[12313]],"areaCode":1720200},{"arcs":[[12314,-11692,12315,12316,12317]],"areaCode":1720200},{"arcs":[[12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940]],"areaCode":1720300},{"arcs":[[12941]],"areaCode":1720400},{"arcs":[[12942,12943,12944,12945,12946]],"areaCode":1720400},{"arcs":[[12947]],"areaCode":1720400},{"arcs":[[12948]],"areaCode":1720400},{"arcs":[[12949]],"areaCode":1720400},{"arcs":[[12950,-12947,12951]],"areaCode":1720500},{"arcs":[[12952,12953,12954,12955,-12939]],"areaCode":1720600},{"arcs":[[12956]],"areaCode":1720700},{"arcs":[[12957]],"areaCode":1720700},{"arcs":[[12958]],"areaCode":1720700},{"arcs":[[12959,12960,12961,-11690,12962,12963]],"areaCode":1720700},{"arcs":[[12964,12965,12966,12967]],"areaCode":1720900},{"arcs":[[12968,-12297,12969,12970,-12294,12971,-12292,12972,-12290,12973,12974,-12287,12975,12976,-12284,12977,-12282,12978,-12280,12979,-12278,12980,12981,-12275,12982,12983,12984,-12271,12985,-12269,12986,-12267,12987,-12265,12988,-12263,12989,12990,-12260,12991,-12258,12992,-12256,12993,12994,-12253,12995,-12251,12996,-12249,12997,-12247,12998,12999,-12244,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,-12241,13169,-12239,13170,13171,-12236,13172,-12234,13173,13174,-12231,13175,-12229,13176,-12227,13177,-12225,13178,13179,-12222,13180,-12220,13181,-12218,13182,13183,-12215,13184,-12213,13185,13186,-12210,13187,13188,-12207,13189,-12205,13190,13191,13192,-12201,13193,-12199,13194,-12197,13195,-12195,13196,-12193,13197,-12191,13198,13199,-12188,13200,13201,13202,-12184,13203,-12182,13204,-12180,13205,-12178,13206,-12176,13207,13208,-12173,13209,13210,-12170,13211,13212,13213,13214,-12165,13215,13216,-12162,13217,-12160,13218,-12158,13219,-12156,13220,-12154,13221,13222,13223,-12150,13224,-12148,13225,13226,-12145,13227,-12143,13228,-12141,13229,13230,-12138,13231,-12136,13232,13233,-12133,13234,13235,-12130,13236,-12128,13237,-12126,13238,-12124,13239,13240,-12121,13241,13242,-12118,13243,-12116,13244,-12114,13245,-12112,13246,13247,-12109,13248,-12107,13249,-12105,13250,-12103,13251,-12101,13252,-12099,13253,-12097,13254,-12095,13255,13256,13257,-12091,13258,13259,-12088,13260,-12086,13261,-12084,13262,-12082,13263,-12080,13264,13265,-12077,13266,-12075,13267,13268,-12072,13269,-12070,13270,-12068,13271,13272,-12065,13273,-12063,13274,-12061,13275,-12059,13276,-12057,13277,-12055,13278,-12053,13279,-12051,13280,-12049,13281,13282,-12046,13283,13284,13285,-12042,13286,-12040,13287,13288,-12037,13289,-12035,13290,-12033,13291,13292,-12030,13293,-12028,13294,-12026,13295,-12024,13296,13297,13298,-12020,13299,13300,-12017,13301,-12015,13302,-12013,13303,-12011,13304,-12009,13305,-12007,13306,-12005,13307,-12003,13308,-12001,13309,13310,-11998,13311,-11996,13312,-11994,13313,-11992,13314,-11990,13315,-11988,13316,-11986,13317,-11984,13318,13319,-11981,13320,-11979,13321,-11977,13322,-11975,13323,13324,-11972,13325,-11970,13326,-11968,13327,-11966,13328,-11964,13329,13330,-11961,13331,-11959,13332,-11957,13333,13334,13335,-11953,13336,-11951,13337,-11949,13338,-11947,13339,13340,-11944,13341,13342,-11941,13343,-11939,13344,-11937,13345,-11935,13346,13347,-11932,13348,13349,-11929,13350,-11927,13351,-11925,13352,-11923,13353,13354,-11920,13355,-11918,13356,-11916,13357,13358,-11913,13359,-11911,13360,-11909,13361,-11907,13362,13363,-11904,13364,-11902,13365,-11900,13366,-11898,13367,-11896,13368,-11894,13369,-11892,13370,13371,-11889,13372,-11887,13373,13374,-11884,13375,13376,-11881,13377,13378,-11878,13379,-11876,13380,-11874,13381,-11872,13382,-11870,13383,-11868,13384,-11866,13385,13386,-11863,13387,-11861,13388,-11859,13389,13390,-11856,13391,13392,-11853,13393,-11851,13394,-11849,13395,-11847,13396,-11845,13397,-11843,13398,-11841,13399,-11839,13400,-11837,13401,13402,-11834,13403,-11832,13404,-11830,13405,-11828,13406,-11826,13407,-11824,13408,-11822,13409,-11820,13410,-11818,13411,-11816,13412,-11814,13413,-11812,13414,13415,-11809,13416,-11807,13417,-11805,13418,-11803,13419,-11801,13420,-11799,13421,-11797,13422,-11795,13423,-11793,13424,13425,-11790,13426,-11788,13427,-11786,13428,-11784,13429,13430,13431,-11780,13432,-11778,13433,-11776,-11762,13434,-11760,13435,-11758,13436,13437,13438,-11754,13439,-11752,13440,-11750,13441,-11748,13442,-11746,13443,-11744,13444,-11742,13445,-11740,13446,-11738,13447,-11736,13448,-11734,13449,13450,13451,-11730,13452,-11728,13453,-11726,13454,-11724,13455,-11722,13456,13457,-11719,13458,13459,-11716,13460,-11714,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,-12936,14210,-12934,14211,14212,-12931,14213,14214,-12928,14215,-12926,14216,-12924,14217,-12922,14218,-12920,14219,-12918,14220,-12916,14221,-12914,14222,14223,-12911,14224,-12909,14225,-12907,14226,-12905,14227,-12903,14228,-12901,14229,-12899,14230,-12897,14231,-12895,14232,-12893,14233,-12891,14234,-12889,14235,-12887,14236,-12885,14237,-12883,14238,-12881,14239,-12879,14240,14241,-12876,14242,14243,-12873,14244,-12871,14245,-12869,14246,-12867,14247,-12865,14248,-12863,14249,-12861,14250,-12859,14251,-12857,14252,-12855,14253,-12853,14254,14255,14256,-12849,14257,-12847,14258,14259,-12844,14260,-12842,14261,14262,14263,-12838,14264,-12836,14265,-12834,14266,14267,-12831,14268,14269,-12828,14270,-12826,14271,-12824,14272,14273,-12821,14274,-12819,14275,-12817,14276,14277,14278,-12813,14279,-12811,14280,-12809,14281,-12807,14282,14283,14284,-12803,14285,-12801,14286,-12799,14287,14288,-12796,14289,-12794,14290,14291,-12791,14292,14293,-12788,14294,-12786,14295,-12784,14296,-12782,14297,-12780,14298,-12778,14299,-12776,14300,-12774,14301,14302,-12771,14303,-12769,14304,14305,14306,-12765,14307,-12763,14308,-12761,14309,-12759,14310,-12757,14311,-12755,14312,-12753,14313,14314,-12750,14315,-12748,14316,-12746,14317,-12744,14318,14319,-12741,14320,-12739,14321,-12737,14322,-12735,14323,14324,-12732,14325,-12730,14326,14327,-12727,14328,14329,14330,-12723,14331,-12721,14332,14333,-12718,14334,-12716,14335,-12714,14336,14337,-12711,14338,14339,-12708,14340,14341,-12705,14342,14343,14344,-12701,14345,-12699,14346,14347,14348,14349,14350,-12693,14351,-12691,14352,-12689,14353,14354,-12686,14355,-12684,14356,-12682,14357,-12680,14358,-12678,14359,-12676,14360,14361,-12673,14362,14363,14364,-12669,14365,14366,-12666,14367,-12664,14368,14369,-12661,14370,14371,14372,-12657,14373,-12655,14374,-12653,14375,-12651,14376,-12649,14377,-12647,14378,14379,14380,-12643,14381,14382,-12640,14383,-12638,14384,14385,-12635,14386,-12633,14387,14388,14389,-12629,14390,-12627,14391,-12625,14392,-12623,14393,-12621,14394,14395,-12618,14396,14397,-12615,14398,-12613,14399,-12611,14400,-12609,14401,-12607,14402,-12605,14403,14404,-12602,14405,-12600,14406,14407,-12597,14408,14409,-12594,14410,-12592,14411,14412,-12589,14413,14414,14415,-12585,14416,-12583,14417,-12581,14418,-12579,14419,-12577,14420,14421,-12574,14422,-12572,14423,-12570,14424,-12568,14425,-12566,14426,-12564,14427,14428,14429,-12560,14430,-12558,14431,-12556,14432,-12554,14433,-12552,14434,14435,-12549,14436,-12547,14437,-12545,14438,-12543,14439,-12541,14440,14441,-12538,14442,-12536,14443,14444,-12533,14445,-12531,14446,-12529,14447,-12527,14448,14449,-12524,14450,-12522,14451,14452,-12519,14453,-12517,14454,-12515,14455,-12513,14456,-12511,14457,-12509,14458,-12507,14459,14460,14461,14462,-12502,14463,-12500,14464,-12498,14465,-12496,14466,-12494,14467,14468,-12491,14469,14470,-12488,14471,14472,14473,-12484,14474,-12482,14475,-12480,14476,-12478,14477,-12476,14478,-12474,14479,14480,14481,-12470,14482,-12468,14483,14484,-12465,14485,-12463,14486,-12461,14487,-12459,14488,-12457,14489,-12455,14490,-12453,14491,-12451,14492,-12449,14493,-12447,14494,-12445,14495,14496,-12442,14497,14498,-12439,14499,-12437,14500,-12435,14501,-12433,14502,-12431,14503,-12429,14504,-12427,14505,-12425,14506,14507,14508,-12421,14509,-12419,14510,14511,-12416,14512,-12414,14513,-12412,14514,-12410,14515,14516,14517,-12406,14518,14519,-12403,14520,-12401,14521,-12399,14522,-12397,14523,14524,-12394,14525,14526,-12391,14527,-12389,14528,-12387,14529,-12385,14530,-12383,14531,-12381,14532,-12379,14533,14534,14535,14536,-12374,14537,-12372,14538,14539,-12369,14540,-12367,14541,-12365,14542,14543,-12362,14544,-12360,14545,-12358,14546,-12356,14547,-12354,14548,14549,-12351,14550,-12349,14551,-12347,14552,-12345,14553,-12343,14554,-12341,14555,14556,-12338,14557,-12336,14558,-12334,14559,-12332,14560,-12330,14561,-12328,14562,-12326,14563,-12324,14564,-12322,14565,14566,-12319,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,-12308,14920,-12306,14921,-12304,14922,-12302,14923,14924,-12299]],"areaCode":1721000},{"arcs":[[14925,-14915,14926,-14913,14927,14928,-14910,14929,-14908,14930,14931,-14740,14932,-14738,14933,-14736,14934,-14734,14935,14936,-14731,14937,14938,-14728,14939,-14726,14940,-14724,14941,-14722,14942,-14720,14943,-14718,14944,-14716,14945,-14714,14946,14947,14948,-14710,14949,-14708,14950,-14706,14951,-14704,14952,-14702,14953,14954,14955,-14698,14956,-14696,14957,-14694,14958,-14692,14959,14960,-14689,14961,-14687,14962,-14685,14963,-14683,14964,-14681,14965,-14679,14966,-14677,14967,-14675,14968,-14673,14969,-14671,14970,-14669,14971,-14667,14972,-14665,14973,14974,-14662,14975,-14660,14976,-14658,14977,14978,-14655,14979,14980,-14652,14981,-14650,14982,-14648,14983,-14646,14984,-14644,14985,-14642,14986,-14640,14987,-14638,14988,-14636,14989,-14634,14990,14991,14992,-14630,14993,-14628,14994,-14626,14995,-14624,14996,-14622,14997,14998,14999,-14618,15000,-14616,15001,15002,15003,-14612,15004,-14610,15005,15006,-14607,15007,15008,-14604,15009,-14602,15010,-14600,15011,-14598,15012,-14596,15013,-14594,15014,-14592,15015,-14590,15016,-14588,15017,-14586,15018,-14584,15019,15020,15021,-14580,15022,-14578,15023,-14576,15024,15025,-14573,15026,15027,-14570,15028,-14568,-12941,15029,-14919,15030,-14917]],"areaCode":1721100},{"arcs":[[-13168,15031,-13166,15032,-13164,15033,15034,-13161,15035,-13159,15036,-13157,15037,15038,-13154,15039,-13152,15040,-13150,15041,-13148,15042,-13146,15043,-13144,15044,-13142,15045,-13140,15046,-13138,15047,-13136,15048,-13134,15049,-13132,15050,15051,-13129,15052,15053,-13126,15054,-13124,15055,-13122,15056,-13120,15057,-13118,15058,-13116,15059,-13114,15060,-13112,15061,-13110,15062,-13108,15063,-13106,15064,-13104,15065,-13102,15066,-13100,15067,-13098,15068,-13096,15069,-13094,15070,-13092,15071,-13090,15072,-13088,15073,15074,-13085,15075,-13083,15076,-13081,15077,-13079,15078,-13077,15079,-13075,15080,15081,-13072,15082,-13070,15083,-13068,15084,-13066,15085,-13064,15086,-13062,15087,-13060,15088,-13058,15089,-13056,15090,-13054,15091,-13052,15092,15093,-13049,15094,15095,-13046,15096,-13044,15097,-13042,15098,-13040,15099,-13038,15100,-13036,15101,-13034,15102,-13032,15103,15104,-13029,15105,-13027,15106,15107,-13024,15108,-13022,15109,-13020,15110,-13018,15111,-13016,15112,-13014,15113,-13012,15114,15115,-13009,15116,15117,-13006,15118,-13004,15119,-13002,15120,-12243]],"areaCode":1721200},{"arcs":[[15121,-14886,15122,15123,-14883,15124,-14881,15125,-14879,15126,15127,-14876,15128,15129,15130,-14872,15131,-14870,15132,15133,15134,-14866,15135,-14864,15136,-14862,15137,15138,-14859,15139,-14857,15140,15141,15142,-14853,15143,-14851,15144,-14849,15145,-14847,15146,15147,-14844,15148,-14842,15149,-14840,15150,-14838,15151,15152,-14835,15153,-14833,15154,-14831,15155,15156,-14828,15157,-14826,15158,15159,15160,-14822,15161,-14820,15162,-14818,15163,15164,15165,-14814,15166,-14812,15167,-14810,15168,15169,-14807,15170,-14805,15171,-14803,15172,-14801,15173,-14799,15174,-14797,15175,-14795,15176,15177,-14792,15178,-14790,15179,-14788,15180,15181,-14785,15182,-14783,15183,15184,-14780,15185,15186,15187,-14776,15188,15189,15190,-14772,15191,-14770,15192,-14768,15193,-14766,15194,-14764,15195,15196,-14761,15197,-14759,15198,-14757,15199,15200,15201,15202,-14752,15203,-14750,15204,-14748,15205,-14746,15206,-14744,15207,-14742,-14931,-14907,15208,-14905,15209,15210,-14902,15211,15212,15213,-14898,15214,-14896,15215,15216,-14893,15217,-14891,15218,-14889,15219]],"areaCode":1732400},{"arcs":[[-11680,-11711,-12311,15220,-12965,15221]],"areaCode":1736100},{"arcs":[[-15221,-12310,15222,-12966]],"areaCode":1736500},{"arcs":[[-12317,15223,-12961,15224,-12945,15225],[-12959],[-12957],[-12958]],"areaCode":1738400},{"arcs":[[-11689,-11681,-15222,-12968,15226,-12963]],"areaCode":1738600},{"arcs":[[-11691,-12962,-15224,-12316]],"areaCode":1740700},{"arcs":[[15227,-12318,-15226,-12944,15228]],"areaCode":1746100},{"arcs":[[15229]],"areaCode":1746300},{"arcs":[[-12951,15230,-15229,-12943]],"areaCode":1746300},{"arcs":[[15231]],"areaCode":1820100},{"arcs":[[15232,15233,15234,15235,15236,15237,15238,15239]],"areaCode":1820100},{"arcs":[[15240]],"areaCode":1820200},{"arcs":[[15241,15242,15243,15244,15245]],"areaCode":1820200},{"arcs":[[15246]],"areaCode":1820400},{"arcs":[[15247,15248,15249,15250]],"areaCode":1820400},{"arcs":[[15251,15252,15253,15254,15255,-15235,15256,15257,-13997,15258,-13995,15259,15260,-13992,15261,-13990,15262,15263,-13987,15264,-13985,15265,-13983,15266,-13981,15267,-13979,15268,-13977,15269,-13975,15270,-13973,15271,15272,-13970,15273,15274,-13967,15275,-13965,15276,15277,-13962,15278,15279,15280,-13958,15281,15282,15283,-13954,15284,-13952,15285,-13950,15286,-13948,15287,-13946,15288,15289,-13943,15290,-13941,15291,-13939,15292,-13937,15293,-13935,15294,-13933,15295,-13931,15296,-13929,15297,-13927,15298,-13925,15299,-13923,-13922,15300,-13920,15301,-13918,15302,-13916,15303,-13914,15304,-13912,15305,-13910,15306,15307,-13907,15308,-13905,15309,-13903,15310,-13901,15311,-13899,15312,-13897,15313,-13895,15314,15315,15316,-13891,15317,15318,15319,15320,15321,-13885,15322,15323,-13882,15324,-13880,15325,-13878,15326,-13876,15327,-13874,15328]],"areaCode":1820500},{"arcs":[[15329,15330,-14207,15331,-14205,15332,-14203,15333,-14201,15334,-14199,15335,-14197,15336,-14195,15337,-14193,15338,15339,-14190,15340,-14188,15341,-14186,15342,-14184,15343,15344,-14181,15345,-14179,15346,-14177,15347,15348,-14174,15349,-14172,15350,-14170,15351,-14168,15352,-14166,15353,15354,-14163,15355,-14161,15356,15357,-14158,15358,15359,-14155,15360,-14153,15361,-14151,15362,-14149,15363,-14147,15364,-14145,15365,15366,-14142,15367,15368,-14139,15369,-14137,15370,-14135,15371,-14133,15372,-14131,15373,15374,15375,15376,-14126,15377,-14124,15378,-14122,15379,15380,-14119,15381,-14117,15382,15383,15384,-14113,15385,-14111,15386,15387,-14108,15388,15389,15390,15391,15392,15393,15394,15395,-14099,15396,-14097,15397,-14095,15398,-14093,15399,-14091,15400,-14089,15401,-14087,15402,15403,-14084,15404,-14082,15405,-14080,15406,-14078,15407,-14076,15408,-14074,15409,-14072,15410,-14070,15411,-14068,15412,-14066,15413,-14064,15414,-14062,15415,-14060,15416,-14058,15417,15418,-14055,15419,-14053,15420,-14051,15421,-14049,15422,-14047,15423,-14045,15424,-14043,15425,-14041,15426,-14039,15427,-14037,15428,15429,-14034,15430,-14032,15431,-14030,15432,-14028,15433,-14026,15434,15435,-14023,15436,-14021,15437,-14019,15438,15439,-14016,15440,-14014,15441,-14012,15442,-14010,15443,15444,-14007,15445,15446,15447,-14003,15448,-14001,15449,-13999,-15257,-15234,15450,15451,-12953,-12938]],"areaCode":1820600},{"arcs":[[15452,15453,-15237]],"areaCode":1820700},{"arcs":[[-12955,15454,15455]],"areaCode":1820800},{"arcs":[[15456,15457,15458,-15453]],"areaCode":1820900},{"arcs":[[15459]],"areaCode":1821000},{"arcs":[[-12954,-15452,15460,-15240,15461,-15455]],"areaCode":1821000},{"arcs":[[-15451,-15233,-15461]],"areaCode":1832200},{"arcs":[[-15256,15462,15463,-15457,-15236]],"areaCode":1838200},{"arcs":[[-15464,15464,15465,-15246,15466,15467,-15458]],"areaCode":1840400},{"arcs":[[-15454,-15459,-15468,15468,-15238]],"areaCode":1842300},{"arcs":[[15469]],"areaCode":1844200},{"arcs":[[15470]],"areaCode":1844200},{"arcs":[[15471,15472,15473,-15244]],"areaCode":1844200},{"arcs":[[15474]],"areaCode":1848100},{"arcs":[[15475,15476,15477,15478,15479,15480]],"areaCode":1848100},{"arcs":[[-15250,15481,-2239,15482,-15478,15483]],"areaCode":1848300},{"arcs":[[-15476,15484]],"areaCode":1848300},{"arcs":[[15485]],"areaCode":1850100},{"arcs":[[15486]],"areaCode":1850100},{"arcs":[[15487,-15248,15488,-15473],[-15471],[-15470]],"areaCode":1850100},{"arcs":[[15489,15490,15491,15492,15493,15494,15495,15496,15497,15498]],"areaCode":1920100},{"arcs":[[15499,15500,15501,15502,15503,15504,15505],[15506]],"areaCode":1920200},{"arcs":[[15507,15508,15509,15510,-15500,15511,15512,15513]],"areaCode":1920400},{"arcs":[[-10922,15514,15515,-15490,15516]],"areaCode":1920500},{"arcs":[[15517,-15514,15518,15519,15520,15521]],"areaCode":1920600},{"arcs":[[15522,15523,15524]],"areaCode":1920700},{"arcs":[[-15524,15525,15526,15527,15528,15529,15530,-2069,-2042,15531]],"areaCode":1920800},{"arcs":[[15532,-15498,15533,-15525,-15532,-2041,15534,15535,15536]],"areaCode":1920900},{"arcs":[[-15497,15537,-15526,-15523,-15534]],"areaCode":1921000},{"arcs":[[15538,-15520,15539,-15491,-15516]],"areaCode":1921100},{"arcs":[[-1943,15540,-15508,-15518,15541,-11447,-11445]],"areaCode":1921200},{"arcs":[[15542,15543,-15521,-15539,-15515,-10921]],"areaCode":1921300},{"arcs":[[-15495,15544,-15528,15545]],"areaCode":1921400},{"arcs":[[-15494,15546,15547,-15529,-15545]],"areaCode":1934600},{"arcs":[[15548,15549,-2070,-15531],[15550]],"areaCode":1936400},{"arcs":[[-15551]],"areaCode":1936500},{"arcs":[[-15493,15551,15552,15553,-2061,-15550,15554,-15547]],"areaCode":1936500},{"arcs":[[15555,-2079,-2062,-15554]],"areaCode":1936600},{"arcs":[[-15548,-15555,-15549,-15530]],"areaCode":1936800},{"arcs":[[-15527,-15538,-15496,-15546]],"areaCode":1938400},{"arcs":[[-11576,15556,-15509,-15541,-1942]],"areaCode":1942200},{"arcs":[[-15512,-15506,15557]],"areaCode":1942300},{"arcs":[[15558,-15501,-15511]],"areaCode":1942400},{"arcs":[[-15557,-11575,15559,-15502,-15559,-15510]],"areaCode":1942500},{"arcs":[[-15504,15560,15561]],"areaCode":1942900},{"arcs":[[-15507]],"areaCode":1943000},{"arcs":[[-15558,-15505,-15562,15562,-15552,-15492,-15540,-15519,-15513]],"areaCode":1943000},{"arcs":[[-11448,-15542,-15522,-15544,15563]],"areaCode":1944200},{"arcs":[[-11449,-15564,-15543,-10920]],"areaCode":1944300},{"arcs":[[-10859,15564,15565,15566,-2011,15567,15568,15569,15570,15571,-2000,15572]],"areaCode":2020300},{"arcs":[[15573,15574,15575,-2055,-2014]],"areaCode":2020400},{"arcs":[[15576,-2053,15577,15578,-15575,15579,15580]],"areaCode":2020600},{"arcs":[[15581,-10860,-15573,-1999,15582]],"areaCode":2020700},{"arcs":[[15583,15584,15585,-10857]],"areaCode":2020800},{"arcs":[[15586,15587,15588,15589,15590,15591,-2045]],"areaCode":2021000},{"arcs":[[15592,15593,15594,15595,-1997,15596,15597]],"areaCode":2021100},{"arcs":[[15598,-2004,15599,15600,15601,15602,-2022,15603,-1989,-11770,-11698,15604]],"areaCode":2021200},{"arcs":[[15605,15606,15607,-15598,15608,-11644,-11655]],"areaCode":2021300},{"arcs":[[15609,15610,15611,15612,15613,-2054,-15577,15614,15615,15616]],"areaCode":2021400},{"arcs":[[15617]],"areaCode":2021700},{"arcs":[[15618,-10838,-10841,15619,-15617,15620,15621,-15585,15622]],"areaCode":2021700},{"arcs":[[-15572,15623,-15570,15624,15625,-2001]],"areaCode":2021800},{"arcs":[[-15586,-15622,15626,-15565,-10858]],"areaCode":2021900},{"arcs":[[15627,15628,15629,15630,-2023,-15603]],"areaCode":2022000},{"arcs":[[15631,15632,15633,-15611,15634]],"areaCode":2030300},{"arcs":[[-10826,-10923,-15517,-15499,-15533,15635,15636]],"areaCode":2030400},{"arcs":[[15637,-15636,-15537,-15612,-15634]],"areaCode":2030500},{"arcs":[[-10827,-15637,-15638,-15633,15638]],"areaCode":2030600},{"arcs":[[-10828,-15639,-15632,15639]],"areaCode":2030700},{"arcs":[[-10840,-10829,-15640,-15635,-15610,-15620],[-15618]],"areaCode":2030900},{"arcs":[[-10775,-10822,-10839,-15619,15640,-10855,-10852]],"areaCode":2032100},{"arcs":[[-15641,-15623,-15584,-10856]],"areaCode":2032300},{"arcs":[[-15621,-15616,15641,-15566,-15627]],"areaCode":2032400},{"arcs":[[-15568,-2010,15642]],"areaCode":2034900},{"arcs":[[-15642,-15615,-15581,15643,-2012,-15567]],"areaCode":2035000},{"arcs":[[-15580,-15574,-2013,-15644]],"areaCode":2036100},{"arcs":[[-15535,-2040,-15614,15644]],"areaCode":2036200},{"arcs":[[-15536,-15645,-15613]],"areaCode":2036300},{"arcs":[[-15576,-15579,15645,15646,-2056]],"areaCode":2038200},{"arcs":[[-2052,15647,-2050,15648,-15646,-15578]],"areaCode":2038300},{"arcs":[[15649,15650,-2038,15651,-15589]],"areaCode":2038400},{"arcs":[[-2051,-15648]],"areaCode":2038500},{"arcs":[[-2049,-2057,-15647,-15649]],"areaCode":2038500},{"arcs":[[-15588,15652,15653,-15650]],"areaCode":2038600},{"arcs":[[-15592,15654,15655,-2046]],"areaCode":2038800},{"arcs":[[-15654,15656,15657,15658,-2039,-15651]],"areaCode":2040200},{"arcs":[[15659,15660,-2025,-15659]],"areaCode":2040300},{"arcs":[[15661,15662,15663,15664,15665,15666,15667]],"areaCode":2040400},{"arcs":[[15668,-15666,15669,15670,15671,-2035]],"areaCode":2040700},{"arcs":[[-15670,-15665,15672,15673,15674,15675]],"areaCode":2040900},{"arcs":[[-15674,15676,15677,15678,-2174,15679]],"areaCode":2041000},{"arcs":[[15680,-15667,-15669,-2034]],"areaCode":2041100},{"arcs":[[15681,-15677,-15673,-15664]],"areaCode":2041200},{"arcs":[[-2108,15682,-15662,15683,-2032]],"areaCode":2041300},{"arcs":[[-15684,-15668,-15681,-2033]],"areaCode":2041400},{"arcs":[[-2026,-15661,15684]],"areaCode":2041500},{"arcs":[[15685,-2027,-15685,-15660,-15658]],"areaCode":2041600},{"arcs":[[-2068,-2028,-15686,-15657,-15653,-15587,-2044]],"areaCode":2041700},{"arcs":[[-15655,-15591,15686,15687,15688]],"areaCode":2042200},{"arcs":[[-2036,-15672,15689,15690]],"areaCode":2042300},{"arcs":[[-2059,15691,-2019,15692]],"areaCode":2042500},{"arcs":[[15693,-15688,15694,15695,15696]],"areaCode":2042900},{"arcs":[[-15652,-2037,-15691,15697,-15695,-15687,-15590]],"areaCode":2043000},{"arcs":[[-15692,-2058,-2047,-15656,-15689,-15694,15698,15699,-2020]],"areaCode":2043200},{"arcs":[[15700,-2002,-15626]],"areaCode":2044600},{"arcs":[[-2003,15701,-15630,15702,-15600]],"areaCode":2044800},{"arcs":[[15703,-2017]],"areaCode":2045000},{"arcs":[[-2016,-2060,-15693,-2018,-15704]],"areaCode":2045100},{"arcs":[[-15625,-15569,-15643,-2024,-15631,-15702,-15701]],"areaCode":2045200},{"arcs":[[-15703,-15629,15704,-15601]],"areaCode":2048100},{"arcs":[[-15705,-15628,-15602]],"areaCode":2048200},{"arcs":[[-2006,15705,-15605,-11697,-11773,-11640,15706]],"areaCode":2048500},{"arcs":[[-11646,-2007,-15707,-11639]],"areaCode":2048600},{"arcs":[[-15624,-15571]],"areaCode":2052100},{"arcs":[[-1998,-15596,15707,-15583]],"areaCode":2054100},{"arcs":[[15708,-10847,-10861,-15582,-15708,-15595]],"areaCode":2054300},{"arcs":[[15709,-10848,-15709,-15594,15710]],"areaCode":2056100},{"arcs":[[15711,-15711,-15593,-15608,15712]],"areaCode":2056200},{"arcs":[[-15713,-15607,15713]],"areaCode":2056300},{"arcs":[[-15609,15714,-2009,-11645]],"areaCode":2058300},{"arcs":[[-15599,-15706,-2005]],"areaCode":2058800},{"arcs":[[-1996,-15715,-15597]],"areaCode":2059000},{"arcs":[[-11671,-11669,-10849,-15710,-15712,-15714,-15606,-11654,-11632]],"areaCode":2060200},{"arcs":[[15715,15716,15717,15718,15719,15720,15721,15722,15723,15724]],"areaCode":2120100},{"arcs":[[15725,15726,15727,15728,15729,15730]],"areaCode":2120200},{"arcs":[[-15721,15731,15732,15733]],"areaCode":2120200},{"arcs":[[15734,15735,15736,15737,15738,15739,15740]],"areaCode":2120200},{"arcs":[[-15604,-2021,-15700,15741,15742,-15329,-13873,15743,15744,-13870,15745,15746,-13867,15747,15748,-13864,15749,-13862,15750,-13860,15751,-13858,15752,-13856,15753,15754,-13853,15755,-13851,15756,-13849,15757,-13847,15758,15759,15760,-13843,15761,15762,15763,-1990]],"areaCode":2120300},{"arcs":[[15764,15765,15766,15767,15768]],"areaCode":2120400},{"arcs":[[15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,-15716,15779,15780,-15253]],"areaCode":2120500},{"arcs":[[-15698,-15690,-15671,-15676,15781,15782,15783,15784,15785,-15696]],"areaCode":2120600},{"arcs":[[-15771,15786]],"areaCode":2120700},{"arcs":[[15787,-2186,15788,15789,15790]],"areaCode":2120800},{"arcs":[[15791,15792,15793,15794,15795,-15732,-15720,15796]],"areaCode":2120900},{"arcs":[[-15675,-15680,-2187,-15788,15797,15798,-15782]],"areaCode":2121000},{"arcs":[[15799,15800,15801,15802,15803,15804,-15777,15805,-15775,15806],[15807]],"areaCode":2121100},{"arcs":[[-2185,15808,-15765,15809,15810,-15789]],"areaCode":2121200},{"arcs":[[15811,15812,15813,15814,15815,15816,15817,-15717,-15779]],"areaCode":2121300},{"arcs":[[-15810,-15769,15818,15819,-15804,15820]],"areaCode":2121400},{"arcs":[[15821,-15802,15822]],"areaCode":2121400},{"arcs":[[-15725,15823,-15780]],"areaCode":2121500},{"arcs":[[15824,-15722,-15734,15825,-15736,15826,15827,15828]],"areaCode":2121600},{"arcs":[[-15764,15829,-11712,-1991]],"areaCode":2121700},{"arcs":[[-15781,-15824,-15724,15830,-15829,15831,15832,-15254]],"areaCode":2121800},{"arcs":[[-15743,15833,-15772,-15787,-15770,-15252]],"areaCode":2121900},{"arcs":[[-15699,-15697,-15786,15834,15835,-15773,-15834,-15742]],"areaCode":2122000},{"arcs":[[15836,15837,15838,15839,15840,15841,-15794]],"areaCode":2122100},{"arcs":[[15842,15843]],"areaCode":2130200},{"arcs":[[-15818,15844,-15718]],"areaCode":2130200},{"arcs":[[-15817,15845,-15844,15846,-15797,-15719,-15845]],"areaCode":2130300},{"arcs":[[-15739,15847,-15841,15848,-15727,15849]],"areaCode":2134100},{"arcs":[[-15740,-15850,-15726,15850,15851,15852]],"areaCode":2136100},{"arcs":[[-15851,-15731,15853,15854]],"areaCode":2136200},{"arcs":[[-15827,-15735,15855,15856]],"areaCode":2138100},{"arcs":[[-15795,-15842,-15848,-15738,15857]],"areaCode":2138200},{"arcs":[[-15733,-15796,-15858,-15737,-15826]],"areaCode":2138300},{"arcs":[[-15255,-15833,15858,15859,-15852,-15855,15860,15861,-15465,-15463]],"areaCode":2140100},{"arcs":[[-15828,-15857,15862,-15859,-15832]],"areaCode":2140300},{"arcs":[[-15863,-15856,-15741,-15853,-15860]],"areaCode":2140400},{"arcs":[[-15825,-15831,-15723]],"areaCode":2142100},{"arcs":[[-15820,15863,-15812,-15778,-15805]],"areaCode":2150100},{"arcs":[[-15806,-15776]],"areaCode":2150200},{"arcs":[[15864,-15800,15865]],"areaCode":2150300},{"arcs":[[-15836,15866,15867,-15866,-15807,-15774]],"areaCode":2150400},{"arcs":[[-15808]],"areaCode":2150500},{"arcs":[[-15798,-15791,15868,-15823,-15801,-15865,-15868,15869]],"areaCode":2150500},{"arcs":[[15870,-15783,-15799,-15870,-15867,-15835,-15785]],"areaCode":2150600},{"arcs":[[-15871,-15784]],"areaCode":2150700},{"arcs":[[-15811,-15821,-15803,-15822,-15869,-15790]],"areaCode":2152100},{"arcs":[[-15830,-15763,15871,-13841,15872,-13839,15873,-13837,15874,-13835,15875,-13833,15876,15877,-13830,15878,-13828,15879,-13826,15880,-13824,15881,15882,-13821,15883,-13819,15884,-13817,15885,-13815,15886,-13813,15887,-13811,15888,-13809,15889,-13807,15890,-13805,15891,-13803,15892,-13801,15893,-13799,15894,-13797,15895,-13795,15896,-13793,15897,-13791,15898,-13789,15899,15900,-13786,15901,-13784,15902,-13782,15903,-13780,15904,-13778,15905,-13776,15906,-13774,15907,-13772,15908,15909,15910,-13768,15911,-13766,15912,15913,15914,-13762,15915,15916,-13759,15917,-13757,15918,-13755,15919,-13753,15920,-13751,15921,-13749,15922,-13747,15923,-13745,15924,-13743,15925,-13741,15926,15927,15928,-13737,15929,-13735,15930,-13733,15931,-13731,15932,-13729,15933,-13727,15934,-13725,15935,-13723,15936,-13721,15937,15938,-13718,15939,15940,-13715,15941,15942,15943,15944,-13710,15945,15946,-13707,15947,15948,15949,-13703,15950,-13701,15951,15952,-13698,15953,-13696,15954,15955,15956,-13692,15957,-13690,15958,-13688,15959,-13686,15960,-13684,15961,-13682,15962,-13680,15963,-13678,15964,-13676,15965,-13674,15966,-13672,15967,-13670,15968,-13668,15969,-13666,15970,-13664,15971,15972,-13661,15973,-13659,15974,15975,-13656,15976,-13654,15977,15978,15979,-13650,15980,-13648,15981,15982,-13645,15983,-13643,15984,-13641,15985,-13639,15986,-13637,15987,15988,15989,-13633,15990,-13631,15991,-13629,15992,15993,15994,15995,15996,-13623,15997,-13621,15998,-13619,15999,-13617,16000,16001,-13614,16002,-13612,16003,16004,16005,-13608,16006,-13606,16007,16008,-13603,16009,16010,-13600,16011,16012,-13597,16013,-13595,16014,-13593,16015,-13591,16016,-13589,16017,-13587,16018,-13585,16019,-13583,16020,-13581,16021,-13579,16022,-13577,16023,16024,16025,16026,16027,-13571,16028,-13569,16029,-13567,16030,-13565,16031,-13563,16032,-13561,16033,16034,-13558,16035,16036,16037,-13554,16038,-13552,16039,16040,-13549,16041,-13547,16042,-13545,16043,-13543,16044,-13541,16045,-13539,16046,-13537,16047,-13535,16048,16049,-13532,16050,-13530,16051,-13528,16052,-13526,16053,-13524,16054,16055,-13521,16056,-13519,16057,-13517,16058,-13515,16059,-13513,16060,-13511,16061,16062,-13508,16063,16064,16065,-13504,16066,-13502,16067,-13500,16068,-13498,16069,-13496,16070,16071,16072,-13492,16073,16074,16075,-13488,16076,-13486,16077,-13484,16078,-13482,16079,-13480,16080,-13478,16081,-13476,16082,16083,16084,-13472,16085,-13470,16086,16087,-13467,16088,16089,-13464,16090,-13462,-11713]],"areaCode":2160400},{"arcs":[[16091]],"areaCode":2220300},{"arcs":[[16092,16093,16094,16095,16096,16097,16098,16099]],"areaCode":2220300},{"arcs":[[16100]],"areaCode":2220500},{"arcs":[[16101,16102,16103,16104,-11586]],"areaCode":2220500},{"arcs":[[16105,-16094,16106,16107,16108,-11579]],"areaCode":2220600},{"arcs":[[-15561,16109,16110,16111,-2076,-15556,-15553,-15563]],"areaCode":2220700},{"arcs":[[16112,16113,16114,16115,-16103]],"areaCode":2220800},{"arcs":[[-2066,16116,16117,16118,16119,16120,16121,16122,-2102,16123]],"areaCode":2220900},{"arcs":[[16124,-16099,16125,-2077,-16112,16126,16127]],"areaCode":2221000},{"arcs":[[16128,16129,-2092,-2084,-2099,-2104,16130]],"areaCode":2221100},{"arcs":[[16131]],"areaCode":2221200},{"arcs":[[16132,16133,-16118,16134,-2072]],"areaCode":2221200},{"arcs":[[-16122,16135,16136,16137,16138,16139]],"areaCode":2221300},{"arcs":[[-2073,-16135,-16117,-2065]],"areaCode":2221400},{"arcs":[[-11581,16140,-16127,-16111,16141]],"areaCode":2221500},{"arcs":[[-16139,16142,-16129,16143]],"areaCode":2221600},{"arcs":[[16144]],"areaCode":2221900},{"arcs":[[16145,16146,16147,16148]],"areaCode":2221900},{"arcs":[[-11580,-16109,16149,-16128,-16141]],"areaCode":2222000},{"arcs":[[-2090,16150,16151,-2096]],"areaCode":2222100},{"arcs":[[-16115,16152,16153,16154,16155,-16097,16156]],"areaCode":2222200},{"arcs":[[16157,16158]],"areaCode":2222300},{"arcs":[[16159]],"areaCode":2222300},{"arcs":[[16160,-16137,16161,16162]],"areaCode":2222300},{"arcs":[[16163,-16162,-16136,-16121]],"areaCode":2222400},{"arcs":[[-16104,-16116,-16157,-16096,16164]],"areaCode":2222500},{"arcs":[[-16158,16165]],"areaCode":2222600},{"arcs":[[16166,16167,-16163,-16164,-16120]],"areaCode":2222600},{"arcs":[[16168,16169,-16153,-16114]],"areaCode":2230100},{"arcs":[[16170,-16149,16171,16172,-16154,-16170]],"areaCode":2230200},{"arcs":[[-16147,16173,16174]],"areaCode":2230400},{"arcs":[[-16172,-16148,-16175,16175,16176]],"areaCode":2230500},{"arcs":[[16177]],"areaCode":2230600},{"arcs":[[-16173,-16177,16178,-16155]],"areaCode":2230600},{"arcs":[[-11587,-16105,-16165,-16095,-16106,-11578]],"areaCode":2232500},{"arcs":[[-16093,16179,-16107]],"areaCode":2234100},{"arcs":[[-16108,-16180,-16100,-16125,-16150]],"areaCode":2234200},{"arcs":[[-11560,-11582,-16142,-16110,-15503,-15560,-11574]],"areaCode":2234400},{"arcs":[[16180,-16167,-16119,-16134]],"areaCode":2242400},{"arcs":[[-2067,-16124,-2101,-2030]],"areaCode":2242900},{"arcs":[[-16140,-16144,-16131,-2103,-16123]],"areaCode":2246100},{"arcs":[[16181]],"areaCode":2320100},{"arcs":[[16182]],"areaCode":2320100},{"arcs":[[-2097,-16152,16183,16184,16185,16186,16187]],"areaCode":2320100},{"arcs":[[16188,16189,16190,16191,16192,16193,-2177]],"areaCode":2320200},{"arcs":[[-15843,-15846,-15816,16194,16195,16196,16197,16198,-15792,-15847]],"areaCode":2320300},{"arcs":[[-15809,-2184,16199,16200,-2163,16201,-15766]],"areaCode":2320400},{"arcs":[[16202,16203,16204,16205,16206]],"areaCode":2320500},{"arcs":[[-16202,-2162,-2123,16207,16208,16209,-15767]],"areaCode":2320600},{"arcs":[[16210]],"areaCode":2320700},{"arcs":[[-16187,16211,16212,-16190,16213]],"areaCode":2320700},{"arcs":[[16214,16215,16216]],"areaCode":2320800},{"arcs":[[16217]],"areaCode":2320900},{"arcs":[[16218,16219,16220,16221]],"areaCode":2320900},{"arcs":[[-2180,16222,16223,16224,16225,16226,16227,16228,16229]],"areaCode":2321000},{"arcs":[[-16194,16230,-16222,16231,-16224,16232,-2178]],"areaCode":2321200},{"arcs":[[16233]],"areaCode":2321300},{"arcs":[[16234]],"areaCode":2321300},{"arcs":[[16235]],"areaCode":2321300},{"arcs":[[16236]],"areaCode":2321300},{"arcs":[[16237]],"areaCode":2321300},{"arcs":[[-16193,16238,16239,16240,-16219,-16231]],"areaCode":2321300},{"arcs":[[16241]],"areaCode":2321400},{"arcs":[[-16213,16242,-16240,16243,-16191]],"areaCode":2321400},{"arcs":[[-15768,-16210,16244,16245,16246,-15813,-15864,-15819]],"areaCode":2321500},{"arcs":[[16247]],"areaCode":2321600},{"arcs":[[16248,-16205,16249,16250,16251,16252]],"areaCode":2321600},{"arcs":[[16253,16254,16255,-16195,-15815,16256]],"areaCode":2321700},{"arcs":[[16257,16258,16259,-16255,16260,-16245,-16209]],"areaCode":2321900},{"arcs":[[16261,16262,16263,-15837,-15793,-16199]],"areaCode":2322000},{"arcs":[[16264,-2105,-2098,-16188,-16214,-16189,-2176,16265]],"areaCode":2322100},{"arcs":[[-2167,16266,16267,16268,16269,-2152,-2158]],"areaCode":2322200},{"arcs":[[16270,-16227,16271,-16267,-2166]],"areaCode":2322300},{"arcs":[[16272]],"areaCode":2322400},{"arcs":[[-16269,16273,16274,-16253,16275]],"areaCode":2322400},{"arcs":[[-16233,-16223,-2179]],"areaCode":2322500},{"arcs":[[-16201,16276,-2159]],"areaCode":2322600},{"arcs":[[-16232,-16221,16277,16278,-16225]],"areaCode":2322700},{"arcs":[[-16260,16279,-16196,-16256]],"areaCode":2322800},{"arcs":[[16280,-16228,-16271,-2165]],"areaCode":2322900},{"arcs":[[-2182,16281,16282,-2169,-2173,-2171,16283]],"areaCode":2323000},{"arcs":[[16284]],"areaCode":2323100},{"arcs":[[16285]],"areaCode":2323100},{"arcs":[[16286]],"areaCode":2323100},{"arcs":[[16287]],"areaCode":2323100},{"arcs":[[-16185,16288]],"areaCode":2323100},{"arcs":[[16289,-16216,16290,16291,16292,-15838,-16264]],"areaCode":2323200},{"arcs":[[16293,-2126,-2132,16294,-16262,-16198]],"areaCode":2323300},{"arcs":[[16295,-2121,-2127,-16294,-16197,-16280,-16259]],"areaCode":2323400},{"arcs":[[16296,16297,16298,16299,16300,-16292]],"areaCode":2323500},{"arcs":[[-2181,-16230,16301,-16282]],"areaCode":2323600},{"arcs":[[-16295,-2131,16302,-2147,16303,-16217,-16290,-16263]],"areaCode":2323700},{"arcs":[[-2183,-16284,-2170,-2160,-16277,-16200]],"areaCode":2323800},{"arcs":[[-16229,-16281,-2164,-16283,-16302]],"areaCode":2330200},{"arcs":[[-16208,-2122,-16296,-16258]],"areaCode":2334200},{"arcs":[[-16261,-16254,16304,-16246]],"areaCode":2336100},{"arcs":[[-15814,-16247,-16305,-16257]],"areaCode":2336200},{"arcs":[[-2130,-2148,-16303]],"areaCode":2342400},{"arcs":[[-16291,-16215,-16304,-2146,-2155,16305,-16297]],"areaCode":2342500},{"arcs":[[16306]],"areaCode":2342700},{"arcs":[[-16306,-2154,16307,-16298]],"areaCode":2342700},{"arcs":[[16308,-16206,-16249,-16275]],"areaCode":2344100},{"arcs":[[-16226,-16279,16309,-16207,-16309,-16274,-16268,-16272]],"areaCode":2344200},{"arcs":[[16310]],"areaCode":2344500},{"arcs":[[16311]],"areaCode":2344500},{"arcs":[[16312]],"areaCode":2344500},{"arcs":[[16313]],"areaCode":2344500},{"arcs":[[16314]],"areaCode":2344500},{"arcs":[[16315,16316]],"areaCode":2344500},{"arcs":[[16317,-16317,16318,-16251,16319]],"areaCode":2344600},{"arcs":[[16320,-16320,-16250,-16204]],"areaCode":2344700},{"arcs":[[-16244,-16239,-16192]],"areaCode":2350100},{"arcs":[[16321,-16266,-2175,-15679,16322]],"areaCode":2356100},{"arcs":[[16323,-2106,-16265,-16322]],"areaCode":2356200},{"arcs":[[-15663,-15683,-2107,-16324,-16323,-15678,-15682]],"areaCode":2356300},{"arcs":[[16324]],"areaCode":2420200},{"arcs":[[16325]],"areaCode":2420200},{"arcs":[[16326,16327,16328,16329,16330,16331,16332,16333,16334]],"areaCode":2420200},{"arcs":[[16335]],"areaCode":2420300},{"arcs":[[16336,16337]],"areaCode":2420300},{"arcs":[[16340,16341]],"areaCode":2420300},{"arcs":[[16342]],"areaCode":2420300},{"arcs":[[16343]],"areaCode":2420300},{"arcs":[[16344]],"areaCode":2420300},{"arcs":[[16345,16346,16347,16348,16349,16350,16351,16352,16353]],"areaCode":2420300},{"arcs":[[-15839,-16293,-16301,16354,16355,16356,16357,-16328,16358,16359]],"areaCode":2420500},{"arcs":[[16360,-2188,16361,16362,-16332]],"areaCode":2420700},{"arcs":[[-2193,16363,16364,16365,16366]],"areaCode":2420800},{"arcs":[[16367]],"areaCode":2420900},{"arcs":[[16368]],"areaCode":2420900},{"arcs":[[16369,16370]],"areaCode":2420900},{"arcs":[[16371,16372,16373,16374]],"areaCode":2420900},{"arcs":[[-16362,-2195,16375,16376]],"areaCode":2421000},{"arcs":[[16377]],"areaCode":2421100},{"arcs":[[16378]],"areaCode":2421100},{"arcs":[[16379]],"areaCode":2421100},{"arcs":[[16380]],"areaCode":2421100},{"arcs":[[16381,-16346,16382]],"areaCode":2421100},{"arcs":[[16383]],"areaCode":2421100},{"arcs":[[16384]],"areaCode":2421100},{"arcs":[[16385]],"areaCode":2421100},{"arcs":[[16386]],"areaCode":2421100},{"arcs":[[16387]],"areaCode":2421100},{"arcs":[[16388]],"areaCode":2421100},{"arcs":[[16389,-16373,16390,16391,16392,16393,16394,16395,16396,16397,16398]],"areaCode":2421200},{"arcs":[[-15840,-16360,16399,-16335,16400,16401,16402,-15728,-15849]],"areaCode":2421400},{"arcs":[[16403]],"areaCode":2421500},{"arcs":[[16404]],"areaCode":2421500},{"arcs":[[16405]],"areaCode":2421500},{"arcs":[[16406]],"areaCode":2421500},{"arcs":[[16407]],"areaCode":2421500},{"arcs":[[16408]],"areaCode":2421500},{"arcs":[[16409]],"areaCode":2421500},{"arcs":[[16410]],"areaCode":2421500},{"arcs":[[16411]],"areaCode":2421500},{"arcs":[[16412]],"areaCode":2421500},{"arcs":[[16413]],"areaCode":2421500},{"arcs":[[16414]],"areaCode":2421500},{"arcs":[[16415]],"areaCode":2421500},{"arcs":[[16416]],"areaCode":2421500},{"arcs":[[16417,16418,-16347,-16382]],"areaCode":2421500},{"arcs":[[-16376,-2194,-16367,16419,16420,16421,16422]],"areaCode":2421600},{"arcs":[[16423,-16355,-16300]],"areaCode":2430300},{"arcs":[[-16327,-16400,-16359]],"areaCode":2432400},{"arcs":[[-16334,16424,16425,-16401]],"areaCode":2434100},{"arcs":[[16426,-16329,-16358]],"areaCode":2434300},{"arcs":[[16427,-16330,-16427,-16357]],"areaCode":2434400},{"arcs":[[16428,16429,16430,-2198,16431]],"areaCode":2444100},{"arcs":[[-16353,16432,-16351,16433,-16340,16434,-16342,16435,-16337,16436,-16432,-2197,16437]],"areaCode":2444200},{"arcs":[[16438,16439,16440,16441,16442,-2199,-16431]],"areaCode":2444300},{"arcs":[[-16435,-16339,-16434,-16350,16443,-16429,-16437,-16338,-16436,-16341],[-16336]],"areaCode":2446100},{"arcs":[[-16433,-16352]],"areaCode":2446100},{"arcs":[[-16349,16444,16445,-16439,-16430,-16444]],"areaCode":2447000},{"arcs":[[16447]],"areaCode":2447100},{"arcs":[[16448,16449,16450,-16440,-16446]],"areaCode":2447100},{"arcs":[[16451]],"areaCode":2447200},{"arcs":[[16452]],"areaCode":2447200},{"arcs":[[16453]],"areaCode":2447200},{"arcs":[[-16419,16454,-16449,-16445,-16348]],"areaCode":2447200},{"arcs":[[16455]],"areaCode":2454300},{"arcs":[[16456]],"areaCode":2454300},{"arcs":[[16457]],"areaCode":2454300},{"arcs":[[16458]],"areaCode":2454300},{"arcs":[[16459]],"areaCode":2454300},{"arcs":[[16460,-16371,16461,-16375,16462,-16441,-16451]],"areaCode":2454300},{"arcs":[[16463,16464,-16392]],"areaCode":2456100},{"arcs":[[16465,16466,-16393,-16465]],"areaCode":2456200},{"arcs":[[16467,16468,16469,16470,16471,16472,16473,16474,16475]],"areaCode":2520200},{"arcs":[[-15862,16476,-16475,16477,-15242,-15466]],"areaCode":2520300},{"arcs":[[16478,16479,-2203,16480,-16473,16481]],"areaCode":2520400},{"arcs":[[16482,-2206,16483]],"areaCode":2520600},{"arcs":[[16484,-16484,-2205,16485]],"areaCode":2520700},{"arcs":[[16486,16487,16488,-2207,-16483,-16485]],"areaCode":2520800},{"arcs":[[16489,16490,-16425,-16333,-16363,-16377,-16423,16491,16492,16493,-2208,-16489,16494,16495,16496]],"areaCode":2520900},{"arcs":[[16497,16498,-16487,-16486,-2204,-16480]],"areaCode":2521000},{"arcs":[[16499,-16495,-16488,-16499]],"areaCode":2521100},{"arcs":[[-16478,-16474,-16481,-2214,16500,-2231,-15482,-15249,-15488,-15472,-15243]],"areaCode":2521200},{"arcs":[[16501,16502,-16402,-16426,-16491,16503,-16497,16504,-16482,-16472]],"areaCode":2521300},{"arcs":[[-15854,-15730,16505,-16476,-16477,-15861]],"areaCode":2521400},{"arcs":[[-16490,-16504]],"areaCode":2538300},{"arcs":[[-16505,-16496,-16500,-16498,-16479]],"areaCode":2538400},{"arcs":[[16506,16507,16508,-16502,-16471]],"areaCode":2542500},{"arcs":[[16509,-16507,-16470]],"areaCode":2544100},{"arcs":[[-16508,-16510,-16469,16510]],"areaCode":2544200},{"arcs":[[-15729,-16403,-16503,-16509,-16511,-16468,-16506]],"areaCode":2544300},{"arcs":[[16511,16512,16513,16514]],"areaCode":2610100},{"arcs":[[16515,16516,-16513]],"areaCode":2610200},{"arcs":[[-2213,16517,16518,16519,-16516,-16512,16520,-2232,-16501]],"areaCode":2610300},{"arcs":[[-16517,-16520,16521,16522,16523,-16514]],"areaCode":2610400},{"arcs":[[16524,16525,16526,16527,-16522,-16519]],"areaCode":2610500},{"arcs":[[-16528,16528,16529,-16523]],"areaCode":2610600},{"arcs":[[-16529,-16527,16530,16531,16532,16533]],"areaCode":2610700},{"arcs":[[-16515,-16524,-16530,-16534,16534,16535,-2233,-16521]],"areaCode":2610800},{"arcs":[[16536,-2211,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,-16531,-16526]],"areaCode":2610900},{"arcs":[[-2212,-16537,-16525,-16518]],"areaCode":2611000},{"arcs":[[-16533,16549,16550,16551,16552,16553,-16535]],"areaCode":2611100},{"arcs":[[16554]],"areaCode":2620200},{"arcs":[[16555]],"areaCode":2620200},{"arcs":[[16556]],"areaCode":2620200},{"arcs":[[16557]],"areaCode":2620200},{"arcs":[[16558]],"areaCode":2620200},{"arcs":[[16559]],"areaCode":2620200},{"arcs":[[-15480,16560,-2215,16561,16562]],"areaCode":2620200},{"arcs":[[16563]],"areaCode":2620200},{"arcs":[[16564]],"areaCode":2620200},{"arcs":[[-15483,-2238,-2248,-2216,-16561,-15479]],"areaCode":2620300},{"arcs":[[-2210,16565,16566,16567,16568,-16538]],"areaCode":2620400},{"arcs":[[16569,-16562,-2223,-2249,-2227,16570]],"areaCode":2620500},{"arcs":[[-16536,-16554,16571,16572,16573,16574,-2234]],"areaCode":2620600},{"arcs":[[16575,16576,16577,16578,16579,16580,-16568]],"areaCode":2620700},{"arcs":[[-16532,-16549,16581,-16550]],"areaCode":2620800},{"arcs":[[-16548,16582,16583,-16551,-16582]],"areaCode":2620900},{"arcs":[[16584,16585]],"areaCode":2621000},{"arcs":[[-16544,16586]],"areaCode":2621000},{"arcs":[[16587,-16542]],"areaCode":2621000},{"arcs":[[16588,-16580,16589,16590,16591,16592,-16546]],"areaCode":2621000},{"arcs":[[16593,-16540]],"areaCode":2621000},{"arcs":[[-16579,16594,16595,16596,16597,-16586,16598,-16590]],"areaCode":2621100},{"arcs":[[-16583,-16547,-16593,16599]],"areaCode":2630300},{"arcs":[[16600,-16576,-16567]],"areaCode":2632200},{"arcs":[[-16569,-16581,-16589,-16545,-16587,-16543,-16588,-16541,-16594,-16539]],"areaCode":2632200},{"arcs":[[-2245]],"areaCode":2634300},{"arcs":[[16601,16602,-2244,-16595,-16578]],"areaCode":2634300},{"arcs":[[-16494,16603,-16602,-16577,-16601,-16566,-2209]],"areaCode":2634400},{"arcs":[[-2246]],"areaCode":2636400},{"arcs":[[16604,-2241,16605,16606]],"areaCode":2636400},{"arcs":[[16607,-16606,-2240,-16603,-16604,-16493]],"areaCode":2636500},{"arcs":[[-2243,16608,16609,-16596]],"areaCode":2636600},{"arcs":[[-16492,-16422,16610,-16607,-16608]],"areaCode":2636700},{"arcs":[[-16571,-2226,16611]],"areaCode":2646300},{"arcs":[[16612]],"areaCode":2720200},{"arcs":[[16613,16614,16615,16616,16617,16618]],"areaCode":2720200},{"arcs":[[16619,16620]],"areaCode":2720300},{"arcs":[[-2324,16621,16622,16623,16624,16625]],"areaCode":2720300},{"arcs":[[-16621,16626,-16624,16627,16628,16629]],"areaCode":2720400},{"arcs":[[16630,16631,-2295,-2325,-16626,16632]],"areaCode":2720500},{"arcs":[[16633,16634]],"areaCode":2720600},{"arcs":[[16635,16636,16637,16638]],"areaCode":2720600},{"arcs":[[-16553,16639,16640,16641,16642,16643,-16572]],"areaCode":2720700},{"arcs":[[-16617,16645,16646,16647,16648,16649],[16644]],"areaCode":2720800},{"arcs":[[16650]],"areaCode":2720800},{"arcs":[[16651,-2326,-2304,-2291,16652,16653]],"areaCode":2720900},{"arcs":[[-16599,-16585,-16598,16654,16655,16656,-16641,16657,-16591]],"areaCode":2721000},{"arcs":[[-16644,16658,-16631,16659,16660,-16573]],"areaCode":2721100},{"arcs":[[16661,16662,16663,16664,16665,-2335,16666]],"areaCode":2721200},{"arcs":[[16667]],"areaCode":2721300},{"arcs":[[-16649,16668,-16647,16669,16670,16671,16672]],"areaCode":2721300},{"arcs":[[16673,16674]],"areaCode":2721300},{"arcs":[[16675,16676]],"areaCode":2721300},{"arcs":[[16677,16678,16679,16680,16681,-2366,16682]],"areaCode":2721400},{"arcs":[[16683,16684,16685,16686,-16654,16687,-16642,-16657]],"areaCode":2721500},{"arcs":[[-16681,16688,-2421,16689,16690,16691,-2361,16692]],"areaCode":2721600},{"arcs":[[-2336,-16666,16693,16694,-2368,-2364,-2314,-2320]],"areaCode":2721700},{"arcs":[[16695,16696,-2328,16697,-16686,16698]],"areaCode":2721800},{"arcs":[[-2362,-16692,16699,-16614,16700,-16637,16701,-2356]],"areaCode":2721900},{"arcs":[[-16660,-16633,-16625,-16627,-16620,-16630,16702,16703]],"areaCode":2722000},{"arcs":[[16704,16705,16706,16707,-16664,16708]],"areaCode":2722100},{"arcs":[[-2369]],"areaCode":2722200},{"arcs":[[-16707,16709,16710,-16683,-2365,-16695,16711]],"areaCode":2722200},{"arcs":[[-16698,-2327,-16652,-16687]],"areaCode":2722300},{"arcs":[[-16688,-16653,-2290,-16632,-16659,-16643]],"areaCode":2722400},{"arcs":[[-16635,16712]],"areaCode":2722500},{"arcs":[[-16702,-16636,16713,-2357]],"areaCode":2722500},{"arcs":[[-2352,16714,-2350,16715]],"areaCode":2722500},{"arcs":[[-16708,-16712,-16694,-16665]],"areaCode":2722600},{"arcs":[[16716,16717,-16667,-2334,-2301,-2296,-2309,-2329,-16697]],"areaCode":2722700},{"arcs":[[16718,-16671,16719,16720,16721,16722]],"areaCode":2722800},{"arcs":[[16723,16724]],"areaCode":2722800},{"arcs":[[16725,16726]],"areaCode":2722800},{"arcs":[[16727,-16699,-16685,16728]],"areaCode":2722900},{"arcs":[[16729,-16729,-16684,-16656]],"areaCode":2723000},{"arcs":[[-16682,-16693,-2360,-2342,-2349,-2367]],"areaCode":2723100},{"arcs":[[-16722,16730,16731,16732,16733]],"areaCode":2723200},{"arcs":[[-16584,-16600,-16592,-16658,-16640,-16552]],"areaCode":2730100},{"arcs":[[-16661,-16704,16734,16735,-16574]],"areaCode":2732100},{"arcs":[[-2235,-16575,-16736,16736,16737,16738]],"areaCode":2732200},{"arcs":[[-16638,-16701,-16619,16739]],"areaCode":2734100},{"arcs":[[-16669,-16648]],"areaCode":2736100},{"arcs":[[-16645]],"areaCode":2736100},{"arcs":[[-16719,16740,-16672]],"areaCode":2736200},{"arcs":[[-16674,16741,-16725,16742,-16727,16743,-16676,16744]],"areaCode":2736200},{"arcs":[[-16733,16745,16746]],"areaCode":2736600},{"arcs":[[16747,16748,-16678,-16711,16749]],"areaCode":2738100},{"arcs":[[16750,16751,-16679,-16749]],"areaCode":2738200},{"arcs":[[16752,16753,-2422,-16689,-16680,-16752]],"areaCode":2738300},{"arcs":[[16754]],"areaCode":2820100},{"arcs":[[16755]],"areaCode":2820100},{"arcs":[[16756]],"areaCode":2820100},{"arcs":[[16757]],"areaCode":2820100},{"arcs":[[16758]],"areaCode":2820100},{"arcs":[[16759]],"areaCode":2820100},{"arcs":[[16760]],"areaCode":2820100},{"arcs":[[16761]],"areaCode":2820100},{"arcs":[[16762]],"areaCode":2820100},{"arcs":[[16763]],"areaCode":2820100},{"arcs":[[16764]],"areaCode":2820100},{"arcs":[[16765]],"areaCode":2820100},{"arcs":[[16766]],"areaCode":2820100},{"arcs":[[16767]],"areaCode":2820100},{"arcs":[[16768]],"areaCode":2820100},{"arcs":[[16769]],"areaCode":2820100},{"arcs":[[16770]],"areaCode":2820100},{"arcs":[[16771]],"areaCode":2820100},{"arcs":[[16772]],"areaCode":2820100},{"arcs":[[16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783]],"areaCode":2820100},{"arcs":[[-16622,-2323,-2287,16784,16785,16786]],"areaCode":2820200},{"arcs":[[16787]],"areaCode":2820300},{"arcs":[[16788,16789,16790,16791]],"areaCode":2820300},{"arcs":[[16792,16793,16794,16795,-2409,-2396,16796]],"areaCode":2820300},{"arcs":[[16797]],"areaCode":2820400},{"arcs":[[16798]],"areaCode":2820400},{"arcs":[[16799]],"areaCode":2820400},{"arcs":[[16800]],"areaCode":2820400},{"arcs":[[16801,-16786,16802,16803,-2399,16804]],"areaCode":2820400},{"arcs":[[16805]],"areaCode":2820500},{"arcs":[[16806,16807,16808,16809]],"areaCode":2820500},{"arcs":[[16810]],"areaCode":2820600},{"arcs":[[16811,-2377,-2400,-16804]],"areaCode":2820600},{"arcs":[[16812,-16628,-16623,-16787,-16802,16813]],"areaCode":2820700},{"arcs":[[16814,16815,16816,16817]],"areaCode":2820800},{"arcs":[[-2229,-2250,-2221,16818,16819,16820,16821]],"areaCode":2820900},{"arcs":[[16822,16823,16824,-16795,16825,16826,16827,-16777,16828]],"areaCode":2821000},{"arcs":[[16829]],"areaCode":2821200},{"arcs":[[16830]],"areaCode":2821200},{"arcs":[[-16816,16831,16832,16833]],"areaCode":2821200},{"arcs":[[16834,16835,16836,16837,16838]],"areaCode":2821300},{"arcs":[[16839,-16814,-16805,-2398,16840,16841],[16842]],"areaCode":2821400},{"arcs":[[-2403,-2411,16843,-16824,16844,16845,16846]],"areaCode":2821500},{"arcs":[[16847,-16778,-16828]],"areaCode":2821600},{"arcs":[[-16843]],"areaCode":2821700},{"arcs":[[-16735,-16703,-16629,-16813,-16840,16848,-16737]],"areaCode":2821700},{"arcs":[[-16845,-16823,16849,16850]],"areaCode":2821800},{"arcs":[[16851,-16841,-2404,-16847,16852,16853]],"areaCode":2821900},{"arcs":[[-16837,16854,-16850,-16829,-16776,16855,16856,16857]],"areaCode":2822000},{"arcs":[[-2247,-2236,-16739,16858,-16854,16859,-16835,16860,-2218]],"areaCode":2822100},{"arcs":[[16861,16862,16863,16864,-16820]],"areaCode":2822200},{"arcs":[[-16861,-16839,16865,16866,-2219]],"areaCode":2822300},{"arcs":[[16867]],"areaCode":2822400},{"arcs":[[16868]],"areaCode":2822400},{"arcs":[[16869]],"areaCode":2822400},{"arcs":[[16870,-16808]],"areaCode":2822400},{"arcs":[[-2220,-16867,16871,16872,16873,-16862,-16819]],"areaCode":2822500},{"arcs":[[-16810,16874]],"areaCode":2822600},{"arcs":[[-16874,16875,-16783,16876,16877,16878,16879,16880,-16863]],"areaCode":2822700},{"arcs":[[-16853,-16846,-16851,-16855,-16836,-16860]],"areaCode":2822800},{"arcs":[[-16782,16881,-16780,16882,-16818,16883,16884,-16877]],"areaCode":2822900},{"arcs":[[-16849,-16842,-16852,-16859,-16738]],"areaCode":2830100},{"arcs":[[-16838,-16858,16885,16886,-16872,-16866]],"areaCode":2836500},{"arcs":[[-2410,-16796,-16825,-16844]],"areaCode":2838100},{"arcs":[[-16789,16887]],"areaCode":2838200},{"arcs":[[16888,-16791]],"areaCode":2838200},{"arcs":[[16889]],"areaCode":2838200},{"arcs":[[-16794,16890,-16826]],"areaCode":2838200},{"arcs":[[-16857,16891,-16774,16892,-16886]],"areaCode":2844200},{"arcs":[[-16856,-16775,-16892]],"areaCode":2844300},{"arcs":[[-16887,-16893,-16784,-16876,-16873]],"areaCode":2844600},{"arcs":[[-16882,-16781]],"areaCode":2846400},{"arcs":[[-16817,-16834,16893,16894,-16884]],"areaCode":2848100},{"arcs":[[-16878,-16885,-16895,16895,16896]],"areaCode":2850100},{"arcs":[[16897]],"areaCode":2858500},{"arcs":[[16898]],"areaCode":2858500},{"arcs":[[-16821,-16865,16899,16900,16901]],"areaCode":2858500},{"arcs":[[16902,-2439,16903,16904,-16901]],"areaCode":2858600},{"arcs":[[-16611,-16421,16905,16906,16907,16908,16909,16910,-16609,-2242,-16605]],"areaCode":2920100},{"arcs":[[16911,16912,16913,16914,16915]],"areaCode":2920200},{"arcs":[[16916,16917,16918,16919,16920,-16910]],"areaCode":2920300},{"arcs":[[16921,16922,16923,16924,-16917,-16909]],"areaCode":2920400},{"arcs":[[16925,16926,16927,16928,-16912,16929,16930]],"areaCode":2920500},{"arcs":[[-16908,16931,16932,16933,-16926,16934,-16922]],"areaCode":2920600},{"arcs":[[-16929,16935,16936,-2423,-16754,16937,-16913]],"areaCode":2920800},{"arcs":[[-16597,-16610,-16911,-16921,16938,16939,-16717,-16696,-16728,-16730,-16655]],"areaCode":2920900},{"arcs":[[-16706,16940,16941,16942,-16915,16943,-16750,-16710]],"areaCode":2921000},{"arcs":[[-16914,-16938,-16753,-16751,-16748,-16944]],"areaCode":2921100},{"arcs":[[-16365,16944,16945,16946,-16932,-16907,16947]],"areaCode":2921200},{"arcs":[[-16366,-16948,-16906,-16420]],"areaCode":2932200},{"arcs":[[-16718,-16940,16948,16949,-16662]],"areaCode":2934200},{"arcs":[[-16663,-16950,16950,16951,-16709]],"areaCode":2934300},{"arcs":[[16952,16953,16954,-16951,-16949,-16939,-16920]],"areaCode":2934400},{"arcs":[[16955,16956,-16953,-16919]],"areaCode":2934500},{"arcs":[[-16925,16957,16958,-16956,-16918]],"areaCode":2936100},{"arcs":[[16959,-16958,-16924,16960,16961]],"areaCode":2936200},{"arcs":[[-16935,-16931,16962,-16961,-16923]],"areaCode":2936300},{"arcs":[[-2192,16963,16964,-16945,-16364]],"areaCode":2938500},{"arcs":[[-2202,16965,-16964,-2191]],"areaCode":2938600},{"arcs":[[16966,16967,-16936,-16928]],"areaCode":2940100},{"arcs":[[-16927,-16934,16968,-16967]],"areaCode":2940200},{"arcs":[[-16942,16969,16970,16971]],"areaCode":2942400},{"arcs":[[-16970,-16941,-16705,-16952,-16955,16972]],"areaCode":2942500},{"arcs":[[-16962,-16963,-16930,-16916,-16943,-16972,16973],[16974]],"areaCode":2942600},{"arcs":[[-16975]],"areaCode":2942700},{"arcs":[[-16957,-16959,-16960,-16974,-16971,-16973,-16954]],"areaCode":2942700},{"arcs":[[16975,16976,16977,16978,16979,-16969,-16933,-16947]],"areaCode":2944100},{"arcs":[[16980,-2412,-16937,-16968,-16980]],"areaCode":2944200},{"arcs":[[16981,-2413,-16981,-16979]],"areaCode":2944300},{"arcs":[[16982,16983,-2414,-16982,-16978]],"areaCode":2944400},{"arcs":[[16984,16985,-2415,-16984]],"areaCode":2944600},{"arcs":[[-2418,16986,-2435,16987,16988,16989]],"areaCode":2944700},{"arcs":[[16990,16991,16992,-16397,16993,-16395,16994,-2436,-16987,-2417]],"areaCode":2944900},{"arcs":[[-16399,16995,-16992,16996]],"areaCode":2945000},{"arcs":[[-16442,-16463,-16374,-16390,-16997,-16991,-2416,-16986,16997]],"areaCode":2945100},{"arcs":[[-2200,-16443,-16998,-16985,-16983,-16977,16998]],"areaCode":2945200},{"arcs":[[-16965,-16966,-2201,-16999,-16976,-16946]],"areaCode":2945300},{"arcs":[[16999]],"areaCode":3020100},{"arcs":[[17000]],"areaCode":3020100},{"arcs":[[17001]],"areaCode":3020100},{"arcs":[[17002]],"areaCode":3020100},{"arcs":[[17003]],"areaCode":3020100},{"arcs":[[17004]],"areaCode":3020100},{"arcs":[[17005]],"areaCode":3020100},{"arcs":[[17006,17007,17008,17009,-16746,-16732]],"areaCode":3020100},{"arcs":[[17010,17011,17012,17013,-17009,17014]],"areaCode":3020200},{"arcs":[[17015]],"areaCode":3020300},{"arcs":[[-2420,17016,17017,17018,-16690]],"areaCode":3020300},{"arcs":[[17019,17020,17021,-17013]],"areaCode":3020400},{"arcs":[[17022]],"areaCode":3020400},{"arcs":[[17023]],"areaCode":3020400},{"arcs":[[17024]],"areaCode":3020500},{"arcs":[[17025,17026,17027,17028,17029]],"areaCode":3020500},{"arcs":[[-16394,-16467,17031,17032,17033,-2425,-16995],[17030]],"areaCode":3020700},{"arcs":[[-16396,-16994]],"areaCode":3020700},{"arcs":[[17034,17035,-17015,-17008,17036,-16720,-16670,-16646,-16616]],"areaCode":3020800},{"arcs":[[-17037,-17007,-16731,-16721]],"areaCode":3020900},{"arcs":[[17037,17038,-17011,-17036]],"areaCode":3030400},{"arcs":[[-17019,17039,17040,-16989,17041,-17038,-17035,-16615,-16700,-16691]],"areaCode":3034100},{"arcs":[[17042,-17040,-17018],[-17016]],"areaCode":3034300},{"arcs":[[-16990,-17041,-17043,-17017,-2419]],"areaCode":3034400},{"arcs":[[17043,17044,17045,-17021]],"areaCode":3036100},{"arcs":[[17046]],"areaCode":3036200},{"arcs":[[17047,17048,17049,17050,17051,-17045]],"areaCode":3036200},{"arcs":[[-16988,-2434,17052,-17048,-17044,-17020,-17012,-17039,-17042]],"areaCode":3036600},{"arcs":[[-17028,17053,17054]],"areaCode":3038100},{"arcs":[[17055]],"areaCode":3038200},{"arcs":[[-17050,17056,-17029,-17055,17057,17058]],"areaCode":3038200},{"arcs":[[17059]],"areaCode":3038300},{"arcs":[[-17051,-17059,17060]],"areaCode":3038300},{"arcs":[[17061]],"areaCode":3038300},{"arcs":[[-2432,17062,17063,-17026,17064]],"areaCode":3039000},{"arcs":[[-2431,17065,-17063]],"areaCode":3039100},{"arcs":[[-2433,-17065,-17030,-17057,-17049,-17053]],"areaCode":3039200},{"arcs":[[17066]],"areaCode":3040100},{"arcs":[[17067]],"areaCode":3040100},{"arcs":[[17068,17069,17070,-2429,17071,-2427]],"areaCode":3040100},{"arcs":[[-17072,-2428]],"areaCode":3040400},{"arcs":[[17072]],"areaCode":3040600},{"arcs":[[17073]],"areaCode":3040600},{"arcs":[[17074,17075,17076,-17070]],"areaCode":3040600},{"arcs":[[17077]],"areaCode":3042100},{"arcs":[[17078,17079,17080,17081,17082,17083,17084,-17033]],"areaCode":3042100},{"arcs":[[-17082,17085]],"areaCode":3042200},{"arcs":[[17086,17087,-17080]],"areaCode":3042200},{"arcs":[[-17034,-17085,17088,-17075,-17069,-2426]],"areaCode":3042400},{"arcs":[[-16993,-16996,-16398]],"areaCode":3042700},{"arcs":[[17089]],"areaCode":3042800},{"arcs":[[17090]],"areaCode":3042800},{"arcs":[[17091]],"areaCode":3042800},{"arcs":[[17092,-17076,-17089,-17084]],"areaCode":3042800},{"arcs":[[17093,17094,17095,-2452,17096,17097,17098,17099]],"areaCode":3120200},{"arcs":[[17100,17101,17102,17103,17104,17105]],"areaCode":3120300},{"arcs":[[17106]],"areaCode":3120400},{"arcs":[[-17099,17107,17108,17109]],"areaCode":3120400},{"arcs":[[-2438,17111,-16904]],"areaCode":3130200},{"arcs":[[-16900,-16864,-16881,17112,17113,17114,-2440,-16903]],"areaCode":3132500},{"arcs":[[-17114,17115,17116,17117,17118,-2442,17119]],"areaCode":3132800},{"arcs":[[-17115,-17120,-2441]],"areaCode":3132900},{"arcs":[[-2445,17120,17121,-17102,17122]],"areaCode":3136400},{"arcs":[[-2446,-17123,-17101,17123,17124]],"areaCode":3137000},{"arcs":[[17125,-17105,17126,17127,17128]],"areaCode":3137100},{"arcs":[[-17124,-17106,-17126,17129]],"areaCode":3137200},{"arcs":[[-17094,17130]],"areaCode":3138400},{"arcs":[[-17128,17131,-2448,-17096,17132]],"areaCode":3138600},{"arcs":[[-2451,17133,17134,17135,-17097]],"areaCode":3138900},{"arcs":[[17136,17137,17138,17139,17140,-17135]],"areaCode":3140100},{"arcs":[[17141,17142,17143,-17137,-17134,-2450]],"areaCode":3140200},{"arcs":[[-17104,17144,17145,-17142,-2449,-17132,-17127]],"areaCode":3140300},{"arcs":[[17146]],"areaCode":3220100},{"arcs":[[17147]],"areaCode":3220100},{"arcs":[[17148]],"areaCode":3220100},{"arcs":[[17149]],"areaCode":3220100},{"arcs":[[-17109,17150,17151,17152,17153]],"areaCode":3220100},{"arcs":[[17154]],"areaCode":3220200},{"arcs":[[17155]],"areaCode":3220200},{"arcs":[[17156]],"areaCode":3220200},{"arcs":[[17157,17158,17159,17160,17161]],"areaCode":3220200},{"arcs":[[17164]],"areaCode":3220300},{"arcs":[[-17153,17165,17166,17167,17168]],"areaCode":3220300},{"arcs":[[-17160,17169,17170,17171,17172,17173,17174,17175,17176]],"areaCode":3220400},{"arcs":[[17177]],"areaCode":3220400},{"arcs":[[17178]],"areaCode":3220500},{"arcs":[[17179]],"areaCode":3220500},{"arcs":[[-17163,17180,-17168,17181,17182,17183,17184,17185]],"areaCode":3220500},{"arcs":[[-17136,-17141,17186,17187,-17151,-17108,-17098]],"areaCode":3220600},{"arcs":[[17188]],"areaCode":3220700},{"arcs":[[17189,17190,-17162,17191,-17185]],"areaCode":3220700},{"arcs":[[17192]],"areaCode":3220900},{"arcs":[[-17188,17193,17194,17195,-17166,-17152]],"areaCode":3220900},{"arcs":[[-17140,17196,-17194,-17187],[-17193]],"areaCode":3234300},{"arcs":[[-17196,17197,17198,17199,-17182,-17167]],"areaCode":3238600},{"arcs":[[17200,-17190,-17184,17201]],"areaCode":3244100},{"arcs":[[-17200,17202,17203,-17202,-17183]],"areaCode":3244800},{"arcs":[[17204,17205,17206,-17158,-17191,-17201,-17204]],"areaCode":3244900},{"arcs":[[17207,17208,17209,-17175]],"areaCode":3250100},{"arcs":[[-17174,17210,17211,17212,-17208]],"areaCode":3250500},{"arcs":[[17213]],"areaCode":3252500},{"arcs":[[17214]],"areaCode":3252500},{"arcs":[[17215]],"areaCode":3252500},{"arcs":[[17216]],"areaCode":3252500},{"arcs":[[17217]],"areaCode":3252600},{"arcs":[[17218]],"areaCode":3252600},{"arcs":[[17219]],"areaCode":3252700},{"arcs":[[17220]],"areaCode":3252700},{"arcs":[[17221]],"areaCode":3252700},{"arcs":[[17222]],"areaCode":3252700},{"arcs":[[17223]],"areaCode":3252700},{"arcs":[[17224]],"areaCode":3252800},{"arcs":[[17225]],"areaCode":3252800},{"arcs":[[17226]],"areaCode":3252800},{"arcs":[[17227]],"areaCode":3252800},{"arcs":[[17228]],"areaCode":3252800},{"arcs":[[17229]],"areaCode":3252800},{"arcs":[[17230]],"areaCode":3252800},{"arcs":[[17231]],"areaCode":3252800},{"arcs":[[17232]],"areaCode":3252800},{"arcs":[[17233]],"areaCode":3320200},{"arcs":[[17234]],"areaCode":3320200},{"arcs":[[17235]],"areaCode":3320200},{"arcs":[[17236]],"areaCode":3320200},{"arcs":[[17237]],"areaCode":3320200},{"arcs":[[17238]],"areaCode":3320200},{"arcs":[[17239]],"areaCode":3320200},{"arcs":[[17240]],"areaCode":3320200},{"arcs":[[17241,-2476,17242,17243,17244,17245,17246,-2459]],"areaCode":3320200},{"arcs":[[-17119,17247,17248,17249,17250,17251,-2443]],"areaCode":3320300},{"arcs":[[17252,17253]],"areaCode":3320400},{"arcs":[[17254,17255]],"areaCode":3320400},{"arcs":[[17256,-17243,-2475]],"areaCode":3320400},{"arcs":[[17257]],"areaCode":3320400},{"arcs":[[17258]],"areaCode":3320500},{"arcs":[[17259]],"areaCode":3320500},{"arcs":[[17260]],"areaCode":3320500},{"arcs":[[17261]],"areaCode":3320500},{"arcs":[[17262]],"areaCode":3320500},{"arcs":[[17263]],"areaCode":3320500},{"arcs":[[17264]],"areaCode":3320500},{"arcs":[[17265]],"areaCode":3320500},{"arcs":[[17266]],"areaCode":3320500},{"arcs":[[17267]],"areaCode":3320500},{"arcs":[[17268]],"areaCode":3320500},{"arcs":[[17269,17270,17271,17272,17273,17274,17275]],"areaCode":3320500},{"arcs":[[17276,17277,-17275,17278,17279,17280]],"areaCode":3320700},{"arcs":[[-2460,-17247,17281,-17277,17282,17283]],"areaCode":3320800},{"arcs":[[17284,-17283,-17281,17285,17286,17287,17288]],"areaCode":3320900},{"arcs":[[17289,17290,-17288,17291,-17138,-17144]],"areaCode":3321000},{"arcs":[[17292]],"areaCode":3321100},{"arcs":[[17293]],"areaCode":3321100},{"arcs":[[17294]],"areaCode":3321100},{"arcs":[[17295]],"areaCode":3321100},{"arcs":[[17296]],"areaCode":3321100},{"arcs":[[17297]],"areaCode":3321100},{"arcs":[[17298]],"areaCode":3321100},{"arcs":[[-16896,-16894,-16833,17299,17300,-2469,17301,17302,17303]],"areaCode":3321100},{"arcs":[[17304]],"areaCode":3321200},{"arcs":[[17305]],"areaCode":3321200},{"arcs":[[17306]],"areaCode":3321200},{"arcs":[[17307]],"areaCode":3321200},{"arcs":[[17308]],"areaCode":3321200},{"arcs":[[17309]],"areaCode":3321200},{"arcs":[[17310]],"areaCode":3321200},{"arcs":[[17311,-2470,-17301]],"areaCode":3321200},{"arcs":[[17312,-17302,-2472,-2454,17313,17314]],"areaCode":3321300},{"arcs":[[-17122,17315,-17251,17316,17317,-17289,-17291,17318,-17145,-17103]],"areaCode":3321400},{"arcs":[[17319,-16879,-16897,-17304,17320,17321,17322,17323,-17117]],"areaCode":3321500},{"arcs":[[-17245,17324,-17272,17325,-17270,17326]],"areaCode":3321600},{"arcs":[[-17303,-17313,17327,-17321]],"areaCode":3334600},{"arcs":[[-2458,-2477,-17242]],"areaCode":3342300},{"arcs":[[-17271,-17326]],"areaCode":3344500},{"arcs":[[-17246,-17327,-17276,-17278,-17282]],"areaCode":3346100},{"arcs":[[-17290,-17143,-17146,-17319]],"areaCode":3358600},{"arcs":[[-2444,-17252,-17316,-17121]],"areaCode":3360600},{"arcs":[[-17323,17328,-17249,17329]],"areaCode":3362200},{"arcs":[[-17324,-17330,-17248,-17118]],"areaCode":3362300},{"arcs":[[-16880,-17320,-17116,-17113]],"areaCode":3364300},{"arcs":[[-17314,-2453,17330]],"areaCode":3366300},{"arcs":[[-17329,-17322,-17328,-17315,-17331,-2462,17331,-17317,-17250]],"areaCode":3366600},{"arcs":[[-17332,-2461,-17284,-17285,-17318]],"areaCode":3368100},{"arcs":[[17332]],"areaCode":3420200},{"arcs":[[17333]],"areaCode":3420200},{"arcs":[[17334]],"areaCode":3420200},{"arcs":[[17335]],"areaCode":3420200},{"arcs":[[17336]],"areaCode":3420200},{"arcs":[[17337]],"areaCode":3420200},{"arcs":[[17338]],"areaCode":3420200},{"arcs":[[17339]],"areaCode":3420200},{"arcs":[[17340]],"areaCode":3420200},{"arcs":[[17341]],"areaCode":3420200},{"arcs":[[17342]],"areaCode":3420200},{"arcs":[[17343]],"areaCode":3420200},{"arcs":[[17344]],"areaCode":3420200},{"arcs":[[17345]],"areaCode":3420200},{"arcs":[[17346]],"areaCode":3420200},{"arcs":[[17347]],"areaCode":3420200},{"arcs":[[17348]],"areaCode":3420200},{"arcs":[[17349]],"areaCode":3420200},{"arcs":[[17350]],"areaCode":3420200},{"arcs":[[17351]],"areaCode":3420200},{"arcs":[[17352]],"areaCode":3420200},{"arcs":[[17353]],"areaCode":3420200},{"arcs":[[17354]],"areaCode":3420200},{"arcs":[[17355]],"areaCode":3420200},{"arcs":[[17356]],"areaCode":3420200},{"arcs":[[17357,17358,-2516,17359,17360]],"areaCode":3420200},{"arcs":[[17361]],"areaCode":3420300},{"arcs":[[17362]],"areaCode":3420300},{"arcs":[[17363]],"areaCode":3420300},{"arcs":[[17364,17365,17366]],"areaCode":3420300},{"arcs":[[17367]],"areaCode":3420400},{"arcs":[[17368]],"areaCode":3420400},{"arcs":[[17369,17370,-17367,17371,17372]],"areaCode":3420400},{"arcs":[[17375]],"areaCode":3420500},{"arcs":[[17376]],"areaCode":3420500},{"arcs":[[17377]],"areaCode":3420500},{"arcs":[[17378]],"areaCode":3420500},{"arcs":[[17379]],"areaCode":3420500},{"arcs":[[17380]],"areaCode":3420500},{"arcs":[[17381]],"areaCode":3420500},{"arcs":[[17382]],"areaCode":3420500},{"arcs":[[17383]],"areaCode":3420500},{"arcs":[[17384,17385]],"areaCode":3420500},{"arcs":[[17386,17387,-17370,17388,17389]],"areaCode":3420500},{"arcs":[[17390]],"areaCode":3420700},{"arcs":[[17391]],"areaCode":3420700},{"arcs":[[17392]],"areaCode":3420700},{"arcs":[[17393]],"areaCode":3420700},{"arcs":[[17394]],"areaCode":3420700},{"arcs":[[17395]],"areaCode":3420700},{"arcs":[[17396]],"areaCode":3420700},{"arcs":[[17397]],"areaCode":3420700},{"arcs":[[17399]],"areaCode":3420700},{"arcs":[[-17279,-17274,17400,-17386,17401,-17387,17402,17403],[17398]],"areaCode":3420700},{"arcs":[[17404,-17403,-17390,17405,17406,17407]],"areaCode":3420800},{"arcs":[[-17407,17408,17409,17410,-17205,-17203,-17199,17411]],"areaCode":3420900},{"arcs":[[-17197,-17139,-17292,-17287,17412,-17408,-17412,-17198,-17195]],"areaCode":3421000},{"arcs":[[17413,17414]],"areaCode":3421100},{"arcs":[[17415]],"areaCode":3421100},{"arcs":[[17416]],"areaCode":3421100},{"arcs":[[17417]],"areaCode":3421100},{"arcs":[[17418]],"areaCode":3421100},{"arcs":[[17419]],"areaCode":3421100},{"arcs":[[17420]],"areaCode":3421100},{"arcs":[[17421]],"areaCode":3421100},{"arcs":[[17422,17423,17424,17425]],"areaCode":3421100},{"arcs":[[17426]],"areaCode":3421100},{"arcs":[[17427]],"areaCode":3421200},{"arcs":[[17428]],"areaCode":3421200},{"arcs":[[17429]],"areaCode":3421200},{"arcs":[[17430,-17372,-17366,17431,-17361,17432,-2520,-2504,17433,-17410]],"areaCode":3421200},{"arcs":[[17434]],"areaCode":3421300},{"arcs":[[-2526,17435,-2523,17436,-17426,17437,-17172,17438],[-17427],[-17422],[-17420],[-17421],[-17419]],"areaCode":3421300},{"arcs":[[-17411,-17434,-2503,17439,-17206]],"areaCode":3421400},{"arcs":[[17440]],"areaCode":3421500},{"arcs":[[17441]],"areaCode":3421500},{"arcs":[[17442]],"areaCode":3421500},{"arcs":[[17443]],"areaCode":3421500},{"arcs":[[17444]],"areaCode":3421500},{"arcs":[[17445]],"areaCode":3421500},{"arcs":[[17446]],"areaCode":3421500},{"arcs":[[-2519,-2495,-2483]],"areaCode":3430200},{"arcs":[[17447,-2514,-2511,17448,-2512,-2522]],"areaCode":3430400},{"arcs":[[-17433,-17360,-2515,-17448,-2521]],"areaCode":3430700},{"arcs":[[-17359,17449,-2509,-2517]],"areaCode":3430900},{"arcs":[[-2507,-2527,-17439,-17171,17450]],"areaCode":3436800},{"arcs":[[-17440,-2508,-17451,-17170,-17159,-17207]],"areaCode":3436900},{"arcs":[[17451]],"areaCode":3443100},{"arcs":[[17452]],"areaCode":3443100},{"arcs":[[17453]],"areaCode":3443100},{"arcs":[[17454]],"areaCode":3443100},{"arcs":[[17455]],"areaCode":3443100},{"arcs":[[17456]],"areaCode":3443100},{"arcs":[[17457]],"areaCode":3443100},{"arcs":[[17458]],"areaCode":3443100},{"arcs":[[17459]],"areaCode":3443100},{"arcs":[[17460]],"areaCode":3443100},{"arcs":[[17461]],"areaCode":3443100},{"arcs":[[-17406,-17389,-17373,-17431,-17409]],"areaCode":3446200},{"arcs":[[-17286,-17280,-17404,-17405,-17413]],"areaCode":3454500},{"arcs":[[17462]],"areaCode":3520100},{"arcs":[[17463]],"areaCode":3520100},{"arcs":[[17464]],"areaCode":3520100},{"arcs":[[17465]],"areaCode":3520100},{"arcs":[[17466]],"areaCode":3520100},{"arcs":[[17467]],"areaCode":3520100},{"arcs":[[17468]],"areaCode":3520100},{"arcs":[[17469]],"areaCode":3520100},{"arcs":[[17470]],"areaCode":3520100},{"arcs":[[17471,17472,17473,17474]],"areaCode":3520100},{"arcs":[[17475]],"areaCode":3520100},{"arcs":[[17476]],"areaCode":3520100},{"arcs":[[17477,17478,17479,17480]],"areaCode":3520200},{"arcs":[[17481]],"areaCode":3520300},{"arcs":[[-17209,-17213,17482,17483,17484,-17478,17485,17486]],"areaCode":3520300},{"arcs":[[17487]],"areaCode":3520400},{"arcs":[[17488]],"areaCode":3520400},{"arcs":[[17489]],"areaCode":3520400},{"arcs":[[17490]],"areaCode":3520400},{"arcs":[[17491]],"areaCode":3520400},{"arcs":[[17492]],"areaCode":3520400},{"arcs":[[17493]],"areaCode":3520400},{"arcs":[[-17176,-17210,-17487,17494,17495,17496,17497,17498]],"areaCode":3520400},{"arcs":[[17499]],"areaCode":3520400},{"arcs":[[17500]],"areaCode":3520600},{"arcs":[[17501]],"areaCode":3520600},{"arcs":[[17502]],"areaCode":3520600},{"arcs":[[17503]],"areaCode":3520600},{"arcs":[[17504,17505,-17484]],"areaCode":3520600},{"arcs":[[17506]],"areaCode":3520700},{"arcs":[[17507]],"areaCode":3520700},{"arcs":[[17508,17509,17510]],"areaCode":3520700},{"arcs":[[17511]],"areaCode":3520800},{"arcs":[[17512]],"areaCode":3520800},{"arcs":[[17513]],"areaCode":3520800},{"arcs":[[17514]],"areaCode":3520800},{"arcs":[[17515]],"areaCode":3520800},{"arcs":[[17516]],"areaCode":3520800},{"arcs":[[17517]],"areaCode":3520800},{"arcs":[[17518]],"areaCode":3520800},{"arcs":[[17519]],"areaCode":3520800},{"arcs":[[17520]],"areaCode":3520800},{"arcs":[[17521]],"areaCode":3520800},{"arcs":[[-17414,17522]],"areaCode":3520800},{"arcs":[[-17173,-17438,-17425,17523,17524,17525,17526,17527,17528,-17211]],"areaCode":3520800},{"arcs":[[17529]],"areaCode":3521000},{"arcs":[[17530]],"areaCode":3521000},{"arcs":[[17531]],"areaCode":3521000},{"arcs":[[17532]],"areaCode":3521000},{"arcs":[[-17528,17533,17534,17535,17536,-17509,17537]],"areaCode":3521000},{"arcs":[[17538]],"areaCode":3521100},{"arcs":[[17539]],"areaCode":3521100},{"arcs":[[17540]],"areaCode":3521100},{"arcs":[[17541]],"areaCode":3521100},{"arcs":[[17542]],"areaCode":3521100},{"arcs":[[-17496,17543,-17472,17544]],"areaCode":3521100},{"arcs":[[17545]],"areaCode":3521200},{"arcs":[[17546]],"areaCode":3521200},{"arcs":[[17547,17548,17549,17550,-17535,17551,-17526]],"areaCode":3521200},{"arcs":[[-17495,-17486,-17481,17552,-17473,-17544]],"areaCode":3521300},{"arcs":[[17553]],"areaCode":3521500},{"arcs":[[17554]],"areaCode":3521500},{"arcs":[[17555]],"areaCode":3521500},{"arcs":[[17556]],"areaCode":3521500},{"arcs":[[17557]],"areaCode":3521500},{"arcs":[[-17529,-17538,-17511,17558,-17505,-17483,-17212],[17559],[17560],[17561]],"areaCode":3521500},{"arcs":[[-17480,17562,-17474,-17553]],"areaCode":3521600},{"arcs":[[17563]],"areaCode":3530500},{"arcs":[[17564]],"areaCode":3530500},{"arcs":[[17565]],"areaCode":3530500},{"arcs":[[17566]],"areaCode":3530500},{"arcs":[[17567]],"areaCode":3530500},{"arcs":[[17568]],"areaCode":3530500},{"arcs":[[17569]],"areaCode":3530500},{"arcs":[[17570]],"areaCode":3530500},{"arcs":[[17571]],"areaCode":3530500},{"arcs":[[17572]],"areaCode":3530500},{"arcs":[[17573]],"areaCode":3530500},{"arcs":[[17574]],"areaCode":3530500},{"arcs":[[17575]],"areaCode":3530500},{"arcs":[[17576]],"areaCode":3530500},{"arcs":[[17577]],"areaCode":3530500},{"arcs":[[17578]],"areaCode":3530500},{"arcs":[[17579]],"areaCode":3530500},{"arcs":[[-17424,17580,-17524]],"areaCode":3532100},{"arcs":[[17581]],"areaCode":3534100},{"arcs":[[17582]],"areaCode":3534100},{"arcs":[[17583]],"areaCode":3534100},{"arcs":[[17584]],"areaCode":3534100},{"arcs":[[17585]],"areaCode":3534100},{"arcs":[[17586]],"areaCode":3534100},{"arcs":[[17587]],"areaCode":3534100},{"arcs":[[-17549,17588,17589]],"areaCode":3534100},{"arcs":[[17590]],"areaCode":3534300},{"arcs":[[17591]],"areaCode":3534300},{"arcs":[[-17551,17592,17593,-17536]],"areaCode":3534300},{"arcs":[[-17534,-17527,-17552]],"areaCode":3534300},{"arcs":[[17594]],"areaCode":3534400},{"arcs":[[-17590,17595,-17593,-17550]],"areaCode":3534400},{"arcs":[[17596]],"areaCode":3550200},{"arcs":[[17597]],"areaCode":3550200},{"arcs":[[17598]],"areaCode":3550200},{"arcs":[[17599,-17498]],"areaCode":3550200},{"arcs":[[17600]],"areaCode":3620100},{"arcs":[[17601]],"areaCode":3620100},{"arcs":[[17602]],"areaCode":3620100},{"arcs":[[17603]],"areaCode":3620100},{"arcs":[[17604,17605,17606,17607,17608,17609,17610,17611,17612]],"areaCode":3620100},{"arcs":[[17613]],"areaCode":3620200},{"arcs":[[17614,17615,17616,17617,17618,17619]],"areaCode":3620200},{"arcs":[[17620]],"areaCode":3620200},{"arcs":[[17621,17622,17623,-17606]],"areaCode":3620300},{"arcs":[[17624]],"areaCode":3620400},{"arcs":[[17625]],"areaCode":3620400},{"arcs":[[17626]],"areaCode":3620400},{"arcs":[[17627]],"areaCode":3620400},{"arcs":[[17628]],"areaCode":3620400},{"arcs":[[17629]],"areaCode":3620400},{"arcs":[[17630]],"areaCode":3620400},{"arcs":[[17631]],"areaCode":3620400},{"arcs":[[-2569,-2558,17632,-17623,17633]],"areaCode":3620400},{"arcs":[[-17624,-17633,-2557,17634,17635,-17607]],"areaCode":3630100},{"arcs":[[-2556,17636,17637,-17635]],"areaCode":3630200},{"arcs":[[-17636,-17638,17638,-17608]],"areaCode":3632100},{"arcs":[[17639,-2528,17640,17641,-17610]],"areaCode":3634100},{"arcs":[[-17609,-17639,-17637,-2564,-2536,-2529,-17640]],"areaCode":3634200},{"arcs":[[17642,-17613,17643,-17615]],"areaCode":3640100},{"arcs":[[-17616,-17644,-17612,17644]],"areaCode":3640200},{"arcs":[[-17645,-17611,-17642,17645,17646,-17617]],"areaCode":3640300},{"arcs":[[-17647,17647,17648,-17618]],"areaCode":3640400},{"arcs":[[-17648,-17646,-17641,-2532,-2533,17649]],"areaCode":3640500},{"arcs":[[17650]],"areaCode":3720100},{"arcs":[[17651]],"areaCode":3720100},{"arcs":[[17652]],"areaCode":3720100},{"arcs":[[17653,17654,-2542,17655,17656,17657,17658]],"areaCode":3720100},{"arcs":[[17659]],"areaCode":3720100},{"arcs":[[17660]],"areaCode":3720100},{"arcs":[[17661]],"areaCode":3720100},{"arcs":[[17662]],"areaCode":3720100},{"arcs":[[17663,-17253]],"areaCode":3720100},{"arcs":[[17664]],"areaCode":3720100},{"arcs":[[17665]],"areaCode":3720100},{"arcs":[[17666,17667,17668,17669,17670,17671,17672]],"areaCode":3720200},{"arcs":[[17673]],"areaCode":3720200},{"arcs":[[17674]],"areaCode":3720200},{"arcs":[[17675]],"areaCode":3720200},{"arcs":[[17676]],"areaCode":3720200},{"arcs":[[17677]],"areaCode":3720200},{"arcs":[[17678]],"areaCode":3720200},{"arcs":[[17679]],"areaCode":3720200},{"arcs":[[17680]],"areaCode":3720300},{"arcs":[[17681,-17668,17682,17683,17684,17685,-17658]],"areaCode":3720300},{"arcs":[[17686]],"areaCode":3720300},{"arcs":[[17687]],"areaCode":3720300},{"arcs":[[17688]],"areaCode":3720300},{"arcs":[[17689]],"areaCode":3720300},{"arcs":[[17690]],"areaCode":3720300},{"arcs":[[17691,17692,17693,17694,-17671]],"areaCode":3720400},{"arcs":[[17695]],"areaCode":3720500},{"arcs":[[17696]],"areaCode":3720500},{"arcs":[[17697]],"areaCode":3720500},{"arcs":[[-2551,17698,17699,17700]],"areaCode":3720500},{"arcs":[[17701]],"areaCode":3720600},{"arcs":[[17702,-2544,17703,-17654,17704]],"areaCode":3720600},{"arcs":[[-17619,-17649,-17650,-2535,-17703,17705]],"areaCode":3720700},{"arcs":[[17706]],"areaCode":3720800},{"arcs":[[17707]],"areaCode":3720800},{"arcs":[[17708]],"areaCode":3720800},{"arcs":[[17709,-17694,17710,17711,-2578,-2552,-17701,17712]],"areaCode":3720800},{"arcs":[[17713]],"areaCode":3720800},{"arcs":[[17714]],"areaCode":3720800},{"arcs":[[17715]],"areaCode":3732200},{"arcs":[[17716]],"areaCode":3732200},{"arcs":[[17717]],"areaCode":3732200},{"arcs":[[17718]],"areaCode":3732200},{"arcs":[[17719]],"areaCode":3732200},{"arcs":[[17720]],"areaCode":3732200},{"arcs":[[17721,17722]],"areaCode":3732200},{"arcs":[[17723]],"areaCode":3732400},{"arcs":[[17724]],"areaCode":3732400},{"arcs":[[-17722,17725]],"areaCode":3732400},{"arcs":[[-17704,-2543,-17655]],"areaCode":3734100},{"arcs":[[17726]],"areaCode":3736400},{"arcs":[[17727]],"areaCode":3736400},{"arcs":[[17728]],"areaCode":3736400},{"arcs":[[17729]],"areaCode":3736400},{"arcs":[[17730]],"areaCode":3736400},{"arcs":[[17731]],"areaCode":3736400},{"arcs":[[17732]],"areaCode":3736400},{"arcs":[[17733]],"areaCode":3736400},{"arcs":[[17734]],"areaCode":3736400},{"arcs":[[17735]],"areaCode":3736400},{"arcs":[[17736]],"areaCode":3736400},{"arcs":[[17737]],"areaCode":3736400},{"arcs":[[-17255,17738]],"areaCode":3736400},{"arcs":[[17739]],"areaCode":3736400},{"arcs":[[-17683,-17667,17740]],"areaCode":3738600},{"arcs":[[17741,-17685]],"areaCode":3738600},{"arcs":[[17742,-17669,-17682,-17657]],"areaCode":3738700},{"arcs":[[-17693,17743,-17711]],"areaCode":3740300},{"arcs":[[17744]],"areaCode":3740400},{"arcs":[[-17672,-17695,-17710,17745]],"areaCode":3740400},{"arcs":[[17746]],"areaCode":3740400},{"arcs":[[17747]],"areaCode":3740400},{"arcs":[[17748]],"areaCode":3740400},{"arcs":[[-17670,-17743,-17656,-2541,-2555,-2579,-17712,-17744,-17692]],"areaCode":3740600},{"arcs":[[17749]],"areaCode":3820100},{"arcs":[[17750]],"areaCode":3820100},{"arcs":[[17751]],"areaCode":3820100},{"arcs":[[17752]],"areaCode":3820100},{"arcs":[[17753]],"areaCode":3820100},{"arcs":[[17754]],"areaCode":3820100},{"arcs":[[17755]],"areaCode":3820100},{"arcs":[[17756]],"areaCode":3820100},{"arcs":[[17757]],"areaCode":3820100},{"arcs":[[17758]],"areaCode":3820100},{"arcs":[[17759]],"areaCode":3820100},{"arcs":[[17760]],"areaCode":3820100},{"arcs":[[17761]],"areaCode":3820100},{"arcs":[[17762]],"areaCode":3820100},{"arcs":[[17763,17764,17765,17766,17767,17768]],"areaCode":3820100},{"arcs":[[17769]],"areaCode":3820100},{"arcs":[[17770]],"areaCode":3820100},{"arcs":[[17771]],"areaCode":3820100},{"arcs":[[17772]],"areaCode":3820100},{"arcs":[[17773]],"areaCode":3820200},{"arcs":[[17774]],"areaCode":3820200},{"arcs":[[17775]],"areaCode":3820200},{"arcs":[[17776]],"areaCode":3820200},{"arcs":[[17777]],"areaCode":3820200},{"arcs":[[17778]],"areaCode":3820200},{"arcs":[[17779]],"areaCode":3820200},{"arcs":[[17780]],"areaCode":3820200},{"arcs":[[17781]],"areaCode":3820200},{"arcs":[[17782]],"areaCode":3820200},{"arcs":[[17783]],"areaCode":3820200},{"arcs":[[17784]],"areaCode":3820200},{"arcs":[[17785]],"areaCode":3820200},{"arcs":[[17786,17787,-17769,17788]],"areaCode":3820200},{"arcs":[[17789]],"areaCode":3820200},{"arcs":[[17790]],"areaCode":3820200},{"arcs":[[17791]],"areaCode":3820200},{"arcs":[[17792]],"areaCode":3820200},{"arcs":[[17793]],"areaCode":3820200},{"arcs":[[17794]],"areaCode":3820200},{"arcs":[[17795]],"areaCode":3820200},{"arcs":[[17796]],"areaCode":3820200},{"arcs":[[17797]],"areaCode":3820200},{"arcs":[[17798]],"areaCode":3820200},{"arcs":[[17799]],"areaCode":3820200},{"arcs":[[17800]],"areaCode":3820200},{"arcs":[[17801]],"areaCode":3820200},{"arcs":[[17803]],"areaCode":3820200},{"arcs":[[17804]],"areaCode":3820300},{"arcs":[[17805]],"areaCode":3820300},{"arcs":[[17806]],"areaCode":3820300},{"arcs":[[17807]],"areaCode":3820300},{"arcs":[[17808]],"areaCode":3820300},{"arcs":[[17809]],"areaCode":3820300},{"arcs":[[17810]],"areaCode":3820300},{"arcs":[[17811]],"areaCode":3820300},{"arcs":[[17812]],"areaCode":3820300},{"arcs":[[17813]],"areaCode":3820300},{"arcs":[[17814]],"areaCode":3820300},{"arcs":[[17816]],"areaCode":3820300},{"arcs":[[17817]],"areaCode":3820300},{"arcs":[[17818]],"areaCode":3820300},{"arcs":[[17819]],"areaCode":3820300},{"arcs":[[17820]],"areaCode":3820300},{"arcs":[[17821,17822,17823,17824,17825,17826,17827],[17815]],"areaCode":3820300},{"arcs":[[17828]],"areaCode":3820400},{"arcs":[[17829]],"areaCode":3820400},{"arcs":[[17830]],"areaCode":3820400},{"arcs":[[17831,17832,17833,17834,17835]],"areaCode":3820400},{"arcs":[[17836,17837,17838,17839,17840]],"areaCode":3820500},{"arcs":[[17841]],"areaCode":3820500},{"arcs":[[17842]],"areaCode":3820600},{"arcs":[[-17840,17843,17844,17845,-17787,17846]],"areaCode":3820600},{"arcs":[[17847,17848,17849,-17832,17850]],"areaCode":3820700},{"arcs":[[17851]],"areaCode":3820700},{"arcs":[[17852,-17848,17853,17854,17855]],"areaCode":3821000},{"arcs":[[17856]],"areaCode":3821300},{"arcs":[[-2550,17857,17858,17859,17860,-17837,17861,-17699]],"areaCode":3821300},{"arcs":[[17862]],"areaCode":3821400},{"arcs":[[17863]],"areaCode":3821400},{"arcs":[[17864,17865,17866,-17828,17867,-17833,-17850,17868]],"areaCode":3821400},{"arcs":[[-17846,17869,-17764,-17788]],"areaCode":3821500},{"arcs":[[17870]],"areaCode":3835600},{"arcs":[[17871]],"areaCode":3835600},{"arcs":[[17872]],"areaCode":3835600},{"arcs":[[17873]],"areaCode":3835600},{"arcs":[[17874]],"areaCode":3835600},{"arcs":[[17875]],"areaCode":3835600},{"arcs":[[17876]],"areaCode":3835600},{"arcs":[[17877]],"areaCode":3835600},{"arcs":[[17878]],"areaCode":3835600},{"arcs":[[17879]],"areaCode":3835600},{"arcs":[[17880]],"areaCode":3835600},{"arcs":[[17881]],"areaCode":3835600},{"arcs":[[17882,17883,17884,17885,-17865,17886,17887,-17765,-17870,-17845]],"areaCode":3838600},{"arcs":[[17888,-17855,17889,-17767]],"areaCode":3840100},{"arcs":[[-17888,17890,-17856,-17889,-17766]],"areaCode":3840200},{"arcs":[[-17891,-17887,-17869,-17849,-17853]],"areaCode":3842200},{"arcs":[[17891]],"areaCode":3844200},{"arcs":[[17892,-17835]],"areaCode":3844200},{"arcs":[[17893,17894,-17823,17895]],"areaCode":3848400},{"arcs":[[17896,-17896,-17822,-17867,17897]],"areaCode":3848800},{"arcs":[[17898]],"areaCode":3850600},{"arcs":[[17899]],"areaCode":3850600},{"arcs":[[17900]],"areaCode":3850600},{"arcs":[[17901]],"areaCode":3850600},{"arcs":[[17902]],"areaCode":3850600},{"arcs":[[17903]],"areaCode":3850600},{"arcs":[[17904]],"areaCode":3850600},{"arcs":[[17905]],"areaCode":3850600},{"arcs":[[17906,17907,-17826]],"areaCode":3850600},{"arcs":[[17908]],"areaCode":3920100},{"arcs":[[17909,17910,17911,17912,17913]],"areaCode":3920100},{"arcs":[[17914,17915,17916,17917]],"areaCode":3920200},{"arcs":[[17918,17919,17920,17921,17922,17923,-2562]],"areaCode":3920300},{"arcs":[[17924,17925,17926,-17910,17927,17928]],"areaCode":3920400},{"arcs":[[17929,17930]],"areaCode":3920500},{"arcs":[[17931]],"areaCode":3920500},{"arcs":[[-17912,17932,17933,17934,17935,17936]],"areaCode":3920500},{"arcs":[[17937]],"areaCode":3920600},{"arcs":[[17938]],"areaCode":3920600},{"arcs":[[17939]],"areaCode":3920600},{"arcs":[[17941,-17930,17942,17943,17944,17945,-17934],[17940]],"areaCode":3920600},{"arcs":[[17946]],"areaCode":3920800},{"arcs":[[17947]],"areaCode":3920800},{"arcs":[[17948]],"areaCode":3920800},{"arcs":[[17949]],"areaCode":3920800},{"arcs":[[17950]],"areaCode":3920800},{"arcs":[[17951]],"areaCode":3920800},{"arcs":[[17952]],"areaCode":3920800},{"arcs":[[17953,17954,17955,17956,-17907,-17825,17957]],"areaCode":3920800},{"arcs":[[17958,17959,-17955,17960,17961]],"areaCode":3920900},{"arcs":[[17962,17963,-17962,17964,-17958,-17824,-17895,17965]],"areaCode":3921000},{"arcs":[[-17923,17966,17967,-17926,17968]],"areaCode":3921100},{"arcs":[[-2563,-17924,-17969,-17925,17969,17970,-2548]],"areaCode":3921200},{"arcs":[[17971]],"areaCode":3930100},{"arcs":[[17972,-17918,17973,-2574]],"areaCode":3930100},{"arcs":[[-17916,17974,17975,17976]],"areaCode":3930200},{"arcs":[[-17976,17977,17978,17979]],"areaCode":3930300},{"arcs":[[17980,-17979,17981,-17920,17982]],"areaCode":3930400},{"arcs":[[-17974,-17917,-17977,-17980,-17981,17983,-2575]],"areaCode":3930500},{"arcs":[[-2576,-17984,-17983,-17919,-2561]],"areaCode":3930600},{"arcs":[[17984,-17967,-17922]],"areaCode":3930700},{"arcs":[[17985,-17970,-17929,17986,-17859]],"areaCode":3934100},{"arcs":[[-2549,-17971,-17986,-17858]],"areaCode":3934400},{"arcs":[[-17928,-17914,17987,17988,-17860,-17987]],"areaCode":3936300},{"arcs":[[-17861,-17989,17989,-17838]],"areaCode":3936400},{"arcs":[[-17990,-17988,-17913,-17937,17990,17991,17992,-17883,-17844,-17839]],"areaCode":3938600},{"arcs":[[17993,17994,-17884,-17993]],"areaCode":3938700},{"arcs":[[-17944,17995,17996,17997]],"areaCode":3940100},{"arcs":[[-17935,-17946,17998,17999,18000]],"areaCode":3940200},{"arcs":[[18001,-18000,18002,-17994,-17992]],"areaCode":3940300},{"arcs":[[-17886,18003,18004,-17898,-17866]],"areaCode":3940500},{"arcs":[[-17936,-18001,-18002,-17991]],"areaCode":3941000},{"arcs":[[-18003,-17999,-17945,-17998,18005,-18004,-17885,-17995]],"areaCode":3941100},{"arcs":[[18006,18007,-17966,-17894,-17897,-18005,-18006,-17997]],"areaCode":3941200},{"arcs":[[18008]],"areaCode":3942400},{"arcs":[[18009]],"areaCode":3942400},{"arcs":[[-17956,-17960,18010]],"areaCode":3942400},{"arcs":[[-17961,-17954,-17965]],"areaCode":3942700},{"arcs":[[18011]],"areaCode":3942800},{"arcs":[[18012,-17963,-18008]],"areaCode":3942800},{"arcs":[[18013,18014,18015,18016]],"areaCode":4020200},{"arcs":[[18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028]],"areaCode":4020300},{"arcs":[[-2610,18029,18030,18031,18032,18033,-2616]],"areaCode":4020400},{"arcs":[[18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,-18031]],"areaCode":4020500},{"arcs":[[18047,18048,18049,-18037,18050,18051,18052]],"areaCode":4020600},{"arcs":[[18053,18054,18055,18056,18057,18058]],"areaCode":4020700},{"arcs":[[18059,18060,18061,18062,18063,18064,18065,18066,18067,-18020]],"areaCode":4021000},{"arcs":[[18068,-18067,18069,-18065,18070,-18054,18071,-18022]],"areaCode":4021100},{"arcs":[[-18024,18072,-18058,18073,18074]],"areaCode":4021200},{"arcs":[[18075]],"areaCode":4021300},{"arcs":[[18076]],"areaCode":4021300},{"arcs":[[18077,18078,18079,18080,-2606]],"areaCode":4021300},{"arcs":[[18081,18082,18083,18084,18085]],"areaCode":4021400},{"arcs":[[-2618,18086,18087,18088]],"areaCode":4021500},{"arcs":[[18089,18090,-18028,18091,18092,18093]],"areaCode":4021600},{"arcs":[[18094,-18094,18095,18096,18097,18098,18099,18100,-18042]],"areaCode":4021700},{"arcs":[[18101,18102,-2641,-2633]],"areaCode":4021800},{"arcs":[[18103,18104,-18099,18105,-18102,-2632]],"areaCode":4021900},{"arcs":[[18106]],"areaCode":4022000},{"arcs":[[18107,18108,18109,18110,18111]],"areaCode":4022000},{"arcs":[[18112]],"areaCode":4022000},{"arcs":[[18113]],"areaCode":4022000},{"arcs":[[18114]],"areaCode":4022000},{"arcs":[[-18100,-18105,18115]],"areaCode":4022100},{"arcs":[[18116,18117,18118,18119,18120]],"areaCode":4022300},{"arcs":[[18121,-18121,18122,-18111]],"areaCode":4022400},{"arcs":[[18123,-18060,-18019,18124]],"areaCode":4022500},{"arcs":[[18125,-18033,18126,-18046,18127,18128,-18117,-18122,-18110]],"areaCode":4022600},{"arcs":[[-18050,18129,18130,18131,18132,18133,-18040,18134,-18038]],"areaCode":4022700},{"arcs":[[18135,18136,-18125,-18018,18137,18138,-18133]],"areaCode":4022800},{"arcs":[[18139,18140,-18017,18141,-18055,-18071,-18064]],"areaCode":4022900},{"arcs":[[18142]],"areaCode":4023000},{"arcs":[[-2657,18143,18144,18145,-2647]],"areaCode":4023000},{"arcs":[[-18103,-18106,-18098,18146,18147,18148,18149,-2653,-2642]],"areaCode":4023100},{"arcs":[[-18043,-18101,-18116,-18104,-2631,18150,18151]],"areaCode":4034100},{"arcs":[[-18045,18152,18153,18154,-18128]],"areaCode":4034200},{"arcs":[[18155,-18151,-2630,-2626,18156]],"areaCode":4034300},{"arcs":[[-18153,-18044,-18152,-18156,18157]],"areaCode":4034400},{"arcs":[[18158,-2629,18159,-18119]],"areaCode":4034500},{"arcs":[[18160]],"areaCode":4034500},{"arcs":[[-18129,-18155,18161,-2624,-18159,-18118]],"areaCode":4034800},{"arcs":[[-18162,-18154,-18158,-18157,-2625]],"areaCode":4034900},{"arcs":[[18162]],"areaCode":4038100},{"arcs":[[-2587,18163,18164,18165,18166]],"areaCode":4038100},{"arcs":[[-18089,18167,-18164,-2586,-2619]],"areaCode":4038200},{"arcs":[[-18166,18168,-18108,18169]],"areaCode":4038300},{"arcs":[[-18088,18170,-18169,-18165,-18168]],"areaCode":4038400},{"arcs":[[-18127,-18032,-18047]],"areaCode":4040100},{"arcs":[[-2617,-18034,-18126,-18109,-18171,-18087]],"areaCode":4040200},{"arcs":[[-18135,-18039]],"areaCode":4042100},{"arcs":[[-18134,-18139,18171,-18090,-18095,-18041]],"areaCode":4044700},{"arcs":[[18172,-18136,-18132,18173]],"areaCode":4044800},{"arcs":[[-18138,-18029,-18091,-18172]],"areaCode":4050300},{"arcs":[[-18023,-18072,-18059,-18073]],"areaCode":4052200},{"arcs":[[-18070,-18066]],"areaCode":4054400},{"arcs":[[-18069,-18021,-18068]],"areaCode":4054400},{"arcs":[[18174,18175,18176,-18053,18177,-2608]],"areaCode":4060100},{"arcs":[[18178,18179,18180,18181,-18174,-18131,18182,18183]],"areaCode":4060200},{"arcs":[[-18036,18184,-18051]],"areaCode":4060400},{"arcs":[[18185,-18183,-18130,-18049]],"areaCode":4060500},{"arcs":[[18186,-18184,-18186,-18048,-18177]],"areaCode":4060800},{"arcs":[[-18179,-18187,-18176,18187]],"areaCode":4060900},{"arcs":[[-18178,-18052,-18185,-18035,-18030,-2609]],"areaCode":4061000},{"arcs":[[18188]],"areaCode":4062100},{"arcs":[[18189]],"areaCode":4062100},{"arcs":[[18190]],"areaCode":4062100},{"arcs":[[-18078,-2605,18191]],"areaCode":4062100},{"arcs":[[-2602,18192]],"areaCode":4062100},{"arcs":[[-18081,18193,18194,-18180,-18188,-18175,-2607]],"areaCode":4062500},{"arcs":[[-18082,18195,18196,18197]],"areaCode":4064200},{"arcs":[[18198,-18083,-18198]],"areaCode":4064600},{"arcs":[[-18085,18199,-18194,-18080,18200]],"areaCode":4064700},{"arcs":[[-2656,18201,-18074,-18057,18202,18203,18204,18205,-18144]],"areaCode":4120100},{"arcs":[[18206]],"areaCode":4120200},{"arcs":[[18207]],"areaCode":4120200},{"arcs":[[18208]],"areaCode":4120200},{"arcs":[[18209]],"areaCode":4120200},{"arcs":[[18210]],"areaCode":4120200},{"arcs":[[18211]],"areaCode":4120200},{"arcs":[[18212]],"areaCode":4120200},{"arcs":[[-18145,-18206,18213,18214,18215,18216,18217,18218]],"areaCode":4120200},{"arcs":[[18219]],"areaCode":4120200},{"arcs":[[18220]],"areaCode":4120200},{"arcs":[[18221]],"areaCode":4120200},{"arcs":[[18222]],"areaCode":4120200},{"arcs":[[18223]],"areaCode":4120200},{"arcs":[[-18092,-18027,18224,-18147,-18097,18225]],"areaCode":4120300},{"arcs":[[18226,18227,18228,18229,-18214]],"areaCode":4120400},{"arcs":[[18230,18231,18232,18233,18234,-18216]],"areaCode":4120500},{"arcs":[[-18230,18235,18236,18237,18238,18239,-18231,-18215]],"areaCode":4120600},{"arcs":[[18240,18241,18242,18243,18244]],"areaCode":4120700},{"arcs":[[18245,18246,-18227,-18205]],"areaCode":4120800},{"arcs":[[-18244,18247,18248,18249,18250,-18238,18251]],"areaCode":4120900},{"arcs":[[18252,18253,-18025,-18075,-18202,-2655]],"areaCode":4121000},{"arcs":[[-18150,18254,18255,-18253,-2654]],"areaCode":4132700},{"arcs":[[-18093,-18226,-18096]],"areaCode":4134100},{"arcs":[[18256,-18255,-18149]],"areaCode":4134500},{"arcs":[[-18026,-18254,-18256,-18257,-18148,-18225]],"areaCode":4134600},{"arcs":[[18257]],"areaCode":4138700},{"arcs":[[-18218,18258]],"areaCode":4138700},{"arcs":[[-18240,18259,18260,-18232]],"areaCode":4140100},{"arcs":[[18261,18262,-18236,-18229]],"areaCode":4142300},{"arcs":[[-18247,18263,-18262,-18228]],"areaCode":4142400},{"arcs":[[-18264,-18246,-18204,18264,-18245,-18252,-18237,-18263]],"areaCode":4142500},{"arcs":[[18265]],"areaCode":4144100},{"arcs":[[18266,18267,-18242,18268]],"areaCode":4144100},{"arcs":[[18269]],"areaCode":4220100},{"arcs":[[18270]],"areaCode":4220100},{"arcs":[[18271]],"areaCode":4220100},{"arcs":[[18272]],"areaCode":4220100},{"arcs":[[18273]],"areaCode":4220100},{"arcs":[[18274]],"areaCode":4220100},{"arcs":[[18275]],"areaCode":4220100},{"arcs":[[18276]],"areaCode":4220100},{"arcs":[[18277]],"areaCode":4220100},{"arcs":[[18278]],"areaCode":4220100},{"arcs":[[18279]],"areaCode":4220100},{"arcs":[[18280]],"areaCode":4220100},{"arcs":[[18281,18282,18283,18284,18285,-2702]],"areaCode":4220100},{"arcs":[[18286,18287,18288]],"areaCode":4220300},{"arcs":[[18289]],"areaCode":4220400},{"arcs":[[18290]],"areaCode":4220400},{"arcs":[[18291]],"areaCode":4220400},{"arcs":[[18292]],"areaCode":4220400},{"arcs":[[18293]],"areaCode":4220400},{"arcs":[[18294,18295,18296,-18285,18297,18298,18299,-18267]],"areaCode":4220400},{"arcs":[[18300]],"areaCode":4220700},{"arcs":[[18301]],"areaCode":4220700},{"arcs":[[18302]],"areaCode":4220700},{"arcs":[[18303]],"areaCode":4220700},{"arcs":[[18304]],"areaCode":4220700},{"arcs":[[18305]],"areaCode":4220700},{"arcs":[[18306]],"areaCode":4220700},{"arcs":[[18307]],"areaCode":4220700},{"arcs":[[18308]],"areaCode":4220700},{"arcs":[[18309]],"areaCode":4220700},{"arcs":[[18310,18311,18312]],"areaCode":4220700},{"arcs":[[18313]],"areaCode":4220700},{"arcs":[[18315]],"areaCode":4220700},{"arcs":[[18316]],"areaCode":4220700},{"arcs":[[18317]],"areaCode":4220700},{"arcs":[[18318]],"areaCode":4220700},{"arcs":[[18319]],"areaCode":4220700},{"arcs":[[18320]],"areaCode":4220700},{"arcs":[[18321]],"areaCode":4220800},{"arcs":[[-18234,18323,-18311,18324],[18322]],"areaCode":4220800},{"arcs":[[18325]],"areaCode":4220800},{"arcs":[[18326]],"areaCode":4220800},{"arcs":[[18327]],"areaCode":4220800},{"arcs":[[18328]],"areaCode":4220800},{"arcs":[[18329]],"areaCode":4220800},{"arcs":[[18330]],"areaCode":4220800},{"arcs":[[18331]],"areaCode":4221000},{"arcs":[[18332]],"areaCode":4221000},{"arcs":[[18333]],"areaCode":4221000},{"arcs":[[18334]],"areaCode":4221000},{"arcs":[[18335]],"areaCode":4221000},{"arcs":[[18336]],"areaCode":4221000},{"arcs":[[18337]],"areaCode":4221000},{"arcs":[[18338]],"areaCode":4221000},{"arcs":[[18339]],"areaCode":4221000},{"arcs":[[18340]],"areaCode":4221000},{"arcs":[[18341]],"areaCode":4221000},{"arcs":[[18342]],"areaCode":4221000},{"arcs":[[18343]],"areaCode":4221000},{"arcs":[[18344]],"areaCode":4221000},{"arcs":[[18345]],"areaCode":4221000},{"arcs":[[18346]],"areaCode":4221100},{"arcs":[[18347]],"areaCode":4221100},{"arcs":[[18348]],"areaCode":4221100},{"arcs":[[18349]],"areaCode":4221100},{"arcs":[[18350]],"areaCode":4221100},{"arcs":[[18351]],"areaCode":4221100},{"arcs":[[18352]],"areaCode":4221100},{"arcs":[[18353]],"areaCode":4221100},{"arcs":[[18354]],"areaCode":4221100},{"arcs":[[18355]],"areaCode":4221100},{"arcs":[[18356]],"areaCode":4221100},{"arcs":[[18357]],"areaCode":4221100},{"arcs":[[18358]],"areaCode":4221100},{"arcs":[[18359]],"areaCode":4221100},{"arcs":[[18360]],"areaCode":4221100},{"arcs":[[18361]],"areaCode":4221100},{"arcs":[[18362]],"areaCode":4221100},{"arcs":[[18363]],"areaCode":4221100},{"arcs":[[18364]],"areaCode":4221100},{"arcs":[[18365]],"areaCode":4221100},{"arcs":[[18366]],"areaCode":4221100},{"arcs":[[18367]],"areaCode":4221100},{"arcs":[[18368]],"areaCode":4221100},{"arcs":[[18369]],"areaCode":4221100},{"arcs":[[18370]],"areaCode":4221100},{"arcs":[[18371]],"areaCode":4221100},{"arcs":[[18372]],"areaCode":4221100},{"arcs":[[18373]],"areaCode":4221100},{"arcs":[[18374]],"areaCode":4221100},{"arcs":[[18375]],"areaCode":4221100},{"arcs":[[18376]],"areaCode":4221100},{"arcs":[[18377]],"areaCode":4221100},{"arcs":[[18378]],"areaCode":4221100},{"arcs":[[18379]],"areaCode":4221100},{"arcs":[[18380]],"areaCode":4221100},{"arcs":[[18381]],"areaCode":4221100},{"arcs":[[-18288,18382,18383,-18296,18384]],"areaCode":4221300},{"arcs":[[18385,-18383,-18287]],"areaCode":4221400},{"arcs":[[18386]],"areaCode":4230700},{"arcs":[[-18298,-18284,18387,18388]],"areaCode":4230700},{"arcs":[[18389]],"areaCode":4230800},{"arcs":[[-18388,-18283,18390]],"areaCode":4230800},{"arcs":[[18391]],"areaCode":4230800},{"arcs":[[18392]],"areaCode":4230800},{"arcs":[[18393,18394,18395,-18249]],"areaCode":4232100},{"arcs":[[18396]],"areaCode":4232200},{"arcs":[[-18250,-18396,18397,18398,18399]],"areaCode":4232200},{"arcs":[[-18251,-18400,18400,-18260,-18239]],"areaCode":4232300},{"arcs":[[18401]],"areaCode":4238300},{"arcs":[[18402]],"areaCode":4238300},{"arcs":[[18403]],"areaCode":4238300},{"arcs":[[18404]],"areaCode":4238300},{"arcs":[[18405]],"areaCode":4238300},{"arcs":[[18406]],"areaCode":4238300},{"arcs":[[18407]],"areaCode":4238300},{"arcs":[[18408]],"areaCode":4238300},{"arcs":[[18409]],"areaCode":4238300},{"arcs":[[18410]],"areaCode":4238300},{"arcs":[[18411]],"areaCode":4238300},{"arcs":[[18412]],"areaCode":4238300},{"arcs":[[18413]],"areaCode":4238300},{"arcs":[[18414]],"areaCode":4238300},{"arcs":[[18415]],"areaCode":4238300},{"arcs":[[18416]],"areaCode":4238300},{"arcs":[[18417]],"areaCode":4238300},{"arcs":[[18418,18419]],"areaCode":4239100},{"arcs":[[18420]],"areaCode":4241100},{"arcs":[[18421]],"areaCode":4241100},{"arcs":[[18422]],"areaCode":4241100},{"arcs":[[18423]],"areaCode":4241100},{"arcs":[[18424]],"areaCode":4241100},{"arcs":[[18425]],"areaCode":4241100},{"arcs":[[18426]],"areaCode":4241100},{"arcs":[[18427]],"areaCode":4241100},{"arcs":[[18428]],"areaCode":4241100},{"arcs":[[18429]],"areaCode":4241100},{"arcs":[[18430]],"areaCode":4241100},{"arcs":[[18431]],"areaCode":4241100},{"arcs":[[18432]],"areaCode":4241100},{"arcs":[[18433]],"areaCode":4241100},{"arcs":[[18434]],"areaCode":4241100},{"arcs":[[18435]],"areaCode":4241100},{"arcs":[[18436]],"areaCode":4241100},{"arcs":[[18437]],"areaCode":4241100},{"arcs":[[18438]],"areaCode":4241100},{"arcs":[[18439]],"areaCode":4241100},{"arcs":[[18440]],"areaCode":4241100},{"arcs":[[18441]],"areaCode":4241100},{"arcs":[[18442]],"areaCode":4241100},{"arcs":[[18443,18444,18445,18446,18447,18448]],"areaCode":4320300},{"arcs":[[18449,18450,18451,-18015,18452]],"areaCode":4320400},{"arcs":[[18453]],"areaCode":4320500},{"arcs":[[18454,18455,18456,18457,18458,18459]],"areaCode":4320500},{"arcs":[[18460,18461,-2717,18462,18463,-18450,18464]],"areaCode":4320600},{"arcs":[[18465,18466,-2730,18467,18468,-18062]],"areaCode":4320800},{"arcs":[[18469,18470,18471,-2726,-18467,18472]],"areaCode":4321000},{"arcs":[[18473,18474,-2724]],"areaCode":4321100},{"arcs":[[18475]],"areaCode":4321200},{"arcs":[[18476]],"areaCode":4321200},{"arcs":[[18477]],"areaCode":4321200},{"arcs":[[-2761,18478]],"areaCode":4321200},{"arcs":[[18479]],"areaCode":4321200},{"arcs":[[18480]],"areaCode":4321200},{"arcs":[[18481]],"areaCode":4321200},{"arcs":[[18482]],"areaCode":4321200},{"arcs":[[-2763,18483,-2768,18484]],"areaCode":4321200},{"arcs":[[18485]],"areaCode":4321200},{"arcs":[[18486]],"areaCode":4321200},{"arcs":[[18487]],"areaCode":4321200},{"arcs":[[18488]],"areaCode":4321200},{"arcs":[[18489]],"areaCode":4321200},{"arcs":[[18490]],"areaCode":4321200},{"arcs":[[18491]],"areaCode":4321200},{"arcs":[[18492]],"areaCode":4321200},{"arcs":[[18493]],"areaCode":4321200},{"arcs":[[18494]],"areaCode":4321200},{"arcs":[[18495]],"areaCode":4321200},{"arcs":[[18496]],"areaCode":4321200},{"arcs":[[18497]],"areaCode":4321300},{"arcs":[[18498,18499,-2732,18500,18501,-18474,-2723]],"areaCode":4321300},{"arcs":[[18502,18503,18504,18505,18506,-18470,18507,18508]],"areaCode":4321400},{"arcs":[[18509,18510,-2727,-18472]],"areaCode":4321600},{"arcs":[[-2733,-18500,18511,18512,-2780]],"areaCode":4334800},{"arcs":[[-2729,-2718,-18462,18513,-18468]],"areaCode":4336400},{"arcs":[[-18465,-18453,-18014,-18141,18514]],"areaCode":4336700},{"arcs":[[-18464,18515,-18451]],"areaCode":4336800},{"arcs":[[-18469,-18514,-18461,-18515,-18140,-18063]],"areaCode":4336900},{"arcs":[[18516,18517,18518,18519,-18510,-18471,-18507]],"areaCode":4340300},{"arcs":[[-18520,18520,-2712,-2728,-18511]],"areaCode":4340400},{"arcs":[[18521,18522,18523,-18509,18524,18525]],"areaCode":4342300},{"arcs":[[18526,18527,-18526,18528]],"areaCode":4342400},{"arcs":[[-18503,-18524,18529]],"areaCode":4342500},{"arcs":[[18530,-2784,18531,-18505,18532]],"areaCode":4342800},{"arcs":[[18533,-2782,18534,18535,-18518]],"areaCode":4343200},{"arcs":[[-18532,-2783,-18534,-18517,-18506]],"areaCode":4343300},{"arcs":[[-2781,-18513,18536,-2721,18537,18538,-18535]],"areaCode":4344100},{"arcs":[[18539,-18538,-2720,-2709]],"areaCode":4344200},{"arcs":[[-18539,-18540,-2708,-18521,-18519,-18536]],"areaCode":4344300},{"arcs":[[-18512,-18499,-2722,-18537]],"areaCode":4344400},{"arcs":[[-18501,-2742,18540]],"areaCode":4346800},{"arcs":[[18541,-18456,18542,18543,-2740]],"areaCode":4348200},{"arcs":[[-18543,-18455,18544]],"areaCode":4348400},{"arcs":[[18545,-18445,18546,18547]],"areaCode":4350100},{"arcs":[[18548,18549,18550,18551,18552,18553,18554]],"areaCode":4350500},{"arcs":[[18555,-18550,18556]],"areaCode":4350600},{"arcs":[[18557,-18557,-18549,18558,-2736,18559]],"areaCode":4350700},{"arcs":[[-18554,18560,-18547,-18444,18561,18562]],"areaCode":4351000},{"arcs":[[-18559,-18555,-18563,18563,-2737]],"areaCode":4351100},{"arcs":[[-18564,-18562,-18449,18564,-2738]],"areaCode":4351200},{"arcs":[[-18565,-18448,18565,-18457,-18542,-2739]],"areaCode":4351300},{"arcs":[[18566,18567,-18548,-18561,-18553]],"areaCode":4351400},{"arcs":[[18568,-2774]],"areaCode":4353100},{"arcs":[[18569]],"areaCode":4420100},{"arcs":[[18570]],"areaCode":4420100},{"arcs":[[18571]],"areaCode":4420100},{"arcs":[[18572]],"areaCode":4420100},{"arcs":[[18573,18574,18575,18576,18577,18578],[18579]],"areaCode":4420100},{"arcs":[[18580,-18578,18581,18582,18583]],"areaCode":4420200},{"arcs":[[18584,18585,18586,-18181,-18195,-18200,-18084,-18199,-18197,18587]],"areaCode":4420300},{"arcs":[[18588,-18529,-18525,-18508,-18473,-18466,-18061,-18124,-18137,-18173,-18182,-18587]],"areaCode":4420400},{"arcs":[[18589]],"areaCode":4420500},{"arcs":[[18590]],"areaCode":4420500},{"arcs":[[18591]],"areaCode":4420500},{"arcs":[[18592]],"areaCode":4420500},{"arcs":[[18593]],"areaCode":4420500},{"arcs":[[18594]],"areaCode":4420500},{"arcs":[[18595]],"areaCode":4420500},{"arcs":[[18596]],"areaCode":4420500},{"arcs":[[18597]],"areaCode":4420500},{"arcs":[[18598]],"areaCode":4420500},{"arcs":[[18599]],"areaCode":4420500},{"arcs":[[18600]],"areaCode":4420500},{"arcs":[[18601,18602,18603,18604,18605,18606]],"areaCode":4420500},{"arcs":[[18607]],"areaCode":4420600},{"arcs":[[18608]],"areaCode":4420600},{"arcs":[[18609,18610,-18605,18611,-18574]],"areaCode":4420600},{"arcs":[[18612]],"areaCode":4420700},{"arcs":[[18613]],"areaCode":4420700},{"arcs":[[-18606,-18611,18614]],"areaCode":4420700},{"arcs":[[18615]],"areaCode":4420700},{"arcs":[[18616]],"areaCode":4420700},{"arcs":[[-18576,18617,18618,-18533,-18504,-18530,-18523,18619,18620]],"areaCode":4420800},{"arcs":[[18621,18622,18623,18624]],"areaCode":4420900},{"arcs":[[18625,18626,18627,-18623,18628]],"areaCode":4421000},{"arcs":[[-18624,-18628,18629,-18583,18630,18631,-18585,18632]],"areaCode":4421100},{"arcs":[[-18612,-18604,18633,18634,-18618,-18575]],"areaCode":4421200},{"arcs":[[-18582,-18577,-18621,18635,18636,-18631]],"areaCode":4421300},{"arcs":[[-18629,-18622,18637]],"areaCode":4421400},{"arcs":[[18638]],"areaCode":4432200},{"arcs":[[18639,-18584,-18630,-18627]],"areaCode":4434100},{"arcs":[[-18636,-18620,-18522,-18528,18640]],"areaCode":4446100},{"arcs":[[-18632,-18637,-18641,-18527,-18589,-18586]],"areaCode":4446200},{"arcs":[[18641]],"areaCode":4520100},{"arcs":[[18642,18643,18644,18645,18646,18647,18648,18649,18650]],"areaCode":4520100},{"arcs":[[-18647,18651,18652,18653,18654,18655,18656,18657,18658]],"areaCode":4520200},{"arcs":[[18659]],"areaCode":4520300},{"arcs":[[18660]],"areaCode":4520300},{"arcs":[[18661]],"areaCode":4520300},{"arcs":[[18662,18663,18664,18665,-18602]],"areaCode":4520300},{"arcs":[[18668]],"areaCode":4520400},{"arcs":[[18669]],"areaCode":4520400},{"arcs":[[18670]],"areaCode":4520400},{"arcs":[[18671,18672,-18653,18673,-18645]],"areaCode":4520400},{"arcs":[[18674,18675,-18648,-18659,18676,18677,18678,-18567,-18552]],"areaCode":4520500},{"arcs":[[18679]],"areaCode":4520600},{"arcs":[[18680]],"areaCode":4520600},{"arcs":[[18681,18682,18683,18684,18685]],"areaCode":4520600},{"arcs":[[18686]],"areaCode":4520700},{"arcs":[[18687]],"areaCode":4520700},{"arcs":[[18689,18690,-18654,-18673]],"areaCode":4520700},{"arcs":[[18691,18692,18693,18694,-18651,18695,18696,18697]],"areaCode":4520800},{"arcs":[[-18568,-18679,18698,18699,18700,-18446,-18546]],"areaCode":4520900},{"arcs":[[-18674,-18652,-18646]],"areaCode":4534100},{"arcs":[[-18658,18701,-18677]],"areaCode":4536100},{"arcs":[[-18650,18702,18703,-18696]],"areaCode":4538200},{"arcs":[[-18649,-18676,18704,-18703]],"areaCode":4538300},{"arcs":[[18705,18706,-18694,18707,18708]],"areaCode":4540100},{"arcs":[[18709,-18643,-18695,-18707]],"areaCode":4540200},{"arcs":[[-18697,-18704,-18705,-18675,-18551,-18556,-18558,18710]],"areaCode":4540300},{"arcs":[[18711,18712,-18708,-18693,18713,-18684]],"areaCode":4540400},{"arcs":[[18714,-18709,-18713,18715]],"areaCode":4540500},{"arcs":[[18716,-18716,-18712,-18683]],"areaCode":4540600},{"arcs":[[18717]],"areaCode":4542100},{"arcs":[[18718]],"areaCode":4542100},{"arcs":[[18719]],"areaCode":4542100},{"arcs":[[18720,-18686,18721,-18664]],"areaCode":4542100},{"arcs":[[18722,18723,18724,18725,18726]],"areaCode":4542900},{"arcs":[[-18726,18727,-18698,-18711,-18560,-2735,-2779,18728]],"areaCode":4543000},{"arcs":[[-18665,-18722,-18685,-18714,-18692,-18728,-18725,18729]],"areaCode":4543100},{"arcs":[[-18635,18730,-18723,18731,-2777,-18531,-18619]],"areaCode":4544100},{"arcs":[[-18666,-18730,-18724,-18731,-18634,-18603]],"areaCode":4544200},{"arcs":[[-18732,-18727,-18729,-2778]],"areaCode":4544300},{"arcs":[[18732]],"areaCode":4620100},{"arcs":[[18733]],"areaCode":4620100},{"arcs":[[18734]],"areaCode":4620100},{"arcs":[[18735]],"areaCode":4620100},{"arcs":[[18736,18737]],"areaCode":4620100},{"arcs":[[18738,18739,18740,18741,18742,18743,18744]],"areaCode":4620100},{"arcs":[[18746,18747,18748,18749,18750,18751,18752,18753]],"areaCode":4620300},{"arcs":[[18754,18755,18756]],"areaCode":4620400},{"arcs":[[18757]],"areaCode":4620600},{"arcs":[[18758]],"areaCode":4620600},{"arcs":[[18759]],"areaCode":4620600},{"arcs":[[18760]],"areaCode":4620600},{"arcs":[[18761,18762,18763]],"areaCode":4620600},{"arcs":[[18764]],"areaCode":4620800},{"arcs":[[-18459,18765,18766,18767,-18762,18768],[-18759]],"areaCode":4620800},{"arcs":[[18769]],"areaCode":4621000},{"arcs":[[18770,-18740,18771]],"areaCode":4621000},{"arcs":[[18772]],"areaCode":4621300},{"arcs":[[18773]],"areaCode":4621300},{"arcs":[[18774,18775]],"areaCode":4621300},{"arcs":[[18776]],"areaCode":4621400},{"arcs":[[-18752,18777,-18737,18778,18779]],"areaCode":4621400},{"arcs":[[-18743,18780,18781,18782,18783]],"areaCode":4621600},{"arcs":[[18784,18785,18786,18787,-18754,18788,-18656]],"areaCode":4621700},{"arcs":[[18789]],"areaCode":4621800},{"arcs":[[18790]],"areaCode":4621800},{"arcs":[[-18678,-18702,-18657,-18789,-18753,-18780,18791,18792,18793,18794,-18699]],"areaCode":4621800},{"arcs":[[18795]],"areaCode":4621900},{"arcs":[[18796]],"areaCode":4621900},{"arcs":[[-18783,18797,18798]],"areaCode":4621900},{"arcs":[[18799]],"areaCode":4622000},{"arcs":[[18800]],"areaCode":4622000},{"arcs":[[18801]],"areaCode":4622000},{"arcs":[[18802]],"areaCode":4622000},{"arcs":[[18803]],"areaCode":4622000},{"arcs":[[18804]],"areaCode":4622000},{"arcs":[[18805]],"areaCode":4622000},{"arcs":[[18806,-18757,18807,-18781,-18742]],"areaCode":4622000},{"arcs":[[18808]],"areaCode":4622100},{"arcs":[[18809]],"areaCode":4622100},{"arcs":[[18810]],"areaCode":4622100},{"arcs":[[18811]],"areaCode":4622100},{"arcs":[[18812]],"areaCode":4622100},{"arcs":[[18813]],"areaCode":4622100},{"arcs":[[18814]],"areaCode":4622100},{"arcs":[[18815,-18787]],"areaCode":4622100},{"arcs":[[-18691,18816,18817,-18785,-18655],[18818]],"areaCode":4622100},{"arcs":[[18819]],"areaCode":4622200},{"arcs":[[18820,18821,18822,18823,18824,18825]],"areaCode":4622200},{"arcs":[[18826,18827]],"areaCode":4622200},{"arcs":[[-18771,18828,-18755,-18807,-18741]],"areaCode":4622300},{"arcs":[[-18447,-18701,18829,18830,-18766,-18458,-18566]],"areaCode":4622400},{"arcs":[[18831,-18745,18832,-18793]],"areaCode":4622500},{"arcs":[[18833]],"areaCode":4630300},{"arcs":[[18834]],"areaCode":4630300},{"arcs":[[18835]],"areaCode":4630300},{"arcs":[[18836]],"areaCode":4630300},{"arcs":[[18837]],"areaCode":4630400},{"arcs":[[18838]],"areaCode":4630400},{"arcs":[[18839]],"areaCode":4630400},{"arcs":[[18840]],"areaCode":4630400},{"arcs":[[18841]],"areaCode":4630400},{"arcs":[[18842]],"areaCode":4630400},{"arcs":[[18843]],"areaCode":4630400},{"arcs":[[18844]],"areaCode":4630400},{"arcs":[[18845]],"areaCode":4630400},{"arcs":[[18846]],"areaCode":4630400},{"arcs":[[18847]],"areaCode":4630400},{"arcs":[[18848]],"areaCode":4630400},{"arcs":[[-18831,18849,-18794,18850,-18767]],"areaCode":4639200},{"arcs":[[18851]],"areaCode":4640400},{"arcs":[[18852]],"areaCode":4640400},{"arcs":[[18853]],"areaCode":4640400},{"arcs":[[18854]],"areaCode":4640400},{"arcs":[[18855]],"areaCode":4640400},{"arcs":[[18856]],"areaCode":4640400},{"arcs":[[18857]],"areaCode":4640400},{"arcs":[[18858]],"areaCode":4640400},{"arcs":[[18859]],"areaCode":4640400},{"arcs":[[-18795,-18850,-18830,-18700]],"areaCode":4645200},{"arcs":[[-18819]],"areaCode":4646800},{"arcs":[[-18816,-18786,-18818,18860,18861,-18747,-18788],[-18815],[-18814],[-18813],[-18812],[-18811]],"areaCode":4646800},{"arcs":[[18862,18863]],"areaCode":4648200},{"arcs":[[18864,18865,-18748,-18862]],"areaCode":4648200},{"arcs":[[18866,18867,18868,-18750]],"areaCode":4649000},{"arcs":[[18869]],"areaCode":4649100},{"arcs":[[18870,18871,-18868]],"areaCode":4649100},{"arcs":[[-18863,18872]],"areaCode":4649200},{"arcs":[[-18866,18873,-18871,-18867,-18749]],"areaCode":4649200},{"arcs":[[18874,18875,18876,-18775]],"areaCode":4650100},{"arcs":[[18877]],"areaCode":4650200},{"arcs":[[18878]],"areaCode":4650200},{"arcs":[[18879]],"areaCode":4650200},{"arcs":[[18880]],"areaCode":4650200},{"arcs":[[-18876,18881]],"areaCode":4650200},{"arcs":[[18882]],"areaCode":4650500},{"arcs":[[18883]],"areaCode":4650500},{"arcs":[[18884,18885,-18824]],"areaCode":4652300},{"arcs":[[18886]],"areaCode":4652400},{"arcs":[[-18823,18887,18888,-18885]],"areaCode":4652400},{"arcs":[[18889]],"areaCode":4652500},{"arcs":[[18890]],"areaCode":4652500},{"arcs":[[18891]],"areaCode":4652500},{"arcs":[[18892]],"areaCode":4652500},{"arcs":[[18893]],"areaCode":4652500},{"arcs":[[18894]],"areaCode":4652500},{"arcs":[[18895]],"areaCode":4652500},{"arcs":[[18896]],"areaCode":4652500},{"arcs":[[18897]],"areaCode":4652500},{"arcs":[[-18822,18898,-18888]],"areaCode":4652500},{"arcs":[[-18827,18899,-18826,18900]],"areaCode":4652700},{"arcs":[[18901]],"areaCode":4652900},{"arcs":[[18902,18903,18904]],"areaCode":4653000},{"arcs":[[18905]],"areaCode":4653100},{"arcs":[[-18904,18906,18907]],"areaCode":4653100},{"arcs":[[-18907,-18903,18908]],"areaCode":4653200},{"arcs":[[18909,18910]],"areaCode":4653300},{"arcs":[[-18910,18911]],"areaCode":4653400},{"arcs":[[18912]],"areaCode":4653500},{"arcs":[[18913,18914,18915,18916,18917,18918,18919,18920,18921]],"areaCode":4720100},{"arcs":[[18922]],"areaCode":4720100},{"arcs":[[18923,18924,18925,18926,18927,18928]],"areaCode":4720500},{"arcs":[[18929]],"areaCode":4720700},{"arcs":[[18930],[18931]],"areaCode":4720700},{"arcs":[[18932]],"areaCode":4720700},{"arcs":[[18933]],"areaCode":4720700},{"arcs":[[18934]],"areaCode":4720700},{"arcs":[[18935]],"areaCode":4720700},{"arcs":[[18936]],"areaCode":4720700},{"arcs":[[18937]],"areaCode":4720700},{"arcs":[[18938]],"areaCode":4720700},{"arcs":[[-18916,18939]],"areaCode":4720800},{"arcs":[[-18914,18940]],"areaCode":4720800},{"arcs":[[18941]],"areaCode":4720800},{"arcs":[[-18927,18942,-18918,18943]],"areaCode":4720800},{"arcs":[[18944]],"areaCode":4720900},{"arcs":[[18945,18946,18947,18948,18949,18950,18951,18952,18953]],"areaCode":4720900},{"arcs":[[18954]],"areaCode":4720900},{"arcs":[[18955]],"areaCode":4720900},{"arcs":[[18956,18957,18958]],"areaCode":4721000},{"arcs":[[18959]],"areaCode":4721100},{"arcs":[[18960,18961]],"areaCode":4721100},{"arcs":[[18962,18963,18964,18965,18966,18967,18968]],"areaCode":4721100},{"arcs":[[18969]],"areaCode":4721200},{"arcs":[[18970,18971,-18959,18972,-18921]],"areaCode":4721200},{"arcs":[[18973]],"areaCode":4721300},{"arcs":[[18974]],"areaCode":4721300},{"arcs":[[18975]],"areaCode":4721300},{"arcs":[[18976]],"areaCode":4721300},{"arcs":[[18977]],"areaCode":4721300},{"arcs":[[-18961,18978]],"areaCode":4721300},{"arcs":[[18979]],"areaCode":4721300},{"arcs":[[18980]],"areaCode":4721300},{"arcs":[[18981]],"areaCode":4721300},{"arcs":[[18982,18983,18984,-18969,18985]],"areaCode":4721300},{"arcs":[[18986]],"areaCode":4721400},{"arcs":[[18987]],"areaCode":4721400},{"arcs":[[18988]],"areaCode":4721400},{"arcs":[[18989]],"areaCode":4721400},{"arcs":[[18992]],"areaCode":4721400},{"arcs":[[18993],[18991]],"areaCode":4721400},{"arcs":[[18994]],"areaCode":4721400},{"arcs":[[18995]],"areaCode":4721400},{"arcs":[[18996]],"areaCode":4721400},{"arcs":[[18997]],"areaCode":4721500},{"arcs":[[18998]],"areaCode":4721500},{"arcs":[[18999,19000,19001,19002]],"areaCode":4721500},{"arcs":[[19003]],"areaCode":4730100},{"arcs":[[19004,19005,19006]],"areaCode":4730100},{"arcs":[[19007]],"areaCode":4730200},{"arcs":[[19008,-18946,19009,-19006]],"areaCode":4730200},{"arcs":[[19010,-18947,-19009,-19005]],"areaCode":4730300},{"arcs":[[19011]],"areaCode":4730600},{"arcs":[[-18953,19012,19013]],"areaCode":4730600},{"arcs":[[19014]],"areaCode":4730600},{"arcs":[[19015]],"areaCode":4730800},{"arcs":[[19016]],"areaCode":4730800},{"arcs":[[-19013,-18952,19017]],"areaCode":4730800},{"arcs":[[19018]],"areaCode":4731100},{"arcs":[[19019,19020,-18986,-18968,19021,19022,-18950]],"areaCode":4731100},{"arcs":[[19023,19024,-19020,-18949]],"areaCode":4731300},{"arcs":[[-19025,19025,19026,-18983,-19021]],"areaCode":4731400},{"arcs":[[19027]],"areaCode":4731500},{"arcs":[[-19022,-18967,19028,19029]],"areaCode":4732400},{"arcs":[[19030,19031,-19029,-18966]],"areaCode":4732500},{"arcs":[[-18965,19032,-18929,19033,-19031]],"areaCode":4732600},{"arcs":[[19034,19035,-18924,-19033,-18964]],"areaCode":4732700},{"arcs":[[19036,-18925,-19036,19037]],"areaCode":4732800},{"arcs":[[-19037,19038,19039,19040,-18919,-18943,-18926]],"areaCode":4732900},{"arcs":[[19041,-19003,19042,-19040]],"areaCode":4734800},{"arcs":[[-18920,-19041,-19043,-19002,19043,-18971]],"areaCode":4735000},{"arcs":[[19044]],"areaCode":4735300},{"arcs":[[19045]],"areaCode":4735300},{"arcs":[[19046]],"areaCode":4735300},{"arcs":[[19047]],"areaCode":4735300},{"arcs":[[19048]],"areaCode":4735300},{"arcs":[[19049]],"areaCode":4735300},{"arcs":[[19050]],"areaCode":4735300},{"arcs":[[19051]],"areaCode":4735300},{"arcs":[[19052]],"areaCode":4735300},{"arcs":[[19053]],"areaCode":4735300},{"arcs":[[19054]],"areaCode":4735300},{"arcs":[[19055]],"areaCode":4735300},{"arcs":[[19056]],"areaCode":4735400},{"arcs":[[19057]],"areaCode":4735400},{"arcs":[[19058]],"areaCode":4735400},{"arcs":[[19059]],"areaCode":4735400},{"arcs":[[19060]],"areaCode":4735400},{"arcs":[[19061]],"areaCode":4735400},{"arcs":[[19062]],"areaCode":4735400},{"arcs":[[19063]],"areaCode":4735400},{"arcs":[[19064]],"areaCode":4735400},{"arcs":[[19065]],"areaCode":4735400},{"arcs":[[19066]],"areaCode":4735400},{"arcs":[[19067]],"areaCode":4735400},{"arcs":[[19068]],"areaCode":4735500},{"arcs":[[19069]],"areaCode":4735600},{"arcs":[[19070]],"areaCode":4735600},{"arcs":[[19071]],"areaCode":4735900},{"arcs":[[19072]],"areaCode":4735900},{"arcs":[[19073]],"areaCode":4736000},{"arcs":[[19074]],"areaCode":4736000},{"arcs":[[19075]],"areaCode":4736000},{"arcs":[[19076]],"areaCode":4736100},{"arcs":[[19077]],"areaCode":4736100},{"arcs":[[19078]],"areaCode":4736100},{"arcs":[[19079]],"areaCode":4736100},{"arcs":[[19080]],"areaCode":4736100},{"arcs":[[19081]],"areaCode":4736100},{"arcs":[[-19001,19082,-18957,-18972,-19044]],"areaCode":4736200},{"arcs":[[19083]],"areaCode":4737500},{"arcs":[[19084]],"areaCode":4737500},{"arcs":[[19085]],"areaCode":4738100},{"arcs":[[19086]],"areaCode":4738100},{"arcs":[[19087]],"areaCode":4738100},{"arcs":[[19088]],"areaCode":4738100},{"arcs":[[19089]],"areaCode":4738100},{"arcs":[[19090]],"areaCode":4738100},{"arcs":[[19091]],"areaCode":4738100},{"arcs":[[19092]],"areaCode":4738100},{"arcs":[[19093]],"areaCode":4738100},{"arcs":[[19094]],"areaCode":4738100},{"arcs":[[19095]],"areaCode":4738100},{"arcs":[[19096]],"areaCode":4738100},{"arcs":[[19097]],"areaCode":4738100},{"arcs":[[19098]],"areaCode":4738200},{"arcs":[[19099]],"areaCode":3638300},{"arcs":[[19100]],"areaCode":3638300},{"arcs":[[19101]],"areaCode":3638300},{"arcs":[[19102,-2572,-2567]],"areaCode":3638300},{"arcs":[[19103]],"areaCode":4220202},{"arcs":[[19104]],"areaCode":4220202},{"arcs":[[19105]],"areaCode":4220201},{"arcs":[[19106]],"areaCode":4220201},{"arcs":[[19107]],"areaCode":4220201},{"arcs":[[19108]],"areaCode":4220201},{"arcs":[[19109]],"areaCode":4220201},{"arcs":[[19110]],"areaCode":4220201},{"arcs":[[19111]],"areaCode":4220201},{"arcs":[[19112]],"areaCode":4220201},{"arcs":[[19113]],"areaCode":4220201},{"arcs":[[19114]],"areaCode":4220201},{"arcs":[[19115]],"areaCode":4220201},{"arcs":[[19116]],"areaCode":4220201},{"arcs":[[19117]],"areaCode":4220201},{"arcs":[[19118]],"areaCode":4220201},{"arcs":[[19119]],"areaCode":4220201},{"arcs":[[19120]],"areaCode":4220201},{"arcs":[[19121]],"areaCode":4220201},{"arcs":[[19122]],"areaCode":4220201},{"arcs":[[19123]],"areaCode":4220201},{"arcs":[[19124]],"areaCode":4220201},{"arcs":[[19125]],"areaCode":4220201},{"arcs":[[19126]],"areaCode":4220201},{"arcs":[[19127]],"areaCode":4220201},{"arcs":[[19128]],"areaCode":4220201},{"arcs":[[19129]],"areaCode":4220201},{"arcs":[[19130]],"areaCode":4220201},{"arcs":[[19131]],"areaCode":4220201},{"arcs":[[19132]],"areaCode":4220201},{"arcs":[[19133]],"areaCode":4220201},{"arcs":[[19134]],"areaCode":4220201},{"arcs":[[19135]],"areaCode":4220201},{"arcs":[[19136]],"areaCode":4220201},{"arcs":[[19137]],"areaCode":4220201},{"arcs":[[19138]],"areaCode":4220201},{"arcs":[[19139]],"areaCode":4220201},{"arcs":[[19140]],"areaCode":4220201},{"arcs":[[19141]],"areaCode":4220201},{"arcs":[[19142]],"areaCode":4220201},{"arcs":[[19143]],"areaCode":4220201},{"arcs":[[19144]],"areaCode":4220201},{"arcs":[[19145]],"areaCode":4220201},{"arcs":[[19146]],"areaCode":4220201},{"arcs":[[-18233,-18261,-18401,-18399,19147,-18420,19148,-18312,-18324]],"areaCode":4220201},{"arcs":[[19149]],"areaCode":4621502},{"arcs":[[19150]],"areaCode":4621502},{"arcs":[[19151]],"areaCode":4621502},{"arcs":[[19152]],"areaCode":4621502},{"arcs":[[19153]],"areaCode":4621502},{"arcs":[[19154]],"areaCode":4621502},{"arcs":[[19155]],"areaCode":4621502},{"arcs":[[19156]],"areaCode":4621501},{"arcs":[[19157]],"areaCode":4621501},{"arcs":[[-18851,-18833,-18744,-18784,-18799,19158,-18763,-18768]],"areaCode":4621501},{"arcs":[[19159]],"areaCode":4220500},{"arcs":[[19160]],"areaCode":4220500},{"arcs":[[-18268,-18300,19161,-18394,-18248,-18243]],"areaCode":4220500},{"arcs":[[19162]],"areaCode":null},{"arcs":[[19163]],"areaCode":null},{"arcs":[[19164]],"areaCode":null},{"arcs":[[19165]],"areaCode":null},{"arcs":[[19166]],"areaCode":null},{"arcs":[[19167]],"areaCode":null},{"arcs":[[19168]],"areaCode":null},{"arcs":[[19169]],"areaCode":null},{"arcs":[[19170]],"areaCode":null},{"arcs":[[19171]],"areaCode":null},{"arcs":[[19172]],"areaCode":null},{"arcs":[[19173]],"areaCode":null},{"arcs":[[19174]],"areaCode":null},{"arcs":[[-11075,19175,19176]],"areaCode":null},{"arcs":[[19177]],"areaCode":null},{"arcs":[[19178]],"areaCode":null},{"arcs":[[19179]],"areaCode":null},{"arcs":[[19180]],"areaCode":null},{"arcs":[[-11312,19181,-11310,19182,-11308,19183,19184,-11305,19185,-11303,19186,-11301,19187,19188,19189,-11297,19190,19191,19192,-11293,19193,19194,-11290,19195,19196,-11287,19197,-11285,19198,-11283,19199,-11281,19200,-11279,19201,-11376,19202,19203,19204,-11372,19205,19206,19207,19208,19209,-11366,19210,19211,19212,19213,-11361,19214,-11359,19215,19216]],"areaCode":null},{"arcs":[[19217]],"areaCode":null},{"arcs":[[19218]],"areaCode":null},{"arcs":[[19219]],"areaCode":null},{"arcs":[[19220]],"areaCode":null},{"arcs":[[19221]],"areaCode":null},{"arcs":[[19222]],"areaCode":null},{"arcs":[[19223]],"areaCode":null},{"arcs":[[-19027,19224,-18984]],"areaCode":null}],"arcs":[{"arc":[{"x":240708,"y":190464},{"x":0,"y":356}],"type":"area"},{"arc":[{"x":240708,"y":190820},{"x":-91,"y":-214},{"x":-44,"y":-26}],"type":"area"},{"arc":[{"x":240573,"y":190580},{"x":-52,"y":-38},{"x":-392,"y":-107}],"type":"area"},{"arc":[{"x":240129,"y":190435},{"x":-73,"y":-67},{"x":139,"y":-99},{"x":15,"y":-170},{"x":74,"y":38},{"x":-16,"y":-87},{"x":24,"y":-74},{"x":-50,"y":-12},{"x":-47,"y":41},{"x":-12,"y":-64},{"x":-89,"y":-116},{"x":-75,"y":-26},{"x":-14,"y":-60},{"x":-50,"y":-27},{"x":-65,"y":-115},{"x":2,"y":-58},{"x":-84,"y":-66},{"x":4,"y":-53},{"x":82,"y":-39},{"x":-13,"y":-30},{"x":82,"y":-228},{"x":7,"y":-113},{"x":81,"y":-130},{"x":32,"y":4}],"type":"area"},{"arc":[{"x":240083,"y":188884},{"x":-46,"y":106},{"x":-5,"y":177},{"x":149,"y":158},{"x":130,"y":47},{"x":100,"y":143},{"x":43,"y":22},{"x":-81,"y":-18},{"x":-34,"y":19},{"x":-40,"y":148},{"x":21,"y":50},{"x":207,"y":-8},{"x":52,"y":97},{"x":131,"y":134},{"x":-52,"y":81},{"x":197,"y":83},{"x":26,"y":45},{"x":49,"y":17}],"type":"area"},{"arc":[{"x":240930,"y":190185},{"x":-181,"y":83},{"x":-35,"y":-13},{"x":-29,"y":76},{"x":23,"y":133}],"type":"area"},{"arc":[{"x":241887,"y":191328},{"x":-21,"y":29},{"x":-52,"y":-29},{"x":22,"y":-33},{"x":-72,"y":-23},{"x":-5,"y":18},{"x":-100,"y":-65},{"x":42,"y":-76},{"x":-30,"y":-65},{"x":-75,"y":-11},{"x":3,"y":-39},{"x":-30,"y":-18},{"x":18,"y":-40},{"x":-117,"y":-181},{"x":-17,"y":9},{"x":-23,"y":-31},{"x":14,"y":-188},{"x":-37,"y":-71},{"x":14,"y":-53},{"x":-34,"y":-113},{"x":-262,"y":13},{"x":-417,"y":103}],"type":"area"},{"arc":[{"x":240930,"y":190185},{"x":390,"y":-436}],"type":"area"},{"arc":[{"x":241320,"y":189749},{"x":178,"y":-203},{"x":31,"y":67},{"x":-31,"y":55},{"x":33,"y":47}],"type":"area"},{"arc":[{"x":241531,"y":189715},{"x":175,"y":337},{"x":15,"y":179},{"x":15,"y":-15},{"x":0,"y":37},{"x":30,"y":-11},{"x":32,"y":27},{"x":31,"y":79},{"x":46,"y":4},{"x":-17,"y":45},{"x":53,"y":48},{"x":43,"y":-25},{"x":111,"y":73},{"x":3,"y":59},{"x":-54,"y":131},{"x":20,"y":117},{"x":115,"y":74},{"x":88,"y":109}],"type":"admin"},{"arc":[{"x":242237,"y":190983},{"x":-56,"y":41},{"x":-109,"y":-108},{"x":-62,"y":6},{"x":-21,"y":47},{"x":25,"y":157},{"x":-46,"y":63},{"x":26,"y":68},{"x":-94,"y":26},{"x":-13,"y":45}],"type":"admin"},{"arc":[{"x":241022,"y":191519},{"x":-25,"y":-59},{"x":39,"y":-136},{"x":-79,"y":-64},{"x":-13,"y":-96},{"x":-90,"y":-65},{"x":-36,"y":-106},{"x":-81,"y":-58},{"x":-29,"y":-115}],"type":"area"},{"arc":[{"x":241887,"y":191328},{"x":66,"y":94},{"x":-55,"y":16}],"type":"admin"},{"arc":[{"x":241898,"y":191438},{"x":-95,"y":-25},{"x":-229,"y":77},{"x":-103,"y":10},{"x":-113,"y":-18},{"x":-240,"y":-96},{"x":-96,"y":133}],"type":"admin"},{"arc":[{"x":241056,"y":191687},{"x":-422,"y":-249},{"x":-106,"y":-4},{"x":-170,"y":83},{"x":-66,"y":7},{"x":-85,"y":-123},{"x":-85,"y":-20}],"type":"area"},{"arc":[{"x":240122,"y":191381},{"x":48,"y":-102}],"type":"area"},{"arc":[{"x":240170,"y":191279},{"x":197,"y":-407},{"x":206,"y":-292}],"type":"area"},{"arc":[{"x":241022,"y":191519},{"x":82,"y":30},{"x":1,"y":57},{"x":-37,"y":25},{"x":-12,"y":56}],"type":"admin"},{"arc":[{"x":240170,"y":191279},{"x":-34,"y":-40},{"x":-120,"y":-21},{"x":-54,"y":-50},{"x":-36,"y":49},{"x":-156,"y":-122},{"x":-45,"y":16},{"x":-126,"y":-113},{"x":-69,"y":164},{"x":-23,"y":-111},{"x":-132,"y":-167},{"x":-52,"y":-5},{"x":-73,"y":-62},{"x":-250,"y":-29}],"type":"area"},{"arc":[{"x":239000,"y":190788},{"x":-45,"y":-174},{"x":-37,"y":-29},{"x":99,"y":13},{"x":35,"y":-53},{"x":115,"y":28},{"x":162,"y":-11},{"x":75,"y":38},{"x":172,"y":13},{"x":118,"y":-18},{"x":47,"y":56},{"x":93,"y":23},{"x":69,"y":-12},{"x":119,"y":38},{"x":6,"y":-62},{"x":52,"y":-14},{"x":16,"y":-105},{"x":-83,"y":-19},{"x":12,"y":-25},{"x":-32,"y":-34},{"x":136,"y":-6}],"type":"area"},{"arc":[{"x":240972,"y":188366},{"x":-53,"y":46},{"x":18,"y":71},{"x":-20,"y":6}],"type":"area"},{"arc":[{"x":240917,"y":188489},{"x":-37,"y":13},{"x":-173,"y":-130},{"x":-35,"y":57},{"x":-63,"y":31},{"x":-72,"y":137},{"x":-111,"y":33},{"x":-47,"y":95},{"x":-59,"y":0},{"x":-40,"y":-41},{"x":-114,"y":90},{"x":-41,"y":112},{"x":-42,"y":-2}],"type":"area"},{"arc":[{"x":239000,"y":190788},{"x":-80,"y":78},{"x":-81,"y":-20},{"x":-93,"y":22},{"x":-24,"y":-24},{"x":-95,"y":56},{"x":-41,"y":-21},{"x":-97,"y":21},{"x":-37,"y":-28}],"type":"area"},{"arc":[{"x":238452,"y":190872},{"x":13,"y":-254},{"x":-77,"y":-24},{"x":-48,"y":-77},{"x":-65,"y":-27},{"x":-81,"y":-256},{"x":59,"y":-158},{"x":141,"y":-66},{"x":14,"y":-79},{"x":-33,"y":-93},{"x":-134,"y":-85},{"x":3,"y":-66},{"x":-74,"y":-118},{"x":-39,"y":-153},{"x":-38,"y":24},{"x":-169,"y":4},{"x":-107,"y":-83},{"x":-7,"y":-60},{"x":-130,"y":-32},{"x":-24,"y":-42},{"x":-80,"y":0}],"type":"admin"},{"arc":[{"x":237576,"y":189227},{"x":-6,"y":-38},{"x":-90,"y":-9},{"x":-22,"y":-88},{"x":-55,"y":-35},{"x":-100,"y":55},{"x":-28,"y":61},{"x":-74,"y":8},{"x":-48,"y":-89},{"x":-42,"y":-242}],"type":"admin"},{"arc":[{"x":237111,"y":188850},{"x":24,"y":-112},{"x":-30,"y":-101},{"x":17,"y":-57},{"x":-44,"y":-36},{"x":-13,"y":-89},{"x":65,"y":-55},{"x":39,"y":-155},{"x":189,"y":-78},{"x":19,"y":-103},{"x":54,"y":-43},{"x":170,"y":-267}],"type":"admin"},{"arc":[{"x":237601,"y":187754},{"x":59,"y":78},{"x":187,"y":-66},{"x":62,"y":97},{"x":101,"y":-63},{"x":169,"y":36},{"x":48,"y":63},{"x":117,"y":-45},{"x":24,"y":-39},{"x":-56,"y":-125},{"x":81,"y":-83},{"x":-25,"y":-320},{"x":21,"y":-87}],"type":"admin"},{"arc":[{"x":238389,"y":187200},{"x":104,"y":-15},{"x":31,"y":-38},{"x":127,"y":-4},{"x":90,"y":-74},{"x":59,"y":71},{"x":235,"y":94},{"x":51,"y":56},{"x":154,"y":47},{"x":112,"y":-287},{"x":46,"y":-51},{"x":11,"y":-81},{"x":160,"y":-61},{"x":1,"y":-65},{"x":48,"y":13},{"x":47,"y":-32}],"type":"admin"},{"arc":[{"x":239665,"y":186773},{"x":54,"y":-5},{"x":52,"y":-50},{"x":78,"y":65},{"x":152,"y":8},{"x":55,"y":-68},{"x":76,"y":-29},{"x":31,"y":90},{"x":99,"y":121},{"x":-7,"y":96},{"x":125,"y":126},{"x":13,"y":49},{"x":98,"y":80},{"x":119,"y":1}],"type":"admin"},{"arc":[{"x":240610,"y":187257},{"x":75,"y":43},{"x":32,"y":101},{"x":184,"y":66},{"x":68,"y":-62},{"x":38,"y":108},{"x":61,"y":-52},{"x":89,"y":-29},{"x":62,"y":8},{"x":28,"y":18},{"x":-31,"y":73},{"x":120,"y":38},{"x":-6,"y":122},{"x":34,"y":42},{"x":-65,"y":118},{"x":51,"y":62},{"x":-68,"y":34},{"x":-102,"y":230},{"x":-42,"y":-17},{"x":-111,"y":26},{"x":12,"y":88},{"x":-32,"y":95},{"x":-35,"y":-3}],"type":"admin"},{"arc":[{"x":240917,"y":188489},{"x":-100,"y":123},{"x":-10,"y":290},{"x":51,"y":213},{"x":106,"y":45},{"x":85,"y":109},{"x":-86,"y":131},{"x":-10,"y":-58},{"x":-30,"y":37},{"x":82,"y":124},{"x":18,"y":15},{"x":18,"y":-17},{"x":279,"y":248}],"type":"area"},{"arc":[{"x":240104,"y":192017},{"x":26,"y":-197},{"x":-20,"y":-16},{"x":-98,"y":45},{"x":-28,"y":-66},{"x":-55,"y":-4}],"type":"admin"},{"arc":[{"x":239929,"y":191779},{"x":95,"y":-198},{"x":80,"y":-62},{"x":-34,"y":-32},{"x":52,"y":-106}],"type":"area"},{"arc":[{"x":241056,"y":191687},{"x":-102,"y":22},{"x":-78,"y":-50},{"x":-103,"y":31},{"x":-53,"y":-23},{"x":-127,"y":120},{"x":-32,"y":78},{"x":10,"y":69},{"x":-101,"y":2},{"x":15,"y":38},{"x":-381,"y":43}],"type":"admin"},{"arc":[{"x":241851,"y":189350},{"x":-320,"y":365}],"type":"admin"},{"arc":[{"x":240972,"y":188366},{"x":-10,"y":64},{"x":69,"y":92},{"x":29,"y":-7},{"x":42,"y":65},{"x":60,"y":6},{"x":67,"y":79},{"x":122,"y":54},{"x":66,"y":166},{"x":108,"y":-132},{"x":89,"y":-22},{"x":253,"y":369},{"x":-106,"y":152},{"x":90,"y":98}],"type":"admin"},{"arc":[{"x":239929,"y":191779},{"x":-109,"y":-50},{"x":-56,"y":32},{"x":-48,"y":-3},{"x":-11,"y":-29},{"x":-196,"y":-110},{"x":-190,"y":-49},{"x":-97,"y":1},{"x":-80,"y":-51},{"x":-19,"y":25},{"x":-249,"y":-271},{"x":-96,"y":-61},{"x":-25,"y":-68},{"x":-79,"y":-44},{"x":-156,"y":-33},{"x":-52,"y":79}],"type":"admin"},{"arc":[{"x":238466,"y":191147},{"x":-39,"y":-51},{"x":24,"y":-155},{"x":-26,"y":-56},{"x":27,"y":-13}],"type":"admin"},{"arc":[{"x":239660,"y":221528},{"x":-28,"y":11},{"x":-78,"y":-23},{"x":75,"y":22},{"x":52,"y":-19},{"x":-21,"y":9}],"type":"coastline"},{"arc":[{"x":239709,"y":221067},{"x":-14,"y":-36},{"x":28,"y":70},{"x":-14,"y":-34}],"type":"coastline"},{"arc":[{"x":239720,"y":221185},{"x":-9,"y":143},{"x":12,"y":-227},{"x":-3,"y":84}],"type":"coastline"},{"arc":[{"x":238836,"y":217858},{"x":-594,"y":-902},{"x":-398,"y":-498}],"type":"coastline"},{"arc":[{"x":237844,"y":216458},{"x":23,"y":-71},{"x":36,"y":14},{"x":30,"y":-44},{"x":38,"y":-3},{"x":-17,"y":-48},{"x":33,"y":-4},{"x":-26,"y":-45},{"x":33,"y":-3},{"x":6,"y":-36},{"x":31,"y":-1},{"x":52,"y":-59},{"x":-4,"y":-54},{"x":33,"y":33},{"x":22,"y":-70},{"x":31,"y":8},{"x":43,"y":-91},{"x":54,"y":-34},{"x":43,"y":-132},{"x":17,"y":13},{"x":30,"y":-33},{"x":63,"y":-111},{"x":-20,"y":-54},{"x":87,"y":-23},{"x":41,"y":-103},{"x":32,"y":-2},{"x":45,"y":68},{"x":126,"y":-123},{"x":131,"y":-7},{"x":100,"y":-71},{"x":74,"y":42},{"x":26,"y":-72},{"x":96,"y":20},{"x":38,"y":32},{"x":148,"y":1},{"x":134,"y":-168},{"x":113,"y":-8},{"x":26,"y":-63},{"x":119,"y":-98},{"x":57,"y":-97},{"x":-26,"y":-57},{"x":-47,"y":-26},{"x":10,"y":-41},{"x":87,"y":-13},{"x":4,"y":-32},{"x":68,"y":-53},{"x":43,"y":-2},{"x":21,"y":34},{"x":23,"y":-27},{"x":123,"y":36},{"x":21,"y":-20},{"x":245,"y":75},{"x":23,"y":-19},{"x":172,"y":146},{"x":31,"y":160},{"x":60,"y":18},{"x":-2,"y":20},{"x":92,"y":-24},{"x":31,"y":13},{"x":34,"y":80},{"x":86,"y":32},{"x":11,"y":29},{"x":138,"y":-44},{"x":38,"y":41},{"x":74,"y":-19},{"x":38,"y":51},{"x":63,"y":-56},{"x":57,"y":17},{"x":32,"y":-25},{"x":25,"y":18}],"type":"admin"},{"arc":[{"x":241363,"y":215273},{"x":-11,"y":108},{"x":29,"y":97},{"x":-28,"y":48},{"x":25,"y":19},{"x":21,"y":228},{"x":-49,"y":24},{"x":-22,"y":71},{"x":-52,"y":-20},{"x":-52,"y":14},{"x":-135,"y":87},{"x":-32,"y":63},{"x":7,"y":82},{"x":-88,"y":65},{"x":-18,"y":81},{"x":47,"y":40},{"x":-60,"y":161},{"x":29,"y":54},{"x":-6,"y":115},{"x":-75,"y":118},{"x":-163,"y":86},{"x":38,"y":66},{"x":-52,"y":-3},{"x":-73,"y":86},{"x":-84,"y":10},{"x":-60,"y":91},{"x":-75,"y":-35},{"x":14,"y":-36},{"x":-30,"y":-55},{"x":-24,"y":12},{"x":-60,"y":-28},{"x":-169,"y":47},{"x":-29,"y":-111},{"x":-62,"y":7},{"x":-51,"y":-26},{"x":-34,"y":-75},{"x":-56,"y":31},{"x":-119,"y":-4},{"x":-86,"y":99},{"x":-146,"y":48},{"x":-92,"y":96},{"x":-47,"y":80},{"x":16,"y":178},{"x":-192,"y":256},{"x":-106,"y":69},{"x":-16,"y":56},{"x":-68,"y":43},{"x":-35,"y":2},{"x":-32,"y":-38},{"x":-116,"y":48},{"x":-1,"y":80},{"x":-47,"y":50}],"type":"admin"},{"arc":[{"x":246433,"y":220104},{"x":-115,"y":257},{"x":-51,"y":-11},{"x":-23,"y":-57},{"x":-43,"y":4},{"x":-46,"y":-39},{"x":-31,"y":19},{"x":-21,"y":-51},{"x":-50,"y":42},{"x":-121,"y":-75},{"x":-63,"y":58},{"x":-52,"y":11},{"x":-52,"y":-84},{"x":-29,"y":-5},{"x":-88,"y":79},{"x":-66,"y":15}],"type":"admin"},{"arc":[{"x":245582,"y":220267},{"x":-112,"y":-82},{"x":-49,"y":60},{"x":-83,"y":25},{"x":-12,"y":-77},{"x":-75,"y":-34},{"x":-30,"y":-59},{"x":-65,"y":-40},{"x":-11,"y":-46},{"x":-224,"y":-146},{"x":-134,"y":-196},{"x":-37,"y":-14},{"x":-60,"y":18},{"x":-84,"y":-52},{"x":-40,"y":-57},{"x":-42,"y":-9},{"x":21,"y":-33},{"x":-33,"y":-51},{"x":-76,"y":-21},{"x":-58,"y":-74},{"x":-60,"y":33},{"x":-46,"y":-50},{"x":-148,"y":-4},{"x":-32,"y":-34},{"x":8,"y":-40},{"x":-116,"y":12},{"x":-98,"y":49},{"x":43,"y":-36},{"x":9,"y":-57},{"x":-44,"y":-104},{"x":-45,"y":20},{"x":-84,"y":-36},{"x":-85,"y":10},{"x":-155,"y":194},{"x":-174,"y":64},{"x":-99,"y":78},{"x":-124,"y":154},{"x":15,"y":27},{"x":-108,"y":136},{"x":-14,"y":67},{"x":-38,"y":6},{"x":-93,"y":86},{"x":-77,"y":-12},{"x":-45,"y":81},{"x":-79,"y":60},{"x":-87,"y":-16},{"x":-80,"y":65},{"x":-27,"y":-21},{"x":-171,"y":54},{"x":-49,"y":51},{"x":-112,"y":15},{"x":-44,"y":65},{"x":-71,"y":-32},{"x":-52,"y":75},{"x":-79,"y":-21},{"x":-12,"y":86},{"x":-35,"y":26},{"x":-45,"y":-27},{"x":-56,"y":6},{"x":-22,"y":-27},{"x":-55,"y":34},{"x":-52,"y":-8},{"x":-104,"y":78},{"x":-39,"y":-2},{"x":-25,"y":65},{"x":-105,"y":-21},{"x":-76,"y":14},{"x":-25,"y":36},{"x":-106,"y":42},{"x":-48,"y":78},{"x":-49,"y":-27},{"x":-74,"y":73},{"x":-48,"y":-7},{"x":6,"y":48},{"x":-62,"y":12},{"x":-19,"y":117},{"x":-49,"y":32},{"x":21,"y":42},{"x":-29,"y":141},{"x":75,"y":24},{"x":29,"y":38},{"x":-154,"y":745}],"type":"admin"},{"arc":[{"x":240759,"y":221936},{"x":-72,"y":43},{"x":-29,"y":71},{"x":-27,"y":-19},{"x":-16,"y":14},{"x":1,"y":55},{"x":-119,"y":31},{"x":-55,"y":94},{"x":-26,"y":-95},{"x":-37,"y":42},{"x":-61,"y":-20},{"x":-15,"y":27},{"x":-98,"y":-2},{"x":-36,"y":32},{"x":-217,"y":-289},{"x":-91,"y":16},{"x":-61,"y":53},{"x":60,"y":125},{"x":-65,"y":82},{"x":-15,"y":173},{"x":-68,"y":-23},{"x":-40,"y":36},{"x":-93,"y":95},{"x":9,"y":35},{"x":-118,"y":170},{"x":-94,"y":65},{"x":-10,"y":35},{"x":-81,"y":-8},{"x":-82,"y":52},{"x":-45,"y":-20},{"x":-85,"y":25}],"type":"admin"},{"arc":[{"x":239073,"y":222831},{"x":70,"y":-253},{"x":-8,"y":-160},{"x":2,"y":27},{"x":37,"y":-34},{"x":-33,"y":-3},{"x":92,"y":-55},{"x":5,"y":-171},{"x":53,"y":-88},{"x":14,"y":-102},{"x":50,"y":-87},{"x":49,"y":-25},{"x":3,"y":-71},{"x":4,"y":73},{"x":26,"y":-38},{"x":-21,"y":-22},{"x":37,"y":2},{"x":-25,"y":-142},{"x":39,"y":-125},{"x":64,"y":-51},{"x":-54,"y":42},{"x":4,"y":44},{"x":40,"y":11},{"x":-1,"y":40},{"x":27,"y":-20},{"x":-14,"y":41},{"x":29,"y":-8},{"x":-8,"y":-22},{"x":8,"y":22},{"x":35,"y":-21},{"x":61,"y":18},{"x":-15,"y":-45},{"x":45,"y":14},{"x":29,"y":-31},{"x":-49,"y":-17},{"x":7,"y":-25},{"x":38,"y":11},{"x":29,"y":-28},{"x":-13,"y":21},{"x":29,"y":18},{"x":22,"y":-41},{"x":-22,"y":-29},{"x":-53,"y":30},{"x":60,"y":-35},{"x":43,"y":10},{"x":-92,"y":-165},{"x":84,"y":121},{"x":14,"y":-36},{"x":-35,"y":-16},{"x":19,"y":-39},{"x":-36,"y":-41},{"x":8,"y":-32},{"x":60,"y":29},{"x":5,"y":-34},{"x":-50,"y":-25},{"x":9,"y":-60},{"x":50,"y":25},{"x":4,"y":-26},{"x":-50,"y":-24},{"x":6,"y":-38},{"x":53,"y":11},{"x":3,"y":-37},{"x":-55,"y":-13},{"x":6,"y":-46},{"x":-41,"y":-2},{"x":116,"y":-1},{"x":16,"y":-110},{"x":-17,"y":-288},{"x":-80,"y":-486}],"type":"coastline"},{"arc":[{"x":239805,"y":220173},{"x":110,"y":-67},{"x":-24,"y":-66},{"x":31,"y":-21},{"x":277,"y":97},{"x":174,"y":-579},{"x":244,"y":-127},{"x":-57,"y":-25},{"x":-26,"y":-57},{"x":37,"y":-195},{"x":38,"y":-38},{"x":-3,"y":-42},{"x":-74,"y":-73},{"x":48,"y":-30},{"x":52,"y":-144},{"x":84,"y":-27},{"x":69,"y":-64},{"x":80,"y":12},{"x":127,"y":-76},{"x":79,"y":-18},{"x":47,"y":26},{"x":35,"y":-32},{"x":174,"y":0},{"x":101,"y":-151},{"x":31,"y":-138},{"x":102,"y":-154},{"x":93,"y":-49},{"x":44,"y":35},{"x":81,"y":0},{"x":42,"y":-34},{"x":78,"y":28},{"x":14,"y":-76},{"x":32,"y":9},{"x":106,"y":-82},{"x":40,"y":-183},{"x":56,"y":-97},{"x":209,"y":-50},{"x":76,"y":38},{"x":194,"y":-87},{"x":63,"y":-9},{"x":30,"y":19},{"x":185,"y":-97},{"x":47,"y":-113},{"x":78,"y":-17},{"x":86,"y":46},{"x":33,"y":-57},{"x":63,"y":-9},{"x":53,"y":59},{"x":153,"y":32},{"x":33,"y":91},{"x":88,"y":97},{"x":176,"y":46},{"x":21,"y":174},{"x":52,"y":-20},{"x":59,"y":39},{"x":68,"y":-6},{"x":61,"y":115},{"x":80,"y":-36},{"x":52,"y":89},{"x":28,"y":-19},{"x":31,"y":21},{"x":36,"y":-25},{"x":65,"y":51},{"x":15,"y":49},{"x":118,"y":-24},{"x":138,"y":-106},{"x":50,"y":-133}],"type":"admin"},{"arc":[{"x":244588,"y":217893},{"x":80,"y":22},{"x":26,"y":-58},{"x":43,"y":-5},{"x":-21,"y":117},{"x":84,"y":121},{"x":50,"y":-51},{"x":191,"y":72},{"x":124,"y":6},{"x":95,"y":-35},{"x":-9,"y":-113},{"x":101,"y":-120},{"x":103,"y":-36},{"x":77,"y":49},{"x":191,"y":-65}],"type":"admin"},{"arc":[{"x":245723,"y":217797},{"x":-46,"y":305},{"x":36,"y":121},{"x":77,"y":53},{"x":-8,"y":62},{"x":65,"y":142},{"x":-2,"y":69},{"x":104,"y":9},{"x":98,"y":59},{"x":40,"y":-51},{"x":103,"y":-19},{"x":167,"y":113},{"x":19,"y":136},{"x":-45,"y":92},{"x":12,"y":112},{"x":-27,"y":77},{"x":67,"y":104},{"x":117,"y":15},{"x":57,"y":59},{"x":-70,"y":247},{"x":-104,"y":120},{"x":-87,"y":53},{"x":144,"y":97},{"x":46,"y":73},{"x":-1,"y":44},{"x":-53,"y":50},{"x":-11,"y":105},{"x":-38,"y":33},{"x":50,"y":27}],"type":"admin"},{"arc":[{"x":253958,"y":219074},{"x":-79,"y":-19},{"x":43,"y":-194},{"x":-39,"y":-56},{"x":30,"y":-52},{"x":-97,"y":-60},{"x":-47,"y":17},{"x":-1,"y":-47},{"x":-69,"y":-31},{"x":-4,"y":-61},{"x":-43,"y":-2},{"x":-99,"y":-85},{"x":-44,"y":23},{"x":-49,"y":-90},{"x":-89,"y":-11},{"x":-97,"y":-124},{"x":-112,"y":51},{"x":-74,"y":-6},{"x":-20,"y":-26},{"x":-74,"y":22},{"x":-35,"y":-27},{"x":-44,"y":27},{"x":-19,"y":-47},{"x":-88,"y":-24},{"x":-9,"y":-64},{"x":-88,"y":-54},{"x":-48,"y":39},{"x":-6,"y":81},{"x":-37,"y":38},{"x":-264,"y":79},{"x":-46,"y":-9},{"x":-47,"y":-91},{"x":-69,"y":4},{"x":-38,"y":35},{"x":-48,"y":-101},{"x":-45,"y":-8},{"x":15,"y":-31},{"x":-43,"y":-126},{"x":-61,"y":4},{"x":-25,"y":33},{"x":-41,"y":-70},{"x":-73,"y":12},{"x":-59,"y":104},{"x":-96,"y":-14},{"x":-65,"y":44},{"x":-68,"y":-10},{"x":-97,"y":82},{"x":52,"y":236}],"type":"area"},{"arc":[{"x":251502,"y":218465},{"x":-191,"y":-15},{"x":-4,"y":-36},{"x":-157,"y":-124},{"x":-76,"y":61}],"type":"admin"},{"arc":[{"x":251074,"y":218351},{"x":-94,"y":48},{"x":-51,"y":-31},{"x":-21,"y":-97},{"x":-113,"y":-194},{"x":-78,"y":25},{"x":-109,"y":-172},{"x":-68,"y":19},{"x":-50,"y":-27},{"x":-49,"y":20},{"x":-189,"y":-121},{"x":-55,"y":26},{"x":-24,"y":-113},{"x":-49,"y":-41},{"x":-42,"y":63},{"x":-36,"y":-27},{"x":-47,"y":13},{"x":-55,"y":-40},{"x":-42,"y":-83},{"x":-55,"y":10},{"x":-104,"y":-65},{"x":-6,"y":-39},{"x":-100,"y":16},{"x":-133,"y":-57},{"x":29,"y":-89},{"x":60,"y":-15},{"x":2,"y":-32},{"x":61,"y":-43},{"x":-4,"y":-44},{"x":-124,"y":-82},{"x":-66,"y":58},{"x":-59,"y":-35},{"x":-122,"y":-228},{"x":-84,"y":-81},{"x":-73,"y":19}],"type":"admin"},{"arc":[{"x":249124,"y":216912},{"x":-67,"y":-63},{"x":-119,"y":-56},{"x":-62,"y":20},{"x":-119,"y":-55},{"x":-40,"y":-82},{"x":72,"y":-139},{"x":26,"y":-204},{"x":-69,"y":-44},{"x":-31,"y":-103},{"x":-76,"y":-12},{"x":-13,"y":-75},{"x":-105,"y":-90},{"x":-2,"y":-34},{"x":-40,"y":-29},{"x":-28,"y":13},{"x":-42,"y":-46},{"x":-67,"y":-1}],"type":"admin"},{"arc":[{"x":248342,"y":215912},{"x":-2,"y":-63},{"x":89,"y":-48},{"x":31,"y":14},{"x":31,"y":-55},{"x":45,"y":5},{"x":100,"y":-139},{"x":407,"y":151},{"x":715,"y":-75},{"x":-80,"y":-1008},{"x":-97,"y":-167},{"x":6,"y":-100},{"x":64,"y":-79},{"x":6,"y":-60}],"type":"admin"},{"arc":[{"x":249657,"y":214288},{"x":-230,"y":-352},{"x":13,"y":-105},{"x":-35,"y":-54},{"x":50,"y":-42},{"x":28,"y":-198},{"x":-267,"y":-414},{"x":44,"y":-128},{"x":-69,"y":-64},{"x":-106,"y":17},{"x":-36,"y":-35},{"x":-74,"y":13},{"x":-127,"y":-58},{"x":-60,"y":48},{"x":-14,"y":-11},{"x":-12,"y":-183},{"x":-80,"y":-165},{"x":27,"y":-190},{"x":-22,"y":-152},{"x":-25,"y":-52},{"x":-56,"y":-15},{"x":-1,"y":-199},{"x":-59,"y":-37},{"x":-62,"y":18},{"x":-48,"y":-37},{"x":-36,"y":32},{"x":-52,"y":-57},{"x":-46,"y":8},{"x":-53,"y":-43},{"x":37,"y":-116},{"x":84,"y":-76},{"x":-102,"y":-13},{"x":-64,"y":-88},{"x":-72,"y":-38},{"x":-16,"y":-65},{"x":22,"y":-61},{"x":-98,"y":-38},{"x":-69,"y":-207},{"x":-60,"y":-29},{"x":0,"y":-33},{"x":35,"y":-17},{"x":2,"y":-89},{"x":55,"y":-18},{"x":-5,"y":-192},{"x":114,"y":-250},{"x":-27,"y":-118},{"x":-67,"y":-89},{"x":18,"y":-105},{"x":-20,"y":-57},{"x":-77,"y":-29},{"x":-3,"y":-295},{"x":-122,"y":-181},{"x":-72,"y":-214},{"x":-148,"y":-83},{"x":-66,"y":73},{"x":-84,"y":-130},{"x":-77,"y":-17}],"type":"admin"},{"arc":[{"x":247367,"y":209258},{"x":-42,"y":-188},{"x":45,"y":-127}],"type":"admin"},{"arc":[{"x":247370,"y":208943},{"x":59,"y":-64},{"x":103,"y":3},{"x":116,"y":132},{"x":147,"y":64},{"x":110,"y":182},{"x":36,"y":11},{"x":17,"y":-26},{"x":94,"y":-13},{"x":42,"y":-81},{"x":65,"y":18},{"x":93,"y":-121},{"x":3,"y":-49},{"x":31,"y":-4},{"x":12,"y":-60},{"x":115,"y":-22},{"x":37,"y":66},{"x":91,"y":22},{"x":38,"y":-14},{"x":188,"y":141},{"x":18,"y":119}],"type":"admin"},{"arc":[{"x":248785,"y":209247},{"x":-1,"y":100},{"x":-83,"y":142},{"x":25,"y":142},{"x":-36,"y":27},{"x":-33,"y":149},{"x":160,"y":278},{"x":150,"y":30},{"x":35,"y":-36},{"x":115,"y":-36},{"x":74,"y":20},{"x":88,"y":186},{"x":103,"y":46},{"x":8,"y":63},{"x":110,"y":99},{"x":-50,"y":187},{"x":71,"y":64},{"x":39,"y":-35},{"x":19,"y":90},{"x":-73,"y":84},{"x":21,"y":107},{"x":76,"y":27},{"x":17,"y":143},{"x":55,"y":25},{"x":62,"y":86},{"x":66,"y":-27},{"x":34,"y":19},{"x":11,"y":128},{"x":88,"y":9},{"x":-16,"y":137},{"x":25,"y":39},{"x":-42,"y":75},{"x":47,"y":333},{"x":52,"y":69},{"x":47,"y":14},{"x":83,"y":160},{"x":-19,"y":155},{"x":36,"y":67},{"x":-37,"y":21},{"x":-30,"y":83},{"x":62,"y":183},{"x":-15,"y":60},{"x":87,"y":80},{"x":-4,"y":60},{"x":31,"y":50},{"x":50,"y":-45},{"x":24,"y":27},{"x":91,"y":8},{"x":-12,"y":36},{"x":54,"y":43},{"x":4,"y":91},{"x":43,"y":16},{"x":39,"y":64},{"x":-67,"y":68},{"x":56,"y":123},{"x":174,"y":-65},{"x":36,"y":38},{"x":187,"y":-22},{"x":142,"y":170},{"x":107,"y":-2},{"x":12,"y":42},{"x":244,"y":-36},{"x":88,"y":6},{"x":46,"y":65},{"x":59,"y":-47},{"x":21,"y":35},{"x":62,"y":14},{"x":118,"y":-32}],"type":"admin"},{"arc":[{"x":251821,"y":213547},{"x":11,"y":168},{"x":-60,"y":-5},{"x":-46,"y":27},{"x":-72,"y":109},{"x":38,"y":136},{"x":67,"y":83},{"x":-51,"y":45},{"x":-65,"y":-7},{"x":-32,"y":90},{"x":-77,"y":-48},{"x":-43,"y":63},{"x":56,"y":148},{"x":-35,"y":83},{"x":57,"y":64},{"x":-15,"y":60},{"x":-47,"y":4},{"x":-30,"y":-115},{"x":-44,"y":-31},{"x":-53,"y":15},{"x":-46,"y":-40},{"x":-51,"y":49},{"x":4,"y":35},{"x":-133,"y":35},{"x":-33,"y":91},{"x":-68,"y":-2},{"x":-93,"y":61},{"x":-47,"y":52},{"x":-2,"y":63},{"x":48,"y":134},{"x":121,"y":8},{"x":85,"y":67},{"x":67,"y":2},{"x":157,"y":239},{"x":32,"y":-6},{"x":61,"y":82},{"x":52,"y":-23},{"x":64,"y":13},{"x":26,"y":-74},{"x":159,"y":10},{"x":23,"y":-31},{"x":129,"y":-13},{"x":31,"y":64},{"x":-45,"y":29},{"x":-41,"y":141},{"x":134,"y":120},{"x":104,"y":46},{"x":62,"y":-48},{"x":41,"y":19},{"x":68,"y":117},{"x":-77,"y":97},{"x":36,"y":8},{"x":18,"y":49},{"x":76,"y":54},{"x":-62,"y":137},{"x":38,"y":150},{"x":-72,"y":25},{"x":-48,"y":181},{"x":28,"y":110},{"x":140,"y":174},{"x":96,"y":47},{"x":-22,"y":69},{"x":52,"y":81},{"x":52,"y":-15},{"x":48,"y":56},{"x":75,"y":190},{"x":213,"y":85},{"x":54,"y":54},{"x":18,"y":89},{"x":55,"y":30},{"x":92,"y":-26},{"x":46,"y":-69},{"x":73,"y":16},{"x":17,"y":-18},{"x":333,"y":215},{"x":76,"y":-167},{"x":442,"y":-409},{"x":234,"y":-1399}],"type":"admin"},{"arc":[{"x":254320,"y":215490},{"x":510,"y":8}],"type":"admin"},{"arc":[{"x":254830,"y":215498},{"x":-4,"y":67},{"x":34,"y":14},{"x":-70,"y":-24},{"x":-23,"y":17},{"x":-10,"y":46},{"x":34,"y":16},{"x":-18,"y":-5},{"x":-38,"y":94},{"x":-241,"y":833},{"x":-272,"y":1079},{"x":-162,"y":943},{"x":35,"y":241},{"x":35,"y":30},{"x":-29,"y":55},{"x":19,"y":-45},{"x":-16,"y":-11},{"x":-20,"y":28},{"x":6,"y":-40},{"x":-23,"y":34},{"x":29,"y":22},{"x":-37,"y":29},{"x":-24,"y":-22},{"x":-23,"y":29},{"x":-54,"y":146}],"type":"coastline"},{"arc":[{"x":233576,"y":186487},{"x":-74,"y":-21},{"x":-96,"y":51},{"x":-130,"y":-18},{"x":-64,"y":19},{"x":-27,"y":-21},{"x":-91,"y":106},{"x":-15,"y":64},{"x":-82,"y":-10},{"x":-44,"y":-56},{"x":-113,"y":-13},{"x":-121,"y":104}],"type":"area"},{"arc":[{"x":232719,"y":186692},{"x":-69,"y":-72},{"x":-148,"y":-44},{"x":-60,"y":61},{"x":-65,"y":-19},{"x":-38,"y":-92},{"x":-107,"y":-86},{"x":-54,"y":-103},{"x":-91,"y":-77},{"x":7,"y":-185},{"x":-48,"y":-138},{"x":-53,"y":-21},{"x":-2,"y":-73}],"type":"area"},{"arc":[{"x":231991,"y":185843},{"x":461,"y":-73},{"x":30,"y":-17},{"x":-11,"y":-31},{"x":16,"y":26},{"x":21,"y":-9},{"x":-43,"y":-25},{"x":45,"y":26},{"x":80,"y":-26},{"x":392,"y":-225},{"x":86,"y":-100},{"x":10,"y":-56},{"x":-33,"y":-10},{"x":34,"y":8},{"x":13,"y":-29},{"x":-41,"y":-5},{"x":-15,"y":30},{"x":20,"y":-42},{"x":35,"y":0},{"x":86,"y":-208},{"x":174,"y":-165},{"x":23,"y":-81},{"x":12,"y":20},{"x":16,"y":-23},{"x":-20,"y":-13},{"x":61,"y":-11},{"x":60,"y":-76},{"x":27,"y":-126},{"x":-27,"y":-85},{"x":68,"y":27},{"x":143,"y":-36},{"x":15,"y":29},{"x":-50,"y":43},{"x":60,"y":1},{"x":27,"y":-52},{"x":-30,"y":-24},{"x":35,"y":-59}],"type":"coastline"},{"arc":[{"x":233771,"y":184446},{"x":140,"y":160},{"x":25,"y":98},{"x":25,"y":-9},{"x":19,"y":95},{"x":82,"y":114},{"x":-12,"y":84}],"type":"admin"},{"arc":[{"x":234050,"y":184988},{"x":-138,"y":537},{"x":64,"y":253},{"x":86,"y":117},{"x":-26,"y":44},{"x":44,"y":50},{"x":-40,"y":138},{"x":15,"y":58},{"x":-78,"y":169},{"x":-91,"y":4},{"x":-12,"y":56},{"x":-58,"y":6},{"x":-53,"y":58},{"x":-114,"y":-25},{"x":-73,"y":34}],"type":"admin"},{"arc":[{"x":237111,"y":188850},{"x":-79,"y":-53},{"x":-119,"y":-26},{"x":-98,"y":-101},{"x":-64,"y":-8},{"x":-28,"y":-67},{"x":-119,"y":-22},{"x":-156,"y":25},{"x":-60,"y":36},{"x":-26,"y":-19},{"x":-21,"y":49},{"x":-78,"y":11},{"x":-81,"y":66},{"x":-62,"y":-9},{"x":-63,"y":28},{"x":-70,"y":-18},{"x":-123,"y":29}],"type":"area"},{"arc":[{"x":235864,"y":188771},{"x":-32,"y":-78},{"x":-67,"y":-8},{"x":-165,"y":-217},{"x":-79,"y":-15},{"x":-29,"y":-43},{"x":-174,"y":-11},{"x":-58,"y":-112},{"x":-37,"y":-19},{"x":-78,"y":69},{"x":-53,"y":1},{"x":-163,"y":-231},{"x":7,"y":-139},{"x":-98,"y":-22},{"x":-128,"y":-190},{"x":-130,"y":-75},{"x":-68,"y":-9}],"type":"admin"},{"arc":[{"x":234512,"y":187672},{"x":44,"y":-114},{"x":89,"y":-21},{"x":54,"y":-47},{"x":-18,"y":-74},{"x":29,"y":-138},{"x":-30,"y":-205},{"x":47,"y":25},{"x":113,"y":-52},{"x":80,"y":0},{"x":423,"y":-661}],"type":"admin"},{"arc":[{"x":235343,"y":186385},{"x":78,"y":14},{"x":30,"y":46},{"x":68,"y":1},{"x":40,"y":55},{"x":32,"y":-32},{"x":64,"y":16},{"x":20,"y":-30}],"type":"admin"},{"arc":[{"x":235675,"y":186455},{"x":161,"y":227},{"x":53,"y":27},{"x":67,"y":-13},{"x":155,"y":96},{"x":53,"y":106},{"x":87,"y":1}],"type":"admin"},{"arc":[{"x":236251,"y":186899},{"x":-21,"y":75},{"x":39,"y":-4},{"x":-22,"y":42},{"x":18,"y":118},{"x":-23,"y":74},{"x":219,"y":29},{"x":56,"y":207},{"x":54,"y":97},{"x":79,"y":68},{"x":110,"y":31},{"x":63,"y":-15},{"x":69,"y":22},{"x":46,"y":-21},{"x":179,"y":96},{"x":109,"y":-17},{"x":143,"y":-90},{"x":85,"y":-154},{"x":75,"y":23},{"x":67,"y":-17},{"x":60,"y":66},{"x":-45,"y":92},{"x":19,"y":93},{"x":-29,"y":40}],"type":"admin"},{"arc":[{"x":232183,"y":178836},{"x":-31,"y":-69},{"x":-51,"y":-20},{"x":-39,"y":17},{"x":-24,"y":67},{"x":-60,"y":54},{"x":14,"y":218},{"x":90,"y":156},{"x":-41,"y":114},{"x":-111,"y":121}],"type":"area"},{"arc":[{"x":231930,"y":179494},{"x":-27,"y":31},{"x":6,"y":-28},{"x":-31,"y":-10},{"x":37,"y":56},{"x":-42,"y":-37},{"x":5,"y":-23},{"x":-198,"y":-69},{"x":-528,"y":-106},{"x":-54,"y":4},{"x":-2,"y":43},{"x":1,"y":-38},{"x":-30,"y":-4},{"x":33,"y":53},{"x":-33,"y":-53},{"x":-269,"y":-17},{"x":-369,"y":97},{"x":-5,"y":47},{"x":-4,"y":-31},{"x":-8,"y":30},{"x":-9,"y":-27},{"x":-30,"y":19},{"x":63,"y":22},{"x":-56,"y":-10},{"x":-49,"y":21},{"x":-140,"y":163},{"x":-32,"y":143},{"x":-95,"y":174},{"x":-7,"y":25},{"x":39,"y":25},{"x":-22,"y":-14},{"x":-6,"y":11},{"x":8,"y":5},{"x":-15,"y":11},{"x":15,"y":8},{"x":27,"y":-25},{"x":-29,"y":27},{"x":-21,"y":-5},{"x":-22,"y":40},{"x":-16,"y":370},{"x":-51,"y":77},{"x":11,"y":28},{"x":-23,"y":-18},{"x":-19,"y":22},{"x":13,"y":16},{"x":42,"y":-20},{"x":-249,"y":159},{"x":-40,"y":95},{"x":-72,"y":74},{"x":7,"y":54},{"x":-38,"y":-29},{"x":-7,"y":14},{"x":14,"y":45},{"x":40,"y":-28},{"x":-10,"y":32},{"x":-42,"y":-1},{"x":-118,"y":79},{"x":-40,"y":108},{"x":22,"y":14},{"x":-23,"y":12},{"x":32,"y":-13},{"x":-41,"y":35}],"type":"coastline"},{"arc":[{"x":229423,"y":181177},{"x":-92,"y":-61},{"x":-11,"y":-121},{"x":-75,"y":-53},{"x":-3,"y":-77},{"x":-36,"y":-50},{"x":-85,"y":-46},{"x":-33,"y":-50},{"x":-46,"y":4},{"x":-34,"y":-78},{"x":-49,"y":-5},{"x":-79,"y":-70},{"x":-78,"y":-17},{"x":-31,"y":-32},{"x":-27,"y":-1},{"x":-96,"y":198},{"x":-85,"y":26},{"x":-84,"y":64},{"x":-60,"y":-21},{"x":-150,"y":102},{"x":-35,"y":-42},{"x":-124,"y":-16},{"x":-133,"y":84},{"x":-121,"y":25},{"x":-26,"y":34},{"x":-119,"y":-52},{"x":-62,"y":10},{"x":-38,"y":-22},{"x":-72,"y":23},{"x":-59,"y":-42}],"type":"area"},{"arc":[{"x":227480,"y":180891},{"x":42,"y":-168},{"x":-33,"y":-33},{"x":13,"y":-93},{"x":42,"y":-98},{"x":87,"y":-85},{"x":100,"y":-44},{"x":17,"y":-36},{"x":-30,"y":-39},{"x":18,"y":-126},{"x":-69,"y":4},{"x":-33,"y":-110},{"x":49,"y":-9},{"x":70,"y":-96},{"x":4,"y":-76},{"x":-42,"y":-108},{"x":141,"y":-98},{"x":12,"y":-85},{"x":-42,"y":-55},{"x":7,"y":-110},{"x":-37,"y":-79}],"type":"area"},{"arc":[{"x":227796,"y":179347},{"x":74,"y":-73},{"x":53,"y":-111},{"x":17,"y":-133},{"x":74,"y":-35},{"x":17,"y":-82},{"x":58,"y":-38},{"x":85,"y":-141},{"x":89,"y":82},{"x":115,"y":-73},{"x":-78,"y":-91},{"x":18,"y":-102},{"x":-27,"y":-44},{"x":-86,"y":-51},{"x":-62,"y":18},{"x":-107,"y":-46},{"x":34,"y":-164},{"x":-71,"y":-212},{"x":124,"y":-54},{"x":-62,"y":-136},{"x":49,"y":-336},{"x":-164,"y":-343}],"type":"area"},{"arc":[{"x":227946,"y":177182},{"x":37,"y":-36},{"x":81,"y":4},{"x":83,"y":-99},{"x":31,"y":16},{"x":56,"y":-24},{"x":-7,"y":-24},{"x":210,"y":-139},{"x":231,"y":-227},{"x":49,"y":-96},{"x":-13,"y":-52},{"x":27,"y":-67},{"x":87,"y":-112},{"x":-37,"y":-29},{"x":32,"y":-39},{"x":-4,"y":-54},{"x":-40,"y":91},{"x":24,"y":-91},{"x":44,"y":-63},{"x":-24,"y":-111},{"x":23,"y":-226},{"x":39,"y":-56},{"x":-20,"y":-88},{"x":18,"y":-29},{"x":27,"y":10}],"type":"coastline"},{"arc":[{"x":228900,"y":175641},{"x":55,"y":82},{"x":83,"y":8},{"x":88,"y":-26},{"x":14,"y":36},{"x":157,"y":46},{"x":27,"y":38},{"x":87,"y":-25},{"x":18,"y":-28},{"x":80,"y":-3},{"x":38,"y":96},{"x":42,"y":3},{"x":21,"y":83},{"x":169,"y":134},{"x":12,"y":51},{"x":-65,"y":72},{"x":-38,"y":165},{"x":68,"y":117},{"x":43,"y":14},{"x":66,"y":-23},{"x":89,"y":71},{"x":36,"y":67},{"x":-17,"y":153},{"x":36,"y":75},{"x":83,"y":2},{"x":86,"y":-34},{"x":24,"y":-47},{"x":62,"y":7},{"x":61,"y":-49},{"x":111,"y":37},{"x":15,"y":-109},{"x":103,"y":13},{"x":12,"y":-38},{"x":67,"y":-26}],"type":"area"},{"arc":[{"x":230633,"y":176603},{"x":12,"y":82},{"x":114,"y":45},{"x":17,"y":145},{"x":-48,"y":29},{"x":-35,"y":74},{"x":28,"y":75},{"x":147,"y":98},{"x":-7,"y":55},{"x":68,"y":18},{"x":63,"y":113},{"x":84,"y":-32},{"x":55,"y":9},{"x":43,"y":64},{"x":-9,"y":96},{"x":37,"y":-4},{"x":84,"y":-87},{"x":87,"y":18},{"x":24,"y":-65},{"x":110,"y":114},{"x":-4,"y":85},{"x":35,"y":68},{"x":-12,"y":137},{"x":84,"y":59},{"x":103,"y":29},{"x":-17,"y":146},{"x":57,"y":62},{"x":143,"y":67},{"x":37,"y":227},{"x":153,"y":246},{"x":1,"y":65},{"x":67,"y":49},{"x":29,"y":146}],"type":"area"},{"arc":[{"x":258091,"y":190169},{"x":-37,"y":47},{"x":28,"y":-40},{"x":-44,"y":-2},{"x":10,"y":31},{"x":-79,"y":54},{"x":-75,"y":-16},{"x":-3,"y":-24},{"x":0,"y":31},{"x":-3,"y":-39},{"x":-136,"y":-115},{"x":-23,"y":-277},{"x":73,"y":-11},{"x":24,"y":18},{"x":75,"y":144},{"x":190,"y":199}],"type":"coastline"},{"arc":[{"x":258144,"y":191193},{"x":-5,"y":15},{"x":-30,"y":4},{"x":-4,"y":14},{"x":-37,"y":16},{"x":27,"y":-15},{"x":-16,"y":-17},{"x":-36,"y":6},{"x":18,"y":18},{"x":-82,"y":-6},{"x":-69,"y":-34},{"x":37,"y":-331},{"x":-17,"y":-43},{"x":49,"y":-92},{"x":108,"y":172},{"x":-19,"y":46},{"x":47,"y":77},{"x":29,"y":170}],"type":"coastline"},{"arc":[{"x":256993,"y":197462},{"x":-17,"y":27},{"x":-118,"y":27},{"x":-5,"y":114},{"x":-107,"y":132},{"x":-61,"y":-14},{"x":-66,"y":-62},{"x":-63,"y":4},{"x":-44,"y":52},{"x":-36,"y":0},{"x":-46,"y":-75},{"x":-57,"y":53},{"x":-155,"y":31},{"x":-3,"y":-78},{"x":-122,"y":-223},{"x":-193,"y":90},{"x":-60,"y":-94},{"x":-32,"y":3},{"x":-45,"y":76},{"x":58,"y":80},{"x":-39,"y":66},{"x":-46,"y":56},{"x":-56,"y":-18},{"x":-19,"y":64},{"x":-82,"y":1},{"x":-27,"y":35},{"x":-79,"y":8},{"x":-30,"y":-138},{"x":-65,"y":-99}],"type":"area"},{"arc":[{"x":255378,"y":197580},{"x":79,"y":-82},{"x":-67,"y":-95},{"x":-130,"y":-9},{"x":-55,"y":-50},{"x":-5,"y":-138},{"x":-88,"y":-127},{"x":8,"y":-60},{"x":79,"y":-72},{"x":16,"y":-65},{"x":92,"y":2},{"x":17,"y":-250},{"x":31,"y":-62},{"x":50,"y":-25},{"x":33,"y":21},{"x":65,"y":-119},{"x":138,"y":-100},{"x":43,"y":-147},{"x":68,"y":-91},{"x":-32,"y":-101},{"x":74,"y":-140},{"x":63,"y":-17},{"x":35,"y":-117},{"x":38,"y":-279},{"x":-25,"y":-129},{"x":171,"y":-574},{"x":162,"y":-21},{"x":32,"y":-59},{"x":8,"y":-142},{"x":173,"y":-136},{"x":-24,"y":-75},{"x":85,"y":-46},{"x":94,"y":7},{"x":213,"y":-271},{"x":67,"y":-151}],"type":"area"},{"arc":[{"x":256886,"y":193860},{"x":202,"y":67},{"x":59,"y":41},{"x":45,"y":19},{"x":38,"y":-4},{"x":30,"y":-13},{"x":-7,"y":15},{"x":-48,"y":4},{"x":-50,"y":-18},{"x":-11,"y":12},{"x":21,"y":5},{"x":2,"y":28},{"x":23,"y":-13},{"x":-25,"y":51},{"x":38,"y":-53},{"x":14,"y":52},{"x":9,"y":-49},{"x":-3,"y":58},{"x":35,"y":23},{"x":19,"y":-79},{"x":-14,"y":87},{"x":202,"y":43},{"x":290,"y":276},{"x":215,"y":103}],"type":"coastline"},{"arc":[{"x":257970,"y":194515},{"x":-118,"y":266},{"x":-85,"y":23},{"x":-168,"y":130},{"x":-59,"y":14},{"x":-24,"y":56},{"x":12,"y":74},{"x":-45,"y":51},{"x":-33,"y":332},{"x":-61,"y":78},{"x":55,"y":70},{"x":-17,"y":43},{"x":79,"y":184},{"x":105,"y":17},{"x":17,"y":36},{"x":60,"y":11},{"x":26,"y":53},{"x":170,"y":-66},{"x":65,"y":99},{"x":23,"y":147},{"x":100,"y":152},{"x":4,"y":51},{"x":125,"y":165}],"type":"area"},{"arc":[{"x":258201,"y":196501},{"x":52,"y":79},{"x":-33,"y":21},{"x":3,"y":42},{"x":-61,"y":36},{"x":-44,"y":176},{"x":-57,"y":-4},{"x":-74,"y":37},{"x":-49,"y":-35},{"x":-27,"y":106},{"x":-126,"y":71},{"x":-30,"y":68},{"x":-58,"y":39},{"x":-83,"y":-9},{"x":-164,"y":73},{"x":-41,"y":-11},{"x":-40,"y":37},{"x":-169,"y":6},{"x":-71,"y":40},{"x":-95,"y":11},{"x":-40,"y":41},{"x":-1,"y":137}],"type":"area"},{"arc":[{"x":235045,"y":202140},{"x":-105,"y":94},{"x":-105,"y":17},{"x":-38,"y":94},{"x":-28,"y":-1},{"x":-66,"y":-391},{"x":-54,"y":14},{"x":-75,"y":-21},{"x":-117,"y":-107},{"x":-125,"y":-217},{"x":4,"y":-256},{"x":-98,"y":-54},{"x":-16,"y":-67},{"x":-38,"y":0},{"x":-52,"y":-96},{"x":-57,"y":3},{"x":-26,"y":-30},{"x":32,"y":-93},{"x":-32,"y":-60},{"x":29,"y":-62},{"x":40,"y":-21},{"x":-40,"y":-70},{"x":58,"y":-25},{"x":-56,"y":-60},{"x":-12,"y":-57},{"x":31,"y":-88},{"x":-79,"y":-34},{"x":-38,"y":60},{"x":-38,"y":-18},{"x":-51,"y":26},{"x":-67,"y":-39},{"x":-26,"y":11},{"x":-28,"y":-25},{"x":-15,"y":-119},{"x":-79,"y":-60},{"x":-60,"y":8},{"x":-18,"y":-49},{"x":-79,"y":-60},{"x":-144,"y":34},{"x":-49,"y":-45},{"x":-34,"y":51},{"x":-70,"y":-44},{"x":-92,"y":5},{"x":-27,"y":-53},{"x":-131,"y":-27},{"x":-104,"y":-140},{"x":-86,"y":-14},{"x":-19,"y":-82},{"x":-66,"y":-6},{"x":-8,"y":-72},{"x":-61,"y":-92},{"x":3,"y":-76},{"x":-51,"y":-60},{"x":-30,"y":5},{"x":33,"y":-111},{"x":-17,"y":-37},{"x":-50,"y":-20},{"x":15,"y":-74}],"type":"area"},{"arc":[{"x":232533,"y":199429},{"x":62,"y":-49},{"x":61,"y":-113},{"x":-6,"y":-28},{"x":12,"y":-20},{"x":-11,"y":20},{"x":5,"y":27},{"x":12,"y":-8},{"x":-3,"y":32},{"x":6,"y":-23},{"x":6,"y":6},{"x":12,"y":-7},{"x":-29,"y":-30},{"x":35,"y":40},{"x":35,"y":-5},{"x":122,"y":-131},{"x":148,"y":-281},{"x":103,"y":-398},{"x":27,"y":-542},{"x":24,"y":-61},{"x":8,"y":59},{"x":18,"y":-20},{"x":-19,"y":-24},{"x":30,"y":35},{"x":44,"y":-47},{"x":87,"y":-447},{"x":67,"y":-35},{"x":40,"y":-89},{"x":-4,"y":43},{"x":4,"y":-33},{"x":17,"y":21},{"x":59,"y":-31},{"x":123,"y":-158},{"x":82,"y":-191},{"x":163,"y":-153}],"type":"coastline"},{"arc":[{"x":233873,"y":196788},{"x":90,"y":126},{"x":122,"y":33},{"x":-4,"y":139},{"x":-63,"y":162},{"x":78,"y":12},{"x":56,"y":91},{"x":20,"y":137},{"x":106,"y":130}],"type":"admin"},{"arc":[{"x":234278,"y":197618},{"x":-141,"y":129},{"x":-21,"y":-51},{"x":-69,"y":-42},{"x":-31,"y":34},{"x":8,"y":36},{"x":-58,"y":86},{"x":38,"y":34},{"x":13,"y":71},{"x":-92,"y":112},{"x":-103,"y":198},{"x":-38,"y":13},{"x":8,"y":65},{"x":57,"y":-8},{"x":54,"y":164},{"x":83,"y":21},{"x":74,"y":145},{"x":165,"y":127},{"x":3,"y":117},{"x":51,"y":64},{"x":166,"y":58},{"x":29,"y":66},{"x":76,"y":8},{"x":33,"y":55},{"x":97,"y":31},{"x":-8,"y":61},{"x":89,"y":115},{"x":62,"y":20},{"x":23,"y":63},{"x":51,"y":40},{"x":91,"y":10},{"x":73,"y":147},{"x":10,"y":151},{"x":99,"y":27},{"x":-6,"y":37},{"x":-119,"y":54},{"x":-2,"y":73},{"x":91,"y":130},{"x":89,"y":40},{"x":5,"y":91},{"x":-87,"y":56},{"x":-12,"y":54},{"x":-50,"y":7},{"x":-13,"y":26},{"x":-55,"y":-9},{"x":28,"y":156},{"x":-76,"y":119},{"x":4,"y":81},{"x":53,"y":82},{"x":-71,"y":180},{"x":14,"y":61},{"x":66,"y":62},{"x":-4,"y":97},{"x":39,"y":80},{"x":-18,"y":80},{"x":38,"y":51},{"x":-42,"y":85},{"x":46,"y":151},{"x":-124,"y":275},{"x":-13,"y":110},{"x":94,"y":126}],"type":"area"},{"arc":[{"x":239903,"y":204791},{"x":-92,"y":41},{"x":-109,"y":194},{"x":-140,"y":-13},{"x":-42,"y":-83},{"x":-130,"y":-49},{"x":-15,"y":27},{"x":-131,"y":46},{"x":-21,"y":39},{"x":-110,"y":-11},{"x":-78,"y":79},{"x":0,"y":56},{"x":-137,"y":58},{"x":-352,"y":-227},{"x":-65,"y":76},{"x":-251,"y":71},{"x":-50,"y":156}],"type":"area"},{"arc":[{"x":238180,"y":205251},{"x":-68,"y":26},{"x":-30,"y":-15},{"x":-22,"y":-62},{"x":-105,"y":-85},{"x":9,"y":-158},{"x":-56,"y":-133},{"x":-147,"y":-123},{"x":-117,"y":-30},{"x":-46,"y":35},{"x":-235,"y":-129},{"x":-150,"y":15},{"x":-112,"y":-54},{"x":-99,"y":35}],"type":"area"},{"arc":[{"x":237002,"y":204573},{"x":-104,"y":-229},{"x":-38,"y":0},{"x":-37,"y":-42},{"x":-141,"y":-68}],"type":"admin"},{"arc":[{"x":236682,"y":204234},{"x":8,"y":-289},{"x":51,"y":-158},{"x":116,"y":-18},{"x":109,"y":-70},{"x":-7,"y":-66},{"x":86,"y":-123},{"x":57,"y":-168},{"x":117,"y":-197},{"x":117,"y":-24},{"x":36,"y":-49},{"x":57,"y":8},{"x":88,"y":-75},{"x":-34,"y":-195},{"x":-54,"y":-134},{"x":-67,"y":-30},{"x":-71,"y":-213},{"x":-32,"y":-37},{"x":-97,"y":20},{"x":-72,"y":-37},{"x":-9,"y":-65},{"x":-70,"y":-41},{"x":-38,"y":-130},{"x":22,"y":-59},{"x":-43,"y":-244},{"x":123,"y":-90},{"x":66,"y":-336},{"x":53,"y":-89},{"x":-43,"y":-144},{"x":31,"y":-32},{"x":-5,"y":-45},{"x":83,"y":-46},{"x":42,"y":9},{"x":45,"y":44},{"x":25,"y":-13},{"x":28,"y":39},{"x":157,"y":53},{"x":14,"y":29},{"x":157,"y":-13},{"x":41,"y":65},{"x":79,"y":13},{"x":49,"y":-34},{"x":76,"y":7},{"x":31,"y":-34},{"x":2,"y":-140},{"x":41,"y":-29},{"x":86,"y":-25},{"x":56,"y":17},{"x":91,"y":-53},{"x":56,"y":13},{"x":12,"y":35},{"x":56,"y":0}],"type":"area"},{"arc":[{"x":238404,"y":201041},{"x":64,"y":82},{"x":89,"y":54},{"x":12,"y":47},{"x":86,"y":12},{"x":100,"y":75},{"x":198,"y":-55},{"x":32,"y":23},{"x":16,"y":87},{"x":-61,"y":101},{"x":-4,"y":58},{"x":-80,"y":27},{"x":1,"y":55},{"x":-75,"y":26},{"x":-62,"y":80},{"x":72,"y":234},{"x":-32,"y":91},{"x":111,"y":122},{"x":-58,"y":61},{"x":10,"y":60},{"x":-63,"y":6},{"x":-9,"y":45},{"x":50,"y":87},{"x":25,"y":-6},{"x":43,"y":110},{"x":-74,"y":70},{"x":10,"y":40},{"x":-96,"y":27},{"x":24,"y":54},{"x":-21,"y":64},{"x":73,"y":54},{"x":9,"y":99},{"x":141,"y":86},{"x":9,"y":29},{"x":160,"y":-11},{"x":47,"y":16},{"x":29,"y":52},{"x":58,"y":7},{"x":176,"y":95},{"x":88,"y":193},{"x":-1,"y":82},{"x":165,"y":184},{"x":-5,"y":211},{"x":-49,"y":144},{"x":111,"y":123},{"x":5,"y":56},{"x":-43,"y":65},{"x":31,"y":132},{"x":44,"y":81},{"x":139,"y":97},{"x":65,"y":82}],"type":"admin"},{"arc":[{"x":239964,"y":204655},{"x":-61,"y":136}],"type":"admin"},{"arc":[{"x":182232,"y":182923},{"x":-48,"y":12},{"x":-2,"y":63},{"x":-83,"y":104},{"x":13,"y":89},{"x":-71,"y":76},{"x":6,"y":122},{"x":-77,"y":120},{"x":-15,"y":137},{"x":-51,"y":23},{"x":-73,"y":-12}],"type":"admin"},{"arc":[{"x":181831,"y":183657},{"x":-29,"y":-35},{"x":-74,"y":47},{"x":-138,"y":19},{"x":-164,"y":-119},{"x":-52,"y":8},{"x":-200,"y":281},{"x":-62,"y":173},{"x":-86,"y":-22},{"x":-94,"y":-132},{"x":-50,"y":-2},{"x":-232,"y":408},{"x":25,"y":157},{"x":-19,"y":155},{"x":-76,"y":48},{"x":-95,"y":-1},{"x":-24,"y":95},{"x":-39,"y":16},{"x":-19,"y":45},{"x":33,"y":63},{"x":-114,"y":158},{"x":152,"y":35},{"x":-14,"y":85},{"x":43,"y":82},{"x":-24,"y":20},{"x":8,"y":66},{"x":-71,"y":13},{"x":-42,"y":104},{"x":81,"y":114},{"x":32,"y":9},{"x":-78,"y":19},{"x":-34,"y":77},{"x":-135,"y":14},{"x":-26,"y":39}],"type":"area"},{"arc":[{"x":180214,"y":185696},{"x":-20,"y":33},{"x":-45,"y":-23},{"x":-14,"y":48},{"x":-38,"y":-40},{"x":14,"y":-32},{"x":-62,"y":3},{"x":-56,"y":46},{"x":-78,"y":-139},{"x":-88,"y":-12}],"type":"area"},{"arc":[{"x":179827,"y":185580},{"x":-133,"y":-30}],"type":"area"},{"arc":[{"x":179694,"y":185550},{"x":-1,"y":-98},{"x":48,"y":-60},{"x":4,"y":-142},{"x":-85,"y":-182},{"x":77,"y":-251},{"x":-47,"y":-47},{"x":-63,"y":36},{"x":-64,"y":-129},{"x":111,"y":1},{"x":-12,"y":-66},{"x":28,"y":-56},{"x":48,"y":-34},{"x":54,"y":3},{"x":-134,"y":-100},{"x":-24,"y":-45},{"x":1,"y":-136},{"x":47,"y":-41},{"x":-39,"y":-146},{"x":29,"y":-86},{"x":86,"y":-44},{"x":7,"y":-84},{"x":65,"y":16},{"x":75,"y":-56},{"x":26,"y":-55},{"x":-21,"y":-80},{"x":97,"y":-16},{"x":24,"y":-113},{"x":126,"y":-7},{"x":-43,"y":-57},{"x":8,"y":-36},{"x":95,"y":7},{"x":23,"y":38},{"x":63,"y":-24},{"x":2,"y":-51},{"x":72,"y":-97},{"x":-89,"y":-48},{"x":-44,"y":-66},{"x":31,"y":-173},{"x":-14,"y":-85},{"x":27,"y":-26},{"x":-45,"y":-17},{"x":-39,"y":-109},{"x":22,"y":-34},{"x":38,"y":9},{"x":22,"y":-75},{"x":68,"y":-80},{"x":-14,"y":-104},{"x":90,"y":-16},{"x":74,"y":89},{"x":24,"y":129},{"x":47,"y":33},{"x":63,"y":-73},{"x":0,"y":-204},{"x":85,"y":54},{"x":-11,"y":47},{"x":41,"y":-10},{"x":40,"y":23},{"x":57,"y":-46},{"x":75,"y":55},{"x":227,"y":-131},{"x":73,"y":-114},{"x":55,"y":-6},{"x":16,"y":-48},{"x":49,"y":-10}],"type":"area"},{"arc":[{"x":181345,"y":182276},{"x":103,"y":44},{"x":95,"y":111},{"x":49,"y":-38},{"x":211,"y":-34},{"x":124,"y":84},{"x":130,"y":23},{"x":47,"y":-14},{"x":42,"y":61}],"type":"admin"},{"arc":[{"x":182146,"y":182513},{"x":-17,"y":37},{"x":32,"y":27},{"x":-65,"y":56},{"x":88,"y":61},{"x":13,"y":47},{"x":115,"y":54},{"x":14,"y":64}],"type":"admin"},{"arc":[{"x":182326,"y":182859},{"x":-94,"y":64}],"type":"admin"},{"arc":[{"x":180127,"y":187113},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":180140,"y":187112},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":180075,"y":187241},{"x":-29,"y":11},{"x":-24,"y":-44},{"x":37,"y":-111},{"x":65,"y":18}],"type":"coastline"},{"arc":[{"x":180124,"y":187115},{"x":-4,"y":9}],"type":"admin"},{"arc":[{"x":180120,"y":187124},{"x":31,"y":62},{"x":-76,"y":55}],"type":"admin"},{"arc":[{"x":180490,"y":186406},{"x":-169,"y":-65},{"x":-28,"y":41},{"x":-43,"y":-16},{"x":-60,"y":48},{"x":-22,"y":266},{"x":-41,"y":135},{"x":22,"y":45},{"x":-35,"y":-8},{"x":-4,"y":46},{"x":-23,"y":-16},{"x":-17,"y":43},{"x":85,"y":130},{"x":-10,"y":29}],"type":"admin"},{"arc":[{"x":180145,"y":187084},{"x":-147,"y":-34},{"x":24,"y":2},{"x":4,"y":-35},{"x":-25,"y":21},{"x":37,"y":-211},{"x":-10,"y":-47},{"x":-39,"y":-12},{"x":-68,"y":508},{"x":-7,"y":-245},{"x":-435,"y":-288}],"type":"coastline"},{"arc":[{"x":179479,"y":186743},{"x":97,"y":-247},{"x":54,"y":14},{"x":-15,"y":-29},{"x":68,"y":-77},{"x":166,"y":-54},{"x":29,"y":-382},{"x":-119,"y":-31},{"x":68,"y":-357}],"type":"area"},{"arc":[{"x":180214,"y":185696},{"x":59,"y":54},{"x":-16,"y":47},{"x":96,"y":133},{"x":59,"y":24},{"x":38,"y":106},{"x":272,"y":32},{"x":20,"y":-40},{"x":45,"y":-12}],"type":"area"},{"arc":[{"x":180787,"y":186040},{"x":65,"y":-6},{"x":33,"y":76}],"type":"admin"},{"arc":[{"x":180885,"y":186110},{"x":-55,"y":36},{"x":16,"y":30},{"x":-78,"y":-38},{"x":-42,"y":26},{"x":-32,"y":-35},{"x":-112,"y":5},{"x":-105,"y":116},{"x":-1,"y":63},{"x":62,"y":60},{"x":-42,"y":-21},{"x":-6,"y":54}],"type":"admin"},{"arc":[{"x":179479,"y":186743},{"x":-489,"y":-279},{"x":-176,"y":-64},{"x":-34,"y":1},{"x":-1,"y":27},{"x":-5,"y":-21}],"type":"coastline"},{"arc":[{"x":178774,"y":186407},{"x":152,"y":-233},{"x":41,"y":-33},{"x":109,"y":-13},{"x":-3,"y":-26}],"type":"admin"},{"arc":[{"x":179073,"y":186102},{"x":21,"y":-138},{"x":121,"y":-128},{"x":125,"y":30},{"x":197,"y":-208},{"x":157,"y":-108}],"type":"area"},{"arc":[{"x":179073,"y":186102},{"x":-62,"y":-56},{"x":-77,"y":68},{"x":-51,"y":-6},{"x":41,"y":-247},{"x":-16,"y":-63},{"x":32,"y":3},{"x":14,"y":35},{"x":15,"y":-62},{"x":-17,"y":23},{"x":-44,"y":-4},{"x":2,"y":-50},{"x":61,"y":14},{"x":10,"y":-51},{"x":-33,"y":-290},{"x":96,"y":-34},{"x":-5,"y":-42},{"x":73,"y":41},{"x":43,"y":-28},{"x":6,"y":-93},{"x":156,"y":-260},{"x":22,"y":-113},{"x":-52,"y":-35},{"x":-11,"y":-46},{"x":-28,"y":17},{"x":-13,"y":-23},{"x":30,"y":-94},{"x":76,"y":-14},{"x":-4,"y":-72},{"x":-48,"y":-62},{"x":-68,"y":6},{"x":-88,"y":34},{"x":10,"y":52},{"x":-45,"y":40},{"x":-68,"y":-25},{"x":-17,"y":120},{"x":-54,"y":42},{"x":-17,"y":54},{"x":-40,"y":-69},{"x":16,"y":-34},{"x":-63,"y":-88},{"x":-64,"y":-10},{"x":-12,"y":-39}],"type":"admin"},{"arc":[{"x":178779,"y":184641},{"x":64,"y":-158},{"x":-35,"y":-207},{"x":51,"y":-29},{"x":-21,"y":-43}],"type":"admin"},{"arc":[{"x":178838,"y":184204},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178840,"y":184201},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":178841,"y":184199},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":178850,"y":184193},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":178856,"y":184190},{"x":4,"y":-12}],"type":"coastline"},{"arc":[{"x":178860,"y":184178},{"x":2,"y":-9}],"type":"admin"},{"arc":[{"x":178862,"y":184169},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":178867,"y":184163},{"x":9,"y":-10}],"type":"coastline"},{"arc":[{"x":178876,"y":184153},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":178878,"y":184151},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":178881,"y":184144},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":178892,"y":184145},{"x":8,"y":5}],"type":"coastline"},{"arc":[{"x":178900,"y":184150},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":178902,"y":184151},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":178906,"y":184153},{"x":5,"y":3}],"type":"admin"},{"arc":[{"x":178911,"y":184156},{"x":17,"y":2}],"type":"coastline"},{"arc":[{"x":178928,"y":184158},{"x":8,"y":3}],"type":"admin"},{"arc":[{"x":178936,"y":184161},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":178941,"y":184164},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":178949,"y":184160},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":178951,"y":184158},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178953,"y":184155},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":178959,"y":184148},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178963,"y":184146},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":178966,"y":184145},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":178968,"y":184141},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":178971,"y":184138},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":178975,"y":184135},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":178976,"y":184135},{"x":16,"y":-3}],"type":"coastline"},{"arc":[{"x":178992,"y":184132},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":178995,"y":184131},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":178997,"y":184130},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":179000,"y":184129},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":179014,"y":184128},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":179018,"y":184126},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":179028,"y":184124},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":179029,"y":184124},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":179029,"y":184128},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":179029,"y":184130},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":179028,"y":184137},{"x":0,"y":3}],"type":"admin"},{"arc":[{"x":179028,"y":184140},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":179031,"y":184144},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":179033,"y":184144},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179037,"y":184143},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179038,"y":184141},{"x":18,"y":-13}],"type":"coastline"},{"arc":[{"x":179056,"y":184128},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":179063,"y":184126},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":179068,"y":184127},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":179078,"y":184129},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":179083,"y":184135},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":179083,"y":184137},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":179079,"y":184140},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":179071,"y":184144},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":179064,"y":184149},{"x":-1,"y":3}],"type":"admin"},{"arc":[{"x":179063,"y":184152},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":179063,"y":184153},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":179068,"y":184152},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":179070,"y":184152},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":179074,"y":184150},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":179084,"y":184147},{"x":9,"y":-9}],"type":"coastline"},{"arc":[{"x":179093,"y":184138},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":179096,"y":184134},{"x":5,"y":-13}],"type":"coastline"},{"arc":[{"x":179101,"y":184121},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":179102,"y":184121},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":179103,"y":184121},{"x":8,"y":-8}],"type":"coastline"},{"arc":[{"x":179111,"y":184113},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":179112,"y":184110},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":179115,"y":184109},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":179117,"y":184109},{"x":13,"y":-7}],"type":"coastline"},{"arc":[{"x":179130,"y":184102},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179131,"y":184100},{"x":28,"y":-12}],"type":"coastline"},{"arc":[{"x":179159,"y":184088},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":179168,"y":184084},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":179171,"y":184084},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":179179,"y":184077},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":179186,"y":184078},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":179189,"y":184080},{"x":11,"y":5}],"type":"coastline"},{"arc":[{"x":179200,"y":184085},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":179202,"y":184086},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":179203,"y":184086},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":179206,"y":184085},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":179208,"y":184081},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179208,"y":184080},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":179210,"y":184080},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":179220,"y":184077},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":179222,"y":184075},{"x":13,"y":-11}],"type":"coastline"},{"arc":[{"x":179235,"y":184064},{"x":8,"y":-22}],"type":"coastline"},{"arc":[{"x":179243,"y":184042},{"x":10,"y":-20}],"type":"coastline"},{"arc":[{"x":179253,"y":184022},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":179253,"y":184020},{"x":0,"y":-15}],"type":"coastline"},{"arc":[{"x":179253,"y":184005},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":179256,"y":184004},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":179259,"y":184003},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":179259,"y":184000},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179260,"y":183998},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":179261,"y":183995},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":179264,"y":183994},{"x":14,"y":-10}],"type":"coastline"},{"arc":[{"x":179278,"y":183984},{"x":7,"y":-16}],"type":"coastline"},{"arc":[{"x":179285,"y":183968},{"x":2,"y":-17}],"type":"coastline"},{"arc":[{"x":179287,"y":183951},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":179289,"y":183948},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":179290,"y":183940},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":179290,"y":183934},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179291,"y":183933},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":179298,"y":183930},{"x":10,"y":-9}],"type":"coastline"},{"arc":[{"x":179308,"y":183921},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179312,"y":183920},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":179314,"y":183919},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":179314,"y":183918},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":179313,"y":183916},{"x":0,"y":-5}],"type":"admin"},{"arc":[{"x":179313,"y":183911},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":179313,"y":183909},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":179317,"y":183907},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179318,"y":183905},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":179320,"y":183901},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":179318,"y":183897},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179318,"y":183896},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":179311,"y":183890},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":179310,"y":183884},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179314,"y":183883},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":179315,"y":183883},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":179319,"y":183879},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":179323,"y":183871},{"x":3,"y":-6}],"type":"admin"},{"arc":[{"x":179326,"y":183865},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":179325,"y":183854},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":179325,"y":183843},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":179325,"y":183839},{"x":1,"y":-7}],"type":"admin"},{"arc":[{"x":179326,"y":183832},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":179325,"y":183829},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":179324,"y":183825},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179325,"y":183824},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":179327,"y":183823},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":179330,"y":183818},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":179332,"y":183814},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":179336,"y":183811},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":179334,"y":183808},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":179331,"y":183806},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":179328,"y":183802},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":179332,"y":183797},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":179335,"y":183793},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":179335,"y":183787},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179336,"y":183785},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":179338,"y":183783},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":179339,"y":183776},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":179340,"y":183768},{"x":5,"y":-2}],"type":"admin"},{"arc":[{"x":179345,"y":183766},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":179347,"y":183762},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":179347,"y":183760},{"x":3,"y":-11}],"type":"coastline"},{"arc":[{"x":179350,"y":183749},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":179350,"y":183746},{"x":6,"y":-32}],"type":"coastline"},{"arc":[{"x":179356,"y":183714},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":179365,"y":183708},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":179369,"y":183705},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179370,"y":183704},{"x":4,"y":-11}],"type":"coastline"},{"arc":[{"x":179374,"y":183693},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":179376,"y":183690},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":179384,"y":183683},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":179387,"y":183680},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":179394,"y":183672},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":179394,"y":183667},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":179394,"y":183661},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":179395,"y":183648},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":179395,"y":183646},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":179397,"y":183639},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":179401,"y":183629},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179402,"y":183627},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":179403,"y":183623},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":179402,"y":183615},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":179402,"y":183611},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":179398,"y":183608},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":179391,"y":183606},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":179385,"y":183609},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":179383,"y":183611},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":179381,"y":183611},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":179380,"y":183610},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179381,"y":183609},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":179386,"y":183604},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":179388,"y":183601},{"x":9,"y":-10}],"type":"coastline"},{"arc":[{"x":179397,"y":183591},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179398,"y":183590},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":179401,"y":183580},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":179405,"y":183574},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":179407,"y":183571},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":179413,"y":183564},{"x":6,"y":-20}],"type":"coastline"},{"arc":[{"x":179419,"y":183544},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":179420,"y":183531},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":179419,"y":183529},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":179419,"y":183524},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":179424,"y":183519},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":179428,"y":183517},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179429,"y":183516},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":179431,"y":183515},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":179432,"y":183516},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":179433,"y":183517},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":179434,"y":183519},{"x":2,"y":3}],"type":"admin"},{"arc":[{"x":179436,"y":183522},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":179439,"y":183526},{"x":4,"y":1}],"type":"admin"},{"arc":[{"x":179443,"y":183527},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":179450,"y":183533},{"x":6,"y":7}],"type":"coastline"},{"arc":[{"x":179456,"y":183540},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":179461,"y":183544},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":179474,"y":183546},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":179474,"y":183542},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":179475,"y":183538},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":179477,"y":183534},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":179478,"y":183525},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":179477,"y":183523},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":179476,"y":183520},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":179475,"y":183517},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":179478,"y":183514},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":179479,"y":183503},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":179479,"y":183501},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":179479,"y":183499},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":179478,"y":183492},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":179476,"y":183485},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":179475,"y":183480},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":179483,"y":183473},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":179490,"y":183466},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":179491,"y":183462},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":179496,"y":183458},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":179497,"y":183458},{"x":15,"y":-3}],"type":"coastline"},{"arc":[{"x":179512,"y":183455},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":179516,"y":183454},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":179521,"y":183448},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":179524,"y":183442},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":179525,"y":183439},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":179528,"y":183431},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":179531,"y":183427},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":179534,"y":183421},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":179538,"y":183415},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":179541,"y":183406},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179542,"y":183404},{"x":13,"y":-12}],"type":"coastline"},{"arc":[{"x":179555,"y":183392},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179556,"y":183391},{"x":8,"y":-8}],"type":"coastline"},{"arc":[{"x":179564,"y":183383},{"x":4,"y":1}],"type":"admin"},{"arc":[{"x":179568,"y":183384},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":179574,"y":183385},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":179579,"y":183382},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":179582,"y":183383},{"x":3,"y":1}],"type":"admin"},{"arc":[{"x":179585,"y":183384},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":179591,"y":183386},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":179596,"y":183390},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":179599,"y":183393},{"x":8,"y":5}],"type":"admin"},{"arc":[{"x":179607,"y":183398},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179611,"y":183397},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":179612,"y":183397},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":179610,"y":183392},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":179607,"y":183387},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":179607,"y":183379},{"x":0,"y":-5}],"type":"admin"},{"arc":[{"x":179607,"y":183374},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":179605,"y":183370},{"x":0,"y":-16}],"type":"coastline"},{"arc":[{"x":179605,"y":183354},{"x":0,"y":-8}],"type":"admin"},{"arc":[{"x":179605,"y":183346},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":179604,"y":183343},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":179603,"y":183341},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":179603,"y":183337},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":179602,"y":183332},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":179602,"y":183329},{"x":-3,"y":-14}],"type":"coastline"},{"arc":[{"x":179599,"y":183315},{"x":-6,"y":-12}],"type":"coastline"},{"arc":[{"x":179593,"y":183303},{"x":4,"y":-12}],"type":"coastline"},{"arc":[{"x":179597,"y":183291},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":179600,"y":183282},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":179600,"y":183278},{"x":-1,"y":-19}],"type":"coastline"},{"arc":[{"x":179599,"y":183259},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":179602,"y":183255},{"x":10,"y":-9}],"type":"coastline"},{"arc":[{"x":179612,"y":183246},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":179613,"y":183244},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179614,"y":183243},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":179612,"y":183233},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":179607,"y":183224},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":179607,"y":183218},{"x":7,"y":-19}],"type":"coastline"},{"arc":[{"x":179614,"y":183199},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":179613,"y":183190},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":179613,"y":183185},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179613,"y":183184},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":179616,"y":183178},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":179627,"y":183182},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":179634,"y":183182},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":179637,"y":183181},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":179640,"y":183181},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":179648,"y":183181},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":179654,"y":183187},{"x":5,"y":2}],"type":"admin"},{"arc":[{"x":179659,"y":183189},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":179664,"y":183190},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":179667,"y":183190},{"x":3,"y":3}],"type":"admin"},{"arc":[{"x":179670,"y":183193},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":179673,"y":183199},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":179673,"y":183205},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":179673,"y":183207},{"x":-3,"y":16}],"type":"coastline"},{"arc":[{"x":179670,"y":183223},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":179674,"y":183229},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":179679,"y":183227},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":179680,"y":183227},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":179684,"y":183224},{"x":8,"y":-8}],"type":"coastline"},{"arc":[{"x":179692,"y":183216},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":179695,"y":183207},{"x":5,"y":-6}],"type":"admin"},{"arc":[{"x":179700,"y":183201},{"x":8,"y":-8}],"type":"coastline"},{"arc":[{"x":179708,"y":183193},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":179711,"y":183185},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":179715,"y":183179},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":179719,"y":183175},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":179721,"y":183173},{"x":10,"y":-20}],"type":"coastline"},{"arc":[{"x":179731,"y":183153},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":179732,"y":183145},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179733,"y":183143},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":179735,"y":183141},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179736,"y":183140},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":179737,"y":183139},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":179737,"y":183137},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":179740,"y":183131},{"x":3,"y":-6}],"type":"admin"},{"arc":[{"x":179743,"y":183125},{"x":7,"y":-13}],"type":"coastline"},{"arc":[{"x":179750,"y":183112},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":179753,"y":183109},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":179754,"y":183105},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179755,"y":183104},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179759,"y":183103},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":179764,"y":183098},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":179770,"y":183089},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":179773,"y":183084},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":179774,"y":183083},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":179775,"y":183079},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":179776,"y":183076},{"x":2,"y":-5}],"type":"admin"},{"arc":[{"x":179778,"y":183071},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":179784,"y":183066},{"x":5,"y":-18}],"type":"coastline"},{"arc":[{"x":179789,"y":183048},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":179794,"y":183036},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179794,"y":183035},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":179798,"y":183030},{"x":7,"y":-8}],"type":"admin"},{"arc":[{"x":179805,"y":183022},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":179810,"y":183017},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":179813,"y":183015},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179814,"y":183014},{"x":7,"y":-10}],"type":"coastline"},{"arc":[{"x":179821,"y":183004},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":179823,"y":183001},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":179827,"y":182993},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":179828,"y":182988},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":179830,"y":182982},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":179836,"y":182973},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":179839,"y":182970},{"x":2,"y":-12}],"type":"coastline"},{"arc":[{"x":179841,"y":182958},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":179840,"y":182953},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":179840,"y":182945},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":179841,"y":182938},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":179841,"y":182937},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179842,"y":182935},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":179843,"y":182928},{"x":0,"y":-13}],"type":"admin"},{"arc":[{"x":179843,"y":182915},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":179844,"y":182909},{"x":0,"y":-5}],"type":"admin"},{"arc":[{"x":179844,"y":182904},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":179844,"y":182895},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":179843,"y":182884},{"x":4,"y":-7}],"type":"admin"},{"arc":[{"x":179847,"y":182877},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":179852,"y":182871},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":179855,"y":182869},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":179857,"y":182862},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":179856,"y":182856},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":179856,"y":182851},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":179861,"y":182843},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":179865,"y":182838},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":179865,"y":182836},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":179869,"y":182828},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":179870,"y":182828},{"x":8,"y":-11}],"type":"coastline"},{"arc":[{"x":179878,"y":182817},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":179877,"y":182814},{"x":-4,"y":-13}],"type":"coastline"},{"arc":[{"x":179873,"y":182801},{"x":-1,"y":-6}],"type":"admin"},{"arc":[{"x":179872,"y":182795},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":179875,"y":182787},{"x":48,"y":-41}],"type":"coastline"},{"arc":[{"x":179923,"y":182746},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":179925,"y":182742},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":179928,"y":182737},{"x":-4,"y":-13}],"type":"coastline"},{"arc":[{"x":179924,"y":182724},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":179916,"y":182717},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":179908,"y":182711},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":179907,"y":182690},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":179907,"y":182686},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":179907,"y":182684},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":179907,"y":182681},{"x":11,"y":-37}],"type":"coastline"},{"arc":[{"x":179918,"y":182644},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":179917,"y":182640},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":179917,"y":182626},{"x":3,"y":-14}],"type":"admin"},{"arc":[{"x":179920,"y":182612},{"x":-2,"y":-22}],"type":"coastline"},{"arc":[{"x":179918,"y":182590},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":179913,"y":182579},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":179912,"y":182574},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":179912,"y":182570},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":179913,"y":182557},{"x":-1,"y":-8}],"type":"admin"},{"arc":[{"x":179912,"y":182549},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":179913,"y":182539},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179913,"y":182538},{"x":-4,"y":-17}],"type":"coastline"},{"arc":[{"x":179909,"y":182521},{"x":-7,"y":-20}],"type":"coastline"},{"arc":[{"x":179902,"y":182501},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179902,"y":182500},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":179911,"y":182496},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":179913,"y":182492},{"x":-3,"y":-18}],"type":"coastline"},{"arc":[{"x":179910,"y":182474},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":179910,"y":182468},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":179909,"y":182460},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":179911,"y":182457},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":179918,"y":182446},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":179916,"y":182438},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":179916,"y":182431},{"x":5,"y":-11}],"type":"coastline"},{"arc":[{"x":179921,"y":182420},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":179927,"y":182415},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":179928,"y":182408},{"x":4,"y":-7}],"type":"admin"},{"arc":[{"x":179932,"y":182401},{"x":1,"y":-20}],"type":"coastline"},{"arc":[{"x":179933,"y":182381},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":179940,"y":182373},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":179941,"y":182368},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179941,"y":182367},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":179940,"y":182358},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":179941,"y":182354},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":179942,"y":182349},{"x":-7,"y":-11}],"type":"coastline"},{"arc":[{"x":179935,"y":182338},{"x":4,"y":-21}],"type":"coastline"},{"arc":[{"x":179939,"y":182317},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":179937,"y":182311},{"x":9,"y":-15}],"type":"coastline"},{"arc":[{"x":179946,"y":182296},{"x":1,"y":-5}],"type":"admin"},{"arc":[{"x":179947,"y":182291},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":179946,"y":182285},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179947,"y":182283},{"x":7,"y":-10}],"type":"coastline"},{"arc":[{"x":179954,"y":182273},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":179957,"y":182271},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":179955,"y":182264},{"x":-6,"y":-39}],"type":"coastline"},{"arc":[{"x":179949,"y":182225},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":179949,"y":182221},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":179946,"y":182217},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":179945,"y":182217},{"x":-9,"y":-27}],"type":"coastline"},{"arc":[{"x":179936,"y":182190},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":179935,"y":182189},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":179934,"y":182182},{"x":-14,"y":-17}],"type":"coastline"},{"arc":[{"x":179920,"y":182165},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":179918,"y":182163},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":179914,"y":182153},{"x":-6,"y":-4}],"type":"admin"},{"arc":[{"x":179908,"y":182149},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":179902,"y":182144},{"x":-8,"y":-5}],"type":"coastline"},{"arc":[{"x":179894,"y":182139},{"x":-10,"y":-10}],"type":"coastline"},{"arc":[{"x":179884,"y":182129},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":179879,"y":182124},{"x":1,"y":-8}],"type":"admin"},{"arc":[{"x":179880,"y":182116},{"x":7,"y":-19}],"type":"coastline"},{"arc":[{"x":179887,"y":182097},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":179890,"y":182088},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":179892,"y":182083},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":179899,"y":182072},{"x":2,"y":-6}],"type":"admin"},{"arc":[{"x":179901,"y":182066},{"x":7,"y":-13}],"type":"coastline"},{"arc":[{"x":179908,"y":182053},{"x":2,"y":-7}],"type":"admin"},{"arc":[{"x":179910,"y":182046},{"x":-7,"y":-15}],"type":"coastline"},{"arc":[{"x":179903,"y":182031},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":179903,"y":182028},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":179904,"y":182018},{"x":-10,"y":-10}],"type":"coastline"},{"arc":[{"x":179894,"y":182008},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":179892,"y":182006},{"x":-10,"y":-7}],"type":"coastline"},{"arc":[{"x":179882,"y":181999},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":179881,"y":181999},{"x":-20,"y":-14}],"type":"coastline"},{"arc":[{"x":179861,"y":181985},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":179858,"y":181979},{"x":2,"y":-17}],"type":"coastline"},{"arc":[{"x":179860,"y":181962},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":179860,"y":181955},{"x":-3,"y":-21}],"type":"admin"},{"arc":[{"x":179857,"y":181934},{"x":1,"y":-34}],"type":"coastline"},{"arc":[{"x":179858,"y":181900},{"x":-1,"y":-20}],"type":"coastline"},{"arc":[{"x":179857,"y":181880},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":179861,"y":181870},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":179869,"y":181867},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":179875,"y":181865},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":179879,"y":181863},{"x":-3,"y":-27}],"type":"coastline"},{"arc":[{"x":179876,"y":181836},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":179868,"y":181829},{"x":-9,"y":-12}],"type":"coastline"},{"arc":[{"x":179859,"y":181817},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":179859,"y":181814},{"x":2,"y":-20}],"type":"coastline"},{"arc":[{"x":179861,"y":181794},{"x":1,"y":-20}],"type":"admin"},{"arc":[{"x":179862,"y":181774},{"x":-2,"y":-18}],"type":"coastline"},{"arc":[{"x":179860,"y":181756},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":179860,"y":181755},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":179855,"y":181744},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":179856,"y":181736},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":179857,"y":181732},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":179856,"y":181725},{"x":-4,"y":-27}],"type":"coastline"},{"arc":[{"x":179852,"y":181698},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":179852,"y":181695},{"x":-5,"y":-17}],"type":"coastline"},{"arc":[{"x":179847,"y":181678},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":179846,"y":181676},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":179841,"y":181667},{"x":-10,"y":-5}],"type":"coastline"},{"arc":[{"x":179831,"y":181662},{"x":-11,"y":-6}],"type":"coastline"},{"arc":[{"x":179820,"y":181656},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":179813,"y":181648},{"x":-8,"y":-9}],"type":"coastline"},{"arc":[{"x":179805,"y":181639},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":179804,"y":181632},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179805,"y":181630},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":179812,"y":181622},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":179813,"y":181619},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":179814,"y":181610},{"x":0,"y":-12}],"type":"coastline"},{"arc":[{"x":179814,"y":181598},{"x":0,"y":-6}],"type":"admin"},{"arc":[{"x":179814,"y":181592},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":179817,"y":181586},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":179819,"y":181578},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":179819,"y":181575},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":179817,"y":181565},{"x":-9,"y":-14}],"type":"coastline"},{"arc":[{"x":179808,"y":181551},{"x":-6,"y":-4}],"type":"admin"},{"arc":[{"x":179802,"y":181547},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":179801,"y":181541},{"x":13,"y":-24}],"type":"coastline"},{"arc":[{"x":179814,"y":181517},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":179816,"y":181515},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":179815,"y":181510},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":179816,"y":181508},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":179816,"y":181505},{"x":-2,"y":-12}],"type":"coastline"},{"arc":[{"x":179814,"y":181493},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179815,"y":181491},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":179817,"y":181486},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":179819,"y":181483},{"x":-5,"y":-6}],"type":"admin"},{"arc":[{"x":179814,"y":181477},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":179809,"y":181468},{"x":-6,"y":-18}],"type":"coastline"},{"arc":[{"x":179803,"y":181450},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":179801,"y":181442},{"x":1,"y":-14}],"type":"admin"},{"arc":[{"x":179802,"y":181428},{"x":-24,"y":-25}],"type":"coastline"},{"arc":[{"x":179778,"y":181403},{"x":-14,"y":-5}],"type":"admin"},{"arc":[{"x":179764,"y":181398},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":179758,"y":181393},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":179754,"y":181385},{"x":0,"y":-19}],"type":"coastline"},{"arc":[{"x":179754,"y":181366},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":179755,"y":181364},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":179757,"y":181357},{"x":7,"y":-19}],"type":"admin"},{"arc":[{"x":179764,"y":181338},{"x":57,"y":-32},{"x":51,"y":35},{"x":107,"y":-17},{"x":33,"y":19},{"x":34,"y":153},{"x":109,"y":94},{"x":124,"y":-49},{"x":123,"y":4},{"x":27,"y":97},{"x":120,"y":25},{"x":-60,"y":165},{"x":85,"y":32},{"x":56,"y":65},{"x":24,"y":-12},{"x":32,"y":22},{"x":96,"y":-58},{"x":215,"y":-35}],"type":"admin"},{"arc":[{"x":180997,"y":181846},{"x":130,"y":79},{"x":54,"y":169},{"x":155,"y":72},{"x":9,"y":110}],"type":"admin"},{"arc":[{"x":181153,"y":185379},{"x":-42,"y":122},{"x":-41,"y":39},{"x":-56,"y":7},{"x":1,"y":42},{"x":-47,"y":1},{"x":-76,"y":117},{"x":-7,"y":59},{"x":-84,"y":78},{"x":31,"y":88},{"x":-45,"y":28},{"x":0,"y":80}],"type":"admin"},{"arc":[{"x":181831,"y":183657},{"x":18,"y":61},{"x":87,"y":83},{"x":114,"y":37},{"x":-4,"y":120},{"x":-99,"y":60},{"x":-26,"y":67},{"x":-45,"y":9},{"x":-45,"y":55},{"x":-45,"y":-9},{"x":-8,"y":113},{"x":-61,"y":78},{"x":-29,"y":132},{"x":-53,"y":47},{"x":19,"y":48},{"x":-89,"y":131},{"x":-17,"y":112},{"x":-107,"y":65},{"x":-31,"y":-7},{"x":-29,"y":74},{"x":-63,"y":52},{"x":-78,"y":16},{"x":-79,"y":-44},{"x":-33,"y":130},{"x":-44,"y":-39},{"x":-26,"y":26},{"x":-16,"y":-53},{"x":-5,"y":39},{"x":-75,"y":18},{"x":0,"y":67},{"x":149,"y":61},{"x":42,"y":173}],"type":"admin"},{"arc":[{"x":186476,"y":188417},{"x":-54,"y":9},{"x":-33,"y":-29},{"x":-134,"y":-25},{"x":-25,"y":14},{"x":-27,"y":-25},{"x":-149,"y":21},{"x":-42,"y":11},{"x":-46,"y":91},{"x":-120,"y":-39},{"x":-19,"y":65},{"x":-20,"y":-142},{"x":-61,"y":-53},{"x":7,"y":-82},{"x":61,"y":-67},{"x":-4,"y":-81},{"x":-23,"y":15},{"x":-209,"y":-453},{"x":-152,"y":-80},{"x":-39,"y":4},{"x":-82,"y":-117},{"x":-43,"y":17},{"x":-23,"y":-15},{"x":-30,"y":-58},{"x":13,"y":-35},{"x":-50,"y":63},{"x":-30,"y":-5},{"x":-36,"y":56},{"x":7,"y":75},{"x":-51,"y":43},{"x":-91,"y":-10},{"x":-82,"y":62},{"x":-39,"y":-13},{"x":-25,"y":25},{"x":-36,"y":-36},{"x":-50,"y":25},{"x":-59,"y":123}],"type":"area"},{"arc":[{"x":184680,"y":187771},{"x":-8,"y":-44},{"x":-138,"y":-73},{"x":33,"y":-89},{"x":-59,"y":-203},{"x":47,"y":-377},{"x":-35,"y":-33},{"x":14,"y":-85},{"x":38,"y":-13},{"x":113,"y":-147},{"x":76,"y":-16},{"x":23,"y":46},{"x":62,"y":4},{"x":196,"y":-287},{"x":47,"y":0},{"x":51,"y":58},{"x":30,"y":-35},{"x":154,"y":3},{"x":54,"y":-57},{"x":27,"y":39},{"x":82,"y":-39},{"x":46,"y":-156},{"x":115,"y":-89},{"x":-4,"y":-36},{"x":56,"y":-76},{"x":-30,"y":-135},{"x":60,"y":-69},{"x":-3,"y":-93},{"x":48,"y":-57},{"x":-59,"y":-74},{"x":2,"y":-49},{"x":150,"y":-246},{"x":-45,"y":-105},{"x":2,"y":-167},{"x":182,"y":-195},{"x":64,"y":-119},{"x":70,"y":-26},{"x":65,"y":-90},{"x":32,"y":-7},{"x":67,"y":-262},{"x":-14,"y":-36},{"x":-73,"y":0},{"x":60,"y":-71},{"x":31,"y":-95},{"x":56,"y":-1},{"x":71,"y":-96},{"x":157,"y":102},{"x":41,"y":62},{"x":27,"y":-34},{"x":207,"y":3},{"x":120,"y":51},{"x":61,"y":-41},{"x":80,"y":74},{"x":48,"y":-48},{"x":-1,"y":-63},{"x":58,"y":-14},{"x":84,"y":30},{"x":70,"y":-12},{"x":70,"y":19},{"x":75,"y":-16},{"x":23,"y":-46},{"x":122,"y":63},{"x":11,"y":-29},{"x":31,"y":12},{"x":36,"y":-31},{"x":29,"y":7},{"x":116,"y":-94},{"x":57,"y":10},{"x":70,"y":-79},{"x":5,"y":-61},{"x":41,"y":-46},{"x":44,"y":-4},{"x":19,"y":-54},{"x":48,"y":-15},{"x":33,"y":-53}],"type":"area"},{"arc":[{"x":188218,"y":183766},{"x":36,"y":44},{"x":46,"y":2},{"x":11,"y":58},{"x":66,"y":52},{"x":58,"y":8},{"x":35,"y":42},{"x":36,"y":-8},{"x":67,"y":45},{"x":101,"y":149},{"x":23,"y":107}],"type":"admin"},{"arc":[{"x":188697,"y":184265},{"x":-2,"y":186}],"type":"admin"},{"arc":[{"x":188695,"y":184451},{"x":2,"y":88},{"x":73,"y":121},{"x":-27,"y":69},{"x":34,"y":109},{"x":-6,"y":138},{"x":-83,"y":138},{"x":-92,"y":35},{"x":-88,"y":146},{"x":-25,"y":99},{"x":-170,"y":173},{"x":18,"y":218},{"x":-23,"y":80},{"x":-87,"y":26},{"x":-2,"y":23},{"x":-46,"y":-6},{"x":-31,"y":79},{"x":50,"y":2},{"x":39,"y":43},{"x":-12,"y":50},{"x":-31,"y":-7},{"x":-34,"y":38},{"x":11,"y":56},{"x":-77,"y":76},{"x":-25,"y":111},{"x":-167,"y":134},{"x":-54,"y":18},{"x":-34,"y":-20},{"x":-32,"y":71},{"x":-69,"y":72},{"x":-15,"y":-21},{"x":-35,"y":21},{"x":-22,"y":55},{"x":80,"y":65},{"x":12,"y":50},{"x":-36,"y":51},{"x":97,"y":154},{"x":-67,"y":18},{"x":30,"y":73},{"x":-70,"y":31},{"x":-16,"y":49},{"x":-1,"y":64},{"x":85,"y":87},{"x":-20,"y":20},{"x":27,"y":79},{"x":-56,"y":138},{"x":52,"y":144},{"x":55,"y":48},{"x":-39,"y":96},{"x":-52,"y":-2},{"x":-40,"y":51},{"x":40,"y":113},{"x":-40,"y":222},{"x":-105,"y":65},{"x":-168,"y":5},{"x":-242,"y":-220},{"x":-22,"y":-50},{"x":38,"y":-76},{"x":-2,"y":-73},{"x":-93,"y":-34},{"x":-29,"y":24},{"x":-72,"y":0},{"x":33,"y":37},{"x":-35,"y":80},{"x":48,"y":49},{"x":-56,"y":51},{"x":-67,"y":-25},{"x":-8,"y":49},{"x":-40,"y":18},{"x":20,"y":101},{"x":-30,"y":27},{"x":-270,"y":-40},{"x":-78,"y":79},{"x":18,"y":48},{"x":-40,"y":65}],"type":"admin"},{"arc":[{"x":184680,"y":187771},{"x":39,"y":166},{"x":-183,"y":-22},{"x":-6,"y":47},{"x":-59,"y":27},{"x":-19,"y":92},{"x":-160,"y":145},{"x":-27,"y":126},{"x":-121,"y":113}],"type":"area"},{"arc":[{"x":184144,"y":188465},{"x":67,"y":-205},{"x":-123,"y":-105},{"x":-94,"y":-14},{"x":-68,"y":-52},{"x":54,"y":-84},{"x":49,"y":-27},{"x":14,"y":-65},{"x":-14,"y":-51},{"x":-56,"y":-36},{"x":-23,"y":-124},{"x":-38,"y":-3},{"x":-35,"y":-56},{"x":-132,"y":22},{"x":-65,"y":152},{"x":-21,"y":-12},{"x":-16,"y":29},{"x":-31,"y":-14},{"x":-5,"y":-67}],"type":"admin"},{"arc":[{"x":183607,"y":187753},{"x":100,"y":-163},{"x":-36,"y":-178},{"x":67,"y":-6},{"x":20,"y":-92},{"x":74,"y":21},{"x":1,"y":-54},{"x":39,"y":-1},{"x":2,"y":31},{"x":161,"y":10},{"x":7,"y":-35},{"x":-19,"y":-195},{"x":51,"y":-168},{"x":-48,"y":-14},{"x":-2,"y":-61},{"x":-43,"y":6},{"x":-19,"y":-28},{"x":-5,"y":72},{"x":36,"y":12},{"x":-7,"y":35},{"x":-244,"y":-10},{"x":92,"y":-100},{"x":20,"y":-71},{"x":-94,"y":-21},{"x":6,"y":-29},{"x":-80,"y":36},{"x":-158,"y":291},{"x":-47,"y":-21},{"x":7,"y":-30},{"x":-44,"y":24},{"x":-36,"y":-26},{"x":-45,"y":24},{"x":-2,"y":52},{"x":-71,"y":-26},{"x":-42,"y":29},{"x":25,"y":196},{"x":46,"y":51},{"x":-67,"y":69},{"x":-3,"y":132},{"x":30,"y":63},{"x":-61,"y":45},{"x":-37,"y":186},{"x":-24,"y":3},{"x":-26,"y":-77},{"x":-33,"y":5},{"x":-9,"y":86},{"x":-90,"y":28},{"x":-8,"y":81},{"x":-54,"y":57},{"x":-24,"y":12},{"x":-37,"y":-21},{"x":-71,"y":109},{"x":-74,"y":6},{"x":-42,"y":35},{"x":-208,"y":-37},{"x":-90,"y":-154},{"x":-94,"y":-77},{"x":-57,"y":46},{"x":-38,"y":-6},{"x":-17,"y":33}],"type":"admin"},{"arc":[{"x":182185,"y":187938},{"x":-17,"y":-89},{"x":26,"y":-10},{"x":-25,"y":-20},{"x":34,"y":-18},{"x":10,"y":-104},{"x":49,"y":-80},{"x":-53,"y":-198},{"x":-52,"y":-2}],"type":"admin"},{"arc":[{"x":182157,"y":187417},{"x":58,"y":-260},{"x":-15,"y":-98},{"x":99,"y":54},{"x":16,"y":33},{"x":58,"y":-7},{"x":48,"y":27},{"x":33,"y":-15},{"x":48,"y":-120},{"x":111,"y":-77},{"x":-56,"y":-59},{"x":5,"y":-32},{"x":66,"y":-60},{"x":171,"y":-34},{"x":148,"y":-209},{"x":23,"y":-214},{"x":-93,"y":-82},{"x":-61,"y":-15},{"x":-45,"y":16}],"type":"admin"},{"arc":[{"x":182771,"y":186265},{"x":-48,"y":-71},{"x":66,"y":-55},{"x":-55,"y":-40},{"x":35,"y":-160},{"x":81,"y":-136},{"x":24,"y":11},{"x":86,"y":-105},{"x":53,"y":-28},{"x":38,"y":9},{"x":17,"y":-30}],"type":"admin"},{"arc":[{"x":183068,"y":185660},{"x":31,"y":-31},{"x":53,"y":12},{"x":119,"y":-31},{"x":48,"y":24}],"type":"admin"},{"arc":[{"x":183319,"y":185634},{"x":-22,"y":55},{"x":43,"y":-18},{"x":47,"y":51},{"x":208,"y":12},{"x":18,"y":22},{"x":59,"y":-59},{"x":-11,"y":96},{"x":52,"y":40},{"x":53,"y":-21},{"x":85,"y":-184},{"x":0,"y":-58},{"x":54,"y":-26},{"x":1,"y":-27},{"x":86,"y":-2},{"x":60,"y":-34},{"x":101,"y":64},{"x":166,"y":-91},{"x":4,"y":-69},{"x":66,"y":-23},{"x":157,"y":-143},{"x":100,"y":-174},{"x":206,"y":-161},{"x":51,"y":-90},{"x":121,"y":-90},{"x":94,"y":-136},{"x":202,"y":-169},{"x":-70,"y":-50},{"x":4,"y":-139},{"x":55,"y":-70},{"x":72,"y":-26},{"x":48,"y":-122},{"x":86,"y":-23},{"x":17,"y":-53},{"x":-16,"y":-129},{"x":-80,"y":-9},{"x":12,"y":-58},{"x":-30,"y":-9},{"x":24,"y":-221},{"x":-37,"y":-40},{"x":-69,"y":1},{"x":-68,"y":-141},{"x":29,"y":-45},{"x":117,"y":-9},{"x":15,"y":-75},{"x":-51,"y":-105},{"x":-82,"y":-51},{"x":39,"y":-97},{"x":-14,"y":-24}],"type":"admin"},{"arc":[{"x":185321,"y":182904},{"x":64,"y":-34},{"x":42,"y":30},{"x":50,"y":-175},{"x":64,"y":25},{"x":158,"y":-22},{"x":119,"y":137},{"x":72,"y":19},{"x":29,"y":-18},{"x":107,"y":114},{"x":175,"y":38},{"x":49,"y":86},{"x":59,"y":32},{"x":76,"y":-45},{"x":24,"y":-50},{"x":-44,"y":-106},{"x":44,"y":-121},{"x":56,"y":-30},{"x":24,"y":-92},{"x":66,"y":-4},{"x":38,"y":-43},{"x":98,"y":-1},{"x":33,"y":-33},{"x":82,"y":21},{"x":30,"y":-27},{"x":79,"y":45},{"x":100,"y":-6},{"x":32,"y":-61},{"x":104,"y":-23},{"x":81,"y":-178},{"x":71,"y":-75},{"x":-10,"y":-74},{"x":147,"y":-58},{"x":38,"y":-139},{"x":116,"y":-14},{"x":66,"y":27},{"x":60,"y":65},{"x":55,"y":-21},{"x":49,"y":16}],"type":"admin"},{"arc":[{"x":187824,"y":182109},{"x":-81,"y":61},{"x":-84,"y":13},{"x":-40,"y":80},{"x":22,"y":80},{"x":83,"y":105},{"x":-16,"y":59},{"x":115,"y":49},{"x":-52,"y":77},{"x":20,"y":97},{"x":73,"y":24},{"x":19,"y":42},{"x":-47,"y":75},{"x":-11,"y":95},{"x":-79,"y":88},{"x":70,"y":67},{"x":5,"y":94},{"x":33,"y":-8},{"x":70,"y":184},{"x":82,"y":20},{"x":26,"y":43},{"x":97,"y":31},{"x":54,"y":56},{"x":19,"y":79},{"x":60,"y":74},{"x":-41,"y":31},{"x":-3,"y":41}],"type":"admin"},{"arc":[{"x":182825,"y":184603},{"x":-122,"y":-21},{"x":-122,"y":87},{"x":-24,"y":112},{"x":18,"y":111},{"x":-65,"y":38},{"x":-44,"y":191},{"x":-56,"y":6},{"x":-29,"y":36},{"x":-71,"y":164},{"x":27,"y":40},{"x":-48,"y":89},{"x":26,"y":82},{"x":-133,"y":166},{"x":24,"y":134},{"x":59,"y":-6},{"x":33,"y":-30},{"x":61,"y":101},{"x":41,"y":6},{"x":17,"y":-34},{"x":47,"y":105},{"x":33,"y":1},{"x":-45,"y":195},{"x":47,"y":91},{"x":-40,"y":115}],"type":"area"},{"arc":[{"x":182459,"y":186382},{"x":-84,"y":30},{"x":-42,"y":-14},{"x":-112,"y":55},{"x":1,"y":44},{"x":-47,"y":26},{"x":22,"y":48},{"x":-44,"y":32},{"x":-106,"y":-120},{"x":-81,"y":41},{"x":-152,"y":-1},{"x":-15,"y":-28},{"x":-72,"y":-3},{"x":-11,"y":-25},{"x":-54,"y":-1},{"x":-67,"y":-46},{"x":-73,"y":49},{"x":-68,"y":-23},{"x":-39,"y":51},{"x":8,"y":52},{"x":-52,"y":28},{"x":2,"y":41},{"x":-74,"y":-29}],"type":"area"},{"arc":[{"x":181299,"y":186589},{"x":-8,"y":-41},{"x":-106,"y":-3},{"x":-76,"y":-107},{"x":-61,"y":-2},{"x":8,"y":-52},{"x":80,"y":-65},{"x":-90,"y":-155}],"type":"area"},{"arc":[{"x":181046,"y":186164},{"x":-3,"y":-19},{"x":70,"y":-14},{"x":93,"y":24},{"x":78,"y":-20},{"x":212,"y":6},{"x":62,"y":-40},{"x":123,"y":27},{"x":37,"y":-19},{"x":-51,"y":-27},{"x":42,"y":-109},{"x":-46,"y":-74},{"x":30,"y":-32},{"x":69,"y":-6},{"x":-20,"y":-59},{"x":62,"y":-18},{"x":21,"y":30},{"x":56,"y":-69},{"x":122,"y":53},{"x":10,"y":-82},{"x":30,"y":-4},{"x":-74,"y":-208},{"x":-34,"y":-36},{"x":-131,"y":2},{"x":-32,"y":-101},{"x":-53,"y":-39},{"x":-35,"y":20},{"x":53,"y":117},{"x":-68,"y":40},{"x":-73,"y":-47},{"x":-82,"y":21},{"x":-10,"y":-36},{"x":-65,"y":2},{"x":-137,"y":-99},{"x":-149,"y":31}],"type":"admin"},{"arc":[{"x":182232,"y":182923},{"x":277,"y":454},{"x":59,"y":42},{"x":154,"y":271},{"x":0,"y":94},{"x":118,"y":150},{"x":20,"y":248},{"x":-30,"y":172},{"x":30,"y":74},{"x":-35,"y":175}],"type":"area"},{"arc":[{"x":199029,"y":176585},{"x":-182,"y":206},{"x":-25,"y":63},{"x":24,"y":-63},{"x":195,"y":-220},{"x":-12,"y":14}],"type":"coastline"},{"arc":[{"x":199226,"y":176794},{"x":-24,"y":-94},{"x":-87,"y":-36},{"x":88,"y":35},{"x":23,"y":95}],"type":"coastline"},{"arc":[{"x":200147,"y":178685},{"x":-27,"y":70},{"x":-76,"y":-1},{"x":-18,"y":41},{"x":-150,"y":73},{"x":-34,"y":58},{"x":-122,"y":67},{"x":-24,"y":62},{"x":34,"y":88},{"x":-39,"y":106},{"x":6,"y":36},{"x":94,"y":81},{"x":-53,"y":66},{"x":28,"y":85}],"type":"admin"},{"arc":[{"x":199766,"y":179517},{"x":-35,"y":102},{"x":-58,"y":35},{"x":-65,"y":11},{"x":-48,"y":-22},{"x":-45,"y":51},{"x":-74,"y":9},{"x":-128,"y":-36},{"x":-13,"y":79},{"x":105,"y":223},{"x":68,"y":79},{"x":116,"y":0},{"x":93,"y":83},{"x":19,"y":80},{"x":102,"y":91},{"x":-35,"y":227},{"x":22,"y":67}],"type":"admin"},{"arc":[{"x":199790,"y":180596},{"x":-74,"y":35},{"x":-4,"y":129},{"x":-52,"y":138},{"x":-63,"y":21},{"x":61,"y":207},{"x":-9,"y":73},{"x":-108,"y":18},{"x":-125,"y":105},{"x":-122,"y":41},{"x":10,"y":56}],"type":"area"},{"arc":[{"x":199304,"y":181419},{"x":-26,"y":32},{"x":-173,"y":68},{"x":-149,"y":168},{"x":-165,"y":33},{"x":-76,"y":59},{"x":-29,"y":3},{"x":-89,"y":-70},{"x":-55,"y":18},{"x":-87,"y":-35},{"x":-72,"y":-109}],"type":"area"},{"arc":[{"x":198383,"y":181586},{"x":-243,"y":-536},{"x":38,"y":-128},{"x":75,"y":-72},{"x":17,"y":-111},{"x":-100,"y":-79},{"x":-11,"y":-119},{"x":-60,"y":-5},{"x":-26,"y":-98},{"x":-37,"y":-26},{"x":-43,"y":-110},{"x":33,"y":-110},{"x":-58,"y":-86},{"x":6,"y":-57},{"x":-98,"y":-59},{"x":-107,"y":-1},{"x":66,"y":-80},{"x":4,"y":-92},{"x":-55,"y":-33},{"x":-82,"y":-149},{"x":-133,"y":-1},{"x":-89,"y":30},{"x":-60,"y":-16},{"x":15,"y":-143},{"x":84,"y":-32},{"x":-42,"y":-275},{"x":-68,"y":45},{"x":-32,"y":-30},{"x":-75,"y":45},{"x":4,"y":62},{"x":39,"y":16},{"x":-15,"y":58},{"x":-194,"y":-4},{"x":-25,"y":-30},{"x":12,"y":-54},{"x":-106,"y":9},{"x":-75,"y":-96},{"x":-32,"y":-15},{"x":-69,"y":21},{"x":-24,"y":-28},{"x":-24,"y":8},{"x":-61,"y":-87},{"x":-61,"y":-33},{"x":-132,"y":16},{"x":-35,"y":-21},{"x":-26,"y":-110},{"x":-132,"y":-41},{"x":-36,"y":-70},{"x":-103,"y":26},{"x":-48,"y":-83},{"x":-57,"y":10},{"x":6,"y":136},{"x":-32,"y":40},{"x":-347,"y":65},{"x":-24,"y":120},{"x":-59,"y":22},{"x":-45,"y":54},{"x":-90,"y":-15},{"x":-91,"y":70},{"x":-25,"y":-72},{"x":-46,"y":-35},{"x":-26,"y":47},{"x":-163,"y":113},{"x":-128,"y":30},{"x":-4,"y":-45},{"x":-39,"y":24},{"x":-57,"y":-30},{"x":-18,"y":-103}],"type":"area"},{"arc":[{"x":194914,"y":179233},{"x":15,"y":-15}],"type":"area"},{"arc":[{"x":194929,"y":179218},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":194932,"y":179217},{"x":6,"y":-18}],"type":"area"},{"arc":[{"x":194938,"y":179199},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":194937,"y":179197},{"x":-8,"y":-46}],"type":"area"},{"arc":[{"x":194929,"y":179151},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":194921,"y":179145},{"x":-15,"y":-17}],"type":"area"},{"arc":[{"x":194906,"y":179128},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":194906,"y":179127},{"x":36,"y":-64}],"type":"area"},{"arc":[{"x":194942,"y":179063},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":194945,"y":179060},{"x":6,"y":-12}],"type":"area"},{"arc":[{"x":194951,"y":179048},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":194956,"y":179044},{"x":18,"y":-12}],"type":"area"},{"arc":[{"x":194974,"y":179032},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":194973,"y":179025},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":194973,"y":179021},{"x":11,"y":-25}],"type":"area"},{"arc":[{"x":194984,"y":178996},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":194985,"y":178991},{"x":-5,"y":-14}],"type":"area"},{"arc":[{"x":194980,"y":178977},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":194976,"y":178976},{"x":1,"y":-10}],"type":"area"},{"arc":[{"x":194977,"y":178966},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":194980,"y":178962},{"x":2,"y":-26}],"type":"area"},{"arc":[{"x":194982,"y":178936},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":194986,"y":178931},{"x":26,"y":-29}],"type":"area"},{"arc":[{"x":195012,"y":178902},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":195014,"y":178897},{"x":12,"y":-7}],"type":"area"},{"arc":[{"x":195026,"y":178890},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":195029,"y":178887},{"x":14,"y":-7}],"type":"area"},{"arc":[{"x":195043,"y":178880},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":195045,"y":178878},{"x":3,"y":-3}],"type":"area"},{"arc":[{"x":195048,"y":178875},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":195052,"y":178877},{"x":21,"y":17}],"type":"area"},{"arc":[{"x":195073,"y":178894},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":195076,"y":178894},{"x":52,"y":32}],"type":"area"},{"arc":[{"x":195128,"y":178926},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":195131,"y":178926},{"x":8,"y":-5}],"type":"area"},{"arc":[{"x":195139,"y":178921},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":195139,"y":178914},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":195142,"y":178911},{"x":16,"y":-23}],"type":"area"},{"arc":[{"x":195158,"y":178888},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":195159,"y":178882},{"x":41,"y":-37},{"x":-27,"y":-29}],"type":"area"},{"arc":[{"x":195173,"y":178816},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":195167,"y":178814},{"x":-7,"y":-3}],"type":"area"},{"arc":[{"x":195160,"y":178811},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":195158,"y":178810},{"x":-18,"y":-50},{"x":63,"y":-7}],"type":"area"},{"arc":[{"x":195203,"y":178753},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":195202,"y":178749},{"x":14,"y":2}],"type":"area"},{"arc":[{"x":195216,"y":178751},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":195221,"y":178751},{"x":6,"y":6}],"type":"area"},{"arc":[{"x":195227,"y":178757},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":195231,"y":178755},{"x":21,"y":-13}],"type":"area"},{"arc":[{"x":195252,"y":178742},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":195257,"y":178742},{"x":16,"y":6}],"type":"area"},{"arc":[{"x":195273,"y":178748},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":195275,"y":178750},{"x":3,"y":15}],"type":"area"},{"arc":[{"x":195278,"y":178765},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":195281,"y":178766},{"x":32,"y":-6}],"type":"area"},{"arc":[{"x":195313,"y":178760},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":195312,"y":178757},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":195311,"y":178752},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":195314,"y":178746},{"x":20,"y":-1}],"type":"area"},{"arc":[{"x":195334,"y":178745},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":195337,"y":178749},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":195341,"y":178753},{"x":16,"y":3}],"type":"area"},{"arc":[{"x":195357,"y":178756},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":195359,"y":178757},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":195363,"y":178758},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":195366,"y":178759},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":195369,"y":178758},{"x":11,"y":-2}],"type":"area"},{"arc":[{"x":195380,"y":178756},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":195384,"y":178755},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":195386,"y":178753},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":195388,"y":178751},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":195393,"y":178754},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":195396,"y":178758},{"x":34,"y":42}],"type":"area"},{"arc":[{"x":195430,"y":178800},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":195432,"y":178805},{"x":-13,"y":38}],"type":"area"},{"arc":[{"x":195419,"y":178843},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":195421,"y":178850},{"x":0,"y":28},{"x":35,"y":9}],"type":"area"},{"arc":[{"x":195456,"y":178887},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":195458,"y":178881},{"x":-1,"y":-16}],"type":"area"},{"arc":[{"x":195457,"y":178865},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":195457,"y":178864},{"x":1,"y":-8}],"type":"area"},{"arc":[{"x":195458,"y":178856},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":195456,"y":178852},{"x":-6,"y":-10}],"type":"area"},{"arc":[{"x":195450,"y":178842},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":195450,"y":178838},{"x":13,"y":-16}],"type":"area"},{"arc":[{"x":195463,"y":178822},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":195470,"y":178821},{"x":-7,"y":-42}],"type":"area"},{"arc":[{"x":195463,"y":178779},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":195463,"y":178778},{"x":-5,"y":-20}],"type":"area"},{"arc":[{"x":195458,"y":178758},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":195460,"y":178755},{"x":-6,"y":-29},{"x":25,"y":-5}],"type":"area"},{"arc":[{"x":195479,"y":178721},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":195484,"y":178719},{"x":6,"y":-10}],"type":"area"},{"arc":[{"x":195490,"y":178709},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":195494,"y":178707},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":195495,"y":178705},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":195498,"y":178703},{"x":12,"y":-8}],"type":"area"},{"arc":[{"x":195510,"y":178695},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":195514,"y":178693},{"x":11,"y":-15}],"type":"area"},{"arc":[{"x":195525,"y":178678},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":195520,"y":178675},{"x":-11,"y":-17}],"type":"area"},{"arc":[{"x":195509,"y":178658},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":195510,"y":178657},{"x":-12,"y":-19}],"type":"area"},{"arc":[{"x":195498,"y":178638},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":195499,"y":178635},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":195502,"y":178631},{"x":37,"y":-148}],"type":"area"},{"arc":[{"x":195539,"y":178483},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":195543,"y":178482},{"x":18,"y":-2}],"type":"area"},{"arc":[{"x":195561,"y":178480},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":195565,"y":178479},{"x":36,"y":-123}],"type":"area"},{"arc":[{"x":195601,"y":178356},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":195598,"y":178348},{"x":34,"y":-39}],"type":"area"},{"arc":[{"x":195632,"y":178309},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":195643,"y":178312},{"x":47,"y":-1}],"type":"area"},{"arc":[{"x":195690,"y":178311},{"x":11,"y":-9}],"type":"coastline"},{"arc":[{"x":195701,"y":178302},{"x":49,"y":21}],"type":"area"},{"arc":[{"x":195750,"y":178323},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":195753,"y":178324},{"x":37,"y":-19}],"type":"area"},{"arc":[{"x":195790,"y":178305},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":195794,"y":178304},{"x":29,"y":51}],"type":"area"},{"arc":[{"x":195823,"y":178355},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":195829,"y":178358},{"x":104,"y":5},{"x":30,"y":32},{"x":43,"y":0}],"type":"area"},{"arc":[{"x":196006,"y":178395},{"x":10,"y":-9}],"type":"coastline"},{"arc":[{"x":196016,"y":178386},{"x":29,"y":-18},{"x":-11,"y":-42}],"type":"area"},{"arc":[{"x":196034,"y":178326},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":196030,"y":178322},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":196023,"y":178315},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":196019,"y":178313},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":196013,"y":178310},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":196011,"y":178307},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":196009,"y":178302},{"x":-5,"y":-36}],"type":"area"},{"arc":[{"x":196004,"y":178266},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":196003,"y":178261},{"x":-5,"y":-18}],"type":"area"},{"arc":[{"x":195998,"y":178243},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":195994,"y":178237},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":195993,"y":178233},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":195993,"y":178225},{"x":-2,"y":-5}],"type":"area"},{"arc":[{"x":195991,"y":178220},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":195986,"y":178219},{"x":-19,"y":-21}],"type":"area"},{"arc":[{"x":195967,"y":178198},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":195966,"y":178192},{"x":8,"y":-17}],"type":"area"},{"arc":[{"x":195974,"y":178175},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":195973,"y":178168},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":195974,"y":178166},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":195977,"y":178164},{"x":7,"y":-3}],"type":"area"},{"arc":[{"x":195984,"y":178161},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":195992,"y":178157},{"x":5,"y":-15}],"type":"area"},{"arc":[{"x":195997,"y":178142},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":195998,"y":178134},{"x":31,"y":-64}],"type":"area"},{"arc":[{"x":196029,"y":178070},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":196032,"y":178066},{"x":53,"y":89},{"x":75,"y":28},{"x":48,"y":-67}],"type":"area"},{"arc":[{"x":196208,"y":178116},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":196216,"y":178113},{"x":50,"y":-4}],"type":"area"},{"arc":[{"x":196266,"y":178109},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":196273,"y":178107},{"x":12,"y":-6}],"type":"area"},{"arc":[{"x":196285,"y":178101},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":196290,"y":178100},{"x":24,"y":-5}],"type":"area"},{"arc":[{"x":196314,"y":178095},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":196321,"y":178092},{"x":36,"y":-56},{"x":71,"y":-22},{"x":8,"y":-40}],"type":"area"},{"arc":[{"x":196436,"y":177974},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":196435,"y":177971},{"x":-4,"y":-45}],"type":"area"},{"arc":[{"x":196431,"y":177926},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":196430,"y":177922},{"x":-1,"y":-6}],"type":"area"},{"arc":[{"x":196429,"y":177916},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":196425,"y":177911},{"x":-2,"y":-35}],"type":"area"},{"arc":[{"x":196423,"y":177876},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":196429,"y":177872},{"x":-2,"y":-41}],"type":"area"},{"arc":[{"x":196427,"y":177831},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":196427,"y":177829},{"x":13,"y":-105},{"x":46,"y":-35}],"type":"area"},{"arc":[{"x":196486,"y":177689},{"x":5,"y":16}],"type":"coastline"},{"arc":[{"x":196491,"y":177705},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":196492,"y":177712},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":196494,"y":177715},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":196495,"y":177715},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":196500,"y":177715},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":196502,"y":177716},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":196504,"y":177717},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":196507,"y":177717},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":196511,"y":177716},{"x":8,"y":-48}],"type":"area"},{"arc":[{"x":196519,"y":177668},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":196521,"y":177665},{"x":3,"y":-16}],"type":"area"},{"arc":[{"x":196524,"y":177649},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":196528,"y":177641},{"x":1,"y":-15}],"type":"area"},{"arc":[{"x":196529,"y":177626},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":196529,"y":177622},{"x":66,"y":-52}],"type":"area"},{"arc":[{"x":196595,"y":177570},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":196598,"y":177572},{"x":26,"y":3}],"type":"area"},{"arc":[{"x":196624,"y":177575},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":196624,"y":177572},{"x":3,"y":-36}],"type":"area"},{"arc":[{"x":196627,"y":177536},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":196628,"y":177535},{"x":10,"y":-47}],"type":"area"},{"arc":[{"x":196638,"y":177488},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":196638,"y":177486},{"x":-25,"y":-16}],"type":"area"},{"arc":[{"x":196613,"y":177470},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":196611,"y":177465},{"x":-1,"y":-24}],"type":"area"},{"arc":[{"x":196610,"y":177441},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":196607,"y":177435},{"x":-9,"y":-34}],"type":"area"},{"arc":[{"x":196598,"y":177401},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":196598,"y":177400},{"x":5,"y":-14}],"type":"area"},{"arc":[{"x":196603,"y":177386},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":196603,"y":177380},{"x":-41,"y":-36},{"x":21,"y":-25}],"type":"area"},{"arc":[{"x":196583,"y":177319},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":196584,"y":177317},{"x":30,"y":-15},{"x":-13,"y":-38}],"type":"area"},{"arc":[{"x":196601,"y":177264},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":196605,"y":177257},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":196607,"y":177254},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":196608,"y":177252},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":196609,"y":177245},{"x":5,"y":-7}],"type":"area"},{"arc":[{"x":196614,"y":177238},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":196618,"y":177231},{"x":9,"y":-19},{"x":18,"y":28}],"type":"area"},{"arc":[{"x":196645,"y":177240},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":196651,"y":177245},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":196660,"y":177250},{"x":21,"y":-8}],"type":"area"},{"arc":[{"x":196681,"y":177242},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":196684,"y":177238},{"x":21,"y":-1}],"type":"area"},{"arc":[{"x":196705,"y":177237},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":196710,"y":177238},{"x":4,"y":5}],"type":"area"},{"arc":[{"x":196714,"y":177243},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":196717,"y":177248},{"x":36,"y":-20},{"x":3,"y":-8}],"type":"area"},{"arc":[{"x":196756,"y":177220},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":196758,"y":177217},{"x":38,"y":-53},{"x":-11,"y":-42}],"type":"area"},{"arc":[{"x":196785,"y":177122},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":196787,"y":177118},{"x":3,"y":-49}],"type":"area"},{"arc":[{"x":196790,"y":177069},{"x":706,"y":35},{"x":849,"y":-39},{"x":230,"y":-54},{"x":28,"y":-20},{"x":-5,"y":-37},{"x":112,"y":-23},{"x":4,"y":25},{"x":70,"y":-5},{"x":53,"y":-99},{"x":-31,"y":91},{"x":27,"y":19},{"x":188,"y":0},{"x":-16,"y":-67},{"x":-118,"y":34},{"x":-20,"y":-32},{"x":72,"y":-60},{"x":10,"y":37},{"x":45,"y":-12},{"x":-36,"y":-123},{"x":29,"y":92},{"x":122,"y":-34},{"x":23,"y":93},{"x":48,"y":-18},{"x":-15,"y":-63},{"x":53,"y":-14},{"x":-28,"y":36},{"x":14,"y":19},{"x":31,"y":-9},{"x":0,"y":-37},{"x":23,"y":39},{"x":147,"y":-39}],"type":"coastline"},{"arc":[{"x":199405,"y":176804},{"x":34,"y":226},{"x":273,"y":-10},{"x":256,"y":-64},{"x":33,"y":78},{"x":-56,"y":36},{"x":41,"y":66},{"x":108,"y":-17},{"x":8,"y":17},{"x":-57,"y":110},{"x":-39,"y":20},{"x":-19,"y":-27},{"x":-32,"y":11},{"x":-1,"y":30},{"x":-52,"y":13},{"x":22,"y":50},{"x":-17,"y":36},{"x":-83,"y":16},{"x":-31,"y":40},{"x":76,"y":38},{"x":4,"y":90},{"x":31,"y":4},{"x":1,"y":35},{"x":101,"y":98},{"x":-90,"y":128},{"x":21,"y":77},{"x":-24,"y":73},{"x":63,"y":79},{"x":-36,"y":60},{"x":8,"y":43},{"x":-42,"y":33},{"x":54,"y":185},{"x":-11,"y":65},{"x":53,"y":6},{"x":50,"y":61},{"x":53,"y":-13}],"type":"area"},{"arc":[{"x":200105,"y":178497},{"x":52,"y":28},{"x":14,"y":78},{"x":-24,"y":82}],"type":"admin"},{"arc":[{"x":196100,"y":176940},{"x":-11,"y":13},{"x":-20,"y":-8},{"x":5,"y":-23},{"x":-4,"y":22},{"x":26,"y":4},{"x":2,"y":-23},{"x":-13,"y":-2},{"x":13,"y":1},{"x":2,"y":16}],"type":"coastline"},{"arc":[{"x":196758,"y":177217},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":196717,"y":177248},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":196710,"y":177238},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":196684,"y":177238},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":196660,"y":177250},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":196651,"y":177245},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":196618,"y":177231},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":196609,"y":177245},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":196608,"y":177252},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":196605,"y":177257},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":196584,"y":177317},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":196603,"y":177380},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":196598,"y":177400},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":196607,"y":177435},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":196611,"y":177465},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":196638,"y":177486},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":196628,"y":177535},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":196624,"y":177572},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":196598,"y":177572},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":196529,"y":177622},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":196528,"y":177641},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":196521,"y":177665},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":196511,"y":177716},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":196504,"y":177717},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":196500,"y":177715},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":196494,"y":177715},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":196491,"y":177705},{"x":-5,"y":-16}],"type":"coastline"},{"arc":[{"x":196427,"y":177829},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":196429,"y":177872},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":196425,"y":177911},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":196430,"y":177922},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":196435,"y":177971},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":196321,"y":178092},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":196290,"y":178100},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":196273,"y":178107},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":196216,"y":178113},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":196032,"y":178066},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":195998,"y":178134},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":195992,"y":178157},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":195977,"y":178164},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":195973,"y":178168},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":195966,"y":178192},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":195986,"y":178219},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":195993,"y":178225},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":195993,"y":178233},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":195994,"y":178237},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":196003,"y":178261},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":196009,"y":178302},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":196013,"y":178310},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":196023,"y":178315},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":196030,"y":178322},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":196016,"y":178386},{"x":-10,"y":9}],"type":"coastline"},{"arc":[{"x":195829,"y":178358},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":195794,"y":178304},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":195753,"y":178324},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":195701,"y":178302},{"x":-11,"y":9}],"type":"coastline"},{"arc":[{"x":195643,"y":178312},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":195598,"y":178348},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":195565,"y":178479},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":195543,"y":178482},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":195502,"y":178631},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":195499,"y":178635},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":195510,"y":178657},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":195520,"y":178675},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":195514,"y":178693},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":195498,"y":178703},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":195494,"y":178707},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":195484,"y":178719},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":195460,"y":178755},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":195463,"y":178778},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":195470,"y":178821},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":195450,"y":178838},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":195456,"y":178852},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":195457,"y":178864},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":195458,"y":178881},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":195421,"y":178850},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":195432,"y":178805},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":195396,"y":178758},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":195388,"y":178751},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":195384,"y":178755},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":195369,"y":178758},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":195363,"y":178758},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":195359,"y":178757},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":195341,"y":178753},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":195337,"y":178749},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":195314,"y":178746},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":195311,"y":178752},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":195312,"y":178757},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":195281,"y":178766},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":195275,"y":178750},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":195257,"y":178742},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":195231,"y":178755},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":195221,"y":178751},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":195202,"y":178749},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":195158,"y":178810},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":195167,"y":178814},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":195159,"y":178882},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":195142,"y":178911},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":195139,"y":178914},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":195131,"y":178926},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":195076,"y":178894},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":195052,"y":178877},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":195045,"y":178878},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":195029,"y":178887},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":195014,"y":178897},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":194986,"y":178931},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":194980,"y":178962},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":194976,"y":178976},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":194985,"y":178991},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":194973,"y":179021},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":194973,"y":179025},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":194956,"y":179044},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":194945,"y":179060},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":194906,"y":179127},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":194921,"y":179145},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":194937,"y":179197},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":194932,"y":179217},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":194914,"y":179233},{"x":-10,"y":3}],"type":"area"},{"arc":[{"x":194904,"y":179236},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":194898,"y":179239},{"x":-11,"y":2}],"type":"area"},{"arc":[{"x":194887,"y":179241},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":194880,"y":179240},{"x":-15,"y":11}],"type":"area"},{"arc":[{"x":194865,"y":179251},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":194859,"y":179252},{"x":-44,"y":-12}],"type":"area"},{"arc":[{"x":194815,"y":179240},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":194814,"y":179239},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":194814,"y":179238},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":194811,"y":179237},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":194810,"y":179236},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":194809,"y":179233},{"x":-6,"y":-6}],"type":"area"},{"arc":[{"x":194803,"y":179227},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":194799,"y":179230},{"x":-24,"y":23}],"type":"area"},{"arc":[{"x":194775,"y":179253},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":194773,"y":179253},{"x":-47,"y":-13}],"type":"area"},{"arc":[{"x":194726,"y":179240},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":194724,"y":179240},{"x":-60,"y":38}],"type":"area"},{"arc":[{"x":194664,"y":179278},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":194662,"y":179281},{"x":-3,"y":10}],"type":"area"},{"arc":[{"x":194659,"y":179291},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":194657,"y":179293},{"x":-41,"y":20}],"type":"area"},{"arc":[{"x":194616,"y":179313},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":194614,"y":179314},{"x":-16,"y":12}],"type":"area"},{"arc":[{"x":194598,"y":179326},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":194595,"y":179328},{"x":1,"y":14}],"type":"area"},{"arc":[{"x":194596,"y":179342},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":194594,"y":179344},{"x":-4,"y":16}],"type":"area"},{"arc":[{"x":194590,"y":179360},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":194588,"y":179361},{"x":-8,"y":21}],"type":"area"},{"arc":[{"x":194580,"y":179382},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":194581,"y":179386},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":194582,"y":179388},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":194584,"y":179390},{"x":3,"y":14}],"type":"area"},{"arc":[{"x":194587,"y":179404},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":194585,"y":179405},{"x":-26,"y":31}],"type":"area"},{"arc":[{"x":194559,"y":179436},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":194556,"y":179440},{"x":-24,"y":118}],"type":"area"},{"arc":[{"x":194532,"y":179558},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":194530,"y":179564},{"x":-1,"y":6}],"type":"area"},{"arc":[{"x":194529,"y":179570},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":194527,"y":179574},{"x":-4,"y":4}],"type":"area"},{"arc":[{"x":194523,"y":179578},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":194519,"y":179580},{"x":-22,"y":41}],"type":"area"},{"arc":[{"x":194497,"y":179621},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":194493,"y":179622},{"x":-14,"y":-8}],"type":"area"},{"arc":[{"x":194479,"y":179614},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":194477,"y":179611},{"x":-64,"y":-20}],"type":"area"},{"arc":[{"x":194413,"y":179591},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":194411,"y":179592},{"x":-36,"y":11},{"x":-19,"y":-21}],"type":"area"},{"arc":[{"x":194356,"y":179582},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":194352,"y":179584},{"x":-20,"y":-12}],"type":"area"},{"arc":[{"x":194332,"y":179572},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":194329,"y":179569},{"x":0,"y":-4}],"type":"area"},{"arc":[{"x":194329,"y":179565},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":194331,"y":179560},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":194333,"y":179556},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":194332,"y":179554},{"x":-40,"y":-33},{"x":4,"y":-30}],"type":"area"},{"arc":[{"x":194296,"y":179491},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":194296,"y":179486},{"x":-16,"y":-26}],"type":"area"},{"arc":[{"x":194280,"y":179460},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":194282,"y":179455},{"x":1,"y":-3}],"type":"area"},{"arc":[{"x":194283,"y":179452},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":194283,"y":179447},{"x":-37,"y":-46},{"x":-34,"y":31},{"x":12,"y":30}],"type":"area"},{"arc":[{"x":194224,"y":179462},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":194223,"y":179466},{"x":-15,"y":18}],"type":"area"},{"arc":[{"x":194208,"y":179484},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":194207,"y":179488},{"x":-3,"y":27}],"type":"area"},{"arc":[{"x":194204,"y":179515},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":194199,"y":179520},{"x":-15,"y":34}],"type":"area"},{"arc":[{"x":194184,"y":179554},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":194182,"y":179557},{"x":-14,"y":35}],"type":"area"},{"arc":[{"x":194168,"y":179592},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":194169,"y":179594},{"x":13,"y":16}],"type":"area"},{"arc":[{"x":194182,"y":179610},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":194182,"y":179611},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":194180,"y":179614},{"x":0,"y":6}],"type":"area"},{"arc":[{"x":194180,"y":179620},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":194180,"y":179623},{"x":-4,"y":2}],"type":"area"},{"arc":[{"x":194176,"y":179625},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":194172,"y":179627},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":194170,"y":179628},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":194167,"y":179631},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":194167,"y":179633},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":194170,"y":179635},{"x":9,"y":12}],"type":"area"},{"arc":[{"x":194179,"y":179647},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":194180,"y":179652},{"x":-5,"y":5}],"type":"area"},{"arc":[{"x":194175,"y":179657},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":194172,"y":179659},{"x":3,"y":21}],"type":"area"},{"arc":[{"x":194175,"y":179680},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":194171,"y":179682},{"x":-6,"y":8}],"type":"area"},{"arc":[{"x":194165,"y":179690},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":194166,"y":179692},{"x":0,"y":26}],"type":"area"},{"arc":[{"x":194166,"y":179718},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":194163,"y":179720},{"x":-20,"y":12}],"type":"area"},{"arc":[{"x":194143,"y":179732},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":194143,"y":179736},{"x":-19,"y":-1}],"type":"area"},{"arc":[{"x":194124,"y":179735},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":194121,"y":179733},{"x":-54,"y":30}],"type":"area"},{"arc":[{"x":194067,"y":179763},{"x":-32,"y":-51}],"type":"area"},{"arc":[{"x":194035,"y":179712},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":194031,"y":179711},{"x":-4,"y":-3}],"type":"area"},{"arc":[{"x":194027,"y":179708},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":194026,"y":179704},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":194027,"y":179699},{"x":-5,"y":-15}],"type":"area"},{"arc":[{"x":194022,"y":179684},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":194020,"y":179680},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":194018,"y":179677},{"x":5,"y":-5}],"type":"area"},{"arc":[{"x":194023,"y":179672},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":194024,"y":179669},{"x":5,"y":-14}],"type":"area"},{"arc":[{"x":194029,"y":179655},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":194030,"y":179651},{"x":-7,"y":-36}],"type":"area"},{"arc":[{"x":194023,"y":179615},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":194025,"y":179613},{"x":3,"y":-6}],"type":"area"},{"arc":[{"x":194028,"y":179607},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":194027,"y":179603},{"x":-18,"y":-40}],"type":"area"},{"arc":[{"x":194009,"y":179563},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":194005,"y":179564},{"x":-12,"y":0}],"type":"area"},{"arc":[{"x":193993,"y":179564},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":193989,"y":179562},{"x":-14,"y":5}],"type":"area"},{"arc":[{"x":193975,"y":179567},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":193973,"y":179568},{"x":-10,"y":-6}],"type":"area"},{"arc":[{"x":193963,"y":179562},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":193961,"y":179561},{"x":9,"y":-8}],"type":"area"},{"arc":[{"x":193970,"y":179553},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":193972,"y":179553},{"x":37,"y":-9}],"type":"area"},{"arc":[{"x":194009,"y":179544},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":194014,"y":179541},{"x":6,"y":-18}],"type":"area"},{"arc":[{"x":194020,"y":179523},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":194019,"y":179519},{"x":-8,"y":-10}],"type":"area"},{"arc":[{"x":194011,"y":179509},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":194012,"y":179505},{"x":-11,"y":-13}],"type":"area"},{"arc":[{"x":194001,"y":179492},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":194002,"y":179496},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":194002,"y":179499},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":194002,"y":179504},{"x":-23,"y":9}],"type":"area"},{"arc":[{"x":193979,"y":179513},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":193976,"y":179513},{"x":0,"y":-12}],"type":"area"},{"arc":[{"x":193976,"y":179501},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":193975,"y":179499},{"x":-11,"y":5}],"type":"area"},{"arc":[{"x":193964,"y":179504},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":193961,"y":179507},{"x":-4,"y":4}],"type":"area"},{"arc":[{"x":193957,"y":179511},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":193955,"y":179512},{"x":-4,"y":-11}],"type":"area"},{"arc":[{"x":193951,"y":179501},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":193948,"y":179498},{"x":40,"y":-15}],"type":"area"},{"arc":[{"x":193988,"y":179483},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":193987,"y":179481},{"x":6,"y":-13}],"type":"area"},{"arc":[{"x":193993,"y":179468},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":193992,"y":179464},{"x":0,"y":-4}],"type":"area"},{"arc":[{"x":193992,"y":179460},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":193990,"y":179457},{"x":-5,"y":-7}],"type":"area"},{"arc":[{"x":193985,"y":179450},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":193985,"y":179448},{"x":-20,"y":-10}],"type":"area"},{"arc":[{"x":193965,"y":179438},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":193963,"y":179438},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":193961,"y":179436},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":193958,"y":179433},{"x":-8,"y":-13}],"type":"area"},{"arc":[{"x":193950,"y":179420},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":193947,"y":179420},{"x":-2,"y":-11}],"type":"area"},{"arc":[{"x":193945,"y":179409},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":193946,"y":179408},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":193949,"y":179407},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":193954,"y":179404},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":193959,"y":179400},{"x":12,"y":-20}],"type":"area"},{"arc":[{"x":193971,"y":179380},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":193970,"y":179380},{"x":-17,"y":-24}],"type":"area"},{"arc":[{"x":193953,"y":179356},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":193953,"y":179354},{"x":18,"y":-42}],"type":"area"},{"arc":[{"x":193971,"y":179312},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":193970,"y":179312},{"x":12,"y":-24}],"type":"area"},{"arc":[{"x":193982,"y":179288},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":193982,"y":179286},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":193984,"y":179283},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":193986,"y":179279},{"x":1,"y":-54}],"type":"area"},{"arc":[{"x":193987,"y":179225},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":193988,"y":179222},{"x":18,"y":-21}],"type":"area"},{"arc":[{"x":194006,"y":179201},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":194009,"y":179198},{"x":10,"y":-15}],"type":"area"},{"arc":[{"x":194019,"y":179183},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":194023,"y":179181},{"x":-1,"y":-11}],"type":"area"},{"arc":[{"x":194022,"y":179170},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":194021,"y":179172},{"x":-7,"y":1}],"type":"area"},{"arc":[{"x":194014,"y":179173},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":194013,"y":179170},{"x":-17,"y":-3}],"type":"area"},{"arc":[{"x":193996,"y":179167},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":193993,"y":179168},{"x":-26,"y":10}],"type":"area"},{"arc":[{"x":193967,"y":179178},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":193964,"y":179178},{"x":-14,"y":9}],"type":"area"},{"arc":[{"x":193950,"y":179187},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":193948,"y":179190},{"x":-33,"y":28}],"type":"area"},{"arc":[{"x":193915,"y":179218},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":193911,"y":179218},{"x":-19,"y":-5}],"type":"area"},{"arc":[{"x":193892,"y":179213},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":193887,"y":179211},{"x":-19,"y":7}],"type":"area"},{"arc":[{"x":193868,"y":179218},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":193865,"y":179220},{"x":-51,"y":53}],"type":"area"},{"arc":[{"x":193814,"y":179273},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":193811,"y":179269},{"x":-31,"y":-28}],"type":"area"},{"arc":[{"x":193780,"y":179241},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":193776,"y":179238},{"x":-26,"y":0}],"type":"area"},{"arc":[{"x":193750,"y":179238},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":193744,"y":179235},{"x":-19,"y":0}],"type":"area"},{"arc":[{"x":193725,"y":179235},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":193722,"y":179236},{"x":5,"y":61},{"x":-27,"y":20}],"type":"area"},{"arc":[{"x":193700,"y":179317},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":193700,"y":179319},{"x":20,"y":20}],"type":"area"},{"arc":[{"x":193720,"y":179339},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":193725,"y":179341},{"x":27,"y":17}],"type":"area"},{"arc":[{"x":193752,"y":179358},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":193751,"y":179360},{"x":-32,"y":29}],"type":"area"},{"arc":[{"x":193719,"y":179389},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":193716,"y":179389},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":193717,"y":179396},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":193719,"y":179400},{"x":-3,"y":5}],"type":"area"},{"arc":[{"x":193716,"y":179405},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":193713,"y":179407},{"x":3,"y":17}],"type":"area"},{"arc":[{"x":193716,"y":179424},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":193719,"y":179427},{"x":-7,"y":10}],"type":"area"},{"arc":[{"x":193712,"y":179437},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":193711,"y":179443},{"x":2,"y":16}],"type":"area"},{"arc":[{"x":193713,"y":179459},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":193712,"y":179466},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":193712,"y":179468},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":193711,"y":179469},{"x":-5,"y":0}],"type":"area"},{"arc":[{"x":193706,"y":179469},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":193702,"y":179469},{"x":-5,"y":2}],"type":"area"},{"arc":[{"x":193697,"y":179471},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":193695,"y":179472},{"x":0,"y":6}],"type":"area"},{"arc":[{"x":193695,"y":179478},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":193695,"y":179481},{"x":11,"y":39}],"type":"area"},{"arc":[{"x":193706,"y":179520},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":193707,"y":179523},{"x":-13,"y":24}],"type":"area"},{"arc":[{"x":193694,"y":179547},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":193690,"y":179548},{"x":-21,"y":2}],"type":"area"},{"arc":[{"x":193669,"y":179550},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":193665,"y":179552},{"x":-10,"y":2}],"type":"area"},{"arc":[{"x":193655,"y":179554},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":193654,"y":179554},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":193649,"y":179554},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":193645,"y":179555},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":193640,"y":179556},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":193637,"y":179557},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":193634,"y":179560},{"x":-9,"y":8}],"type":"area"},{"arc":[{"x":193625,"y":179568},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":193618,"y":179570},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":193617,"y":179570},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":193613,"y":179571},{"x":3,"y":18}],"type":"area"},{"arc":[{"x":193616,"y":179589},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":193620,"y":179591},{"x":9,"y":7}],"type":"area"},{"arc":[{"x":193629,"y":179598},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":193630,"y":179602},{"x":-3,"y":8}],"type":"area"},{"arc":[{"x":193627,"y":179610},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":193625,"y":179615},{"x":20,"y":75}],"type":"area"},{"arc":[{"x":193645,"y":179690},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":193647,"y":179699},{"x":-10,"y":63}],"type":"area"},{"arc":[{"x":193637,"y":179762},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":193633,"y":179764},{"x":-20,"y":-7}],"type":"area"},{"arc":[{"x":193613,"y":179757},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":193611,"y":179754},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":193610,"y":179752},{"x":-59,"y":84}],"type":"area"},{"arc":[{"x":193551,"y":179836},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":193549,"y":179841},{"x":-10,"y":6}],"type":"area"},{"arc":[{"x":193539,"y":179847},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":193536,"y":179849},{"x":-11,"y":8}],"type":"area"},{"arc":[{"x":193525,"y":179857},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":193522,"y":179860},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":193521,"y":179861},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":193519,"y":179861},{"x":-6,"y":-1}],"type":"area"},{"arc":[{"x":193513,"y":179860},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":193507,"y":179860},{"x":-30,"y":6},{"x":-46,"y":-37},{"x":-29,"y":34},{"x":-58,"y":-20}],"type":"area"},{"arc":[{"x":193344,"y":179843},{"x":-6,"y":19}],"type":"coastline"},{"arc":[{"x":193338,"y":179862},{"x":0,"y":25}],"type":"area"},{"arc":[{"x":193338,"y":179887},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":193337,"y":179892},{"x":1,"y":9}],"type":"area"},{"arc":[{"x":193338,"y":179901},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":193339,"y":179905},{"x":5,"y":5}],"type":"area"},{"arc":[{"x":193344,"y":179910},{"x":8,"y":10}],"type":"coastline"},{"arc":[{"x":193352,"y":179920},{"x":17,"y":15}],"type":"area"},{"arc":[{"x":193369,"y":179935},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":193372,"y":179945},{"x":-5,"y":16}],"type":"area"},{"arc":[{"x":193367,"y":179961},{"x":2,"y":12}],"type":"coastline"},{"arc":[{"x":193369,"y":179973},{"x":-32,"y":9}],"type":"area"},{"arc":[{"x":193337,"y":179982},{"x":-12,"y":-4}],"type":"coastline"},{"arc":[{"x":193325,"y":179978},{"x":-52,"y":0}],"type":"area"},{"arc":[{"x":193273,"y":179978},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":193266,"y":179978},{"x":-10,"y":9}],"type":"area"},{"arc":[{"x":193256,"y":179987},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":193247,"y":179991},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":193242,"y":179989},{"x":-39,"y":-18},{"x":-37,"y":19}],"type":"area"},{"arc":[{"x":193166,"y":179990},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":193156,"y":179992},{"x":-36,"y":57}],"type":"area"},{"arc":[{"x":193120,"y":180049},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":193113,"y":180056},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":193110,"y":180063},{"x":-22,"y":34}],"type":"area"},{"arc":[{"x":193088,"y":180097},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":193078,"y":180099},{"x":-96,"y":29},{"x":-16,"y":-135},{"x":-35,"y":-8}],"type":"area"},{"arc":[{"x":192931,"y":179985},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":192924,"y":179977},{"x":-6,"y":-9}],"type":"area"},{"arc":[{"x":192918,"y":179968},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":192916,"y":179966},{"x":-117,"y":-16},{"x":-20,"y":15},{"x":-58,"y":-38}],"type":"area"},{"arc":[{"x":192721,"y":179927},{"x":-10,"y":-8}],"type":"coastline"},{"arc":[{"x":192711,"y":179919},{"x":-24,"y":-50},{"x":-18,"y":6}],"type":"area"},{"arc":[{"x":192669,"y":179875},{"x":-13,"y":0}],"type":"coastline"},{"arc":[{"x":192656,"y":179875},{"x":-72,"y":-14}],"type":"area"},{"arc":[{"x":192584,"y":179861},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":192579,"y":179859},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":192572,"y":179860},{"x":-5,"y":2}],"type":"area"},{"arc":[{"x":192567,"y":179862},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":192559,"y":179862},{"x":-25,"y":1},{"x":-24,"y":68}],"type":"area"},{"arc":[{"x":192510,"y":179931},{"x":-5,"y":11}],"type":"coastline"},{"arc":[{"x":192505,"y":179942},{"x":-18,"y":43}],"type":"area"},{"arc":[{"x":192487,"y":179985},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":192482,"y":179990},{"x":-35,"y":-9},{"x":-39,"y":48}],"type":"area"},{"arc":[{"x":192408,"y":180029},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":192405,"y":180033},{"x":-10,"y":4}],"type":"area"},{"arc":[{"x":192395,"y":180037},{"x":-45,"y":13},{"x":-12,"y":-54}],"type":"admin"},{"arc":[{"x":192338,"y":179996},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":192336,"y":179992},{"x":-3,"y":-32}],"type":"admin"},{"arc":[{"x":192333,"y":179960},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":192332,"y":179954},{"x":47,"y":-35},{"x":-40,"y":-56}],"type":"admin"},{"arc":[{"x":192339,"y":179863},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":192338,"y":179853},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":192338,"y":179839},{"x":26,"y":-20},{"x":-10,"y":-86}],"type":"admin"},{"arc":[{"x":192354,"y":179733},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":192353,"y":179727},{"x":-4,"y":-37}],"type":"admin"},{"arc":[{"x":192349,"y":179690},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":192349,"y":179684},{"x":2,"y":-65}],"type":"admin"},{"arc":[{"x":192351,"y":179619},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":192351,"y":179612},{"x":-19,"y":-17}],"type":"admin"},{"arc":[{"x":192332,"y":179595},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":192330,"y":179590},{"x":-12,"y":-33}],"type":"admin"},{"arc":[{"x":192318,"y":179557},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":192317,"y":179554},{"x":4,"y":-54}],"type":"admin"},{"arc":[{"x":192321,"y":179500},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":192319,"y":179494},{"x":-20,"y":-109}],"type":"admin"},{"arc":[{"x":192299,"y":179385},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":192297,"y":179383},{"x":-31,"y":-16},{"x":6,"y":-30}],"type":"admin"},{"arc":[{"x":192272,"y":179337},{"x":2,"y":-11}],"type":"coastline"},{"arc":[{"x":192274,"y":179326},{"x":-13,"y":-43}],"type":"admin"},{"arc":[{"x":192261,"y":179283},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":192265,"y":179273},{"x":-12,"y":-28}],"type":"admin"},{"arc":[{"x":192253,"y":179245},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":192249,"y":179248},{"x":-33,"y":-45},{"x":17,"y":-39}],"type":"admin"},{"arc":[{"x":192233,"y":179164},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":192230,"y":179162},{"x":-92,"y":-103}],"type":"admin"},{"arc":[{"x":192138,"y":179059},{"x":-15,"y":5}],"type":"coastline"},{"arc":[{"x":192123,"y":179064},{"x":-54,"y":-40},{"x":1,"y":-52}],"type":"admin"},{"arc":[{"x":192070,"y":178972},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":192070,"y":178966},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":192070,"y":178960},{"x":2,"y":-11}],"type":"admin"},{"arc":[{"x":192072,"y":178949},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":192073,"y":178948},{"x":23,"y":-46}],"type":"admin"},{"arc":[{"x":192096,"y":178902},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":192094,"y":178899},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":192093,"y":178899},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":192090,"y":178894},{"x":-10,"y":-27}],"type":"admin"},{"arc":[{"x":192080,"y":178867},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":192080,"y":178865},{"x":12,"y":-20}],"type":"admin"},{"arc":[{"x":192092,"y":178845},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":192098,"y":178842},{"x":20,"y":-12}],"type":"admin"},{"arc":[{"x":192118,"y":178830},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":192124,"y":178827},{"x":-6,"y":-43}],"type":"admin"},{"arc":[{"x":192118,"y":178784},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":192115,"y":178779},{"x":-3,"y":-5}],"type":"admin"},{"arc":[{"x":192112,"y":178774},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":192108,"y":178769},{"x":-6,"y":-7}],"type":"admin"},{"arc":[{"x":192102,"y":178762},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":192098,"y":178756},{"x":-10,"y":1}],"type":"admin"},{"arc":[{"x":192088,"y":178757},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":192082,"y":178755},{"x":-29,"y":5}],"type":"admin"},{"arc":[{"x":192053,"y":178760},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":192049,"y":178761},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":192045,"y":178763},{"x":-8,"y":-2}],"type":"admin"},{"arc":[{"x":192037,"y":178761},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":192034,"y":178758},{"x":-15,"y":-25}],"type":"admin"},{"arc":[{"x":192019,"y":178733},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":192017,"y":178738},{"x":-49,"y":42}],"type":"admin"},{"arc":[{"x":191968,"y":178780},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":191967,"y":178783},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":191963,"y":178788},{"x":-37,"y":12}],"type":"admin"},{"arc":[{"x":191926,"y":178800},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":191923,"y":178800},{"x":-13,"y":10}],"type":"admin"},{"arc":[{"x":191910,"y":178810},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":191908,"y":178814},{"x":-15,"y":14}],"type":"admin"},{"arc":[{"x":191893,"y":178828},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":191887,"y":178825},{"x":-42,"y":-2}],"type":"admin"},{"arc":[{"x":191845,"y":178823},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":191840,"y":178824},{"x":-99,"y":42}],"type":"admin"},{"arc":[{"x":191741,"y":178866},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":191738,"y":178866},{"x":-20,"y":29}],"type":"admin"},{"arc":[{"x":191718,"y":178895},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":191714,"y":178895},{"x":-9,"y":2}],"type":"admin"},{"arc":[{"x":191705,"y":178897},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":191701,"y":178898},{"x":-4,"y":1}],"type":"admin"},{"arc":[{"x":191697,"y":178899},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":191694,"y":178902},{"x":-16,"y":18}],"type":"admin"},{"arc":[{"x":191678,"y":178920},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":191676,"y":178924},{"x":7,"y":21}],"type":"admin"},{"arc":[{"x":191683,"y":178945},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":191683,"y":178951},{"x":1,"y":2}],"type":"admin"},{"arc":[{"x":191684,"y":178953},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":191687,"y":178955},{"x":3,"y":10}],"type":"admin"},{"arc":[{"x":191690,"y":178965},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":191691,"y":178969},{"x":22,"y":13}],"type":"admin"},{"arc":[{"x":191713,"y":178982},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":191715,"y":178985},{"x":5,"y":37},{"x":-35,"y":26}],"type":"admin"},{"arc":[{"x":191685,"y":179048},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":191681,"y":179054},{"x":-31,"y":36}],"type":"admin"},{"arc":[{"x":191650,"y":179090},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":191646,"y":179096},{"x":-28,"y":14}],"type":"admin"},{"arc":[{"x":191618,"y":179110},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":191613,"y":179116},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":191612,"y":179117},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":191606,"y":179118},{"x":-12,"y":-10}],"type":"admin"},{"arc":[{"x":191594,"y":179108},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":191591,"y":179106},{"x":-19,"y":6}],"type":"admin"},{"arc":[{"x":191572,"y":179112},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":191570,"y":179112},{"x":-45,"y":4}],"type":"admin"},{"arc":[{"x":191525,"y":179116},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":191520,"y":179123},{"x":-102,"y":87}],"type":"admin"},{"arc":[{"x":191418,"y":179210},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":191418,"y":179221},{"x":-21,"y":60}],"type":"admin"},{"arc":[{"x":191397,"y":179281},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":191393,"y":179283},{"x":-38,"y":19}],"type":"admin"},{"arc":[{"x":191355,"y":179302},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":191351,"y":179304},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":191343,"y":179310},{"x":-114,"y":41}],"type":"admin"},{"arc":[{"x":191229,"y":179351},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":191228,"y":179352},{"x":-110,"y":29}],"type":"admin"},{"arc":[{"x":191118,"y":179381},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":191118,"y":179382},{"x":-46,"y":68}],"type":"admin"},{"arc":[{"x":191072,"y":179450},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":191071,"y":179454},{"x":-24,"y":29}],"type":"admin"},{"arc":[{"x":191047,"y":179483},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":191041,"y":179484},{"x":-42,"y":32}],"type":"admin"},{"arc":[{"x":190999,"y":179516},{"x":-14,"y":2}],"type":"coastline"},{"arc":[{"x":190985,"y":179518},{"x":-33,"y":29}],"type":"admin"},{"arc":[{"x":190952,"y":179547},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":190949,"y":179552},{"x":-10,"y":5}],"type":"admin"},{"arc":[{"x":190939,"y":179557},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":190934,"y":179562},{"x":-18,"y":24}],"type":"admin"},{"arc":[{"x":190916,"y":179586},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":190913,"y":179587},{"x":-21,"y":3}],"type":"admin"},{"arc":[{"x":190892,"y":179590},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":190887,"y":179594},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":190884,"y":179595},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":190874,"y":179594},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":190870,"y":179592},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":190860,"y":179594},{"x":-12,"y":-1}],"type":"admin"},{"arc":[{"x":190848,"y":179593},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":190845,"y":179592},{"x":-61,"y":6}],"type":"admin"},{"arc":[{"x":190784,"y":179598},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":190775,"y":179595},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":190773,"y":179596},{"x":0,"y":17}],"type":"admin"},{"arc":[{"x":190773,"y":179613},{"x":-11,"y":8}],"type":"coastline"},{"arc":[{"x":190762,"y":179621},{"x":-65,"y":64},{"x":-23,"y":-8}],"type":"admin"},{"arc":[{"x":190674,"y":179677},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":190667,"y":179680},{"x":-28,"y":20}],"type":"admin"},{"arc":[{"x":190639,"y":179700},{"x":-10,"y":5}],"type":"coastline"},{"arc":[{"x":190629,"y":179705},{"x":-3,"y":3}],"type":"admin"},{"arc":[{"x":190626,"y":179708},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":190618,"y":179709},{"x":-2,"y":6}],"type":"admin"},{"arc":[{"x":190616,"y":179715},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":190612,"y":179719},{"x":-10,"y":-1}],"type":"admin"},{"arc":[{"x":190602,"y":179718},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":190597,"y":179715},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":190595,"y":179714},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":190592,"y":179715},{"x":-33,"y":11}],"type":"admin"},{"arc":[{"x":190559,"y":179726},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":190556,"y":179728},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":190551,"y":179728},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":190546,"y":179726},{"x":-35,"y":2}],"type":"admin"},{"arc":[{"x":190511,"y":179728},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":190508,"y":179734},{"x":-2,"y":8}],"type":"admin"},{"arc":[{"x":190506,"y":179742},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":190505,"y":179751},{"x":-14,"y":25}],"type":"admin"},{"arc":[{"x":190491,"y":179776},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":190490,"y":179779},{"x":9,"y":77}],"type":"admin"},{"arc":[{"x":190499,"y":179856},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":190498,"y":179865},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":190496,"y":179870},{"x":-43,"y":38}],"type":"admin"},{"arc":[{"x":190453,"y":179908},{"x":-12,"y":8}],"type":"coastline"},{"arc":[{"x":190441,"y":179916},{"x":-15,"y":9}],"type":"admin"},{"arc":[{"x":190426,"y":179925},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":190418,"y":179928},{"x":-51,"y":39}],"type":"admin"},{"arc":[{"x":190367,"y":179967},{"x":-12,"y":11}],"type":"coastline"},{"arc":[{"x":190355,"y":179978},{"x":-8,"y":3}],"type":"admin"},{"arc":[{"x":190347,"y":179981},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":190340,"y":179985},{"x":-56,"y":2}],"type":"admin"},{"arc":[{"x":190284,"y":179987},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":190280,"y":179987},{"x":-105,"y":17}],"type":"area"},{"arc":[{"x":190175,"y":180004},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":190169,"y":180003},{"x":-78,"y":-52}],"type":"area"},{"arc":[{"x":190091,"y":179951},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":190087,"y":179949},{"x":-18,"y":-19}],"type":"area"},{"arc":[{"x":190069,"y":179930},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":190065,"y":179929},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":190062,"y":179928},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":190055,"y":179922},{"x":-37,"y":-23}],"type":"area"},{"arc":[{"x":190018,"y":179899},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":190008,"y":179900},{"x":-44,"y":-12}],"type":"area"},{"arc":[{"x":189964,"y":179888},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":189964,"y":179891},{"x":-49,"y":34}],"type":"area"},{"arc":[{"x":189915,"y":179925},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":189913,"y":179927},{"x":-38,"y":43}],"type":"area"},{"arc":[{"x":189875,"y":179970},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":189870,"y":179977},{"x":-12,"y":4}],"type":"area"},{"arc":[{"x":189858,"y":179981},{"x":-15,"y":3}],"type":"coastline"},{"arc":[{"x":189843,"y":179984},{"x":-15,"y":4}],"type":"area"},{"arc":[{"x":189828,"y":179988},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":189823,"y":179991},{"x":-25,"y":-6}],"type":"area"},{"arc":[{"x":189798,"y":179985},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":189798,"y":179984},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":189795,"y":179976},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":189794,"y":179974},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":189789,"y":179969},{"x":-28,"y":-37}],"type":"area"},{"arc":[{"x":189761,"y":179932},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":189757,"y":179924},{"x":-47,"y":-51}],"type":"area"},{"arc":[{"x":189710,"y":179873},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":189708,"y":179868},{"x":-42,"y":-13}],"type":"area"},{"arc":[{"x":189666,"y":179855},{"x":-1,"y":-6}],"type":"admin"},{"arc":[{"x":189665,"y":179849},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":189664,"y":179842},{"x":-43,"y":-91}],"type":"admin"},{"arc":[{"x":189621,"y":179751},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":189619,"y":179747},{"x":-23,"y":-3}],"type":"coastline"},{"arc":[{"x":189596,"y":179744},{"x":-53,"y":4},{"x":-144,"y":-81},{"x":9,"y":-39}],"type":"admin"},{"arc":[{"x":189408,"y":179628},{"x":7,"y":-30}],"type":"coastline"},{"arc":[{"x":189415,"y":179598},{"x":44,"y":-74}],"type":"admin"},{"arc":[{"x":189459,"y":179524},{"x":-2,"y":-17}],"type":"coastline"},{"arc":[{"x":189457,"y":179507},{"x":7,"y":-16}],"type":"admin"},{"arc":[{"x":189464,"y":179491},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":189471,"y":179492},{"x":61,"y":-27}],"type":"admin"},{"arc":[{"x":189532,"y":179465},{"x":10,"y":-6}],"type":"coastline"},{"arc":[{"x":189542,"y":179459},{"x":56,"y":-101}],"type":"admin"},{"arc":[{"x":189598,"y":179358},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":189600,"y":179350},{"x":7,"y":-22}],"type":"admin"},{"arc":[{"x":189607,"y":179328},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":189612,"y":179318},{"x":25,"y":-65},{"x":-15,"y":-49},{"x":50,"y":-58},{"x":-22,"y":-23}],"type":"admin"},{"arc":[{"x":189650,"y":179123},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":189647,"y":179114},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":189646,"y":179111},{"x":-14,"y":-11}],"type":"coastline"},{"arc":[{"x":189632,"y":179100},{"x":-8,"y":-10}],"type":"admin"},{"arc":[{"x":189624,"y":179090},{"x":-12,"y":-10}],"type":"coastline"},{"arc":[{"x":189612,"y":179080},{"x":-37,"y":-36},{"x":41,"y":-52}],"type":"admin"},{"arc":[{"x":189616,"y":178992},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":189616,"y":178988},{"x":-16,"y":-57}],"type":"admin"},{"arc":[{"x":189600,"y":178931},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":189595,"y":178926},{"x":-27,"y":-122},{"x":71,"y":-91},{"x":0,"y":-60}],"type":"admin"},{"arc":[{"x":189639,"y":178653},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":189642,"y":178645},{"x":17,"y":-36}],"type":"admin"},{"arc":[{"x":189659,"y":178609},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":189661,"y":178606},{"x":5,"y":-41}],"type":"admin"},{"arc":[{"x":189666,"y":178565},{"x":0,"y":-17}],"type":"coastline"},{"arc":[{"x":189666,"y":178548},{"x":12,"y":-22},{"x":46,"y":32},{"x":99,"y":-21},{"x":39,"y":26}],"type":"admin"},{"arc":[{"x":189862,"y":178563},{"x":16,"y":1}],"type":"coastline"},{"arc":[{"x":189878,"y":178564},{"x":103,"y":-32}],"type":"admin"},{"arc":[{"x":189981,"y":178532},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":189987,"y":178523},{"x":9,"y":-50}],"type":"admin"},{"arc":[{"x":189996,"y":178473},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":189992,"y":178464},{"x":5,"y":-24}],"type":"admin"},{"arc":[{"x":189997,"y":178440},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":190000,"y":178434},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":190002,"y":178426},{"x":1,"y":-24}],"type":"admin"},{"arc":[{"x":190003,"y":178402},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":190000,"y":178402},{"x":-33,"y":-7},{"x":-15,"y":-132}],"type":"admin"},{"arc":[{"x":189952,"y":178263},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":189951,"y":178261},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":189947,"y":178257},{"x":-70,"y":-50}],"type":"admin"},{"arc":[{"x":189877,"y":178207},{"x":2,"y":-13}],"type":"coastline"},{"arc":[{"x":189879,"y":178194},{"x":33,"y":-62},{"x":-52,"y":-46}],"type":"admin"},{"arc":[{"x":189860,"y":178086},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":189858,"y":178085},{"x":-10,"y":-74}],"type":"admin"},{"arc":[{"x":189848,"y":178011},{"x":154,"y":-71},{"x":51,"y":-62}],"type":"admin"},{"arc":[{"x":190053,"y":177878},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":190055,"y":177877},{"x":-8,"y":-16}],"type":"admin"},{"arc":[{"x":190047,"y":177861},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":190046,"y":177852},{"x":-15,"y":-29}],"type":"admin"},{"arc":[{"x":190031,"y":177823},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":190034,"y":177821},{"x":-7,"y":-62},{"x":62,"y":-99},{"x":75,"y":-11}],"type":"admin"},{"arc":[{"x":190164,"y":177649},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":190170,"y":177643},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":190175,"y":177640},{"x":40,"y":-2},{"x":40,"y":-85}],"type":"admin"},{"arc":[{"x":190255,"y":177553},{"x":12,"y":-32}],"type":"coastline"},{"arc":[{"x":190267,"y":177521},{"x":12,"y":-10}],"type":"admin"},{"arc":[{"x":190279,"y":177511},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":190280,"y":177509},{"x":7,"y":-26}],"type":"admin"},{"arc":[{"x":190287,"y":177483},{"x":1,"y":-16}],"type":"coastline"},{"arc":[{"x":190288,"y":177467},{"x":27,"y":-228},{"x":54,"y":-97}],"type":"admin"},{"arc":[{"x":190369,"y":177142},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":190372,"y":177136},{"x":29,"y":-38}],"type":"admin"},{"arc":[{"x":190401,"y":177098},{"x":70,"y":49},{"x":93,"y":-39}],"type":"admin"},{"arc":[{"x":190564,"y":177108},{"x":27,"y":-9}],"type":"coastline"},{"arc":[{"x":190591,"y":177099},{"x":15,"y":-5}],"type":"admin"},{"arc":[{"x":190606,"y":177094},{"x":54,"y":-6}],"type":"coastline"},{"arc":[{"x":190660,"y":177088},{"x":255,"y":10}],"type":"admin"},{"arc":[{"x":190915,"y":177098},{"x":103,"y":35}],"type":"area"},{"arc":[{"x":191018,"y":177133},{"x":26,"y":1}],"type":"coastline"},{"arc":[{"x":191044,"y":177134},{"x":88,"y":-27},{"x":69,"y":10}],"type":"area"},{"arc":[{"x":191201,"y":177117},{"x":28,"y":-2}],"type":"coastline"},{"arc":[{"x":191229,"y":177115},{"x":44,"y":-11}],"type":"area"},{"arc":[{"x":191273,"y":177104},{"x":4,"y":-18}],"type":"coastline"},{"arc":[{"x":191277,"y":177086},{"x":77,"y":-49},{"x":50,"y":-115}],"type":"area"},{"arc":[{"x":191404,"y":176922},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":191407,"y":176918},{"x":16,"y":-14}],"type":"area"},{"arc":[{"x":191423,"y":176904},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":191428,"y":176900},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":191431,"y":176896},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":191433,"y":176894},{"x":55,"y":10}],"type":"area"},{"arc":[{"x":191488,"y":176904},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":191494,"y":176910},{"x":114,"y":35}],"type":"area"},{"arc":[{"x":191608,"y":176945},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":191611,"y":176950},{"x":29,"y":39}],"type":"area"},{"arc":[{"x":191640,"y":176989},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":191642,"y":176991},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":191645,"y":176993},{"x":40,"y":15}],"type":"area"},{"arc":[{"x":191685,"y":177008},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":191691,"y":177006},{"x":73,"y":-5}],"type":"area"},{"arc":[{"x":191764,"y":177001},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":191770,"y":177001},{"x":137,"y":10}],"type":"area"},{"arc":[{"x":191907,"y":177011},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":191912,"y":177012},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":191918,"y":177014},{"x":32,"y":9}],"type":"area"},{"arc":[{"x":191950,"y":177023},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":191955,"y":177024},{"x":12,"y":3}],"type":"area"},{"arc":[{"x":191967,"y":177027},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":191973,"y":177028},{"x":12,"y":4}],"type":"area"},{"arc":[{"x":191985,"y":177032},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":191992,"y":177033},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":191999,"y":177035},{"x":12,"y":2}],"type":"coastline"},{"arc":[{"x":192011,"y":177037},{"x":63,"y":15}],"type":"area"},{"arc":[{"x":192074,"y":177052},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":192081,"y":177053},{"x":6,"y":1}],"type":"area"},{"arc":[{"x":192087,"y":177054},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":192093,"y":177056},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":192096,"y":177055},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":192100,"y":177052},{"x":35,"y":-21}],"type":"area"},{"arc":[{"x":192135,"y":177031},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":192141,"y":177027},{"x":37,"y":-28}],"type":"area"},{"arc":[{"x":192178,"y":176999},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":192181,"y":176996},{"x":33,"y":-41}],"type":"area"},{"arc":[{"x":192214,"y":176955},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":192215,"y":176949},{"x":1,"y":-22}],"type":"area"},{"arc":[{"x":192216,"y":176927},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":192221,"y":176925},{"x":27,"y":-16}],"type":"area"},{"arc":[{"x":192248,"y":176909},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":192250,"y":176905},{"x":-1,"y":-15}],"type":"area"},{"arc":[{"x":192249,"y":176890},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":192251,"y":176887},{"x":9,"y":-3}],"type":"area"},{"arc":[{"x":192260,"y":176884},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":192264,"y":176883},{"x":48,"y":-10}],"type":"area"},{"arc":[{"x":192312,"y":176873},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":192312,"y":176869},{"x":19,"y":-26}],"type":"area"},{"arc":[{"x":192331,"y":176843},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":192334,"y":176841},{"x":20,"y":-28}],"type":"area"},{"arc":[{"x":192354,"y":176813},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":192360,"y":176813},{"x":11,"y":-6}],"type":"area"},{"arc":[{"x":192371,"y":176807},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":192374,"y":176801},{"x":0,"y":-5}],"type":"area"},{"arc":[{"x":192374,"y":176796},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":192373,"y":176789},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":192372,"y":176784},{"x":49,"y":15}],"type":"area"},{"arc":[{"x":192421,"y":176799},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":192422,"y":176800},{"x":87,"y":45},{"x":123,"y":-167},{"x":-28,"y":-86}],"type":"area"},{"arc":[{"x":192604,"y":176592},{"x":4,"y":-15}],"type":"coastline"},{"arc":[{"x":192608,"y":176577},{"x":7,"y":-6}],"type":"area"},{"arc":[{"x":192615,"y":176571},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":192623,"y":176571},{"x":9,"y":-11}],"type":"area"},{"arc":[{"x":192632,"y":176560},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":192635,"y":176556},{"x":38,"y":-17}],"type":"area"},{"arc":[{"x":192673,"y":176539},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":192676,"y":176536},{"x":14,"y":-41}],"type":"area"},{"arc":[{"x":192690,"y":176495},{"x":14,"y":-3}],"type":"coastline"},{"arc":[{"x":192704,"y":176492},{"x":103,"y":-45}],"type":"area"},{"arc":[{"x":192807,"y":176447},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":192811,"y":176446},{"x":16,"y":-29}],"type":"area"},{"arc":[{"x":192827,"y":176417},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":192830,"y":176414},{"x":8,"y":-25}],"type":"area"},{"arc":[{"x":192838,"y":176389},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":192840,"y":176387},{"x":29,"y":-9}],"type":"area"},{"arc":[{"x":192869,"y":176378},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":192874,"y":176378},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":192879,"y":176380},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":192882,"y":176380},{"x":0,"y":35},{"x":37,"y":-5},{"x":23,"y":42}],"type":"area"},{"arc":[{"x":192942,"y":176452},{"x":7,"y":29}],"type":"coastline"},{"arc":[{"x":192949,"y":176481},{"x":36,"y":-82}],"type":"area"},{"arc":[{"x":192985,"y":176399},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":192988,"y":176395},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":192992,"y":176391},{"x":65,"y":-40}],"type":"area"},{"arc":[{"x":193057,"y":176351},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":193061,"y":176350},{"x":44,"y":3},{"x":22,"y":-25}],"type":"area"},{"arc":[{"x":193127,"y":176328},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":193132,"y":176327},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":193134,"y":176326},{"x":14,"y":-16}],"type":"area"},{"arc":[{"x":193148,"y":176310},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":193151,"y":176304},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":193152,"y":176302},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":193155,"y":176301},{"x":12,"y":-18}],"type":"area"},{"arc":[{"x":193167,"y":176283},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":193169,"y":176280},{"x":18,"y":-33}],"type":"area"},{"arc":[{"x":193187,"y":176247},{"x":298,"y":132},{"x":67,"y":7},{"x":-50,"y":2},{"x":40,"y":3},{"x":13,"y":28},{"x":9,"y":-31},{"x":-8,"y":31},{"x":31,"y":13},{"x":348,"y":124},{"x":191,"y":50},{"x":31,"y":-9},{"x":-6,"y":-35},{"x":6,"y":35},{"x":22,"y":-1},{"x":6,"y":-49},{"x":-3,"y":61},{"x":34,"y":10},{"x":-18,"y":-64},{"x":30,"y":8},{"x":13,"y":60},{"x":242,"y":83},{"x":1053,"y":213},{"x":95,"y":-25},{"x":-51,"y":24},{"x":61,"y":5},{"x":6,"y":-29},{"x":-3,"y":34},{"x":300,"y":50},{"x":108,"y":5},{"x":5,"y":-23},{"x":-3,"y":22},{"x":30,"y":-14},{"x":143,"y":41},{"x":563,"y":61}],"type":"coastline"},{"arc":[{"x":196787,"y":177118},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":183741,"y":171700},{"x":-52,"y":7},{"x":71,"y":-2},{"x":-19,"y":-5}],"type":"coastline"},{"arc":[{"x":185761,"y":173170},{"x":-40,"y":17},{"x":26,"y":-31},{"x":14,"y":14}],"type":"coastline"},{"arc":[{"x":183491,"y":176723},{"x":-45,"y":-138},{"x":-50,"y":-54},{"x":27,"y":-45},{"x":-41,"y":-104},{"x":-189,"y":-192},{"x":-129,"y":-245},{"x":-39,"y":9},{"x":-44,"y":-44},{"x":6,"y":-46},{"x":-59,"y":-115},{"x":-98,"y":27},{"x":-72,"y":78},{"x":-116,"y":-165},{"x":-27,"y":26},{"x":-45,"y":-8},{"x":-55,"y":48},{"x":-55,"y":-51},{"x":-71,"y":17},{"x":-97,"y":-53},{"x":-38,"y":24},{"x":-11,"y":72},{"x":-177,"y":1},{"x":-7,"y":16},{"x":-25,"y":-31},{"x":-143,"y":-49},{"x":-26,"y":-106},{"x":-100,"y":-28},{"x":-213,"y":72},{"x":-77,"y":-49},{"x":-14,"y":-39},{"x":-88,"y":-30},{"x":-82,"y":20},{"x":-76,"y":57},{"x":-148,"y":-73},{"x":-85,"y":-82},{"x":-34,"y":23},{"x":-75,"y":-17},{"x":-97,"y":-54},{"x":-3,"y":-56},{"x":-73,"y":-97},{"x":-120,"y":-84}],"type":"admin"},{"arc":[{"x":180580,"y":175158},{"x":62,"y":-82},{"x":88,"y":-51},{"x":103,"y":-148},{"x":77,"y":13},{"x":24,"y":-219},{"x":73,"y":-18},{"x":18,"y":-62},{"x":52,"y":-36},{"x":-11,"y":-131},{"x":-81,"y":-137},{"x":51,"y":-54},{"x":1,"y":-151},{"x":104,"y":-94},{"x":-21,"y":-120},{"x":154,"y":-183},{"x":72,"y":-37},{"x":53,"y":24},{"x":157,"y":-88},{"x":-90,"y":-132},{"x":86,"y":-52},{"x":84,"y":-15},{"x":90,"y":23},{"x":66,"y":66},{"x":111,"y":54},{"x":328,"y":6},{"x":44,"y":24},{"x":111,"y":-51},{"x":53,"y":0},{"x":33,"y":41},{"x":43,"y":-59},{"x":90,"y":-21},{"x":34,"y":12},{"x":-5,"y":36},{"x":78,"y":94},{"x":62,"y":-4},{"x":41,"y":-46},{"x":36,"y":16},{"x":37,"y":-200},{"x":54,"y":-23},{"x":43,"y":-73},{"x":-24,"y":-107},{"x":46,"y":-198},{"x":-20,"y":-110},{"x":46,"y":-59},{"x":10,"y":-99},{"x":55,"y":-9},{"x":79,"y":-58},{"x":16,"y":-83},{"x":30,"y":-21},{"x":8,"y":-76},{"x":-53,"y":-145},{"x":133,"y":-136},{"x":5,"y":-52},{"x":84,"y":-46},{"x":-14,"y":-64},{"x":62,"y":-68},{"x":-7,"y":-38},{"x":31,"y":-43},{"x":38,"y":-1},{"x":-8,"y":-44},{"x":54,"y":-10},{"x":13,"y":-36}],"type":"admin"},{"arc":[{"x":183569,"y":171777},{"x":38,"y":-34},{"x":-24,"y":-3},{"x":54,"y":-13},{"x":-5,"y":-40},{"x":53,"y":31},{"x":-23,"y":15},{"x":-16,"y":-18},{"x":9,"y":66},{"x":45,"y":-24},{"x":-14,"y":-29},{"x":168,"y":150},{"x":41,"y":11},{"x":16,"y":-23},{"x":16,"y":34},{"x":66,"y":-2},{"x":77,"y":60},{"x":37,"y":-18},{"x":52,"y":67},{"x":28,"y":4},{"x":8,"y":-22},{"x":33,"y":60},{"x":80,"y":0},{"x":-23,"y":1},{"x":155,"y":111},{"x":55,"y":3},{"x":-10,"y":20},{"x":82,"y":13},{"x":66,"y":45},{"x":8,"y":-21},{"x":42,"y":12},{"x":-45,"y":-2},{"x":37,"y":45},{"x":81,"y":-10},{"x":55,"y":54},{"x":126,"y":57},{"x":41,"y":56},{"x":61,"y":-15},{"x":30,"y":55},{"x":35,"y":-4},{"x":53,"y":66},{"x":114,"y":62},{"x":-36,"y":84},{"x":49,"y":61},{"x":48,"y":15},{"x":20,"y":60},{"x":110,"y":44},{"x":22,"y":82},{"x":44,"y":-1},{"x":7,"y":31},{"x":61,"y":-12},{"x":11,"y":53},{"x":53,"y":16},{"x":20,"y":87},{"x":-31,"y":-9},{"x":3,"y":48},{"x":8,"y":-44},{"x":9,"y":64},{"x":50,"y":22},{"x":3,"y":52},{"x":62,"y":32},{"x":31,"y":53},{"x":59,"y":-16},{"x":118,"y":91},{"x":4,"y":31},{"x":16,"y":-26},{"x":55,"y":12},{"x":110,"y":165},{"x":21,"y":15},{"x":32,"y":-23},{"x":-10,"y":48},{"x":26,"y":22},{"x":-22,"y":53},{"x":43,"y":-51},{"x":114,"y":174},{"x":317,"y":159}],"type":"coastline"},{"arc":[{"x":186698,"y":173989},{"x":9,"y":53},{"x":37,"y":18},{"x":-1,"y":195},{"x":129,"y":59},{"x":-36,"y":124},{"x":18,"y":35},{"x":-25,"y":-2},{"x":-8,"y":30},{"x":42,"y":13},{"x":-28,"y":113},{"x":79,"y":2}],"type":"area"},{"arc":[{"x":186914,"y":174629},{"x":-98,"y":13},{"x":-43,"y":-30},{"x":7,"y":24},{"x":-56,"y":-39},{"x":-39,"y":26},{"x":-78,"y":-41},{"x":23,"y":-88},{"x":-121,"y":3},{"x":24,"y":61},{"x":-42,"y":40},{"x":9,"y":114},{"x":-58,"y":62},{"x":33,"y":18},{"x":0,"y":42},{"x":-84,"y":11},{"x":-111,"y":96},{"x":-194,"y":-47},{"x":-33,"y":64},{"x":1,"y":121},{"x":-36,"y":3},{"x":1,"y":29},{"x":89,"y":4},{"x":76,"y":-53},{"x":3,"y":37},{"x":71,"y":24},{"x":-3,"y":45},{"x":36,"y":6},{"x":-14,"y":39},{"x":37,"y":14},{"x":6,"y":-16},{"x":233,"y":96},{"x":48,"y":-26},{"x":36,"y":-112},{"x":171,"y":-67},{"x":65,"y":10},{"x":-3,"y":-41},{"x":42,"y":-53},{"x":58,"y":-17},{"x":7,"y":65},{"x":55,"y":38}],"type":"admin"},{"arc":[{"x":187032,"y":175104},{"x":-71,"y":47},{"x":-10,"y":140},{"x":-45,"y":85},{"x":-79,"y":50},{"x":-24,"y":-15},{"x":-132,"y":188},{"x":-82,"y":-1},{"x":-46,"y":26},{"x":-12,"y":75},{"x":-172,"y":146},{"x":-19,"y":65},{"x":-89,"y":13},{"x":-60,"y":-36},{"x":-88,"y":-8},{"x":-40,"y":154},{"x":35,"y":53},{"x":-19,"y":86},{"x":40,"y":57},{"x":-41,"y":25},{"x":-46,"y":146},{"x":-63,"y":10},{"x":2,"y":-27},{"x":-13,"y":37},{"x":-50,"y":-26},{"x":-62,"y":22},{"x":-37,"y":-30},{"x":-62,"y":65},{"x":-82,"y":-45},{"x":-56,"y":-67},{"x":-84,"y":-28},{"x":-79,"y":55},{"x":-67,"y":-40},{"x":-134,"y":23},{"x":-85,"y":-47},{"x":-81,"y":8},{"x":4,"y":22},{"x":-124,"y":-50},{"x":-332,"y":136},{"x":-254,"y":-81},{"x":-107,"y":17},{"x":-99,"y":59},{"x":-91,"y":95},{"x":-66,"y":154},{"x":-194,"y":21},{"x":-169,"y":80},{"x":-156,"y":-40}],"type":"admin"},{"arc":[{"x":188796,"y":174602},{"x":-67,"y":-28},{"x":-154,"y":-178},{"x":155,"y":177},{"x":185,"y":77},{"x":-119,"y":-48}],"type":"coastline"},{"arc":[{"x":190288,"y":177467},{"x":-1,"y":16}],"type":"coastline"},{"arc":[{"x":190280,"y":177509},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":190267,"y":177521},{"x":-12,"y":32}],"type":"coastline"},{"arc":[{"x":190175,"y":177640},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":190170,"y":177643},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":190034,"y":177821},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":190046,"y":177852},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":190055,"y":177877},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":189848,"y":178011},{"x":-79,"y":-162},{"x":-116,"y":-40},{"x":-37,"y":-86},{"x":-79,"y":-42},{"x":-2,"y":-46},{"x":-179,"y":77},{"x":-27,"y":-23},{"x":-74,"y":14},{"x":-18,"y":-31},{"x":-93,"y":3},{"x":3,"y":-35},{"x":35,"y":-17},{"x":-44,"y":-31},{"x":-101,"y":11},{"x":-51,"y":95},{"x":0,"y":76},{"x":32,"y":45},{"x":-22,"y":51},{"x":-49,"y":63},{"x":-101,"y":41},{"x":-114,"y":-99},{"x":-27,"y":26},{"x":-94,"y":13},{"x":-9,"y":26},{"x":-60,"y":-27},{"x":-30,"y":-40},{"x":25,"y":-111},{"x":-60,"y":-56},{"x":-248,"y":28},{"x":-64,"y":67},{"x":14,"y":88},{"x":-20,"y":13},{"x":-107,"y":-54},{"x":-158,"y":-173},{"x":-46,"y":11},{"x":-43,"y":-38},{"x":-67,"y":30},{"x":-65,"y":-41},{"x":-49,"y":63}],"type":"admin"},{"arc":[{"x":187624,"y":177700},{"x":-55,"y":-66},{"x":-69,"y":-224},{"x":-67,"y":-41},{"x":-54,"y":18},{"x":-137,"y":-28},{"x":-76,"y":141},{"x":-29,"y":128},{"x":-48,"y":39},{"x":-130,"y":-3}],"type":"admin"},{"arc":[{"x":186959,"y":177664},{"x":-44,"y":-54},{"x":22,"y":-238},{"x":-22,"y":-64},{"x":-40,"y":-62},{"x":-44,"y":0},{"x":-129,"y":88},{"x":-36,"y":-123},{"x":-56,"y":14},{"x":-4,"y":-54},{"x":-54,"y":-40},{"x":6,"y":-104},{"x":-92,"y":-92},{"x":-7,"y":-44},{"x":-85,"y":-62},{"x":-7,"y":-23},{"x":38,"y":-21}],"type":"admin"},{"arc":[{"x":186405,"y":176785},{"x":178,"y":-74},{"x":45,"y":-112},{"x":-35,"y":-169},{"x":42,"y":-29},{"x":176,"y":-32},{"x":94,"y":-135},{"x":-13,"y":-29},{"x":-19,"y":26},{"x":24,"y":-119},{"x":160,"y":15},{"x":35,"y":-23},{"x":34,"y":-132},{"x":-18,"y":-47},{"x":24,"y":-21},{"x":11,"y":13},{"x":72,"y":-51},{"x":51,"y":50},{"x":34,"y":-17},{"x":-5,"y":-34},{"x":84,"y":-95},{"x":30,"y":67},{"x":103,"y":63},{"x":109,"y":-95},{"x":94,"y":-220},{"x":51,"y":5},{"x":-2,"y":-145},{"x":-33,"y":-31},{"x":-81,"y":61},{"x":-20,"y":-38},{"x":-55,"y":-17},{"x":-53,"y":-120},{"x":38,"y":-43},{"x":-29,"y":-14},{"x":-123,"y":28},{"x":-4,"y":50},{"x":-36,"y":14},{"x":7,"y":-26},{"x":-29,"y":3},{"x":-36,"y":-66},{"x":24,"y":-97},{"x":46,"y":-11},{"x":54,"y":-68},{"x":65,"y":-184},{"x":-71,"y":-6},{"x":-60,"y":102},{"x":-144,"y":-2},{"x":5,"y":-28},{"x":64,"y":-21},{"x":-93,"y":19},{"x":-47,"y":50},{"x":-87,"y":15},{"x":-1,"y":34}],"type":"admin"},{"arc":[{"x":187065,"y":175049},{"x":-40,"y":-11},{"x":-16,"y":-47},{"x":26,"y":-17},{"x":-30,"y":-104},{"x":26,"y":-6},{"x":-29,"y":-35},{"x":120,"y":-184},{"x":60,"y":-31},{"x":29,"y":-97},{"x":-161,"y":34},{"x":-84,"y":-10},{"x":-21,"y":85},{"x":-31,"y":3}],"type":"admin"},{"arc":[{"x":186698,"y":173989},{"x":406,"y":162},{"x":933,"y":283},{"x":244,"y":40},{"x":40,"y":-84},{"x":92,"y":-55},{"x":-16,"y":30},{"x":-75,"y":26},{"x":-41,"y":83},{"x":40,"y":13},{"x":-1,"y":-21},{"x":17,"y":22},{"x":5,"y":-73},{"x":76,"y":51},{"x":-20,"y":54},{"x":28,"y":30},{"x":76,"y":18},{"x":26,"y":-64},{"x":69,"y":28},{"x":8,"y":-20},{"x":-22,"y":97},{"x":51,"y":23},{"x":13,"y":115},{"x":109,"y":26},{"x":14,"y":-40},{"x":-52,"y":-10},{"x":-33,"y":-73},{"x":41,"y":-70},{"x":181,"y":73},{"x":-20,"y":66},{"x":107,"y":64},{"x":37,"y":-6},{"x":6,"y":23}],"type":"coastline"},{"arc":[{"x":189037,"y":174800},{"x":-116,"y":145},{"x":45,"y":118},{"x":147,"y":24},{"x":-2,"y":35},{"x":50,"y":7},{"x":35,"y":-47},{"x":37,"y":21},{"x":7,"y":71},{"x":-52,"y":224},{"x":37,"y":34},{"x":-107,"y":-15},{"x":-2,"y":64},{"x":-31,"y":26},{"x":6,"y":96},{"x":-70,"y":-26},{"x":64,"y":293},{"x":75,"y":87},{"x":25,"y":126},{"x":71,"y":65},{"x":10,"y":43},{"x":-26,"y":21},{"x":89,"y":152},{"x":-15,"y":156},{"x":23,"y":72},{"x":160,"y":34},{"x":258,"y":121},{"x":36,"y":24},{"x":23,"y":81},{"x":152,"y":-12},{"x":137,"y":27},{"x":170,"y":206},{"x":128,"y":25}],"type":"admin"},{"arc":[{"x":190372,"y":177136},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":191865,"y":171804},{"x":-47,"y":87},{"x":10,"y":-37},{"x":-33,"y":23},{"x":-12,"y":30},{"x":19,"y":-1},{"x":-89,"y":44},{"x":-40,"y":-108},{"x":-63,"y":-59},{"x":-3,"y":16},{"x":-45,"y":-17},{"x":26,"y":-10},{"x":-36,"y":-3},{"x":-12,"y":35},{"x":-18,"y":-66},{"x":19,"y":-31},{"x":3,"y":16},{"x":59,"y":-29},{"x":67,"y":13},{"x":29,"y":-20},{"x":-8,"y":23},{"x":74,"y":83},{"x":100,"y":11}],"type":"coastline"},{"arc":[{"x":170330,"y":179742},{"x":-27,"y":-32},{"x":-39,"y":58},{"x":-141,"y":-11},{"x":-83,"y":32},{"x":-79,"y":-48},{"x":-13,"y":38},{"x":-68,"y":40},{"x":24,"y":46},{"x":-72,"y":45},{"x":76,"y":19},{"x":28,"y":-31},{"x":42,"y":37},{"x":7,"y":77},{"x":-109,"y":61},{"x":25,"y":80},{"x":-41,"y":101},{"x":118,"y":166},{"x":-21,"y":77},{"x":172,"y":165},{"x":-59,"y":12},{"x":-52,"y":45},{"x":-20,"y":74},{"x":23,"y":39},{"x":42,"y":0},{"x":-30,"y":88},{"x":28,"y":-10},{"x":-48,"y":109},{"x":52,"y":84},{"x":-16,"y":34},{"x":-55,"y":-17},{"x":-2,"y":89},{"x":86,"y":121},{"x":-4,"y":26},{"x":-69,"y":-3},{"x":6,"y":41}],"type":"area"},{"arc":[{"x":170011,"y":181394},{"x":-42,"y":74},{"x":-44,"y":2},{"x":-92,"y":-147},{"x":-62,"y":22},{"x":-113,"y":-59},{"x":-91,"y":58},{"x":-5,"y":42},{"x":-101,"y":-78},{"x":-7,"y":33},{"x":-57,"y":-9},{"x":-30,"y":-107},{"x":36,"y":17},{"x":31,"y":-61},{"x":27,"y":3},{"x":3,"y":-58},{"x":-42,"y":-60},{"x":-70,"y":32},{"x":-47,"y":-54},{"x":50,"y":-172},{"x":-29,"y":-24},{"x":-177,"y":-17},{"x":-22,"y":31},{"x":28,"y":60},{"x":57,"y":-74},{"x":41,"y":15},{"x":-40,"y":19},{"x":-13,"y":43},{"x":25,"y":-11},{"x":-22,"y":27},{"x":42,"y":40},{"x":-44,"y":-15},{"x":8,"y":31},{"x":-25,"y":13},{"x":1,"y":-37},{"x":-40,"y":-7},{"x":-1,"y":60},{"x":28,"y":26},{"x":-54,"y":-50},{"x":-31,"y":25},{"x":0,"y":101},{"x":-149,"y":-9},{"x":36,"y":-69},{"x":-32,"y":-15},{"x":-28,"y":30},{"x":-45,"y":-25},{"x":-6,"y":45},{"x":-62,"y":56},{"x":42,"y":16},{"x":7,"y":44},{"x":-41,"y":91},{"x":36,"y":30},{"x":48,"y":-8},{"x":-26,"y":66},{"x":-107,"y":43},{"x":-50,"y":-37},{"x":-70,"y":-9},{"x":-36,"y":34},{"x":3,"y":82},{"x":129,"y":50},{"x":57,"y":-16},{"x":38,"y":29},{"x":5,"y":90},{"x":-37,"y":91},{"x":58,"y":82}],"type":"admin"},{"arc":[{"x":168857,"y":181819},{"x":15,"y":49},{"x":-34,"y":73},{"x":-36,"y":11},{"x":-14,"y":46},{"x":-133,"y":57},{"x":-112,"y":187}],"type":"area"},{"arc":[{"x":168543,"y":182242},{"x":-49,"y":-53},{"x":-176,"y":-93},{"x":-22,"y":-47},{"x":-59,"y":6},{"x":-69,"y":-44},{"x":-134,"y":59},{"x":8,"y":70},{"x":-74,"y":57},{"x":-35,"y":-1},{"x":-48,"y":92},{"x":-33,"y":-66},{"x":-103,"y":-3},{"x":-37,"y":-30},{"x":-51,"y":47},{"x":-60,"y":-42},{"x":-161,"y":22},{"x":-38,"y":31},{"x":-25,"y":-27}],"type":"admin"},{"arc":[{"x":167377,"y":182220},{"x":-11,"y":-129},{"x":-81,"y":-108}],"type":"admin"},{"arc":[{"x":167285,"y":181983},{"x":44,"y":-127},{"x":74,"y":-22},{"x":-1,"y":-40},{"x":75,"y":-22},{"x":-12,"y":-25},{"x":41,"y":-14},{"x":16,"y":-144},{"x":46,"y":-48},{"x":47,"y":-182},{"x":59,"y":-34},{"x":25,"y":-81},{"x":97,"y":-86},{"x":-31,"y":-88},{"x":71,"y":-156},{"x":5,"y":-104},{"x":135,"y":-314},{"x":91,"y":-98},{"x":-30,"y":-30},{"x":59,"y":-42},{"x":165,"y":15},{"x":-48,"y":-233},{"x":52,"y":-58},{"x":-38,"y":-220},{"x":20,"y":-178},{"x":-49,"y":-116},{"x":16,"y":-82},{"x":-48,"y":-39},{"x":19,"y":-26},{"x":-36,"y":-84},{"x":23,"y":-41},{"x":24,"y":21},{"x":-49,"y":-146},{"x":8,"y":-226},{"x":171,"y":-187},{"x":102,"y":-4},{"x":33,"y":-65},{"x":-16,"y":-60},{"x":30,"y":-36},{"x":-28,"y":-66},{"x":182,"y":-95},{"x":-45,"y":-49},{"x":-106,"y":-28},{"x":-56,"y":-73},{"x":-118,"y":12},{"x":-21,"y":-25},{"x":16,"y":-47},{"x":-73,"y":-28},{"x":-26,"y":14},{"x":-87,"y":-136},{"x":53,"y":-83},{"x":-38,"y":-23},{"x":-33,"y":-91},{"x":55,"y":-48},{"x":-45,"y":-50},{"x":10,"y":-25},{"x":-43,"y":-13},{"x":9,"y":-60},{"x":-120,"y":-12},{"x":41,"y":-57},{"x":-45,"y":-27}],"type":"area"},{"arc":[{"x":167957,"y":177551},{"x":22,"y":-37},{"x":-31,"y":-95},{"x":56,"y":-59},{"x":-72,"y":-126},{"x":28,"y":-62},{"x":63,"y":-17},{"x":34,"y":-44},{"x":66,"y":-226},{"x":57,"y":-61}],"type":"admin"},{"arc":[{"x":168180,"y":176824},{"x":141,"y":59},{"x":10,"y":38},{"x":48,"y":1},{"x":40,"y":55},{"x":129,"y":29},{"x":287,"y":-73},{"x":326,"y":47},{"x":47,"y":67},{"x":61,"y":5},{"x":73,"y":53},{"x":56,"y":164},{"x":251,"y":256},{"x":215,"y":99}],"type":"area"},{"arc":[{"x":169864,"y":177624},{"x":-76,"y":199},{"x":-25,"y":229},{"x":28,"y":40},{"x":-80,"y":82},{"x":1,"y":99},{"x":-83,"y":65},{"x":-33,"y":-7},{"x":30,"y":78},{"x":-16,"y":111},{"x":195,"y":16},{"x":62,"y":-24},{"x":55,"y":-66},{"x":128,"y":62},{"x":50,"y":-54},{"x":65,"y":-10},{"x":17,"y":-57},{"x":96,"y":33},{"x":47,"y":-20},{"x":50,"y":17},{"x":37,"y":-121},{"x":49,"y":-9},{"x":66,"y":-99},{"x":65,"y":-24},{"x":39,"y":57},{"x":59,"y":6},{"x":1,"y":77},{"x":74,"y":45},{"x":46,"y":78},{"x":117,"y":13},{"x":26,"y":82},{"x":49,"y":30},{"x":33,"y":72},{"x":-99,"y":79},{"x":5,"y":109},{"x":42,"y":-1},{"x":20,"y":50},{"x":63,"y":-15},{"x":62,"y":62},{"x":84,"y":29},{"x":172,"y":-20},{"x":113,"y":106},{"x":52,"y":151},{"x":196,"y":121},{"x":93,"y":101}],"type":"admin"},{"arc":[{"x":171839,"y":179396},{"x":-66,"y":46}],"type":"area"},{"arc":[{"x":171773,"y":179442},{"x":-110,"y":14},{"x":-95,"y":-61},{"x":-62,"y":28},{"x":-104,"y":-74},{"x":-130,"y":-23},{"x":-219,"y":99},{"x":-106,"y":-18},{"x":-69,"y":36},{"x":-66,"y":88},{"x":-168,"y":13},{"x":-69,"y":78},{"x":-66,"y":-26},{"x":-42,"y":14},{"x":-6,"y":96},{"x":26,"y":46},{"x":-157,"y":-10}],"type":"admin"},{"arc":[{"x":166740,"y":179581},{"x":-2,"y":-26},{"x":38,"y":24},{"x":-36,"y":2}],"type":"admin"},{"arc":[{"x":167957,"y":177551},{"x":-58,"y":10},{"x":-46,"y":44},{"x":7,"y":47},{"x":-91,"y":20},{"x":-57,"y":63},{"x":2,"y":149},{"x":-187,"y":174},{"x":-40,"y":81},{"x":-6,"y":102},{"x":-65,"y":59},{"x":-7,"y":94},{"x":-82,"y":95},{"x":67,"y":57},{"x":-13,"y":52},{"x":-50,"y":-5},{"x":-29,"y":30},{"x":11,"y":103},{"x":-44,"y":59},{"x":-47,"y":203},{"x":-48,"y":33},{"x":25,"y":18},{"x":-43,"y":70},{"x":5,"y":101},{"x":-24,"y":-10},{"x":-27,"y":116},{"x":-20,"y":-4},{"x":51,"y":77},{"x":-105,"y":139},{"x":-4,"y":205}],"type":"admin"},{"arc":[{"x":167032,"y":179733},{"x":-28,"y":-29},{"x":-138,"y":-16},{"x":21,"y":-32}],"type":"area"},{"arc":[{"x":166887,"y":179656},{"x":38,"y":-1},{"x":-41,"y":-75},{"x":-131,"y":-25},{"x":30,"y":-59},{"x":-33,"y":-73},{"x":21,"y":-43},{"x":-57,"y":-39}],"type":"admin"},{"arc":[{"x":166714,"y":179341},{"x":-17,"y":-215},{"x":40,"y":-122},{"x":-28,"y":-50},{"x":20,"y":-67},{"x":41,"y":-20},{"x":-17,"y":-86},{"x":42,"y":-61},{"x":14,"y":-88},{"x":112,"y":-73},{"x":21,"y":-118},{"x":43,"y":-77},{"x":33,"y":-10},{"x":6,"y":-53},{"x":-49,"y":-89},{"x":39,"y":-232},{"x":43,"y":-52},{"x":75,"y":-25},{"x":98,"y":-266},{"x":-53,"y":-25},{"x":-73,"y":-133},{"x":-107,"y":30},{"x":-6,"y":-28}],"type":"admin"},{"arc":[{"x":166991,"y":177481},{"x":-9,"y":-70},{"x":56,"y":-67},{"x":-84,"y":36},{"x":-42,"y":-37},{"x":-45,"y":32},{"x":-83,"y":-64},{"x":13,"y":-61},{"x":-44,"y":-55},{"x":-91,"y":17},{"x":-87,"y":-22},{"x":41,"y":-80},{"x":-53,"y":-24},{"x":-10,"y":-96},{"x":-63,"y":-35},{"x":36,"y":-97},{"x":-69,"y":-80},{"x":-46,"y":-144},{"x":34,"y":-187},{"x":-42,"y":-60},{"x":71,"y":-119}],"type":"admin"},{"arc":[{"x":166474,"y":176268},{"x":65,"y":-170},{"x":124,"y":-83},{"x":12,"y":-69},{"x":44,"y":-33},{"x":84,"y":2},{"x":102,"y":41},{"x":19,"y":60},{"x":55,"y":17},{"x":9,"y":44},{"x":53,"y":28},{"x":39,"y":-20},{"x":125,"y":49},{"x":163,"y":-70},{"x":12,"y":167},{"x":129,"y":-25},{"x":170,"y":163},{"x":122,"y":9},{"x":40,"y":65},{"x":108,"y":24},{"x":56,"y":114}],"type":"area"},{"arc":[{"x":168005,"y":176581},{"x":11,"y":19},{"x":80,"y":2},{"x":13,"y":49},{"x":72,"y":3},{"x":64,"y":56},{"x":-65,"y":114}],"type":"admin"},{"arc":[{"x":150433,"y":171776},{"x":-23,"y":-35},{"x":29,"y":-38},{"x":39,"y":30}],"type":"admin"},{"arc":[{"x":150478,"y":171733},{"x":-45,"y":43}],"type":"admin"},{"arc":[{"x":150433,"y":171776},{"x":-18,"y":36},{"x":34,"y":6},{"x":-2,"y":52},{"x":-122,"y":51},{"x":72,"y":-10},{"x":43,"y":42},{"x":63,"y":11},{"x":55,"y":91},{"x":-15,"y":53},{"x":36,"y":65},{"x":-116,"y":115}],"type":"admin"},{"arc":[{"x":150463,"y":172288},{"x":-90,"y":19},{"x":-113,"y":-44},{"x":-70,"y":25}],"type":"area"},{"arc":[{"x":150190,"y":172288},{"x":-42,"y":23},{"x":-89,"y":-5},{"x":-53,"y":-4},{"x":-25,"y":-33},{"x":-36,"y":28},{"x":-3,"y":-27},{"x":-62,"y":23},{"x":-38,"y":62}],"type":"area"},{"arc":[{"x":149842,"y":172355},{"x":-114,"y":-18},{"x":26,"y":-43},{"x":-16,"y":-152},{"x":34,"y":-17},{"x":-25,"y":-50},{"x":21,"y":-13},{"x":-12,"y":-67},{"x":-117,"y":78}],"type":"area"},{"arc":[{"x":149639,"y":172073},{"x":6,"y":-134},{"x":29,"y":-50},{"x":75,"y":15},{"x":40,"y":-90},{"x":49,"y":-20}],"type":"admin"},{"arc":[{"x":149838,"y":171794},{"x":2,"y":76},{"x":34,"y":16},{"x":75,"y":-76},{"x":99,"y":40},{"x":80,"y":-31},{"x":23,"y":-34},{"x":72,"y":17},{"x":56,"y":-43},{"x":58,"y":9},{"x":-7,"y":35},{"x":37,"y":16},{"x":66,"y":-43}],"type":"admin"},{"arc":[{"x":150663,"y":172582},{"x":-148,"y":121},{"x":-19,"y":52},{"x":-182,"y":12},{"x":-8,"y":-20}],"type":"area"},{"arc":[{"x":150306,"y":172747},{"x":-23,"y":-37},{"x":42,"y":-1},{"x":-31,"y":-81},{"x":-83,"y":-101},{"x":67,"y":-19},{"x":-31,"y":-70},{"x":-41,"y":0},{"x":-16,"y":-150}],"type":"area"},{"arc":[{"x":150463,"y":172288},{"x":94,"y":18},{"x":222,"y":-110},{"x":-27,"y":122},{"x":83,"y":139},{"x":-13,"y":50},{"x":-159,"y":75}],"type":"admin"},{"arc":[{"x":150306,"y":172747},{"x":-90,"y":20},{"x":-74,"y":58},{"x":-6,"y":-19},{"x":-118,"y":10}],"type":"area"},{"arc":[{"x":150018,"y":172816},{"x":-35,"y":-57},{"x":-20,"y":35},{"x":-92,"y":11},{"x":-14,"y":-29},{"x":33,"y":-20},{"x":28,"y":14},{"x":-41,"y":-21},{"x":-14,"y":-61}],"type":"area"},{"arc":[{"x":149863,"y":172688},{"x":66,"y":-24},{"x":99,"y":-117},{"x":-13,"y":-27},{"x":-102,"y":30},{"x":36,"y":-157},{"x":-93,"y":-32}],"type":"area"},{"arc":[{"x":149856,"y":172361},{"x":-14,"y":-6}],"type":"area"},{"arc":[{"x":150199,"y":173355},{"x":34,"y":-52},{"x":-19,"y":-30},{"x":-37,"y":31},{"x":-28,"y":-29},{"x":-62,"y":10},{"x":-106,"y":76},{"x":-75,"y":-8},{"x":38,"y":-117},{"x":-29,"y":-28},{"x":7,"y":-80},{"x":32,"y":1},{"x":6,"y":-92},{"x":44,"y":-32},{"x":-24,"y":-5},{"x":-12,"y":-56},{"x":-46,"y":2}],"type":"area"},{"arc":[{"x":149922,"y":172946},{"x":4,"y":-91},{"x":92,"y":-39}],"type":"area"},{"arc":[{"x":150663,"y":172582},{"x":35,"y":118},{"x":-52,"y":83},{"x":88,"y":41},{"x":53,"y":-2}],"type":"admin"},{"arc":[{"x":150787,"y":172822},{"x":22,"y":93}],"type":"admin"},{"arc":[{"x":150809,"y":172915},{"x":11,"y":86},{"x":-52,"y":72},{"x":-88,"y":49},{"x":-18,"y":-11},{"x":-36,"y":54},{"x":-188,"y":8},{"x":-57,"y":85},{"x":-182,"y":97}],"type":"area"},{"arc":[{"x":149863,"y":172688},{"x":-25,"y":9},{"x":31,"y":-37},{"x":-18,"y":-7},{"x":-67,"y":88},{"x":-18,"y":-41},{"x":-134,"y":10},{"x":-41,"y":47},{"x":11,"y":31},{"x":-38,"y":-57},{"x":-95,"y":1}],"type":"area"},{"arc":[{"x":149469,"y":172732},{"x":-47,"y":-11},{"x":76,"y":-29}],"type":"area"},{"arc":[{"x":149498,"y":172692},{"x":63,"y":-52},{"x":10,"y":-56},{"x":71,"y":-13},{"x":10,"y":-34},{"x":-49,"y":-1},{"x":6,"y":-25},{"x":104,"y":-54},{"x":9,"y":-96},{"x":43,"y":3},{"x":39,"y":61},{"x":52,"y":-64}],"type":"area"},{"arc":[{"x":149498,"y":172692},{"x":-77,"y":14},{"x":-36,"y":-47},{"x":-132,"y":29},{"x":-88,"y":-200}],"type":"area"},{"arc":[{"x":149165,"y":172488},{"x":9,"y":-40},{"x":-38,"y":-28},{"x":38,"y":-27}],"type":"admin"},{"arc":[{"x":149174,"y":172393},{"x":107,"y":-11},{"x":23,"y":-64},{"x":196,"y":-155}],"type":"admin"},{"arc":[{"x":149500,"y":172163},{"x":38,"y":-62},{"x":101,"y":-28}],"type":"admin"},{"arc":[{"x":149922,"y":172946},{"x":10,"y":45},{"x":-54,"y":-28},{"x":-101,"y":64},{"x":-45,"y":-21},{"x":-80,"y":12},{"x":-48,"y":-36},{"x":-94,"y":20}],"type":"area"},{"arc":[{"x":149510,"y":173002},{"x":-19,"y":14},{"x":-22,"y":-29},{"x":-53,"y":27},{"x":-89,"y":-48},{"x":-5,"y":-51},{"x":48,"y":-26},{"x":1,"y":-62},{"x":52,"y":5},{"x":46,"y":-100}],"type":"area"},{"arc":[{"x":149461,"y":173330},{"x":-43,"y":-43},{"x":0,"y":40},{"x":-24,"y":-24},{"x":-45,"y":3},{"x":-15,"y":-76},{"x":46,"y":-135},{"x":-45,"y":29},{"x":2,"y":-18},{"x":-47,"y":14},{"x":-18,"y":-24},{"x":-26,"y":36},{"x":-17,"y":-34},{"x":-81,"y":16}],"type":"admin"},{"arc":[{"x":149148,"y":173114},{"x":38,"y":-93},{"x":-36,"y":-1},{"x":-48,"y":-49}],"type":"admin"},{"arc":[{"x":149102,"y":172971},{"x":7,"y":-53},{"x":72,"y":-63},{"x":-43,"y":-72},{"x":-29,"y":8},{"x":30,"y":-52},{"x":-35,"y":-101},{"x":69,"y":-70},{"x":-70,"y":-58}],"type":"admin"},{"arc":[{"x":149103,"y":172510},{"x":62,"y":-22}],"type":"admin"},{"arc":[{"x":149510,"y":173002},{"x":30,"y":46},{"x":-46,"y":43},{"x":20,"y":18},{"x":54,"y":-19},{"x":12,"y":81},{"x":-35,"y":42},{"x":36,"y":11},{"x":-36,"y":-1},{"x":0,"y":65},{"x":-84,"y":42}],"type":"area"},{"arc":[{"x":150199,"y":173355},{"x":-53,"y":64},{"x":1,"y":52},{"x":-27,"y":-14},{"x":-23,"y":110},{"x":-275,"y":232}],"type":"area"},{"arc":[{"x":149822,"y":173799},{"x":9,"y":-25},{"x":-49,"y":36},{"x":-20,"y":-72},{"x":-62,"y":34},{"x":-23,"y":-28},{"x":-36,"y":11},{"x":2,"y":23},{"x":-22,"y":-21},{"x":-9,"y":-27},{"x":32,"y":-25},{"x":68,"y":-11},{"x":-12,"y":-113},{"x":35,"y":-34},{"x":-30,"y":-56},{"x":-81,"y":68},{"x":-39,"y":-29},{"x":-61,"y":9},{"x":-9,"y":-69},{"x":-21,"y":-12},{"x":3,"y":35},{"x":-19,"y":-5},{"x":-22,"y":-44},{"x":32,"y":-6},{"x":30,"y":-64},{"x":-57,"y":-44}],"type":"admin"},{"arc":[{"x":151206,"y":173432},{"x":-51,"y":113},{"x":-78,"y":73},{"x":-157,"y":-13},{"x":-46,"y":-31},{"x":-16,"y":-65},{"x":36,"y":-46},{"x":-20,"y":22},{"x":-26,"y":-17},{"x":9,"y":34},{"x":-29,"y":-5},{"x":9,"y":-28},{"x":-37,"y":60},{"x":-34,"y":6},{"x":2,"y":76},{"x":-30,"y":-48},{"x":-78,"y":-12},{"x":66,"y":161},{"x":-44,"y":-3},{"x":-16,"y":23},{"x":-5,"y":92},{"x":-130,"y":60},{"x":-9,"y":-24},{"x":-9,"y":28}],"type":"admin"},{"arc":[{"x":150513,"y":173888},{"x":-34,"y":55},{"x":-133,"y":-85},{"x":-5,"y":-37},{"x":-61,"y":32},{"x":-59,"y":-36},{"x":-81,"y":45},{"x":-8,"y":52},{"x":-73,"y":9},{"x":-66,"y":-35},{"x":-53,"y":13},{"x":-20,"y":-83},{"x":-33,"y":33},{"x":-47,"y":-10},{"x":-90,"y":50}],"type":"admin"},{"arc":[{"x":149750,"y":173891},{"x":72,"y":-92}],"type":"admin"},{"arc":[{"x":150809,"y":172915},{"x":25,"y":-4},{"x":-11,"y":-32},{"x":55,"y":-3},{"x":51,"y":73},{"x":-7,"y":36},{"x":34,"y":15},{"x":-16,"y":288},{"x":42,"y":-69},{"x":170,"y":86},{"x":101,"y":-38}],"type":"admin"},{"arc":[{"x":151253,"y":173267},{"x":36,"y":-12},{"x":10,"y":50},{"x":-58,"y":39},{"x":-35,"y":88}],"type":"admin"},{"arc":[{"x":146050,"y":177400},{"x":-7,"y":117},{"x":-122,"y":22},{"x":-13,"y":45},{"x":-78,"y":23},{"x":-13,"y":-264},{"x":239,"y":-47},{"x":-6,"y":104}],"type":"coastline"},{"arc":[{"x":145966,"y":178266},{"x":-58,"y":-67},{"x":-105,"y":43},{"x":-9,"y":-37},{"x":-38,"y":-5},{"x":-13,"y":-107},{"x":-70,"y":-26},{"x":-58,"y":22},{"x":-41,"y":-90},{"x":12,"y":-38},{"x":-41,"y":-37}],"type":"area"},{"arc":[{"x":145545,"y":177924},{"x":40,"y":-45},{"x":-28,"y":-27},{"x":-32,"y":35},{"x":-48,"y":-48},{"x":22,"y":-20},{"x":13,"y":18},{"x":11,"y":-65},{"x":33,"y":-8},{"x":-12,"y":-32},{"x":51,"y":-24},{"x":-16,"y":-62}],"type":"admin"},{"arc":[{"x":145579,"y":177646},{"x":28,"y":-4},{"x":105,"y":-247},{"x":42,"y":-2},{"x":24,"y":60},{"x":16,"y":311},{"x":22,"y":0},{"x":14,"y":-153},{"x":23,"y":-4},{"x":3,"y":26},{"x":215,"y":-37},{"x":45,"y":48},{"x":-17,"y":28},{"x":61,"y":-3},{"x":-56,"y":-107},{"x":17,"y":-19},{"x":81,"y":35},{"x":35,"y":-29},{"x":-110,"y":-46},{"x":7,"y":-131},{"x":49,"y":28},{"x":5,"y":52},{"x":32,"y":-10},{"x":43,"y":43},{"x":21,"y":-14}],"type":"coastline"},{"arc":[{"x":146284,"y":177471},{"x":55,"y":67},{"x":119,"y":-82}],"type":"area"},{"arc":[{"x":146458,"y":177456},{"x":46,"y":49},{"x":12,"y":222},{"x":47,"y":14}],"type":"area"},{"arc":[{"x":146563,"y":177741},{"x":6,"y":16},{"x":-181,"y":79},{"x":55,"y":179},{"x":-19,"y":28},{"x":-136,"y":-59},{"x":-19,"y":63},{"x":-17,"y":-13},{"x":-40,"y":29},{"x":-112,"y":122},{"x":-57,"y":7},{"x":-77,"y":74}],"type":"area"},{"arc":[{"x":147438,"y":177866},{"x":-61,"y":48},{"x":-14,"y":83},{"x":-30,"y":33}],"type":"admin"},{"arc":[{"x":147333,"y":178030},{"x":-85,"y":14},{"x":65,"y":-22},{"x":-51,"y":-43},{"x":66,"y":43},{"x":37,"y":-50},{"x":-5,"y":-42},{"x":-41,"y":-36},{"x":-105,"y":-29},{"x":-84,"y":17},{"x":-21,"y":36},{"x":14,"y":-40},{"x":-27,"y":-14}],"type":"admin"},{"arc":[{"x":147096,"y":177864},{"x":62,"y":4},{"x":48,"y":-114},{"x":-69,"y":-27},{"x":13,"y":-31},{"x":-54,"y":-46},{"x":-15,"y":26},{"x":-77,"y":-35},{"x":-17,"y":-213},{"x":-16,"y":39},{"x":-40,"y":2},{"x":-99,"y":-113},{"x":20,"y":-34},{"x":-125,"y":-107}],"type":"area"},{"arc":[{"x":146727,"y":177215},{"x":116,"y":-128},{"x":20,"y":-32},{"x":-27,"y":-6},{"x":113,"y":-158},{"x":31,"y":37},{"x":105,"y":-115}],"type":"area"},{"arc":[{"x":147085,"y":176813},{"x":104,"y":71},{"x":-18,"y":65},{"x":35,"y":21},{"x":-48,"y":46},{"x":55,"y":32},{"x":-42,"y":40},{"x":38,"y":15},{"x":-39,"y":33},{"x":230,"y":159}],"type":"admin"},{"arc":[{"x":147400,"y":177295},{"x":-27,"y":123},{"x":211,"y":123},{"x":6,"y":37},{"x":66,"y":39},{"x":-100,"y":103},{"x":-99,"y":10},{"x":7,"y":108},{"x":-26,"y":28}],"type":"admin"},{"arc":[{"x":147096,"y":177864},{"x":-37,"y":49},{"x":7,"y":89},{"x":138,"y":31},{"x":-173,"y":-26},{"x":-80,"y":27},{"x":-22,"y":38},{"x":-41,"y":-7}],"type":"admin"},{"arc":[{"x":146888,"y":178065},{"x":40,"y":-58},{"x":-51,"y":-95},{"x":41,"y":-83},{"x":-14,"y":-50},{"x":-88,"y":0},{"x":-45,"y":-42},{"x":-39,"y":27},{"x":-44,"y":-32},{"x":-125,"y":9}],"type":"area"},{"arc":[{"x":146458,"y":177456},{"x":269,"y":-241}],"type":"area"},{"arc":[{"x":146888,"y":178065},{"x":-98,"y":19},{"x":-13,"y":59},{"x":89,"y":93},{"x":-89,"y":-20},{"x":110,"y":44},{"x":-81,"y":90},{"x":-49,"y":-33},{"x":43,"y":49},{"x":-65,"y":11},{"x":15,"y":40},{"x":-43,"y":42},{"x":17,"y":24},{"x":-101,"y":-109},{"x":-51,"y":-8},{"x":-46,"y":51},{"x":17,"y":35},{"x":242,"y":154},{"x":35,"y":-34},{"x":39,"y":1},{"x":35,"y":85}],"type":"admin"},{"arc":[{"x":146894,"y":178658},{"x":-17,"y":50},{"x":-69,"y":56},{"x":-134,"y":-18},{"x":-82,"y":175},{"x":26,"y":38},{"x":-30,"y":4},{"x":-23,"y":62},{"x":-40,"y":26},{"x":1,"y":66}],"type":"admin"},{"arc":[{"x":146526,"y":179117},{"x":25,"y":81},{"x":-85,"y":-7},{"x":-44,"y":29},{"x":-124,"y":0},{"x":-19,"y":-54},{"x":-80,"y":-12},{"x":-133,"y":118},{"x":-7,"y":36},{"x":-25,"y":5},{"x":12,"y":41},{"x":-18,"y":-32},{"x":12,"y":-24},{"x":-62,"y":-5},{"x":-19,"y":55},{"x":-87,"y":32},{"x":-11,"y":40}],"type":"admin"},{"arc":[{"x":145861,"y":179420},{"x":-37,"y":17}],"type":"admin"},{"arc":[{"x":145824,"y":179437},{"x":22,"y":-116},{"x":-32,"y":-75},{"x":-31,"y":-12},{"x":-15,"y":20},{"x":-100,"y":-45},{"x":19,"y":-73},{"x":62,"y":-39},{"x":-26,"y":-18},{"x":87,"y":-102},{"x":-35,"y":-45},{"x":-59,"y":-9},{"x":3,"y":-23},{"x":63,"y":-93},{"x":34,"y":-17},{"x":37,"y":20},{"x":73,"y":-85},{"x":-44,"y":-102},{"x":-46,"y":-6},{"x":86,"y":-71},{"x":-24,"y":-17},{"x":76,"y":37},{"x":45,"y":-23},{"x":-30,"y":-78},{"x":43,"y":-75},{"x":-24,"y":-5},{"x":13,"y":-41},{"x":-55,"y":-78}],"type":"area"},{"arc":[{"x":145824,"y":179437},{"x":-45,"y":-1},{"x":-74,"y":58}],"type":"admin"},{"arc":[{"x":145705,"y":179494},{"x":-61,"y":-33},{"x":-95,"y":10},{"x":23,"y":-105},{"x":-83,"y":-13},{"x":-156,"y":118},{"x":-99,"y":-43},{"x":-38,"y":135},{"x":-64,"y":-86},{"x":11,"y":-34},{"x":40,"y":-6},{"x":-6,"y":-26},{"x":-77,"y":-40},{"x":-13,"y":-54},{"x":-49,"y":-28},{"x":-107,"y":-2},{"x":-39,"y":-37},{"x":-35,"y":15}],"type":"admin"},{"arc":[{"x":144857,"y":179265},{"x":6,"y":-24},{"x":72,"y":12},{"x":32,"y":-102},{"x":-17,"y":-16},{"x":-34,"y":44},{"x":-50,"y":-10},{"x":0,"y":-67}],"type":"admin"},{"arc":[{"x":144866,"y":179102},{"x":26,"y":-21},{"x":10,"y":19},{"x":4,"y":-25},{"x":67,"y":18},{"x":-11,"y":-69},{"x":27,"y":-17},{"x":-3,"y":-49},{"x":22,"y":5},{"x":-22,"y":-108},{"x":52,"y":-39},{"x":26,"y":18},{"x":48,"y":-18},{"x":54,"y":-72},{"x":19,"y":27},{"x":21,"y":-32},{"x":8,"y":38},{"x":24,"y":-44},{"x":15,"y":48},{"x":108,"y":71},{"x":116,"y":-77},{"x":40,"y":-87},{"x":-79,"y":-21},{"x":75,"y":-50},{"x":-74,"y":-83},{"x":47,"y":-72},{"x":-81,"y":-24},{"x":-52,"y":-142},{"x":66,"y":-167},{"x":-28,"y":-41},{"x":154,"y":-164}],"type":"admin"},{"arc":[{"x":146284,"y":177471},{"x":-32,"y":-60},{"x":127,"y":-101},{"x":-44,"y":-52},{"x":-109,"y":92},{"x":-63,"y":-30},{"x":323,"y":-293},{"x":-20,"y":-26},{"x":-1,"y":-23},{"x":15,"y":40},{"x":58,"y":-46},{"x":-2,"y":-39},{"x":13,"y":23},{"x":18,"y":-13},{"x":17,"y":-32},{"x":-21,"y":-14},{"x":-25,"y":6},{"x":30,"y":-5},{"x":25,"y":22},{"x":10,"y":-37},{"x":14,"y":13},{"x":44,"y":-46},{"x":-9,"y":-24},{"x":25,"y":9},{"x":86,"y":-86},{"x":-15,"y":-15},{"x":19,"y":20},{"x":25,"y":-23},{"x":-20,"y":-21},{"x":19,"y":19},{"x":54,"y":-88},{"x":23,"y":14}],"type":"coastline"},{"arc":[{"x":146868,"y":176655},{"x":217,"y":158}],"type":"admin"},{"arc":[{"x":144499,"y":173296},{"x":-66,"y":-78},{"x":-18,"y":8},{"x":3,"y":-34},{"x":-24,"y":39},{"x":59,"y":100},{"x":-83,"y":42},{"x":20,"y":52},{"x":-28,"y":-70},{"x":-83,"y":-69},{"x":25,"y":18},{"x":105,"y":-189},{"x":47,"y":-66},{"x":15,"y":-7},{"x":-31,"y":30},{"x":20,"y":9},{"x":38,"y":-14},{"x":-9,"y":-21},{"x":95,"y":226},{"x":-85,"y":24}],"type":"coastline"},{"arc":[{"x":144556,"y":173612},{"x":-70,"y":-130},{"x":130,"y":-70},{"x":53,"y":-59},{"x":95,"y":147}],"type":"coastline"},{"arc":[{"x":144764,"y":173500},{"x":-208,"y":112}],"type":"area"},{"arc":[{"x":145272,"y":173233},{"x":-93,"y":8},{"x":6,"y":23},{"x":-173,"y":51},{"x":2,"y":21},{"x":-41,"y":3},{"x":21,"y":47},{"x":-172,"y":83}],"type":"area"},{"arc":[{"x":144822,"y":173469},{"x":-86,"y":-157},{"x":51,"y":-15},{"x":37,"y":32},{"x":-19,"y":-36},{"x":40,"y":-40},{"x":-56,"y":4},{"x":90,"y":-31},{"x":-56,"y":-9},{"x":-120,"y":59},{"x":-32,"y":-34},{"x":-6,"y":-80},{"x":-70,"y":0},{"x":-64,"y":-124},{"x":10,"y":-21},{"x":63,"y":2},{"x":19,"y":54},{"x":68,"y":-37},{"x":37,"y":52},{"x":2,"y":-76}],"type":"coastline"},{"arc":[{"x":144730,"y":173012},{"x":116,"y":-62},{"x":24,"y":-38},{"x":39,"y":0},{"x":55,"y":-135},{"x":39,"y":1},{"x":15,"y":-55}],"type":"area"},{"arc":[{"x":145018,"y":172723},{"x":116,"y":-40},{"x":37,"y":72},{"x":52,"y":-16},{"x":10,"y":68},{"x":128,"y":-8},{"x":69,"y":92}],"type":"area"},{"arc":[{"x":145430,"y":172891},{"x":-74,"y":112},{"x":53,"y":88},{"x":44,"y":7},{"x":-9,"y":96},{"x":-122,"y":-10},{"x":-50,"y":49}],"type":"area"},{"arc":[{"x":144618,"y":172789},{"x":-3,"y":49},{"x":-53,"y":57},{"x":-42,"y":-38},{"x":-36,"y":34},{"x":46,"y":-47},{"x":-53,"y":20},{"x":74,"y":-80},{"x":-13,"y":-32},{"x":19,"y":16},{"x":25,"y":-19},{"x":36,"y":40}],"type":"coastline"},{"arc":[{"x":144730,"y":173012},{"x":-81,"y":6},{"x":-6,"y":-144},{"x":61,"y":-26},{"x":-14,"y":-32},{"x":-49,"y":35},{"x":-27,"y":-116},{"x":-82,"y":-2},{"x":7,"y":-22},{"x":-41,"y":0},{"x":-3,"y":-48}],"type":"coastline"},{"arc":[{"x":144495,"y":172663},{"x":28,"y":-18},{"x":-19,"y":-49},{"x":38,"y":-110},{"x":42,"y":-18},{"x":2,"y":-38},{"x":-55,"y":-66}],"type":"area"},{"arc":[{"x":144531,"y":172364},{"x":3,"y":-55},{"x":104,"y":33},{"x":92,"y":-55},{"x":-31,"y":-14},{"x":-15,"y":-66},{"x":-109,"y":-69},{"x":237,"y":-92},{"x":92,"y":-62}],"type":"area"},{"arc":[{"x":144904,"y":171984},{"x":86,"y":57},{"x":1,"y":98}],"type":"area"},{"arc":[{"x":144991,"y":172139},{"x":-5,"y":81},{"x":-74,"y":131},{"x":17,"y":58},{"x":-52,"y":3},{"x":-39,"y":42},{"x":44,"y":68},{"x":-53,"y":14},{"x":-25,"y":42},{"x":21,"y":40},{"x":14,"y":-17},{"x":34,"y":94},{"x":145,"y":28}],"type":"area"},{"arc":[{"x":144495,"y":172663},{"x":-25,"y":2},{"x":-2,"y":53},{"x":-57,"y":-10},{"x":2,"y":16},{"x":-39,"y":-40}],"type":"coastline"},{"arc":[{"x":144374,"y":172684},{"x":-40,"y":-31},{"x":27,"y":-50},{"x":-24,"y":15},{"x":-44,"y":-31},{"x":-46,"y":4},{"x":-39,"y":-50}],"type":"area"},{"arc":[{"x":144208,"y":172541},{"x":26,"y":-71},{"x":-15,"y":-86}],"type":"area"},{"arc":[{"x":144219,"y":172384},{"x":31,"y":-35},{"x":68,"y":15},{"x":25,"y":35},{"x":17,"y":-29},{"x":65,"y":15},{"x":106,"y":-21}],"type":"area"},{"arc":[{"x":143800,"y":173269},{"x":-68,"y":-69},{"x":-74,"y":39},{"x":110,"y":60},{"x":32,"y":-30},{"x":-31,"y":32},{"x":-97,"y":-46},{"x":-86,"y":-87},{"x":28,"y":-45},{"x":-26,"y":45},{"x":31,"y":31},{"x":40,"y":-39},{"x":38,"y":39},{"x":33,"y":-32},{"x":-60,"y":-61},{"x":25,"y":-53},{"x":107,"y":93},{"x":-15,"y":41},{"x":48,"y":48},{"x":-35,"y":34}],"type":"coastline"},{"arc":[{"x":143820,"y":172755},{"x":93,"y":-39},{"x":21,"y":-80},{"x":89,"y":-33}],"type":"area"},{"arc":[{"x":144023,"y":172603},{"x":10,"y":68},{"x":52,"y":57},{"x":8,"y":-36},{"x":44,"y":0},{"x":-10,"y":-29},{"x":52,"y":-31},{"x":-41,"y":-80},{"x":25,"y":-11},{"x":13,"y":23},{"x":32,"y":-23}],"type":"area"},{"arc":[{"x":144374,"y":172684},{"x":30,"y":72},{"x":-40,"y":4},{"x":40,"y":27},{"x":-10,"y":15},{"x":-10,"y":-26},{"x":-90,"y":-10},{"x":59,"y":55},{"x":-71,"y":-34},{"x":-15,"y":63},{"x":-23,"y":3},{"x":79,"y":54},{"x":-31,"y":2},{"x":14,"y":31},{"x":-34,"y":13},{"x":27,"y":44},{"x":-65,"y":-91},{"x":-39,"y":34},{"x":29,"y":30},{"x":14,"y":-29},{"x":5,"y":11},{"x":-28,"y":27},{"x":107,"y":65},{"x":-5,"y":28},{"x":-15,"y":13},{"x":-120,"y":-60},{"x":-18,"y":27},{"x":87,"y":43},{"x":-50,"y":60},{"x":-113,"y":-52},{"x":-6,"y":15},{"x":-9,"y":-22},{"x":-16,"y":30},{"x":148,"y":73},{"x":5,"y":29},{"x":-14,"y":-11},{"x":-27,"y":36},{"x":-151,"y":-38},{"x":36,"y":-1},{"x":-44,"y":-15},{"x":-19,"y":-42},{"x":31,"y":-21},{"x":-71,"y":13},{"x":20,"y":-55},{"x":-60,"y":48},{"x":-33,"y":-19},{"x":-8,"y":21},{"x":43,"y":17},{"x":-44,"y":-15},{"x":16,"y":32},{"x":-179,"y":-147},{"x":19,"y":-26},{"x":-11,"y":19},{"x":17,"y":-17},{"x":24,"y":25},{"x":26,"y":-34},{"x":-24,"y":-26},{"x":16,"y":-48},{"x":65,"y":-64},{"x":-7,"y":-44},{"x":-34,"y":22},{"x":34,"y":-24},{"x":-11,"y":-59}],"type":"coastline"},{"arc":[{"x":144023,"y":172603},{"x":-28,"y":-115},{"x":-40,"y":-35},{"x":16,"y":-24},{"x":-55,"y":-39},{"x":-136,"y":-8}],"type":"area"},{"arc":[{"x":143780,"y":172382},{"x":37,"y":-88},{"x":56,"y":16},{"x":8,"y":-37},{"x":-82,"y":-98},{"x":35,"y":-50},{"x":123,"y":-46},{"x":-7,"y":-38}],"type":"area"},{"arc":[{"x":143950,"y":172041},{"x":45,"y":-36},{"x":-11,"y":66},{"x":81,"y":-12}],"type":"area"},{"arc":[{"x":144065,"y":172059},{"x":47,"y":78},{"x":90,"y":63},{"x":-43,"y":144},{"x":60,"y":40}],"type":"area"},{"arc":[{"x":144913,"y":171834},{"x":-16,"y":46},{"x":-58,"y":34},{"x":65,"y":70}],"type":"area"},{"arc":[{"x":144065,"y":172059},{"x":87,"y":-32},{"x":-30,"y":-104},{"x":31,"y":-35},{"x":48,"y":-7},{"x":14,"y":-63},{"x":58,"y":-51}],"type":"area"},{"arc":[{"x":144273,"y":171767},{"x":50,"y":-8},{"x":30,"y":57},{"x":-5,"y":103},{"x":28,"y":50},{"x":41,"y":-2},{"x":18,"y":28},{"x":49,"y":-6},{"x":66,"y":-109},{"x":57,"y":7},{"x":28,"y":52},{"x":22,"y":-28},{"x":27,"y":9},{"x":12,"y":55},{"x":48,"y":-26},{"x":2,"y":-82},{"x":92,"y":-63},{"x":75,"y":30}],"type":"area"},{"arc":[{"x":143820,"y":172755},{"x":-49,"y":-81},{"x":69,"y":-54},{"x":-37,"y":20},{"x":-14,"y":-37},{"x":-53,"y":32},{"x":25,"y":116},{"x":-50,"y":36},{"x":-36,"y":-128},{"x":19,"y":-73},{"x":-80,"y":-42},{"x":-46,"y":25},{"x":54,"y":75},{"x":-26,"y":-18},{"x":14,"y":65},{"x":-15,"y":-24},{"x":-10,"y":37},{"x":-13,"y":-21},{"x":-22,"y":11},{"x":8,"y":21},{"x":-59,"y":-115},{"x":-29,"y":19}],"type":"coastline"},{"arc":[{"x":143470,"y":172619},{"x":-55,"y":-71},{"x":-84,"y":-6},{"x":-122,"y":-92},{"x":7,"y":-31},{"x":-34,"y":4},{"x":1,"y":-28},{"x":-74,"y":-65},{"x":-9,"y":-114}],"type":"area"},{"arc":[{"x":143100,"y":172216},{"x":22,"y":-13},{"x":51,"y":38},{"x":31,"y":-14}],"type":"area"},{"arc":[{"x":143204,"y":172227},{"x":61,"y":55},{"x":120,"y":-80},{"x":39,"y":37},{"x":67,"y":-47},{"x":-6,"y":46},{"x":40,"y":55},{"x":-21,"y":90},{"x":83,"y":-39},{"x":24,"y":17},{"x":80,"y":-72},{"x":36,"y":63},{"x":-17,"y":52},{"x":39,"y":5},{"x":31,"y":-27}],"type":"area"},{"arc":[{"x":142792,"y":172671},{"x":-43,"y":40},{"x":25,"y":11},{"x":-29,"y":-13},{"x":-45,"y":-45},{"x":72,"y":-42},{"x":20,"y":49}],"type":"coastline"},{"arc":[{"x":142897,"y":172790},{"x":-41,"y":40},{"x":-2,"y":-80},{"x":38,"y":3},{"x":5,"y":37}],"type":"coastline"},{"arc":[{"x":143421,"y":172899},{"x":-17,"y":-31},{"x":39,"y":52},{"x":-22,"y":-21}],"type":"coastline"},{"arc":[{"x":143481,"y":172879},{"x":-24,"y":41},{"x":42,"y":-59},{"x":-18,"y":18}],"type":"coastline"},{"arc":[{"x":142726,"y":172643},{"x":-81,"y":-72},{"x":-22,"y":-120},{"x":-57,"y":-37}],"type":"admin"},{"arc":[{"x":142566,"y":172414},{"x":58,"y":-62},{"x":-9,"y":-74},{"x":51,"y":-32}],"type":"admin"},{"arc":[{"x":142666,"y":172246},{"x":204,"y":-55}],"type":"admin"},{"arc":[{"x":142870,"y":172191},{"x":230,"y":25}],"type":"area"},{"arc":[{"x":143470,"y":172619},{"x":-22,"y":35},{"x":105,"y":135},{"x":-41,"y":78},{"x":-96,"y":-55},{"x":-9,"y":-48},{"x":-75,"y":75},{"x":70,"y":80},{"x":-48,"y":-43},{"x":-27,"y":25},{"x":-77,"y":0},{"x":-2,"y":-58},{"x":-83,"y":0},{"x":-80,"y":62},{"x":-147,"y":0},{"x":-39,"y":-157},{"x":18,"y":-38},{"x":-54,"y":-44},{"x":-20,"y":34},{"x":-22,"y":-22},{"x":6,"y":26},{"x":-47,"y":-84},{"x":26,"y":-76},{"x":-80,"y":99}],"type":"coastline"},{"arc":[{"x":145715,"y":172661},{"x":-39,"y":102},{"x":19,"y":53},{"x":-64,"y":103}],"type":"area"},{"arc":[{"x":145631,"y":172919},{"x":-153,"y":-40},{"x":-48,"y":12}],"type":"area"},{"arc":[{"x":144991,"y":172139},{"x":53,"y":43},{"x":38,"y":-35},{"x":23,"y":17}],"type":"area"},{"arc":[{"x":145105,"y":172164},{"x":6,"y":71},{"x":48,"y":47},{"x":-8,"y":64},{"x":107,"y":2},{"x":141,"y":-85},{"x":59,"y":39},{"x":-1,"y":38},{"x":119,"y":28},{"x":21,"y":58},{"x":69,"y":2},{"x":44,"y":28}],"type":"area"},{"arc":[{"x":145710,"y":172456},{"x":5,"y":205}],"type":"area"},{"arc":[{"x":143950,"y":172041},{"x":-34,"y":-25},{"x":10,"y":-23},{"x":-40,"y":14},{"x":43,"y":-139},{"x":-54,"y":20},{"x":-16,"y":-48},{"x":-45,"y":-2},{"x":-34,"y":32},{"x":-111,"y":7},{"x":-32,"y":34},{"x":-164,"y":-80}],"type":"area"},{"arc":[{"x":143473,"y":171831},{"x":-86,"y":-61},{"x":71,"y":-119},{"x":2,"y":-34},{"x":-80,"y":-8},{"x":51,"y":-126},{"x":-89,"y":37},{"x":-8,"y":-69},{"x":-48,"y":30},{"x":-100,"y":-5}],"type":"area"},{"arc":[{"x":143186,"y":171476},{"x":76,"y":-167},{"x":-124,"y":-74}],"type":"admin"},{"arc":[{"x":143138,"y":171235},{"x":24,"y":-101},{"x":146,"y":39},{"x":48,"y":44},{"x":53,"y":-16},{"x":44,"y":-67},{"x":60,"y":-14}],"type":"admin"},{"arc":[{"x":143513,"y":171120},{"x":30,"y":-2},{"x":-18,"y":46},{"x":35,"y":52},{"x":70,"y":30},{"x":-39,"y":36},{"x":9,"y":56},{"x":135,"y":64},{"x":5,"y":80},{"x":90,"y":5},{"x":132,"y":85},{"x":83,"y":16},{"x":106,"y":-39},{"x":51,"y":52},{"x":35,"y":-50},{"x":49,"y":51}],"type":"area"},{"arc":[{"x":144286,"y":171602},{"x":-67,"y":75},{"x":54,"y":90}],"type":"area"},{"arc":[{"x":143204,"y":172227},{"x":39,"y":-108},{"x":47,"y":-33},{"x":-30,"y":-39},{"x":48,"y":-17},{"x":23,"y":-42},{"x":3,"y":-53},{"x":-42,"y":-34},{"x":125,"y":8},{"x":8,"y":-36},{"x":45,"y":-2},{"x":3,"y":-40}],"type":"area"},{"arc":[{"x":144286,"y":171602},{"x":11,"y":-135},{"x":-44,"y":-73}],"type":"area"},{"arc":[{"x":144253,"y":171394},{"x":88,"y":-40},{"x":58,"y":11},{"x":44,"y":-32},{"x":78,"y":4},{"x":42,"y":-35},{"x":107,"y":5},{"x":6,"y":-35},{"x":128,"y":-108},{"x":106,"y":-10},{"x":3,"y":30},{"x":13,"y":-33},{"x":45,"y":11}],"type":"area"},{"arc":[{"x":144971,"y":171162},{"x":51,"y":24},{"x":31,"y":126},{"x":-90,"y":33},{"x":-41,"y":80},{"x":31,"y":89},{"x":40,"y":26},{"x":0,"y":79},{"x":-47,"y":-13},{"x":-12,"y":26},{"x":-21,"y":202}],"type":"area"},{"arc":[{"x":145400,"y":171710},{"x":-322,"y":126},{"x":21,"y":144},{"x":43,"y":77},{"x":-37,"y":107}],"type":"area"},{"arc":[{"x":144971,"y":171162},{"x":18,"y":-36}],"type":"area"},{"arc":[{"x":144989,"y":171126},{"x":17,"y":-39},{"x":77,"y":-42},{"x":98,"y":65},{"x":9,"y":32},{"x":198,"y":4}],"type":"admin"},{"arc":[{"x":145388,"y":171146},{"x":41,"y":86},{"x":-50,"y":60},{"x":5,"y":73},{"x":-65,"y":45},{"x":4,"y":70},{"x":-37,"y":33},{"x":55,"y":18},{"x":61,"y":99},{"x":-2,"y":80}],"type":"area"},{"arc":[{"x":144253,"y":171394},{"x":-42,"y":6},{"x":-19,"y":-22},{"x":-33,"y":17},{"x":-46,"y":-86},{"x":46,"y":-76},{"x":61,"y":-4},{"x":-7,"y":-105},{"x":67,"y":-5},{"x":8,"y":-36}],"type":"area"},{"arc":[{"x":144288,"y":171083},{"x":180,"y":-90},{"x":89,"y":26},{"x":107,"y":-46},{"x":175,"y":8},{"x":67,"y":-62},{"x":62,"y":30}],"type":"admin"},{"arc":[{"x":144968,"y":170949},{"x":-13,"y":89},{"x":34,"y":88}],"type":"admin"},{"arc":[{"x":142870,"y":172191},{"x":-8,"y":-123},{"x":13,"y":-24},{"x":130,"y":-39},{"x":-1,"y":-127},{"x":105,"y":-94},{"x":31,"y":-13},{"x":31,"y":18},{"x":29,"y":-21},{"x":5,"y":-28},{"x":-76,"y":-22},{"x":-37,"y":-116},{"x":54,"y":-15},{"x":-20,"y":-38},{"x":61,"y":-45},{"x":-1,"y":-28}],"type":"admin"},{"arc":[{"x":143513,"y":171120},{"x":56,"y":-57},{"x":92,"y":-12},{"x":35,"y":-28},{"x":229,"y":32},{"x":54,"y":-54}],"type":"admin"},{"arc":[{"x":143979,"y":171001},{"x":147,"y":4},{"x":162,"y":78}],"type":"admin"},{"arc":[{"x":145842,"y":171984},{"x":-61,"y":-36},{"x":-2,"y":26},{"x":-44,"y":-48},{"x":-30,"y":-8},{"x":-22,"y":28},{"x":-82,"y":-25},{"x":11,"y":-42},{"x":-64,"y":-58},{"x":-108,"y":-4},{"x":-40,"y":-107}],"type":"area"},{"arc":[{"x":145388,"y":171146},{"x":96,"y":-67},{"x":68,"y":24},{"x":93,"y":-7},{"x":85,"y":-56},{"x":-37,"y":-15},{"x":11,"y":-50},{"x":33,"y":-21},{"x":86,"y":18}],"type":"admin"},{"arc":[{"x":145823,"y":170972},{"x":18,"y":134}],"type":"area"},{"arc":[{"x":145841,"y":171106},{"x":-125,"y":84},{"x":90,"y":101},{"x":24,"y":-2},{"x":14,"y":60},{"x":54,"y":6}],"type":"admin"},{"arc":[{"x":145898,"y":171355},{"x":-7,"y":23},{"x":-102,"y":37},{"x":49,"y":93},{"x":99,"y":32},{"x":45,"y":44},{"x":46,"y":-27},{"x":23,"y":19},{"x":58,"y":-19}],"type":"area"},{"arc":[{"x":146109,"y":171557},{"x":-10,"y":143},{"x":-56,"y":160},{"x":-108,"y":98},{"x":-93,"y":26}],"type":"area"},{"arc":[{"x":145842,"y":171984},{"x":-86,"y":437}],"type":"area"},{"arc":[{"x":145756,"y":172421},{"x":-46,"y":35}],"type":"area"},{"arc":[{"x":144764,"y":173500},{"x":110,"y":204},{"x":-39,"y":32},{"x":-35,"y":17},{"x":-22,"y":-40},{"x":-131,"y":70},{"x":-91,"y":-171}],"type":"coastline"},{"arc":[{"x":145017,"y":174087},{"x":-15,"y":61},{"x":-38,"y":75},{"x":31,"y":-63},{"x":-13,"y":-23},{"x":-49,"y":27},{"x":18,"y":35},{"x":-115,"y":-212},{"x":43,"y":-27},{"x":-16,"y":-30},{"x":-44,"y":22},{"x":-70,"y":-130},{"x":119,"y":-97},{"x":143,"y":258},{"x":6,"y":104}],"type":"coastline"},{"arc":[{"x":145276,"y":173939},{"x":-5,"y":25},{"x":-161,"y":69},{"x":-63,"y":-126},{"x":123,"y":-55},{"x":106,"y":87}],"type":"coastline"},{"arc":[{"x":145375,"y":174141},{"x":-29,"y":-21},{"x":-98,"y":136},{"x":-56,"y":27},{"x":-19,"y":64},{"x":-27,"y":-23},{"x":-41,"y":56},{"x":39,"y":-57},{"x":-36,"y":-26},{"x":-34,"y":47},{"x":13,"y":-20},{"x":-50,"y":-36},{"x":-14,"y":60},{"x":31,"y":22},{"x":14,"y":-20},{"x":3,"y":33},{"x":-49,"y":-35},{"x":6,"y":-48},{"x":79,"y":-121},{"x":-37,"y":-31},{"x":-9,"y":20},{"x":9,"y":-20},{"x":-10,"y":-9},{"x":-12,"y":26},{"x":16,"y":-36},{"x":30,"y":-33},{"x":31,"y":27},{"x":-21,"y":-38},{"x":71,"y":-42},{"x":53,"y":21},{"x":-12,"y":-38},{"x":105,"y":-45},{"x":38,"y":-96},{"x":-31,"y":-6},{"x":7,"y":28},{"x":-45,"y":21},{"x":-111,"y":-102},{"x":25,"y":-22},{"x":-32,"y":14},{"x":-47,"y":-76},{"x":10,"y":89},{"x":-110,"y":24},{"x":-79,"y":-155},{"x":149,"y":-7},{"x":37,"y":-29},{"x":-206,"y":11},{"x":-61,"y":-119},{"x":106,"y":-59},{"x":44,"y":52},{"x":2,"y":-30},{"x":-29,"y":-53},{"x":-130,"y":71},{"x":-36,"y":-68}],"type":"coastline"},{"arc":[{"x":145272,"y":173233},{"x":129,"y":153}],"type":"area"},{"arc":[{"x":145401,"y":173386},{"x":18,"y":143},{"x":71,"y":96},{"x":-34,"y":80},{"x":54,"y":55},{"x":-9,"y":178},{"x":-126,"y":203}],"type":"admin"},{"arc":[{"x":145716,"y":173155},{"x":-112,"y":234},{"x":-40,"y":-2},{"x":-72,"y":-60},{"x":-62,"y":18},{"x":-29,"y":41}],"type":"admin"},{"arc":[{"x":145631,"y":172919},{"x":41,"y":-1},{"x":2,"y":55},{"x":-71,"y":7},{"x":0,"y":51},{"x":119,"y":-20},{"x":-7,"y":30},{"x":-78,"y":42},{"x":-6,"y":62},{"x":44,"y":47},{"x":41,"y":-37}],"type":"area"},{"arc":[{"x":146079,"y":172887},{"x":-4,"y":89},{"x":-36,"y":38},{"x":-265,"y":92},{"x":-58,"y":49}],"type":"admin"},{"arc":[{"x":145715,"y":172661},{"x":50,"y":21},{"x":-6,"y":32},{"x":34,"y":15},{"x":133,"y":-107},{"x":206,"y":-31},{"x":14,"y":76},{"x":-36,"y":41},{"x":70,"y":56}],"type":"area"},{"arc":[{"x":146180,"y":172764},{"x":-101,"y":123}],"type":"admin"},{"arc":[{"x":145756,"y":172421},{"x":102,"y":54},{"x":27,"y":53},{"x":57,"y":-7},{"x":45,"y":-154},{"x":44,"y":-45},{"x":68,"y":-16},{"x":-6,"y":-55},{"x":82,"y":-73},{"x":40,"y":30},{"x":63,"y":-16}],"type":"area"},{"arc":[{"x":146278,"y":172192},{"x":26,"y":-3},{"x":7,"y":43},{"x":31,"y":-5},{"x":17,"y":97},{"x":79,"y":-43}],"type":"area"},{"arc":[{"x":146438,"y":172281},{"x":-60,"y":228},{"x":-198,"y":255}],"type":"admin"},{"arc":[{"x":146517,"y":171433},{"x":73,"y":28},{"x":23,"y":64},{"x":68,"y":-26},{"x":62,"y":46}],"type":"admin"},{"arc":[{"x":146743,"y":171545},{"x":-66,"y":213},{"x":-38,"y":36},{"x":-23,"y":129}],"type":"admin"},{"arc":[{"x":146616,"y":171923},{"x":-39,"y":44},{"x":-29,"y":-6},{"x":-45,"y":71},{"x":-66,"y":184}],"type":"admin"},{"arc":[{"x":146437,"y":172216},{"x":1,"y":65}],"type":"admin"},{"arc":[{"x":146278,"y":172192},{"x":15,"y":-14},{"x":-33,"y":-20},{"x":40,"y":-88},{"x":-34,"y":-44},{"x":20,"y":-39},{"x":-54,"y":-15},{"x":20,"y":-47},{"x":26,"y":4},{"x":-19,"y":-7},{"x":20,"y":-18},{"x":-40,"y":-10},{"x":39,"y":-74},{"x":-30,"y":10},{"x":8,"y":-40},{"x":-24,"y":-24},{"x":-14,"y":34},{"x":-40,"y":-74},{"x":17,"y":-35},{"x":-44,"y":-26},{"x":12,"y":-61}],"type":"area"},{"arc":[{"x":146163,"y":171604},{"x":24,"y":9},{"x":0,"y":-27},{"x":48,"y":13},{"x":11,"y":-51},{"x":46,"y":-21},{"x":96,"y":-10},{"x":13,"y":29},{"x":53,"y":-3},{"x":63,"y":-110}],"type":"area"},{"arc":[{"x":146109,"y":171557},{"x":22,"y":-15},{"x":-12,"y":25},{"x":44,"y":37}],"type":"area"},{"arc":[{"x":145823,"y":170972},{"x":152,"y":66},{"x":-16,"y":17},{"x":51,"y":74},{"x":-5,"y":48},{"x":-74,"y":-15},{"x":-1,"y":-24},{"x":-89,"y":-32}],"type":"admin"},{"arc":[{"x":145898,"y":171355},{"x":-13,"y":-16},{"x":78,"y":-65},{"x":22,"y":-54},{"x":80,"y":-3},{"x":12,"y":-68},{"x":43,"y":-40},{"x":24,"y":7},{"x":-8,"y":-37},{"x":55,"y":-24},{"x":27,"y":-71},{"x":106,"y":-52},{"x":-64,"y":-130},{"x":93,"y":-44}],"type":"admin"},{"arc":[{"x":146353,"y":170758},{"x":85,"y":39},{"x":76,"y":115}],"type":"admin"},{"arc":[{"x":146514,"y":170912},{"x":-49,"y":35},{"x":-12,"y":82},{"x":-82,"y":6},{"x":1,"y":37},{"x":-114,"y":103},{"x":15,"y":105},{"x":150,"y":-52},{"x":70,"y":90},{"x":24,"y":115}],"type":"admin"},{"arc":[{"x":147063,"y":167784},{"x":-118,"y":70},{"x":-95,"y":-15},{"x":-15,"y":83},{"x":-55,"y":43},{"x":12,"y":111},{"x":68,"y":43},{"x":15,"y":46},{"x":-77,"y":169},{"x":-125,"y":6},{"x":-97,"y":62},{"x":-42,"y":-20},{"x":-33,"y":67},{"x":-57,"y":39},{"x":-56,"y":2},{"x":-61,"y":82},{"x":-38,"y":11},{"x":-64,"y":138},{"x":32,"y":57},{"x":-22,"y":72},{"x":71,"y":15},{"x":16,"y":27}],"type":"admin"},{"arc":[{"x":146322,"y":168892},{"x":51,"y":170},{"x":-28,"y":94},{"x":-82,"y":97},{"x":-5,"y":109},{"x":28,"y":67},{"x":-42,"y":98},{"x":30,"y":100},{"x":-38,"y":45},{"x":-48,"y":178}],"type":"admin"},{"arc":[{"x":146188,"y":169850},{"x":-122,"y":-54},{"x":36,"y":-56},{"x":-103,"y":20},{"x":29,"y":-82},{"x":-72,"y":22},{"x":20,"y":-43},{"x":-36,"y":-11},{"x":-39,"y":-5},{"x":-70,"y":63},{"x":8,"y":49},{"x":-64,"y":20},{"x":-8,"y":-49},{"x":51,"y":-30},{"x":47,"y":-91},{"x":-58,"y":-70},{"x":-82,"y":-20},{"x":-40,"y":-63},{"x":-60,"y":16},{"x":-89,"y":-15},{"x":-41,"y":26}],"type":"area"},{"arc":[{"x":145495,"y":169477},{"x":-39,"y":-4},{"x":-35,"y":-83},{"x":79,"y":-97},{"x":90,"y":-46},{"x":63,"y":-90},{"x":2,"y":-62},{"x":-57,"y":-73},{"x":-77,"y":-26},{"x":52,"y":-173},{"x":-41,"y":-127},{"x":-56,"y":-18}],"type":"admin"},{"arc":[{"x":145476,"y":168678},{"x":-134,"y":-161},{"x":58,"y":-30},{"x":-30,"y":-106},{"x":-21,"y":-18},{"x":-58,"y":56},{"x":-29,"y":-86},{"x":-55,"y":9},{"x":-8,"y":-49},{"x":-64,"y":-14},{"x":-21,"y":-53},{"x":-82,"y":-44},{"x":-15,"y":-83},{"x":-115,"y":-113},{"x":-32,"y":-1},{"x":-146,"y":-149},{"x":-108,"y":-40}],"type":"admin"},{"arc":[{"x":144616,"y":167796},{"x":50,"y":-53},{"x":-13,"y":-92},{"x":73,"y":-22},{"x":40,"y":-78},{"x":-21,"y":-92},{"x":-85,"y":-39},{"x":-13,"y":-123},{"x":25,"y":-125},{"x":96,"y":-60},{"x":20,"y":-58},{"x":57,"y":-34},{"x":38,"y":-132},{"x":73,"y":-27},{"x":35,"y":-49},{"x":66,"y":-16}],"type":"admin"},{"arc":[{"x":145057,"y":166796},{"x":34,"y":204},{"x":91,"y":54},{"x":95,"y":134},{"x":73,"y":30},{"x":-4,"y":33},{"x":81,"y":40},{"x":19,"y":-21},{"x":122,"y":1}],"type":"admin"},{"arc":[{"x":145568,"y":167271},{"x":90,"y":109},{"x":120,"y":76},{"x":68,"y":-30},{"x":118,"y":8},{"x":12,"y":-38},{"x":19,"y":17},{"x":8,"y":-36},{"x":36,"y":-8},{"x":71,"y":32},{"x":25,"y":49},{"x":153,"y":39},{"x":79,"y":-55},{"x":46,"y":69},{"x":14,"y":-46},{"x":80,"y":-67},{"x":112,"y":-2},{"x":104,"y":44},{"x":171,"y":-108},{"x":75,"y":29},{"x":90,"y":104},{"x":56,"y":14}],"type":"admin"},{"arc":[{"x":147115,"y":167471},{"x":5,"y":56},{"x":-71,"y":107},{"x":14,"y":150}],"type":"admin"},{"arc":[{"x":145720,"y":170437},{"x":-44,"y":-5},{"x":-47,"y":-45},{"x":61,"y":-106},{"x":-117,"y":-112},{"x":-16,"y":13},{"x":-23,"y":-37},{"x":23,"y":-20},{"x":-89,"y":-70},{"x":-8,"y":-78},{"x":-55,"y":-11},{"x":-46,"y":-56},{"x":3,"y":-65},{"x":-83,"y":-60}],"type":"area"},{"arc":[{"x":145279,"y":169785},{"x":7,"y":-7}],"type":"admin"},{"arc":[{"x":145286,"y":169778},{"x":209,"y":-301}],"type":"admin"},{"arc":[{"x":146188,"y":169850},{"x":-56,"y":136},{"x":-85,"y":101},{"x":12,"y":44},{"x":-42,"y":26},{"x":-10,"y":89},{"x":-96,"y":19},{"x":-21,"y":78},{"x":-114,"y":39},{"x":-56,"y":55}],"type":"admin"},{"arc":[{"x":145197,"y":170825},{"x":-103,"y":-134},{"x":-62,"y":-140}],"type":"admin"},{"arc":[{"x":145032,"y":170551},{"x":51,"y":-16},{"x":51,"y":-74},{"x":-120,"y":-105},{"x":-84,"y":-36},{"x":-37,"y":-150},{"x":-69,"y":-49},{"x":11,"y":-142}],"type":"admin"},{"arc":[{"x":144835,"y":169979},{"x":145,"y":25},{"x":175,"y":-9},{"x":48,"y":-120},{"x":76,"y":-90}],"type":"admin"},{"arc":[{"x":145720,"y":170437},{"x":-32,"y":46},{"x":-102,"y":48},{"x":-62,"y":63},{"x":-53,"y":121},{"x":-91,"y":40},{"x":-79,"y":91},{"x":-104,"y":-21}],"type":"admin"},{"arc":[{"x":176139,"y":168523},{"x":-28,"y":-19},{"x":-52,"y":19},{"x":-31,"y":65},{"x":6,"y":-48},{"x":-69,"y":-1},{"x":-70,"y":-79},{"x":22,"y":47},{"x":-37,"y":96},{"x":19,"y":16}],"type":"admin"},{"arc":[{"x":175899,"y":168619},{"x":-20,"y":8},{"x":16,"y":54},{"x":-51,"y":17},{"x":-60,"y":96},{"x":-55,"y":-99},{"x":-218,"y":-21},{"x":27,"y":56},{"x":-82,"y":22},{"x":-46,"y":72},{"x":-84,"y":48},{"x":-17,"y":-52},{"x":-56,"y":12},{"x":-45,"y":-26}],"type":"admin"},{"arc":[{"x":175208,"y":168806},{"x":-110,"y":-5},{"x":-5,"y":-47},{"x":60,"y":-24},{"x":24,"y":-42},{"x":-178,"y":-40},{"x":5,"y":-41},{"x":105,"y":14},{"x":-118,"y":-67},{"x":-121,"y":-23},{"x":-42,"y":-67},{"x":60,"y":-223},{"x":-10,"y":-79},{"x":-50,"y":-22},{"x":34,"y":-185}],"type":"admin"},{"arc":[{"x":174862,"y":167955},{"x":327,"y":-225},{"x":167,"y":-69},{"x":126,"y":-22}],"type":"area"},{"arc":[{"x":175482,"y":167639},{"x":163,"y":1},{"x":-2,"y":-20},{"x":132,"y":-21},{"x":276,"y":-167},{"x":42,"y":46}],"type":"area"},{"arc":[{"x":176093,"y":167478},{"x":135,"y":363},{"x":46,"y":-6},{"x":21,"y":30},{"x":-22,"y":-29},{"x":-20,"y":9},{"x":19,"y":35},{"x":-38,"y":-28},{"x":13,"y":65},{"x":16,"y":-35},{"x":2,"y":29},{"x":34,"y":-17},{"x":-50,"y":32},{"x":28,"y":78},{"x":29,"y":-3},{"x":-22,"y":11},{"x":10,"y":44},{"x":38,"y":-7},{"x":-28,"y":35},{"x":24,"y":45},{"x":28,"y":-13},{"x":-24,"y":23},{"x":24,"y":62},{"x":72,"y":29},{"x":57,"y":104},{"x":8,"y":-3},{"x":330,"y":174},{"x":-330,"y":-171},{"x":-11,"y":5},{"x":12,"y":16},{"x":-28,"y":-7},{"x":14,"y":16},{"x":-39,"y":-1},{"x":-3,"y":38},{"x":-175,"y":73},{"x":-71,"y":-67},{"x":3,"y":87},{"x":-56,"y":29}],"type":"coastline"},{"arc":[{"x":175482,"y":167639},{"x":-72,"y":-218},{"x":-16,"y":11},{"x":-179,"y":-201},{"x":-35,"y":-96}],"type":"area"},{"arc":[{"x":175180,"y":167135},{"x":39,"y":-19},{"x":58,"y":-101},{"x":-2,"y":-86},{"x":43,"y":-46},{"x":87,"y":-13},{"x":35,"y":84},{"x":73,"y":-51},{"x":179,"y":-30},{"x":129,"y":-91},{"x":48,"y":16}],"type":"area"},{"arc":[{"x":175869,"y":166798},{"x":-5,"y":36},{"x":60,"y":-6},{"x":-36,"y":28},{"x":31,"y":0},{"x":3,"y":33},{"x":55,"y":-56},{"x":-15,"y":102},{"x":42,"y":138},{"x":36,"y":-4},{"x":7,"y":20},{"x":-5,"y":115},{"x":51,"y":274}],"type":"coastline"},{"arc":[{"x":175180,"y":167135},{"x":-149,"y":-282},{"x":-19,"y":8},{"x":18,"y":-11},{"x":-67,"y":-301},{"x":11,"y":-28},{"x":64,"y":-21},{"x":-42,"y":-150}],"type":"area"},{"arc":[{"x":174996,"y":166350},{"x":133,"y":-95},{"x":143,"y":-19},{"x":46,"y":-39},{"x":22,"y":8},{"x":-7,"y":-15},{"x":46,"y":-2},{"x":48,"y":-31},{"x":-15,"y":-37}],"type":"area"},{"arc":[{"x":175412,"y":166120},{"x":52,"y":60},{"x":30,"y":-19},{"x":-20,"y":35},{"x":38,"y":53},{"x":29,"y":-19},{"x":11,"y":16},{"x":-32,"y":5},{"x":15,"y":34},{"x":44,"y":56},{"x":18,"y":-29},{"x":18,"y":25},{"x":-35,"y":15},{"x":117,"y":152},{"x":18,"y":13},{"x":29,"y":-24},{"x":-32,"y":32},{"x":36,"y":29},{"x":25,"y":-17},{"x":-23,"y":29},{"x":30,"y":32},{"x":23,"y":-16},{"x":-14,"y":40},{"x":21,"y":20},{"x":23,"y":-16},{"x":-18,"y":29},{"x":37,"y":-6},{"x":43,"y":64},{"x":-22,"y":33},{"x":53,"y":43},{"x":126,"y":35},{"x":-125,"y":-33},{"x":-42,"y":-35},{"x":-16,"y":42}],"type":"coastline"},{"arc":[{"x":174862,"y":167955},{"x":-171,"y":-190},{"x":-70,"y":-17},{"x":-14,"y":-40},{"x":67,"y":2},{"x":-44,"y":-24},{"x":-55,"y":6},{"x":-76,"y":58},{"x":-47,"y":151},{"x":-53,"y":49},{"x":-91,"y":-40},{"x":28,"y":-109}],"type":"admin"},{"arc":[{"x":174336,"y":167801},{"x":31,"y":23},{"x":27,"y":-11},{"x":-7,"y":-51},{"x":-59,"y":-56},{"x":66,"y":-122},{"x":69,"y":-32},{"x":-21,"y":-63},{"x":62,"y":-41},{"x":-34,"y":-94},{"x":87,"y":-31},{"x":13,"y":-49},{"x":-10,"y":-84},{"x":-73,"y":-99},{"x":53,"y":-134},{"x":-87,"y":-104},{"x":-1,"y":-99}],"type":"area"},{"arc":[{"x":174452,"y":166754},{"x":85,"y":-72},{"x":-18,"y":-137},{"x":52,"y":-130},{"x":162,"y":-89}],"type":"area"},{"arc":[{"x":174733,"y":166326},{"x":162,"y":43},{"x":101,"y":-19}],"type":"area"},{"arc":[{"x":174336,"y":167801},{"x":-65,"y":-108},{"x":-83,"y":-10},{"x":-56,"y":47},{"x":-36,"y":235},{"x":-56,"y":12},{"x":-110,"y":-63},{"x":-113,"y":5},{"x":-31,"y":22},{"x":12,"y":68},{"x":-25,"y":54},{"x":-31,"y":17},{"x":-31,"y":-25}],"type":"admin"},{"arc":[{"x":173711,"y":168055},{"x":10,"y":-68},{"x":35,"y":-9},{"x":-10,"y":-47},{"x":-26,"y":-72},{"x":-63,"y":19},{"x":-46,"y":-134},{"x":-66,"y":7},{"x":24,"y":-51},{"x":2,"y":30},{"x":59,"y":-7},{"x":-44,"y":-75},{"x":-49,"y":-27},{"x":-95,"y":6},{"x":9,"y":-60},{"x":-65,"y":-72},{"x":-44,"y":2},{"x":-23,"y":30},{"x":-12,"y":-63},{"x":-59,"y":5},{"x":-57,"y":-100},{"x":20,"y":-106},{"x":-47,"y":-23},{"x":-31,"y":24},{"x":-31,"y":-35}],"type":"admin"},{"arc":[{"x":173102,"y":167229},{"x":46,"y":-51},{"x":3,"y":-52},{"x":51,"y":19},{"x":41,"y":-50},{"x":-59,"y":-10},{"x":60,"y":-31},{"x":-61,"y":20},{"x":-8,"y":-52},{"x":-30,"y":-18},{"x":-13,"y":16},{"x":-18,"y":-52},{"x":67,"y":1},{"x":-54,"y":-71},{"x":27,"y":-106},{"x":-38,"y":25},{"x":-8,"y":-26},{"x":-9,"y":26},{"x":-64,"y":-29},{"x":77,"y":0},{"x":-36,"y":-16},{"x":57,"y":-21}],"type":"admin"},{"arc":[{"x":173133,"y":166751},{"x":118,"y":-2},{"x":149,"y":61},{"x":150,"y":-38},{"x":136,"y":82},{"x":58,"y":-27},{"x":62,"y":-97},{"x":55,"y":-17},{"x":108,"y":46},{"x":210,"y":29},{"x":132,"y":-39},{"x":141,"y":5}],"type":"area"},{"arc":[{"x":173133,"y":166751},{"x":-106,"y":-145},{"x":-108,"y":-49},{"x":-90,"y":-90},{"x":-136,"y":-17}],"type":"admin"},{"arc":[{"x":172693,"y":166450},{"x":15,"y":-79},{"x":31,"y":11},{"x":41,"y":-29},{"x":40,"y":29},{"x":30,"y":-12},{"x":60,"y":-82},{"x":-8,"y":-35},{"x":-76,"y":-73},{"x":-3,"y":-58},{"x":-103,"y":-84},{"x":-135,"y":-38},{"x":-65,"y":38}],"type":"admin"},{"arc":[{"x":172520,"y":166038},{"x":12,"y":-267}],"type":"admin"},{"arc":[{"x":172532,"y":165771},{"x":15,"y":76}],"type":"admin"},{"arc":[{"x":172547,"y":165847},{"x":27,"y":57},{"x":114,"y":-17},{"x":89,"y":79},{"x":262,"y":-4},{"x":111,"y":16},{"x":71,"y":41},{"x":-61,"y":-55},{"x":18,"y":-56},{"x":-20,"y":-17},{"x":58,"y":2},{"x":11,"y":-59},{"x":270,"y":-13},{"x":-97,"y":54},{"x":67,"y":101},{"x":53,"y":0},{"x":-43,"y":54},{"x":41,"y":30},{"x":210,"y":-46},{"x":96,"y":-123},{"x":-23,"y":57},{"x":22,"y":21},{"x":21,"y":-48},{"x":46,"y":-13},{"x":71,"y":18},{"x":20,"y":-31},{"x":25,"y":42},{"x":44,"y":-35},{"x":3,"y":35},{"x":65,"y":-38}],"type":"area"},{"arc":[{"x":174118,"y":165899},{"x":75,"y":66},{"x":44,"y":213},{"x":132,"y":-59},{"x":106,"y":82},{"x":79,"y":7},{"x":40,"y":47},{"x":11,"y":76},{"x":117,"y":-27},{"x":11,"y":22}],"type":"area"},{"arc":[{"x":174118,"y":165899},{"x":-30,"y":-42},{"x":283,"y":-103},{"x":63,"y":5},{"x":0,"y":-32},{"x":-75,"y":-21},{"x":-16,"y":-60},{"x":-28,"y":54},{"x":-19,"y":-21},{"x":6,"y":-115},{"x":-137,"y":-218},{"x":25,"y":-160},{"x":-41,"y":-5},{"x":-66,"y":35},{"x":3,"y":-45},{"x":99,"y":-20},{"x":-33,"y":-21},{"x":-11,"y":-56},{"x":-41,"y":2},{"x":9,"y":-93},{"x":41,"y":-69},{"x":-25,"y":-107},{"x":5,"y":-35},{"x":30,"y":-4},{"x":-42,"y":-65},{"x":11,"y":-30},{"x":76,"y":119},{"x":-75,"y":-161},{"x":169,"y":41},{"x":96,"y":56},{"x":49,"y":-66}],"type":"area"},{"arc":[{"x":174444,"y":164662},{"x":174,"y":200},{"x":249,"y":399},{"x":82,"y":48},{"x":-34,"y":-6},{"x":17,"y":38},{"x":29,"y":-20},{"x":-29,"y":21},{"x":63,"y":123},{"x":417,"y":655}],"type":"coastline"},{"arc":[{"x":172547,"y":165847},{"x":53,"y":-23},{"x":42,"y":10},{"x":16,"y":-138},{"x":61,"y":55},{"x":123,"y":14},{"x":36,"y":-22},{"x":7,"y":17},{"x":4,"y":-27},{"x":-74,"y":-79},{"x":-15,"y":-97},{"x":191,"y":6},{"x":-6,"y":-23},{"x":47,"y":-27},{"x":26,"y":-134},{"x":101,"y":40},{"x":22,"y":-22},{"x":-2,"y":-43},{"x":-34,"y":-10},{"x":14,"y":-110},{"x":-148,"y":-31},{"x":-12,"y":-23},{"x":-79,"y":-229},{"x":26,"y":-35},{"x":-16,"y":-101},{"x":-69,"y":-95}],"type":"admin"},{"arc":[{"x":172861,"y":164720},{"x":51,"y":-192},{"x":40,"y":1},{"x":9,"y":-25},{"x":-23,"y":-9},{"x":24,"y":-14},{"x":-4,"y":-94},{"x":51,"y":-172},{"x":-147,"y":-83}],"type":"admin"},{"arc":[{"x":172862,"y":164132},{"x":43,"y":-116},{"x":-61,"y":-64},{"x":24,"y":-56}],"type":"admin"},{"arc":[{"x":172868,"y":163896},{"x":38,"y":17},{"x":53,"y":-31},{"x":47,"y":5},{"x":231,"y":113},{"x":40,"y":-18},{"x":12,"y":24},{"x":2,"y":-20},{"x":44,"y":-20},{"x":-44,"y":21},{"x":-2,"y":19},{"x":16,"y":-17},{"x":27,"y":16},{"x":-9,"y":-27},{"x":66,"y":64},{"x":103,"y":24},{"x":4,"y":-16},{"x":6,"y":26},{"x":230,"y":105},{"x":146,"y":24},{"x":21,"y":28},{"x":71,"y":16},{"x":164,"y":148},{"x":16,"y":-22},{"x":22,"y":-2},{"x":-32,"y":18},{"x":7,"y":9},{"x":12,"y":-16},{"x":6,"y":21},{"x":13,"y":-41},{"x":-12,"y":41},{"x":32,"y":37},{"x":246,"y":220}],"type":"coastline"},{"arc":[{"x":160864,"y":148702},{"x":-51,"y":-4},{"x":-1,"y":50},{"x":-48,"y":29},{"x":5,"y":49},{"x":-83,"y":28},{"x":-25,"y":68},{"x":-50,"y":15}],"type":"area"},{"arc":[{"x":160611,"y":148937},{"x":-62,"y":-36},{"x":-37,"y":59},{"x":-59,"y":24},{"x":-27,"y":-64},{"x":37,"y":-163},{"x":-82,"y":9},{"x":-54,"y":36},{"x":-1,"y":-69},{"x":-49,"y":-23}],"type":"admin"},{"arc":[{"x":160277,"y":148710},{"x":-8,"y":-61},{"x":-49,"y":-27},{"x":8,"y":-16},{"x":39,"y":12},{"x":20,"y":-29},{"x":-115,"y":-123}],"type":"admin"},{"arc":[{"x":160172,"y":148466},{"x":-95,"y":-44},{"x":22,"y":-11},{"x":-39,"y":-16},{"x":-1,"y":-91},{"x":-280,"y":60},{"x":-278,"y":-7},{"x":-119,"y":22},{"x":-171,"y":90},{"x":-293,"y":212},{"x":-193,"y":69},{"x":-166,"y":187},{"x":-65,"y":219},{"x":12,"y":138},{"x":147,"y":466},{"x":-13,"y":114},{"x":29,"y":88},{"x":-160,"y":199},{"x":-27,"y":105},{"x":-58,"y":76},{"x":-7,"y":139},{"x":-96,"y":103},{"x":16,"y":44},{"x":-76,"y":74},{"x":-47,"y":-11},{"x":-23,"y":21},{"x":-32,"y":107},{"x":51,"y":148},{"x":-36,"y":83},{"x":123,"y":286},{"x":0,"y":130},{"x":-17,"y":74},{"x":-439,"y":662},{"x":88,"y":187},{"x":-89,"y":214},{"x":90,"y":63},{"x":-1,"y":44}],"type":"admin"},{"arc":[{"x":157929,"y":152710},{"x":-112,"y":18},{"x":-41,"y":-87},{"x":-49,"y":-28},{"x":39,"y":-44},{"x":8,"y":-131},{"x":-38,"y":-19},{"x":-24,"y":-70},{"x":-199,"y":-20},{"x":-8,"y":-95},{"x":-63,"y":-58},{"x":-105,"y":-13},{"x":-122,"y":61},{"x":-140,"y":-13},{"x":-58,"y":-105},{"x":-111,"y":-55},{"x":-220,"y":-35},{"x":-45,"y":-37},{"x":-13,"y":-103},{"x":-66,"y":-58},{"x":10,"y":-96},{"x":-81,"y":-7},{"x":-30,"y":-38},{"x":-102,"y":16},{"x":-115,"y":-119},{"x":-48,"y":-15},{"x":1,"y":-52}],"type":"admin"},{"arc":[{"x":156197,"y":151507},{"x":41,"y":-110},{"x":-8,"y":-36},{"x":-42,"y":-21},{"x":-20,"y":-121},{"x":66,"y":-202}],"type":"admin"},{"arc":[{"x":156234,"y":151017},{"x":124,"y":-90},{"x":45,"y":-113},{"x":67,"y":-54},{"x":164,"y":-48},{"x":14,"y":-376},{"x":-104,"y":-55},{"x":-63,"y":-83},{"x":58,"y":-117},{"x":-49,"y":-42},{"x":94,"y":-97},{"x":-2,"y":-91},{"x":69,"y":-103},{"x":-13,"y":-73},{"x":26,"y":-56},{"x":123,"y":-98},{"x":178,"y":10},{"x":68,"y":-15},{"x":52,"y":-50},{"x":-36,"y":-11},{"x":-55,"y":-112},{"x":11,"y":-79},{"x":-45,"y":-92},{"x":-87,"y":-39},{"x":-80,"y":9},{"x":-28,"y":-76},{"x":-22,"y":0},{"x":12,"y":-133},{"x":-50,"y":-38},{"x":11,"y":-39},{"x":-79,"y":-115},{"x":6,"y":-66},{"x":137,"y":-87},{"x":74,"y":92},{"x":41,"y":-19},{"x":52,"y":14},{"x":27,"y":45},{"x":122,"y":-8},{"x":39,"y":-107},{"x":-72,"y":-84},{"x":87,"y":-202},{"x":-84,"y":-156},{"x":-93,"y":-78},{"x":134,"y":-96},{"x":-217,"y":-155},{"x":-10,"y":-100},{"x":-60,"y":-35},{"x":-3,"y":-53},{"x":-101,"y":1},{"x":12,"y":-52},{"x":-52,"y":-34},{"x":116,"y":-8},{"x":116,"y":-68},{"x":26,"y":-54},{"x":64,"y":13},{"x":27,"y":-28},{"x":-35,"y":-97},{"x":22,"y":-44},{"x":-52,"y":-32},{"x":59,"y":-38},{"x":22,"y":-119},{"x":-112,"y":-71},{"x":-27,"y":-90},{"x":-31,"y":-20},{"x":-58,"y":12},{"x":-8,"y":-66},{"x":-41,"y":-49},{"x":-221,"y":-106},{"x":18,"y":-49},{"x":-31,"y":-12},{"x":-9,"y":-48},{"x":-68,"y":-35},{"x":-32,"y":12},{"x":-36,"y":-49},{"x":-69,"y":-27},{"x":3,"y":-62},{"x":-36,"y":-41},{"x":-47,"y":30},{"x":-113,"y":0},{"x":-4,"y":-189},{"x":-147,"y":-187}],"type":"admin"},{"arc":[{"x":155972,"y":146039},{"x":-28,"y":-81},{"x":44,"y":-38},{"x":46,"y":26},{"x":43,"y":-9},{"x":221,"y":101},{"x":117,"y":-21},{"x":44,"y":16},{"x":19,"y":-18},{"x":177,"y":63},{"x":56,"y":-50},{"x":91,"y":-28},{"x":187,"y":99},{"x":144,"y":-56},{"x":95,"y":11},{"x":90,"y":-51},{"x":226,"y":-16},{"x":36,"y":-35},{"x":51,"y":2},{"x":40,"y":-61},{"x":-10,"y":-60},{"x":-69,"y":-74},{"x":36,"y":-30},{"x":44,"y":0},{"x":96,"y":63},{"x":247,"y":-20},{"x":96,"y":36}],"type":"area"},{"arc":[{"x":158111,"y":145808},{"x":306,"y":12},{"x":66,"y":36},{"x":124,"y":-11},{"x":54,"y":61},{"x":65,"y":-12},{"x":60,"y":51},{"x":79,"y":3},{"x":-2,"y":45},{"x":162,"y":-7},{"x":68,"y":29},{"x":44,"y":-24},{"x":134,"y":43},{"x":72,"y":76},{"x":83,"y":-70},{"x":14,"y":-71}],"type":"area"},{"arc":[{"x":159440,"y":145969},{"x":137,"y":127},{"x":-29,"y":44},{"x":1,"y":-48},{"x":-35,"y":31},{"x":7,"y":52},{"x":-56,"y":52},{"x":18,"y":47},{"x":23,"y":-75},{"x":53,"y":-24},{"x":-12,"y":53},{"x":46,"y":5},{"x":10,"y":26},{"x":16,"y":-25},{"x":61,"y":36},{"x":-83,"y":29},{"x":8,"y":39},{"x":146,"y":41},{"x":71,"y":51},{"x":38,"y":-9},{"x":-7,"y":27},{"x":64,"y":20},{"x":-44,"y":30},{"x":6,"y":50},{"x":59,"y":37},{"x":8,"y":107},{"x":59,"y":28},{"x":36,"y":-23},{"x":41,"y":33},{"x":54,"y":-30},{"x":39,"y":19},{"x":2,"y":-31},{"x":61,"y":-28},{"x":28,"y":9},{"x":31,"y":76},{"x":12,"y":-28},{"x":38,"y":6},{"x":28,"y":64},{"x":68,"y":14},{"x":-11,"y":142},{"x":89,"y":14},{"x":62,"y":49},{"x":17,"y":-28},{"x":49,"y":39},{"x":66,"y":258},{"x":141,"y":22}],"type":"area"},{"arc":[{"x":160856,"y":147297},{"x":-6,"y":96},{"x":8,"y":11},{"x":17,"y":-12},{"x":11,"y":11},{"x":11,"y":23},{"x":-18,"y":-27},{"x":-13,"y":19},{"x":21,"y":23},{"x":15,"y":-11},{"x":-29,"y":116},{"x":22,"y":177},{"x":10,"y":30},{"x":46,"y":15},{"x":-42,"y":-11},{"x":-8,"y":38},{"x":53,"y":-6},{"x":4,"y":26},{"x":-17,"y":-11},{"x":-4,"y":51},{"x":32,"y":-52},{"x":-125,"y":683},{"x":18,"y":41},{"x":-18,"y":-22},{"x":14,"y":34},{"x":-31,"y":8},{"x":35,"y":0},{"x":9,"y":-17},{"x":-7,"y":172}],"type":"coastline"},{"arc":[{"x":160724,"y":157223},{"x":-82,"y":-64},{"x":-19,"y":16},{"x":-1,"y":57},{"x":-142,"y":328},{"x":-89,"y":66},{"x":-43,"y":96},{"x":-65,"y":64},{"x":-46,"y":218},{"x":66,"y":81},{"x":32,"y":-1},{"x":52,"y":81},{"x":-33,"y":205},{"x":61,"y":1},{"x":60,"y":100},{"x":88,"y":5},{"x":24,"y":33},{"x":46,"y":-33},{"x":42,"y":5},{"x":-36,"y":34},{"x":73,"y":13},{"x":-88,"y":77},{"x":91,"y":170},{"x":-12,"y":39}],"type":"admin"},{"arc":[{"x":160703,"y":158814},{"x":-24,"y":29},{"x":23,"y":85},{"x":-38,"y":67},{"x":-47,"y":-33},{"x":-193,"y":0},{"x":-37,"y":27}],"type":"area"},{"arc":[{"x":160387,"y":158989},{"x":-33,"y":-64},{"x":-34,"y":-11},{"x":-11,"y":-142},{"x":-85,"y":3},{"x":5,"y":-28},{"x":-44,"y":-5},{"x":-22,"y":-39},{"x":-71,"y":19},{"x":-121,"y":-40},{"x":-4,"y":21}],"type":"admin"},{"arc":[{"x":159967,"y":158703},{"x":-14,"y":-34},{"x":-154,"y":-38},{"x":-434,"y":-197},{"x":-70,"y":163},{"x":-41,"y":8},{"x":-49,"y":85},{"x":-62,"y":24},{"x":-14,"y":36},{"x":-107,"y":15},{"x":-73,"y":110},{"x":-99,"y":57},{"x":-216,"y":29},{"x":-117,"y":-9},{"x":-72,"y":109},{"x":-47,"y":10},{"x":-39,"y":-23},{"x":-17,"y":-59},{"x":-49,"y":-26},{"x":-64,"y":31}],"type":"area"},{"arc":[{"x":158229,"y":158994},{"x":-229,"y":-182},{"x":59,"y":-122},{"x":-16,"y":-45},{"x":-284,"y":-116},{"x":31,"y":-172},{"x":-72,"y":-32},{"x":-6,"y":-76},{"x":59,"y":-102},{"x":-89,"y":-89},{"x":51,"y":-218}],"type":"area"},{"arc":[{"x":157733,"y":157840},{"x":149,"y":-4},{"x":95,"y":-64},{"x":116,"y":-30},{"x":44,"y":-33},{"x":-2,"y":-66},{"x":74,"y":-99},{"x":56,"y":16},{"x":73,"y":-49},{"x":-20,"y":-119},{"x":34,"y":-54},{"x":-35,"y":-30},{"x":-6,"y":-71},{"x":20,"y":-79},{"x":-41,"y":-51},{"x":-64,"y":-10},{"x":-114,"y":-166},{"x":-21,"y":-111},{"x":26,"y":-104},{"x":-25,"y":-19},{"x":36,"y":-23},{"x":21,"y":-64},{"x":-52,"y":-151},{"x":34,"y":-101},{"x":-37,"y":-106},{"x":-155,"y":-41},{"x":-98,"y":17},{"x":-48,"y":-51},{"x":-59,"y":12},{"x":-3,"y":-52},{"x":-63,"y":-28},{"x":-194,"y":-29},{"x":-37,"y":98}],"type":"area"},{"arc":[{"x":157437,"y":156178},{"x":-37,"y":-63},{"x":-9,"y":-121},{"x":-55,"y":-92},{"x":5,"y":-73},{"x":-247,"y":-292}],"type":"admin"},{"arc":[{"x":157094,"y":155537},{"x":36,"y":-140},{"x":55,"y":13},{"x":1,"y":-57},{"x":96,"y":-29},{"x":86,"y":-73},{"x":35,"y":4},{"x":-1,"y":35}],"type":"admin"},{"arc":[{"x":157402,"y":155290},{"x":4,"y":34},{"x":38,"y":12},{"x":166,"y":-81},{"x":-3,"y":70},{"x":52,"y":71},{"x":46,"y":-23},{"x":57,"y":55},{"x":44,"y":1},{"x":81,"y":-90},{"x":49,"y":-17},{"x":-133,"y":-170},{"x":16,"y":-65},{"x":49,"y":-37},{"x":36,"y":12},{"x":11,"y":-44},{"x":71,"y":-11},{"x":-1,"y":-26},{"x":76,"y":19},{"x":-2,"y":-61},{"x":46,"y":4},{"x":-6,"y":-26},{"x":37,"y":21},{"x":88,"y":-16},{"x":62,"y":26},{"x":49,"y":67},{"x":81,"y":-5},{"x":4,"y":30},{"x":82,"y":29},{"x":13,"y":39},{"x":44,"y":-32},{"x":37,"y":33},{"x":56,"y":-1},{"x":42,"y":40},{"x":55,"y":-7},{"x":42,"y":31}],"type":"area"},{"arc":[{"x":158791,"y":155172},{"x":5,"y":120},{"x":110,"y":99},{"x":-39,"y":117},{"x":26,"y":32},{"x":-80,"y":91},{"x":41,"y":71},{"x":-23,"y":63},{"x":34,"y":33},{"x":53,"y":2},{"x":17,"y":-26},{"x":96,"y":34},{"x":118,"y":-51},{"x":116,"y":39},{"x":84,"y":-17},{"x":235,"y":130},{"x":52,"y":-181},{"x":46,"y":-15},{"x":-38,"y":-7},{"x":9,"y":-58},{"x":20,"y":7},{"x":23,"y":-70},{"x":80,"y":-70},{"x":-60,"y":-55},{"x":59,"y":-98},{"x":-45,"y":-50},{"x":39,"y":-112},{"x":-33,"y":-33},{"x":1,"y":-52},{"x":-90,"y":-43},{"x":-66,"y":-109},{"x":55,"y":-119}],"type":"admin"},{"arc":[{"x":159636,"y":154844},{"x":257,"y":76},{"x":141,"y":-33},{"x":84,"y":100},{"x":164,"y":58},{"x":23,"y":-15},{"x":59,"y":25},{"x":52,"y":-34},{"x":28,"y":68},{"x":135,"y":80}],"type":"admin"},{"arc":[{"x":160579,"y":155169},{"x":157,"y":122},{"x":73,"y":-9},{"x":57,"y":47},{"x":48,"y":6},{"x":8,"y":35},{"x":92,"y":39},{"x":7,"y":33},{"x":130,"y":-2},{"x":65,"y":80},{"x":98,"y":11},{"x":95,"y":44},{"x":184,"y":162},{"x":129,"y":72}],"type":"admin"},{"arc":[{"x":161722,"y":155809},{"x":-96,"y":141},{"x":-22,"y":122},{"x":-104,"y":51},{"x":-15,"y":78},{"x":27,"y":42},{"x":-27,"y":63},{"x":-97,"y":20},{"x":74,"y":185},{"x":61,"y":41},{"x":91,"y":-18},{"x":155,"y":83},{"x":71,"y":79}],"type":"admin"},{"arc":[{"x":161840,"y":156696},{"x":-75,"y":-1},{"x":-45,"y":32},{"x":-9,"y":46},{"x":-56,"y":-3},{"x":-119,"y":52},{"x":-104,"y":-18},{"x":-32,"y":-45},{"x":-270,"y":33},{"x":71,"y":286},{"x":-138,"y":-62},{"x":-164,"y":27},{"x":-105,"y":69},{"x":-70,"y":111}],"type":"admin"},{"arc":[{"x":155973,"y":156593},{"x":-63,"y":-32},{"x":-79,"y":19},{"x":-80,"y":-63},{"x":-97,"y":-20},{"x":-20,"y":-34},{"x":-108,"y":13},{"x":-41,"y":-36},{"x":-43,"y":49},{"x":-66,"y":24},{"x":-106,"y":-5},{"x":-53,"y":103}],"type":"admin"},{"arc":[{"x":155217,"y":156611},{"x":-51,"y":21},{"x":-38,"y":-50},{"x":-80,"y":-17},{"x":-16,"y":-38},{"x":-26,"y":23},{"x":-46,"y":-8},{"x":-90,"y":-54},{"x":-91,"y":58},{"x":-69,"y":-19},{"x":-132,"y":103},{"x":-69,"y":-46},{"x":-67,"y":8},{"x":-49,"y":61},{"x":-44,"y":0},{"x":-5,"y":60},{"x":-78,"y":17},{"x":-21,"y":118},{"x":-119,"y":31},{"x":-11,"y":53},{"x":-33,"y":44},{"x":-44,"y":5},{"x":-6,"y":32}],"type":"area"},{"arc":[{"x":154032,"y":157013},{"x":-94,"y":100},{"x":-130,"y":-39},{"x":-85,"y":23},{"x":-134,"y":-19},{"x":-88,"y":53},{"x":-55,"y":-44},{"x":-74,"y":8}],"type":"admin"},{"arc":[{"x":153372,"y":157095},{"x":-48,"y":-70},{"x":7,"y":-214},{"x":-73,"y":-124}],"type":"admin"},{"arc":[{"x":153258,"y":156687},{"x":-8,"y":-117},{"x":66,"y":-50},{"x":-7,"y":-55},{"x":37,"y":-73},{"x":43,"y":-9},{"x":8,"y":-48},{"x":-90,"y":-90},{"x":-92,"y":3},{"x":-76,"y":-36}],"type":"area"},{"arc":[{"x":153139,"y":156212},{"x":0,"y":-124},{"x":71,"y":-170},{"x":-19,"y":-5},{"x":10,"y":-148},{"x":77,"y":-188},{"x":-149,"y":-99},{"x":-6,"y":-30},{"x":303,"y":-18},{"x":11,"y":-115},{"x":-15,"y":-89},{"x":-239,"y":-68},{"x":-26,"y":15},{"x":19,"y":-30},{"x":-68,"y":-86},{"x":10,"y":-23},{"x":-34,"y":-7},{"x":13,"y":-36},{"x":239,"y":90},{"x":-10,"y":-85},{"x":28,"y":0},{"x":-117,"y":-106},{"x":-29,"y":53},{"x":-65,"y":-23},{"x":-15,"y":-74},{"x":-209,"y":-170}],"type":"area"},{"arc":[{"x":152919,"y":154676},{"x":41,"y":-48},{"x":-60,"y":-68},{"x":143,"y":100},{"x":76,"y":-79}],"type":"admin"},{"arc":[{"x":153119,"y":154581},{"x":144,"y":88},{"x":158,"y":22},{"x":56,"y":68},{"x":49,"y":-32},{"x":119,"y":-12},{"x":-1,"y":-73},{"x":30,"y":-1},{"x":-47,"y":-159},{"x":-102,"y":-180},{"x":-104,"y":-119},{"x":-109,"y":-56},{"x":-24,"y":-107},{"x":-114,"y":-163},{"x":-71,"y":-39}],"type":"admin"},{"arc":[{"x":153103,"y":153818},{"x":-197,"y":-171},{"x":-383,"y":-169},{"x":-143,"y":-150},{"x":-20,"y":-91}],"type":"admin"},{"arc":[{"x":152360,"y":153237},{"x":-220,"y":-198},{"x":-175,"y":-2},{"x":-107,"y":27},{"x":-22,"y":-59},{"x":-82,"y":-32},{"x":-57,"y":-65},{"x":-113,"y":-29},{"x":-104,"y":-114},{"x":-58,"y":-9},{"x":-29,"y":-44}],"type":"admin"},{"arc":[{"x":151393,"y":152712},{"x":10,"y":-65},{"x":49,"y":-25},{"x":26,"y":-140},{"x":-78,"y":-96},{"x":2,"y":-70},{"x":34,"y":-88},{"x":88,"y":-53},{"x":-1,"y":-52},{"x":81,"y":-139},{"x":-41,"y":-81},{"x":11,"y":-36},{"x":-61,"y":-23},{"x":-15,"y":-72},{"x":88,"y":-60},{"x":7,"y":-79}],"type":"admin"},{"arc":[{"x":151593,"y":151633},{"x":209,"y":-17},{"x":79,"y":78},{"x":91,"y":16},{"x":47,"y":70},{"x":45,"y":9},{"x":56,"y":-38},{"x":112,"y":31},{"x":21,"y":-44},{"x":-28,"y":-133},{"x":64,"y":-42},{"x":85,"y":-200},{"x":117,"y":-58},{"x":109,"y":-134},{"x":94,"y":-48},{"x":48,"y":19},{"x":17,"y":52},{"x":154,"y":36},{"x":53,"y":-45},{"x":73,"y":-15},{"x":95,"y":137},{"x":75,"y":-1},{"x":25,"y":27},{"x":104,"y":210},{"x":70,"y":12},{"x":34,"y":32},{"x":77,"y":-40},{"x":99,"y":-3},{"x":61,"y":43},{"x":25,"y":-92},{"x":61,"y":-79},{"x":90,"y":-39},{"x":77,"y":-14},{"x":45,"y":28},{"x":55,"y":-32},{"x":22,"y":103},{"x":82,"y":2},{"x":22,"y":67},{"x":72,"y":17},{"x":36,"y":43},{"x":74,"y":9},{"x":73,"y":99},{"x":55,"y":11},{"x":54,"y":58},{"x":93,"y":22},{"x":24,"y":64},{"x":152,"y":84},{"x":132,"y":195},{"x":93,"y":-11},{"x":104,"y":65},{"x":56,"y":-44},{"x":163,"y":37},{"x":69,"y":-18},{"x":36,"y":-45},{"x":139,"y":-7}],"type":"admin"},{"arc":[{"x":155583,"y":152110},{"x":-49,"y":136},{"x":-2,"y":215},{"x":73,"y":48},{"x":161,"y":35},{"x":87,"y":53},{"x":31,"y":85}],"type":"area"},{"arc":[{"x":155884,"y":152682},{"x":-148,"y":148},{"x":-5,"y":61},{"x":-56,"y":7},{"x":-78,"y":53},{"x":-36,"y":-15},{"x":-74,"y":27},{"x":-162,"y":-1},{"x":-99,"y":-14},{"x":-53,"y":-41},{"x":-81,"y":-18},{"x":-77,"y":0},{"x":-112,"y":50},{"x":-25,"y":89},{"x":-46,"y":59},{"x":-80,"y":41},{"x":-13,"y":55},{"x":2,"y":124},{"x":34,"y":75},{"x":-15,"y":141},{"x":91,"y":49},{"x":-7,"y":65},{"x":-93,"y":37},{"x":-67,"y":-17},{"x":-70,"y":40},{"x":-64,"y":-14},{"x":-128,"y":-89},{"x":-76,"y":-13},{"x":-19,"y":34},{"x":14,"y":160},{"x":-32,"y":111},{"x":76,"y":59},{"x":-4,"y":99},{"x":-25,"y":70},{"x":-42,"y":-42},{"x":0,"y":53},{"x":28,"y":13},{"x":-48,"y":52},{"x":-26,"y":203},{"x":25,"y":3},{"x":2,"y":170},{"x":44,"y":22},{"x":13,"y":58},{"x":31,"y":283},{"x":158,"y":112},{"x":176,"y":76},{"x":80,"y":70},{"x":108,"y":9},{"x":16,"y":62},{"x":113,"y":111},{"x":-18,"y":27},{"x":32,"y":93},{"x":68,"y":52},{"x":77,"y":-4},{"x":91,"y":-76},{"x":-3,"y":-122},{"x":60,"y":-34},{"x":25,"y":14},{"x":-19,"y":-49},{"x":63,"y":-57},{"x":39,"y":17},{"x":8,"y":57},{"x":103,"y":47},{"x":57,"y":-43},{"x":239,"y":41},{"x":15,"y":118},{"x":53,"y":33},{"x":26,"y":-17},{"x":36,"y":49},{"x":-17,"y":16},{"x":54,"y":39},{"x":9,"y":116}],"type":"area"},{"arc":[{"x":156032,"y":155686},{"x":1,"y":52},{"x":-72,"y":28},{"x":6,"y":87},{"x":-50,"y":23},{"x":103,"y":104},{"x":-14,"y":66},{"x":51,"y":77},{"x":-24,"y":144},{"x":33,"y":41},{"x":-84,"y":120},{"x":38,"y":46},{"x":-65,"y":43},{"x":18,"y":76}],"type":"admin"},{"arc":[{"x":146400,"y":153949},{"x":-63,"y":-65},{"x":-97,"y":-21},{"x":-114,"y":87},{"x":-80,"y":-35},{"x":-45,"y":7},{"x":-33,"y":-43},{"x":-83,"y":2},{"x":-81,"y":-64},{"x":-87,"y":187},{"x":-46,"y":38},{"x":-118,"y":30},{"x":10,"y":108},{"x":-133,"y":197},{"x":-69,"y":36},{"x":-43,"y":96}],"type":"admin"},{"arc":[{"x":145318,"y":154509},{"x":-231,"y":-152},{"x":-157,"y":-3},{"x":7,"y":100},{"x":-32,"y":107},{"x":-109,"y":20},{"x":-10,"y":-74},{"x":49,"y":-72},{"x":-58,"y":26},{"x":-3,"y":31},{"x":-22,"y":-24},{"x":-93,"y":27},{"x":-9,"y":75},{"x":-57,"y":-6},{"x":-55,"y":39},{"x":-57,"y":135},{"x":-2,"y":126},{"x":-60,"y":36},{"x":-179,"y":-25},{"x":-50,"y":70},{"x":-38,"y":-15},{"x":0,"y":39},{"x":-29,"y":6},{"x":-28,"y":169},{"x":-80,"y":77},{"x":38,"y":66},{"x":139,"y":113},{"x":108,"y":-10},{"x":311,"y":220},{"x":82,"y":36},{"x":84,"y":0}],"type":"admin"},{"arc":[{"x":144777,"y":155646},{"x":75,"y":35}],"type":"admin"},{"arc":[{"x":144852,"y":155681},{"x":4,"y":42},{"x":-240,"y":255},{"x":-68,"y":118},{"x":-145,"y":76},{"x":62,"y":114},{"x":80,"y":40},{"x":101,"y":145},{"x":82,"y":28},{"x":-21,"y":28},{"x":51,"y":105},{"x":-140,"y":119},{"x":-20,"y":133},{"x":-234,"y":135}],"type":"admin"},{"arc":[{"x":144364,"y":157019},{"x":-109,"y":-11},{"x":-131,"y":47},{"x":-70,"y":-37},{"x":-94,"y":201},{"x":-88,"y":-11},{"x":-32,"y":-43},{"x":-67,"y":2},{"x":-24,"y":101},{"x":-103,"y":84},{"x":-98,"y":-13},{"x":-82,"y":-59},{"x":-179,"y":-46},{"x":-53,"y":-123},{"x":34,"y":-56},{"x":-96,"y":-173},{"x":-38,"y":-18},{"x":-73,"y":-115},{"x":-56,"y":25},{"x":-94,"y":-6},{"x":-22,"y":-90}],"type":"admin"},{"arc":[{"x":142889,"y":156678},{"x":7,"y":-51},{"x":63,"y":-37},{"x":48,"y":-86},{"x":-3,"y":-98},{"x":-40,"y":-58},{"x":-53,"y":-4},{"x":-52,"y":-43},{"x":-35,"y":-139},{"x":-86,"y":17},{"x":-72,"y":-135},{"x":-112,"y":16},{"x":-133,"y":-92}],"type":"admin"},{"arc":[{"x":142421,"y":155968},{"x":42,"y":-136},{"x":-34,"y":-140},{"x":-118,"y":-101},{"x":11,"y":-90},{"x":-132,"y":-69},{"x":23,"y":-31},{"x":-20,"y":-125},{"x":-86,"y":-81},{"x":-10,"y":-153},{"x":-189,"y":-45},{"x":-81,"y":-70},{"x":2,"y":-116},{"x":47,"y":-119}],"type":"admin"},{"arc":[{"x":141876,"y":154692},{"x":80,"y":-14},{"x":46,"y":29},{"x":59,"y":-12},{"x":103,"y":45},{"x":168,"y":-221},{"x":5,"y":-44},{"x":-51,"y":-30},{"x":19,"y":-30},{"x":-38,"y":-40},{"x":193,"y":-3},{"x":32,"y":-37},{"x":55,"y":-5},{"x":38,"y":-154},{"x":30,"y":-22}],"type":"admin"},{"arc":[{"x":142615,"y":154154},{"x":-22,"y":23},{"x":14,"y":41},{"x":42,"y":22},{"x":15,"y":-26},{"x":45,"y":38},{"x":-41,"y":150},{"x":49,"y":167},{"x":-55,"y":36},{"x":46,"y":57},{"x":-17,"y":38},{"x":183,"y":207},{"x":90,"y":45},{"x":11,"y":37},{"x":102,"y":-11},{"x":42,"y":40},{"x":51,"y":8},{"x":4,"y":-66},{"x":-46,"y":-82},{"x":22,"y":-96},{"x":13,"y":-18},{"x":67,"y":5},{"x":107,"y":-122},{"x":75,"y":29},{"x":84,"y":-69},{"x":-9,"y":-94},{"x":28,"y":-67},{"x":66,"y":-59},{"x":59,"y":5},{"x":-16,"y":-44},{"x":57,"y":-20},{"x":72,"y":-90},{"x":38,"y":-130},{"x":51,"y":-43},{"x":-17,"y":-42},{"x":32,"y":0},{"x":4,"y":-32},{"x":38,"y":-16},{"x":0,"y":-96},{"x":42,"y":-5}],"type":"admin"},{"arc":[{"x":143941,"y":153874},{"x":39,"y":-8},{"x":-19,"y":-32},{"x":53,"y":-214},{"x":-19,"y":-84},{"x":-90,"y":-63},{"x":28,"y":-72}],"type":"admin"},{"arc":[{"x":143933,"y":153401},{"x":11,"y":-37},{"x":121,"y":-19},{"x":0,"y":-40},{"x":107,"y":-20},{"x":88,"y":37},{"x":117,"y":-19},{"x":73,"y":13},{"x":49,"y":-37},{"x":-122,"y":-58},{"x":69,"y":-78},{"x":118,"y":-60},{"x":18,"y":-76},{"x":83,"y":29},{"x":97,"y":-40},{"x":44,"y":-55},{"x":77,"y":34},{"x":76,"y":119},{"x":74,"y":39},{"x":67,"y":-9},{"x":39,"y":-45},{"x":11,"y":-130},{"x":38,"y":-16},{"x":22,"y":-81},{"x":394,"y":-135},{"x":19,"y":-105}],"type":"admin"},{"arc":[{"x":145623,"y":152612},{"x":67,"y":7},{"x":35,"y":-44},{"x":84,"y":-12},{"x":112,"y":113},{"x":11,"y":75},{"x":97,"y":132},{"x":163,"y":-54},{"x":93,"y":70},{"x":-8,"y":23},{"x":96,"y":56}],"type":"admin"},{"arc":[{"x":146373,"y":152978},{"x":-5,"y":81},{"x":87,"y":167},{"x":97,"y":65},{"x":49,"y":178},{"x":307,"y":250}],"type":"admin"},{"arc":[{"x":146908,"y":153719},{"x":-93,"y":90},{"x":-55,"y":-13}],"type":"admin"},{"arc":[{"x":146760,"y":153796},{"x":-30,"y":-8},{"x":3,"y":43},{"x":-81,"y":65},{"x":-186,"y":10},{"x":-66,"y":43}],"type":"admin"},{"arc":[{"x":150210,"y":157520},{"x":-41,"y":51},{"x":-107,"y":-47},{"x":-71,"y":39},{"x":-38,"y":-15},{"x":-75,"y":28},{"x":18,"y":39},{"x":-62,"y":35},{"x":-116,"y":-39},{"x":-54,"y":62},{"x":-74,"y":-69},{"x":-57,"y":112},{"x":-68,"y":11},{"x":-173,"y":-127},{"x":-64,"y":-8},{"x":-79,"y":50},{"x":-120,"y":-53},{"x":-283,"y":-35},{"x":-186,"y":55},{"x":-60,"y":106},{"x":1,"y":109}],"type":"admin"},{"arc":[{"x":148501,"y":157824},{"x":15,"y":79},{"x":-214,"y":191},{"x":-41,"y":93},{"x":-58,"y":36},{"x":-63,"y":-76}],"type":"admin"},{"arc":[{"x":148140,"y":158147},{"x":-33,"y":-78},{"x":-58,"y":-24},{"x":-131,"y":-131},{"x":-30,"y":-67},{"x":-77,"y":-31},{"x":-91,"y":-145},{"x":-71,"y":-35},{"x":-219,"y":140},{"x":-101,"y":1},{"x":-44,"y":-26},{"x":-168,"y":22},{"x":-101,"y":126},{"x":-108,"y":26},{"x":-141,"y":110}],"type":"admin"},{"arc":[{"x":146767,"y":158035},{"x":-126,"y":-85},{"x":-31,"y":-74},{"x":-175,"y":-10},{"x":-128,"y":38},{"x":-171,"y":-110},{"x":-78,"y":-9},{"x":-90,"y":-57},{"x":-58,"y":5},{"x":-46,"y":-56},{"x":23,"y":-61},{"x":84,"y":-55},{"x":16,"y":-58},{"x":-24,"y":-59},{"x":-101,"y":-46},{"x":-26,"y":-55}],"type":"admin"},{"arc":[{"x":145836,"y":157343},{"x":68,"y":-52},{"x":13,"y":-61},{"x":54,"y":-51},{"x":-5,"y":-52},{"x":161,"y":-60},{"x":42,"y":-97},{"x":77,"y":-74},{"x":147,"y":-78},{"x":46,"y":35},{"x":104,"y":16},{"x":276,"y":-35},{"x":-10,"y":-35},{"x":89,"y":-74},{"x":229,"y":-67},{"x":75,"y":-62},{"x":195,"y":-25},{"x":117,"y":-163}],"type":"admin"},{"arc":[{"x":147514,"y":156408},{"x":89,"y":30},{"x":164,"y":-14},{"x":24,"y":-24},{"x":107,"y":15},{"x":72,"y":-99},{"x":68,"y":-5},{"x":6,"y":-28},{"x":121,"y":-67},{"x":72,"y":25},{"x":79,"y":-53},{"x":69,"y":-114},{"x":9,"y":-122},{"x":76,"y":-143},{"x":-5,"y":-112},{"x":40,"y":-107},{"x":-75,"y":-75},{"x":-79,"y":-27},{"x":-4,"y":-63},{"x":34,"y":-31},{"x":48,"y":7},{"x":30,"y":-41}],"type":"area"},{"arc":[{"x":148459,"y":155360},{"x":35,"y":-10},{"x":-125,"y":-85},{"x":75,"y":-264},{"x":69,"y":17},{"x":96,"y":110},{"x":-36,"y":-77},{"x":-105,"y":-110},{"x":73,"y":-398},{"x":135,"y":-93},{"x":109,"y":-36},{"x":49,"y":-359},{"x":-22,"y":-57}],"type":"admin"},{"arc":[{"x":148812,"y":153998},{"x":88,"y":-43}],"type":"admin"},{"arc":[{"x":148900,"y":153955},{"x":74,"y":95},{"x":122,"y":54},{"x":79,"y":92},{"x":52,"y":21},{"x":42,"y":-34},{"x":184,"y":1},{"x":35,"y":81},{"x":103,"y":23}],"type":"area"},{"arc":[{"x":149591,"y":154288},{"x":50,"y":96},{"x":-91,"y":116},{"x":3,"y":54},{"x":-53,"y":96},{"x":174,"y":-93},{"x":59,"y":-60},{"x":111,"y":9},{"x":92,"y":61},{"x":55,"y":-14},{"x":29,"y":91},{"x":-78,"y":148},{"x":54,"y":179},{"x":70,"y":6},{"x":4,"y":45}],"type":"admin"},{"arc":[{"x":150070,"y":155022},{"x":-45,"y":106},{"x":-3,"y":130},{"x":-45,"y":4}],"type":"admin"},{"arc":[{"x":149977,"y":155262},{"x":-24,"y":-3},{"x":-18,"y":53},{"x":-57,"y":-19},{"x":-4,"y":-80},{"x":55,"y":-66},{"x":-145,"y":-69},{"x":-42,"y":29},{"x":-50,"y":180},{"x":-51,"y":-22},{"x":-20,"y":24},{"x":4,"y":-20},{"x":-30,"y":-2},{"x":-53,"y":-110},{"x":95,"y":-52},{"x":8,"y":-65},{"x":-100,"y":-5},{"x":-22,"y":-231},{"x":-56,"y":0},{"x":-100,"y":421},{"x":190,"y":83},{"x":-143,"y":191},{"x":128,"y":110},{"x":141,"y":6},{"x":42,"y":41}],"type":"admin"},{"arc":[{"x":149725,"y":155656},{"x":29,"y":133},{"x":59,"y":68},{"x":-2,"y":82},{"x":42,"y":11},{"x":36,"y":81},{"x":49,"y":31},{"x":-19,"y":38},{"x":51,"y":59},{"x":50,"y":2},{"x":35,"y":38},{"x":142,"y":60},{"x":48,"y":82},{"x":-54,"y":89},{"x":8,"y":38},{"x":82,"y":31},{"x":103,"y":115},{"x":125,"y":39},{"x":78,"y":57},{"x":91,"y":-41},{"x":83,"y":-1}],"type":"admin"},{"arc":[{"x":150761,"y":156668},{"x":94,"y":60},{"x":1,"y":97},{"x":91,"y":119}],"type":"area"},{"arc":[{"x":150947,"y":156944},{"x":-29,"y":100},{"x":-133,"y":112},{"x":-90,"y":167},{"x":-56,"y":27},{"x":-54,"y":-50},{"x":-63,"y":-10},{"x":-100,"y":147},{"x":-92,"y":51},{"x":-77,"y":-6},{"x":-43,"y":38}],"type":"area"},{"arc":[{"x":153139,"y":156212},{"x":-48,"y":11},{"x":-221,"y":-90},{"x":-108,"y":-5},{"x":-6,"y":-28},{"x":-44,"y":-14},{"x":-365,"y":-15},{"x":-50,"y":-56},{"x":-72,"y":-5},{"x":36,"y":-59},{"x":-112,"y":-47},{"x":-97,"y":35},{"x":-114,"y":-95}],"type":"area"},{"arc":[{"x":151938,"y":155844},{"x":17,"y":-62},{"x":-100,"y":-139},{"x":-27,"y":-95},{"x":54,"y":-74},{"x":18,"y":-82},{"x":49,"y":-36},{"x":5,"y":-93},{"x":114,"y":-2},{"x":2,"y":-75},{"x":-26,"y":-46},{"x":-107,"y":-6},{"x":-49,"y":-109},{"x":-87,"y":-3},{"x":-97,"y":-124},{"x":-4,"y":-105},{"x":-56,"y":-48},{"x":-68,"y":-40},{"x":1,"y":24},{"x":-81,"y":57},{"x":-59,"y":-34},{"x":-164,"y":-224},{"x":-112,"y":-68},{"x":-119,"y":-25},{"x":-31,"y":-55},{"x":-107,"y":-33},{"x":-44,"y":-111},{"x":-83,"y":-19},{"x":-39,"y":-34},{"x":-19,"y":-73},{"x":-76,"y":-31},{"x":-63,"y":-70},{"x":-99,"y":-4},{"x":-124,"y":61},{"x":-48,"y":73},{"x":-7,"y":101},{"x":-68,"y":23},{"x":-24,"y":43},{"x":-58,"y":4}],"type":"admin"},{"arc":[{"x":150152,"y":154310},{"x":-75,"y":-73},{"x":-141,"y":-10},{"x":-59,"y":-33},{"x":-149,"y":70},{"x":-22,"y":34},{"x":-115,"y":-10}],"type":"admin"},{"arc":[{"x":148900,"y":153955},{"x":23,"y":-28},{"x":175,"y":-54},{"x":31,"y":-80},{"x":39,"y":-26},{"x":152,"y":51},{"x":52,"y":-67},{"x":201,"y":43},{"x":44,"y":-21},{"x":111,"y":100},{"x":42,"y":-29},{"x":72,"y":13},{"x":78,"y":-35},{"x":60,"y":-70},{"x":203,"y":23},{"x":94,"y":-57},{"x":57,"y":2}],"type":"admin"},{"arc":[{"x":150334,"y":153720},{"x":135,"y":1},{"x":289,"y":-63},{"x":118,"y":54},{"x":57,"y":85},{"x":78,"y":-40},{"x":163,"y":37},{"x":115,"y":-12},{"x":176,"y":7},{"x":87,"y":30},{"x":191,"y":-6},{"x":61,"y":32},{"x":150,"y":19}],"type":"admin"},{"arc":[{"x":151954,"y":153864},{"x":31,"y":71},{"x":-17,"y":61},{"x":114,"y":114},{"x":98,"y":19},{"x":56,"y":43},{"x":-5,"y":71},{"x":166,"y":79},{"x":51,"y":115},{"x":89,"y":21},{"x":143,"y":143},{"x":108,"y":50},{"x":4,"y":79},{"x":38,"y":14},{"x":89,"y":-68}],"type":"admin"},{"arc":[{"x":142743,"y":159244},{"x":-129,"y":111},{"x":-14,"y":42},{"x":30,"y":83},{"x":-51,"y":7},{"x":-49,"y":86},{"x":-130,"y":52}],"type":"admin"},{"arc":[{"x":142400,"y":159625},{"x":-115,"y":-59},{"x":-124,"y":-1},{"x":-45,"y":27},{"x":-86,"y":-23},{"x":-303,"y":197},{"x":-271,"y":59},{"x":-69,"y":-11},{"x":-241,"y":82}],"type":"admin"},{"arc":[{"x":141146,"y":159896},{"x":-467,"y":45},{"x":-52,"y":-42},{"x":-145,"y":-35},{"x":-60,"y":16},{"x":-78,"y":-19},{"x":-111,"y":52},{"x":-83,"y":-37},{"x":-100,"y":35},{"x":-170,"y":-26},{"x":-135,"y":60},{"x":53,"y":131},{"x":-104,"y":62},{"x":-78,"y":133},{"x":-34,"y":14},{"x":-83,"y":-50},{"x":-56,"y":19},{"x":-71,"y":-25},{"x":-205,"y":45},{"x":-44,"y":-28},{"x":-91,"y":28},{"x":-233,"y":-79},{"x":-74,"y":47},{"x":11,"y":39},{"x":-44,"y":6}],"type":"area"},{"arc":[{"x":138692,"y":160287},{"x":-92,"y":-113},{"x":-88,"y":-14},{"x":-74,"y":-68},{"x":-200,"y":-295},{"x":-12,"y":-56},{"x":-157,"y":-131},{"x":85,"y":-96},{"x":85,"y":-46},{"x":-8,"y":-29},{"x":-119,"y":-78},{"x":20,"y":-229},{"x":-23,"y":-127},{"x":-76,"y":-34},{"x":-59,"y":-178}],"type":"area"},{"arc":[{"x":137974,"y":158793},{"x":22,"y":-54},{"x":205,"y":-33},{"x":77,"y":-165},{"x":77,"y":1},{"x":157,"y":-76},{"x":-15,"y":-66},{"x":31,"y":-66},{"x":116,"y":-78},{"x":23,"y":-107},{"x":35,"y":-23},{"x":-43,"y":-129},{"x":82,"y":19},{"x":69,"y":-17},{"x":-22,"y":-42},{"x":-25,"y":11},{"x":-43,"y":-36},{"x":7,"y":-86},{"x":80,"y":-121}],"type":"admin"},{"arc":[{"x":138807,"y":157725},{"x":86,"y":-4},{"x":14,"y":31},{"x":93,"y":23},{"x":72,"y":-24},{"x":41,"y":60},{"x":81,"y":-19},{"x":52,"y":44}],"type":"admin"},{"arc":[{"x":139246,"y":157836},{"x":45,"y":20},{"x":93,"y":-12},{"x":88,"y":39},{"x":36,"y":59},{"x":126,"y":-96},{"x":88,"y":-11},{"x":77,"y":-113},{"x":150,"y":17},{"x":46,"y":31},{"x":107,"y":-26},{"x":89,"y":-60},{"x":148,"y":-11},{"x":93,"y":129},{"x":6,"y":137},{"x":187,"y":121},{"x":9,"y":105},{"x":127,"y":72},{"x":91,"y":16},{"x":41,"y":-56},{"x":94,"y":-31},{"x":72,"y":-69},{"x":78,"y":-11},{"x":53,"y":-91},{"x":-3,"y":-38},{"x":-41,"y":-6},{"x":35,"y":-72},{"x":-58,"y":21},{"x":-31,"y":-78},{"x":-47,"y":39},{"x":14,"y":-42},{"x":-28,"y":-9},{"x":0,"y":31},{"x":-24,"y":-1},{"x":3,"y":-44},{"x":-34,"y":-22},{"x":43,"y":-7},{"x":24,"y":-38},{"x":52,"y":7},{"x":-44,"y":-65},{"x":72,"y":-3},{"x":20,"y":-33},{"x":9,"y":29},{"x":27,"y":-11},{"x":32,"y":29},{"x":-15,"y":30},{"x":37,"y":7},{"x":14,"y":-25},{"x":110,"y":-13},{"x":69,"y":97},{"x":61,"y":39},{"x":7,"y":41},{"x":31,"y":-11},{"x":9,"y":17},{"x":30,"y":-31},{"x":-9,"y":-33},{"x":92,"y":69},{"x":118,"y":-89},{"x":6,"y":-109},{"x":33,"y":-1},{"x":43,"y":-52},{"x":54,"y":-6},{"x":-45,"y":-167},{"x":6,"y":-172},{"x":87,"y":6},{"x":70,"y":-86},{"x":187,"y":-3},{"x":113,"y":-104},{"x":64,"y":-123},{"x":47,"y":-16},{"x":28,"y":-153},{"x":87,"y":-10},{"x":165,"y":-146},{"x":179,"y":40}],"type":"admin"},{"arc":[{"x":144364,"y":157019},{"x":25,"y":27},{"x":-41,"y":88},{"x":71,"y":98},{"x":1,"y":146},{"x":106,"y":52},{"x":43,"y":2},{"x":30,"y":-41},{"x":44,"y":-1},{"x":130,"y":22},{"x":88,"y":64},{"x":6,"y":-72},{"x":74,"y":-98},{"x":13,"y":-90},{"x":143,"y":66},{"x":75,"y":5},{"x":47,"y":-84},{"x":95,"y":91},{"x":64,"y":9},{"x":129,"y":119},{"x":108,"y":-54},{"x":20,"y":-132},{"x":26,"y":49},{"x":175,"y":58}],"type":"admin"},{"arc":[{"x":146767,"y":158035},{"x":18,"y":100}],"type":"admin"},{"arc":[{"x":146785,"y":158135},{"x":-75,"y":41},{"x":-164,"y":-42},{"x":-75,"y":89},{"x":-78,"y":-29},{"x":-28,"y":22},{"x":-68,"y":-11},{"x":-30,"y":58},{"x":-97,"y":26},{"x":-74,"y":3},{"x":-98,"y":-50},{"x":-42,"y":25},{"x":-54,"y":-7},{"x":-78,"y":54},{"x":-107,"y":0},{"x":-76,"y":67},{"x":-33,"y":76},{"x":-127,"y":6},{"x":-153,"y":-28},{"x":-52,"y":66},{"x":-47,"y":-6},{"x":-111,"y":60},{"x":-107,"y":-91},{"x":-330,"y":-17},{"x":-136,"y":-35},{"x":-45,"y":-27},{"x":-27,"y":-70},{"x":-58,"y":-19},{"x":-145,"y":45},{"x":-36,"y":74},{"x":-155,"y":39},{"x":-312,"y":-12},{"x":-95,"y":-120},{"x":-110,"y":-5},{"x":-85,"y":-93},{"x":-169,"y":-51},{"x":-67,"y":110},{"x":16,"y":44},{"x":-42,"y":43},{"x":-71,"y":-1},{"x":-119,"y":49},{"x":-43,"y":-19},{"x":-81,"y":33},{"x":-94,"y":-87},{"x":-29,"y":34},{"x":-46,"y":-4},{"x":-18,"y":35},{"x":-56,"y":-2},{"x":-58,"y":68},{"x":-12,"y":92},{"x":-119,"y":118},{"x":-6,"y":39},{"x":152,"y":110},{"x":27,"y":133},{"x":54,"y":48},{"x":61,"y":127},{"x":-14,"y":101}],"type":"admin"},{"arc":[{"x":138129,"y":160681},{"x":-242,"y":-620},{"x":-177,"y":-196},{"x":-31,"y":-145},{"x":-52,"y":-74},{"x":-4,"y":-37},{"x":-16,"y":10},{"x":9,"y":-17},{"x":47,"y":-16},{"x":-10,"y":-20},{"x":-57,"y":47},{"x":13,"y":-30},{"x":-89,"y":-130},{"x":-192,"y":-77}],"type":"coastline"},{"arc":[{"x":137328,"y":159376},{"x":39,"y":-67},{"x":35,"y":-17},{"x":40,"y":31},{"x":59,"y":-110},{"x":131,"y":-67},{"x":-43,"y":-36},{"x":5,"y":-38}],"type":"admin"},{"arc":[{"x":137594,"y":159072},{"x":25,"y":-26},{"x":123,"y":-22},{"x":33,"y":-51},{"x":-3,"y":-81},{"x":55,"y":-81},{"x":147,"y":-18}],"type":"admin"},{"arc":[{"x":138692,"y":160287},{"x":-30,"y":28},{"x":-66,"y":-46},{"x":-14,"y":29},{"x":-31,"y":-2},{"x":34,"y":70},{"x":-22,"y":42},{"x":-139,"y":64},{"x":-111,"y":10},{"x":-67,"y":69},{"x":31,"y":36},{"x":-15,"y":65},{"x":-133,"y":29}],"type":"area"},{"arc":[{"x":139077,"y":161174},{"x":-114,"y":-29},{"x":130,"y":33},{"x":33,"y":45},{"x":-49,"y":-49}],"type":"coastline"},{"arc":[{"x":141132,"y":161175},{"x":-188,"y":-42},{"x":-36,"y":48},{"x":-72,"y":30},{"x":-123,"y":-2},{"x":-66,"y":108},{"x":-116,"y":25},{"x":46,"y":178},{"x":50,"y":27}],"type":"admin"},{"arc":[{"x":140627,"y":161547},{"x":-103,"y":57},{"x":14,"y":50},{"x":-109,"y":124},{"x":-1,"y":197},{"x":-144,"y":57},{"x":-40,"y":61},{"x":59,"y":194},{"x":-217,"y":89}],"type":"admin"},{"arc":[{"x":140086,"y":162376},{"x":-15,"y":-370},{"x":-47,"y":-254},{"x":-143,"y":-206},{"x":-3,"y":-23},{"x":29,"y":22},{"x":-17,"y":-21},{"x":-19,"y":-11},{"x":-3,"y":27},{"x":-26,"y":-25},{"x":22,"y":37},{"x":-81,"y":-76},{"x":-144,"y":-27},{"x":-219,"y":-92},{"x":-100,"y":-58},{"x":-105,"y":-159},{"x":-64,"y":48},{"x":-58,"y":-81},{"x":65,"y":-49},{"x":-98,"y":2},{"x":114,"y":-29},{"x":-30,"y":-41},{"x":-5,"y":28},{"x":-104,"y":13},{"x":-28,"y":-28},{"x":65,"y":-48},{"x":-64,"y":14},{"x":-20,"y":-23},{"x":60,"y":-29},{"x":-57,"y":-46},{"x":31,"y":53},{"x":-191,"y":-10},{"x":57,"y":-24},{"x":6,"y":-41},{"x":-38,"y":0},{"x":-32,"y":50},{"x":-74,"y":12},{"x":22,"y":-44},{"x":-23,"y":8},{"x":-30,"y":21},{"x":22,"y":22},{"x":-177,"y":-1},{"x":-81,"y":111},{"x":23,"y":-53},{"x":-27,"y":-34},{"x":42,"y":-39},{"x":-69,"y":49},{"x":-18,"y":65},{"x":86,"y":47},{"x":47,"y":-7},{"x":-3,"y":-25},{"x":13,"y":15},{"x":-43,"y":-53},{"x":43,"y":50},{"x":54,"y":-85},{"x":39,"y":-2},{"x":-14,"y":57},{"x":40,"y":-14},{"x":4,"y":-29},{"x":69,"y":-4},{"x":37,"y":19},{"x":-3,"y":84},{"x":2,"y":-79},{"x":-34,"y":-11},{"x":2,"y":113},{"x":29,"y":-17},{"x":-59,"y":48},{"x":-27,"y":-3},{"x":-4,"y":27},{"x":164,"y":-40},{"x":-2,"y":63},{"x":-78,"y":116},{"x":-248,"y":-67},{"x":-221,"y":-199},{"x":-198,"y":-339}],"type":"coastline"},{"arc":[{"x":141146,"y":159896},{"x":33,"y":92},{"x":-45,"y":111},{"x":-211,"y":94},{"x":-30,"y":38},{"x":-29,"y":80},{"x":19,"y":230},{"x":-43,"y":115},{"x":25,"y":59},{"x":-34,"y":10},{"x":-16,"y":57},{"x":-73,"y":73},{"x":78,"y":51},{"x":25,"y":49},{"x":121,"y":53},{"x":57,"y":77},{"x":72,"y":32},{"x":5,"y":-24},{"x":19,"y":9},{"x":-12,"y":60},{"x":25,"y":13}],"type":"admin"},{"arc":[{"x":135498,"y":153018},{"x":-72,"y":39},{"x":17,"y":46},{"x":-50,"y":85},{"x":-61,"y":36},{"x":-209,"y":-22},{"x":-7,"y":33},{"x":-77,"y":-45},{"x":-137,"y":40},{"x":-6,"y":33}],"type":"area"},{"arc":[{"x":134896,"y":153263},{"x":-36,"y":5},{"x":1,"y":40},{"x":-33,"y":-27},{"x":10,"y":-42},{"x":-117,"y":-4},{"x":62,"y":-105},{"x":-58,"y":-27},{"x":13,"y":-80},{"x":-31,"y":-21},{"x":-122,"y":-1},{"x":16,"y":-52},{"x":-34,"y":-17},{"x":50,"y":-108},{"x":108,"y":28},{"x":41,"y":-99},{"x":-3,"y":-79}],"type":"area"},{"arc":[{"x":134763,"y":152674},{"x":7,"y":-21},{"x":56,"y":27},{"x":20,"y":-26},{"x":-16,"y":-31},{"x":25,"y":-64},{"x":208,"y":82},{"x":27,"y":-88},{"x":64,"y":-7},{"x":73,"y":11},{"x":15,"y":52},{"x":92,"y":59},{"x":98,"y":26},{"x":61,"y":-146},{"x":105,"y":14},{"x":45,"y":34},{"x":52,"y":-65},{"x":-9,"y":-25},{"x":13,"y":17},{"x":22,"y":-16},{"x":-2,"y":-37},{"x":88,"y":34},{"x":64,"y":155}],"type":"area"},{"arc":[{"x":135871,"y":152659},{"x":-195,"y":158},{"x":-178,"y":201}],"type":"area"},{"arc":[{"x":135764,"y":153940},{"x":-233,"y":-38},{"x":-334,"y":-136},{"x":-182,"y":-30}],"type":"admin"},{"arc":[{"x":135015,"y":153736},{"x":-8,"y":-157},{"x":-33,"y":-25},{"x":-12,"y":-94},{"x":45,"y":27},{"x":6,"y":50},{"x":64,"y":-9},{"x":-51,"y":-10},{"x":-130,"y":-255}],"type":"area"},{"arc":[{"x":135498,"y":153018},{"x":55,"y":-10},{"x":60,"y":38},{"x":34,"y":-23},{"x":185,"y":45}],"type":"area"},{"arc":[{"x":135832,"y":153068},{"x":-56,"y":267},{"x":38,"y":28},{"x":29,"y":-8},{"x":17,"y":97},{"x":-59,"y":14},{"x":29,"y":88},{"x":-62,"y":8},{"x":-26,"y":49},{"x":63,"y":95},{"x":104,"y":28},{"x":-1,"y":40},{"x":-19,"y":50},{"x":-85,"y":-1},{"x":-40,"y":117}],"type":"area"},{"arc":[{"x":134763,"y":152674},{"x":-30,"y":-132},{"x":12,"y":-143},{"x":-28,"y":-15},{"x":-52,"y":37},{"x":-52,"y":-5},{"x":-10,"y":25},{"x":-169,"y":-9}],"type":"area"},{"arc":[{"x":134434,"y":152432},{"x":74,"y":-555},{"x":-8,"y":-253},{"x":37,"y":-9}],"type":"coastline"},{"arc":[{"x":134537,"y":151615},{"x":179,"y":8},{"x":32,"y":-82},{"x":85,"y":-32},{"x":85,"y":-120},{"x":410,"y":-103}],"type":"admin"},{"arc":[{"x":135328,"y":151286},{"x":356,"y":259},{"x":161,"y":311},{"x":-43,"y":46},{"x":19,"y":41},{"x":-19,"y":251},{"x":39,"y":130},{"x":43,"y":27},{"x":50,"y":116},{"x":-56,"y":30},{"x":-5,"y":28},{"x":54,"y":49},{"x":-56,"y":85}],"type":"area"},{"arc":[{"x":135015,"y":153736},{"x":-230,"y":-26},{"x":10,"y":-52},{"x":-174,"y":-21},{"x":-40,"y":-34},{"x":-133,"y":1},{"x":-36,"y":-28},{"x":-188,"y":5},{"x":-88,"y":111}],"type":"admin"},{"arc":[{"x":134136,"y":153692},{"x":20,"y":-239},{"x":98,"y":-283},{"x":26,"y":4},{"x":17,"y":-51},{"x":137,"y":-691}],"type":"coastline"},{"arc":[{"x":138231,"y":152715},{"x":-159,"y":52},{"x":-33,"y":-43},{"x":-121,"y":9},{"x":-60,"y":-48},{"x":-95,"y":7},{"x":-78,"y":134},{"x":-113,"y":27},{"x":-127,"y":-4},{"x":-64,"y":168},{"x":-48,"y":52},{"x":19,"y":63},{"x":-76,"y":12}],"type":"area"},{"arc":[{"x":137276,"y":153144},{"x":-93,"y":-23},{"x":-62,"y":16},{"x":-130,"y":-56},{"x":-22,"y":59},{"x":-46,"y":19},{"x":-90,"y":-82},{"x":-33,"y":28},{"x":-66,"y":-102},{"x":-60,"y":-14},{"x":-65,"y":32},{"x":7,"y":146},{"x":-62,"y":115},{"x":-49,"y":32},{"x":8,"y":-15},{"x":-23,"y":9},{"x":-60,"y":-47},{"x":-274,"y":-94},{"x":-13,"y":-39},{"x":-89,"y":-2},{"x":19,"y":-32},{"x":-52,"y":25},{"x":-81,"y":-61},{"x":-55,"y":26},{"x":-53,"y":-16}],"type":"area"},{"arc":[{"x":135328,"y":151286},{"x":109,"y":-158},{"x":45,"y":-26},{"x":157,"y":-34},{"x":60,"y":32},{"x":47,"y":-87},{"x":-6,"y":-56},{"x":-67,"y":-90},{"x":49,"y":-91},{"x":-7,"y":-48},{"x":200,"y":-197}],"type":"admin"},{"arc":[{"x":135915,"y":150531},{"x":111,"y":-14},{"x":83,"y":28},{"x":116,"y":-77},{"x":140,"y":148},{"x":55,"y":-24}],"type":"admin"},{"arc":[{"x":136420,"y":150592},{"x":84,"y":39},{"x":32,"y":163},{"x":96,"y":118},{"x":-19,"y":129},{"x":124,"y":96},{"x":-29,"y":369},{"x":122,"y":83},{"x":168,"y":23},{"x":36,"y":194},{"x":38,"y":7},{"x":90,"y":172},{"x":97,"y":80},{"x":150,"y":-8},{"x":44,"y":60},{"x":130,"y":6},{"x":100,"y":64},{"x":85,"y":-22},{"x":62,"y":59},{"x":77,"y":27},{"x":50,"y":103},{"x":-36,"y":67},{"x":122,"y":75},{"x":21,"y":68},{"x":89,"y":3},{"x":82,"y":49},{"x":22,"y":25},{"x":-26,"y":74}],"type":"admin"},{"arc":[{"x":136784,"y":153939},{"x":-9,"y":19},{"x":-336,"y":28},{"x":-405,"y":-35},{"x":-82,"y":64},{"x":-188,"y":-75}],"type":"admin"},{"arc":[{"x":137276,"y":153144},{"x":-187,"y":39},{"x":-31,"y":66},{"x":-47,"y":19},{"x":17,"y":69},{"x":-89,"y":55},{"x":-115,"y":-22},{"x":-134,"y":139},{"x":113,"y":121},{"x":-33,"y":35},{"x":11,"y":60},{"x":-39,"y":8},{"x":-18,"y":37},{"x":-24,"y":-10},{"x":-54,"y":30},{"x":-45,"y":-25},{"x":-11,"y":29},{"x":33,"y":24},{"x":150,"y":-5},{"x":11,"y":126}],"type":"area"},{"arc":[{"x":142421,"y":155968},{"x":-85,"y":-6},{"x":-72,"y":-62},{"x":-189,"y":22},{"x":-117,"y":-135},{"x":-39,"y":-8},{"x":-35,"y":29},{"x":3,"y":101},{"x":-82,"y":28},{"x":-134,"y":-36},{"x":-171,"y":246},{"x":-96,"y":-33},{"x":-123,"y":36},{"x":-118,"y":-92},{"x":-68,"y":11},{"x":-83,"y":-130},{"x":-105,"y":-34},{"x":-77,"y":-68},{"x":-90,"y":-15},{"x":-22,"y":-42},{"x":-136,"y":-23},{"x":-43,"y":35},{"x":-78,"y":-25},{"x":-41,"y":73},{"x":-94,"y":2},{"x":-97,"y":49},{"x":-8,"y":117},{"x":25,"y":62},{"x":-43,"y":70},{"x":-83,"y":43},{"x":-178,"y":197},{"x":-89,"y":-91},{"x":-109,"y":-27},{"x":-23,"y":-28},{"x":-190,"y":7},{"x":-68,"y":-70},{"x":-132,"y":57},{"x":-57,"y":-5},{"x":-43,"y":40},{"x":-126,"y":0},{"x":-144,"y":-189},{"x":-38,"y":-66},{"x":17,"y":-41},{"x":-41,"y":-55},{"x":-68,"y":128},{"x":-55,"y":3},{"x":-53,"y":71},{"x":-126,"y":30}],"type":"admin"},{"arc":[{"x":138597,"y":156144},{"x":-97,"y":-73},{"x":-92,"y":-147},{"x":-105,"y":-47}],"type":"admin"},{"arc":[{"x":138303,"y":155877},{"x":-37,"y":-69},{"x":-65,"y":14},{"x":-38,"y":-25},{"x":53,"y":-89},{"x":-43,"y":-41},{"x":22,"y":-86},{"x":-19,"y":-17},{"x":-28,"y":23},{"x":-18,"y":59},{"x":-12,"y":-48},{"x":-42,"y":-26},{"x":15,"y":-100},{"x":-29,"y":-4},{"x":-19,"y":-59},{"x":-90,"y":-23},{"x":-15,"y":-75},{"x":35,"y":-78},{"x":-44,"y":-51},{"x":18,"y":-46},{"x":-255,"y":-214},{"x":19,"y":-104},{"x":-46,"y":9},{"x":-77,"y":-57},{"x":-105,"y":54},{"x":-49,"y":-7},{"x":-68,"y":121},{"x":-60,"y":21},{"x":-72,"y":-40},{"x":-1,"y":-84}],"type":"admin"},{"arc":[{"x":137233,"y":154835},{"x":-2,"y":-32},{"x":-112,"y":-100},{"x":-47,"y":-360},{"x":-63,"y":-80},{"x":-38,"y":19},{"x":-36,"y":-25},{"x":20,"y":-74},{"x":-89,"y":-77},{"x":-82,"y":-167}],"type":"admin"},{"arc":[{"x":138231,"y":152715},{"x":34,"y":31},{"x":149,"y":-76},{"x":126,"y":86},{"x":52,"y":-64},{"x":42,"y":-7},{"x":164,"y":38}],"type":"admin"},{"arc":[{"x":138798,"y":152723},{"x":160,"y":119},{"x":97,"y":7},{"x":67,"y":120},{"x":205,"y":119},{"x":267,"y":365},{"x":163,"y":-22},{"x":115,"y":50}],"type":"admin"},{"arc":[{"x":139872,"y":153481},{"x":-38,"y":36},{"x":-16,"y":113},{"x":96,"y":25},{"x":39,"y":64},{"x":162,"y":-31},{"x":85,"y":7},{"x":41,"y":-71},{"x":81,"y":11},{"x":15,"y":43},{"x":-70,"y":38},{"x":4,"y":50},{"x":119,"y":94},{"x":51,"y":-28},{"x":99,"y":25},{"x":-56,"y":75},{"x":50,"y":74},{"x":42,"y":-14},{"x":40,"y":-66},{"x":124,"y":43},{"x":86,"y":-82},{"x":-3,"y":-73},{"x":109,"y":-75},{"x":56,"y":44},{"x":-20,"y":63},{"x":22,"y":29},{"x":199,"y":58},{"x":20,"y":94},{"x":76,"y":-34},{"x":15,"y":107}],"type":"admin"},{"arc":[{"x":141300,"y":154100},{"x":47,"y":-8},{"x":17,"y":63},{"x":55,"y":40},{"x":11,"y":181},{"x":-50,"y":74},{"x":35,"y":45},{"x":186,"y":89},{"x":68,"y":-31},{"x":30,"y":22},{"x":52,"y":-16},{"x":77,"y":114},{"x":48,"y":19}],"type":"admin"},{"arc":[{"x":140500,"y":145287},{"x":1,"y":-46},{"x":43,"y":-9},{"x":-48,"y":-31},{"x":-10,"y":-50}],"type":"area"},{"arc":[{"x":140486,"y":145151},{"x":-4,"y":-23},{"x":63,"y":-35},{"x":11,"y":-64},{"x":49,"y":14},{"x":17,"y":-41},{"x":-12,"y":-183},{"x":-51,"y":-10},{"x":73,"y":-66},{"x":-28,"y":-11},{"x":20,"y":-118}],"type":"area"},{"arc":[{"x":140624,"y":144614},{"x":137,"y":100}],"type":"area"},{"arc":[{"x":140761,"y":144714},{"x":133,"y":72},{"x":-8,"y":34},{"x":43,"y":11},{"x":9,"y":130},{"x":41,"y":8},{"x":-18,"y":110},{"x":64,"y":0}],"type":"area"},{"arc":[{"x":141025,"y":145079},{"x":-5,"y":89},{"x":40,"y":113}],"type":"area"},{"arc":[{"x":141060,"y":145281},{"x":-115,"y":19},{"x":-59,"y":-27},{"x":-3,"y":-67},{"x":-49,"y":10},{"x":-116,"y":136},{"x":-144,"y":-42},{"x":-26,"y":-28},{"x":-48,"y":5}],"type":"area"},{"arc":[{"x":140966,"y":144476},{"x":-9,"y":99},{"x":32,"y":33},{"x":27,"y":165},{"x":66,"y":23},{"x":53,"y":58}],"type":"area"},{"arc":[{"x":141135,"y":144854},{"x":-65,"y":72},{"x":-45,"y":153}],"type":"area"},{"arc":[{"x":140761,"y":144714},{"x":-5,"y":-217},{"x":113,"y":-22},{"x":2,"y":25},{"x":56,"y":-3},{"x":39,"y":-21}],"type":"area"},{"arc":[{"x":141347,"y":144779},{"x":-19,"y":-90},{"x":-35,"y":18},{"x":-18,"y":-40},{"x":-49,"y":130},{"x":-91,"y":57}],"type":"area"},{"arc":[{"x":140966,"y":144476},{"x":15,"y":-86}],"type":"area"},{"arc":[{"x":140981,"y":144390},{"x":273,"y":28},{"x":39,"y":-110},{"x":130,"y":170},{"x":63,"y":-39},{"x":78,"y":3},{"x":18,"y":-50}],"type":"area"},{"arc":[{"x":141582,"y":144392},{"x":71,"y":40}],"type":"admin"},{"arc":[{"x":141653,"y":144432},{"x":-4,"y":65},{"x":-51,"y":20},{"x":25,"y":88},{"x":58,"y":73}],"type":"admin"},{"arc":[{"x":141681,"y":144678},{"x":14,"y":32},{"x":-119,"y":-7},{"x":-63,"y":-43},{"x":2,"y":42},{"x":-33,"y":-18},{"x":-48,"y":32},{"x":15,"y":96},{"x":-102,"y":-33}],"type":"admin"},{"arc":[{"x":140981,"y":144390},{"x":-3,"y":-29},{"x":-167,"y":-32}],"type":"area"},{"arc":[{"x":140811,"y":144329},{"x":31,"y":-112},{"x":-65,"y":-13},{"x":98,"y":-37},{"x":162,"y":-119}],"type":"area"},{"arc":[{"x":141037,"y":144048},{"x":29,"y":41},{"x":188,"y":94},{"x":39,"y":-109},{"x":-76,"y":-42},{"x":26,"y":-43},{"x":68,"y":46},{"x":66,"y":-80},{"x":152,"y":-12},{"x":0,"y":22}],"type":"admin"},{"arc":[{"x":141529,"y":143965},{"x":10,"y":146},{"x":-80,"y":29},{"x":123,"y":252}],"type":"admin"},{"arc":[{"x":140811,"y":144329},{"x":-197,"y":-1}],"type":"area"},{"arc":[{"x":140614,"y":144328},{"x":-14,"y":-55},{"x":81,"y":-24},{"x":-32,"y":2},{"x":-26,"y":-31},{"x":7,"y":-34},{"x":-113,"y":-201},{"x":-64,"y":-209},{"x":41,"y":-28},{"x":-49,"y":-55},{"x":58,"y":-25},{"x":73,"y":86},{"x":122,"y":-43}],"type":"area"},{"arc":[{"x":140698,"y":143711},{"x":116,"y":81}],"type":"admin"},{"arc":[{"x":140814,"y":143792},{"x":82,"y":71}],"type":"admin"},{"arc":[{"x":140896,"y":143863},{"x":102,"y":93},{"x":39,"y":92}],"type":"admin"},{"arc":[{"x":140624,"y":144614},{"x":-144,"y":-108},{"x":-55,"y":20}],"type":"area"},{"arc":[{"x":140425,"y":144526},{"x":-7,"y":-171}],"type":"area"},{"arc":[{"x":140418,"y":144355},{"x":196,"y":-27}],"type":"area"},{"arc":[{"x":140350,"y":144552},{"x":75,"y":-26}],"type":"area"},{"arc":[{"x":140486,"y":145151},{"x":-80,"y":-3},{"x":-23,"y":-51},{"x":-54,"y":-7},{"x":-1,"y":-61}],"type":"area"},{"arc":[{"x":140328,"y":145029},{"x":32,"y":-92},{"x":-5,"y":-150},{"x":35,"y":-5},{"x":-40,"y":-230}],"type":"area"},{"arc":[{"x":140018,"y":144913},{"x":29,"y":-8},{"x":51,"y":-101},{"x":-24,"y":-95},{"x":-90,"y":-81},{"x":36,"y":-9},{"x":61,"y":-99}],"type":"area"},{"arc":[{"x":140081,"y":144520},{"x":134,"y":61},{"x":135,"y":-29}],"type":"area"},{"arc":[{"x":140328,"y":145029},{"x":-58,"y":-22},{"x":-195,"y":34},{"x":-57,"y":-128}],"type":"area"},{"arc":[{"x":140081,"y":144520},{"x":25,"y":-71},{"x":-78,"y":-38}],"type":"area"},{"arc":[{"x":140028,"y":144411},{"x":15,"y":-119},{"x":67,"y":0},{"x":0,"y":-72}],"type":"area"},{"arc":[{"x":140110,"y":144220},{"x":280,"y":39},{"x":-53,"y":128},{"x":81,"y":-32}],"type":"area"},{"arc":[{"x":140110,"y":144220},{"x":-6,"y":-177},{"x":64,"y":-20},{"x":-10,"y":-101},{"x":-59,"y":-104},{"x":-2,"y":-67},{"x":-94,"y":-24},{"x":109,"y":-18},{"x":29,"y":-34},{"x":-28,"y":-76},{"x":49,"y":-4},{"x":55,"y":-52},{"x":-76,"y":-81},{"x":13,"y":-121}],"type":"area"},{"arc":[{"x":140154,"y":143341},{"x":79,"y":-1},{"x":14,"y":56},{"x":44,"y":-29},{"x":194,"y":9}],"type":"admin"},{"arc":[{"x":140485,"y":143376},{"x":-6,"y":83},{"x":76,"y":5},{"x":14,"y":-77},{"x":83,"y":-2},{"x":88,"y":62}],"type":"admin"},{"arc":[{"x":140740,"y":143447},{"x":-45,"y":109},{"x":-72,"y":-12},{"x":-6,"y":27},{"x":-9,"y":168},{"x":31,"y":-43},{"x":59,"y":-6},{"x":0,"y":21}],"type":"admin"},{"arc":[{"x":139321,"y":143870},{"x":-27,"y":0},{"x":18,"y":65},{"x":-146,"y":-30},{"x":38,"y":-45},{"x":-16,"y":-16},{"x":-63,"y":42},{"x":29,"y":-48},{"x":-16,"y":-16},{"x":-62,"y":42},{"x":7,"y":-26},{"x":-23,"y":16},{"x":-19,"y":-17},{"x":226,"y":-78},{"x":54,"y":27},{"x":0,"y":84}],"type":"coastline"},{"arc":[{"x":139522,"y":144175},{"x":-32,"y":42},{"x":-200,"y":-60},{"x":-50,"y":-34},{"x":21,"y":6},{"x":-17,"y":-88},{"x":165,"y":53},{"x":3,"y":-29},{"x":61,"y":20},{"x":49,"y":43},{"x":0,"y":47}],"type":"coastline"},{"arc":[{"x":140028,"y":144411},{"x":-229,"y":-5},{"x":-64,"y":30},{"x":24,"y":90},{"x":-92,"y":-27},{"x":7,"y":-55},{"x":-190,"y":-27}],"type":"area"},{"arc":[{"x":139484,"y":144417},{"x":-21,"y":-182}],"type":"admin"},{"arc":[{"x":139463,"y":144235},{"x":92,"y":13},{"x":-2,"y":18},{"x":-50,"y":-2},{"x":-1,"y":29},{"x":80,"y":5},{"x":-2,"y":62},{"x":17,"y":-62},{"x":81,"y":5},{"x":9,"y":62},{"x":15,"y":-66},{"x":80,"y":19},{"x":15,"y":-39},{"x":-62,"y":-35},{"x":6,"y":-45},{"x":32,"y":-13},{"x":-29,"y":-4},{"x":11,"y":-37},{"x":-40,"y":-30},{"x":28,"y":10},{"x":-15,"y":-50},{"x":-42,"y":-19},{"x":-35,"y":27},{"x":-40,"y":-18},{"x":-64,"y":-29},{"x":68,"y":-12},{"x":-56,"y":-26},{"x":-40,"y":27},{"x":-24,"y":-11},{"x":35,"y":-26},{"x":-1,"y":-37},{"x":64,"y":-15},{"x":-105,"y":0},{"x":-12,"y":50},{"x":-121,"y":-19},{"x":8,"y":-31},{"x":-35,"y":4},{"x":1,"y":-83},{"x":35,"y":2},{"x":-3,"y":-52},{"x":244,"y":75},{"x":57,"y":-26},{"x":-5,"y":-200},{"x":-32,"y":-32}],"type":"coastline"},{"arc":[{"x":139625,"y":143624},{"x":168,"y":-153},{"x":45,"y":-126}],"type":"admin"},{"arc":[{"x":139838,"y":143345},{"x":90,"y":-5},{"x":104,"y":-57},{"x":124,"y":18},{"x":-2,"y":40}],"type":"admin"},{"arc":[{"x":140018,"y":144913},{"x":-148,"y":-14}],"type":"area"},{"arc":[{"x":139870,"y":144899},{"x":-56,"y":-11},{"x":-65,"y":-59},{"x":-141,"y":-6},{"x":-73,"y":-64},{"x":-58,"y":-299}],"type":"area"},{"arc":[{"x":139477,"y":144460},{"x":7,"y":-43}],"type":"admin"},{"arc":[{"x":141728,"y":146054},{"x":-40,"y":-81},{"x":-58,"y":-9},{"x":-2,"y":-52},{"x":39,"y":-28},{"x":-49,"y":-52},{"x":7,"y":-39},{"x":-45,"y":-41},{"x":-42,"y":-116},{"x":-174,"y":-149},{"x":-103,"y":-38},{"x":9,"y":74},{"x":-50,"y":-31},{"x":1,"y":40},{"x":-75,"y":55},{"x":-13,"y":-26},{"x":-56,"y":-2},{"x":-14,"y":81},{"x":25,"y":36},{"x":34,"y":-37},{"x":44,"y":61},{"x":-42,"y":5},{"x":-20,"y":-36},{"x":-24,"y":18},{"x":28,"y":58},{"x":-37,"y":14},{"x":-19,"y":-60},{"x":-13,"y":69}],"type":"admin"},{"arc":[{"x":141039,"y":145768},{"x":-14,"y":-127}],"type":"admin"},{"arc":[{"x":141025,"y":145641},{"x":-8,"y":-123},{"x":29,"y":-8},{"x":-4,"y":-59},{"x":69,"y":-91},{"x":-51,"y":-79}],"type":"area"},{"arc":[{"x":141347,"y":144779},{"x":18,"y":365},{"x":100,"y":104},{"x":15,"y":73},{"x":170,"y":27},{"x":10,"y":160},{"x":46,"y":37},{"x":81,"y":17},{"x":31,"y":104},{"x":75,"y":77},{"x":11,"y":212}],"type":"admin"},{"arc":[{"x":141904,"y":145955},{"x":-30,"y":32},{"x":-94,"y":16},{"x":5,"y":49},{"x":-57,"y":2}],"type":"admin"},{"arc":[{"x":140001,"y":145653},{"x":-92,"y":24},{"x":-82,"y":-36},{"x":-61,"y":16}],"type":"admin"},{"arc":[{"x":139766,"y":145657},{"x":50,"y":-18},{"x":-13,"y":-35},{"x":-85,"y":-7},{"x":-31,"y":-40},{"x":-39,"y":13},{"x":-15,"y":-34},{"x":-15,"y":15},{"x":-54,"y":-18},{"x":-35,"y":-38},{"x":15,"y":-181},{"x":-165,"y":-29},{"x":30,"y":-115},{"x":-18,"y":16},{"x":-65,"y":-37},{"x":-46,"y":2},{"x":-20,"y":27},{"x":-28,"y":-14}],"type":"admin"},{"arc":[{"x":139232,"y":145164},{"x":-76,"y":-16},{"x":-1,"y":-76},{"x":-47,"y":-59},{"x":23,"y":25},{"x":86,"y":-55},{"x":-39,"y":-32},{"x":-8,"y":-69},{"x":116,"y":-75},{"x":-1,"y":-28},{"x":-59,"y":-35},{"x":28,"y":-20}],"type":"admin"},{"arc":[{"x":139254,"y":144724},{"x":16,"y":-29},{"x":92,"y":-19},{"x":19,"y":-46},{"x":14,"y":30},{"x":32,"y":-7},{"x":-43,"y":-82},{"x":94,"y":-35},{"x":-1,"y":-76}],"type":"admin"},{"arc":[{"x":139870,"y":144899},{"x":34,"y":43},{"x":-19,"y":47},{"x":25,"y":220},{"x":22,"y":64},{"x":64,"y":61},{"x":-43,"y":28},{"x":-10,"y":57},{"x":-61,"y":21},{"x":116,"y":201}],"type":"area"},{"arc":[{"x":139998,"y":145641},{"x":3,"y":12}],"type":"admin"},{"arc":[{"x":141025,"y":145641},{"x":-31,"y":-21},{"x":-53,"y":85},{"x":-110,"y":-1},{"x":-18,"y":-41},{"x":-10,"y":33},{"x":-49,"y":23},{"x":-78,"y":-48},{"x":-88,"y":43}],"type":"admin"},{"arc":[{"x":140588,"y":145714},{"x":-34,"y":-50},{"x":-76,"y":-39},{"x":-97,"y":50},{"x":-44,"y":-55},{"x":36,"y":-8},{"x":-30,"y":-74}],"type":"admin"},{"arc":[{"x":140343,"y":145538},{"x":28,"y":0},{"x":-9,"y":-48},{"x":88,"y":-50},{"x":-4,"y":-66},{"x":54,"y":-87}],"type":"area"},{"arc":[{"x":140343,"y":145538},{"x":-4,"y":-31},{"x":-69,"y":10},{"x":-13,"y":-81},{"x":-79,"y":84},{"x":-180,"y":121}],"type":"admin"},{"arc":[{"x":142272,"y":151245},{"x":8,"y":52},{"x":-91,"y":38},{"x":-103,"y":-154},{"x":-119,"y":22},{"x":-67,"y":-60},{"x":-11,"y":-47},{"x":-93,"y":-16},{"x":-143,"y":67},{"x":-63,"y":104},{"x":-94,"y":60},{"x":-16,"y":41},{"x":-78,"y":32},{"x":-14,"y":34},{"x":-161,"y":-22},{"x":-104,"y":21}],"type":"admin"},{"arc":[{"x":141123,"y":151417},{"x":-34,"y":-10},{"x":-70,"y":36},{"x":-60,"y":-61},{"x":41,"y":-123},{"x":-17,"y":-48},{"x":21,"y":-84},{"x":-27,"y":-38},{"x":62,"y":-73},{"x":-176,"y":-225},{"x":33,"y":-43},{"x":29,"y":15},{"x":31,"y":-28},{"x":-7,"y":-131},{"x":37,"y":-12},{"x":121,"y":41},{"x":1,"y":-76},{"x":-45,"y":-88},{"x":-128,"y":-55},{"x":-52,"y":16},{"x":-246,"y":-219},{"x":-18,"y":49},{"x":-51,"y":16},{"x":-57,"y":67},{"x":-50,"y":-12},{"x":-161,"y":-168},{"x":-6,"y":-58},{"x":42,"y":-81},{"x":-77,"y":8},{"x":-59,"y":39},{"x":-75,"y":-8},{"x":-57,"y":-43},{"x":-43,"y":12},{"x":-45,"y":-116},{"x":-50,"y":-43},{"x":-112,"y":9},{"x":-50,"y":46},{"x":-53,"y":-12},{"x":-24,"y":48},{"x":-31,"y":-13},{"x":-21,"y":61},{"x":-60,"y":26},{"x":-48,"y":-22},{"x":-9,"y":33}],"type":"admin"},{"arc":[{"x":139522,"y":150049},{"x":-107,"y":-11},{"x":-18,"y":-59},{"x":-103,"y":-61},{"x":-23,"y":-45},{"x":-85,"y":29},{"x":-85,"y":-24},{"x":-35,"y":38},{"x":-72,"y":21},{"x":-84,"y":-100},{"x":-192,"y":4},{"x":33,"y":-24},{"x":0,"y":-45},{"x":-35,"y":9},{"x":44,"y":-62},{"x":9,"y":-72},{"x":-51,"y":-42},{"x":0,"y":-53},{"x":-66,"y":-4},{"x":-62,"y":-51},{"x":-43,"y":6},{"x":-53,"y":-87}],"type":"area"},{"arc":[{"x":138494,"y":149416},{"x":91,"y":-103},{"x":47,"y":15},{"x":2,"y":-22},{"x":36,"y":0},{"x":33,"y":25},{"x":104,"y":-62},{"x":-2,"y":-241},{"x":-77,"y":-21},{"x":72,"y":-176},{"x":38,"y":-19},{"x":-30,"y":-74},{"x":62,"y":-43},{"x":-54,"y":-69},{"x":33,"y":-131},{"x":-12,"y":-68},{"x":83,"y":-126},{"x":36,"y":11},{"x":41,"y":-105},{"x":-32,"y":22},{"x":-128,"y":-31},{"x":-13,"y":-60},{"x":42,"y":-25},{"x":54,"y":8},{"x":-22,"y":-48},{"x":83,"y":-11},{"x":-20,"y":-36},{"x":18,"y":-87},{"x":87,"y":-17},{"x":43,"y":-37},{"x":11,"y":-117},{"x":-32,"y":-82},{"x":49,"y":-53},{"x":-112,"y":-54},{"x":21,"y":-87},{"x":56,"y":-44},{"x":-95,"y":-97},{"x":54,"y":-141},{"x":-103,"y":-115},{"x":-87,"y":-14},{"x":-218,"y":72},{"x":-85,"y":-62},{"x":-51,"y":-127},{"x":46,"y":-16},{"x":-47,"y":-38},{"x":69,"y":-19},{"x":25,"y":-68},{"x":-32,"y":-78},{"x":-63,"y":-11},{"x":4,"y":-23},{"x":-26,"y":-5},{"x":11,"y":-59},{"x":43,"y":-4},{"x":-45,"y":-6}],"type":"area"},{"arc":[{"x":138502,"y":146637},{"x":105,"y":-29},{"x":72,"y":-52},{"x":-47,"y":-85},{"x":20,"y":-15},{"x":57,"y":51},{"x":27,"y":-193}],"type":"area"},{"arc":[{"x":138736,"y":146314},{"x":-22,"y":-76},{"x":61,"y":-42},{"x":50,"y":18},{"x":15,"y":-19},{"x":-73,"y":-46},{"x":-35,"y":-69},{"x":47,"y":-89},{"x":-30,"y":-59},{"x":33,"y":26},{"x":46,"y":-68},{"x":36,"y":7},{"x":24,"y":-52}],"type":"area"},{"arc":[{"x":138888,"y":145845},{"x":24,"y":23},{"x":-11,"y":43},{"x":39,"y":-8},{"x":31,"y":38},{"x":61,"y":-31},{"x":30,"y":37},{"x":166,"y":77},{"x":25,"y":66},{"x":86,"y":12},{"x":-2,"y":39}],"type":"area"},{"arc":[{"x":139337,"y":146141},{"x":-29,"y":29},{"x":37,"y":45},{"x":7,"y":83},{"x":53,"y":10},{"x":-40,"y":121},{"x":59,"y":62},{"x":250,"y":27},{"x":147,"y":94},{"x":14,"y":-24},{"x":38,"y":22},{"x":37,"y":-18},{"x":20,"y":43},{"x":136,"y":49},{"x":36,"y":97},{"x":66,"y":-22},{"x":26,"y":-78},{"x":78,"y":-55},{"x":-21,"y":-59},{"x":26,"y":-48},{"x":165,"y":-76}],"type":"area"},{"arc":[{"x":140442,"y":146443},{"x":89,"y":8},{"x":69,"y":-23}],"type":"area"},{"arc":[{"x":140600,"y":146428},{"x":133,"y":-13},{"x":113,"y":28},{"x":35,"y":-19}],"type":"area"},{"arc":[{"x":140881,"y":146424},{"x":27,"y":35},{"x":-33,"y":71},{"x":87,"y":33},{"x":-5,"y":123},{"x":-37,"y":52},{"x":30,"y":35},{"x":51,"y":2},{"x":58,"y":138},{"x":48,"y":2},{"x":14,"y":49},{"x":69,"y":54},{"x":37,"y":80},{"x":-4,"y":92},{"x":208,"y":64},{"x":85,"y":88},{"x":86,"y":-72},{"x":103,"y":29},{"x":70,"y":39},{"x":32,"y":56}],"type":"area"},{"arc":[{"x":141807,"y":147394},{"x":19,"y":15},{"x":-32,"y":94},{"x":45,"y":39},{"x":-25,"y":33},{"x":87,"y":54},{"x":5,"y":91},{"x":-56,"y":5},{"x":3,"y":25},{"x":60,"y":61},{"x":3,"y":38},{"x":44,"y":19},{"x":-2,"y":71},{"x":53,"y":15},{"x":-3,"y":62},{"x":53,"y":38},{"x":-2,"y":40},{"x":33,"y":4},{"x":1,"y":33},{"x":45,"y":-14},{"x":82,"y":33},{"x":10,"y":91},{"x":59,"y":45}],"type":"admin"},{"arc":[{"x":142289,"y":148286},{"x":-37,"y":71},{"x":44,"y":263}],"type":"admin"},{"arc":[{"x":142296,"y":148620},{"x":-37,"y":20},{"x":-127,"y":228},{"x":-19,"y":-9},{"x":-38,"y":139},{"x":-38,"y":17},{"x":-78,"y":-66},{"x":-43,"y":28},{"x":8,"y":26},{"x":-50,"y":-11},{"x":33,"y":255},{"x":38,"y":39},{"x":-58,"y":54},{"x":17,"y":56},{"x":-103,"y":38},{"x":-60,"y":-42},{"x":-81,"y":44},{"x":-13,"y":82},{"x":24,"y":60},{"x":-89,"y":79},{"x":70,"y":90},{"x":-221,"y":129},{"x":22,"y":61},{"x":65,"y":27},{"x":3,"y":31},{"x":47,"y":8},{"x":18,"y":89},{"x":69,"y":30},{"x":-4,"y":76},{"x":81,"y":56},{"x":-11,"y":39},{"x":97,"y":68},{"x":19,"y":65},{"x":32,"y":16},{"x":22,"y":131},{"x":63,"y":0},{"x":-15,"y":81},{"x":44,"y":12},{"x":36,"y":82},{"x":33,"y":-10},{"x":39,"y":33},{"x":-19,"y":47},{"x":125,"y":-18},{"x":11,"y":104},{"x":-37,"y":51},{"x":-9,"y":102},{"x":46,"y":78},{"x":-13,"y":108},{"x":77,"y":2}],"type":"admin"},{"arc":[{"x":136110,"y":140140},{"x":-44,"y":42},{"x":22,"y":50},{"x":69,"y":32},{"x":-18,"y":101},{"x":92,"y":32},{"x":-49,"y":26},{"x":66,"y":96},{"x":-66,"y":47},{"x":-4,"y":127},{"x":31,"y":6},{"x":16,"y":97},{"x":39,"y":4},{"x":-126,"y":193}],"type":"area"},{"arc":[{"x":136138,"y":140993},{"x":-83,"y":-66},{"x":-24,"y":6},{"x":1,"y":-24},{"x":-6,"y":36},{"x":3,"y":-38},{"x":-206,"y":-120},{"x":20,"y":-8},{"x":-21,"y":-20},{"x":-7,"y":26},{"x":3,"y":-19},{"x":-151,"y":-80},{"x":-47,"y":8},{"x":28,"y":-10},{"x":-21,"y":-19},{"x":-16,"y":34},{"x":2,"y":-32},{"x":-206,"y":-79},{"x":-120,"y":-25},{"x":-96,"y":10},{"x":-206,"y":-56},{"x":-40,"y":31},{"x":-10,"y":-35},{"x":-3,"y":52},{"x":-27,"y":-7},{"x":23,"y":-1},{"x":3,"y":-42},{"x":-19,"y":-6},{"x":7,"y":32},{"x":-8,"y":-35},{"x":-115,"y":-24},{"x":-113,"y":6},{"x":-86,"y":37},{"x":-14,"y":25},{"x":32,"y":24},{"x":-49,"y":64},{"x":-38,"y":5},{"x":75,"y":50},{"x":-38,"y":56},{"x":-70,"y":-46},{"x":-49,"y":72},{"x":67,"y":44},{"x":57,"y":-30},{"x":-117,"y":72},{"x":-51,"y":-34},{"x":-13,"y":-61},{"x":-59,"y":3},{"x":0,"y":23},{"x":-11,"y":-25},{"x":3,"y":26},{"x":-3,"y":-25},{"x":-122,"y":-9},{"x":-208,"y":18}],"type":"coastline"},{"arc":[{"x":133989,"y":140777},{"x":62,"y":-126},{"x":109,"y":-81},{"x":37,"y":-308},{"x":-77,"y":-144},{"x":45,"y":-74},{"x":12,"y":-160},{"x":-112,"y":-8},{"x":-60,"y":-52},{"x":23,"y":-47},{"x":46,"y":10},{"x":1,"y":-25},{"x":-175,"y":-40},{"x":25,"y":-84},{"x":67,"y":-27},{"x":13,"y":-82},{"x":-55,"y":-65},{"x":-95,"y":-45},{"x":-13,"y":14},{"x":-37,"y":-132},{"x":-58,"y":-18},{"x":-13,"y":-29},{"x":15,"y":-55},{"x":-70,"y":-58},{"x":-194,"y":-10},{"x":-31,"y":-59},{"x":-104,"y":-76},{"x":-114,"y":-10},{"x":-44,"y":-54},{"x":-110,"y":-23},{"x":-70,"y":-69},{"x":-97,"y":-19},{"x":-33,"y":-65},{"x":-57,"y":7},{"x":-60,"y":-53},{"x":-82,"y":-126},{"x":-114,"y":7},{"x":-19,"y":32},{"x":-169,"y":72},{"x":-207,"y":-134},{"x":-15,"y":-110},{"x":-136,"y":-3},{"x":-66,"y":-86},{"x":-130,"y":-56},{"x":-34,"y":-68},{"x":18,"y":-109},{"x":-35,"y":-60},{"x":-54,"y":-15},{"x":-31,"y":-43},{"x":-37,"y":-269},{"x":-31,"y":-40},{"x":5,"y":-331},{"x":24,"y":-48},{"x":-17,"y":-95}],"type":"area"},{"arc":[{"x":131635,"y":137228},{"x":81,"y":24},{"x":70,"y":-12},{"x":102,"y":28},{"x":54,"y":48},{"x":104,"y":8},{"x":136,"y":147},{"x":36,"y":-8},{"x":29,"y":-111},{"x":54,"y":-37},{"x":83,"y":11},{"x":34,"y":39},{"x":224,"y":-30},{"x":10,"y":-69},{"x":-65,"y":-140},{"x":1,"y":-69},{"x":-91,"y":-79},{"x":43,"y":-152}],"type":"admin"},{"arc":[{"x":132540,"y":136826},{"x":57,"y":-2},{"x":128,"y":47},{"x":151,"y":-124},{"x":20,"y":20}],"type":"admin"},{"arc":[{"x":132896,"y":136767},{"x":253,"y":157},{"x":-19,"y":79},{"x":28,"y":11},{"x":-2,"y":41},{"x":-28,"y":62}],"type":"area"},{"arc":[{"x":133128,"y":137117},{"x":-40,"y":22},{"x":43,"y":37},{"x":-34,"y":18},{"x":32,"y":58},{"x":-116,"y":117},{"x":84,"y":-16},{"x":191,"y":83},{"x":-5,"y":114},{"x":65,"y":191},{"x":61,"y":-48},{"x":72,"y":81},{"x":65,"y":-93},{"x":246,"y":4},{"x":64,"y":-16},{"x":13,"y":-32},{"x":68,"y":-6},{"x":37,"y":64},{"x":33,"y":-17},{"x":99,"y":16},{"x":21,"y":73},{"x":27,"y":-17},{"x":101,"y":46},{"x":21,"y":72},{"x":40,"y":-11},{"x":45,"y":30},{"x":-23,"y":16},{"x":12,"y":36},{"x":46,"y":-10},{"x":83,"y":-86},{"x":42,"y":74},{"x":121,"y":-26},{"x":45,"y":84},{"x":176,"y":75},{"x":104,"y":92},{"x":45,"y":-1},{"x":12,"y":58},{"x":36,"y":4},{"x":71,"y":93},{"x":82,"y":-44},{"x":31,"y":-90},{"x":67,"y":44},{"x":50,"y":3},{"x":57,"y":164},{"x":31,"y":23},{"x":64,"y":-4},{"x":73,"y":65},{"x":112,"y":176},{"x":46,"y":-4},{"x":52,"y":-55},{"x":44,"y":8},{"x":79,"y":-52},{"x":-22,"y":-70},{"x":35,"y":-88},{"x":121,"y":-28},{"x":55,"y":-45},{"x":60,"y":25}],"type":"area"},{"arc":[{"x":136168,"y":138324},{"x":73,"y":18},{"x":-5,"y":85},{"x":87,"y":5},{"x":38,"y":40},{"x":-50,"y":77},{"x":60,"y":318},{"x":-38,"y":90},{"x":45,"y":61},{"x":156,"y":98},{"x":20,"y":144},{"x":16,"y":16},{"x":37,"y":-18},{"x":23,"y":52},{"x":-44,"y":115},{"x":15,"y":31},{"x":43,"y":4},{"x":-59,"y":129},{"x":-48,"y":9},{"x":-2,"y":-22},{"x":-90,"y":28},{"x":-13,"y":-20},{"x":-41,"y":29},{"x":-28,"y":-11},{"x":-97,"y":137},{"x":-47,"y":11},{"x":4,"y":40},{"x":29,"y":10},{"x":-19,"y":37},{"x":43,"y":29},{"x":-56,"y":9},{"x":19,"y":35},{"x":-27,"y":25},{"x":-31,"y":-14},{"x":55,"y":45},{"x":-44,"y":16},{"x":1,"y":38},{"x":-25,"y":-8},{"x":25,"y":28},{"x":-78,"y":-11},{"x":61,"y":54},{"x":-66,"y":57}],"type":"area"},{"arc":[{"x":133989,"y":140777},{"x":-166,"y":-49},{"x":26,"y":-56},{"x":-94,"y":-19},{"x":3,"y":-60},{"x":-74,"y":-20},{"x":5,"y":-27},{"x":-7,"y":32},{"x":-26,"y":-10},{"x":33,"y":127},{"x":-21,"y":-22},{"x":-30,"y":14},{"x":46,"y":18},{"x":-46,"y":64},{"x":100,"y":59},{"x":10,"y":43},{"x":-43,"y":-38},{"x":-23,"y":54},{"x":52,"y":25},{"x":25,"y":-13},{"x":-44,"y":21},{"x":-53,"y":-18},{"x":-15,"y":34},{"x":29,"y":87},{"x":-92,"y":143},{"x":-23,"y":172}],"type":"coastline"},{"arc":[{"x":133561,"y":141338},{"x":-34,"y":7},{"x":-9,"y":32},{"x":-38,"y":-24},{"x":-19,"y":93},{"x":-49,"y":7},{"x":-27,"y":-38},{"x":-73,"y":-7},{"x":-18,"y":-27},{"x":-106,"y":3},{"x":-28,"y":22},{"x":2,"y":60},{"x":-92,"y":4},{"x":12,"y":-37},{"x":-25,"y":-38},{"x":-149,"y":-21},{"x":-114,"y":-60},{"x":-19,"y":16},{"x":-49,"y":-61},{"x":-87,"y":-10},{"x":-23,"y":-70},{"x":-31,"y":-13}],"type":"admin"},{"arc":[{"x":132585,"y":141176},{"x":-28,"y":-231},{"x":-107,"y":-115},{"x":-18,"y":-70},{"x":-62,"y":-48},{"x":-27,"y":-174},{"x":16,"y":-94},{"x":-77,"y":-113},{"x":5,"y":-66},{"x":108,"y":-35},{"x":-6,"y":-57},{"x":-78,"y":-42},{"x":-51,"y":-97},{"x":-43,"y":35},{"x":-15,"y":118},{"x":-28,"y":15},{"x":-82,"y":-133},{"x":34,"y":-256},{"x":-138,"y":-98},{"x":88,"y":-178},{"x":-63,"y":-25},{"x":-99,"y":-281},{"x":-67,"y":217},{"x":-174,"y":-28},{"x":-125,"y":46},{"x":-34,"y":-63},{"x":-103,"y":-70},{"x":-95,"y":-23},{"x":-44,"y":18},{"x":-32,"y":-22}],"type":"admin"},{"arc":[{"x":131240,"y":139306},{"x":-17,"y":-91},{"x":-119,"y":-208},{"x":-49,"y":-12},{"x":5,"y":-78},{"x":56,"y":-104},{"x":-32,"y":-40},{"x":-9,"y":-136},{"x":3,"y":-83},{"x":39,"y":-51},{"x":-50,"y":-63},{"x":54,"y":-260},{"x":-37,"y":-79},{"x":30,"y":-86},{"x":-9,"y":-97},{"x":-275,"y":-170},{"x":-33,"y":4},{"x":-28,"y":60},{"x":-56,"y":-2},{"x":-91,"y":89},{"x":-48,"y":-122},{"x":-123,"y":-67},{"x":-87,"y":-388},{"x":24,"y":-81},{"x":-57,"y":-127},{"x":-70,"y":-93},{"x":-78,"y":29},{"x":-83,"y":-31},{"x":-35,"y":24},{"x":-31,"y":-111},{"x":26,"y":-119},{"x":-39,"y":-59},{"x":-97,"y":-22},{"x":35,"y":-298}],"type":"admin"},{"arc":[{"x":129959,"y":136434},{"x":126,"y":-82},{"x":37,"y":-127},{"x":88,"y":-72},{"x":78,"y":-3},{"x":86,"y":-54},{"x":39,"y":19},{"x":103,"y":-34},{"x":29,"y":-47}],"type":"admin"},{"arc":[{"x":130545,"y":136034},{"x":79,"y":12},{"x":135,"y":-59},{"x":88,"y":-84},{"x":32,"y":-88},{"x":66,"y":-5},{"x":54,"y":60},{"x":120,"y":32},{"x":24,"y":65},{"x":80,"y":61},{"x":83,"y":10},{"x":76,"y":-26},{"x":83,"y":75}],"type":"admin"},{"arc":[{"x":131465,"y":136087},{"x":6,"y":159},{"x":91,"y":72},{"x":33,"y":118},{"x":-55,"y":147},{"x":9,"y":78},{"x":91,"y":72},{"x":-46,"y":198},{"x":66,"y":113},{"x":-25,"y":184}],"type":"admin"},{"arc":[{"x":141538,"y":135264},{"x":-81,"y":-57},{"x":-439,"y":-155}],"type":"area"},{"arc":[{"x":141018,"y":135052},{"x":-45,"y":-139},{"x":-72,"y":-102},{"x":-427,"y":-137}],"type":"area"},{"arc":[{"x":140474,"y":134674},{"x":-122,"y":-196},{"x":-144,"y":-19},{"x":-63,"y":-34},{"x":-72,"y":4},{"x":-347,"y":-128}],"type":"area"},{"arc":[{"x":139726,"y":134301},{"x":-109,"y":-88},{"x":-123,"y":-33},{"x":-318,"y":-200},{"x":-117,"y":-43},{"x":-150,"y":33},{"x":-13,"y":26},{"x":-127,"y":47},{"x":-254,"y":48},{"x":51,"y":135},{"x":-11,"y":176},{"x":-60,"y":88},{"x":-29,"y":-18},{"x":-26,"y":35},{"x":-184,"y":86},{"x":24,"y":37},{"x":-19,"y":52},{"x":52,"y":28},{"x":3,"y":65},{"x":11,"y":-34},{"x":71,"y":13},{"x":37,"y":66},{"x":-34,"y":63},{"x":-20,"y":-36},{"x":-22,"y":20},{"x":12,"y":33},{"x":-37,"y":64},{"x":25,"y":22}],"type":"area"},{"arc":[{"x":138359,"y":134986},{"x":12,"y":46},{"x":-33,"y":-8},{"x":-19,"y":59},{"x":37,"y":70},{"x":-54,"y":48},{"x":-163,"y":39},{"x":-37,"y":-134},{"x":-67,"y":95},{"x":-143,"y":62},{"x":10,"y":38},{"x":-53,"y":105},{"x":48,"y":53},{"x":0,"y":40},{"x":124,"y":22},{"x":59,"y":-15},{"x":41,"y":31},{"x":-202,"y":-17}],"type":"area"},{"arc":[{"x":137919,"y":135520},{"x":-94,"y":-83},{"x":-88,"y":95},{"x":-110,"y":-19},{"x":22,"y":-53},{"x":-29,"y":-121},{"x":-62,"y":-39},{"x":41,"y":-104},{"x":-138,"y":-109},{"x":5,"y":-63},{"x":-108,"y":-15},{"x":-43,"y":-49},{"x":-67,"y":21},{"x":-33,"y":-18},{"x":-15,"y":-128},{"x":41,"y":-1},{"x":28,"y":-34},{"x":-34,"y":-41},{"x":-144,"y":-36},{"x":12,"y":-84},{"x":-26,"y":-26},{"x":-7,"y":-105}],"type":"area"},{"arc":[{"x":137070,"y":134508},{"x":41,"y":-37},{"x":155,"y":13},{"x":-127,"y":-183},{"x":-1,"y":-109},{"x":-120,"y":-54},{"x":-35,"y":-105},{"x":54,"y":-127},{"x":55,"y":38},{"x":42,"y":-18},{"x":8,"y":-59},{"x":105,"y":-151}],"type":"admin"},{"arc":[{"x":137247,"y":133716},{"x":60,"y":7},{"x":82,"y":-45},{"x":74,"y":82},{"x":70,"y":5},{"x":58,"y":-28},{"x":58,"y":33},{"x":26,"y":-11},{"x":108,"y":95},{"x":110,"y":-41},{"x":54,"y":25}],"type":"admin"},{"arc":[{"x":137947,"y":133838},{"x":95,"y":-43},{"x":33,"y":-107},{"x":31,"y":-5}],"type":"admin"},{"arc":[{"x":138106,"y":133683},{"x":85,"y":-75},{"x":39,"y":-5},{"x":15,"y":-35},{"x":109,"y":46},{"x":58,"y":-12},{"x":7,"y":-67},{"x":88,"y":2},{"x":-27,"y":-59},{"x":20,"y":-172},{"x":122,"y":56},{"x":-20,"y":32},{"x":25,"y":11},{"x":104,"y":-40},{"x":-9,"y":-87},{"x":54,"y":-41}],"type":"admin"},{"arc":[{"x":138776,"y":133237},{"x":35,"y":5},{"x":-43,"y":43},{"x":4,"y":110},{"x":119,"y":-11},{"x":1,"y":-74},{"x":104,"y":4},{"x":67,"y":-32},{"x":73,"y":-93},{"x":48,"y":-9},{"x":104,"y":115},{"x":-8,"y":72},{"x":34,"y":21},{"x":86,"y":10},{"x":116,"y":-41},{"x":96,"y":67},{"x":86,"y":15},{"x":69,"y":-49},{"x":142,"y":81},{"x":141,"y":15},{"x":6,"y":30},{"x":82,"y":27},{"x":173,"y":25},{"x":12,"y":-22},{"x":88,"y":-14},{"x":144,"y":82},{"x":75,"y":-7},{"x":23,"y":-79},{"x":53,"y":-32},{"x":106,"y":-31},{"x":61,"y":10},{"x":40,"y":-32},{"x":101,"y":18},{"x":81,"y":-48},{"x":130,"y":-18},{"x":50,"y":-47},{"x":46,"y":16},{"x":21,"y":-27},{"x":59,"y":-7},{"x":72,"y":91},{"x":140,"y":-4},{"x":50,"y":-33},{"x":34,"y":56},{"x":52,"y":3},{"x":45,"y":39},{"x":30,"y":-15},{"x":41,"y":37},{"x":62,"y":-15},{"x":59,"y":30},{"x":60,"y":76},{"x":53,"y":-3},{"x":93,"y":64}],"type":"admin"},{"arc":[{"x":142192,"y":133656},{"x":-35,"y":52},{"x":56,"y":175},{"x":-13,"y":49},{"x":-99,"y":186},{"x":-64,"y":-9},{"x":-82,"y":57},{"x":22,"y":72},{"x":-67,"y":20},{"x":-30,"y":92},{"x":35,"y":45},{"x":-6,"y":50},{"x":82,"y":35},{"x":3,"y":49},{"x":87,"y":35},{"x":16,"y":72},{"x":28,"y":10},{"x":-68,"y":281},{"x":-67,"y":43},{"x":-33,"y":60},{"x":-419,"y":234}],"type":"area"},{"arc":[{"x":144374,"y":126404},{"x":-82,"y":136},{"x":-55,"y":-15},{"x":-34,"y":-45},{"x":-61,"y":44},{"x":-99,"y":-14},{"x":-13,"y":50},{"x":43,"y":112},{"x":-57,"y":158},{"x":-35,"y":44},{"x":-127,"y":-13},{"x":12,"y":33},{"x":-50,"y":103},{"x":-147,"y":65},{"x":-43,"y":63}],"type":"area"},{"arc":[{"x":143626,"y":127125},{"x":-61,"y":-34},{"x":6,"y":-65},{"x":44,"y":-53},{"x":-31,"y":-63},{"x":-123,"y":-54},{"x":-24,"y":20},{"x":-122,"y":-25},{"x":-6,"y":-51},{"x":44,"y":-47},{"x":-52,"y":-44},{"x":31,"y":-56},{"x":0,"y":-93},{"x":-31,"y":-9},{"x":-132,"y":158},{"x":-67,"y":-25},{"x":-25,"y":-70},{"x":-97,"y":-71},{"x":-82,"y":173},{"x":-224,"y":41},{"x":-68,"y":-78},{"x":-56,"y":-7},{"x":-39,"y":127},{"x":-53,"y":-4},{"x":-38,"y":38},{"x":-108,"y":-10},{"x":-103,"y":27},{"x":-94,"y":140},{"x":5,"y":53},{"x":-157,"y":180},{"x":10,"y":58},{"x":-23,"y":25},{"x":99,"y":265},{"x":-81,"y":201},{"x":32,"y":21},{"x":22,"y":187},{"x":55,"y":70}],"type":"area"},{"arc":[{"x":142077,"y":128050},{"x":-179,"y":65},{"x":-65,"y":-7},{"x":-18,"y":-67},{"x":-62,"y":-76},{"x":-43,"y":-11},{"x":-11,"y":-66},{"x":-112,"y":-38},{"x":-7,"y":-109},{"x":-36,"y":-4},{"x":-140,"y":114},{"x":-21,"y":-65},{"x":-89,"y":38},{"x":-19,"y":34},{"x":-53,"y":-40},{"x":-101,"y":-24},{"x":26,"y":-75},{"x":-26,"y":-33},{"x":-31,"y":24},{"x":-68,"y":-23},{"x":-54,"y":42},{"x":-152,"y":-7},{"x":-23,"y":25}],"type":"admin"},{"arc":[{"x":140793,"y":127747},{"x":-12,"y":-61},{"x":74,"y":-98},{"x":-22,"y":-81},{"x":32,"y":-167},{"x":-7,"y":-183},{"x":-146,"y":-36},{"x":-28,"y":-39}],"type":"admin"},{"arc":[{"x":140684,"y":127082},{"x":-40,"y":-192},{"x":135,"y":-119},{"x":6,"y":-79},{"x":144,"y":30},{"x":101,"y":-30},{"x":37,"y":58},{"x":-7,"y":62},{"x":26,"y":13},{"x":94,"y":-32},{"x":49,"y":-85},{"x":115,"y":-67},{"x":-17,"y":-74},{"x":72,"y":-43},{"x":-3,"y":-82},{"x":82,"y":-86},{"x":42,"y":18},{"x":17,"y":57},{"x":116,"y":50},{"x":75,"y":-9},{"x":94,"y":-49},{"x":52,"y":8},{"x":41,"y":-46},{"x":37,"y":-109},{"x":-22,"y":-52},{"x":38,"y":-44},{"x":-57,"y":-94},{"x":70,"y":-205},{"x":-94,"y":-102},{"x":12,"y":-58},{"x":-68,"y":-38},{"x":-16,"y":-44},{"x":-86,"y":-26},{"x":-36,"y":-82},{"x":-50,"y":-22},{"x":-28,"y":-51},{"x":277,"y":-125},{"x":68,"y":10},{"x":-34,"y":-74},{"x":28,"y":-76},{"x":-44,"y":-50},{"x":109,"y":-198},{"x":4,"y":-77},{"x":16,"y":-15},{"x":130,"y":24},{"x":55,"y":-43},{"x":23,"y":-79},{"x":46,"y":-8},{"x":-24,"y":-65},{"x":45,"y":-66},{"x":67,"y":-273},{"x":76,"y":-134},{"x":44,"y":-15},{"x":3,"y":-83}],"type":"admin"},{"arc":[{"x":142504,"y":124111},{"x":47,"y":-126},{"x":48,"y":-40},{"x":29,"y":-3},{"x":58,"y":52},{"x":60,"y":-16},{"x":47,"y":34},{"x":79,"y":-25},{"x":51,"y":-88},{"x":119,"y":18},{"x":49,"y":47},{"x":136,"y":-46},{"x":190,"y":85},{"x":183,"y":-39},{"x":-1,"y":24},{"x":168,"y":89}],"type":"admin"},{"arc":[{"x":143767,"y":124077},{"x":74,"y":127},{"x":-60,"y":84},{"x":-4,"y":66},{"x":-117,"y":101},{"x":-35,"y":151},{"x":-37,"y":32},{"x":-56,"y":-16},{"x":-40,"y":36},{"x":17,"y":118},{"x":47,"y":38},{"x":44,"y":143},{"x":86,"y":43},{"x":58,"y":63},{"x":57,"y":4},{"x":-30,"y":197},{"x":153,"y":11},{"x":97,"y":-34},{"x":160,"y":26},{"x":30,"y":25},{"x":104,"y":-21}],"type":"admin"},{"arc":[{"x":144315,"y":125271},{"x":18,"y":97},{"x":-40,"y":8},{"x":9,"y":58},{"x":-42,"y":1},{"x":-18,"y":40},{"x":-15,"y":256},{"x":88,"y":131},{"x":90,"y":-13},{"x":70,"y":43},{"x":80,"y":154}],"type":"admin"},{"arc":[{"x":144555,"y":126046},{"x":-47,"y":196},{"x":-83,"y":51},{"x":-3,"y":52},{"x":-48,"y":59}],"type":"area"},{"arc":[{"x":147145,"y":124394},{"x":-22,"y":-24},{"x":20,"y":-9},{"x":2,"y":33}],"type":"coastline"},{"arc":[{"x":147954,"y":125614},{"x":-26,"y":10},{"x":8,"y":-25},{"x":18,"y":15}],"type":"coastline"},{"arc":[{"x":148347,"y":127166},{"x":-58,"y":-18},{"x":-34,"y":-43},{"x":-250,"y":-75},{"x":-18,"y":-125},{"x":-65,"y":-11},{"x":-44,"y":-98},{"x":-88,"y":22},{"x":-98,"y":-68},{"x":-71,"y":6},{"x":-43,"y":-56},{"x":-57,"y":51},{"x":-95,"y":19},{"x":9,"y":44},{"x":-52,"y":152},{"x":-52,"y":-3}],"type":"admin"},{"arc":[{"x":147331,"y":126963},{"x":-25,"y":-72},{"x":-102,"y":-26},{"x":-58,"y":-60},{"x":-112,"y":79},{"x":-22,"y":-10},{"x":-1,"y":-72},{"x":72,"y":-54},{"x":-26,"y":-78},{"x":38,"y":-53},{"x":-100,"y":-33},{"x":-36,"y":25},{"x":-59,"y":-32},{"x":-12,"y":-130},{"x":-128,"y":-53},{"x":-181,"y":20},{"x":-78,"y":119},{"x":-61,"y":9},{"x":-52,"y":56},{"x":-8,"y":53},{"x":-95,"y":-22}],"type":"area"},{"arc":[{"x":146285,"y":126629},{"x":-7,"y":-122},{"x":-117,"y":-76},{"x":-62,"y":14},{"x":-68,"y":-80},{"x":-30,"y":-106},{"x":-129,"y":-47},{"x":-20,"y":-42},{"x":-174,"y":-54},{"x":-143,"y":-130},{"x":28,"y":-43},{"x":-9,"y":-219},{"x":-115,"y":-117},{"x":-37,"y":-88},{"x":9,"y":-63},{"x":-75,"y":-147},{"x":74,"y":-169}],"type":"admin"},{"arc":[{"x":145410,"y":125140},{"x":32,"y":-17},{"x":5,"y":-71},{"x":-83,"y":-213},{"x":26,"y":-33},{"x":-17,"y":-118},{"x":-60,"y":-53},{"x":-15,"y":-65},{"x":-55,"y":-26},{"x":1,"y":-80},{"x":-54,"y":-66},{"x":-68,"y":-20},{"x":-20,"y":-30},{"x":41,"y":-65},{"x":-29,"y":-52},{"x":-17,"y":-231},{"x":48,"y":-37},{"x":68,"y":-2},{"x":76,"y":-83},{"x":39,"y":31},{"x":93,"y":12},{"x":47,"y":-45},{"x":44,"y":-3},{"x":52,"y":-119},{"x":84,"y":-23},{"x":100,"y":-205},{"x":43,"y":2},{"x":83,"y":-57},{"x":28,"y":-82},{"x":46,"y":12},{"x":54,"y":-68},{"x":38,"y":2},{"x":-6,"y":-67},{"x":31,"y":-24},{"x":35,"y":27},{"x":18,"y":-12},{"x":73,"y":105},{"x":183,"y":11},{"x":17,"y":44},{"x":78,"y":33},{"x":131,"y":-37},{"x":65,"y":10},{"x":-4,"y":-40},{"x":28,"y":-17},{"x":143,"y":20},{"x":25,"y":-37},{"x":83,"y":35}],"type":"admin"},{"arc":[{"x":146940,"y":123386},{"x":36,"y":120},{"x":-25,"y":35},{"x":-33,"y":-25},{"x":3,"y":58},{"x":-93,"y":-30},{"x":-40,"y":17},{"x":33,"y":81},{"x":-43,"y":30},{"x":50,"y":56},{"x":-52,"y":90},{"x":39,"y":229},{"x":179,"y":330},{"x":83,"y":40},{"x":36,"y":-36},{"x":12,"y":39},{"x":25,"y":-22},{"x":12,"y":70},{"x":88,"y":15},{"x":-9,"y":56},{"x":137,"y":69},{"x":-38,"y":78},{"x":50,"y":99},{"x":-16,"y":79},{"x":23,"y":51},{"x":-14,"y":-20},{"x":-38,"y":16},{"x":21,"y":34},{"x":25,"y":-7},{"x":-55,"y":82},{"x":30,"y":46},{"x":37,"y":14},{"x":31,"y":-16},{"x":24,"y":35},{"x":23,"y":-7},{"x":18,"y":47},{"x":-34,"y":57},{"x":43,"y":30},{"x":61,"y":168},{"x":64,"y":9},{"x":-12,"y":37},{"x":79,"y":20},{"x":3,"y":77},{"x":93,"y":101},{"x":72,"y":27},{"x":43,"y":-34},{"x":63,"y":12},{"x":6,"y":55},{"x":-29,"y":19},{"x":40,"y":6},{"x":-7,"y":-19},{"x":28,"y":28},{"x":-14,"y":89},{"x":66,"y":77},{"x":-41,"y":38},{"x":24,"y":106},{"x":87,"y":112},{"x":28,"y":-25},{"x":22,"y":15},{"x":15,"y":45},{"x":-77,"y":29},{"x":-23,"y":50},{"x":36,"y":46},{"x":-6,"y":39},{"x":40,"y":2},{"x":-27,"y":33},{"x":10,"y":48},{"x":69,"y":34},{"x":-30,"y":47},{"x":13,"y":32},{"x":20,"y":11},{"x":3,"y":-10},{"x":18,"y":11},{"x":-7,"y":11},{"x":16,"y":-4},{"x":4,"y":10},{"x":-3,"y":43},{"x":-2,"y":-50},{"x":-6,"y":25},{"x":-17,"y":-6},{"x":2,"y":48},{"x":21,"y":-7},{"x":-18,"y":21},{"x":31,"y":32},{"x":42,"y":-2},{"x":-39,"y":35},{"x":56,"y":43},{"x":-39,"y":35},{"x":-9,"y":100},{"x":101,"y":156},{"x":53,"y":-30},{"x":37,"y":24},{"x":-6,"y":38},{"x":-49,"y":6},{"x":-22,"y":56},{"x":-44,"y":21}],"type":"coastline"},{"arc":[{"x":143116,"y":132705},{"x":-21,"y":9},{"x":-124,"y":-58},{"x":-50,"y":173},{"x":-125,"y":51},{"x":-31,"y":44},{"x":-56,"y":9},{"x":-33,"y":45}],"type":"admin"},{"arc":[{"x":142676,"y":132978},{"x":-167,"y":-77},{"x":-37,"y":-107},{"x":-136,"y":3},{"x":-41,"y":39},{"x":-46,"y":-16},{"x":-43,"y":-57},{"x":73,"y":-68},{"x":-41,"y":-205},{"x":12,"y":-135},{"x":-43,"y":-58},{"x":-80,"y":23},{"x":-77,"y":-61},{"x":-50,"y":17}],"type":"admin"},{"arc":[{"x":142000,"y":132276},{"x":-27,"y":-19},{"x":-4,"y":-82},{"x":-54,"y":-57},{"x":4,"y":-50},{"x":-49,"y":-37},{"x":-29,"y":-143},{"x":34,"y":-55},{"x":7,"y":-181},{"x":62,"y":-119},{"x":-79,"y":-119},{"x":10,"y":-46},{"x":-158,"y":-110},{"x":-119,"y":9},{"x":-37,"y":-101},{"x":-96,"y":-8},{"x":1,"y":-66},{"x":36,"y":-39},{"x":-119,"y":-201},{"x":-67,"y":27},{"x":-29,"y":51},{"x":-113,"y":-6},{"x":-296,"y":-211},{"x":-168,"y":-38},{"x":1,"y":-24},{"x":-59,"y":-21},{"x":-73,"y":-76},{"x":-76,"y":-4},{"x":-19,"y":21},{"x":-140,"y":-35},{"x":-117,"y":84},{"x":61,"y":83},{"x":-61,"y":25},{"x":13,"y":188},{"x":-35,"y":16},{"x":-22,"y":-66},{"x":-164,"y":51},{"x":-13,"y":55},{"x":25,"y":32},{"x":-92,"y":80},{"x":-14,"y":46},{"x":-81,"y":-20},{"x":-58,"y":-89},{"x":32,"y":-53},{"x":-13,"y":-30}],"type":"admin"},{"arc":[{"x":139805,"y":130938},{"x":16,"y":-72},{"x":46,"y":-40},{"x":-18,"y":-95},{"x":44,"y":-67},{"x":-35,"y":-71},{"x":-107,"y":-38},{"x":-67,"y":-95},{"x":-128,"y":16},{"x":-3,"y":23},{"x":-52,"y":16},{"x":-74,"y":-4},{"x":-44,"y":-53},{"x":73,"y":-111},{"x":-20,"y":-38},{"x":-69,"y":18},{"x":-30,"y":-129},{"x":54,"y":-31},{"x":-17,"y":-27},{"x":37,"y":-156},{"x":75,"y":-1},{"x":-2,"y":-222},{"x":39,"y":-29},{"x":4,"y":-47},{"x":-73,"y":-48},{"x":-76,"y":22},{"x":-81,"y":-51},{"x":-155,"y":-147},{"x":-26,"y":-59},{"x":-40,"y":-5},{"x":1,"y":-62},{"x":-155,"y":-89},{"x":50,"y":-81},{"x":-27,"y":-33},{"x":20,"y":-75},{"x":-41,"y":-189},{"x":60,"y":-47},{"x":-18,"y":-74},{"x":36,"y":-41}],"type":"area"},{"arc":[{"x":139002,"y":128706},{"x":104,"y":-21},{"x":62,"y":-39},{"x":17,"y":-52}],"type":"admin"},{"arc":[{"x":139185,"y":128594},{"x":121,"y":-26},{"x":50,"y":30},{"x":28,"y":60},{"x":63,"y":-8},{"x":82,"y":105},{"x":47,"y":134},{"x":123,"y":4},{"x":37,"y":44},{"x":66,"y":-41},{"x":50,"y":-91}],"type":"admin"},{"arc":[{"x":139852,"y":128805},{"x":92,"y":107},{"x":26,"y":103},{"x":-33,"y":100},{"x":120,"y":63},{"x":46,"y":-21},{"x":40,"y":26},{"x":-17,"y":92},{"x":90,"y":96},{"x":81,"y":-44},{"x":2,"y":65},{"x":73,"y":-2},{"x":12,"y":44},{"x":62,"y":-9},{"x":11,"y":32},{"x":97,"y":-40},{"x":36,"y":72},{"x":110,"y":12},{"x":33,"y":65},{"x":80,"y":-13},{"x":23,"y":-32},{"x":33,"y":25},{"x":24,"y":-26},{"x":57,"y":15},{"x":24,"y":-74},{"x":48,"y":-16},{"x":35,"y":-78},{"x":291,"y":115},{"x":29,"y":-18},{"x":73,"y":10},{"x":36,"y":-36},{"x":82,"y":-7},{"x":20,"y":-22},{"x":22,"y":24},{"x":106,"y":13},{"x":50,"y":116},{"x":86,"y":-30},{"x":66,"y":-61},{"x":304,"y":55},{"x":38,"y":90},{"x":98,"y":84},{"x":89,"y":-41},{"x":125,"y":62},{"x":58,"y":84},{"x":-14,"y":35},{"x":75,"y":52},{"x":28,"y":59},{"x":106,"y":-54},{"x":96,"y":28},{"x":20,"y":-19}],"type":"admin"},{"arc":[{"x":142941,"y":129906},{"x":69,"y":17},{"x":25,"y":64},{"x":134,"y":-58},{"x":57,"y":166},{"x":63,"y":56},{"x":5,"y":110},{"x":15,"y":20},{"x":78,"y":1}],"type":"area"},{"arc":[{"x":143387,"y":130282},{"x":4,"y":309},{"x":-36,"y":40},{"x":2,"y":115},{"x":-86,"y":90},{"x":59,"y":79},{"x":-16,"y":116},{"x":-61,"y":44},{"x":54,"y":40},{"x":-15,"y":87},{"x":-78,"y":134},{"x":40,"y":58},{"x":-133,"y":195},{"x":9,"y":76},{"x":-86,"y":72},{"x":-84,"y":266},{"x":55,"y":101},{"x":68,"y":25},{"x":26,"y":54},{"x":-62,"y":136},{"x":44,"y":96},{"x":56,"y":-6},{"x":6,"y":51},{"x":-74,"y":150},{"x":41,"y":36},{"x":-4,"y":59}],"type":"admin"},{"arc":[{"x":136114,"y":133727},{"x":-68,"y":-36},{"x":-32,"y":17},{"x":17,"y":38},{"x":-24,"y":29},{"x":-67,"y":-13},{"x":-13,"y":-23},{"x":-57,"y":72},{"x":-93,"y":37},{"x":-7,"y":30},{"x":-20,"y":-13},{"x":-63,"y":113},{"x":132,"y":78},{"x":-75,"y":39},{"x":-50,"y":-46},{"x":-78,"y":0},{"x":39,"y":39},{"x":-20,"y":109}],"type":"admin"},{"arc":[{"x":135635,"y":134197},{"x":-49,"y":-15},{"x":-28,"y":43},{"x":-35,"y":7},{"x":-16,"y":-5},{"x":1,"y":63}],"type":"admin"},{"arc":[{"x":135508,"y":134290},{"x":-23,"y":-14},{"x":10,"y":-48},{"x":-133,"y":-50},{"x":-87,"y":-84},{"x":-43,"y":-2},{"x":-26,"y":-58},{"x":-286,"y":-75},{"x":68,"y":-51},{"x":-17,"y":-76},{"x":20,"y":-17},{"x":-53,"y":-104},{"x":-42,"y":-25},{"x":-5,"y":-152},{"x":29,"y":3},{"x":65,"y":-181},{"x":-22,"y":-122},{"x":41,"y":-58},{"x":-5,"y":-42},{"x":39,"y":18},{"x":5,"y":-64},{"x":49,"y":-23},{"x":16,"y":-46},{"x":-33,"y":-30},{"x":55,"y":-51},{"x":-21,"y":-137}],"type":"admin"},{"arc":[{"x":135109,"y":132801},{"x":79,"y":10},{"x":41,"y":117},{"x":64,"y":38},{"x":10,"y":-42},{"x":13,"y":27},{"x":27,"y":-4},{"x":-40,"y":-45},{"x":0,"y":-131},{"x":49,"y":-4},{"x":80,"y":116},{"x":30,"y":198},{"x":83,"y":25},{"x":171,"y":-41},{"x":186,"y":-4},{"x":53,"y":-29}],"type":"admin"},{"arc":[{"x":135955,"y":133032},{"x":57,"y":250},{"x":51,"y":36},{"x":-12,"y":35},{"x":38,"y":56},{"x":-12,"y":112},{"x":37,"y":206}],"type":"admin"},{"arc":[{"x":136078,"y":133540},{"x":-82,"y":116},{"x":43,"y":30},{"x":-35,"y":-29},{"x":65,"y":-55},{"x":9,"y":-62}],"type":"admin"},{"arc":[{"x":135606,"y":134129},{"x":-20,"y":-31},{"x":-82,"y":-7},{"x":-9,"y":37},{"x":-57,"y":13},{"x":41,"y":4},{"x":-61,"y":19},{"x":45,"y":11},{"x":37,"y":-43},{"x":-26,"y":36},{"x":26,"y":-17},{"x":4,"y":31},{"x":-44,"y":5},{"x":43,"y":11},{"x":-95,"y":-9},{"x":86,"y":33},{"x":30,"y":-23},{"x":-17,"y":-76},{"x":20,"y":29},{"x":18,"y":-46},{"x":-8,"y":71},{"x":28,"y":5},{"x":-37,"y":7},{"x":-4,"y":38},{"x":10,"y":-20},{"x":33,"y":-2},{"x":20,"y":-37},{"x":29,"y":-11},{"x":0,"y":20},{"x":16,"y":-26},{"x":-26,"y":-22}],"type":"admin"},{"arc":[{"x":139852,"y":128805},{"x":-15,"y":-35},{"x":33,"y":-6},{"x":112,"y":16},{"x":44,"y":43},{"x":60,"y":-64},{"x":48,"y":-13},{"x":78,"y":55},{"x":29,"y":-15},{"x":2,"y":-178},{"x":41,"y":-24},{"x":-1,"y":-106},{"x":58,"y":-54},{"x":-10,"y":-127},{"x":103,"y":-52},{"x":19,"y":35},{"x":57,"y":-2},{"x":-10,"y":-141},{"x":-33,"y":-31},{"x":-49,"y":-212},{"x":11,"y":-64},{"x":-26,"y":-35},{"x":44,"y":-120},{"x":76,"y":-41},{"x":-2,"y":52},{"x":129,"y":91},{"x":143,"y":-30}],"type":"admin"},{"arc":[{"x":142077,"y":128050},{"x":-36,"y":141},{"x":104,"y":52},{"x":34,"y":81},{"x":95,"y":67},{"x":32,"y":162},{"x":63,"y":28},{"x":69,"y":93},{"x":159,"y":59},{"x":20,"y":64},{"x":124,"y":128},{"x":28,"y":114},{"x":78,"y":26},{"x":31,"y":69},{"x":65,"y":53},{"x":14,"y":112},{"x":-23,"y":19},{"x":88,"y":146},{"x":-50,"y":26},{"x":18,"y":100},{"x":-32,"y":122},{"x":27,"y":72},{"x":-44,"y":122}],"type":"admin"},{"arc":[{"x":146285,"y":126629},{"x":-110,"y":-9},{"x":-67,"y":-51},{"x":-69,"y":-2},{"x":-55,"y":-42},{"x":-38,"y":18},{"x":-22,"y":-19},{"x":-42,"y":21},{"x":1,"y":26},{"x":-88,"y":12},{"x":-56,"y":-147},{"x":-68,"y":-10},{"x":-42,"y":-35},{"x":61,"y":-117},{"x":-94,"y":-83},{"x":-95,"y":8},{"x":-7,"y":50},{"x":-85,"y":29},{"x":-86,"y":85},{"x":14,"y":109},{"x":-173,"y":13},{"x":-76,"y":-49},{"x":-30,"y":-116},{"x":-107,"y":-2},{"x":-145,"y":-136},{"x":-103,"y":-6},{"x":-78,"y":-144},{"x":-70,"y":14}],"type":"admin"},{"arc":[{"x":144315,"y":125271},{"x":55,"y":-46},{"x":234,"y":-47},{"x":18,"y":-57},{"x":66,"y":4},{"x":18,"y":46},{"x":135,"y":26},{"x":29,"y":-13},{"x":32,"y":-95},{"x":146,"y":134},{"x":32,"y":-24},{"x":111,"y":1},{"x":112,"y":-39},{"x":23,"y":-31},{"x":84,"y":10}],"type":"admin"},{"arc":[{"x":135076,"y":130079},{"x":124,"y":43},{"x":38,"y":71}],"type":"area"},{"arc":[{"x":135238,"y":130193},{"x":-278,"y":155}],"type":"area"},{"arc":[{"x":134960,"y":130348},{"x":-39,"y":-48},{"x":-163,"y":-15}],"type":"area"},{"arc":[{"x":134758,"y":130285},{"x":-45,"y":-152}],"type":"area"},{"arc":[{"x":134713,"y":130133},{"x":69,"y":29},{"x":125,"y":-53},{"x":94,"y":39},{"x":53,"y":-25},{"x":22,"y":-44}],"type":"area"},{"arc":[{"x":134811,"y":129532},{"x":89,"y":124}],"type":"area"},{"arc":[{"x":134900,"y":129656},{"x":4,"y":5}],"type":"area"},{"arc":[{"x":134904,"y":129661},{"x":-93,"y":100},{"x":37,"y":68},{"x":-113,"y":3},{"x":-114,"y":-101}],"type":"area"},{"arc":[{"x":134621,"y":129731},{"x":-51,"y":-94}],"type":"area"},{"arc":[{"x":134570,"y":129637},{"x":66,"y":-42},{"x":18,"y":-57},{"x":120,"y":19},{"x":37,"y":-25}],"type":"area"},{"arc":[{"x":133804,"y":128368},{"x":-35,"y":-38},{"x":60,"y":-22},{"x":131,"y":101},{"x":-61,"y":55},{"x":-95,"y":-96}],"type":"coastline"},{"arc":[{"x":134321,"y":128681},{"x":-50,"y":208},{"x":-41,"y":50},{"x":-109,"y":-109},{"x":-9,"y":13},{"x":-38,"y":-26},{"x":23,"y":-143},{"x":112,"y":-63},{"x":112,"y":70}],"type":"coastline"},{"arc":[{"x":134475,"y":128920},{"x":-55,"y":69},{"x":-123,"y":4},{"x":46,"y":-237},{"x":78,"y":14},{"x":54,"y":150}],"type":"coastline"},{"arc":[{"x":134255,"y":129163},{"x":21,"y":-33},{"x":-52,"y":-38},{"x":88,"y":11},{"x":-9,"y":-24},{"x":-99,"y":-39},{"x":123,"y":22},{"x":28,"y":77},{"x":53,"y":24},{"x":-52,"y":-93},{"x":87,"y":13},{"x":33,"y":-19},{"x":-31,"y":-69},{"x":18,"y":-23},{"x":3,"y":10},{"x":39,"y":2},{"x":-8,"y":-18},{"x":-12,"y":-5},{"x":12,"y":5},{"x":61,"y":156},{"x":40,"y":-21}],"type":"coastline"},{"arc":[{"x":134598,"y":129101},{"x":213,"y":431}],"type":"area"},{"arc":[{"x":134570,"y":129637},{"x":-40,"y":-106}],"type":"area"},{"arc":[{"x":134530,"y":129531},{"x":-51,"y":-122},{"x":-130,"y":-98},{"x":-94,"y":-148}],"type":"area"},{"arc":[{"x":134621,"y":129731},{"x":104,"y":168}],"type":"area"},{"arc":[{"x":134725,"y":129899},{"x":-302,"y":-7}],"type":"area"},{"arc":[{"x":134423,"y":129892},{"x":13,"y":-106},{"x":-24,"y":-62}],"type":"area"},{"arc":[{"x":134412,"y":129724},{"x":-15,"y":-65}],"type":"area"},{"arc":[{"x":134397,"y":129659},{"x":133,"y":-128}],"type":"area"},{"arc":[{"x":134131,"y":129413},{"x":-18,"y":-65},{"x":12,"y":-21},{"x":17,"y":49},{"x":16,"y":-118},{"x":18,"y":53},{"x":18,"y":-31},{"x":-12,"y":-118},{"x":30,"y":27},{"x":43,"y":-26}],"type":"coastline"},{"arc":[{"x":134397,"y":129659},{"x":-74,"y":-84},{"x":-165,"y":-102},{"x":-27,"y":-60}],"type":"area"},{"arc":[{"x":134246,"y":129730},{"x":-64,"y":-24},{"x":-150,"y":-3},{"x":-109,"y":-49}],"type":"area"},{"arc":[{"x":133923,"y":129654},{"x":-59,"y":-165},{"x":21,"y":-96}],"type":"area"},{"arc":[{"x":133885,"y":129393},{"x":57,"y":-2},{"x":-22,"y":55},{"x":72,"y":-10},{"x":-1,"y":-45},{"x":81,"y":-12},{"x":16,"y":42},{"x":43,"y":-8}],"type":"coastline"},{"arc":[{"x":134412,"y":129724},{"x":-166,"y":6}],"type":"area"},{"arc":[{"x":134497,"y":130272},{"x":-118,"y":-29}],"type":"area"},{"arc":[{"x":134379,"y":130243},{"x":-216,"y":-64}],"type":"area"},{"arc":[{"x":134163,"y":130179},{"x":-42,"y":-64},{"x":31,"y":-103}],"type":"area"},{"arc":[{"x":134152,"y":130012},{"x":6,"y":-19}],"type":"area"},{"arc":[{"x":134158,"y":129993},{"x":183,"y":43}],"type":"area"},{"arc":[{"x":134341,"y":130036},{"x":51,"y":9},{"x":-8,"y":77},{"x":129,"y":26},{"x":-16,"y":124}],"type":"area"},{"arc":[{"x":134423,"y":129892},{"x":-72,"y":44},{"x":-10,"y":100}],"type":"area"},{"arc":[{"x":134158,"y":129993},{"x":71,"y":-165},{"x":-20,"y":-55},{"x":63,"y":-2},{"x":-26,"y":-41}],"type":"area"},{"arc":[{"x":134779,"y":128967},{"x":62,"y":58},{"x":53,"y":127},{"x":78,"y":61},{"x":76,"y":156},{"x":42,"y":20},{"x":93,"y":-26}],"type":"admin"},{"arc":[{"x":135183,"y":129363},{"x":-46,"y":116},{"x":-237,"y":177}],"type":"area"},{"arc":[{"x":134598,"y":129101},{"x":66,"y":-26},{"x":42,"y":-70},{"x":73,"y":-38}],"type":"coastline"},{"arc":[{"x":135682,"y":130430},{"x":-25,"y":25},{"x":-29,"y":-2},{"x":13,"y":-20},{"x":-22,"y":20},{"x":-80,"y":-3},{"x":-3,"y":78},{"x":-37,"y":23}],"type":"admin"},{"arc":[{"x":135499,"y":130551},{"x":-41,"y":-38},{"x":-60,"y":-4}],"type":"admin"},{"arc":[{"x":135398,"y":130509},{"x":-85,"y":-23},{"x":-51,"y":-60},{"x":-24,"y":-233}],"type":"area"},{"arc":[{"x":135076,"y":130079},{"x":-15,"y":-113}],"type":"area"},{"arc":[{"x":135061,"y":129966},{"x":156,"y":-19},{"x":164,"y":48}],"type":"area"},{"arc":[{"x":135381,"y":129995},{"x":67,"y":108},{"x":-18,"y":110},{"x":48,"y":39},{"x":28,"y":-27},{"x":61,"y":35},{"x":25,"y":73},{"x":90,"y":49},{"x":0,"y":48}],"type":"admin"},{"arc":[{"x":134538,"y":130581},{"x":-128,"y":-12},{"x":1,"y":-50},{"x":-48,"y":-3}],"type":"admin"},{"arc":[{"x":134363,"y":130516},{"x":16,"y":-273}],"type":"area"},{"arc":[{"x":134497,"y":130272},{"x":88,"y":8}],"type":"area"},{"arc":[{"x":134585,"y":130280},{"x":-2,"y":63},{"x":21,"y":-1},{"x":-66,"y":239}],"type":"area"},{"arc":[{"x":134113,"y":130230},{"x":50,"y":-51}],"type":"area"},{"arc":[{"x":134363,"y":130516},{"x":-76,"y":70},{"x":-30,"y":-6},{"x":0,"y":-49},{"x":-38,"y":9},{"x":-1,"y":26},{"x":-117,"y":-8}],"type":"admin"},{"arc":[{"x":134101,"y":130558},{"x":6,"y":-73},{"x":-100,"y":-16},{"x":-35,"y":19},{"x":39,"y":-69}],"type":"area"},{"arc":[{"x":134011,"y":130419},{"x":51,"y":-31},{"x":11,"y":-73},{"x":-27,"y":-27},{"x":67,"y":-58}],"type":"area"},{"arc":[{"x":135398,"y":130509},{"x":-89,"y":48},{"x":-75,"y":-79},{"x":-105,"y":17},{"x":0,"y":89},{"x":-89,"y":41}],"type":"admin"},{"arc":[{"x":135040,"y":130625},{"x":-34,"y":-77}],"type":"area"},{"arc":[{"x":135006,"y":130548},{"x":4,"y":-138},{"x":-50,"y":-62}],"type":"area"},{"arc":[{"x":134585,"y":130280},{"x":173,"y":5}],"type":"area"},{"arc":[{"x":135006,"y":130548},{"x":-346,"y":-14},{"x":0,"y":70}],"type":"area"},{"arc":[{"x":134660,"y":130604},{"x":-122,"y":-23}],"type":"admin"},{"arc":[{"x":134113,"y":130230},{"x":-88,"y":-54},{"x":-72,"y":-2},{"x":-199,"y":-81}],"type":"area"},{"arc":[{"x":133754,"y":130093},{"x":7,"y":-78},{"x":72,"y":3},{"x":32,"y":-98},{"x":-15,"y":-32}],"type":"area"},{"arc":[{"x":133850,"y":129888},{"x":302,"y":124}],"type":"area"},{"arc":[{"x":133754,"y":130093},{"x":-83,"y":-23},{"x":-1,"y":100},{"x":-188,"y":-12}],"type":"area"},{"arc":[{"x":133482,"y":130158},{"x":-4,"y":-5}],"type":"admin"},{"arc":[{"x":133478,"y":130153},{"x":-103,"y":-199}],"type":"area"},{"arc":[{"x":133375,"y":129954},{"x":99,"y":-72},{"x":26,"y":-91}],"type":"area"},{"arc":[{"x":133500,"y":129791},{"x":347,"y":60}],"type":"area"},{"arc":[{"x":133847,"y":129851},{"x":3,"y":37}],"type":"area"},{"arc":[{"x":134011,"y":130419},{"x":-50,"y":-40},{"x":-91,"y":-2},{"x":0,"y":-30},{"x":-200,"y":1},{"x":-1,"y":29},{"x":-126,"y":-2}],"type":"area"},{"arc":[{"x":133543,"y":130375},{"x":-10,"y":-119},{"x":-98,"y":-15},{"x":70,"y":-43},{"x":-23,"y":-40}],"type":"admin"},{"arc":[{"x":133847,"y":129851},{"x":-23,"y":-108},{"x":36,"y":-9},{"x":63,"y":-80}],"type":"area"},{"arc":[{"x":135061,"y":129966},{"x":-15,"y":-110},{"x":-142,"y":-195}],"type":"area"},{"arc":[{"x":135183,"y":129363},{"x":63,"y":31},{"x":-11,"y":121}],"type":"admin"},{"arc":[{"x":135235,"y":129515},{"x":-28,"y":99},{"x":95,"y":119},{"x":112,"y":33},{"x":32,"y":35}],"type":"admin"},{"arc":[{"x":135446,"y":129801},{"x":19,"y":75},{"x":-84,"y":119}],"type":"admin"},{"arc":[{"x":135040,"y":130625},{"x":-112,"y":23},{"x":0,"y":46},{"x":51,"y":5},{"x":-2,"y":29},{"x":59,"y":-26},{"x":-5,"y":74},{"x":80,"y":0},{"x":-13,"y":21}],"type":"admin"},{"arc":[{"x":135098,"y":130797},{"x":-51,"y":31},{"x":-94,"y":-3},{"x":36,"y":30},{"x":12,"y":98}],"type":"admin"},{"arc":[{"x":135001,"y":130953},{"x":-98,"y":-24},{"x":10,"y":-70},{"x":-53,"y":49}],"type":"admin"},{"arc":[{"x":134860,"y":130908},{"x":-85,"y":-135},{"x":-97,"y":-33},{"x":-18,"y":-136}],"type":"admin"},{"arc":[{"x":133908,"y":128785},{"x":-96,"y":102},{"x":-15,"y":195},{"x":-111,"y":23},{"x":0,"y":-200},{"x":97,"y":-2},{"x":125,"y":-118}],"type":"coastline"},{"arc":[{"x":133500,"y":129791},{"x":156,"y":-418},{"x":-2,"y":-93}],"type":"area"},{"arc":[{"x":133654,"y":129280},{"x":32,"y":-1},{"x":0,"y":-145},{"x":104,"y":0},{"x":-12,"y":28},{"x":-63,"y":5},{"x":0,"y":65},{"x":38,"y":-28},{"x":83,"y":8},{"x":45,"y":107},{"x":-11,"y":18},{"x":2,"y":-17},{"x":-92,"y":15},{"x":1,"y":25},{"x":-19,"y":-17},{"x":-26,"y":36},{"x":149,"y":14}],"type":"coastline"},{"arc":[{"x":134115,"y":129066},{"x":-25,"y":76},{"x":17,"y":89},{"x":-35,"y":67},{"x":-163,"y":27},{"x":-82,"y":-204},{"x":50,"y":-17},{"x":1,"y":-104},{"x":45,"y":-31},{"x":68,"y":76},{"x":30,"y":-26},{"x":-108,"y":-164},{"x":34,"y":21},{"x":94,"y":-8},{"x":74,"y":198}],"type":"coastline"},{"arc":[{"x":134101,"y":130558},{"x":-34,"y":1},{"x":1,"y":41},{"x":-36,"y":2},{"x":1,"y":31},{"x":-48,"y":2},{"x":-5,"y":62},{"x":-23,"y":1}],"type":"admin"},{"arc":[{"x":133957,"y":130698},{"x":-71,"y":20},{"x":-105,"y":-15},{"x":58,"y":-134},{"x":-74,"y":-3},{"x":-41,"y":109},{"x":45,"y":11},{"x":-32,"y":34},{"x":-36,"y":-6},{"x":1,"y":64},{"x":-36,"y":46},{"x":-56,"y":4},{"x":-26,"y":-61},{"x":-109,"y":-15},{"x":-12,"y":-32}],"type":"admin"},{"arc":[{"x":133463,"y":130720},{"x":12,"y":-52},{"x":-90,"y":-8},{"x":1,"y":-17},{"x":107,"y":-23},{"x":-4,"y":-244},{"x":54,"y":-1}],"type":"admin"},{"arc":[{"x":134713,"y":130133},{"x":12,"y":-234}],"type":"area"},{"arc":[{"x":133560,"y":129124},{"x":22,"y":-18},{"x":20,"y":19},{"x":-18,"y":-17},{"x":-24,"y":16}],"type":"coastline"},{"arc":[{"x":133375,"y":129954},{"x":-192,"y":-77},{"x":-124,"y":66},{"x":-24,"y":-16},{"x":73,"y":-78},{"x":-98,"y":-42},{"x":-66,"y":-67}],"type":"area"},{"arc":[{"x":132944,"y":129740},{"x":53,"y":-5},{"x":0,"y":-46},{"x":-61,"y":-37},{"x":2,"y":-72},{"x":-44,"y":0},{"x":-6,"y":23},{"x":-25,"y":-53},{"x":87,"y":-14},{"x":24,"y":-25},{"x":75,"y":38},{"x":77,"y":-106}],"type":"area"},{"arc":[{"x":133126,"y":129443},{"x":20,"y":-40},{"x":88,"y":20},{"x":10,"y":43},{"x":-40,"y":12},{"x":39,"y":9},{"x":18,"y":-60},{"x":83,"y":-17},{"x":-29,"y":140},{"x":40,"y":28},{"x":6,"y":-26},{"x":-24,"y":4},{"x":49,"y":-155},{"x":37,"y":34},{"x":-32,"y":101},{"x":94,"y":-18},{"x":-61,"y":-16},{"x":24,"y":-75},{"x":-41,"y":-146},{"x":59,"y":-125},{"x":148,"y":-20},{"x":-87,"y":225},{"x":47,"y":12},{"x":36,"y":-99},{"x":44,"y":6}],"type":"coastline"},{"arc":[{"x":132470,"y":130263},{"x":-84,"y":17}],"type":"admin"},{"arc":[{"x":132386,"y":130280},{"x":-82,"y":12},{"x":-4,"y":-54},{"x":61,"y":-143},{"x":0,"y":-140},{"x":74,"y":-82},{"x":18,"y":-94}],"type":"area"},{"arc":[{"x":132453,"y":129779},{"x":120,"y":-152},{"x":132,"y":-33},{"x":-36,"y":146},{"x":52,"y":25},{"x":9,"y":-45},{"x":45,"y":1},{"x":45,"y":102}],"type":"area"},{"arc":[{"x":132820,"y":129823},{"x":43,"y":115},{"x":56,"y":48},{"x":-25,"y":24}],"type":"area"},{"arc":[{"x":132894,"y":130010},{"x":-101,"y":85},{"x":-323,"y":168}],"type":"area"},{"arc":[{"x":132894,"y":130010},{"x":27,"y":43},{"x":-39,"y":71},{"x":40,"y":2},{"x":35,"y":95},{"x":75,"y":-3},{"x":-4,"y":190}],"type":"area"},{"arc":[{"x":133028,"y":130408},{"x":-50,"y":1},{"x":12,"y":-59},{"x":-58,"y":10},{"x":-65,"y":-39},{"x":-6,"y":33},{"x":-189,"y":9},{"x":26,"y":86},{"x":-60,"y":46}],"type":"area"},{"arc":[{"x":132638,"y":130495},{"x":-95,"y":-19},{"x":-30,"y":18},{"x":0,"y":-89},{"x":-27,"y":-28},{"x":-74,"y":-8},{"x":58,"y":-106}],"type":"admin"},{"arc":[{"x":132835,"y":129018},{"x":47,"y":-72}],"type":"admin"},{"arc":[{"x":132882,"y":128946},{"x":99,"y":43},{"x":-64,"y":67},{"x":-82,"y":-38}],"type":"coastline"},{"arc":[{"x":132824,"y":129268},{"x":57,"y":-105}],"type":"admin"},{"arc":[{"x":132881,"y":129163},{"x":85,"y":46},{"x":-14,"y":44},{"x":33,"y":41},{"x":-14,"y":21},{"x":-70,"y":-2},{"x":-77,"y":-45}],"type":"coastline"},{"arc":[{"x":132944,"y":129740},{"x":-124,"y":83}],"type":"area"},{"arc":[{"x":132453,"y":129779},{"x":-36,"y":23},{"x":-3,"y":-25},{"x":-79,"y":-30},{"x":-22,"y":-97},{"x":18,"y":-28},{"x":-50,"y":-58}],"type":"area"},{"arc":[{"x":132281,"y":129564},{"x":58,"y":-4},{"x":-74,"y":-7},{"x":20,"y":-7},{"x":-41,"y":-24},{"x":124,"y":24},{"x":13,"y":-26},{"x":57,"y":-1},{"x":-15,"y":-25},{"x":49,"y":-9},{"x":4,"y":-28}],"type":"admin"},{"arc":[{"x":132476,"y":129457},{"x":42,"y":54},{"x":43,"y":-16},{"x":34,"y":-24},{"x":19,"y":-106},{"x":55,"y":57},{"x":7,"y":-51},{"x":38,"y":17},{"x":18,"y":-30},{"x":19,"y":10},{"x":53,"y":-87}],"type":"admin"},{"arc":[{"x":132804,"y":129281},{"x":205,"y":74},{"x":44,"y":-142},{"x":0,"y":-212},{"x":-37,"y":-14},{"x":39,"y":12},{"x":495,"y":-86},{"x":-79,"y":141},{"x":-304,"y":53},{"x":12,"y":89},{"x":240,"y":-33},{"x":-37,"y":78},{"x":-51,"y":6},{"x":3,"y":74},{"x":-201,"y":35},{"x":-28,"y":77},{"x":21,"y":10}],"type":"coastline"},{"arc":[{"x":133550,"y":128846},{"x":-56,"y":10},{"x":77,"y":-15},{"x":35,"y":-59},{"x":-34,"y":60},{"x":-22,"y":4}],"type":"coastline"},{"arc":[{"x":132386,"y":130280},{"x":-119,"y":60},{"x":-79,"y":-58},{"x":-59,"y":-9},{"x":-28,"y":25},{"x":-140,"y":4},{"x":-100,"y":59}],"type":"admin"},{"arc":[{"x":131861,"y":130361},{"x":-57,"y":33},{"x":-186,"y":-134},{"x":-91,"y":-106},{"x":-61,"y":-33},{"x":-52,"y":7}],"type":"admin"},{"arc":[{"x":131414,"y":130128},{"x":43,"y":-205},{"x":215,"y":-26},{"x":55,"y":-28},{"x":114,"y":-166},{"x":56,"y":-29},{"x":20,"y":26},{"x":68,"y":-65},{"x":59,"y":-1},{"x":29,"y":-19},{"x":-2,"y":-39},{"x":210,"y":-12}],"type":"admin"},{"arc":[{"x":133042,"y":130433},{"x":-14,"y":-25}],"type":"area"},{"arc":[{"x":133478,"y":130153},{"x":-223,"y":4},{"x":-1,"y":97},{"x":-29,"y":-6},{"x":-34,"y":45},{"x":-73,"y":14},{"x":1,"y":115},{"x":-77,"y":11}],"type":"admin"},{"arc":[{"x":133044,"y":130620},{"x":-35,"y":17},{"x":-108,"y":-14},{"x":-3,"y":53},{"x":-26,"y":-6},{"x":-12,"y":39},{"x":-29,"y":-11},{"x":-69,"y":76},{"x":-49,"y":-5},{"x":-26,"y":58}],"type":"admin"},{"arc":[{"x":132687,"y":130827},{"x":-67,"y":-30},{"x":-93,"y":12},{"x":-23,"y":-48},{"x":-86,"y":13},{"x":38,"y":-161}],"type":"admin"},{"arc":[{"x":132456,"y":130613},{"x":52,"y":-32},{"x":110,"y":-13},{"x":5,"y":-39},{"x":34,"y":2},{"x":-19,"y":-36}],"type":"admin"},{"arc":[{"x":133042,"y":130433},{"x":-31,"y":-9},{"x":-45,"y":92},{"x":7,"y":46},{"x":71,"y":-5},{"x":0,"y":63}],"type":"admin"},{"arc":[{"x":132718,"y":130730},{"x":8,"y":28},{"x":44,"y":-5},{"x":-52,"y":-23}],"type":"admin"},{"arc":[{"x":134200,"y":127653},{"x":-1,"y":-35},{"x":179,"y":-24},{"x":8,"y":62},{"x":-185,"y":24},{"x":-1,"y":-27}],"type":"coastline"},{"arc":[{"x":134425,"y":127384},{"x":36,"y":34},{"x":54,"y":396},{"x":-55,"y":-395},{"x":-35,"y":-35}],"type":"coastline"},{"arc":[{"x":134781,"y":127665},{"x":-8,"y":70},{"x":-73,"y":10},{"x":20,"y":-111},{"x":-35,"y":4},{"x":-21,"y":111},{"x":-80,"y":11},{"x":-50,"y":-373},{"x":197,"y":-23},{"x":56,"y":123},{"x":-25,"y":12},{"x":10,"y":73},{"x":28,"y":4},{"x":-19,"y":89}],"type":"coastline"},{"arc":[{"x":134942,"y":127899},{"x":-54,"y":1},{"x":-13,"y":-111},{"x":172,"y":4},{"x":-18,"y":99},{"x":-87,"y":7}],"type":"coastline"},{"arc":[{"x":135057,"y":127893},{"x":-2,"y":-107},{"x":22,"y":-13},{"x":-36,"y":14},{"x":-1,"y":-20},{"x":-37,"y":0},{"x":-30,"y":-98},{"x":-7,"y":52},{"x":-100,"y":12},{"x":-22,"y":-166},{"x":58,"y":-10},{"x":1,"y":-31},{"x":-64,"y":3},{"x":-19,"y":-144}],"type":"coastline"},{"arc":[{"x":134820,"y":127385},{"x":95,"y":-11},{"x":4,"y":-83},{"x":48,"y":-21},{"x":29,"y":67},{"x":124,"y":-67},{"x":96,"y":-6},{"x":8,"y":38},{"x":38,"y":19},{"x":40,"y":-31},{"x":43,"y":7},{"x":1,"y":59},{"x":118,"y":109},{"x":98,"y":-37},{"x":48,"y":-50},{"x":57,"y":63},{"x":52,"y":-30}],"type":"area"},{"arc":[{"x":135719,"y":127411},{"x":112,"y":104}],"type":"area"},{"arc":[{"x":135831,"y":127515},{"x":-260,"y":141},{"x":-104,"y":-3},{"x":-88,"y":94},{"x":-2,"y":-51},{"x":-45,"y":62},{"x":-94,"y":23},{"x":-27,"y":37},{"x":-51,"y":0},{"x":15,"y":35},{"x":-118,"y":40}],"type":"admin"},{"arc":[{"x":134618,"y":127116},{"x":-1,"y":-16},{"x":19,"y":143},{"x":-18,"y":-127}],"type":"coastline"},{"arc":[{"x":134820,"y":127385},{"x":-4,"y":-272},{"x":-19,"y":72},{"x":-67,"y":35},{"x":-20,"y":-148},{"x":48,"y":-53},{"x":-17,"y":-27}],"type":"coastline"},{"arc":[{"x":134741,"y":126992},{"x":15,"y":-15},{"x":30,"y":42},{"x":29,"y":-4},{"x":240,"y":-107},{"x":-18,"y":-55},{"x":47,"y":-16},{"x":34,"y":-49},{"x":71,"y":23},{"x":66,"y":-12}],"type":"area"},{"arc":[{"x":135255,"y":126799},{"x":123,"y":-19},{"x":30,"y":30},{"x":83,"y":-44},{"x":54,"y":218},{"x":144,"y":253},{"x":30,"y":174}],"type":"area"},{"arc":[{"x":134234,"y":126833},{"x":-13,"y":-110},{"x":17,"y":126},{"x":-4,"y":-16}],"type":"coastline"},{"arc":[{"x":134439,"y":126649},{"x":-15,"y":20},{"x":17,"y":-76},{"x":-33,"y":-6},{"x":-12,"y":106},{"x":-46,"y":-14},{"x":7,"y":-25},{"x":-27,"y":-9},{"x":17,"y":-55},{"x":-23,"y":33},{"x":-7,"y":-20},{"x":-66,"y":21},{"x":49,"y":37},{"x":-64,"y":1},{"x":-10,"y":18},{"x":35,"y":0},{"x":-44,"y":16},{"x":-41,"y":-45},{"x":-21,"y":-167}],"type":"coastline"},{"arc":[{"x":134155,"y":126484},{"x":51,"y":-6},{"x":-12,"y":-74},{"x":181,"y":2},{"x":33,"y":-24},{"x":51,"y":13},{"x":72,"y":-27},{"x":29,"y":-40},{"x":103,"y":-30},{"x":74,"y":-118}],"type":"area"},{"arc":[{"x":134737,"y":126180},{"x":165,"y":233},{"x":37,"y":7},{"x":-24,"y":11},{"x":40,"y":54},{"x":45,"y":28}],"type":"area"},{"arc":[{"x":135000,"y":126513},{"x":-130,"y":48},{"x":-127,"y":-17},{"x":-6,"y":41},{"x":-96,"y":-75},{"x":-129,"y":62},{"x":-49,"y":91},{"x":-24,"y":-14}],"type":"area"},{"arc":[{"x":134155,"y":126484},{"x":-22,"y":-164},{"x":38,"y":-20},{"x":-17,"y":-33},{"x":-26,"y":45},{"x":-40,"y":-112}],"type":"coastline"},{"arc":[{"x":134088,"y":126200},{"x":101,"y":-53},{"x":61,"y":74},{"x":116,"y":-97},{"x":105,"y":-12},{"x":3,"y":-23},{"x":47,"y":-9},{"x":28,"y":43},{"x":53,"y":-13},{"x":28,"y":-65},{"x":-39,"y":-1},{"x":44,"y":-5}],"type":"area"},{"arc":[{"x":134635,"y":126039},{"x":68,"y":36},{"x":39,"y":56},{"x":-5,"y":49}],"type":"area"},{"arc":[{"x":134088,"y":126200},{"x":-1,"y":-101},{"x":-37,"y":17},{"x":38,"y":-39},{"x":-18,"y":-181},{"x":-19,"y":6},{"x":11,"y":-4},{"x":-7,"y":-20},{"x":-11,"y":23},{"x":18,"y":-30},{"x":-29,"y":0},{"x":23,"y":-15},{"x":-67,"y":-137}],"type":"coastline"},{"arc":[{"x":133989,"y":125719},{"x":72,"y":-2},{"x":147,"y":88},{"x":0,"y":-61},{"x":68,"y":-67},{"x":120,"y":-45},{"x":-29,"y":-79},{"x":78,"y":5},{"x":-5,"y":54},{"x":50,"y":-19},{"x":24,"y":34},{"x":27,"y":-8},{"x":-45,"y":-72}],"type":"area"},{"arc":[{"x":134496,"y":125547},{"x":97,"y":-55},{"x":-4,"y":-36},{"x":74,"y":31},{"x":39,"y":-52},{"x":31,"y":47},{"x":-50,"y":108},{"x":30,"y":22},{"x":13,"y":104},{"x":76,"y":25},{"x":96,"y":-22}],"type":"area"},{"arc":[{"x":134898,"y":125719},{"x":-6,"y":29},{"x":38,"y":-5},{"x":-38,"y":12},{"x":10,"y":19},{"x":47,"y":-1},{"x":7,"y":-30},{"x":27,"y":30},{"x":-23,"y":22},{"x":-40,"y":-13},{"x":4,"y":24},{"x":59,"y":12},{"x":-49,"y":-7},{"x":19,"y":28},{"x":-18,"y":-19},{"x":-32,"y":45},{"x":93,"y":14},{"x":-41,"y":22},{"x":-92,"y":-33},{"x":-30,"y":51},{"x":-24,"y":-13},{"x":-43,"y":21},{"x":-14,"y":46},{"x":-88,"y":22},{"x":-29,"y":44}],"type":"area"},{"arc":[{"x":133852,"y":125277},{"x":-7,"y":57},{"x":10,"y":-107},{"x":-3,"y":50}],"type":"coastline"},{"arc":[{"x":133989,"y":125719},{"x":-12,"y":-81},{"x":-36,"y":-30},{"x":0,"y":-81},{"x":-33,"y":-1},{"x":-34,"y":-149},{"x":23,"y":-22},{"x":-38,"y":-2},{"x":8,"y":-44},{"x":28,"y":39},{"x":-6,"y":-55},{"x":-28,"y":7},{"x":28,"y":-8},{"x":-30,"y":-2},{"x":4,"y":-62},{"x":83,"y":-142},{"x":64,"y":-31},{"x":86,"y":-106}],"type":"coastline"},{"arc":[{"x":134096,"y":124949},{"x":54,"y":15},{"x":140,"y":128},{"x":14,"y":-16}],"type":"admin"},{"arc":[{"x":134304,"y":125076},{"x":133,"y":95},{"x":-19,"y":36},{"x":89,"y":69},{"x":-31,"y":87},{"x":47,"y":62},{"x":-55,"y":107},{"x":28,"y":15}],"type":"area"},{"arc":[{"x":137166,"y":127655},{"x":-85,"y":54},{"x":-105,"y":12},{"x":-119,"y":73}],"type":"admin"},{"arc":[{"x":136857,"y":127794},{"x":-77,"y":-45},{"x":3,"y":-39},{"x":-43,"y":-35},{"x":-44,"y":7},{"x":-23,"y":-106},{"x":19,"y":-78},{"x":-81,"y":-50},{"x":79,"y":-170},{"x":-37,"y":-112},{"x":-260,"y":-35},{"x":-151,"y":36},{"x":-58,"y":86},{"x":-69,"y":-8},{"x":16,"y":61},{"x":60,"y":22},{"x":-51,"y":45},{"x":11,"y":75},{"x":-44,"y":46},{"x":6,"y":58},{"x":-71,"y":-19},{"x":-64,"y":25},{"x":-18,"y":-22},{"x":-120,"y":-14}],"type":"admin"},{"arc":[{"x":135840,"y":127522},{"x":-9,"y":-7}],"type":"admin"},{"arc":[{"x":135255,"y":126799},{"x":-192,"y":-181},{"x":-22,"y":-109},{"x":-41,"y":4}],"type":"area"},{"arc":[{"x":134898,"y":125719},{"x":20,"y":-24},{"x":46,"y":36},{"x":72,"y":-9},{"x":113,"y":-96},{"x":66,"y":98},{"x":-43,"y":34},{"x":48,"y":13},{"x":25,"y":-14},{"x":52,"y":22},{"x":28,"y":-55},{"x":24,"y":21},{"x":154,"y":-53},{"x":64,"y":-47},{"x":-14,"y":-58},{"x":83,"y":-32},{"x":-29,"y":-102},{"x":19,"y":-56}],"type":"area"},{"arc":[{"x":135626,"y":125397},{"x":46,"y":45},{"x":44,"y":122},{"x":36,"y":-4},{"x":58,"y":55},{"x":1,"y":120},{"x":87,"y":-22},{"x":32,"y":31},{"x":58,"y":-92},{"x":112,"y":-49},{"x":53,"y":-72},{"x":77,"y":24},{"x":54,"y":-13},{"x":12,"y":53},{"x":115,"y":57},{"x":25,"y":58},{"x":54,"y":1},{"x":28,"y":89},{"x":115,"y":53},{"x":35,"y":55},{"x":-10,"y":41},{"x":-102,"y":75},{"x":-39,"y":181},{"x":93,"y":110},{"x":-27,"y":23},{"x":18,"y":24},{"x":128,"y":31},{"x":186,"y":-25},{"x":130,"y":27},{"x":82,"y":-42},{"x":82,"y":135}],"type":"admin"},{"arc":[{"x":137209,"y":126488},{"x":18,"y":28},{"x":-31,"y":25},{"x":4,"y":106},{"x":-153,"y":173},{"x":24,"y":129},{"x":-41,"y":32},{"x":-32,"y":136},{"x":59,"y":90},{"x":23,"y":148},{"x":78,"y":103},{"x":8,"y":197}],"type":"admin"},{"arc":[{"x":134067,"y":127202},{"x":-98,"y":40},{"x":-38,"y":-322},{"x":47,"y":-4},{"x":77,"y":44},{"x":12,"y":242}],"type":"coastline"},{"arc":[{"x":134402,"y":127312},{"x":-46,"y":33},{"x":77,"y":-57},{"x":-31,"y":24}],"type":"coastline"},{"arc":[{"x":134598,"y":127030},{"x":-62,"y":58},{"x":-36,"y":-96},{"x":-30,"y":15},{"x":40,"y":106},{"x":-31,"y":40},{"x":-47,"y":-127},{"x":-31,"y":15},{"x":48,"y":128},{"x":-20,"y":8},{"x":15,"y":116},{"x":-17,"y":-118},{"x":-51,"y":26},{"x":-41,"y":-111},{"x":-51,"y":25},{"x":41,"y":111},{"x":-132,"y":64},{"x":0,"y":45},{"x":-9,"y":-334},{"x":93,"y":-114},{"x":-16,"y":-19},{"x":221,"y":-29},{"x":29,"y":29},{"x":-22,"y":-28},{"x":18,"y":0},{"x":42,"y":94},{"x":30,"y":-4},{"x":19,"y":100}],"type":"coastline"},{"arc":[{"x":134741,"y":126992},{"x":-17,"y":-18},{"x":-35,"y":38},{"x":-72,"y":-111},{"x":33,"y":-37},{"x":-27,"y":3},{"x":3,"y":-24},{"x":-81,"y":6},{"x":65,"y":-17},{"x":-4,"y":-18},{"x":-42,"y":5},{"x":38,"y":-19},{"x":-43,"y":-20},{"x":38,"y":-21},{"x":-42,"y":-6},{"x":65,"y":-22},{"x":13,"y":22},{"x":-1,"y":-31},{"x":-83,"y":-14},{"x":46,"y":-26},{"x":-7,"y":-20},{"x":-51,"y":17},{"x":-15,"y":-41},{"x":1,"y":51},{"x":-20,"y":-11},{"x":-38,"y":36},{"x":-27,"y":-18},{"x":1,"y":-47}],"type":"coastline"},{"arc":[{"x":134304,"y":125076},{"x":29,"y":-42},{"x":-57,"y":-48},{"x":20,"y":-44},{"x":-26,"y":-34},{"x":32,"y":0},{"x":4,"y":30},{"x":22,"y":-72},{"x":-52,"y":-59},{"x":22,"y":-25},{"x":-28,"y":-29},{"x":27,"y":-33},{"x":-21,"y":-104},{"x":49,"y":-61},{"x":-45,"y":-6},{"x":12,"y":-34},{"x":163,"y":-69},{"x":72,"y":17},{"x":102,"y":-75},{"x":55,"y":24},{"x":88,"y":-26},{"x":24,"y":18},{"x":57,"y":-29},{"x":28,"y":27},{"x":85,"y":-11},{"x":31,"y":-29},{"x":-24,"y":-44},{"x":13,"y":-52},{"x":-24,"y":-10},{"x":13,"y":-91},{"x":-182,"y":-136},{"x":34,"y":3},{"x":-13,"y":-21},{"x":29,"y":2},{"x":5,"y":-35},{"x":44,"y":1},{"x":36,"y":-35},{"x":-21,"y":-47},{"x":45,"y":-21},{"x":-13,"y":-19},{"x":60,"y":3},{"x":73,"y":-34},{"x":13,"y":25}],"type":"admin"},{"arc":[{"x":135085,"y":123851},{"x":67,"y":73},{"x":100,"y":328},{"x":213,"y":158},{"x":148,"y":-53}],"type":"admin"},{"arc":[{"x":135613,"y":124357},{"x":-9,"y":110},{"x":125,"y":110},{"x":44,"y":194},{"x":-68,"y":-9},{"x":-99,"y":251},{"x":41,"y":71},{"x":-13,"y":72},{"x":65,"y":19},{"x":24,"y":67},{"x":-89,"y":76},{"x":-8,"y":79}],"type":"admin"},{"arc":[{"x":130884,"y":132436},{"x":-39,"y":143},{"x":-52,"y":-10},{"x":-64,"y":38},{"x":36,"y":129}],"type":"admin"},{"arc":[{"x":130765,"y":132736},{"x":-69,"y":21},{"x":-26,"y":-33},{"x":-68,"y":25},{"x":-81,"y":-54},{"x":-95,"y":43},{"x":-98,"y":0},{"x":-22,"y":-23},{"x":-50,"y":18},{"x":-82,"y":-39},{"x":-85,"y":24},{"x":-32,"y":102},{"x":-104,"y":0},{"x":-24,"y":-66},{"x":-78,"y":64},{"x":-68,"y":-40},{"x":-155,"y":-20},{"x":-67,"y":121},{"x":-21,"y":156},{"x":28,"y":58},{"x":-38,"y":42},{"x":-32,"y":122}],"type":"admin"},{"arc":[{"x":129498,"y":133257},{"x":-35,"y":-7},{"x":-35,"y":50},{"x":3,"y":102},{"x":-58,"y":72}],"type":"admin"},{"arc":[{"x":129373,"y":133474},{"x":-68,"y":14},{"x":-78,"y":-132},{"x":-58,"y":-42},{"x":-19,"y":-71},{"x":-58,"y":-26},{"x":-55,"y":12},{"x":-37,"y":-31},{"x":-3,"y":-76},{"x":-69,"y":-41},{"x":-41,"y":-154},{"x":92,"y":-43},{"x":32,"y":-132},{"x":-109,"y":-253},{"x":-165,"y":29},{"x":-84,"y":-46},{"x":-29,"y":-46},{"x":-1,"y":31},{"x":-65,"y":-18},{"x":-70,"y":30},{"x":-57,"y":-9},{"x":-53,"y":74},{"x":9,"y":62},{"x":-52,"y":17},{"x":-44,"y":69},{"x":-12,"y":186},{"x":-98,"y":105},{"x":100,"y":148},{"x":16,"y":47},{"x":-44,"y":116},{"x":45,"y":19},{"x":18,"y":102},{"x":55,"y":64},{"x":-13,"y":79},{"x":54,"y":45},{"x":-44,"y":58},{"x":-90,"y":-50},{"x":-88,"y":20},{"x":30,"y":161},{"x":83,"y":129},{"x":-25,"y":55},{"x":-110,"y":46},{"x":-58,"y":75}],"type":"admin"},{"arc":[{"x":128110,"y":134097},{"x":-183,"y":76},{"x":-144,"y":-59}],"type":"admin"},{"arc":[{"x":127783,"y":134114},{"x":22,"y":-51},{"x":-37,"y":-69},{"x":73,"y":-64},{"x":30,"y":-113},{"x":-25,"y":-132},{"x":-130,"y":-165},{"x":34,"y":-54},{"x":-21,"y":-41},{"x":35,"y":-95},{"x":-115,"y":-394},{"x":8,"y":-27},{"x":90,"y":-39},{"x":-36,"y":-29},{"x":98,"y":-43},{"x":21,"y":-83},{"x":32,"y":14},{"x":24,"y":-206},{"x":-74,"y":7},{"x":-46,"y":-86},{"x":-94,"y":10},{"x":-252,"y":-217},{"x":-65,"y":10},{"x":-145,"y":-114},{"x":-121,"y":-22},{"x":-43,"y":-92},{"x":18,"y":-51},{"x":-52,"y":-89},{"x":13,"y":-247}],"type":"admin"},{"arc":[{"x":127025,"y":131632},{"x":95,"y":47},{"x":39,"y":140},{"x":114,"y":129},{"x":66,"y":-7},{"x":41,"y":53},{"x":96,"y":0},{"x":123,"y":80},{"x":124,"y":228},{"x":112,"y":-39},{"x":94,"y":43},{"x":63,"y":-24},{"x":67,"y":-181},{"x":103,"y":-32},{"x":7,"y":-89},{"x":71,"y":-1},{"x":56,"y":-88},{"x":76,"y":82},{"x":66,"y":-1},{"x":17,"y":45},{"x":58,"y":24},{"x":-42,"y":23},{"x":101,"y":81},{"x":28,"y":-52}],"type":"admin"},{"arc":[{"x":128600,"y":132093},{"x":69,"y":38},{"x":82,"y":147},{"x":97,"y":28},{"x":84,"y":-15},{"x":60,"y":-54},{"x":298,"y":-53},{"x":66,"y":-105},{"x":42,"y":3},{"x":-4,"y":-49},{"x":49,"y":-31},{"x":36,"y":-86},{"x":-85,"y":-34},{"x":2,"y":-83}],"type":"admin"},{"arc":[{"x":129396,"y":131799},{"x":125,"y":-88},{"x":108,"y":29},{"x":133,"y":-85},{"x":77,"y":18},{"x":70,"y":-34},{"x":37,"y":35},{"x":134,"y":-10},{"x":15,"y":-83},{"x":89,"y":-11},{"x":52,"y":26},{"x":220,"y":20},{"x":136,"y":-79},{"x":215,"y":-49}],"type":"admin"},{"arc":[{"x":130807,"y":131488},{"x":8,"y":37},{"x":161,"y":90}],"type":"admin"},{"arc":[{"x":130976,"y":131615},{"x":36,"y":126},{"x":78,"y":5},{"x":35,"y":41}],"type":"admin"},{"arc":[{"x":131125,"y":131787},{"x":-69,"y":64},{"x":-57,"y":109},{"x":-17,"y":50},{"x":34,"y":19},{"x":-7,"y":66},{"x":-47,"y":48},{"x":14,"y":19},{"x":-82,"y":-8},{"x":-19,"y":26},{"x":20,"y":40},{"x":-43,"y":20},{"x":2,"y":173},{"x":30,"y":23}],"type":"area"},{"arc":[{"x":122219,"y":128629},{"x":-27,"y":28},{"x":7,"y":-36},{"x":20,"y":8}],"type":"coastline"},{"arc":[{"x":124640,"y":133046},{"x":-53,"y":-6},{"x":-102,"y":61},{"x":-70,"y":-11},{"x":-6,"y":-30},{"x":-162,"y":25},{"x":-8,"y":-28},{"x":82,"y":-22},{"x":23,"y":-53},{"x":-331,"y":-43},{"x":-156,"y":121},{"x":-35,"y":64},{"x":15,"y":27},{"x":-102,"y":15},{"x":-161,"y":174},{"x":-101,"y":-9},{"x":-38,"y":-60},{"x":-197,"y":-56},{"x":3,"y":-51},{"x":-68,"y":-41},{"x":-6,"y":-75},{"x":-35,"y":-32},{"x":-88,"y":-5},{"x":-6,"y":-49},{"x":-38,"y":-22},{"x":23,"y":-44},{"x":-12,"y":-56},{"x":52,"y":-35},{"x":9,"y":-68},{"x":-88,"y":-40},{"x":-36,"y":-107},{"x":-31,"y":-23},{"x":-46,"y":-19},{"x":-80,"y":18},{"x":-46,"y":-20},{"x":-15,"y":-73},{"x":-104,"y":0},{"x":-18,"y":-51},{"x":27,"y":-95},{"x":-122,"y":-102}],"type":"area"},{"arc":[{"x":122513,"y":132225},{"x":-11,"y":-88},{"x":-90,"y":30},{"x":-105,"y":-62},{"x":56,"y":-73},{"x":-52,"y":-123},{"x":-104,"y":-27},{"x":-145,"y":-120},{"x":-26,"y":-40},{"x":-14,"y":-193},{"x":-149,"y":-38},{"x":-42,"y":36},{"x":-44,"y":-35},{"x":-85,"y":-16},{"x":-50,"y":79},{"x":-39,"y":1}],"type":"admin"},{"arc":[{"x":121613,"y":131556},{"x":-18,"y":-41},{"x":-81,"y":-31},{"x":6,"y":-74},{"x":-53,"y":-67},{"x":-3,"y":-62},{"x":96,"y":-42},{"x":-42,"y":-85},{"x":9,"y":-62},{"x":-70,"y":-89},{"x":85,"y":-161},{"x":82,"y":-32},{"x":40,"y":-68},{"x":-55,"y":-156},{"x":7,"y":-114},{"x":35,"y":-27},{"x":37,"y":58},{"x":199,"y":5},{"x":162,"y":-105},{"x":-6,"y":-226},{"x":87,"y":0},{"x":92,"y":-34},{"x":-50,"y":-94}],"type":"admin"},{"arc":[{"x":122172,"y":130049},{"x":56,"y":-69},{"x":-45,"y":-126},{"x":178,"y":-150},{"x":30,"y":37},{"x":77,"y":4},{"x":14,"y":-40},{"x":47,"y":-18},{"x":207,"y":105},{"x":73,"y":2},{"x":190,"y":-128},{"x":30,"y":-49},{"x":-158,"y":-57},{"x":-101,"y":7},{"x":21,"y":-37},{"x":-36,"y":-21},{"x":-34,"y":-159},{"x":-40,"y":-40},{"x":-72,"y":-1},{"x":-16,"y":-37},{"x":-57,"y":-10},{"x":-14,"y":-46},{"x":-54,"y":28},{"x":-49,"y":-88},{"x":-87,"y":-44},{"x":10,"y":-62},{"x":-35,"y":-49},{"x":-54,"y":-10},{"x":-64,"y":-74},{"x":-96,"y":9},{"x":-16,"y":-35},{"x":-79,"y":-32}],"type":"admin"},{"arc":[{"x":121998,"y":128859},{"x":-18,"y":-93},{"x":69,"y":-55}],"type":"admin"},{"arc":[{"x":122049,"y":128711},{"x":48,"y":-57},{"x":6,"y":32},{"x":27,"y":-12},{"x":54,"y":22},{"x":14,"y":36},{"x":-18,"y":13},{"x":-14,"y":-33},{"x":-47,"y":-1},{"x":4,"y":35},{"x":-43,"y":1},{"x":13,"y":22},{"x":49,"y":-24},{"x":48,"y":36},{"x":16,"y":69},{"x":26,"y":-31},{"x":53,"y":-4},{"x":21,"y":47},{"x":47,"y":-30},{"x":72,"y":61},{"x":32,"y":-43},{"x":-40,"y":-36},{"x":-64,"y":12},{"x":-6,"y":-69},{"x":11,"y":-26},{"x":20,"y":24},{"x":17,"y":-29},{"x":-36,"y":-11},{"x":34,"y":-19},{"x":13,"y":21},{"x":16,"y":-27},{"x":-33,"y":-1},{"x":26,"y":-22},{"x":31,"y":8},{"x":27,"y":-33},{"x":11,"y":18},{"x":52,"y":-47},{"x":-19,"y":-100},{"x":23,"y":62},{"x":20,"y":-11},{"x":0,"y":-40},{"x":-24,"y":-2},{"x":40,"y":-11},{"x":-37,"y":-13},{"x":-19,"y":-47},{"x":-25,"y":53},{"x":3,"y":-95},{"x":69,"y":-56},{"x":29,"y":1},{"x":-1,"y":17},{"x":-28,"y":-14},{"x":-34,"y":33},{"x":16,"y":-11},{"x":15,"y":35},{"x":36,"y":-23},{"x":36,"y":61},{"x":45,"y":-8},{"x":48,"y":-40},{"x":-29,"y":-5},{"x":60,"y":-35},{"x":-36,"y":-30},{"x":14,"y":-101}],"type":"coastline"},{"arc":[{"x":122738,"y":128233},{"x":48,"y":16},{"x":47,"y":-15},{"x":9,"y":37},{"x":159,"y":67},{"x":15,"y":-18},{"x":92,"y":5},{"x":33,"y":41},{"x":320,"y":6},{"x":56,"y":-43},{"x":36,"y":23},{"x":-12,"y":85},{"x":68,"y":91},{"x":187,"y":103},{"x":108,"y":167},{"x":-17,"y":48},{"x":20,"y":69},{"x":-54,"y":55},{"x":27,"y":52},{"x":-28,"y":27},{"x":19,"y":68},{"x":44,"y":30},{"x":-11,"y":65},{"x":31,"y":25},{"x":-19,"y":34},{"x":37,"y":85},{"x":-40,"y":164},{"x":75,"y":0},{"x":112,"y":44},{"x":14,"y":-136},{"x":42,"y":-80},{"x":64,"y":4},{"x":37,"y":-42},{"x":13,"y":-55},{"x":-30,"y":-68},{"x":81,"y":-16},{"x":79,"y":42},{"x":39,"y":-22},{"x":18,"y":-227},{"x":82,"y":-63}],"type":"admin"},{"arc":[{"x":124539,"y":128901},{"x":38,"y":22},{"x":45,"y":-14},{"x":14,"y":-88},{"x":83,"y":-12},{"x":56,"y":63},{"x":21,"y":-34},{"x":86,"y":13},{"x":24,"y":-29}],"type":"admin"},{"arc":[{"x":124906,"y":128822},{"x":54,"y":1},{"x":53,"y":52},{"x":55,"y":-6},{"x":19,"y":183},{"x":32,"y":28},{"x":98,"y":18},{"x":59,"y":49},{"x":-24,"y":49},{"x":17,"y":44},{"x":-55,"y":-31},{"x":-16,"y":17},{"x":93,"y":85},{"x":-13,"y":158},{"x":-109,"y":70},{"x":-20,"y":58},{"x":78,"y":83},{"x":-24,"y":101},{"x":159,"y":311},{"x":-10,"y":75},{"x":125,"y":192},{"x":140,"y":60},{"x":41,"y":-52},{"x":47,"y":9},{"x":178,"y":-68},{"x":62,"y":-76},{"x":69,"y":61},{"x":93,"y":27},{"x":134,"y":-100},{"x":21,"y":-208},{"x":156,"y":-1},{"x":20,"y":-35},{"x":52,"y":2}],"type":"admin"},{"arc":[{"x":126490,"y":129978},{"x":58,"y":42},{"x":26,"y":241},{"x":41,"y":37},{"x":97,"y":19},{"x":108,"y":107}],"type":"admin"},{"arc":[{"x":126820,"y":130424},{"x":4,"y":32}],"type":"admin"},{"arc":[{"x":126824,"y":130456},{"x":-44,"y":22},{"x":-20,"y":103},{"x":-76,"y":38},{"x":7,"y":139},{"x":-140,"y":74},{"x":-33,"y":70},{"x":-94,"y":15},{"x":-61,"y":39},{"x":-53,"y":-50},{"x":-50,"y":7},{"x":-54,"y":-41},{"x":-84,"y":24},{"x":-17,"y":20},{"x":25,"y":131},{"x":-44,"y":37},{"x":-6,"y":105},{"x":-33,"y":33},{"x":-86,"y":-12},{"x":-31,"y":50},{"x":-84,"y":14},{"x":-3,"y":59},{"x":-73,"y":26},{"x":-109,"y":-11},{"x":-115,"y":28},{"x":-72,"y":-14},{"x":-36,"y":-34},{"x":-105,"y":17},{"x":-14,"y":-92},{"x":55,"y":-118},{"x":-67,"y":-17},{"x":-55,"y":34},{"x":-87,"y":-15},{"x":-6,"y":-61},{"x":-60,"y":-19},{"x":-85,"y":49},{"x":-153,"y":-38},{"x":-63,"y":-109},{"x":-73,"y":12},{"x":-44,"y":53},{"x":-14,"y":172},{"x":-185,"y":38},{"x":-16,"y":-32},{"x":-126,"y":-58},{"x":12,"y":116},{"x":59,"y":93},{"x":-11,"y":103},{"x":48,"y":35},{"x":11,"y":46},{"x":52,"y":14},{"x":43,"y":52},{"x":108,"y":-17},{"x":36,"y":107},{"x":-28,"y":80},{"x":73,"y":75},{"x":-9,"y":395},{"x":-42,"y":66},{"x":-47,"y":21},{"x":-17,"y":65},{"x":-61,"y":35},{"x":8,"y":27},{"x":-37,"y":37},{"x":22,"y":35},{"x":-55,"y":45},{"x":29,"y":82},{"x":42,"y":20},{"x":-33,"y":120},{"x":82,"y":155},{"x":15,"y":95}],"type":"admin"},{"arc":[{"x":145561,"y":116379},{"x":-28,"y":-68},{"x":38,"y":86},{"x":-10,"y":-18}],"type":"coastline"},{"arc":[{"x":145858,"y":117289},{"x":-67,"y":44},{"x":6,"y":47},{"x":-72,"y":51},{"x":-7,"y":38},{"x":-134,"y":23},{"x":-49,"y":89},{"x":-104,"y":20},{"x":-7,"y":92},{"x":-35,"y":7},{"x":-27,"y":103},{"x":-72,"y":13},{"x":-187,"y":-59},{"x":-39,"y":37},{"x":-95,"y":-33},{"x":-60,"y":9},{"x":-82,"y":-58},{"x":-62,"y":12},{"x":-14,"y":86},{"x":-89,"y":80},{"x":-3,"y":150},{"x":52,"y":23},{"x":16,"y":78},{"x":81,"y":53},{"x":35,"y":69},{"x":100,"y":46},{"x":-2,"y":91},{"x":-27,"y":21},{"x":32,"y":62},{"x":-160,"y":105},{"x":-14,"y":53},{"x":37,"y":52},{"x":-32,"y":128},{"x":-92,"y":21},{"x":-20,"y":29},{"x":-35,"y":-6},{"x":-61,"y":44}],"type":"admin"},{"arc":[{"x":144569,"y":118909},{"x":-83,"y":-2},{"x":-38,"y":40},{"x":-234,"y":20}],"type":"admin"},{"arc":[{"x":144214,"y":118967},{"x":-37,"y":7}],"type":"admin"},{"arc":[{"x":144177,"y":118974},{"x":-62,"y":-132},{"x":15,"y":-57},{"x":-28,"y":-74},{"x":84,"y":-161},{"x":-61,"y":-157},{"x":55,"y":-47},{"x":-107,"y":-28},{"x":-71,"y":-148},{"x":-20,"y":-145},{"x":75,"y":-83},{"x":-27,"y":-82},{"x":18,"y":-76},{"x":75,"y":-114},{"x":46,"y":-25},{"x":13,"y":-90},{"x":61,"y":-69},{"x":-40,"y":-83},{"x":7,"y":-67},{"x":100,"y":-59},{"x":-17,"y":-26},{"x":-71,"y":-13},{"x":-42,"y":-81},{"x":-110,"y":-30},{"x":-21,"y":-178},{"x":-36,"y":-64},{"x":-72,"y":-5},{"x":-42,"y":-79},{"x":-30,"y":-8},{"x":-39,"y":-159},{"x":-187,"y":47},{"x":-82,"y":136},{"x":-55,"y":38},{"x":-66,"y":-36},{"x":-34,"y":15},{"x":-124,"y":-28},{"x":-104,"y":33},{"x":-86,"y":81},{"x":-120,"y":-40},{"x":-209,"y":70},{"x":-9,"y":94},{"x":-152,"y":34},{"x":-37,"y":120},{"x":-43,"y":16}],"type":"admin"},{"arc":[{"x":142522,"y":117214},{"x":-45,"y":-38},{"x":-39,"y":-110},{"x":-66,"y":-28},{"x":-20,"y":-40},{"x":34,"y":-51},{"x":-20,"y":-57},{"x":20,"y":-15},{"x":-26,"y":-21},{"x":14,"y":-126},{"x":52,"y":-39},{"x":-153,"y":-126},{"x":-26,"y":-86},{"x":-84,"y":-15},{"x":-23,"y":-32},{"x":7,"y":-57},{"x":-98,"y":-329},{"x":79,"y":-97},{"x":47,"y":3},{"x":-1,"y":-87},{"x":-32,"y":-7}],"type":"admin"},{"arc":[{"x":142142,"y":115856},{"x":53,"y":-51},{"x":-38,"y":-31},{"x":-1,"y":-43},{"x":43,"y":-118},{"x":62,"y":-17},{"x":97,"y":-114},{"x":122,"y":-54},{"x":22,"y":-118},{"x":-59,"y":-25},{"x":-2,"y":-91},{"x":-68,"y":-51},{"x":73,"y":-83},{"x":-63,"y":-105},{"x":5,"y":-41},{"x":66,"y":-60},{"x":22,"y":-126}],"type":"admin"},{"arc":[{"x":142476,"y":114728},{"x":30,"y":-19},{"x":-28,"y":-68},{"x":15,"y":-98},{"x":101,"y":-132},{"x":134,"y":49},{"x":111,"y":117},{"x":80,"y":-48},{"x":72,"y":52},{"x":54,"y":-11}],"type":"admin"},{"arc":[{"x":143045,"y":114570},{"x":71,"y":52},{"x":65,"y":-22},{"x":32,"y":13},{"x":7,"y":52},{"x":53,"y":3},{"x":8,"y":31},{"x":-35,"y":62},{"x":77,"y":47},{"x":17,"y":39},{"x":49,"y":7},{"x":21,"y":-110},{"x":97,"y":-153},{"x":49,"y":-135},{"x":-20,"y":-45},{"x":49,"y":-78},{"x":42,"y":-9},{"x":86,"y":42},{"x":43,"y":60},{"x":109,"y":-69},{"x":99,"y":16},{"x":-33,"y":-70},{"x":60,"y":-61},{"x":0,"y":-52},{"x":-39,"y":-74},{"x":63,"y":-76},{"x":14,"y":-126}],"type":"admin"},{"arc":[{"x":144029,"y":113914},{"x":35,"y":-15},{"x":64,"y":18},{"x":13,"y":-36},{"x":54,"y":-8},{"x":118,"y":44},{"x":3,"y":21},{"x":42,"y":-15},{"x":14,"y":-44},{"x":83,"y":-20},{"x":307,"y":102},{"x":31,"y":-17},{"x":113,"y":20},{"x":106,"y":114},{"x":84,"y":40},{"x":73,"y":-5},{"x":58,"y":-56}],"type":"admin"},{"arc":[{"x":145227,"y":114057},{"x":-9,"y":151},{"x":42,"y":28},{"x":-38,"y":15},{"x":6,"y":56},{"x":32,"y":22},{"x":-28,"y":37},{"x":44,"y":64},{"x":33,"y":-8},{"x":18,"y":22},{"x":-8,"y":-34},{"x":99,"y":87},{"x":-177,"y":124},{"x":-19,"y":-26},{"x":-10,"y":6},{"x":21,"y":11},{"x":-29,"y":12},{"x":33,"y":6},{"x":-49,"y":12},{"x":-16,"y":124},{"x":24,"y":398},{"x":21,"y":81},{"x":43,"y":24},{"x":-18,"y":138},{"x":38,"y":48},{"x":-23,"y":90},{"x":25,"y":10},{"x":-10,"y":91},{"x":74,"y":441},{"x":47,"y":168},{"x":53,"y":2},{"x":19,"y":60},{"x":-18,"y":-47},{"x":-26,"y":0},{"x":10,"y":77},{"x":-79,"y":97},{"x":57,"y":-17},{"x":33,"y":-74},{"x":45,"y":0},{"x":-30,"y":45},{"x":77,"y":0},{"x":-90,"y":31},{"x":11,"y":25},{"x":26,"y":-12},{"x":-27,"y":16},{"x":7,"y":79},{"x":64,"y":268},{"x":171,"y":417},{"x":162,"y":67}],"type":"coastline"},{"arc":[{"x":143645,"y":108685},{"x":-18,"y":42},{"x":34,"y":216},{"x":-21,"y":67},{"x":35,"y":145},{"x":-50,"y":261},{"x":-38,"y":-7},{"x":-78,"y":83},{"x":-28,"y":-30},{"x":-25,"y":42},{"x":-163,"y":-39},{"x":-131,"y":66}],"type":"area"},{"arc":[{"x":143162,"y":109531},{"x":-96,"y":-83},{"x":-63,"y":-4},{"x":-29,"y":-54},{"x":-23,"y":9},{"x":-107,"y":-64},{"x":0,"y":57},{"x":-31,"y":-72},{"x":-41,"y":-10},{"x":-21,"y":21},{"x":-58,"y":-242},{"x":-32,"y":-52},{"x":-79,"y":-39},{"x":-56,"y":-126},{"x":-85,"y":-48},{"x":-21,"y":-90},{"x":-58,"y":-54},{"x":-67,"y":-14},{"x":-26,"y":35},{"x":-119,"y":23},{"x":-114,"y":-50}],"type":"admin"},{"arc":[{"x":142036,"y":108674},{"x":-67,"y":-150},{"x":-95,"y":-63},{"x":-39,"y":-120},{"x":-42,"y":-16},{"x":-94,"y":-114},{"x":-74,"y":-25},{"x":-41,"y":-175},{"x":65,"y":-50},{"x":69,"y":-8},{"x":35,"y":-57},{"x":54,"y":7},{"x":22,"y":-82},{"x":86,"y":-41}],"type":"admin"},{"arc":[{"x":141915,"y":107780},{"x":64,"y":81},{"x":67,"y":188},{"x":44,"y":23},{"x":201,"y":-49},{"x":52,"y":35},{"x":145,"y":-57},{"x":104,"y":47},{"x":101,"y":-4},{"x":-11,"y":88},{"x":39,"y":51},{"x":-36,"y":17},{"x":-22,"y":99},{"x":51,"y":39},{"x":99,"y":-40},{"x":23,"y":75},{"x":69,"y":32},{"x":78,"y":96},{"x":50,"y":-4},{"x":55,"y":-55},{"x":-24,"y":-76},{"x":56,"y":-45},{"x":-23,"y":-38},{"x":33,"y":-27},{"x":69,"y":-4},{"x":7,"y":-29},{"x":41,"y":7},{"x":28,"y":-72},{"x":71,"y":-28},{"x":-24,"y":-102},{"x":27,"y":-78},{"x":55,"y":-16}],"type":"area"},{"arc":[{"x":143404,"y":107934},{"x":31,"y":78},{"x":91,"y":19},{"x":-62,"y":66},{"x":21,"y":7},{"x":16,"y":-33},{"x":74,"y":13},{"x":11,"y":30},{"x":47,"y":-11},{"x":-27,"y":88},{"x":55,"y":-18},{"x":73,"y":43},{"x":-131,"y":65},{"x":-75,"y":132},{"x":40,"y":110},{"x":-17,"y":108},{"x":32,"y":57},{"x":62,"y":-3}],"type":"admin"},{"arc":[{"x":137901,"y":113488},{"x":-72,"y":-40},{"x":-72,"y":35},{"x":-72,"y":-10},{"x":-55,"y":-85},{"x":-53,"y":60},{"x":-62,"y":-80},{"x":3,"y":-43},{"x":-49,"y":-3},{"x":-103,"y":82},{"x":68,"y":72},{"x":-47,"y":41},{"x":-24,"y":105},{"x":-83,"y":-25},{"x":-20,"y":63},{"x":-111,"y":87},{"x":1,"y":35},{"x":-119,"y":-109},{"x":-33,"y":0},{"x":20,"y":44},{"x":-56,"y":133},{"x":39,"y":105}],"type":"admin"},{"arc":[{"x":137001,"y":113955},{"x":-13,"y":32},{"x":-101,"y":31},{"x":-114,"y":77},{"x":-62,"y":-76},{"x":-23,"y":104},{"x":-62,"y":68},{"x":53,"y":-6},{"x":98,"y":45},{"x":-63,"y":125},{"x":-111,"y":-13},{"x":-72,"y":-53},{"x":-41,"y":35},{"x":-24,"y":-28},{"x":-41,"y":30},{"x":-82,"y":-64},{"x":-33,"y":22},{"x":-127,"y":-9},{"x":-53,"y":-120},{"x":-152,"y":-80},{"x":-50,"y":-54},{"x":-29,"y":3},{"x":-11,"y":78},{"x":-59,"y":67},{"x":8,"y":40},{"x":-67,"y":6},{"x":-15,"y":-27},{"x":-65,"y":-13},{"x":-38,"y":50},{"x":16,"y":53},{"x":-119,"y":-31},{"x":-38,"y":-28},{"x":-14,"y":-86},{"x":-54,"y":-12},{"x":-61,"y":14},{"x":-7,"y":110},{"x":-30,"y":-41},{"x":-30,"y":49},{"x":-23,"y":-19},{"x":-18,"y":43},{"x":-40,"y":1},{"x":-81,"y":76},{"x":-89,"y":-4}],"type":"admin"},{"arc":[{"x":135064,"y":114350},{"x":-39,"y":0},{"x":-44,"y":-79}],"type":"area"},{"arc":[{"x":134981,"y":114271},{"x":1,"y":-286},{"x":-23,"y":65},{"x":-14,"y":-49},{"x":-81,"y":-76},{"x":-100,"y":-41},{"x":-60,"y":-84},{"x":-119,"y":-65},{"x":-143,"y":-15},{"x":-26,"y":51},{"x":-61,"y":15},{"x":-65,"y":-60},{"x":-136,"y":-28},{"x":-149,"y":84}],"type":"area"},{"arc":[{"x":134005,"y":113782},{"x":14,"y":-58},{"x":-33,"y":-3},{"x":7,"y":-60},{"x":-85,"y":-25},{"x":22,"y":-91},{"x":98,"y":21},{"x":4,"y":-48},{"x":73,"y":0},{"x":-99,"y":-89},{"x":5,"y":-72},{"x":-35,"y":-58},{"x":-43,"y":-6},{"x":-8,"y":-44},{"x":89,"y":-289},{"x":-28,"y":-72},{"x":-45,"y":-5},{"x":-77,"y":-87},{"x":-46,"y":0},{"x":-32,"y":-40},{"x":16,"y":-34}],"type":"area"},{"arc":[{"x":133802,"y":112722},{"x":79,"y":-26},{"x":22,"y":-34}],"type":"admin"},{"arc":[{"x":133903,"y":112662},{"x":27,"y":51},{"x":52,"y":6},{"x":-3,"y":34},{"x":216,"y":-76},{"x":8,"y":51},{"x":37,"y":-11},{"x":6,"y":21},{"x":85,"y":-25},{"x":61,"y":-96},{"x":36,"y":-10},{"x":-20,"y":-122},{"x":-66,"y":-123}],"type":"admin"},{"arc":[{"x":134342,"y":112362},{"x":130,"y":-77},{"x":-6,"y":16},{"x":61,"y":5},{"x":24,"y":55},{"x":104,"y":32},{"x":146,"y":-133},{"x":-50,"y":-38},{"x":30,"y":-8},{"x":18,"y":-50},{"x":91,"y":168},{"x":62,"y":16},{"x":147,"y":-27},{"x":113,"y":-67},{"x":106,"y":-130},{"x":35,"y":-130},{"x":36,"y":-35},{"x":42,"y":-2},{"x":13,"y":-52},{"x":-29,"y":-27},{"x":24,"y":-96},{"x":51,"y":11},{"x":104,"y":-66},{"x":84,"y":2}],"type":"admin"},{"arc":[{"x":135678,"y":111729},{"x":113,"y":39},{"x":0,"y":24},{"x":65,"y":31},{"x":71,"y":-13},{"x":-75,"y":81},{"x":101,"y":111},{"x":-40,"y":13},{"x":-4,"y":55},{"x":162,"y":21},{"x":6,"y":-20},{"x":58,"y":66},{"x":84,"y":39},{"x":37,"y":122},{"x":79,"y":14},{"x":-7,"y":34},{"x":-60,"y":-6},{"x":-41,"y":87},{"x":-41,"y":1},{"x":-37,"y":74},{"x":16,"y":42},{"x":50,"y":15},{"x":80,"y":-28},{"x":34,"y":31},{"x":121,"y":-46},{"x":69,"y":15},{"x":91,"y":113},{"x":22,"y":50},{"x":-33,"y":-2},{"x":47,"y":106},{"x":48,"y":-6},{"x":65,"y":53},{"x":79,"y":-32},{"x":56,"y":21},{"x":63,"y":-38},{"x":113,"y":41},{"x":18,"y":32},{"x":80,"y":-19},{"x":14,"y":42},{"x":39,"y":-12},{"x":65,"y":54},{"x":-15,"y":35},{"x":30,"y":51},{"x":46,"y":11},{"x":39,"y":129},{"x":48,"y":-39},{"x":-10,"y":-111},{"x":79,"y":-54},{"x":45,"y":-87},{"x":78,"y":-32},{"x":76,"y":56},{"x":79,"y":-25}],"type":"admin"},{"arc":[{"x":137781,"y":112868},{"x":57,"y":27},{"x":55,"y":-24},{"x":23,"y":31},{"x":-27,"y":35},{"x":9,"y":44},{"x":-81,"y":27},{"x":-61,"y":57},{"x":65,"y":-20},{"x":32,"y":83},{"x":105,"y":78},{"x":-58,"y":56},{"x":14,"y":81},{"x":-27,"y":31},{"x":4,"y":25},{"x":44,"y":0},{"x":29,"y":63},{"x":-29,"y":50},{"x":-34,"y":-24}],"type":"admin"},{"arc":[{"x":134981,"y":114271},{"x":-69,"y":-21},{"x":0,"y":22},{"x":-34,"y":-15},{"x":-96,"y":47},{"x":-181,"y":0},{"x":17,"y":89},{"x":-29,"y":9},{"x":0,"y":55},{"x":-57,"y":30},{"x":-97,"y":-87},{"x":15,"y":-61},{"x":-38,"y":-82},{"x":-53,"y":88},{"x":-238,"y":-69},{"x":-240,"y":-6},{"x":-129,"y":46},{"x":-31,"y":57}],"type":"area"},{"arc":[{"x":133721,"y":114373},{"x":-85,"y":-154},{"x":4,"y":75},{"x":-31,"y":-24},{"x":24,"y":-22},{"x":-47,"y":9},{"x":-12,"y":-18},{"x":31,"y":-21},{"x":-19,"y":-27},{"x":-34,"y":36},{"x":39,"y":-92},{"x":-18,"y":-19}],"type":"coastline"},{"arc":[{"x":133573,"y":114116},{"x":432,"y":-334}],"type":"area"},{"arc":[{"x":133096,"y":115538},{"x":-45,"y":26},{"x":2,"y":-32},{"x":43,"y":6}],"type":"coastline"},{"arc":[{"x":133142,"y":115494},{"x":-89,"y":24},{"x":9,"y":-81},{"x":-25,"y":-18},{"x":38,"y":-18},{"x":14,"y":42},{"x":43,"y":10},{"x":-22,"y":43},{"x":32,"y":-2}],"type":"coastline"},{"arc":[{"x":133110,"y":115432},{"x":-4,"y":-34},{"x":38,"y":4},{"x":-34,"y":30}],"type":"coastline"},{"arc":[{"x":135485,"y":115683},{"x":-66,"y":-26},{"x":-24,"y":-93},{"x":-50,"y":3},{"x":3,"y":-52},{"x":-195,"y":-41}],"type":"admin"},{"arc":[{"x":135153,"y":115474},{"x":-156,"y":-96},{"x":-97,"y":-98},{"x":-129,"y":1},{"x":-206,"y":-72},{"x":-127,"y":-170},{"x":-139,"y":-85},{"x":-31,"y":28},{"x":35,"y":58},{"x":-33,"y":11},{"x":-9,"y":-24},{"x":-56,"y":-9},{"x":-42,"y":64},{"x":12,"y":201},{"x":-46,"y":-92},{"x":-13,"y":18},{"x":-84,"y":-39},{"x":-38,"y":12},{"x":-29,"y":52},{"x":1,"y":116},{"x":57,"y":43},{"x":28,"y":64},{"x":-39,"y":29},{"x":13,"y":12},{"x":-58,"y":0},{"x":22,"y":65},{"x":-47,"y":-16},{"x":-41,"y":72},{"x":-51,"y":17},{"x":-11,"y":-34},{"x":-41,"y":24},{"x":0,"y":-42},{"x":-46,"y":-9},{"x":12,"y":-35},{"x":-43,"y":-10},{"x":-158,"y":53},{"x":-159,"y":-6}],"type":"admin"},{"arc":[{"x":133404,"y":115577},{"x":14,"y":-90},{"x":-60,"y":-25},{"x":41,"y":2},{"x":-40,"y":-5},{"x":-27,"y":-43},{"x":-31,"y":-112},{"x":78,"y":-63},{"x":-39,"y":-112},{"x":15,"y":-90},{"x":25,"y":-63},{"x":48,"y":-16},{"x":70,"y":31},{"x":2,"y":-24},{"x":94,"y":49},{"x":-11,"y":37},{"x":30,"y":30},{"x":46,"y":-14},{"x":-11,"y":-52},{"x":-50,"y":-46},{"x":26,"y":-17},{"x":-13,"y":-18},{"x":-22,"y":-19},{"x":-29,"y":23},{"x":-44,"y":-28},{"x":25,"y":-38},{"x":36,"y":11},{"x":79,"y":-33},{"x":9,"y":-100},{"x":-66,"y":-11},{"x":53,"y":12},{"x":-20,"y":-32},{"x":-29,"y":3},{"x":28,"y":-8},{"x":42,"y":-103},{"x":48,"y":-240}],"type":"coastline"},{"arc":[{"x":135064,"y":114350},{"x":40,"y":11},{"x":45,"y":62},{"x":0,"y":93},{"x":51,"y":16},{"x":49,"y":119},{"x":123,"y":126},{"x":64,"y":107},{"x":56,"y":30},{"x":41,"y":-12},{"x":60,"y":44},{"x":32,"y":-34},{"x":36,"y":11},{"x":42,"y":37},{"x":-29,"y":60},{"x":108,"y":27},{"x":83,"y":99},{"x":-12,"y":171},{"x":-138,"y":28},{"x":-12,"y":32},{"x":-105,"y":-28},{"x":-11,"y":110},{"x":-60,"y":77},{"x":58,"y":8},{"x":-47,"y":108},{"x":-44,"y":-7},{"x":-9,"y":38}],"type":"admin"},{"arc":[{"x":133621,"y":114305},{"x":-65,"y":16},{"x":49,"y":-28},{"x":16,"y":12}],"type":"coastline"},{"arc":[{"x":133573,"y":114116},{"x":-66,"y":-105},{"x":3,"y":-43},{"x":75,"y":-44},{"x":-48,"y":-65},{"x":-55,"y":38},{"x":22,"y":49},{"x":-34,"y":-66},{"x":-127,"y":117},{"x":9,"y":25},{"x":40,"y":-15},{"x":31,"y":28},{"x":58,"y":113},{"x":6,"y":162},{"x":-26,"y":20},{"x":23,"y":0},{"x":3,"y":50},{"x":-25,"y":67},{"x":63,"y":89},{"x":-3,"y":219},{"x":-23,"y":13},{"x":-13,"y":-26},{"x":-56,"y":34},{"x":19,"y":29},{"x":-57,"y":33},{"x":-83,"y":2},{"x":-13,"y":-23},{"x":13,"y":26},{"x":-55,"y":62},{"x":-36,"y":-135}],"type":"coastline"},{"arc":[{"x":133218,"y":114770},{"x":59,"y":-53},{"x":-40,"y":-66},{"x":32,"y":-56},{"x":-36,"y":-74},{"x":33,"y":-248},{"x":-68,"y":-40},{"x":-104,"y":-14},{"x":-52,"y":-39},{"x":-29,"y":-67},{"x":20,"y":-62},{"x":90,"y":-30},{"x":53,"y":-57},{"x":1,"y":-54},{"x":75,"y":-127},{"x":-399,"y":-196},{"x":-101,"y":-181},{"x":74,"y":-53},{"x":-18,"y":-25},{"x":20,"y":-14},{"x":-64,"y":-89},{"x":-38,"y":33},{"x":-127,"y":-13},{"x":-9,"y":-118},{"x":-32,"y":-9},{"x":-39,"y":-82}],"type":"admin"},{"arc":[{"x":132519,"y":113036},{"x":33,"y":-154},{"x":74,"y":-17},{"x":32,"y":22},{"x":31,"y":-23},{"x":-37,"y":-42},{"x":85,"y":-81},{"x":-29,"y":-85},{"x":170,"y":-92},{"x":6,"y":-47},{"x":43,"y":33},{"x":53,"y":145},{"x":100,"y":-31},{"x":47,"y":-50},{"x":24,"y":77},{"x":142,"y":101},{"x":133,"y":7},{"x":114,"y":-54}],"type":"admin"},{"arc":[{"x":133540,"y":112745},{"x":15,"y":15},{"x":140,"y":-56},{"x":107,"y":18}],"type":"admin"},{"arc":[{"x":130504,"y":98085},{"x":335,"y":182},{"x":36,"y":43},{"x":127,"y":8},{"x":55,"y":32},{"x":70,"y":130},{"x":86,"y":33}],"type":"area"},{"arc":[{"x":131213,"y":98513},{"x":-94,"y":82},{"x":-51,"y":-20}],"type":"area"},{"arc":[{"x":131068,"y":98575},{"x":-71,"y":31},{"x":-139,"y":-6},{"x":-117,"y":-78},{"x":-111,"y":-30},{"x":-110,"y":-95},{"x":-95,"y":-144}],"type":"area"},{"arc":[{"x":130425,"y":98253},{"x":79,"y":-168}],"type":"coastline"},{"arc":[{"x":131479,"y":99654},{"x":-53,"y":-14},{"x":-41,"y":-65},{"x":-13,"y":-95},{"x":-129,"y":-151}],"type":"area"},{"arc":[{"x":131243,"y":99329},{"x":48,"y":-99},{"x":-84,"y":-131},{"x":-100,"y":-39},{"x":-47,"y":-78},{"x":15,"y":-31},{"x":-115,"y":-86},{"x":-50,"y":55},{"x":-26,"y":-15}],"type":"admin"},{"arc":[{"x":130884,"y":98905},{"x":54,"y":-85},{"x":23,"y":-115},{"x":57,"y":-60},{"x":-22,"y":-9},{"x":72,"y":-61}],"type":"area"},{"arc":[{"x":131213,"y":98513},{"x":133,"y":20}],"type":"area"},{"arc":[{"x":131346,"y":98533},{"x":144,"y":137},{"x":78,"y":132}],"type":"area"},{"arc":[{"x":131568,"y":98802},{"x":-38,"y":101},{"x":57,"y":17},{"x":25,"y":50},{"x":-19,"y":57},{"x":45,"y":50},{"x":-27,"y":57},{"x":17,"y":41},{"x":175,"y":64},{"x":17,"y":194},{"x":-79,"y":27},{"x":-68,"y":95},{"x":-160,"y":46},{"x":-34,"y":53}],"type":"area"},{"arc":[{"x":129968,"y":98526},{"x":-48,"y":23},{"x":-33,"y":-10},{"x":24,"y":-41},{"x":39,"y":0},{"x":18,"y":28}],"type":"coastline"},{"arc":[{"x":130082,"y":98297},{"x":-9,"y":33},{"x":-93,"y":15},{"x":-22,"y":26},{"x":-45,"y":-35},{"x":-61,"y":-2},{"x":-23,"y":-64},{"x":-26,"y":-1},{"x":-20,"y":43},{"x":-68,"y":5},{"x":48,"y":-63},{"x":-44,"y":-39},{"x":70,"y":-89},{"x":-43,"y":-34},{"x":4,"y":-59},{"x":35,"y":1},{"x":5,"y":54},{"x":64,"y":80},{"x":60,"y":7},{"x":16,"y":45},{"x":78,"y":-10},{"x":74,"y":87}],"type":"coastline"},{"arc":[{"x":130349,"y":98716},{"x":-39,"y":44},{"x":-36,"y":-18},{"x":-25,"y":30},{"x":-74,"y":-21},{"x":-40,"y":-43},{"x":197,"y":-41},{"x":17,"y":49}],"type":"coastline"},{"arc":[{"x":130409,"y":98495},{"x":-14,"y":30},{"x":-100,"y":28},{"x":-37,"y":-29},{"x":73,"y":-54},{"x":78,"y":25}],"type":"coastline"},{"arc":[{"x":130541,"y":99095},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":130539,"y":99093},{"x":22,"y":-1}],"type":"coastline"},{"arc":[{"x":130561,"y":99092},{"x":-20,"y":3}],"type":"area"},{"arc":[{"x":130884,"y":98905},{"x":-168,"y":17},{"x":-12,"y":153}],"type":"admin"},{"arc":[{"x":130704,"y":99075},{"x":-52,"y":-10},{"x":-74,"y":25}],"type":"area"},{"arc":[{"x":130578,"y":99090},{"x":-119,"y":-119},{"x":19,"y":-91},{"x":-47,"y":-55},{"x":-5,"y":-98},{"x":81,"y":-28},{"x":44,"y":10},{"x":52,"y":-53},{"x":-55,"y":36},{"x":-76,"y":-6},{"x":-61,"y":-87},{"x":11,"y":-182},{"x":-22,"y":-29},{"x":-129,"y":1},{"x":14,"y":-91},{"x":36,"y":9},{"x":7,"y":-42},{"x":88,"y":22},{"x":9,"y":-34}],"type":"coastline"},{"arc":[{"x":130504,"y":98085},{"x":6,"y":-58},{"x":-38,"y":-9},{"x":76,"y":-99},{"x":-32,"y":-21},{"x":33,"y":20},{"x":-11,"y":-20},{"x":19,"y":6},{"x":24,"y":-38},{"x":-37,"y":-12},{"x":-20,"y":-206}],"type":"coastline"},{"arc":[{"x":130524,"y":97648},{"x":110,"y":-74},{"x":106,"y":-1},{"x":103,"y":94},{"x":-24,"y":72},{"x":57,"y":4},{"x":44,"y":51},{"x":39,"y":6},{"x":69,"y":-127},{"x":95,"y":71},{"x":7,"y":38},{"x":-8,"y":27},{"x":-65,"y":27},{"x":20,"y":10},{"x":-18,"y":53},{"x":225,"y":122},{"x":53,"y":4}],"type":"area"},{"arc":[{"x":131337,"y":98025},{"x":57,"y":79},{"x":-59,"y":90},{"x":12,"y":35},{"x":-39,"y":78},{"x":1,"y":52},{"x":39,"y":44},{"x":-22,"y":45},{"x":20,"y":85}],"type":"area"},{"arc":[{"x":131337,"y":98025},{"x":46,"y":-3},{"x":33,"y":-146},{"x":52,"y":-56},{"x":-21,"y":-71},{"x":102,"y":-2},{"x":40,"y":-45},{"x":17,"y":16},{"x":-15,"y":-76},{"x":37,"y":3},{"x":-7,"y":-125},{"x":32,"y":-53},{"x":-83,"y":-15},{"x":-56,"y":-90},{"x":24,"y":-117},{"x":-39,"y":-75},{"x":167,"y":-120},{"x":71,"y":-107},{"x":68,"y":54},{"x":77,"y":-9},{"x":70,"y":-67},{"x":31,"y":-1},{"x":32,"y":126},{"x":81,"y":109},{"x":67,"y":-18},{"x":37,"y":76},{"x":69,"y":57},{"x":153,"y":16},{"x":51,"y":-26},{"x":60,"y":40}],"type":"area"},{"arc":[{"x":132533,"y":97300},{"x":-42,"y":35},{"x":-13,"y":226},{"x":26,"y":18},{"x":-28,"y":14},{"x":2,"y":74},{"x":-77,"y":23},{"x":-44,"y":85},{"x":-159,"y":-4},{"x":-24,"y":-27},{"x":-48,"y":13},{"x":-63,"y":141},{"x":35,"y":-1},{"x":26,"y":44},{"x":25,"y":185},{"x":58,"y":-12},{"x":34,"y":94},{"x":-41,"y":164},{"x":26,"y":43},{"x":-12,"y":49},{"x":-50,"y":-1},{"x":-7,"y":53},{"x":-56,"y":66},{"x":37,"y":41},{"x":-5,"y":109},{"x":69,"y":30},{"x":113,"y":-41},{"x":15,"y":55},{"x":106,"y":-6},{"x":38,"y":95},{"x":-18,"y":67},{"x":-78,"y":62},{"x":-235,"y":33},{"x":-216,"y":-169},{"x":-224,"y":-70},{"x":-135,"y":14}],"type":"area"},{"arc":[{"x":133343,"y":99363},{"x":-70,"y":72},{"x":-14,"y":95},{"x":-60,"y":50},{"x":4,"y":43},{"x":-124,"y":47},{"x":27,"y":56},{"x":55,"y":12},{"x":-9,"y":34},{"x":34,"y":41},{"x":60,"y":39},{"x":76,"y":-8},{"x":42,"y":53},{"x":-41,"y":27},{"x":49,"y":55},{"x":1,"y":48},{"x":76,"y":26},{"x":12,"y":-31},{"x":33,"y":6},{"x":70,"y":52},{"x":-31,"y":59},{"x":19,"y":54},{"x":-54,"y":100},{"x":78,"y":117},{"x":-38,"y":71},{"x":23,"y":77},{"x":79,"y":57},{"x":-14,"y":34},{"x":54,"y":21},{"x":6,"y":38},{"x":-53,"y":-26},{"x":-34,"y":79},{"x":-182,"y":148},{"x":-28,"y":-16},{"x":-44,"y":21},{"x":-91,"y":-64},{"x":-24,"y":8},{"x":-113,"y":-57},{"x":-79,"y":87},{"x":-32,"y":-40},{"x":-140,"y":47},{"x":-58,"y":-55},{"x":-36,"y":34},{"x":-36,"y":-21},{"x":2,"y":82}],"type":"admin"},{"arc":[{"x":132738,"y":100935},{"x":-81,"y":-30},{"x":-2,"y":-38},{"x":-50,"y":-47},{"x":64,"y":-116},{"x":44,"y":-15},{"x":-59,"y":-36},{"x":30,"y":-35},{"x":-70,"y":-32},{"x":-83,"y":-136},{"x":-173,"y":-37},{"x":16,"y":-126},{"x":-111,"y":-53},{"x":-84,"y":-84},{"x":-15,"y":-110},{"x":-42,"y":-67},{"x":-47,"y":-20},{"x":-64,"y":95},{"x":-24,"y":-48},{"x":-37,"y":10},{"x":-67,"y":-42},{"x":-139,"y":-21}],"type":"admin"},{"arc":[{"x":131744,"y":99947},{"x":-188,"y":-245},{"x":-77,"y":-48}],"type":"area"},{"arc":[{"x":132533,"y":97300},{"x":54,"y":-20},{"x":39,"y":14},{"x":99,"y":171},{"x":42,"y":-5}],"type":"area"},{"arc":[{"x":132767,"y":97460},{"x":25,"y":73},{"x":62,"y":7},{"x":38,"y":73},{"x":38,"y":0},{"x":41,"y":123},{"x":66,"y":-10},{"x":68,"y":50},{"x":78,"y":2},{"x":29,"y":-27},{"x":59,"y":23},{"x":-2,"y":-26},{"x":67,"y":-6},{"x":29,"y":47},{"x":89,"y":-15},{"x":149,"y":96},{"x":-58,"y":43},{"x":35,"y":9}],"type":"admin"},{"arc":[{"x":133580,"y":97922},{"x":-41,"y":107},{"x":49,"y":55},{"x":3,"y":56},{"x":-142,"y":137},{"x":143,"y":189},{"x":118,"y":51},{"x":26,"y":111},{"x":-37,"y":77},{"x":-48,"y":-19},{"x":-24,"y":28},{"x":1,"y":63},{"x":-63,"y":89},{"x":-96,"y":36},{"x":36,"y":128},{"x":135,"y":79},{"x":-5,"y":53},{"x":-68,"y":39},{"x":-37,"y":-8},{"x":-56,"y":35},{"x":2,"y":26},{"x":-77,"y":-28},{"x":-61,"y":80},{"x":5,"y":57}],"type":"admin"},{"arc":[{"x":130470,"y":99106},{"x":-39,"y":-92}],"type":"admin"},{"arc":[{"x":130431,"y":99014},{"x":55,"y":90}],"type":"coastline"},{"arc":[{"x":130486,"y":99104},{"x":-16,"y":2}],"type":"admin"},{"arc":[{"x":130541,"y":99095},{"x":-6,"y":1}],"type":"admin"},{"arc":[{"x":130535,"y":99096},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":130470,"y":99106},{"x":45,"y":93},{"x":-25,"y":102},{"x":83,"y":59},{"x":-261,"y":110}],"type":"admin"},{"arc":[{"x":130312,"y":99470},{"x":-118,"y":-33},{"x":-151,"y":57}],"type":"admin"},{"arc":[{"x":130043,"y":99494},{"x":-120,"y":-2},{"x":18,"y":-208}],"type":"admin"},{"arc":[{"x":129941,"y":99284},{"x":32,"y":-35},{"x":40,"y":10},{"x":169,"y":-41},{"x":130,"y":-84},{"x":158,"y":-28}],"type":"admin"},{"arc":[{"x":130561,"y":99092},{"x":17,"y":14},{"x":0,"y":-16}],"type":"coastline"},{"arc":[{"x":130704,"y":99075},{"x":37,"y":-13},{"x":66,"y":34},{"x":66,"y":99},{"x":231,"y":54},{"x":69,"y":60},{"x":70,"y":20}],"type":"admin"},{"arc":[{"x":131744,"y":99947},{"x":-37,"y":109},{"x":-39,"y":30},{"x":-38,"y":-14},{"x":-22,"y":30},{"x":16,"y":52},{"x":-28,"y":28},{"x":61,"y":101},{"x":-89,"y":28},{"x":-73,"y":119},{"x":74,"y":77},{"x":-76,"y":91},{"x":-115,"y":38},{"x":-65,"y":-77},{"x":-14,"y":-81},{"x":-112,"y":-77},{"x":-137,"y":-10},{"x":-43,"y":-32},{"x":-42,"y":65},{"x":-86,"y":-25},{"x":-120,"y":71},{"x":-157,"y":19},{"x":-53,"y":-85},{"x":-83,"y":1},{"x":-55,"y":-34},{"x":16,"y":-145}],"type":"admin"},{"arc":[{"x":130427,"y":100226},{"x":111,"y":39},{"x":141,"y":-86},{"x":29,"y":-48},{"x":-6,"y":-41},{"x":68,"y":-135},{"x":-23,"y":-33},{"x":29,"y":-175},{"x":-79,"y":-25}],"type":"admin"},{"arc":[{"x":130697,"y":99722},{"x":18,"y":-128},{"x":71,"y":8},{"x":46,"y":-95},{"x":-21,"y":-33},{"x":32,"y":-89},{"x":-127,"y":-156},{"x":-95,"y":-38},{"x":-80,"y":-96}],"type":"admin"},{"arc":[{"x":130372,"y":97409},{"x":55,"y":-24},{"x":3,"y":-27}],"type":"admin"},{"arc":[{"x":130430,"y":97358},{"x":6,"y":42},{"x":-57,"y":24},{"x":-7,"y":-15}],"type":"coastline"},{"arc":[{"x":130524,"y":97648},{"x":-15,"y":-31},{"x":-92,"y":18},{"x":-62,"y":-126},{"x":104,"y":-45},{"x":28,"y":63},{"x":30,"y":-20},{"x":-39,"y":-36},{"x":-8,"y":-145}],"type":"coastline"},{"arc":[{"x":130470,"y":97326},{"x":55,"y":-31},{"x":87,"y":6},{"x":-2,"y":-96},{"x":40,"y":3},{"x":71,"y":-59},{"x":62,"y":-135},{"x":85,"y":42},{"x":45,"y":-41},{"x":26,"y":38},{"x":151,"y":40},{"x":10,"y":-99},{"x":49,"y":-20},{"x":72,"y":15},{"x":39,"y":-25},{"x":-150,"y":-129},{"x":-184,"y":41},{"x":-106,"y":-35},{"x":69,"y":-162},{"x":131,"y":-14},{"x":31,"y":17},{"x":88,"y":-33},{"x":54,"y":-127},{"x":2,"y":-149},{"x":133,"y":-40},{"x":-14,"y":-64},{"x":100,"y":-94},{"x":-3,"y":-72},{"x":-95,"y":-76},{"x":-95,"y":-36},{"x":-8,"y":-225},{"x":125,"y":-57},{"x":91,"y":30},{"x":73,"y":-59},{"x":29,"y":-91},{"x":26,"y":-5},{"x":38,"y":62},{"x":39,"y":-23},{"x":18,"y":17},{"x":10,"y":117},{"x":17,"y":-15},{"x":37,"y":31},{"x":42,"y":-39},{"x":45,"y":26},{"x":75,"y":-22},{"x":125,"y":34},{"x":89,"y":68},{"x":100,"y":-53},{"x":71,"y":-96}],"type":"admin"},{"arc":[{"x":132263,"y":95691},{"x":-24,"y":77},{"x":37,"y":78},{"x":121,"y":10},{"x":73,"y":109},{"x":-48,"y":73},{"x":-19,"y":78},{"x":21,"y":35},{"x":-40,"y":73},{"x":35,"y":21},{"x":80,"y":-30},{"x":163,"y":101},{"x":78,"y":170},{"x":-8,"y":39},{"x":50,"y":34},{"x":53,"y":168},{"x":65,"y":65},{"x":37,"y":240},{"x":26,"y":23},{"x":-9,"y":85},{"x":30,"y":21},{"x":0,"y":96},{"x":-45,"y":30},{"x":37,"y":92},{"x":-29,"y":65},{"x":85,"y":21},{"x":-66,"y":22},{"x":-39,"y":-20},{"x":-78,"y":35},{"x":-22,"y":-31},{"x":-60,"y":-11}],"type":"admin"},{"arc":[{"x":127062,"y":118525},{"x":-155,"y":33},{"x":16,"y":14},{"x":-302,"y":22}],"type":"admin"},{"arc":[{"x":126621,"y":118594},{"x":-31,"y":-10},{"x":40,"y":-87},{"x":-104,"y":-94},{"x":-41,"y":-96},{"x":-159,"y":-99},{"x":133,"y":-128},{"x":-10,"y":-46},{"x":-94,"y":-72},{"x":-2,"y":-70},{"x":-135,"y":-20},{"x":-30,"y":-36},{"x":-60,"y":-7},{"x":-60,"y":-70},{"x":-74,"y":19},{"x":59,"y":-130},{"x":-30,"y":-65},{"x":17,"y":-75},{"x":-48,"y":-29},{"x":-13,"y":-68},{"x":-94,"y":-30},{"x":-37,"y":-42},{"x":19,"y":-81},{"x":-50,"y":-62},{"x":-35,"y":-132},{"x":-70,"y":-48}],"type":"admin"},{"arc":[{"x":125712,"y":117016},{"x":-16,"y":-336},{"x":43,"y":-152},{"x":73,"y":-50},{"x":8,"y":-37},{"x":55,"y":39},{"x":74,"y":-18},{"x":89,"y":-114},{"x":82,"y":26},{"x":41,"y":-68},{"x":173,"y":156},{"x":59,"y":10},{"x":106,"y":-6},{"x":84,"y":-89},{"x":93,"y":29},{"x":86,"y":-63}],"type":"area"},{"arc":[{"x":126762,"y":116343},{"x":34,"y":404},{"x":43,"y":161},{"x":-16,"y":522},{"x":32,"y":198},{"x":-35,"y":30},{"x":16,"y":96},{"x":62,"y":118},{"x":61,"y":-24},{"x":17,"y":26},{"x":47,"y":-6},{"x":37,"y":439},{"x":25,"y":-13},{"x":-13,"y":73},{"x":56,"y":142}],"type":"area"},{"arc":[{"x":127128,"y":118509},{"x":-66,"y":16}],"type":"admin"},{"arc":[{"x":128132,"y":118301},{"x":-88,"y":-51},{"x":-123,"y":-29},{"x":-46,"y":12},{"x":-42,"y":64},{"x":-116,"y":80},{"x":-115,"y":-53},{"x":-204,"y":87},{"x":23,"y":136},{"x":-130,"y":21},{"x":-15,"y":-76},{"x":-148,"y":17}],"type":"admin"},{"arc":[{"x":126762,"y":116343},{"x":77,"y":-15},{"x":53,"y":-41},{"x":150,"y":-16},{"x":56,"y":37},{"x":45,"y":85},{"x":73,"y":53},{"x":92,"y":23},{"x":110,"y":111},{"x":227,"y":20},{"x":89,"y":65},{"x":143,"y":-3},{"x":66,"y":48},{"x":103,"y":-18},{"x":123,"y":-117}],"type":"area"},{"arc":[{"x":128169,"y":116575},{"x":66,"y":126},{"x":-28,"y":62},{"x":39,"y":16},{"x":-2,"y":158},{"x":-24,"y":38},{"x":60,"y":131},{"x":-4,"y":62},{"x":-27,"y":77},{"x":-58,"y":38},{"x":42,"y":86},{"x":-8,"y":69},{"x":-133,"y":59},{"x":28,"y":109},{"x":81,"y":63},{"x":-52,"y":142},{"x":30,"y":59},{"x":-40,"y":105},{"x":146,"y":40},{"x":20,"y":34},{"x":-47,"y":123},{"x":-126,"y":129}],"type":"admin"},{"arc":[{"x":125712,"y":117016},{"x":-79,"y":51},{"x":-89,"y":-96},{"x":-118,"y":-24},{"x":-36,"y":-109},{"x":-68,"y":-75},{"x":-207,"y":38},{"x":-162,"y":-93},{"x":-127,"y":-15},{"x":-47,"y":80},{"x":14,"y":37}],"type":"admin"},{"arc":[{"x":124793,"y":116810},{"x":-46,"y":12},{"x":-32,"y":43},{"x":-128,"y":23},{"x":-44,"y":-104},{"x":5,"y":-96},{"x":-42,"y":-86},{"x":-56,"y":-28},{"x":59,"y":-185},{"x":-99,"y":-140},{"x":-114,"y":-58},{"x":-38,"y":-71},{"x":3,"y":-113},{"x":46,"y":-71},{"x":-55,"y":-129},{"x":-98,"y":-98},{"x":-23,"y":-133},{"x":-36,"y":-17},{"x":28,"y":-150}],"type":"admin"},{"arc":[{"x":124123,"y":115409},{"x":107,"y":-50},{"x":137,"y":-13}],"type":"area"},{"arc":[{"x":124367,"y":115346},{"x":52,"y":-9},{"x":22,"y":41},{"x":-22,"y":64},{"x":103,"y":109},{"x":35,"y":122},{"x":141,"y":43},{"x":135,"y":-17},{"x":31,"y":32},{"x":93,"y":-10},{"x":1,"y":-191},{"x":30,"y":-80},{"x":232,"y":57},{"x":98,"y":-68},{"x":92,"y":-8},{"x":126,"y":107},{"x":86,"y":-15},{"x":42,"y":17},{"x":32,"y":-20},{"x":98,"y":54},{"x":69,"y":-34},{"x":58,"y":5},{"x":135,"y":91},{"x":116,"y":10},{"x":23,"y":-49},{"x":147,"y":-19},{"x":12,"y":-72},{"x":81,"y":-66},{"x":93,"y":-61},{"x":76,"y":23},{"x":34,"y":-24},{"x":-3,"y":-70},{"x":57,"y":20},{"x":-76,"y":-143},{"x":-62,"y":-40},{"x":-53,"y":-282},{"x":21,"y":-215},{"x":-80,"y":-94},{"x":-12,"y":-137}],"type":"admin"},{"arc":[{"x":126430,"y":114417},{"x":474,"y":-4}],"type":"area"},{"arc":[{"x":126904,"y":114413},{"x":22,"y":29},{"x":62,"y":1},{"x":67,"y":77},{"x":-20,"y":168},{"x":27,"y":17},{"x":60,"y":-23},{"x":69,"y":59},{"x":43,"y":90},{"x":119,"y":22},{"x":91,"y":80}],"type":"admin"},{"arc":[{"x":127444,"y":114933},{"x":-18,"y":78},{"x":-63,"y":42},{"x":21,"y":97},{"x":107,"y":89},{"x":-83,"y":155},{"x":5,"y":86},{"x":68,"y":172},{"x":-20,"y":29},{"x":194,"y":176},{"x":220,"y":-42}],"type":"admin"},{"arc":[{"x":127875,"y":115815},{"x":87,"y":87},{"x":87,"y":27},{"x":19,"y":95}],"type":"admin"},{"arc":[{"x":128068,"y":116024},{"x":130,"y":189},{"x":-22,"y":0},{"x":6,"y":59},{"x":-43,"y":72},{"x":-6,"y":90},{"x":46,"y":37},{"x":-36,"y":59},{"x":26,"y":45}],"type":"admin"},{"arc":[{"x":126895,"y":112557},{"x":-72,"y":94},{"x":-94,"y":38},{"x":-35,"y":55},{"x":-41,"y":3},{"x":11,"y":52},{"x":-35,"y":-2},{"x":3,"y":24},{"x":-52,"y":-7},{"x":-3,"y":51},{"x":-46,"y":41},{"x":-133,"y":-17},{"x":20,"y":52},{"x":-62,"y":250},{"x":45,"y":128},{"x":-134,"y":13},{"x":-159,"y":104},{"x":-86,"y":11},{"x":-33,"y":60},{"x":-95,"y":23},{"x":-24,"y":33},{"x":-204,"y":7},{"x":-41,"y":111},{"x":10,"y":213},{"x":-46,"y":61},{"x":-88,"y":-9},{"x":-37,"y":47},{"x":-9,"y":137}],"type":"admin"},{"arc":[{"x":125455,"y":114130},{"x":-100,"y":3},{"x":-10,"y":29},{"x":-66,"y":20},{"x":-93,"y":-112},{"x":-98,"y":32},{"x":-81,"y":60},{"x":-20,"y":179},{"x":-48,"y":104},{"x":-164,"y":1},{"x":-12,"y":74},{"x":-76,"y":109},{"x":-15,"y":66},{"x":29,"y":75},{"x":-68,"y":137},{"x":-101,"y":-61},{"x":-207,"y":74},{"x":16,"y":45},{"x":-30,"y":99},{"x":27,"y":32},{"x":-9,"y":117},{"x":38,"y":133}],"type":"admin"},{"arc":[{"x":124123,"y":115409},{"x":-139,"y":-110},{"x":25,"y":-75},{"x":-149,"y":-297},{"x":9,"y":-107},{"x":-82,"y":-64}],"type":"admin"},{"arc":[{"x":123787,"y":114756},{"x":-84,"y":-209},{"x":-9,"y":-154},{"x":89,"y":-78},{"x":144,"y":-28},{"x":16,"y":-24},{"x":-55,"y":-107},{"x":-22,"y":-155},{"x":-73,"y":-90},{"x":-170,"y":17},{"x":-148,"y":-54},{"x":-58,"y":-65},{"x":18,"y":-169},{"x":-119,"y":-119},{"x":51,"y":-55},{"x":-15,"y":-69},{"x":138,"y":-83},{"x":-25,"y":-63},{"x":37,"y":-142}],"type":"admin"},{"arc":[{"x":123502,"y":113109},{"x":169,"y":-74},{"x":116,"y":-102},{"x":78,"y":-29},{"x":37,"y":-95},{"x":98,"y":-63},{"x":-7,"y":-102},{"x":-94,"y":-111},{"x":-13,"y":-302},{"x":78,"y":-30},{"x":-1,"y":-103},{"x":-31,"y":-26},{"x":5,"y":-75},{"x":-48,"y":-98},{"x":4,"y":-88},{"x":74,"y":-73},{"x":91,"y":-30},{"x":16,"y":-94},{"x":-23,"y":-98},{"x":30,"y":-123},{"x":-23,"y":-62},{"x":83,"y":-72},{"x":27,"y":-179},{"x":72,"y":-42},{"x":22,"y":-70},{"x":55,"y":-36},{"x":145,"y":-23}],"type":"admin"},{"arc":[{"x":124462,"y":110909},{"x":55,"y":17},{"x":88,"y":161},{"x":66,"y":-2},{"x":62,"y":-34},{"x":81,"y":32},{"x":85,"y":134},{"x":119,"y":-51},{"x":8,"y":-103},{"x":84,"y":9},{"x":19,"y":39},{"x":46,"y":15},{"x":44,"y":88},{"x":66,"y":27},{"x":102,"y":-60},{"x":96,"y":55},{"x":37,"y":-59},{"x":-10,"y":-38},{"x":52,"y":2},{"x":19,"y":-30},{"x":78,"y":40},{"x":38,"y":-31},{"x":49,"y":11},{"x":4,"y":-73},{"x":136,"y":23},{"x":118,"y":86},{"x":112,"y":-64}],"type":"admin"},{"arc":[{"x":126116,"y":111103},{"x":3,"y":126},{"x":66,"y":93},{"x":-33,"y":84},{"x":28,"y":53},{"x":73,"y":86},{"x":166,"y":9},{"x":96,"y":60},{"x":78,"y":119}],"type":"admin"},{"arc":[{"x":126593,"y":111733},{"x":119,"y":171},{"x":141,"y":76},{"x":33,"y":43},{"x":-9,"y":42},{"x":86,"y":61},{"x":-17,"y":138},{"x":-32,"y":-17},{"x":-73,"y":79},{"x":54,"y":231}],"type":"admin"},{"arc":[{"x":126430,"y":114417},{"x":-2,"y":-6}],"type":"admin"},{"arc":[{"x":126428,"y":114411},{"x":-8,"y":-43},{"x":61,"y":-152},{"x":-51,"y":-119},{"x":145,"y":-352},{"x":16,"y":-118},{"x":41,"y":14},{"x":180,"y":-33},{"x":103,"y":-88},{"x":49,"y":-11},{"x":82,"y":-86},{"x":78,"y":-35},{"x":59,"y":-17},{"x":41,"y":44}],"type":"admin"},{"arc":[{"x":127224,"y":113415},{"x":55,"y":87},{"x":127,"y":111},{"x":12,"y":174},{"x":-96,"y":-15},{"x":-76,"y":70},{"x":-111,"y":1},{"x":-62,"y":124},{"x":-28,"y":28},{"x":-43,"y":-1},{"x":-13,"y":100},{"x":-107,"y":44},{"x":35,"y":45},{"x":-40,"y":171},{"x":27,"y":59}],"type":"admin"},{"arc":[{"x":124824,"y":117505},{"x":-78,"y":125},{"x":-122,"y":59},{"x":-99,"y":91},{"x":-51,"y":8},{"x":-64,"y":-41},{"x":-40,"y":42},{"x":-133,"y":4},{"x":9,"y":95},{"x":-52,"y":35},{"x":-36,"y":129},{"x":-97,"y":-13},{"x":12,"y":68},{"x":-31,"y":40},{"x":97,"y":168},{"x":-64,"y":104},{"x":49,"y":103},{"x":2,"y":101},{"x":60,"y":81},{"x":-29,"y":66},{"x":15,"y":83}],"type":"area"},{"arc":[{"x":124172,"y":118853},{"x":-33,"y":49},{"x":44,"y":42},{"x":70,"y":255},{"x":31,"y":4},{"x":27,"y":51}],"type":"area"},{"arc":[{"x":124311,"y":119254},{"x":-27,"y":44},{"x":41,"y":67},{"x":-28,"y":107},{"x":41,"y":27},{"x":-7,"y":57},{"x":-78,"y":11},{"x":113,"y":235},{"x":-11,"y":201},{"x":-57,"y":55},{"x":3,"y":108},{"x":-185,"y":3},{"x":-26,"y":-174},{"x":-57,"y":-80},{"x":-71,"y":-70},{"x":-103,"y":-14},{"x":-57,"y":-47},{"x":-9,"y":-43},{"x":-75,"y":-50},{"x":-41,"y":10},{"x":-85,"y":-34},{"x":-83,"y":41},{"x":19,"y":108},{"x":-49,"y":61}],"type":"admin"},{"arc":[{"x":123479,"y":119877},{"x":-46,"y":-24},{"x":-84,"y":-213},{"x":-4,"y":-165},{"x":-87,"y":-92},{"x":-57,"y":2},{"x":-54,"y":-56},{"x":20,"y":-98},{"x":-51,"y":-56},{"x":-19,"y":-133},{"x":-99,"y":22},{"x":-55,"y":-235},{"x":-58,"y":-60},{"x":-68,"y":13},{"x":-128,"y":-95},{"x":-23,"y":-114},{"x":-136,"y":-22},{"x":-60,"y":-54}],"type":"area"},{"arc":[{"x":122470,"y":118497},{"x":41,"y":-206},{"x":-15,"y":-65},{"x":62,"y":-87},{"x":-37,"y":-45},{"x":23,"y":-67},{"x":-35,"y":-67},{"x":38,"y":-64},{"x":-44,"y":-48},{"x":71,"y":-121},{"x":-14,"y":-206},{"x":-51,"y":-126},{"x":45,"y":-64},{"x":-45,"y":-114},{"x":-76,"y":-61},{"x":-33,"y":-85},{"x":15,"y":-68},{"x":51,"y":-32},{"x":-61,"y":-134},{"x":40,"y":-114},{"x":-9,"y":-124},{"x":-52,"y":-34},{"x":-177,"y":-349},{"x":-56,"y":-37},{"x":-32,"y":-80},{"x":-107,"y":12}],"type":"area"},{"arc":[{"x":122012,"y":116111},{"x":-41,"y":-167},{"x":115,"y":-148},{"x":26,"y":-112},{"x":-18,"y":-238},{"x":-76,"y":-336},{"x":30,"y":-93}],"type":"admin"},{"arc":[{"x":122048,"y":115017},{"x":39,"y":-15},{"x":53,"y":84},{"x":105,"y":0},{"x":59,"y":55},{"x":104,"y":-52}],"type":"admin"},{"arc":[{"x":122408,"y":115089},{"x":125,"y":34},{"x":60,"y":-22},{"x":14,"y":-45},{"x":209,"y":-60},{"x":121,"y":31},{"x":252,"y":-9},{"x":106,"y":-126},{"x":117,"y":8},{"x":133,"y":-139},{"x":72,"y":38},{"x":68,"y":-1},{"x":102,"y":-42}],"type":"admin"},{"arc":[{"x":124793,"y":116810},{"x":114,"y":191},{"x":9,"y":126},{"x":-30,"y":248},{"x":-107,"y":44},{"x":-1,"y":43},{"x":46,"y":43}],"type":"area"},{"arc":[{"x":122966,"y":120549},{"x":-55,"y":5},{"x":-7,"y":-31},{"x":37,"y":-2},{"x":25,"y":28}],"type":"coastline"},{"arc":[{"x":123484,"y":121436},{"x":-55,"y":-140},{"x":-138,"y":-157},{"x":-3,"y":-99},{"x":-12,"y":24},{"x":-36,"y":-22},{"x":-32,"y":21},{"x":-26,"y":-15},{"x":76,"y":-58},{"x":-22,"y":-36},{"x":22,"y":-127},{"x":-76,"y":-30},{"x":21,"y":-43},{"x":-36,"y":-43},{"x":-40,"y":11},{"x":-53,"y":-83},{"x":-101,"y":2},{"x":8,"y":-63},{"x":41,"y":-12},{"x":2,"y":-23},{"x":57,"y":18},{"x":3,"y":-31},{"x":-59,"y":4},{"x":-3,"y":-48},{"x":48,"y":-16},{"x":-1,"y":-36},{"x":-35,"y":-23},{"x":-84,"y":10},{"x":6,"y":-78},{"x":38,"y":-5},{"x":-45,"y":-1},{"x":-2,"y":-27},{"x":-103,"y":57},{"x":-22,"y":-30},{"x":-103,"y":-13},{"x":-31,"y":-44},{"x":-113,"y":-3},{"x":-8,"y":-31},{"x":36,"y":-23},{"x":-9,"y":-71},{"x":44,"y":31},{"x":54,"y":-29},{"x":-9,"y":-23},{"x":-73,"y":-14},{"x":28,"y":-64},{"x":-45,"y":-35},{"x":-44,"y":11},{"x":13,"y":-12},{"x":-48,"y":-10},{"x":-36,"y":42},{"x":-13,"y":-30},{"x":-62,"y":14},{"x":-179,"y":-237},{"x":10,"y":-37},{"x":-55,"y":1},{"x":15,"y":-22},{"x":-61,"y":-63},{"x":21,"y":-38},{"x":-62,"y":-17},{"x":15,"y":-50},{"x":-32,"y":-75},{"x":-26,"y":4},{"x":-6,"y":-49},{"x":-31,"y":20},{"x":-80,"y":-169}],"type":"coastline"},{"arc":[{"x":121932,"y":119301},{"x":48,"y":32},{"x":106,"y":-9},{"x":2,"y":-102},{"x":50,"y":-49},{"x":79,"y":-38},{"x":50,"y":18},{"x":62,"y":-34},{"x":76,"y":2},{"x":53,"y":-60},{"x":-102,"y":-227},{"x":53,"y":-122},{"x":-15,"y":-235}],"type":"area"},{"arc":[{"x":122394,"y":118477},{"x":43,"y":-8},{"x":33,"y":28}],"type":"area"},{"arc":[{"x":123479,"y":119877},{"x":26,"y":211},{"x":-65,"y":88},{"x":-94,"y":51},{"x":-6,"y":91},{"x":-48,"y":16},{"x":6,"y":34},{"x":-44,"y":18},{"x":-9,"y":51},{"x":4,"y":61},{"x":46,"y":70},{"x":-30,"y":35},{"x":30,"y":35},{"x":-4,"y":87},{"x":47,"y":22},{"x":85,"y":108},{"x":5,"y":83},{"x":76,"y":159},{"x":-8,"y":49},{"x":62,"y":135},{"x":51,"y":21},{"x":26,"y":91},{"x":-27,"y":29},{"x":-124,"y":14}],"type":"admin"},{"arc":[{"x":120251,"y":117702},{"x":-111,"y":63},{"x":17,"y":-72},{"x":44,"y":-9},{"x":3,"y":26},{"x":5,"y":-26},{"x":40,"y":-1},{"x":2,"y":19}],"type":"coastline"},{"arc":[{"x":120766,"y":118217},{"x":-18,"y":11},{"x":1,"y":-25},{"x":17,"y":14}],"type":"coastline"},{"arc":[{"x":122394,"y":118477},{"x":-63,"y":10},{"x":-112,"y":-293},{"x":-78,"y":-1},{"x":-30,"y":-48},{"x":-169,"y":53},{"x":-65,"y":-38},{"x":-41,"y":99},{"x":-26,"y":15},{"x":-65,"y":-33},{"x":-19,"y":47},{"x":-98,"y":57},{"x":-91,"y":103}],"type":"area"},{"arc":[{"x":121537,"y":118448},{"x":-34,"y":18},{"x":-3,"y":-34},{"x":-77,"y":-31},{"x":-59,"y":-92},{"x":-90,"y":18},{"x":37,"y":-12},{"x":-18,"y":-34},{"x":30,"y":8},{"x":12,"y":-41},{"x":-25,"y":-21},{"x":-31,"y":19},{"x":2,"y":-45},{"x":-41,"y":15},{"x":27,"y":-7},{"x":-15,"y":-44},{"x":-38,"y":1},{"x":14,"y":20},{"x":-25,"y":4},{"x":25,"y":29},{"x":-28,"y":38},{"x":9,"y":76},{"x":50,"y":-3},{"x":-42,"y":11},{"x":-25,"y":107},{"x":-48,"y":-16},{"x":-9,"y":-54},{"x":-53,"y":3},{"x":-61,"y":-120},{"x":-99,"y":-78},{"x":-71,"y":-27},{"x":-48,"y":23},{"x":21,"y":-16},{"x":-25,"y":8},{"x":24,"y":-30},{"x":-19,"y":-5},{"x":-15,"y":49},{"x":-37,"y":-6},{"x":-47,"y":-180},{"x":3,"y":-131},{"x":-25,"y":-21},{"x":-22,"y":21},{"x":26,"y":214},{"x":-41,"y":95},{"x":-27,"y":-242},{"x":51,"y":-113},{"x":-3,"y":-119},{"x":-28,"y":-9},{"x":-23,"y":27},{"x":-8,"y":-79},{"x":-70,"y":-33},{"x":-102,"y":0},{"x":-13,"y":32},{"x":-8,"y":-74},{"x":4,"y":81},{"x":-52,"y":17},{"x":-25,"y":-16},{"x":28,"y":25},{"x":-42,"y":51},{"x":-15,"y":-42},{"x":-105,"y":-19},{"x":15,"y":-64},{"x":43,"y":-1},{"x":-20,"y":-22}],"type":"coastline"},{"arc":[{"x":120246,"y":117577},{"x":66,"y":8},{"x":18,"y":-58},{"x":-27,"y":-46},{"x":59,"y":-7},{"x":41,"y":-145},{"x":-5,"y":-84},{"x":-72,"y":-32},{"x":23,"y":-85},{"x":-44,"y":-42},{"x":-5,"y":-90},{"x":40,"y":-82},{"x":-50,"y":-39},{"x":74,"y":-85},{"x":61,"y":-26},{"x":62,"y":-88},{"x":-86,"y":-235}],"type":"admin"},{"arc":[{"x":120401,"y":116441},{"x":10,"y":-27},{"x":90,"y":23},{"x":66,"y":-30},{"x":23,"y":-49},{"x":72,"y":9},{"x":91,"y":-40},{"x":70,"y":-62},{"x":37,"y":-85},{"x":63,"y":-3},{"x":66,"y":59},{"x":70,"y":-159},{"x":-15,"y":-46}],"type":"admin"},{"arc":[{"x":121044,"y":116031},{"x":70,"y":-42},{"x":76,"y":29},{"x":50,"y":-58},{"x":43,"y":10},{"x":62,"y":142},{"x":83,"y":68},{"x":89,"y":141},{"x":107,"y":-133},{"x":52,"y":42},{"x":116,"y":-66},{"x":70,"y":70},{"x":101,"y":-11},{"x":49,"y":-112}],"type":"admin"},{"arc":[{"x":125455,"y":114130},{"x":163,"y":124},{"x":46,"y":102},{"x":180,"y":81},{"x":125,"y":2},{"x":64,"y":-42},{"x":265,"y":61},{"x":130,"y":-47}],"type":"area"},{"arc":[{"x":126895,"y":112557},{"x":69,"y":-17},{"x":83,"y":53},{"x":78,"y":-14}],"type":"admin"},{"arc":[{"x":127125,"y":112579},{"x":70,"y":123},{"x":-35,"y":83},{"x":130,"y":169},{"x":-8,"y":60},{"x":-57,"y":28},{"x":102,"y":267},{"x":-103,"y":106}],"type":"admin"},{"arc":[{"x":124300,"y":83432},{"x":-15,"y":-26},{"x":26,"y":41},{"x":-11,"y":-15}],"type":"coastline"},{"arc":[{"x":124338,"y":83485},{"x":-25,"y":-36},{"x":38,"y":55},{"x":-13,"y":-19}],"type":"coastline"},{"arc":[{"x":123990,"y":83166},{"x":123,"y":-132},{"x":45,"y":17},{"x":-46,"y":-40},{"x":3,"y":-42},{"x":64,"y":-12},{"x":18,"y":-50},{"x":88,"y":-51},{"x":20,"y":-190}],"type":"area"},{"arc":[{"x":124305,"y":82666},{"x":169,"y":-136},{"x":165,"y":-9}],"type":"area"},{"arc":[{"x":124639,"y":82521},{"x":31,"y":68},{"x":138,"y":118},{"x":370,"y":136},{"x":122,"y":158},{"x":-21,"y":-2},{"x":7,"y":34},{"x":23,"y":-25},{"x":66,"y":-1},{"x":-29,"y":12},{"x":36,"y":9},{"x":-27,"y":17},{"x":58,"y":-20},{"x":-3,"y":-25},{"x":70,"y":17},{"x":-10,"y":80},{"x":-51,"y":48},{"x":4,"y":21},{"x":23,"y":-12},{"x":34,"y":164},{"x":-48,"y":-29},{"x":-5,"y":-45},{"x":-4,"y":47},{"x":154,"y":130},{"x":-31,"y":64},{"x":-40,"y":-28},{"x":20,"y":-26},{"x":-23,"y":-23},{"x":-30,"y":64},{"x":48,"y":39},{"x":-40,"y":96},{"x":-29,"y":-28},{"x":-1,"y":41},{"x":24,"y":1},{"x":-61,"y":25},{"x":-92,"y":-60},{"x":-33,"y":40},{"x":-55,"y":0},{"x":-15,"y":-119},{"x":-93,"y":-26},{"x":-45,"y":30},{"x":-99,"y":-94},{"x":43,"y":26},{"x":-30,"y":-37},{"x":-29,"y":14},{"x":-2,"y":54},{"x":27,"y":-8},{"x":-52,"y":96},{"x":-46,"y":-26},{"x":-13,"y":-90},{"x":-67,"y":-27},{"x":-49,"y":18},{"x":5,"y":26},{"x":-24,"y":-8},{"x":-26,"y":-71},{"x":18,"y":14},{"x":48,"y":-32},{"x":-24,"y":-32},{"x":-30,"y":42},{"x":12,"y":-29},{"x":-51,"y":-80},{"x":-7,"y":26},{"x":-46,"y":12},{"x":-15,"y":-18},{"x":-31,"y":133},{"x":-33,"y":20},{"x":43,"y":-12},{"x":-17,"y":20},{"x":-198,"y":-45},{"x":-11,"y":26},{"x":1,"y":-92},{"x":33,"y":-1},{"x":11,"y":28},{"x":-8,"y":-24},{"x":9,"y":-12},{"x":25,"y":25},{"x":-22,"y":5},{"x":-5,"y":-12},{"x":4,"y":15},{"x":23,"y":-2},{"x":2,"y":-10},{"x":-14,"y":-15},{"x":67,"y":15},{"x":8,"y":-48},{"x":-70,"y":-12},{"x":47,"y":-22},{"x":-146,"y":-4},{"x":-66,"y":-49},{"x":-19,"y":23},{"x":-7,"y":-15},{"x":-13,"y":14},{"x":60,"y":47},{"x":-12,"y":106},{"x":-212,"y":-58},{"x":3,"y":-39},{"x":46,"y":-30},{"x":-49,"y":14},{"x":-63,"y":-52},{"x":-24,"y":7},{"x":-11,"y":-34},{"x":-29,"y":9},{"x":44,"y":-40}],"type":"coastline"},{"arc":[{"x":124537,"y":80757},{"x":142,"y":-225},{"x":-110,"y":-27},{"x":-73,"y":-69},{"x":29,"y":-52},{"x":-35,"y":-35},{"x":9,"y":-39},{"x":49,"y":-21},{"x":-46,"y":-27},{"x":-13,"y":-45},{"x":53,"y":-102}],"type":"area"},{"arc":[{"x":124542,"y":80115},{"x":9,"y":-7}],"type":"admin"},{"arc":[{"x":124551,"y":80108},{"x":58,"y":36},{"x":57,"y":3},{"x":114,"y":-104},{"x":97,"y":23},{"x":52,"y":-46}],"type":"admin"},{"arc":[{"x":124929,"y":80020},{"x":67,"y":92},{"x":67,"y":31},{"x":25,"y":-19},{"x":24,"y":23},{"x":8,"y":-27},{"x":-27,"y":-5},{"x":24,"y":-8},{"x":51,"y":13},{"x":-41,"y":50},{"x":62,"y":130},{"x":-4,"y":139},{"x":-53,"y":87},{"x":16,"y":69},{"x":-39,"y":34},{"x":19,"y":-31},{"x":-43,"y":-12},{"x":19,"y":33},{"x":-33,"y":2},{"x":-16,"y":38},{"x":-11,"y":-26},{"x":-1,"y":23},{"x":28,"y":19},{"x":-32,"y":-6},{"x":-5,"y":21},{"x":92,"y":18},{"x":-72,"y":-14},{"x":27,"y":-12},{"x":-7,"y":15},{"x":53,"y":10},{"x":-30,"y":-1},{"x":0,"y":135},{"x":90,"y":0},{"x":0,"y":-131},{"x":-27,"y":0},{"x":28,"y":-1},{"x":0,"y":132},{"x":77,"y":0},{"x":48,"y":177},{"x":-106,"y":-10},{"x":-13,"y":-90},{"x":-72,"y":1},{"x":0,"y":89},{"x":-61,"y":0},{"x":-53,"y":-113},{"x":13,"y":-55},{"x":-37,"y":-10},{"x":-15,"y":46},{"x":-18,"y":-17},{"x":86,"y":217},{"x":89,"y":23},{"x":-35,"y":326},{"x":-29,"y":45},{"x":28,"y":-45},{"x":-23,"y":-27},{"x":-33,"y":89},{"x":-51,"y":36},{"x":-81,"y":-14},{"x":19,"y":-77},{"x":-43,"y":-33},{"x":-28,"y":17},{"x":28,"y":21},{"x":7,"y":69},{"x":-164,"y":-23},{"x":-30,"y":-73},{"x":5,"y":28},{"x":-114,"y":-126},{"x":-7,"y":-153},{"x":20,"y":-5},{"x":-21,"y":-2},{"x":16,"y":-41},{"x":-25,"y":-19},{"x":21,"y":-3},{"x":-29,"y":-14},{"x":-43,"y":-127},{"x":33,"y":206},{"x":-32,"y":10},{"x":-99,"y":-312},{"x":18,"y":-38},{"x":111,"y":-37},{"x":-8,"y":-20}],"type":"coastline"},{"arc":[{"x":125309,"y":81423},{"x":-11,"y":33},{"x":-56,"y":23},{"x":81,"y":186},{"x":-134,"y":132},{"x":24,"y":58},{"x":-145,"y":-298},{"x":58,"y":-76},{"x":-37,"y":-23},{"x":-44,"y":88},{"x":-28,"y":-14},{"x":89,"y":-99},{"x":32,"y":-302},{"x":-2,"y":36},{"x":69,"y":0},{"x":0,"y":-69},{"x":71,"y":0},{"x":0,"y":230},{"x":118,"y":274},{"x":-85,"y":-179}],"type":"coastline"},{"arc":[{"x":125324,"y":80914},{"x":33,"y":2},{"x":45,"y":97},{"x":-45,"y":-96},{"x":-33,"y":-3}],"type":"coastline"},{"arc":[{"x":126026,"y":80418},{"x":-40,"y":64},{"x":-21,"y":-4},{"x":45,"y":-100},{"x":16,"y":40}],"type":"coastline"},{"arc":[{"x":126199,"y":80561},{"x":-44,"y":15},{"x":10,"y":48},{"x":-18,"y":62},{"x":16,"y":-62},{"x":-111,"y":-33},{"x":-20,"y":61},{"x":14,"y":-58},{"x":26,"y":-13},{"x":-37,"y":16},{"x":9,"y":-19},{"x":128,"y":-53},{"x":27,"y":36}],"type":"coastline"},{"arc":[{"x":124776,"y":81860},{"x":-88,"y":-23},{"x":-41,"y":15},{"x":-116,"y":-77},{"x":-162,"y":-24},{"x":-18,"y":30}],"type":"area"},{"arc":[{"x":124351,"y":81781},{"x":24,"y":-67},{"x":-61,"y":-36},{"x":-6,"y":-87},{"x":74,"y":11},{"x":25,"y":-43},{"x":103,"y":-8},{"x":23,"y":-68},{"x":-38,"y":-4},{"x":6,"y":-77}],"type":"area"},{"arc":[{"x":124501,"y":81402},{"x":97,"y":-8},{"x":61,"y":103},{"x":43,"y":4},{"x":24,"y":48},{"x":54,"y":-14},{"x":-42,"y":31},{"x":38,"y":13},{"x":54,"y":-25},{"x":122,"y":33},{"x":114,"y":313},{"x":-40,"y":50},{"x":24,"y":-37},{"x":-48,"y":13},{"x":-7,"y":33},{"x":-58,"y":-129},{"x":-56,"y":23},{"x":97,"y":188},{"x":-28,"y":-20},{"x":-36,"y":25},{"x":-99,"y":-206},{"x":-53,"y":-10},{"x":14,"y":30}],"type":"coastline"},{"arc":[{"x":124305,"y":82666},{"x":-31,"y":-50},{"x":-87,"y":-35},{"x":-41,"y":-134},{"x":-54,"y":-43},{"x":-13,"y":-55},{"x":-46,"y":-1},{"x":72,"y":-48},{"x":140,"y":-176},{"x":-212,"y":-42},{"x":29,"y":-86},{"x":-101,"y":-78},{"x":-36,"y":-81},{"x":17,"y":-80}],"type":"area"},{"arc":[{"x":123942,"y":81757},{"x":127,"y":-16},{"x":108,"y":100},{"x":54,"y":-36},{"x":72,"y":2},{"x":11,"y":23},{"x":-2,"y":-64},{"x":17,"y":24},{"x":22,"y":-9}],"type":"area"},{"arc":[{"x":124776,"y":81860},{"x":-34,"y":22},{"x":34,"y":38},{"x":27,"y":-22},{"x":57,"y":99},{"x":-35,"y":9},{"x":11,"y":20},{"x":26,"y":-24},{"x":33,"y":72},{"x":-83,"y":90},{"x":13,"y":-25},{"x":-14,"y":13},{"x":-19,"y":-35},{"x":-22,"y":11},{"x":8,"y":99},{"x":-93,"y":-160},{"x":18,"y":-44},{"x":-35,"y":-3},{"x":-40,"y":76},{"x":28,"y":-4},{"x":63,"y":147},{"x":-58,"y":54},{"x":-17,"y":-92},{"x":-85,"y":-67},{"x":47,"y":83},{"x":6,"y":86},{"x":-65,"y":-64},{"x":-11,"y":39},{"x":57,"y":32},{"x":25,"y":96},{"x":-42,"y":-47},{"x":0,"y":18},{"x":43,"y":45},{"x":20,"y":99}],"type":"coastline"},{"arc":[{"x":125596,"y":81872},{"x":-37,"y":19},{"x":-30,"y":78},{"x":-12,"y":-75},{"x":52,"y":-65},{"x":27,"y":43}],"type":"coastline"},{"arc":[{"x":125972,"y":81468},{"x":-8,"y":33},{"x":-73,"y":39},{"x":-33,"y":-15},{"x":0,"y":28},{"x":-94,"y":7},{"x":61,"y":-34},{"x":-11,"y":-25},{"x":-29,"y":23},{"x":28,"y":-24},{"x":85,"y":-10},{"x":44,"y":-59},{"x":30,"y":37}],"type":"coastline"},{"arc":[{"x":123808,"y":83164},{"x":-31,"y":-2},{"x":15,"y":-76},{"x":16,"y":78}],"type":"coastline"},{"arc":[{"x":123878,"y":83802},{"x":-18,"y":-100}],"type":"admin"},{"arc":[{"x":123860,"y":83702},{"x":284,"y":-48},{"x":2,"y":112},{"x":-268,"y":36}],"type":"coastline"},{"arc":[{"x":123990,"y":83166},{"x":-67,"y":0},{"x":15,"y":25},{"x":-37,"y":-11},{"x":3,"y":35},{"x":16,"y":32},{"x":97,"y":60},{"x":-98,"y":-61},{"x":-15,"y":-28},{"x":-5,"y":-55},{"x":-37,"y":-9},{"x":59,"y":-165},{"x":-119,"y":-38},{"x":-93,"y":42},{"x":43,"y":164},{"x":-44,"y":-163},{"x":-154,"y":59},{"x":30,"y":136},{"x":-36,"y":-136},{"x":14,"y":153}],"type":"coastline"},{"arc":[{"x":123562,"y":83206},{"x":-251,"y":-217},{"x":-1,"y":-29},{"x":-125,"y":-44},{"x":-63,"y":-202},{"x":51,"y":-71},{"x":-63,"y":-108},{"x":-76,"y":12},{"x":-63,"y":-59},{"x":-92,"y":16},{"x":-99,"y":-35}],"type":"admin"},{"arc":[{"x":122780,"y":82469},{"x":-35,"y":-35},{"x":90,"y":-46},{"x":-179,"y":-78},{"x":-62,"y":-4}],"type":"admin"},{"arc":[{"x":122594,"y":82306},{"x":16,"y":-26},{"x":89,"y":-24},{"x":-12,"y":-67},{"x":32,"y":-10},{"x":-123,"y":-146}],"type":"admin"},{"arc":[{"x":122596,"y":82033},{"x":26,"y":-51},{"x":-8,"y":-80},{"x":-31,"y":-52},{"x":-95,"y":-29},{"x":-17,"y":-29},{"x":17,"y":-67},{"x":-57,"y":-166}],"type":"admin"},{"arc":[{"x":122431,"y":81559},{"x":20,"y":-26},{"x":33,"y":14},{"x":33,"y":-71},{"x":70,"y":-35},{"x":14,"y":-52},{"x":93,"y":-16}],"type":"admin"},{"arc":[{"x":122694,"y":81373},{"x":81,"y":15},{"x":32,"y":-35},{"x":120,"y":3},{"x":59,"y":-32},{"x":90,"y":36},{"x":12,"y":-28},{"x":46,"y":-7}],"type":"admin"},{"arc":[{"x":123134,"y":81325},{"x":36,"y":19},{"x":141,"y":-13},{"x":23,"y":22},{"x":14,"y":-18}],"type":"area"},{"arc":[{"x":123348,"y":81335},{"x":131,"y":43},{"x":99,"y":-32},{"x":69,"y":32},{"x":40,"y":52},{"x":44,"y":-15},{"x":57,"y":106},{"x":-23,"y":70},{"x":84,"y":45},{"x":93,"y":121}],"type":"area"},{"arc":[{"x":123348,"y":81335},{"x":77,"y":-39},{"x":38,"y":-95},{"x":33,"y":24},{"x":55,"y":-24},{"x":30,"y":22},{"x":56,"y":-4},{"x":107,"y":-109},{"x":189,"y":119},{"x":49,"y":-66},{"x":131,"y":36},{"x":149,"y":-82},{"x":24,"y":34},{"x":131,"y":-3}],"type":"area"},{"arc":[{"x":124417,"y":81148},{"x":61,"y":31},{"x":33,"y":125},{"x":73,"y":61},{"x":-124,"y":15},{"x":-95,"y":-51},{"x":6,"y":-52},{"x":18,"y":1},{"x":-19,"y":-5},{"x":-8,"y":53},{"x":6,"y":37},{"x":59,"y":60},{"x":74,"y":-21}],"type":"coastline"},{"arc":[{"x":124537,"y":80757},{"x":-124,"y":46},{"x":-38,"y":-81},{"x":-16,"y":15},{"x":76,"y":314},{"x":-71,"y":-21},{"x":85,"y":49},{"x":16,"y":69},{"x":-62,"y":-28},{"x":14,"y":28}],"type":"coastline"},{"arc":[{"x":123134,"y":81325},{"x":44,"y":-47},{"x":-6,"y":-65},{"x":69,"y":-43},{"x":16,"y":-122},{"x":-45,"y":-59},{"x":-93,"y":-1},{"x":-26,"y":-64},{"x":-52,"y":-34},{"x":-11,"y":-43},{"x":44,"y":-74},{"x":-19,"y":-81},{"x":60,"y":-137},{"x":-14,"y":-44},{"x":276,"y":-140}],"type":"admin"},{"arc":[{"x":123377,"y":80371},{"x":66,"y":-37}],"type":"admin"},{"arc":[{"x":123443,"y":80334},{"x":40,"y":33},{"x":33,"y":99},{"x":51,"y":-35},{"x":-57,"y":91},{"x":-63,"y":-9},{"x":24,"y":48},{"x":115,"y":58},{"x":48,"y":125},{"x":54,"y":-12},{"x":59,"y":-127},{"x":111,"y":-33},{"x":-21,"y":-32},{"x":26,"y":-52}],"type":"admin"},{"arc":[{"x":123863,"y":80488},{"x":20,"y":26},{"x":107,"y":-24},{"x":28,"y":-57},{"x":55,"y":-31},{"x":16,"y":-61},{"x":54,"y":11},{"x":13,"y":-50},{"x":60,"y":-14},{"x":69,"y":-60},{"x":80,"y":26},{"x":3,"y":-24},{"x":50,"y":-12},{"x":-1,"y":-47},{"x":125,"y":-56}],"type":"admin"},{"arc":[{"x":121188,"y":77170},{"x":-39,"y":-116},{"x":40,"y":116},{"x":152,"y":50},{"x":79,"y":-46},{"x":-79,"y":47},{"x":-153,"y":-51}],"type":"coastline"},{"arc":[{"x":121473,"y":77246},{"x":-10,"y":30},{"x":10,"y":-30},{"x":-29,"y":-9},{"x":29,"y":9}],"type":"coastline"},{"arc":[{"x":121850,"y":77413},{"x":-128,"y":74},{"x":-40,"y":-18},{"x":-48,"y":-93},{"x":18,"y":-24},{"x":-24,"y":11},{"x":46,"y":-22},{"x":-65,"y":-129},{"x":36,"y":-23},{"x":-16,"y":-28},{"x":82,"y":-20},{"x":73,"y":149},{"x":64,"y":69},{"x":2,"y":54}],"type":"coastline"},{"arc":[{"x":122029,"y":76157},{"x":-47,"y":62},{"x":-216,"y":81},{"x":-51,"y":43},{"x":15,"y":-30},{"x":-53,"y":20},{"x":-15,"y":-29},{"x":17,"y":13},{"x":6,"y":-29},{"x":-32,"y":-31},{"x":-11,"y":25},{"x":17,"y":-134},{"x":125,"y":-96},{"x":94,"y":-3},{"x":24,"y":-32},{"x":105,"y":42},{"x":22,"y":98}],"type":"coastline"},{"arc":[{"x":121903,"y":77906},{"x":-76,"y":-16},{"x":-60,"y":38},{"x":-21,"y":-19},{"x":-154,"y":107},{"x":-79,"y":-3},{"x":33,"y":65},{"x":-52,"y":17},{"x":28,"y":34},{"x":-43,"y":47},{"x":-54,"y":-28},{"x":-89,"y":22}],"type":"admin"},{"arc":[{"x":121336,"y":78170},{"x":-51,"y":-6},{"x":-17,"y":-73},{"x":-32,"y":-9},{"x":131,"y":-141},{"x":-70,"y":-45},{"x":-20,"y":-68},{"x":-71,"y":-42},{"x":6,"y":-31},{"x":-77,"y":-26},{"x":-78,"y":-109},{"x":-48,"y":38},{"x":-28,"y":-24}],"type":"admin"},{"arc":[{"x":120981,"y":77634},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":120977,"y":77632},{"x":60,"y":-137},{"x":-31,"y":0},{"x":-9,"y":-34},{"x":39,"y":-11},{"x":-59,"y":-20},{"x":27,"y":-50},{"x":-32,"y":-23},{"x":46,"y":-37},{"x":1,"y":-66},{"x":50,"y":-62}],"type":"area"},{"arc":[{"x":121069,"y":77192},{"x":61,"y":17},{"x":-6,"y":135},{"x":36,"y":6},{"x":-26,"y":-21},{"x":55,"y":-101},{"x":124,"y":66},{"x":19,"y":-56},{"x":114,"y":37},{"x":-23,"y":28},{"x":27,"y":9},{"x":12,"y":-32},{"x":-44,"y":128},{"x":21,"y":9},{"x":67,"y":-2},{"x":-1,"y":-85},{"x":52,"y":-83},{"x":106,"y":212},{"x":-20,"y":73},{"x":40,"y":20},{"x":163,"y":-92},{"x":57,"y":74},{"x":104,"y":-37},{"x":-67,"y":-244},{"x":-44,"y":-29},{"x":-40,"y":44},{"x":-61,"y":-89},{"x":-79,"y":-318},{"x":-83,"y":-76},{"x":-122,"y":-13},{"x":-37,"y":33},{"x":-22,"y":-20},{"x":-3,"y":-47},{"x":60,"y":-57},{"x":45,"y":-109},{"x":-33,"y":-60},{"x":126,"y":-83},{"x":20,"y":-77},{"x":12,"y":288},{"x":147,"y":320},{"x":182,"y":240},{"x":71,"y":54},{"x":29,"y":-12},{"x":-26,"y":21},{"x":18,"y":16},{"x":13,"y":-42},{"x":18,"y":74},{"x":68,"y":53},{"x":122,"y":17}],"type":"coastline"},{"arc":[{"x":122321,"y":77381},{"x":-21,"y":66},{"x":-31,"y":-8},{"x":17,"y":49},{"x":-138,"y":134},{"x":28,"y":5},{"x":-42,"y":63},{"x":-72,"y":5},{"x":-159,"y":71},{"x":44,"y":98},{"x":-44,"y":42}],"type":"admin"},{"arc":[{"x":120977,"y":77632},{"x":-47,"y":85},{"x":-82,"y":52},{"x":9,"y":39},{"x":-126,"y":84},{"x":-41,"y":63},{"x":-125,"y":61},{"x":-83,"y":-21},{"x":2,"y":53},{"x":-32,"y":-8},{"x":-58,"y":41}],"type":"admin"},{"arc":[{"x":120394,"y":78081},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":120393,"y":78081},{"x":-100,"y":-98},{"x":137,"y":-103},{"x":-24,"y":-58},{"x":-142,"y":107},{"x":-28,"y":-26},{"x":-47,"y":28},{"x":-25,"y":-25},{"x":-53,"y":2}],"type":"admin"},{"arc":[{"x":120111,"y":77908},{"x":-26,"y":-57},{"x":164,"y":-116}],"type":"admin"},{"arc":[{"x":120249,"y":77735},{"x":174,"y":-124},{"x":40,"y":-49},{"x":-12,"y":-23},{"x":117,"y":-98},{"x":35,"y":-86}],"type":"area"},{"arc":[{"x":120603,"y":77355},{"x":74,"y":-55},{"x":78,"y":-8},{"x":70,"y":-80},{"x":114,"y":-48}],"type":"area"},{"arc":[{"x":120939,"y":77164},{"x":30,"y":2},{"x":-30,"y":25},{"x":21,"y":25},{"x":66,"y":-62},{"x":43,"y":38}],"type":"coastline"},{"arc":[{"x":120603,"y":77355},{"x":-86,"y":-176},{"x":-49,"y":8},{"x":-17,"y":-30},{"x":-83,"y":-8},{"x":20,"y":-79}],"type":"area"},{"arc":[{"x":120388,"y":77070},{"x":34,"y":-116},{"x":209,"y":-36},{"x":33,"y":-80}],"type":"area"},{"arc":[{"x":120664,"y":76838},{"x":190,"y":-93}],"type":"area"},{"arc":[{"x":120854,"y":76745},{"x":63,"y":110},{"x":-10,"y":53},{"x":54,"y":15},{"x":11,"y":42},{"x":-35,"y":-4},{"x":-6,"y":41},{"x":-50,"y":18},{"x":-26,"y":2},{"x":-9,"y":-40},{"x":-27,"y":17},{"x":28,"y":30},{"x":-24,"y":18},{"x":39,"y":22},{"x":-23,"y":11},{"x":23,"y":45},{"x":37,"y":-18},{"x":-2,"y":-70},{"x":21,"y":37},{"x":74,"y":-37},{"x":28,"y":55},{"x":-94,"y":47},{"x":13,"y":25}],"type":"coastline"},{"arc":[{"x":120249,"y":77735},{"x":-28,"y":-104},{"x":-87,"y":-29},{"x":-89,"y":37},{"x":-48,"y":-73},{"x":-50,"y":16},{"x":-26,"y":-35}],"type":"admin"},{"arc":[{"x":119921,"y":77547},{"x":-3,"y":-58},{"x":98,"y":-16},{"x":-4,"y":-16},{"x":-83,"y":-88},{"x":13,"y":-43},{"x":-46,"y":-65},{"x":-34,"y":-26},{"x":-56,"y":4},{"x":-10,"y":-63},{"x":-78,"y":-25},{"x":22,"y":-48},{"x":-39,"y":-92},{"x":34,"y":-51},{"x":-43,"y":-62}],"type":"admin"},{"arc":[{"x":119692,"y":76898},{"x":91,"y":-68},{"x":72,"y":7}],"type":"area"},{"arc":[{"x":119855,"y":76837},{"x":-25,"y":103},{"x":78,"y":19},{"x":85,"y":74},{"x":125,"y":22},{"x":23,"y":17},{"x":-15,"y":34},{"x":262,"y":-36}],"type":"area"},{"arc":[{"x":121382,"y":76180},{"x":-43,"y":62},{"x":-64,"y":-2},{"x":-88,"y":62},{"x":-64,"y":7},{"x":-86,"y":-32},{"x":8,"y":-24},{"x":-9,"y":17},{"x":-34,"y":-16},{"x":-25,"y":-57},{"x":29,"y":-58},{"x":105,"y":-38},{"x":93,"y":53},{"x":143,"y":-10},{"x":35,"y":36}],"type":"coastline"},{"arc":[{"x":120843,"y":76608},{"x":-116,"y":-2},{"x":-166,"y":-164},{"x":-426,"y":-31},{"x":-54,"y":-21},{"x":-216,"y":9},{"x":-39,"y":-81},{"x":-105,"y":-18},{"x":-19,"y":-52},{"x":4,"y":-120},{"x":90,"y":-51}],"type":"area"},{"arc":[{"x":119796,"y":76077},{"x":77,"y":4},{"x":46,"y":-58},{"x":198,"y":24},{"x":119,"y":-206},{"x":28,"y":-26},{"x":83,"y":-9},{"x":-17,"y":-82},{"x":32,"y":-30},{"x":-22,"y":-51},{"x":22,"y":-48},{"x":-76,"y":-49},{"x":44,"y":-43},{"x":32,"y":-4},{"x":15,"y":36},{"x":95,"y":-29},{"x":28,"y":35},{"x":69,"y":7},{"x":91,"y":-40},{"x":-24,"y":-146},{"x":116,"y":-111},{"x":96,"y":-18},{"x":9,"y":-30},{"x":99,"y":34},{"x":61,"y":-48},{"x":37,"y":16},{"x":25,"y":-27},{"x":181,"y":19},{"x":104,"y":-41},{"x":36,"y":-51}],"type":"admin"},{"arc":[{"x":121400,"y":75105},{"x":31,"y":34},{"x":41,"y":-5},{"x":29,"y":71},{"x":56,"y":-13},{"x":-24,"y":19},{"x":41,"y":12},{"x":-9,"y":-25},{"x":180,"y":9},{"x":1,"y":35},{"x":-147,"y":205},{"x":-56,"y":19},{"x":-24,"y":43},{"x":-40,"y":1},{"x":-73,"y":-55},{"x":48,"y":30},{"x":-25,"y":-57},{"x":-18,"y":18},{"x":11,"y":-23},{"x":-42,"y":5},{"x":-11,"y":-37},{"x":-39,"y":-16},{"x":-94,"y":58},{"x":24,"y":27},{"x":-19,"y":8},{"x":-6,"y":-35},{"x":-121,"y":21},{"x":-72,"y":170},{"x":-9,"y":145},{"x":29,"y":54},{"x":-21,"y":67},{"x":-99,"y":16},{"x":-127,"y":-82},{"x":38,"y":7},{"x":-7,"y":-25},{"x":85,"y":-28},{"x":-35,"y":-126},{"x":-42,"y":10},{"x":-75,"y":86},{"x":39,"y":6},{"x":9,"y":47},{"x":-86,"y":11},{"x":-72,"y":89},{"x":-14,"y":102},{"x":29,"y":20},{"x":-39,"y":62},{"x":40,"y":114},{"x":59,"y":86},{"x":61,"y":-12},{"x":-30,"y":7},{"x":34,"y":24},{"x":4,"y":-37},{"x":27,"y":1},{"x":31,"y":28},{"x":8,"y":123},{"x":-62,"y":-12},{"x":27,"y":27},{"x":-27,"y":10},{"x":57,"y":2},{"x":6,"y":-19},{"x":9,"y":47},{"x":-46,"y":134}],"type":"coastline"},{"arc":[{"x":121884,"y":75327},{"x":-22,"y":15},{"x":9,"y":-28},{"x":13,"y":13}],"type":"coastline"},{"arc":[{"x":122092,"y":75427},{"x":-46,"y":85},{"x":-94,"y":10},{"x":-22,"y":-9},{"x":-6,"y":-23},{"x":19,"y":30},{"x":15,"y":-3},{"x":-9,"y":-26},{"x":-14,"y":1},{"x":8,"y":-25},{"x":-16,"y":7},{"x":104,"y":-90},{"x":44,"y":-1},{"x":17,"y":44}],"type":"coastline"},{"arc":[{"x":124365,"y":73435},{"x":-103,"y":27},{"x":-38,"y":-5},{"x":-17,"y":-16},{"x":22,"y":13},{"x":-14,"y":-30},{"x":23,"y":-24},{"x":-36,"y":27},{"x":37,"y":-29},{"x":126,"y":37}],"type":"coastline"},{"arc":[{"x":119855,"y":76837},{"x":27,"y":15},{"x":69,"y":-28},{"x":94,"y":3},{"x":22,"y":-46},{"x":110,"y":-39},{"x":20,"y":-75},{"x":55,"y":-8},{"x":85,"y":31},{"x":26,"y":45},{"x":81,"y":14},{"x":2,"y":-22},{"x":134,"y":39},{"x":3,"y":43},{"x":81,"y":29}],"type":"area"},{"arc":[{"x":119692,"y":76898},{"x":-113,"y":83},{"x":-196,"y":21},{"x":-181,"y":70},{"x":-50,"y":-23},{"x":-91,"y":21},{"x":-71,"y":114},{"x":-76,"y":8},{"x":-41,"y":51},{"x":-39,"y":-16},{"x":41,"y":-73},{"x":-94,"y":19},{"x":-10,"y":-20},{"x":-18,"y":18},{"x":-40,"y":-15}],"type":"admin"},{"arc":[{"x":118713,"y":77156},{"x":-17,"y":-70},{"x":27,"y":-27},{"x":-41,"y":-89}],"type":"admin"},{"arc":[{"x":118682,"y":76970},{"x":143,"y":-97},{"x":-29,"y":-18},{"x":-10,"y":-117},{"x":150,"y":-107},{"x":-6,"y":-58}],"type":"admin"},{"arc":[{"x":118930,"y":76573},{"x":8,"y":-36},{"x":67,"y":-15},{"x":98,"y":-141},{"x":-3,"y":-76},{"x":40,"y":-12},{"x":28,"y":-69},{"x":-27,"y":-32},{"x":20,"y":-62},{"x":82,"y":-59},{"x":121,"y":-150},{"x":6,"y":-48}],"type":"admin"},{"arc":[{"x":119370,"y":75873},{"x":112,"y":6},{"x":15,"y":35},{"x":75,"y":-43},{"x":80,"y":62},{"x":63,"y":17},{"x":6,"y":63},{"x":67,"y":-13},{"x":-42,"y":50},{"x":50,"y":27}],"type":"admin"},{"arc":[{"x":120843,"y":76608},{"x":11,"y":137}],"type":"coastline"},{"arc":[{"x":127231,"y":65206},{"x":-14,"y":41},{"x":-41,"y":-17},{"x":31,"y":-45},{"x":24,"y":21}],"type":"coastline"},{"arc":[{"x":129135,"y":66076},{"x":-37,"y":-4},{"x":24,"y":-14},{"x":13,"y":18}],"type":"coastline"},{"arc":[{"x":129755,"y":65937},{"x":-41,"y":36},{"x":-57,"y":2},{"x":98,"y":-38}],"type":"coastline"},{"arc":[{"x":129770,"y":65123},{"x":-51,"y":9},{"x":19,"y":-37},{"x":32,"y":28}],"type":"coastline"},{"arc":[{"x":129807,"y":66682},{"x":-6,"y":43},{"x":-45,"y":11},{"x":-1,"y":53},{"x":-46,"y":-6},{"x":-228,"y":-195},{"x":-2,"y":-61},{"x":-94,"y":-92},{"x":187,"y":-122},{"x":14,"y":77},{"x":98,"y":-35},{"x":-14,"y":34},{"x":17,"y":-16},{"x":43,"y":34},{"x":-56,"y":41},{"x":66,"y":-28},{"x":13,"y":37},{"x":-31,"y":42},{"x":24,"y":-28},{"x":-1,"y":50},{"x":45,"y":19},{"x":-76,"y":15},{"x":19,"y":15},{"x":-46,"y":4},{"x":-47,"y":56},{"x":52,"y":-35},{"x":31,"y":27},{"x":48,"y":-49},{"x":4,"y":21},{"x":24,"y":-5},{"x":-17,"y":37},{"x":20,"y":-7},{"x":0,"y":31},{"x":-55,"y":28},{"x":60,"y":4}],"type":"coastline"},{"arc":[{"x":129838,"y":66109},{"x":-44,"y":14},{"x":19,"y":-16},{"x":-39,"y":-12},{"x":14,"y":-21},{"x":-23,"y":6},{"x":-16,"y":-32},{"x":26,"y":7},{"x":7,"y":-27},{"x":56,"y":81}],"type":"coastline"},{"arc":[{"x":129832,"y":66769},{"x":-24,"y":-38},{"x":35,"y":54},{"x":-11,"y":-16}],"type":"coastline"},{"arc":[{"x":129980,"y":65839},{"x":-55,"y":-15},{"x":33,"y":-18},{"x":22,"y":33}],"type":"coastline"},{"arc":[{"x":130052,"y":66806},{"x":-88,"y":-15},{"x":11,"y":74},{"x":-27,"y":46},{"x":54,"y":67},{"x":-38,"y":16},{"x":-63,"y":-189},{"x":117,"y":-78},{"x":34,"y":79}],"type":"coastline"},{"arc":[{"x":130115,"y":66735},{"x":-28,"y":-9},{"x":18,"y":-11},{"x":10,"y":20}],"type":"coastline"},{"arc":[{"x":130153,"y":64845},{"x":-64,"y":99},{"x":63,"y":64},{"x":-92,"y":68},{"x":-47,"y":-11},{"x":-21,"y":24},{"x":-23,"y":-21},{"x":-13,"y":21},{"x":-32,"y":-12},{"x":21,"y":-8},{"x":-20,"y":-22},{"x":2,"y":21},{"x":-65,"y":-43},{"x":2,"y":40},{"x":-48,"y":-44},{"x":-94,"y":1},{"x":-21,"y":34},{"x":-1,"y":-28},{"x":-70,"y":-10},{"x":52,"y":18},{"x":1,"y":33},{"x":42,"y":7},{"x":-15,"y":28},{"x":-45,"y":-15},{"x":-12,"y":29},{"x":22,"y":37},{"x":37,"y":-8},{"x":-8,"y":25},{"x":35,"y":-19},{"x":22,"y":26},{"x":-32,"y":70},{"x":18,"y":-10},{"x":14,"y":47},{"x":25,"y":-10},{"x":37,"y":30},{"x":15,"y":44},{"x":62,"y":16},{"x":-63,"y":6},{"x":23,"y":38},{"x":-20,"y":15},{"x":-27,"y":-37},{"x":15,"y":-25},{"x":-27,"y":25},{"x":-18,"y":-13},{"x":15,"y":-46},{"x":-59,"y":-6},{"x":22,"y":86},{"x":-107,"y":-35},{"x":-11,"y":65},{"x":108,"y":-8},{"x":-7,"y":29},{"x":26,"y":-13},{"x":19,"y":33},{"x":29,"y":-5},{"x":13,"y":139},{"x":-37,"y":26},{"x":-73,"y":-39},{"x":-30,"y":70},{"x":-30,"y":-8},{"x":5,"y":-24},{"x":-107,"y":-3},{"x":-77,"y":94},{"x":44,"y":1},{"x":43,"y":-53},{"x":32,"y":13},{"x":25,"y":-31},{"x":12,"y":93},{"x":92,"y":-72},{"x":2,"y":-31},{"x":79,"y":11},{"x":-1,"y":52},{"x":54,"y":-46},{"x":-38,"y":-28},{"x":46,"y":-57},{"x":52,"y":42},{"x":-35,"y":-77},{"x":20,"y":19},{"x":53,"y":-47},{"x":14,"y":40},{"x":14,"y":-77},{"x":32,"y":-17},{"x":90,"y":13},{"x":-87,"y":8},{"x":3,"y":37},{"x":29,"y":-4},{"x":-39,"y":56},{"x":13,"y":19},{"x":25,"y":-35},{"x":36,"y":39},{"x":-41,"y":-4},{"x":-35,"y":42},{"x":-37,"y":-32},{"x":-23,"y":15},{"x":-6,"y":32},{"x":63,"y":22},{"x":-4,"y":30},{"x":-83,"y":-19},{"x":84,"y":83},{"x":-65,"y":-10},{"x":-12,"y":-31},{"x":1,"y":29},{"x":-69,"y":-9},{"x":29,"y":24},{"x":-16,"y":39},{"x":-54,"y":-3},{"x":-3,"y":-26},{"x":-19,"y":24},{"x":-42,"y":-19},{"x":30,"y":52},{"x":16,"y":-16},{"x":14,"y":18},{"x":2,"y":-20},{"x":55,"y":17},{"x":-43,"y":18},{"x":49,"y":31},{"x":-25,"y":4},{"x":0,"y":37},{"x":-31,"y":-4},{"x":-8,"y":-54},{"x":-41,"y":10},{"x":-4,"y":-34},{"x":-36,"y":11},{"x":-27,"y":-34},{"x":10,"y":18},{"x":-20,"y":41},{"x":-20,"y":2},{"x":24,"y":-18},{"x":-10,"y":-25},{"x":-8,"y":30},{"x":-65,"y":-46},{"x":-95,"y":-19},{"x":3,"y":43},{"x":-68,"y":28},{"x":14,"y":15},{"x":20,"y":-18},{"x":5,"y":23},{"x":5,"y":-27},{"x":32,"y":-4},{"x":-20,"y":26},{"x":23,"y":-14},{"x":8,"y":31},{"x":34,"y":-32},{"x":35,"y":34},{"x":-36,"y":-12},{"x":26,"y":30},{"x":-58,"y":-7},{"x":-77,"y":46},{"x":-24,"y":45},{"x":101,"y":-69},{"x":6,"y":63},{"x":21,"y":-33},{"x":48,"y":45},{"x":-28,"y":-52},{"x":47,"y":41},{"x":-8,"y":-46},{"x":47,"y":76},{"x":2,"y":-48},{"x":33,"y":2},{"x":-3,"y":26},{"x":25,"y":-39},{"x":-13,"y":45},{"x":-59,"y":38},{"x":38,"y":44},{"x":-16,"y":38},{"x":45,"y":-9},{"x":-6,"y":45},{"x":-27,"y":20},{"x":-29,"y":-23},{"x":-6,"y":20},{"x":-28,"y":-46},{"x":-23,"y":29},{"x":52,"y":31},{"x":1,"y":43},{"x":11,"y":-27},{"x":22,"y":25},{"x":13,"y":-38},{"x":34,"y":17},{"x":-49,"y":58},{"x":-18,"y":-15},{"x":10,"y":22},{"x":-48,"y":-27},{"x":19,"y":38},{"x":56,"y":14},{"x":-56,"y":-2},{"x":-40,"y":27},{"x":-46,"y":-48},{"x":-119,"y":80},{"x":13,"y":-124},{"x":-80,"y":-68},{"x":43,"y":-9},{"x":19,"y":-51},{"x":-49,"y":-22},{"x":-22,"y":16},{"x":-41,"y":-44},{"x":-59,"y":25},{"x":13,"y":-48},{"x":-35,"y":3},{"x":28,"y":-35},{"x":-25,"y":-26},{"x":-13,"y":65},{"x":-51,"y":13},{"x":-22,"y":-57},{"x":-56,"y":-20},{"x":-50,"y":11},{"x":-43,"y":-24},{"x":21,"y":22},{"x":-57,"y":1},{"x":4,"y":31},{"x":-64,"y":29},{"x":-34,"y":-60},{"x":-8,"y":63},{"x":-68,"y":23},{"x":-15,"y":-53},{"x":23,"y":-24},{"x":-40,"y":3},{"x":-111,"y":-142},{"x":68,"y":-6},{"x":4,"y":-27},{"x":11,"y":30},{"x":5,"y":-70},{"x":-15,"y":25},{"x":-3,"y":-31},{"x":-70,"y":-14},{"x":22,"y":17},{"x":-33,"y":-7},{"x":-43,"y":77},{"x":-33,"y":-39},{"x":-79,"y":1},{"x":4,"y":-25},{"x":-31,"y":19},{"x":-24,"y":-23},{"x":-41,"y":14},{"x":-18,"y":-27},{"x":24,"y":-48},{"x":11,"y":16},{"x":50,"y":-49},{"x":-55,"y":9},{"x":-63,"y":-25},{"x":-41,"y":-48},{"x":-5,"y":48},{"x":48,"y":10},{"x":12,"y":39},{"x":-70,"y":24},{"x":4,"y":30},{"x":-88,"y":-10},{"x":-1,"y":-52},{"x":-44,"y":-28},{"x":-5,"y":63},{"x":-35,"y":25},{"x":-32,"y":-26},{"x":-26,"y":23},{"x":-82,"y":-8},{"x":7,"y":-57},{"x":44,"y":-44},{"x":-13,"y":-34},{"x":-24,"y":-13},{"x":-66,"y":30},{"x":2,"y":-25},{"x":-49,"y":-18},{"x":-114,"y":50},{"x":19,"y":-117},{"x":-199,"y":87},{"x":32,"y":-61},{"x":-37,"y":-18},{"x":-19,"y":17},{"x":-17,"y":-24},{"x":-17,"y":-101},{"x":26,"y":-33},{"x":-21,"y":-17},{"x":30,"y":-8},{"x":-31,"y":-45},{"x":-50,"y":49},{"x":2,"y":32},{"x":-103,"y":-10},{"x":-61,"y":-68},{"x":32,"y":-82},{"x":-83,"y":-9},{"x":-14,"y":-52},{"x":-37,"y":-9},{"x":16,"y":-27},{"x":28,"y":13},{"x":96,"y":-28},{"x":10,"y":-48},{"x":-236,"y":-15},{"x":36,"y":-64},{"x":-16,"y":-42},{"x":-104,"y":11},{"x":-55,"y":-68},{"x":59,"y":-11},{"x":87,"y":45},{"x":63,"y":4},{"x":56,"y":-61},{"x":68,"y":40},{"x":34,"y":-9},{"x":5,"y":-24},{"x":-51,"y":-9},{"x":7,"y":-19},{"x":-17,"y":22},{"x":-12,"y":-21},{"x":-18,"y":11},{"x":19,"y":-52},{"x":-53,"y":-31},{"x":29,"y":-12},{"x":1,"y":-48},{"x":90,"y":-5},{"x":73,"y":-132},{"x":-15,"y":-16},{"x":-18,"y":28},{"x":4,"y":-25},{"x":-31,"y":-1},{"x":-7,"y":23},{"x":-1,"y":-79},{"x":-92,"y":-35},{"x":-56,"y":-59},{"x":30,"y":-13},{"x":40,"y":29},{"x":24,"y":-12},{"x":32,"y":26},{"x":80,"y":9},{"x":157,"y":-41},{"x":147,"y":-2},{"x":66,"y":24},{"x":30,"y":34},{"x":-11,"y":30},{"x":45,"y":-33},{"x":47,"y":-4},{"x":27,"y":24},{"x":93,"y":-22},{"x":53,"y":44},{"x":-23,"y":0},{"x":8,"y":17},{"x":98,"y":-23},{"x":138,"y":55},{"x":41,"y":-16},{"x":-34,"y":7},{"x":16,"y":-27},{"x":389,"y":15},{"x":102,"y":24},{"x":41,"y":75},{"x":25,"y":-16},{"x":-18,"y":21},{"x":30,"y":13},{"x":-4,"y":-27},{"x":11,"y":32},{"x":145,"y":-66},{"x":44,"y":2},{"x":123,"y":70},{"x":104,"y":24},{"x":36,"y":51},{"x":15,"y":-20},{"x":33,"y":25},{"x":5,"y":-61},{"x":103,"y":42},{"x":47,"y":-30},{"x":200,"y":40},{"x":133,"y":-30},{"x":22,"y":51},{"x":55,"y":-29},{"x":62,"y":56},{"x":103,"y":20}],"type":"coastline"},{"arc":[{"x":130224,"y":65796},{"x":-11,"y":41},{"x":-37,"y":-20},{"x":-31,"y":37},{"x":0,"y":68},{"x":-61,"y":29},{"x":-4,"y":55},{"x":25,"y":35},{"x":13,"y":-51},{"x":-1,"y":40},{"x":36,"y":-17},{"x":4,"y":47},{"x":31,"y":-18},{"x":26,"y":55},{"x":-34,"y":15},{"x":6,"y":-39},{"x":-51,"y":45},{"x":-23,"y":-19},{"x":-15,"y":46},{"x":-30,"y":-74},{"x":-8,"y":34},{"x":-34,"y":9},{"x":34,"y":10},{"x":-116,"y":7},{"x":-20,"y":31},{"x":28,"y":15},{"x":12,"y":-30},{"x":-6,"y":47},{"x":-93,"y":-29},{"x":-55,"y":6},{"x":28,"y":-48},{"x":27,"y":30},{"x":38,"y":-11},{"x":-76,"y":-61},{"x":2,"y":-44},{"x":34,"y":69},{"x":19,"y":-14},{"x":21,"y":31},{"x":10,"y":-21},{"x":10,"y":27},{"x":-11,"y":-46},{"x":-36,"y":-3},{"x":-6,"y":-22},{"x":25,"y":10},{"x":-39,"y":-36},{"x":58,"y":-4},{"x":26,"y":68},{"x":11,"y":-25},{"x":24,"y":28},{"x":18,"y":-12},{"x":-61,"y":-42},{"x":-17,"y":-47},{"x":39,"y":-5},{"x":42,"y":55},{"x":-27,"y":-73},{"x":33,"y":12},{"x":-45,"y":-35},{"x":59,"y":23},{"x":9,"y":-28},{"x":20,"y":8},{"x":2,"y":61},{"x":25,"y":-31},{"x":15,"y":-52},{"x":-80,"y":-33},{"x":74,"y":2},{"x":-44,"y":-13},{"x":-4,"y":-54},{"x":68,"y":28},{"x":-10,"y":-30},{"x":27,"y":-16},{"x":17,"y":25},{"x":11,"y":-18},{"x":-104,"y":-54},{"x":10,"y":-45},{"x":173,"y":71}],"type":"coastline"},{"arc":[{"x":130315,"y":66178},{"x":-55,"y":-8},{"x":47,"y":-10},{"x":8,"y":18}],"type":"coastline"},{"arc":[{"x":130399,"y":66322},{"x":-41,"y":-24},{"x":13,"y":-39},{"x":-46,"y":0},{"x":14,"y":-16},{"x":46,"y":12},{"x":14,"y":67}],"type":"coastline"},{"arc":[{"x":130451,"y":66281},{"x":-41,"y":-63},{"x":36,"y":13},{"x":5,"y":50}],"type":"coastline"},{"arc":[{"x":130512,"y":66824},{"x":-79,"y":62},{"x":-61,"y":-46},{"x":44,"y":55},{"x":-38,"y":35},{"x":-32,"y":-56},{"x":-61,"y":-30},{"x":-11,"y":27},{"x":36,"y":4},{"x":8,"y":35},{"x":-80,"y":25},{"x":-35,"y":-14},{"x":24,"y":-59},{"x":-35,"y":-7},{"x":-9,"y":-38},{"x":54,"y":37},{"x":-35,"y":-43},{"x":68,"y":23},{"x":-44,"y":-28},{"x":34,"y":-8},{"x":-27,"y":-9},{"x":28,"y":-9},{"x":2,"y":-37},{"x":27,"y":2},{"x":0,"y":30},{"x":9,"y":-26},{"x":18,"y":20},{"x":27,"y":-17},{"x":-39,"y":48},{"x":67,"y":-42},{"x":39,"y":36},{"x":25,"y":-22},{"x":37,"y":24},{"x":-33,"y":31},{"x":60,"y":-22},{"x":12,"y":19}],"type":"coastline"},{"arc":[{"x":130555,"y":66985},{"x":-94,"y":-7},{"x":8,"y":-20},{"x":-41,"y":16},{"x":-33,"y":-54},{"x":54,"y":1},{"x":-6,"y":-18},{"x":23,"y":28},{"x":24,"y":-19},{"x":-21,"y":-15},{"x":39,"y":-18},{"x":19,"y":20},{"x":-24,"y":36},{"x":52,"y":50}],"type":"coastline"},{"arc":[{"x":130554,"y":65689},{"x":-27,"y":5},{"x":17,"y":-23},{"x":10,"y":18}],"type":"coastline"},{"arc":[{"x":130590,"y":65808},{"x":-27,"y":-24},{"x":58,"y":19},{"x":-31,"y":5}],"type":"coastline"},{"arc":[{"x":131325,"y":65468},{"x":-31,"y":33},{"x":-26,"y":-8},{"x":6,"y":23},{"x":-32,"y":-15},{"x":61,"y":-43},{"x":22,"y":10}],"type":"coastline"},{"arc":[{"x":131410,"y":65482},{"x":-40,"y":-4},{"x":-16,"y":-26},{"x":56,"y":30}],"type":"coastline"},{"arc":[{"x":133954,"y":67758},{"x":-8,"y":18},{"x":-24,"y":-21},{"x":18,"y":-15},{"x":14,"y":18}],"type":"coastline"},{"arc":[{"x":134604,"y":67678},{"x":-12,"y":32},{"x":-36,"y":-36},{"x":46,"y":-21},{"x":2,"y":25}],"type":"coastline"},{"arc":[{"x":134899,"y":67368},{"x":-45,"y":-7},{"x":-21,"y":27},{"x":-55,"y":-34},{"x":-18,"y":14},{"x":41,"y":22},{"x":-38,"y":5},{"x":67,"y":22},{"x":12,"y":44},{"x":-38,"y":-32},{"x":-30,"y":22},{"x":-5,"y":-29},{"x":-50,"y":28},{"x":43,"y":-3},{"x":-7,"y":21},{"x":37,"y":8},{"x":-14,"y":23},{"x":53,"y":17},{"x":-33,"y":20},{"x":-44,"y":-15},{"x":5,"y":64},{"x":-27,"y":33},{"x":-50,"y":-20},{"x":64,"y":113},{"x":-38,"y":-36},{"x":-44,"y":7},{"x":-16,"y":-89},{"x":-40,"y":1},{"x":16,"y":43},{"x":-43,"y":-44},{"x":-8,"y":48},{"x":-33,"y":-5},{"x":-4,"y":-41},{"x":-69,"y":34},{"x":42,"y":-5},{"x":36,"y":47},{"x":-40,"y":15},{"x":-40,"y":-19},{"x":48,"y":35},{"x":-7,"y":48},{"x":99,"y":5},{"x":1,"y":70},{"x":-39,"y":-20},{"x":-33,"y":32},{"x":2,"y":-74},{"x":-43,"y":20},{"x":0,"y":-44},{"x":-88,"y":-13},{"x":-36,"y":68},{"x":54,"y":71},{"x":-52,"y":-21},{"x":-49,"y":-105},{"x":-21,"y":-19},{"x":4,"y":30},{"x":-21,"y":-12},{"x":5,"y":-31},{"x":-25,"y":-5},{"x":-8,"y":25},{"x":-44,"y":-37},{"x":54,"y":-17},{"x":2,"y":-72},{"x":40,"y":-9},{"x":-51,"y":-7},{"x":-20,"y":-54},{"x":-5,"y":88},{"x":-48,"y":7},{"x":2,"y":21},{"x":-16,"y":-15},{"x":23,"y":38},{"x":-75,"y":-36},{"x":-12,"y":-36},{"x":2,"y":43},{"x":38,"y":34},{"x":-39,"y":-20},{"x":18,"y":50},{"x":-59,"y":-5},{"x":67,"y":29},{"x":-30,"y":45},{"x":18,"y":25},{"x":-57,"y":-41},{"x":-3,"y":20},{"x":-69,"y":-32},{"x":-1,"y":-32},{"x":-25,"y":12},{"x":-9,"y":-27},{"x":-19,"y":36},{"x":-33,"y":-28},{"x":16,"y":-39},{"x":-29,"y":32},{"x":31,"y":-53},{"x":-25,"y":-57},{"x":-56,"y":22},{"x":-33,"y":77},{"x":-39,"y":-10},{"x":23,"y":-44},{"x":-22,"y":25},{"x":8,"y":-20},{"x":-33,"y":8},{"x":13,"y":-45},{"x":28,"y":3},{"x":0,"y":-47},{"x":-41,"y":-5},{"x":14,"y":-38},{"x":-36,"y":-35},{"x":31,"y":-7},{"x":3,"y":-30},{"x":125,"y":-31},{"x":-16,"y":-42},{"x":51,"y":9},{"x":-4,"y":-23},{"x":39,"y":-19},{"x":-80,"y":2},{"x":19,"y":-27},{"x":-27,"y":-24},{"x":-26,"y":111},{"x":-36,"y":-25},{"x":-32,"y":12},{"x":-61,"y":67},{"x":-20,"y":-42},{"x":98,"y":-77},{"x":-23,"y":-27},{"x":38,"y":-23},{"x":-24,"y":-33},{"x":45,"y":-6},{"x":24,"y":25},{"x":11,"y":-30},{"x":-33,"y":-26},{"x":-53,"y":16},{"x":-3,"y":-32},{"x":-27,"y":64},{"x":-26,"y":-25},{"x":-15,"y":24},{"x":34,"y":41},{"x":-29,"y":40},{"x":30,"y":22},{"x":-81,"y":24},{"x":-13,"y":-28},{"x":-20,"y":30},{"x":22,"y":14},{"x":-59,"y":5},{"x":11,"y":26},{"x":45,"y":-4},{"x":28,"y":45},{"x":-38,"y":20},{"x":-15,"y":-32},{"x":19,"y":70},{"x":-22,"y":-7},{"x":3,"y":21},{"x":39,"y":42},{"x":-96,"y":-5},{"x":5,"y":35},{"x":-63,"y":15},{"x":13,"y":-23},{"x":-22,"y":-8},{"x":1,"y":72},{"x":-27,"y":7},{"x":-71,"y":-90},{"x":-38,"y":48},{"x":-121,"y":-49},{"x":-38,"y":53},{"x":-28,"y":-7},{"x":3,"y":-53},{"x":-24,"y":-15},{"x":-88,"y":27},{"x":-21,"y":-23},{"x":-48,"y":4},{"x":-6,"y":38},{"x":-70,"y":-51},{"x":30,"y":-44},{"x":21,"y":20},{"x":-36,"y":-58},{"x":38,"y":-43},{"x":-39,"y":34},{"x":-65,"y":5},{"x":-26,"y":-22},{"x":-4,"y":57},{"x":-148,"y":-81},{"x":-2,"y":-29},{"x":10,"y":8},{"x":31,"y":-12},{"x":-8,"y":-15},{"x":-20,"y":19},{"x":-25,"y":-9},{"x":1,"y":15},{"x":-21,"y":-39},{"x":18,"y":-49},{"x":-39,"y":42},{"x":15,"y":17},{"x":-72,"y":4},{"x":-46,"y":-80},{"x":-64,"y":-19},{"x":24,"y":-51},{"x":-32,"y":-16},{"x":-1,"y":44},{"x":-25,"y":-43},{"x":-38,"y":25},{"x":-51,"y":-33},{"x":-93,"y":-110},{"x":-4,"y":-40},{"x":-65,"y":-29},{"x":-22,"y":-39},{"x":15,"y":-54},{"x":-37,"y":32},{"x":-8,"y":-54},{"x":-26,"y":24},{"x":-130,"y":-88},{"x":68,"y":-27},{"x":-93,"y":5},{"x":-16,"y":-45},{"x":-78,"y":-43},{"x":-26,"y":19},{"x":-37,"y":-78},{"x":-46,"y":29},{"x":-50,"y":-87},{"x":-28,"y":2},{"x":21,"y":-22},{"x":-25,"y":-12},{"x":72,"y":-8},{"x":-48,"y":-56},{"x":-28,"y":54},{"x":-12,"y":-23},{"x":-28,"y":24},{"x":-15,"y":-25},{"x":2,"y":32},{"x":-79,"y":11},{"x":-3,"y":86},{"x":-27,"y":-35},{"x":-59,"y":2},{"x":3,"y":21},{"x":-71,"y":29},{"x":-52,"y":-28},{"x":54,"y":-4},{"x":-12,"y":-24},{"x":36,"y":-3},{"x":-2,"y":-24},{"x":60,"y":11},{"x":-47,"y":-40},{"x":70,"y":4},{"x":18,"y":-15},{"x":-46,"y":-11},{"x":75,"y":-39},{"x":-64,"y":18},{"x":9,"y":-32},{"x":-34,"y":38},{"x":-17,"y":-33},{"x":32,"y":-35},{"x":-41,"y":18},{"x":-45,"y":-7},{"x":16,"y":-18},{"x":-54,"y":34},{"x":-56,"y":-24},{"x":45,"y":68},{"x":62,"y":-28},{"x":-44,"y":41},{"x":19,"y":-6},{"x":-3,"y":33},{"x":-180,"y":42},{"x":30,"y":-30},{"x":-17,"y":-22},{"x":-28,"y":30},{"x":-7,"y":-27},{"x":-43,"y":18},{"x":-31,"y":-17},{"x":32,"y":15},{"x":22,"y":-23},{"x":-27,"y":7},{"x":0,"y":-35},{"x":-21,"y":26},{"x":-12,"y":-17},{"x":45,"y":-38},{"x":-58,"y":6},{"x":-33,"y":-58},{"x":-15,"y":32},{"x":-38,"y":-36},{"x":22,"y":-14},{"x":-33,"y":3},{"x":1,"y":-47},{"x":-116,"y":-60},{"x":51,"y":53},{"x":-28,"y":21},{"x":62,"y":12},{"x":-29,"y":10},{"x":8,"y":57},{"x":95,"y":103},{"x":-3,"y":23},{"x":-45,"y":-18},{"x":51,"y":53},{"x":-40,"y":28},{"x":41,"y":0},{"x":-26,"y":12},{"x":30,"y":20},{"x":56,"y":-42},{"x":-35,"y":63},{"x":86,"y":17},{"x":66,"y":78},{"x":-63,"y":-40},{"x":-83,"y":4},{"x":-56,"y":-39},{"x":-42,"y":25},{"x":19,"y":-42},{"x":-31,"y":38},{"x":5,"y":-34},{"x":-41,"y":-33},{"x":-84,"y":40},{"x":-2,"y":-54},{"x":31,"y":-31},{"x":26,"y":-10},{"x":45,"y":30},{"x":-70,"y":-75},{"x":35,"y":3},{"x":10,"y":-45},{"x":-118,"y":72},{"x":33,"y":-45},{"x":-50,"y":5},{"x":-74,"y":64},{"x":-24,"y":-54},{"x":19,"y":-27},{"x":-22,"y":3},{"x":-36,"y":56},{"x":55,"y":38},{"x":-24,"y":4},{"x":7,"y":39},{"x":-63,"y":-32},{"x":-23,"y":60},{"x":-50,"y":22},{"x":-45,"y":-50},{"x":-15,"y":16},{"x":-6,"y":-21},{"x":-51,"y":-4},{"x":33,"y":-30},{"x":-15,"y":-21},{"x":-21,"y":30},{"x":-25,"y":-16},{"x":-34,"y":-96},{"x":9,"y":-105},{"x":-24,"y":71},{"x":-25,"y":-3},{"x":21,"y":9},{"x":-20,"y":46},{"x":20,"y":63},{"x":-35,"y":15},{"x":72,"y":41},{"x":-80,"y":0},{"x":-1,"y":-23},{"x":-71,"y":90},{"x":2,"y":-38},{"x":-77,"y":-15},{"x":72,"y":-6},{"x":-59,"y":-24},{"x":43,"y":4},{"x":-42,"y":-17},{"x":24,"y":-14},{"x":62,"y":29},{"x":-21,"y":-32},{"x":-31,"y":0},{"x":2,"y":-34},{"x":61,"y":2},{"x":-29,"y":-11},{"x":19,"y":-42},{"x":-22,"y":-5},{"x":34,"y":-27},{"x":-36,"y":-9},{"x":47,"y":-16},{"x":-27,"y":-23},{"x":21,"y":-37},{"x":-72,"y":74},{"x":-31,"y":-81},{"x":13,"y":99},{"x":-52,"y":40},{"x":-21,"y":-56},{"x":-12,"y":67},{"x":-59,"y":-11},{"x":40,"y":-13},{"x":-39,"y":-3},{"x":25,"y":-26},{"x":-17,"y":-20},{"x":-35,"y":78},{"x":-63,"y":12},{"x":-15,"y":-64},{"x":66,"y":35},{"x":6,"y":-34},{"x":-34,"y":-21},{"x":57,"y":-18},{"x":48,"y":13},{"x":-28,"y":-11},{"x":10,"y":-25},{"x":-75,"y":25},{"x":36,"y":-39},{"x":29,"y":6},{"x":-26,"y":-64},{"x":-24,"y":72},{"x":-64,"y":40},{"x":-31,"y":-49},{"x":20,"y":8},{"x":43,"y":-37},{"x":-101,"y":23},{"x":-5,"y":-32},{"x":-38,"y":2},{"x":-28,"y":-63},{"x":-68,"y":-45},{"x":30,"y":2},{"x":-19,"y":-12},{"x":18,"y":-17},{"x":27,"y":17},{"x":-17,"y":-33},{"x":29,"y":-4},{"x":111,"y":87},{"x":-19,"y":-65},{"x":-34,"y":-9},{"x":23,"y":-7},{"x":-50,"y":-1},{"x":-42,"y":-43},{"x":83,"y":-8},{"x":-30,"y":-21},{"x":72,"y":19},{"x":-13,"y":-18},{"x":33,"y":-7},{"x":-73,"y":-8},{"x":40,"y":-16},{"x":-57,"y":-24},{"x":13,"y":-23},{"x":103,"y":63},{"x":-5,"y":-17},{"x":41,"y":-4},{"x":-116,"y":-39},{"x":68,"y":1},{"x":58,"y":31},{"x":19,"y":-48},{"x":10,"y":39},{"x":21,"y":-5},{"x":-31,"y":24},{"x":28,"y":30},{"x":-4,"y":-28},{"x":13,"y":25},{"x":3,"y":-32},{"x":27,"y":10},{"x":-3,"y":55},{"x":-66,"y":99},{"x":74,"y":-42},{"x":-13,"y":-20},{"x":49,"y":-11},{"x":-7,"y":-44},{"x":57,"y":50},{"x":-16,"y":10},{"x":42,"y":-14},{"x":-27,"y":44},{"x":47,"y":-28},{"x":22,"y":21},{"x":-25,"y":-53},{"x":28,"y":-26},{"x":19,"y":88},{"x":-44,"y":20},{"x":37,"y":-5},{"x":-16,"y":47},{"x":24,"y":20},{"x":10,"y":-18},{"x":11,"y":29},{"x":-15,"y":-78},{"x":48,"y":27},{"x":-28,"y":-50},{"x":23,"y":-3},{"x":29,"y":52},{"x":15,"y":-16},{"x":-53,"y":-70},{"x":46,"y":13},{"x":24,"y":55},{"x":25,"y":-33},{"x":-43,"y":-44},{"x":43,"y":40},{"x":33,"y":-20},{"x":17,"y":18},{"x":-7,"y":-63},{"x":51,"y":39},{"x":0,"y":-42},{"x":18,"y":16},{"x":-15,"y":-54},{"x":17,"y":31},{"x":16,"y":-18},{"x":-2,"y":29},{"x":30,"y":-11},{"x":-15,"y":24},{"x":25,"y":-12},{"x":11,"y":46},{"x":-23,"y":16},{"x":56,"y":24},{"x":-22,"y":-36},{"x":51,"y":-31},{"x":50,"y":27},{"x":19,"y":78},{"x":18,"y":-8},{"x":-6,"y":-57},{"x":39,"y":-30},{"x":-54,"y":-8},{"x":24,"y":-21},{"x":-20,"y":-9},{"x":-23,"y":19},{"x":24,"y":-37},{"x":-62,"y":22},{"x":12,"y":-36},{"x":-32,"y":29},{"x":-10,"y":-24},{"x":41,"y":-33},{"x":-77,"y":-39},{"x":104,"y":-10},{"x":65,"y":63},{"x":50,"y":-10},{"x":-122,"y":-97},{"x":-41,"y":9},{"x":8,"y":-29},{"x":-53,"y":23},{"x":77,"y":-89},{"x":-51,"y":45},{"x":-4,"y":-23},{"x":-13,"y":22},{"x":-17,"y":-16},{"x":0,"y":30},{"x":-13,"y":-16},{"x":-36,"y":46},{"x":-6,"y":-38},{"x":41,"y":-23},{"x":-23,"y":-17},{"x":-58,"y":49},{"x":-69,"y":-1},{"x":-9,"y":-29},{"x":86,"y":-34},{"x":-125,"y":0},{"x":-18,"y":-11},{"x":105,"y":-10},{"x":-175,"y":-36},{"x":-1,"y":-33},{"x":-38,"y":-24},{"x":130,"y":33},{"x":-73,"y":-40},{"x":-3,"y":-24},{"x":31,"y":22},{"x":23,"y":-12},{"x":-57,"y":-44},{"x":110,"y":-27},{"x":61,"y":115},{"x":48,"y":-8},{"x":21,"y":24},{"x":12,"y":-8},{"x":-79,"y":-66},{"x":58,"y":-2},{"x":47,"y":-32},{"x":44,"y":21},{"x":10,"y":-22},{"x":9,"y":38},{"x":30,"y":-36},{"x":-50,"y":-27},{"x":47,"y":-12},{"x":41,"y":33},{"x":-21,"y":46},{"x":30,"y":-4},{"x":6,"y":-30},{"x":27,"y":26},{"x":-20,"y":18},{"x":42,"y":3},{"x":15,"y":39},{"x":46,"y":-30},{"x":-1,"y":55},{"x":36,"y":-44},{"x":-24,"y":-37},{"x":33,"y":-17},{"x":-56,"y":14},{"x":-21,"y":-33},{"x":54,"y":-70},{"x":-61,"y":50},{"x":-57,"y":-57},{"x":42,"y":-11},{"x":-31,"y":-25},{"x":18,"y":-16},{"x":26,"y":14},{"x":14,"y":-47},{"x":55,"y":31},{"x":45,"y":-21},{"x":-11,"y":-22},{"x":-37,"y":26},{"x":-19,"y":-69},{"x":-20,"y":36},{"x":-53,"y":-2},{"x":9,"y":20},{"x":-65,"y":64},{"x":-17,"y":-30},{"x":-79,"y":-10},{"x":-4,"y":-26},{"x":46,"y":-6},{"x":-34,"y":-18},{"x":29,"y":-20},{"x":-23,"y":5},{"x":5,"y":-33},{"x":-41,"y":-13},{"x":-24,"y":14},{"x":40,"y":23},{"x":-7,"y":20},{"x":-77,"y":8},{"x":1,"y":84},{"x":-53,"y":33},{"x":3,"y":34},{"x":-17,"y":-24},{"x":14,"y":-38},{"x":-18,"y":26},{"x":-20,"y":-11},{"x":65,"y":-67},{"x":-54,"y":-6},{"x":-42,"y":50},{"x":-126,"y":-44},{"x":51,"y":-10},{"x":3,"y":19},{"x":31,"y":-22},{"x":19,"y":23},{"x":19,"y":-53},{"x":70,"y":-28},{"x":-34,"y":-12},{"x":-20,"y":24},{"x":-25,"y":-28},{"x":-7,"y":53},{"x":-51,"y":-9},{"x":44,"y":-53},{"x":96,"y":-21},{"x":-18,"y":-104},{"x":26,"y":72},{"x":11,"y":-31},{"x":20,"y":11},{"x":-40,"y":-75},{"x":-34,"y":17},{"x":41,"y":-36},{"x":-37,"y":-79},{"x":-30,"y":-7},{"x":34,"y":-72},{"x":1,"y":-27},{"x":-27,"y":-6},{"x":36,"y":-106},{"x":116,"y":-65},{"x":51,"y":55},{"x":-15,"y":36},{"x":27,"y":39},{"x":-20,"y":15},{"x":44,"y":25},{"x":-46,"y":9},{"x":-10,"y":-31},{"x":7,"y":27},{"x":-66,"y":6},{"x":-14,"y":53},{"x":-39,"y":-13},{"x":-15,"y":25},{"x":37,"y":-3},{"x":45,"y":59},{"x":23,"y":-50},{"x":29,"y":-1},{"x":-4,"y":40},{"x":25,"y":-25},{"x":-13,"y":50},{"x":32,"y":18},{"x":-26,"y":39},{"x":26,"y":-2},{"x":78,"y":78},{"x":10,"y":35},{"x":-31,"y":25},{"x":66,"y":-21},{"x":48,"y":26},{"x":62,"y":-18},{"x":-60,"y":-12},{"x":43,"y":-62},{"x":61,"y":40},{"x":49,"y":-9},{"x":127,"y":35},{"x":144,"y":-26},{"x":-5,"y":45},{"x":-33,"y":1},{"x":30,"y":14},{"x":-31,"y":23},{"x":28,"y":-15},{"x":4,"y":69},{"x":3,"y":-19},{"x":20,"y":14},{"x":6,"y":-97},{"x":35,"y":-21},{"x":14,"y":31},{"x":0,"y":-33},{"x":21,"y":11},{"x":21,"y":-36},{"x":7,"y":26},{"x":11,"y":-32},{"x":20,"y":9},{"x":2,"y":103},{"x":33,"y":-74},{"x":21,"y":69},{"x":24,"y":-80},{"x":43,"y":0},{"x":13,"y":27},{"x":34,"y":-13},{"x":-5,"y":42},{"x":43,"y":1},{"x":-7,"y":77},{"x":-52,"y":53},{"x":-69,"y":-13},{"x":-14,"y":51},{"x":152,"y":-24},{"x":-19,"y":42},{"x":26,"y":6},{"x":16,"y":-31},{"x":16,"y":78},{"x":30,"y":-31},{"x":39,"y":12},{"x":28,"y":34},{"x":-70,"y":95},{"x":69,"y":-14},{"x":0,"y":-49},{"x":67,"y":49},{"x":36,"y":-19},{"x":5,"y":-45},{"x":-58,"y":1},{"x":22,"y":-22},{"x":-26,"y":1},{"x":-75,"y":-83},{"x":-33,"y":4},{"x":13,"y":-41},{"x":-43,"y":-96},{"x":48,"y":25},{"x":9,"y":-62},{"x":52,"y":-44},{"x":76,"y":44},{"x":37,"y":-49},{"x":39,"y":6},{"x":83,"y":62},{"x":67,"y":2},{"x":-13,"y":48},{"x":35,"y":-7},{"x":45,"y":93},{"x":18,"y":-28},{"x":113,"y":30},{"x":37,"y":37},{"x":93,"y":-2},{"x":56,"y":69},{"x":50,"y":-19},{"x":123,"y":65},{"x":15,"y":-15},{"x":13,"y":19},{"x":-48,"y":37},{"x":-65,"y":-26},{"x":-50,"y":10},{"x":52,"y":8},{"x":-34,"y":42},{"x":53,"y":-32},{"x":59,"y":29},{"x":1,"y":23},{"x":18,"y":-16},{"x":-2,"y":21},{"x":36,"y":-28},{"x":18,"y":73},{"x":37,"y":-42},{"x":33,"y":31},{"x":18,"y":-26},{"x":12,"y":33},{"x":-34,"y":40},{"x":-68,"y":-4},{"x":-25,"y":37},{"x":9,"y":63},{"x":15,"y":-13},{"x":66,"y":48},{"x":-50,"y":51},{"x":15,"y":21},{"x":24,"y":-19},{"x":-23,"y":19},{"x":22,"y":-6},{"x":39,"y":-53},{"x":-35,"y":-45},{"x":47,"y":34},{"x":-7,"y":-51},{"x":-37,"y":9},{"x":-33,"y":-23},{"x":18,"y":-37},{"x":103,"y":-4},{"x":29,"y":25},{"x":4,"y":-35},{"x":82,"y":14},{"x":11,"y":-30},{"x":-46,"y":-54},{"x":17,"y":-62},{"x":49,"y":2},{"x":11,"y":24},{"x":57,"y":-6},{"x":-7,"y":-23},{"x":21,"y":7},{"x":8,"y":-22},{"x":-31,"y":-9},{"x":-4,"y":24},{"x":-8,"y":-41},{"x":46,"y":-25},{"x":45,"y":22},{"x":8,"y":-52},{"x":6,"y":25},{"x":37,"y":-6},{"x":-151,"y":-116},{"x":0,"y":-67},{"x":84,"y":-31},{"x":81,"y":11},{"x":8,"y":56},{"x":20,"y":-20},{"x":44,"y":61},{"x":109,"y":19},{"x":68,"y":50},{"x":4,"y":32},{"x":31,"y":-12},{"x":73,"y":25},{"x":67,"y":-25},{"x":142,"y":85},{"x":95,"y":4},{"x":69,"y":47},{"x":178,"y":15},{"x":15,"y":19},{"x":65,"y":-15},{"x":50,"y":103},{"x":-19,"y":42},{"x":-102,"y":30},{"x":-46,"y":-14},{"x":12,"y":31},{"x":82,"y":39},{"x":58,"y":115},{"x":-51,"y":95},{"x":-92,"y":22},{"x":104,"y":99},{"x":-54,"y":47},{"x":14,"y":51},{"x":-67,"y":62},{"x":27,"y":23},{"x":-13,"y":48},{"x":35,"y":-97},{"x":33,"y":4},{"x":17,"y":-39},{"x":42,"y":-1},{"x":14,"y":46},{"x":50,"y":4},{"x":-28,"y":72},{"x":48,"y":-24},{"x":15,"y":32},{"x":50,"y":-13},{"x":11,"y":20},{"x":10,"y":-18},{"x":15,"y":78},{"x":28,"y":-16},{"x":38,"y":34},{"x":-24,"y":-28},{"x":34,"y":-15},{"x":40,"y":78},{"x":38,"y":-12},{"x":24,"y":17},{"x":-34,"y":113},{"x":48,"y":61},{"x":-31,"y":44},{"x":-59,"y":-12},{"x":11,"y":68},{"x":69,"y":-22},{"x":13,"y":-43},{"x":26,"y":10},{"x":14,"y":-65},{"x":-46,"y":-56},{"x":42,"y":-30},{"x":81,"y":42},{"x":8,"y":-47},{"x":32,"y":8},{"x":83,"y":88},{"x":-26,"y":-14},{"x":-4,"y":23},{"x":-51,"y":-45},{"x":37,"y":82},{"x":-51,"y":38},{"x":17,"y":51},{"x":19,"y":-10},{"x":22,"y":33},{"x":-34,"y":14},{"x":43,"y":11},{"x":25,"y":-23},{"x":5,"y":48},{"x":16,"y":-18},{"x":5,"y":22},{"x":7,"y":-31},{"x":71,"y":86}],"type":"coastline"},{"arc":[{"x":134917,"y":67215},{"x":-20,"y":68},{"x":-37,"y":-87},{"x":57,"y":19}],"type":"coastline"},{"arc":[{"x":112642,"y":68909},{"x":-51,"y":6},{"x":-6,"y":17},{"x":28,"y":-5},{"x":-76,"y":31},{"x":7,"y":87},{"x":40,"y":-12},{"x":-29,"y":71},{"x":-6,"y":-35},{"x":-27,"y":13},{"x":26,"y":25},{"x":-31,"y":62},{"x":-143,"y":19},{"x":-120,"y":-96},{"x":6,"y":-99},{"x":97,"y":-97},{"x":88,"y":-14},{"x":50,"y":-38},{"x":98,"y":15},{"x":19,"y":14},{"x":-6,"y":20},{"x":36,"y":8},{"x":32,"y":52},{"x":-32,"y":-44}],"type":"coastline"},{"arc":[{"x":112846,"y":71120},{"x":-33,"y":40},{"x":-33,"y":-18},{"x":29,"y":-32},{"x":37,"y":10}],"type":"coastline"},{"arc":[{"x":113259,"y":71174},{"x":-10,"y":28},{"x":-49,"y":-14},{"x":27,"y":-24},{"x":32,"y":10}],"type":"coastline"},{"arc":[{"x":113296,"y":70448},{"x":-33,"y":7},{"x":-2,"y":-29},{"x":35,"y":22}],"type":"coastline"},{"arc":[{"x":113306,"y":70413},{"x":-45,"y":-2},{"x":-25,"y":24},{"x":-13,"y":-47},{"x":33,"y":7},{"x":-21,"y":-18},{"x":31,"y":-8},{"x":-3,"y":30},{"x":43,"y":14}],"type":"coastline"},{"arc":[{"x":113359,"y":70443},{"x":-48,"y":26},{"x":-14,"y":-24},{"x":44,"y":-24},{"x":18,"y":22}],"type":"coastline"},{"arc":[{"x":113398,"y":71134},{"x":-36,"y":21},{"x":-14,"y":-24},{"x":50,"y":3}],"type":"coastline"},{"arc":[{"x":113411,"y":68355},{"x":-21,"y":96},{"x":-49,"y":-18},{"x":-22,"y":17},{"x":7,"y":-51},{"x":44,"y":0},{"x":-26,"y":-66},{"x":67,"y":5},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":113426,"y":69443},{"x":-97,"y":12},{"x":-16,"y":-26},{"x":-52,"y":26},{"x":-74,"y":15},{"x":-47,"y":-12},{"x":11,"y":-51},{"x":275,"y":36}],"type":"coastline"},{"arc":[{"x":113435,"y":68266},{"x":-23,"y":63},{"x":-4,"y":-65},{"x":27,"y":2}],"type":"coastline"},{"arc":[{"x":113571,"y":66372},{"x":-10,"y":19},{"x":-113,"y":-3},{"x":-19,"y":62},{"x":-33,"y":-17},{"x":-38,"y":35},{"x":-14,"y":-112},{"x":-43,"y":-9},{"x":21,"y":25},{"x":-29,"y":-4},{"x":-19,"y":-72},{"x":39,"y":-25},{"x":40,"y":20},{"x":48,"y":-51},{"x":37,"y":39},{"x":41,"y":-29},{"x":92,"y":122}],"type":"coastline"},{"arc":[{"x":113581,"y":67202},{"x":-49,"y":55},{"x":-28,"y":-16},{"x":35,"y":-62},{"x":42,"y":23}],"type":"coastline"},{"arc":[{"x":113598,"y":65278},{"x":-32,"y":13},{"x":-49,"y":-22},{"x":-46,"y":37},{"x":24,"y":37},{"x":-19,"y":14},{"x":70,"y":3},{"x":19,"y":60},{"x":-168,"y":-84},{"x":-72,"y":30},{"x":-22,"y":-14},{"x":21,"y":-24},{"x":-59,"y":-18},{"x":14,"y":-41},{"x":-60,"y":-9},{"x":-57,"y":-122},{"x":17,"y":-8},{"x":72,"y":75},{"x":20,"y":-56},{"x":28,"y":48},{"x":-10,"y":-53},{"x":25,"y":-28},{"x":-33,"y":-95},{"x":35,"y":-8},{"x":70,"y":92},{"x":66,"y":12},{"x":146,"y":161}],"type":"coastline"},{"arc":[{"x":113690,"y":68530},{"x":-27,"y":25},{"x":26,"y":6},{"x":-30,"y":157},{"x":-33,"y":11},{"x":49,"y":30},{"x":-91,"y":66},{"x":-116,"y":-71},{"x":-9,"y":-63},{"x":-39,"y":-9},{"x":1,"y":-62},{"x":-74,"y":-89},{"x":-34,"y":2},{"x":-1,"y":-77},{"x":60,"y":6},{"x":-7,"y":35},{"x":49,"y":-19},{"x":-11,"y":86},{"x":50,"y":-50},{"x":-8,"y":62},{"x":33,"y":-7},{"x":18,"y":31},{"x":35,"y":-5},{"x":-12,"y":22},{"x":63,"y":10},{"x":-17,"y":46},{"x":43,"y":-22},{"x":-51,"y":-60},{"x":50,"y":-18},{"x":-73,"y":0},{"x":-5,"y":-21},{"x":26,"y":-21},{"x":10,"y":19},{"x":38,"y":-9},{"x":3,"y":-30},{"x":84,"y":19}],"type":"coastline"},{"arc":[{"x":113872,"y":69310},{"x":-31,"y":0},{"x":-16,"y":28},{"x":-16,"y":-32},{"x":-57,"y":15},{"x":-65,"y":-61},{"x":-45,"y":9},{"x":12,"y":-43},{"x":56,"y":-23},{"x":-12,"y":22},{"x":49,"y":25},{"x":2,"y":-34},{"x":123,"y":94}],"type":"coastline"},{"arc":[{"x":114106,"y":69366},{"x":-36,"y":18},{"x":-2,"y":-36},{"x":38,"y":18}],"type":"coastline"},{"arc":[{"x":114131,"y":68584},{"x":-1,"y":43},{"x":-25,"y":-18},{"x":10,"y":-35},{"x":16,"y":10}],"type":"coastline"},{"arc":[{"x":114131,"y":69015},{"x":-43,"y":17},{"x":-20,"y":52},{"x":-5,"y":101},{"x":51,"y":44},{"x":-49,"y":93},{"x":-20,"y":-84},{"x":-29,"y":26},{"x":21,"y":-55},{"x":-89,"y":73},{"x":-81,"y":-44},{"x":16,"y":-39},{"x":-38,"y":-32},{"x":0,"y":63},{"x":-37,"y":-5},{"x":-2,"y":-26},{"x":-35,"y":9},{"x":-16,"y":-48},{"x":-24,"y":26},{"x":-39,"y":-50},{"x":-5,"y":-34},{"x":50,"y":5},{"x":-1,"y":-50},{"x":-9,"y":14},{"x":-38,"y":-42},{"x":-72,"y":-19},{"x":-32,"y":11},{"x":16,"y":-55},{"x":67,"y":-17},{"x":-67,"y":-35},{"x":51,"y":-54},{"x":-7,"y":-51},{"x":37,"y":-26},{"x":56,"y":5},{"x":62,"y":38},{"x":8,"y":-16},{"x":85,"y":28},{"x":28,"y":60},{"x":48,"y":15},{"x":0,"y":21},{"x":-64,"y":-4},{"x":122,"y":28},{"x":-46,"y":66},{"x":52,"y":-17},{"x":20,"y":-37},{"x":43,"y":5},{"x":35,"y":40}],"type":"coastline"},{"arc":[{"x":112823,"y":71064},{"x":84,"y":-159},{"x":-91,"y":-78},{"x":8,"y":-27},{"x":-29,"y":-3},{"x":-42,"y":-79},{"x":-119,"y":-338},{"x":-101,"y":-12},{"x":-34,"y":18},{"x":-77,"y":-42},{"x":-145,"y":53},{"x":-61,"y":-36},{"x":13,"y":-57},{"x":-47,"y":-39},{"x":-18,"y":-146},{"x":36,"y":-67},{"x":-80,"y":-30},{"x":-49,"y":-157},{"x":9,"y":-115},{"x":-98,"y":-117}],"type":"area"},{"arc":[{"x":111982,"y":69633},{"x":128,"y":-28},{"x":60,"y":-63},{"x":76,"y":29},{"x":56,"y":-77},{"x":130,"y":-30},{"x":22,"y":-104},{"x":-17,"y":16},{"x":-99,"y":-14},{"x":-59,"y":-45},{"x":51,"y":-6},{"x":32,"y":27},{"x":-3,"y":-63},{"x":42,"y":-9},{"x":44,"y":12},{"x":-34,"y":-3},{"x":10,"y":41},{"x":29,"y":-36},{"x":83,"y":12},{"x":-45,"y":13},{"x":-7,"y":35},{"x":127,"y":-40},{"x":33,"y":23},{"x":-14,"y":-38},{"x":74,"y":-104},{"x":18,"y":38},{"x":-34,"y":69},{"x":82,"y":-89},{"x":27,"y":22},{"x":-13,"y":29},{"x":57,"y":-19},{"x":7,"y":33},{"x":37,"y":-3},{"x":-34,"y":-16},{"x":58,"y":-21},{"x":-9,"y":-15},{"x":130,"y":-7},{"x":16,"y":38},{"x":101,"y":25},{"x":26,"y":77},{"x":72,"y":27},{"x":-105,"y":35},{"x":-1,"y":57},{"x":29,"y":11},{"x":87,"y":6},{"x":40,"y":-24},{"x":-1,"y":26},{"x":44,"y":7},{"x":-25,"y":76},{"x":68,"y":-87},{"x":22,"y":-5},{"x":11,"y":31},{"x":117,"y":-78},{"x":170,"y":7},{"x":80,"y":-22},{"x":54,"y":33},{"x":-28,"y":102},{"x":50,"y":4},{"x":3,"y":-21},{"x":40,"y":31},{"x":41,"y":-19},{"x":62,"y":43},{"x":76,"y":-16},{"x":41,"y":54},{"x":-22,"y":115},{"x":63,"y":-90},{"x":24,"y":23},{"x":-19,"y":-71},{"x":26,"y":-54},{"x":33,"y":65},{"x":-25,"y":10},{"x":15,"y":57},{"x":28,"y":-17},{"x":27,"y":24},{"x":-16,"y":26},{"x":38,"y":-34},{"x":-3,"y":57},{"x":17,"y":7},{"x":10,"y":-71},{"x":-28,"y":-9},{"x":0,"y":-61},{"x":-28,"y":-16},{"x":22,"y":-20},{"x":48,"y":61},{"x":-4,"y":57},{"x":69,"y":57},{"x":36,"y":1},{"x":-5,"y":-46},{"x":51,"y":-11},{"x":89,"y":46},{"x":-66,"y":135},{"x":-50,"y":60},{"x":-30,"y":-2},{"x":39,"y":45},{"x":-159,"y":61},{"x":53,"y":6},{"x":-14,"y":16},{"x":70,"y":-24},{"x":11,"y":24},{"x":-77,"y":107},{"x":-48,"y":28},{"x":-22,"y":-39},{"x":-48,"y":9},{"x":-18,"y":-51},{"x":-17,"y":38},{"x":40,"y":34},{"x":-14,"y":29},{"x":56,"y":25},{"x":-11,"y":39},{"x":-101,"y":41},{"x":-15,"y":-35},{"x":-27,"y":71},{"x":-82,"y":-78},{"x":-58,"y":-12},{"x":0,"y":-44},{"x":-25,"y":68},{"x":-56,"y":-39},{"x":-4,"y":93},{"x":37,"y":-12},{"x":60,"y":25},{"x":-66,"y":45},{"x":42,"y":10},{"x":19,"y":-25},{"x":20,"y":15},{"x":34,"y":-17},{"x":31,"y":100},{"x":-81,"y":3},{"x":-24,"y":101},{"x":-38,"y":25},{"x":-37,"y":-6},{"x":-94,"y":-99},{"x":-9,"y":-30},{"x":41,"y":-24},{"x":-153,"y":-35},{"x":-13,"y":-27},{"x":-116,"y":-47},{"x":-31,"y":14},{"x":3,"y":-49},{"x":-54,"y":38},{"x":-52,"y":-53},{"x":-34,"y":2},{"x":18,"y":10},{"x":-56,"y":87},{"x":-9,"y":-90},{"x":-30,"y":1},{"x":-8,"y":50},{"x":-39,"y":-26},{"x":15,"y":32},{"x":-59,"y":1},{"x":1,"y":29},{"x":-48,"y":-21},{"x":-15,"y":66},{"x":70,"y":-19},{"x":-9,"y":32},{"x":48,"y":11},{"x":0,"y":37},{"x":58,"y":13},{"x":-29,"y":31},{"x":-45,"y":-8},{"x":27,"y":22},{"x":-43,"y":34},{"x":78,"y":-43},{"x":-1,"y":85},{"x":75,"y":-13},{"x":-43,"y":-46},{"x":23,"y":-33},{"x":-28,"y":-18},{"x":27,"y":-14},{"x":58,"y":13},{"x":37,"y":25},{"x":-17,"y":27},{"x":81,"y":39},{"x":46,"y":-23},{"x":23,"y":43},{"x":-111,"y":69},{"x":4,"y":90},{"x":-69,"y":20},{"x":12,"y":19},{"x":-45,"y":35},{"x":17,"y":29},{"x":27,"y":-22},{"x":-2,"y":134},{"x":-110,"y":73},{"x":-5,"y":43},{"x":-39,"y":14},{"x":14,"y":-45},{"x":-54,"y":21},{"x":29,"y":20},{"x":-8,"y":30},{"x":-35,"y":-12},{"x":3,"y":-35},{"x":-67,"y":49},{"x":-42,"y":-40},{"x":21,"y":49},{"x":-19,"y":55},{"x":-82,"y":0},{"x":-39,"y":37},{"x":-54,"y":-17},{"x":30,"y":-3},{"x":17,"y":-64},{"x":-33,"y":-11},{"x":1,"y":25},{"x":-34,"y":0},{"x":14,"y":-71},{"x":-99,"y":-47}],"type":"coastline"},{"arc":[{"x":111017,"y":80788},{"x":-22,"y":-49},{"x":-69,"y":-39},{"x":-55,"y":23},{"x":-20,"y":36},{"x":43,"y":150},{"x":-52,"y":50},{"x":-30,"y":-53},{"x":-53,"y":-16},{"x":-35,"y":-61},{"x":18,"y":-41},{"x":-49,"y":-10},{"x":-7,"y":40},{"x":-64,"y":-6},{"x":-134,"y":-98},{"x":-2,"y":-18},{"x":48,"y":1},{"x":32,"y":-57},{"x":-62,"y":17},{"x":-6,"y":-38},{"x":-103,"y":-3},{"x":-7,"y":-23}],"type":"area"},{"arc":[{"x":110388,"y":80593},{"x":44,"y":-18},{"x":17,"y":-78},{"x":64,"y":-7},{"x":-26,"y":-148},{"x":29,"y":-6},{"x":-32,"y":-18},{"x":40,"y":-16},{"x":-14,"y":-89}],"type":"area"},{"arc":[{"x":110510,"y":80213},{"x":60,"y":22},{"x":79,"y":-25},{"x":66,"y":20},{"x":-8,"y":-28},{"x":53,"y":-50},{"x":16,"y":58},{"x":54,"y":-18},{"x":81,"y":44},{"x":-11,"y":89},{"x":120,"y":-2},{"x":-12,"y":57},{"x":30,"y":16}],"type":"area"},{"arc":[{"x":111038,"y":80396},{"x":28,"y":189},{"x":43,"y":74},{"x":49,"y":2},{"x":-9,"y":32},{"x":-132,"y":95}],"type":"area"},{"arc":[{"x":111095,"y":81618},{"x":-134,"y":6},{"x":-1,"y":-162},{"x":-30,"y":-41},{"x":-82,"y":-26},{"x":-79,"y":-196},{"x":76,"y":-52},{"x":-14,"y":-42},{"x":-102,"y":55},{"x":-86,"y":6},{"x":-61,"y":-27},{"x":-4,"y":33},{"x":-105,"y":32},{"x":21,"y":40},{"x":-117,"y":46},{"x":-67,"y":-183}],"type":"admin"},{"arc":[{"x":110310,"y":81107},{"x":-5,"y":-78},{"x":-31,"y":-2},{"x":-7,"y":-26},{"x":9,"y":-76},{"x":47,"y":5},{"x":-6,"y":-29},{"x":-20,"y":7},{"x":-9,"y":-54},{"x":-72,"y":-48},{"x":-17,"y":12},{"x":-10,"y":-40},{"x":-34,"y":10},{"x":-11,"y":-20},{"x":52,"y":-53},{"x":-51,"y":-119}],"type":"admin"},{"arc":[{"x":110145,"y":80596},{"x":243,"y":-3}],"type":"area"},{"arc":[{"x":111017,"y":80788},{"x":61,"y":43},{"x":-20,"y":33},{"x":76,"y":4},{"x":-34,"y":45},{"x":22,"y":24},{"x":89,"y":-17},{"x":2,"y":55},{"x":87,"y":15},{"x":16,"y":63},{"x":58,"y":-4},{"x":8,"y":86},{"x":-34,"y":46},{"x":100,"y":52}],"type":"area"},{"arc":[{"x":111448,"y":81233},{"x":19,"y":23},{"x":-44,"y":32},{"x":11,"y":94},{"x":-162,"y":8},{"x":-25,"y":19},{"x":15,"y":134},{"x":-94,"y":79},{"x":-73,"y":-4}],"type":"admin"},{"arc":[{"x":110285,"y":79206},{"x":-34,"y":3},{"x":-3,"y":-30},{"x":34,"y":-3},{"x":-27,"y":17},{"x":30,"y":13}],"type":"coastline"},{"arc":[{"x":110377,"y":79191},{"x":-54,"y":-13},{"x":-7,"y":18},{"x":-19,"y":-21},{"x":6,"y":-190},{"x":72,"y":10},{"x":2,"y":196}],"type":"coastline"},{"arc":[{"x":110510,"y":80213},{"x":-92,"y":-6},{"x":-26,"y":-23},{"x":38,"y":-165},{"x":-47,"y":-166},{"x":7,"y":-111},{"x":-22,"y":18},{"x":-35,"y":-51},{"x":-55,"y":-11},{"x":12,"y":-176},{"x":-95,"y":-196}],"type":"area"},{"arc":[{"x":110195,"y":79326},{"x":9,"y":-21},{"x":-20,"y":-6},{"x":17,"y":-5},{"x":-2,"y":-7},{"x":-21,"y":3},{"x":30,"y":-2},{"x":17,"y":14},{"x":134,"y":-51},{"x":68,"y":11},{"x":8,"y":-22},{"x":41,"y":-1},{"x":28,"y":57},{"x":73,"y":2},{"x":102,"y":65},{"x":2,"y":49},{"x":50,"y":-39},{"x":8,"y":25},{"x":17,"y":-75},{"x":26,"y":-22},{"x":65,"y":13},{"x":58,"y":-33},{"x":3,"y":-61},{"x":70,"y":-67},{"x":-15,"y":38},{"x":39,"y":19},{"x":-19,"y":-23},{"x":25,"y":8},{"x":43,"y":-20},{"x":-57,"y":1},{"x":-7,"y":-23},{"x":8,"y":16},{"x":57,"y":5},{"x":4,"y":17},{"x":38,"y":-19},{"x":46,"y":-132},{"x":29,"y":25},{"x":-22,"y":9},{"x":42,"y":20},{"x":-13,"y":-26},{"x":98,"y":-35},{"x":-2,"y":55},{"x":32,"y":15},{"x":-5,"y":-58},{"x":92,"y":-76}],"type":"coastline"},{"arc":[{"x":111391,"y":78969},{"x":50,"y":17},{"x":-122,"y":414},{"x":21,"y":91},{"x":95,"y":30},{"x":30,"y":68},{"x":93,"y":-54}],"type":"admin"},{"arc":[{"x":111558,"y":79535},{"x":-13,"y":88}],"type":"admin"},{"arc":[{"x":111545,"y":79623},{"x":-29,"y":86},{"x":62,"y":100},{"x":-24,"y":-1},{"x":22,"y":107},{"x":-19,"y":67},{"x":-70,"y":44},{"x":-59,"y":-71},{"x":13,"y":32},{"x":-42,"y":-6},{"x":13,"y":57},{"x":-31,"y":10},{"x":-13,"y":-39},{"x":-32,"y":-4},{"x":7,"y":-28},{"x":-68,"y":-21},{"x":-93,"y":-113},{"x":-74,"y":16},{"x":7,"y":87},{"x":122,"y":99},{"x":12,"y":104},{"x":-83,"y":62},{"x":22,"y":35},{"x":43,"y":0},{"x":21,"y":47},{"x":-70,"y":5},{"x":24,"y":23},{"x":-33,"y":17},{"x":-7,"y":67},{"x":-128,"y":-9}],"type":"area"},{"arc":[{"x":110145,"y":80596},{"x":-101,"y":-45},{"x":39,"y":-50},{"x":-90,"y":-74},{"x":32,"y":-56},{"x":-15,"y":-60},{"x":47,"y":-30},{"x":-95,"y":-28},{"x":16,"y":306},{"x":-28,"y":226},{"x":-83,"y":102}],"type":"admin"},{"arc":[{"x":109867,"y":80887},{"x":-101,"y":28}],"type":"admin"},{"arc":[{"x":109766,"y":80915},{"x":-111,"y":21},{"x":-37,"y":-87},{"x":-111,"y":3},{"x":-92,"y":115},{"x":-40,"y":-21},{"x":-39,"y":17},{"x":-62,"y":89},{"x":-194,"y":40}],"type":"admin"},{"arc":[{"x":109080,"y":81092},{"x":3,"y":-130},{"x":21,"y":-9},{"x":-31,"y":-31},{"x":7,"y":-80},{"x":67,"y":-3},{"x":35,"y":-49},{"x":-81,"y":-21},{"x":-90,"y":-70},{"x":-4,"y":-30},{"x":85,"y":-23},{"x":86,"y":-84},{"x":38,"y":-2},{"x":-3,"y":-34},{"x":57,"y":-55}],"type":"admin"},{"arc":[{"x":109270,"y":80471},{"x":44,"y":-8},{"x":48,"y":-62},{"x":5,"y":-94},{"x":52,"y":-41},{"x":-24,"y":-73},{"x":59,"y":-64},{"x":-23,"y":-56},{"x":30,"y":-19},{"x":-28,"y":-44},{"x":47,"y":-39},{"x":8,"y":20},{"x":53,"y":-16},{"x":56,"y":-48},{"x":-9,"y":-50},{"x":-60,"y":-26},{"x":99,"y":-6},{"x":100,"y":-127},{"x":-65,"y":-55},{"x":-40,"y":-97},{"x":86,"y":-225}],"type":"admin"},{"arc":[{"x":109708,"y":79341},{"x":76,"y":-25},{"x":114,"y":13},{"x":7,"y":-28},{"x":142,"y":38},{"x":30,"y":-28},{"x":11,"y":40},{"x":-6,"y":-41},{"x":73,"y":6},{"x":19,"y":-24},{"x":21,"y":34}],"type":"coastline"},{"arc":[{"x":112950,"y":80645},{"x":-94,"y":-58},{"x":-83,"y":30},{"x":-174,"y":-26},{"x":-127,"y":22},{"x":-11,"y":23},{"x":-15,"y":-39},{"x":-58,"y":8}],"type":"admin"},{"arc":[{"x":112388,"y":80605},{"x":-261,"y":-79},{"x":-85,"y":7},{"x":-41,"y":-29},{"x":-115,"y":44},{"x":3,"y":61},{"x":-107,"y":-2},{"x":-12,"y":24},{"x":-208,"y":-13},{"x":-131,"y":-61},{"x":3,"y":102},{"x":71,"y":140}],"type":"admin"},{"arc":[{"x":111505,"y":80799},{"x":-30,"y":31},{"x":23,"y":91},{"x":-63,"y":-43},{"x":21,"y":103},{"x":40,"y":20},{"x":16,"y":199},{"x":-64,"y":33}],"type":"admin"},{"arc":[{"x":111545,"y":79623},{"x":53,"y":39},{"x":251,"y":65},{"x":37,"y":73},{"x":146,"y":-41},{"x":41,"y":18},{"x":74,"y":-35},{"x":114,"y":-111},{"x":79,"y":65},{"x":22,"y":-30},{"x":62,"y":29},{"x":23,"y":102}],"type":"admin"},{"arc":[{"x":112447,"y":79797},{"x":38,"y":34},{"x":-13,"y":73},{"x":34,"y":52},{"x":86,"y":3},{"x":110,"y":57},{"x":90,"y":189},{"x":-52,"y":31},{"x":-1,"y":30},{"x":80,"y":58},{"x":82,"y":14},{"x":56,"y":55},{"x":93,"y":-12},{"x":-81,"y":112},{"x":44,"y":60},{"x":-63,"y":92}],"type":"admin"},{"arc":[{"x":106864,"y":78169},{"x":-9,"y":60},{"x":7,"y":-64},{"x":-84,"y":-27},{"x":22,"y":73},{"x":31,"y":16},{"x":13,"y":-29},{"x":-3,"y":49},{"x":15,"y":-18},{"x":-19,"y":23},{"x":-38,"y":5},{"x":-29,"y":-123},{"x":94,"y":35}],"type":"coastline"},{"arc":[{"x":107719,"y":80543},{"x":40,"y":114},{"x":-36,"y":76},{"x":60,"y":117},{"x":115,"y":38},{"x":29,"y":99},{"x":72,"y":27},{"x":55,"y":87},{"x":130,"y":51}],"type":"area"},{"arc":[{"x":108184,"y":81152},{"x":-12,"y":63},{"x":-130,"y":54},{"x":-70,"y":-10},{"x":-130,"y":112},{"x":-13,"y":110},{"x":-82,"y":67},{"x":21,"y":87},{"x":106,"y":133},{"x":-17,"y":42},{"x":54,"y":102},{"x":-20,"y":211},{"x":24,"y":79},{"x":-32,"y":43},{"x":-4,"y":98},{"x":56,"y":113},{"x":60,"y":-30},{"x":41,"y":14},{"x":14,"y":63},{"x":-68,"y":91},{"x":-63,"y":21},{"x":45,"y":153},{"x":-17,"y":82},{"x":36,"y":38}],"type":"admin"},{"arc":[{"x":107983,"y":82888},{"x":-32,"y":80},{"x":38,"y":143},{"x":-107,"y":159},{"x":-34,"y":90},{"x":16,"y":41},{"x":-52,"y":46},{"x":-18,"y":68},{"x":-44,"y":-16},{"x":-150,"y":101}],"type":"admin"},{"arc":[{"x":107600,"y":83600},{"x":-55,"y":-13},{"x":-110,"y":55},{"x":-190,"y":22},{"x":-19,"y":-75},{"x":-48,"y":-33},{"x":-5,"y":-60},{"x":-221,"y":-3},{"x":-60,"y":-22},{"x":-248,"y":97},{"x":-48,"y":-11},{"x":-33,"y":21},{"x":-57,"y":-31}],"type":"admin"},{"arc":[{"x":106506,"y":83547},{"x":-28,"y":-62},{"x":-145,"y":-151},{"x":-25,"y":-88},{"x":9,"y":-52},{"x":43,"y":-25},{"x":-12,"y":-85},{"x":23,"y":-43},{"x":-35,"y":-83},{"x":-95,"y":-46},{"x":-41,"y":-122}],"type":"admin"},{"arc":[{"x":106200,"y":82790},{"x":39,"y":-135},{"x":-23,"y":-186},{"x":34,"y":-72},{"x":119,"y":-52},{"x":204,"y":31},{"x":114,"y":-102},{"x":-8,"y":-127},{"x":109,"y":-23},{"x":109,"y":-144},{"x":-2,"y":-46},{"x":-77,"y":-56},{"x":72,"y":-55},{"x":-10,"y":-36},{"x":85,"y":-42},{"x":-104,"y":-244},{"x":45,"y":-101},{"x":-1,"y":-124},{"x":-123,"y":-92},{"x":-71,"y":-273},{"x":-33,"y":-18},{"x":-22,"y":-65},{"x":-76,"y":4},{"x":11,"y":-98},{"x":32,"y":-16},{"x":-10,"y":-42},{"x":-38,"y":18},{"x":-99,"y":-15},{"x":-32,"y":11},{"x":-5,"y":32},{"x":-52,"y":0},{"x":-11,"y":-170},{"x":-38,"y":-25},{"x":-73,"y":7},{"x":-104,"y":50},{"x":-48,"y":-15},{"x":-47,"y":32},{"x":-109,"y":-91},{"x":-65,"y":39},{"x":-43,"y":-22},{"x":-66,"y":22},{"x":-12,"y":118},{"x":-47,"y":62},{"x":-101,"y":-26}],"type":"admin"},{"arc":[{"x":105623,"y":80703},{"x":-11,"y":-81},{"x":-70,"y":-110},{"x":-238,"y":-116},{"x":-63,"y":-80},{"x":-77,"y":7},{"x":-34,"y":-55},{"x":-87,"y":40},{"x":-62,"y":-74}],"type":"admin"},{"arc":[{"x":104981,"y":80234},{"x":-45,"y":-102},{"x":52,"y":-55},{"x":-32,"y":-84},{"x":176,"y":-55},{"x":114,"y":-83},{"x":136,"y":-1},{"x":58,"y":-45},{"x":-59,"y":-1},{"x":-46,"y":-80},{"x":-67,"y":-28}],"type":"admin"},{"arc":[{"x":105268,"y":79700},{"x":37,"y":-98},{"x":-42,"y":-78},{"x":107,"y":-38},{"x":37,"y":-119},{"x":-46,"y":-144},{"x":41,"y":-11},{"x":14,"y":-69},{"x":-62,"y":-110},{"x":84,"y":-138},{"x":38,"y":10},{"x":16,"y":-65},{"x":-28,"y":-63},{"x":-80,"y":-22},{"x":-37,"y":-44},{"x":-40,"y":13},{"x":-37,"y":-73},{"x":21,"y":-30},{"x":-26,"y":6},{"x":26,"y":-72},{"x":203,"y":-47},{"x":-24,"y":54},{"x":28,"y":20},{"x":54,"y":-40},{"x":68,"y":53},{"x":68,"y":-6},{"x":19,"y":48},{"x":79,"y":42},{"x":57,"y":-56}],"type":"admin"},{"arc":[{"x":105843,"y":78623},{"x":98,"y":77},{"x":14,"y":-26},{"x":41,"y":45},{"x":3,"y":73},{"x":63,"y":55},{"x":-7,"y":43},{"x":16,"y":-26},{"x":75,"y":80},{"x":-26,"y":25},{"x":25,"y":40},{"x":10,"y":-74},{"x":7,"y":27},{"x":11,"y":-29},{"x":37,"y":19},{"x":3,"y":40},{"x":208,"y":-90},{"x":109,"y":44},{"x":45,"y":-44},{"x":99,"y":-1},{"x":31,"y":-210},{"x":77,"y":-22},{"x":86,"y":-9},{"x":92,"y":28},{"x":30,"y":64},{"x":-29,"y":126},{"x":85,"y":25},{"x":185,"y":-351},{"x":35,"y":14},{"x":-160,"y":251},{"x":-43,"y":111},{"x":9,"y":52},{"x":27,"y":8},{"x":57,"y":-147},{"x":149,"y":-238},{"x":35,"y":15},{"x":121,"y":64},{"x":-30,"y":31},{"x":37,"y":1},{"x":-3,"y":25},{"x":15,"y":-24},{"x":-15,"y":24},{"x":45,"y":38},{"x":10,"y":43},{"x":-28,"y":-8},{"x":-35,"y":62},{"x":400,"y":223},{"x":132,"y":99},{"x":168,"y":159},{"x":-61,"y":73},{"x":174,"y":174}],"type":"coastline"},{"arc":[{"x":108270,"y":79602},{"x":-430,"y":427},{"x":-67,"y":27},{"x":-24,"y":-66},{"x":-54,"y":-3},{"x":12,"y":-42},{"x":-27,"y":-15},{"x":-50,"y":63},{"x":-84,"y":-68},{"x":-66,"y":124},{"x":-153,"y":110},{"x":101,"y":144},{"x":111,"y":-42},{"x":19,"y":40},{"x":-28,"y":42},{"x":64,"y":38},{"x":18,"y":43},{"x":84,"y":14},{"x":-3,"y":93},{"x":26,"y":12}],"type":"admin"},{"arc":[{"x":102537,"y":72792},{"x":-63,"y":8},{"x":5,"y":-37},{"x":58,"y":29}],"type":"coastline"},{"arc":[{"x":102606,"y":73504},{"x":-8,"y":36},{"x":-7,"y":-52},{"x":42,"y":-8},{"x":27,"y":22},{"x":-54,"y":2}],"type":"coastline"},{"arc":[{"x":102803,"y":73603},{"x":-103,"y":34},{"x":9,"y":-39},{"x":94,"y":5}],"type":"coastline"},{"arc":[{"x":102915,"y":73515},{"x":-57,"y":53},{"x":52,"y":-72},{"x":5,"y":19}],"type":"coastline"},{"arc":[{"x":103011,"y":73233},{"x":-52,"y":-6},{"x":11,"y":-37},{"x":31,"y":6},{"x":10,"y":37}],"type":"coastline"},{"arc":[{"x":103019,"y":72700},{"x":-35,"y":63},{"x":-91,"y":21},{"x":51,"y":-79},{"x":51,"y":-25},{"x":24,"y":20}],"type":"coastline"},{"arc":[{"x":103066,"y":73362},{"x":-1,"y":30},{"x":-91,"y":35},{"x":2,"y":39},{"x":-64,"y":-11},{"x":27,"y":-58},{"x":-58,"y":38},{"x":-68,"y":113},{"x":-49,"y":13},{"x":3,"y":-32},{"x":-39,"y":15},{"x":-15,"y":-35},{"x":-39,"y":35},{"x":-43,"y":1},{"x":237,"y":-152},{"x":-11,"y":-54},{"x":-42,"y":-27},{"x":-163,"y":-36},{"x":54,"y":-39},{"x":67,"y":7},{"x":50,"y":-26},{"x":27,"y":66},{"x":34,"y":-49},{"x":56,"y":22},{"x":-21,"y":36},{"x":26,"y":16},{"x":60,"y":-50},{"x":61,"y":103}],"type":"coastline"},{"arc":[{"x":103203,"y":73867},{"x":-10,"y":35},{"x":-38,"y":3},{"x":-35,"y":-33},{"x":-12,"y":-86},{"x":32,"y":1},{"x":63,"y":80}],"type":"coastline"},{"arc":[{"x":103283,"y":72792},{"x":-22,"y":24},{"x":-65,"y":-64},{"x":87,"y":40}],"type":"coastline"},{"arc":[{"x":104164,"y":74519},{"x":-39,"y":75},{"x":-70,"y":24},{"x":-55,"y":-51},{"x":-27,"y":-110},{"x":73,"y":-34},{"x":118,"y":96}],"type":"coastline"},{"arc":[{"x":104908,"y":76192},{"x":-26,"y":11},{"x":-60,"y":-42},{"x":-35,"y":41},{"x":-72,"y":-39},{"x":89,"y":-9},{"x":64,"y":-57},{"x":-4,"y":49},{"x":44,"y":46}],"type":"coastline"},{"arc":[{"x":104965,"y":76064},{"x":-44,"y":-14},{"x":-18,"y":-39},{"x":53,"y":19},{"x":9,"y":34}],"type":"coastline"},{"arc":[{"x":105107,"y":76733},{"x":-80,"y":85},{"x":41,"y":60},{"x":25,"y":-17},{"x":-19,"y":57},{"x":-69,"y":15},{"x":-103,"y":-66},{"x":-16,"y":-49},{"x":-105,"y":-31},{"x":-144,"y":-119},{"x":-37,"y":-50},{"x":6,"y":-39},{"x":-32,"y":-9},{"x":17,"y":-32},{"x":-89,"y":-79},{"x":23,"y":-5},{"x":19,"y":-75},{"x":-27,"y":-33},{"x":14,"y":-125},{"x":-39,"y":-35},{"x":11,"y":-20},{"x":82,"y":89},{"x":10,"y":43},{"x":-34,"y":22},{"x":107,"y":68},{"x":0,"y":58},{"x":-76,"y":2},{"x":17,"y":30},{"x":53,"y":13},{"x":-5,"y":19},{"x":9,"y":-18},{"x":146,"y":26},{"x":-18,"y":-49},{"x":74,"y":-4},{"x":86,"y":63},{"x":-31,"y":4},{"x":14,"y":27},{"x":3,"y":-20},{"x":36,"y":19},{"x":-5,"y":-16},{"x":10,"y":19},{"x":-10,"y":18},{"x":105,"y":56},{"x":31,"y":98}],"type":"coastline"},{"arc":[{"x":105158,"y":76784},{"x":-26,"y":12},{"x":-35,"y":-26},{"x":-30,"y":20},{"x":48,"y":-44},{"x":43,"y":38}],"type":"coastline"},{"arc":[{"x":105308,"y":76312},{"x":-38,"y":-12},{"x":0,"y":36},{"x":33,"y":4},{"x":-33,"y":3},{"x":39,"y":46},{"x":-30,"y":0},{"x":6,"y":22},{"x":-35,"y":-42},{"x":-26,"y":39},{"x":-49,"y":0},{"x":52,"y":23},{"x":-12,"y":14},{"x":50,"y":4},{"x":-11,"y":18},{"x":-80,"y":-16},{"x":33,"y":31},{"x":-17,"y":37},{"x":-53,"y":-13},{"x":14,"y":93},{"x":-105,"y":-32},{"x":-6,"y":-54},{"x":-16,"y":14},{"x":29,"y":-60},{"x":-94,"y":-84},{"x":5,"y":-34},{"x":34,"y":8},{"x":5,"y":-18},{"x":-46,"y":-30},{"x":-12,"y":-45},{"x":98,"y":39},{"x":24,"y":51},{"x":-36,"y":29},{"x":21,"y":-5},{"x":13,"y":32},{"x":43,"y":-69},{"x":-34,"y":-40},{"x":14,"y":-120},{"x":89,"y":-28},{"x":71,"y":48},{"x":-70,"y":75},{"x":18,"y":20},{"x":96,"y":-1},{"x":16,"y":17}],"type":"coastline"},{"arc":[{"x":105356,"y":76685},{"x":-45,"y":-23},{"x":22,"y":30},{"x":-67,"y":42},{"x":-53,"y":-66},{"x":39,"y":-54},{"x":2,"y":22},{"x":19,"y":-12},{"x":5,"y":-23},{"x":-24,"y":7},{"x":57,"y":-23},{"x":49,"y":30},{"x":16,"y":59},{"x":-20,"y":11}],"type":"coastline"},{"arc":[{"x":105467,"y":75497},{"x":-159,"y":2},{"x":-29,"y":-56},{"x":85,"y":-21},{"x":43,"y":37},{"x":16,"y":-22},{"x":44,"y":60}],"type":"coastline"},{"arc":[{"x":105581,"y":76586},{"x":38,"y":34}],"type":"coastline"},{"arc":[{"x":105619,"y":76620},{"x":-38,"y":-34}],"type":"coastline"},{"arc":[{"x":105656,"y":76456},{"x":-18,"y":26},{"x":-100,"y":-47},{"x":91,"y":-4},{"x":27,"y":25}],"type":"coastline"},{"arc":[{"x":105744,"y":76689},{"x":-32,"y":1},{"x":-23,"y":-38}],"type":"area"},{"arc":[{"x":105689,"y":76652},{"x":60,"y":13},{"x":-5,"y":24}],"type":"coastline"},{"arc":[{"x":105753,"y":75461},{"x":-27,"y":-1},{"x":-3,"y":26},{"x":-21,"y":-38},{"x":21,"y":-12},{"x":30,"y":25}],"type":"coastline"},{"arc":[{"x":105801,"y":75454},{"x":-32,"y":4},{"x":-2,"y":-36},{"x":34,"y":32}],"type":"coastline"},{"arc":[{"x":107036,"y":77133},{"x":-28,"y":-8},{"x":38,"y":-13},{"x":-10,"y":21}],"type":"coastline"},{"arc":[{"x":106998,"y":77100},{"x":34,"y":-18},{"x":-40,"y":4},{"x":-62,"y":-86},{"x":-128,"y":25},{"x":-96,"y":-46},{"x":22,"y":-52},{"x":-35,"y":-81},{"x":10,"y":-111},{"x":57,"y":-97},{"x":-39,"y":-46},{"x":-132,"y":11},{"x":-105,"y":-55},{"x":-50,"y":30},{"x":-38,"y":-7},{"x":-109,"y":83},{"x":-68,"y":179},{"x":71,"y":171},{"x":-31,"y":24},{"x":-65,"y":-25},{"x":-35,"y":15},{"x":-217,"y":-79},{"x":-83,"y":-95},{"x":-96,"y":3},{"x":-31,"y":-45},{"x":45,"y":-81}],"type":"area"},{"arc":[{"x":105777,"y":76721},{"x":67,"y":-3},{"x":-16,"y":-25},{"x":66,"y":3},{"x":6,"y":22},{"x":20,"y":-35},{"x":44,"y":18},{"x":2,"y":-41},{"x":21,"y":12},{"x":-19,"y":-25},{"x":-31,"y":11},{"x":-6,"y":-35},{"x":-42,"y":21},{"x":-51,"y":-40},{"x":-6,"y":20},{"x":2,"y":-18},{"x":-48,"y":-1},{"x":-1,"y":-35},{"x":-7,"y":34},{"x":-15,"y":-90},{"x":-77,"y":-49},{"x":47,"y":-45},{"x":-36,"y":3},{"x":-37,"y":-129},{"x":8,"y":18},{"x":8,"y":-27},{"x":17,"y":10},{"x":-12,"y":-27},{"x":-26,"y":21},{"x":-11,"y":-56},{"x":8,"y":-19},{"x":9,"y":36},{"x":17,"y":-4},{"x":-21,"y":-26},{"x":24,"y":1},{"x":47,"y":-146},{"x":-49,"y":-58},{"x":23,"y":3},{"x":46,"y":-81},{"x":39,"y":1},{"x":47,"y":-47},{"x":35,"y":5},{"x":-16,"y":-26},{"x":-24,"y":19},{"x":27,"y":-23},{"x":-10,"y":-104},{"x":-54,"y":-18},{"x":-48,"y":15},{"x":-118,"y":-92},{"x":-23,"y":22},{"x":-49,"y":-21},{"x":-42,"y":-104},{"x":11,"y":-83},{"x":83,"y":27},{"x":19,"y":41},{"x":44,"y":-6},{"x":4,"y":58},{"x":-23,"y":9},{"x":77,"y":5},{"x":-18,"y":-45},{"x":63,"y":1},{"x":-3,"y":19},{"x":38,"y":-14},{"x":12,"y":26},{"x":79,"y":-39},{"x":-22,"y":-40},{"x":100,"y":-102},{"x":-62,"y":18},{"x":-7,"y":26},{"x":-43,"y":-43},{"x":47,"y":-79},{"x":116,"y":-10},{"x":82,"y":-103},{"x":72,"y":-4},{"x":68,"y":-45},{"x":114,"y":-7},{"x":128,"y":249},{"x":-10,"y":62},{"x":23,"y":8},{"x":-2,"y":-21},{"x":100,"y":180},{"x":61,"y":36},{"x":4,"y":-20},{"x":14,"y":27},{"x":-10,"y":-31},{"x":41,"y":72},{"x":5,"y":111},{"x":47,"y":33},{"x":11,"y":89},{"x":46,"y":45},{"x":-50,"y":33},{"x":9,"y":21},{"x":44,"y":-46},{"x":58,"y":81},{"x":3,"y":-33},{"x":67,"y":27},{"x":143,"y":167},{"x":96,"y":45},{"x":20,"y":79},{"x":10,"y":-24},{"x":-6,"y":62},{"x":40,"y":93},{"x":-61,"y":6},{"x":-40,"y":46},{"x":22,"y":21},{"x":29,"y":-25},{"x":47,"y":40},{"x":84,"y":193},{"x":-47,"y":-20},{"x":-14,"y":25},{"x":-30,"y":-6},{"x":87,"y":56},{"x":-43,"y":9},{"x":16,"y":31},{"x":-19,"y":28},{"x":15,"y":-17},{"x":-23,"y":-7},{"x":1,"y":21},{"x":-38,"y":-50},{"x":-78,"y":22},{"x":-17,"y":-28},{"x":-6,"y":20},{"x":18,"y":14},{"x":32,"y":-5},{"x":-1,"y":38},{"x":55,"y":38},{"x":33,"y":-3},{"x":9,"y":68},{"x":-61,"y":-70},{"x":-14,"y":34},{"x":-2,"y":-42},{"x":-2,"y":49},{"x":-17,"y":-40},{"x":-17,"y":43},{"x":-30,"y":-29},{"x":-41,"y":24},{"x":70,"y":11},{"x":6,"y":38},{"x":36,"y":7},{"x":-12,"y":16},{"x":-27,"y":-22},{"x":21,"y":22},{"x":-26,"y":-9},{"x":-10,"y":27},{"x":-162,"y":5}],"type":"coastline"},{"arc":[{"x":107317,"y":76925},{"x":27,"y":-16},{"x":49,"y":18},{"x":-76,"y":-2}],"type":"coastline"},{"arc":[{"x":107534,"y":75097},{"x":-46,"y":5},{"x":-3,"y":-34},{"x":49,"y":29}],"type":"coastline"},{"arc":[{"x":107586,"y":74352},{"x":-2,"y":19},{"x":5,"y":-49},{"x":-3,"y":30}],"type":"coastline"},{"arc":[{"x":107623,"y":75014},{"x":-19,"y":26},{"x":4,"y":-83},{"x":15,"y":57}],"type":"coastline"},{"arc":[{"x":106209,"y":73246},{"x":-38,"y":28},{"x":-17,"y":104},{"x":-45,"y":20},{"x":50,"y":41},{"x":-17,"y":67},{"x":67,"y":130},{"x":1,"y":226},{"x":-128,"y":136},{"x":3,"y":42},{"x":41,"y":21},{"x":69,"y":-29},{"x":181,"y":12},{"x":94,"y":-135},{"x":247,"y":129},{"x":32,"y":31},{"x":-49,"y":78},{"x":85,"y":7},{"x":1,"y":35},{"x":119,"y":91},{"x":117,"y":8},{"x":27,"y":-37},{"x":61,"y":-2},{"x":80,"y":69},{"x":54,"y":-13},{"x":40,"y":47},{"x":50,"y":-2},{"x":23,"y":23},{"x":97,"y":-83},{"x":75,"y":-11}],"type":"admin"},{"arc":[{"x":107529,"y":74279},{"x":65,"y":13},{"x":-26,"y":20},{"x":20,"y":3},{"x":-8,"y":88},{"x":-14,"y":-27},{"x":-8,"y":59},{"x":-21,"y":0},{"x":2,"y":6},{"x":32,"y":-6},{"x":-39,"y":13},{"x":3,"y":14},{"x":12,"y":-19},{"x":29,"y":3},{"x":6,"y":12},{"x":-22,"y":-11},{"x":6,"y":27},{"x":9,"y":-15},{"x":0,"y":13},{"x":-15,"y":5},{"x":25,"y":86},{"x":21,"y":23},{"x":2,"y":113},{"x":16,"y":13},{"x":-16,"y":-12},{"x":18,"y":193},{"x":-42,"y":78},{"x":11,"y":43},{"x":-29,"y":11},{"x":4,"y":-40},{"x":-56,"y":46},{"x":-81,"y":-25},{"x":39,"y":32},{"x":-26,"y":12},{"x":-15,"y":76},{"x":-44,"y":-6},{"x":-2,"y":-44},{"x":-30,"y":-14},{"x":-154,"y":23},{"x":16,"y":-35},{"x":-64,"y":-22},{"x":-19,"y":36},{"x":18,"y":-14},{"x":52,"y":24},{"x":-46,"y":-5},{"x":-55,"y":45},{"x":-65,"y":-7},{"x":-100,"y":-57},{"x":4,"y":16},{"x":-37,"y":39},{"x":33,"y":-41},{"x":-18,"y":0},{"x":10,"y":-18},{"x":-31,"y":16},{"x":20,"y":17},{"x":-19,"y":-13},{"x":-33,"y":18},{"x":38,"y":13},{"x":-79,"y":-2},{"x":-105,"y":91},{"x":-70,"y":-26},{"x":11,"y":36},{"x":-35,"y":21},{"x":-37,"y":-65},{"x":3,"y":46},{"x":-49,"y":-5},{"x":10,"y":-32},{"x":-29,"y":19},{"x":-72,"y":-84},{"x":-14,"y":71},{"x":3,"y":-60},{"x":-49,"y":52},{"x":-41,"y":3},{"x":-4,"y":-18},{"x":-112,"y":34},{"x":-48,"y":37},{"x":-103,"y":17},{"x":-21,"y":-25},{"x":-42,"y":97},{"x":-45,"y":-1},{"x":-9,"y":-37},{"x":27,"y":0},{"x":-20,"y":-78},{"x":-23,"y":11},{"x":19,"y":60},{"x":-86,"y":-33},{"x":-33,"y":-74},{"x":-73,"y":-21},{"x":2,"y":-26},{"x":-44,"y":-8},{"x":-31,"y":50},{"x":-98,"y":-5},{"x":-38,"y":-63},{"x":-7,"y":31},{"x":-4,"y":-52},{"x":-35,"y":63},{"x":123,"y":54},{"x":-15,"y":18},{"x":33,"y":15},{"x":-47,"y":120},{"x":-62,"y":-40},{"x":12,"y":64},{"x":-66,"y":20},{"x":-5,"y":-55},{"x":-81,"y":-10},{"x":22,"y":37},{"x":-56,"y":-1},{"x":-1,"y":22},{"x":-71,"y":28},{"x":-32,"y":-10},{"x":-7,"y":-62},{"x":-110,"y":-38},{"x":35,"y":12},{"x":-34,"y":-31},{"x":20,"y":-5},{"x":-13,"y":-23},{"x":-7,"y":20},{"x":-44,"y":-7},{"x":41,"y":22},{"x":-42,"y":-11},{"x":-60,"y":-62},{"x":-145,"y":25},{"x":-59,"y":-65},{"x":-61,"y":-13},{"x":-26,"y":28},{"x":6,"y":-52},{"x":-39,"y":4},{"x":12,"y":-62},{"x":-158,"y":-126},{"x":-2,"y":-98},{"x":154,"y":-55},{"x":-8,"y":26},{"x":53,"y":-13},{"x":-9,"y":24},{"x":42,"y":-5},{"x":-20,"y":16},{"x":67,"y":11},{"x":3,"y":28},{"x":70,"y":23},{"x":8,"y":-26},{"x":-130,"y":-113},{"x":37,"y":-38},{"x":49,"y":10},{"x":-9,"y":-39},{"x":-30,"y":24},{"x":-30,"y":-44},{"x":-114,"y":47},{"x":28,"y":-50},{"x":-28,"y":-1},{"x":11,"y":-37},{"x":-56,"y":36},{"x":-25,"y":-23},{"x":-45,"y":43},{"x":-11,"y":-85},{"x":26,"y":-16},{"x":9,"y":22},{"x":39,"y":-66},{"x":-83,"y":17},{"x":26,"y":-38},{"x":-48,"y":12},{"x":-6,"y":-23},{"x":-56,"y":22},{"x":-2,"y":-23},{"x":-6,"y":29},{"x":-77,"y":-31},{"x":20,"y":32},{"x":-24,"y":23},{"x":86,"y":11},{"x":-56,"y":25},{"x":39,"y":-1},{"x":-23,"y":21},{"x":25,"y":26},{"x":-11,"y":109},{"x":-75,"y":32},{"x":-111,"y":-86},{"x":-17,"y":-70},{"x":-35,"y":-22},{"x":12,"y":-34},{"x":-32,"y":-10},{"x":77,"y":-74},{"x":51,"y":-12},{"x":-34,"y":-1},{"x":-39,"y":-53},{"x":-8,"y":27},{"x":-2,"y":-37},{"x":-84,"y":-80},{"x":-152,"y":-85},{"x":-10,"y":-57},{"x":-58,"y":32},{"x":-94,"y":-55},{"x":25,"y":-36},{"x":-29,"y":-62},{"x":16,"y":16},{"x":-6,"y":-76},{"x":-69,"y":37},{"x":-21,"y":-15},{"x":-15,"y":45},{"x":39,"y":-3},{"x":2,"y":54},{"x":-50,"y":-6},{"x":-13,"y":-27},{"x":-107,"y":25},{"x":-82,"y":-40},{"x":26,"y":-31},{"x":-54,"y":-56},{"x":78,"y":-10},{"x":4,"y":-27},{"x":24,"y":10},{"x":33,"y":-32},{"x":26,"y":17},{"x":-41,"y":36},{"x":69,"y":-40},{"x":-20,"y":32},{"x":41,"y":35},{"x":6,"y":-100},{"x":-19,"y":8},{"x":-2,"y":-33},{"x":-106,"y":-15},{"x":-44,"y":47},{"x":-31,"y":-55},{"x":-42,"y":-6},{"x":22,"y":-29},{"x":-37,"y":-18},{"x":-55,"y":141},{"x":-12,"y":-55},{"x":-80,"y":-33},{"x":21,"y":-42},{"x":-42,"y":4},{"x":6,"y":-176},{"x":-41,"y":-16},{"x":-35,"y":-76},{"x":-74,"y":-30},{"x":75,"y":-29},{"x":58,"y":13},{"x":-8,"y":-34},{"x":41,"y":-20},{"x":-41,"y":11},{"x":-4,"y":-21},{"x":-24,"y":42},{"x":-5,"y":-28},{"x":67,"y":-38},{"x":1,"y":-32},{"x":12,"y":22},{"x":35,"y":-7},{"x":-12,"y":-48},{"x":-34,"y":22},{"x":0,"y":-17},{"x":-33,"y":3},{"x":-80,"y":37},{"x":-5,"y":-11},{"x":-31,"y":5},{"x":13,"y":23},{"x":-13,"y":-12},{"x":-2,"y":-19},{"x":-54,"y":4},{"x":-10,"y":-31},{"x":31,"y":5},{"x":10,"y":-22},{"x":-55,"y":5},{"x":-10,"y":-22},{"x":33,"y":-19},{"x":-35,"y":1},{"x":6,"y":-30},{"x":-30,"y":6},{"x":13,"y":33},{"x":-41,"y":-50},{"x":11,"y":-74},{"x":54,"y":15},{"x":31,"y":-27},{"x":17,"y":21},{"x":-5,"y":-19},{"x":60,"y":-6},{"x":-14,"y":-30},{"x":-24,"y":27},{"x":-33,"y":-30},{"x":-1,"y":26},{"x":-38,"y":-91},{"x":-41,"y":-2},{"x":10,"y":-24},{"x":37,"y":8},{"x":28,"y":-25},{"x":17,"y":-74},{"x":35,"y":-3},{"x":8,"y":40},{"x":61,"y":39},{"x":102,"y":10},{"x":48,"y":-25},{"x":8,"y":34},{"x":47,"y":7},{"x":-45,"y":32},{"x":55,"y":-1},{"x":-15,"y":32},{"x":-126,"y":-19},{"x":54,"y":44},{"x":23,"y":-13},{"x":63,"y":72},{"x":211,"y":-37},{"x":0,"y":-49},{"x":45,"y":2},{"x":-30,"y":-31},{"x":-27,"y":35},{"x":-36,"y":-32},{"x":-1,"y":-48},{"x":50,"y":-28},{"x":-45,"y":-28},{"x":52,"y":7},{"x":6,"y":-64},{"x":54,"y":38},{"x":12,"y":45},{"x":50,"y":21},{"x":-2,"y":26},{"x":17,"y":-26},{"x":41,"y":10},{"x":0,"y":-32},{"x":-60,"y":-3},{"x":-93,"y":-104},{"x":40,"y":7},{"x":18,"y":-34},{"x":-83,"y":-99},{"x":49,"y":-66},{"x":26,"y":36},{"x":280,"y":105},{"x":53,"y":64},{"x":59,"y":5},{"x":79,"y":63},{"x":26,"y":-19},{"x":39,"y":125},{"x":132,"y":71},{"x":43,"y":135},{"x":-18,"y":23},{"x":-34,"y":-14},{"x":-19,"y":36},{"x":-26,"y":-21},{"x":-87,"y":-3},{"x":-25,"y":50},{"x":-74,"y":21},{"x":-47,"y":-27},{"x":-16,"y":24},{"x":58,"y":53},{"x":44,"y":-15},{"x":16,"y":-40},{"x":24,"y":48},{"x":36,"y":-34},{"x":-18,"y":-41},{"x":34,"y":23},{"x":44,"y":-18},{"x":47,"y":18},{"x":26,"y":-32},{"x":3,"y":47},{"x":39,"y":15},{"x":-34,"y":54},{"x":44,"y":24},{"x":-69,"y":31},{"x":87,"y":53},{"x":-47,"y":10},{"x":-66,"y":-59},{"x":-20,"y":31},{"x":-24,"y":-38},{"x":-52,"y":66},{"x":-71,"y":-20},{"x":-9,"y":26},{"x":-38,"y":-4},{"x":14,"y":87},{"x":-49,"y":10},{"x":60,"y":28},{"x":50,"y":-9},{"x":40,"y":45},{"x":22,"y":-41},{"x":27,"y":16},{"x":56,"y":-37},{"x":-10,"y":60},{"x":63,"y":48},{"x":69,"y":-62},{"x":-28,"y":-94},{"x":71,"y":-20},{"x":14,"y":-85},{"x":59,"y":-60},{"x":-25,"y":-25},{"x":-101,"y":-13},{"x":-23,"y":-65},{"x":39,"y":-10},{"x":10,"y":-30},{"x":52,"y":19},{"x":64,"y":-18},{"x":-1,"y":-18},{"x":-29,"y":17},{"x":11,"y":-28},{"x":-25,"y":25},{"x":-48,"y":-27},{"x":-14,"y":14},{"x":20,"y":-73},{"x":61,"y":-7},{"x":-5,"y":-49},{"x":-44,"y":-30},{"x":11,"y":-33},{"x":58,"y":-17},{"x":-60,"y":12},{"x":-33,"y":-17},{"x":4,"y":-38},{"x":-42,"y":12},{"x":27,"y":-40},{"x":-13,"y":-41},{"x":62,"y":-12},{"x":81,"y":19},{"x":14,"y":-22},{"x":41,"y":18},{"x":13,"y":-21},{"x":-33,"y":-24},{"x":-19,"y":21},{"x":-23,"y":-54},{"x":71,"y":-4},{"x":18,"y":-55},{"x":63,"y":-9},{"x":-2,"y":-36},{"x":159,"y":43},{"x":179,"y":-65},{"x":67,"y":20},{"x":195,"y":115},{"x":15,"y":17},{"x":-29,"y":-17},{"x":-3,"y":34},{"x":33,"y":35},{"x":61,"y":-6},{"x":14,"y":-59},{"x":96,"y":85},{"x":50,"y":13},{"x":9,"y":-18},{"x":23,"y":35},{"x":26,"y":-15},{"x":30,"y":55},{"x":32,"y":-62},{"x":86,"y":79},{"x":39,"y":-38},{"x":2,"y":20},{"x":101,"y":22},{"x":22,"y":-16},{"x":-5,"y":30},{"x":86,"y":17},{"x":105,"y":101}],"type":"coastline"},{"arc":[{"x":107640,"y":74279},{"x":3,"y":85},{"x":-46,"y":-108},{"x":14,"y":-109},{"x":29,"y":132}],"type":"coastline"},{"arc":[{"x":110184,"y":85821},{"x":-115,"y":8}],"type":"admin"},{"arc":[{"x":110069,"y":85829},{"x":-4,"y":-37},{"x":-191,"y":-197},{"x":17,"y":-60},{"x":-62,"y":-120},{"x":-168,"y":-155},{"x":-64,"y":21},{"x":-43,"y":-26},{"x":-44,"y":9},{"x":-58,"y":-47},{"x":-98,"y":1},{"x":-39,"y":-36},{"x":-71,"y":32},{"x":-38,"y":-18},{"x":-19,"y":21},{"x":-34,"y":-8},{"x":-2,"y":-125},{"x":77,"y":-52},{"x":28,"y":-68},{"x":-48,"y":-81},{"x":-147,"y":-35},{"x":-133,"y":-135},{"x":-122,"y":-37},{"x":-30,"y":-82},{"x":-84,"y":0},{"x":-73,"y":44},{"x":-111,"y":-40},{"x":-145,"y":2},{"x":-53,"y":46},{"x":-40,"y":-21},{"x":-36,"y":12},{"x":-100,"y":-65},{"x":-29,"y":-78},{"x":-47,"y":-4},{"x":-34,"y":29},{"x":-39,"y":-34}],"type":"admin"},{"arc":[{"x":107985,"y":84485},{"x":-12,"y":-143},{"x":78,"y":-170},{"x":-10,"y":-66},{"x":45,"y":-170},{"x":-97,"y":-107},{"x":-70,"y":8},{"x":-122,"y":-48},{"x":-65,"y":31},{"x":-66,"y":-18},{"x":-14,"y":-156},{"x":-52,"y":-46}],"type":"admin"},{"arc":[{"x":107983,"y":82888},{"x":70,"y":-22},{"x":125,"y":95},{"x":54,"y":87},{"x":58,"y":7},{"x":273,"y":-68},{"x":120,"y":-114},{"x":50,"y":46},{"x":-9,"y":74},{"x":37,"y":33},{"x":-35,"y":28},{"x":38,"y":53},{"x":-27,"y":35},{"x":111,"y":17},{"x":-24,"y":-116},{"x":39,"y":-65},{"x":-14,"y":-119},{"x":35,"y":-52},{"x":35,"y":2},{"x":50,"y":-37},{"x":-6,"y":-197},{"x":101,"y":-176}],"type":"admin"},{"arc":[{"x":109064,"y":82399},{"x":47,"y":-103},{"x":83,"y":-39},{"x":72,"y":9},{"x":33,"y":50},{"x":71,"y":21},{"x":3,"y":-39},{"x":183,"y":-3},{"x":85,"y":-26},{"x":93,"y":14},{"x":33,"y":-43},{"x":153,"y":49},{"x":141,"y":-14},{"x":36,"y":111},{"x":88,"y":79},{"x":30,"y":85},{"x":45,"y":15},{"x":230,"y":399},{"x":86,"y":24}],"type":"area"},{"arc":[{"x":110576,"y":82988},{"x":157,"y":232},{"x":89,"y":85},{"x":11,"y":52}],"type":"area"},{"arc":[{"x":110833,"y":83357},{"x":-100,"y":-10},{"x":-101,"y":82},{"x":-39,"y":115},{"x":45,"y":169},{"x":-71,"y":84},{"x":30,"y":32},{"x":-12,"y":42},{"x":55,"y":48},{"x":43,"y":172},{"x":-12,"y":69},{"x":43,"y":17},{"x":-2,"y":63},{"x":-50,"y":40},{"x":50,"y":88},{"x":-55,"y":64},{"x":34,"y":58},{"x":-20,"y":35},{"x":46,"y":65}],"type":"area"},{"arc":[{"x":110717,"y":84590},{"x":-16,"y":73},{"x":40,"y":116},{"x":95,"y":87},{"x":165,"y":28},{"x":35,"y":43},{"x":-19,"y":105},{"x":-38,"y":27},{"x":-22,"y":87},{"x":-125,"y":85},{"x":-24,"y":147},{"x":-60,"y":64},{"x":-24,"y":-13},{"x":4,"y":27},{"x":-43,"y":-6},{"x":-71,"y":58},{"x":-160,"y":-46},{"x":-80,"y":12},{"x":-37,"y":72},{"x":-92,"y":39},{"x":-61,"y":226}],"type":"area"},{"arc":[{"x":23115,"y":85888},{"x":-11,"y":146},{"x":-37,"y":82},{"x":-90,"y":69},{"x":-108,"y":41},{"x":-180,"y":-63},{"x":-110,"y":1},{"x":-99,"y":-53},{"x":-71,"y":-73},{"x":-48,"y":-246},{"x":60,"y":-111},{"x":80,"y":-76},{"x":92,"y":40},{"x":182,"y":-4},{"x":177,"y":44},{"x":80,"y":-11},{"x":56,"y":57},{"x":-27,"y":18},{"x":8,"y":19},{"x":20,"y":-14},{"x":26,"y":134}],"type":"coastline"},{"arc":[{"x":5399,"y":85279},{"x":-19,"y":121},{"x":-32,"y":16},{"x":-64,"y":-30},{"x":-23,"y":-48},{"x":38,"y":-38},{"x":100,"y":-21}],"type":"coastline"},{"arc":[{"x":24236,"y":86355},{"x":-68,"y":210},{"x":7,"y":167},{"x":-41,"y":91},{"x":-29,"y":9},{"x":-242,"y":-95},{"x":-31,"y":-39},{"x":-12,"y":-111},{"x":58,"y":-133},{"x":176,"y":-103},{"x":127,"y":-17},{"x":55,"y":21}],"type":"coastline"},{"arc":[{"x":224270,"y":183844},{"x":16,"y":-32},{"x":25,"y":28},{"x":-14,"y":20},{"x":-27,"y":-16}],"type":"coastline"},{"arc":[{"x":224763,"y":183789},{"x":106,"y":103},{"x":168,"y":-139},{"x":124,"y":-46},{"x":27,"y":-67},{"x":52,"y":50}],"type":"area"},{"arc":[{"x":225240,"y":183690},{"x":76,"y":315},{"x":114,"y":55},{"x":146,"y":145},{"x":15,"y":118},{"x":46,"y":63},{"x":265,"y":87},{"x":41,"y":-5},{"x":119,"y":84},{"x":75,"y":-8},{"x":182,"y":47}],"type":"admin"},{"arc":[{"x":226319,"y":184591},{"x":-62,"y":115},{"x":83,"y":34},{"x":149,"y":181},{"x":114,"y":74},{"x":-38,"y":57},{"x":120,"y":63},{"x":38,"y":50},{"x":78,"y":-30},{"x":179,"y":-7},{"x":127,"y":33},{"x":198,"y":231}],"type":"admin"},{"arc":[{"x":227305,"y":185392},{"x":-53,"y":152},{"x":-51,"y":14},{"x":-44,"y":110},{"x":-69,"y":50},{"x":-79,"y":93},{"x":10,"y":18},{"x":-32,"y":7},{"x":40,"y":-3},{"x":-156,"y":24},{"x":-76,"y":48},{"x":11,"y":24},{"x":-14,"y":13},{"x":-6,"y":-24},{"x":-11,"y":32},{"x":24,"y":-3},{"x":-87,"y":37},{"x":-108,"y":105},{"x":-59,"y":-6},{"x":-135,"y":48},{"x":-60,"y":71},{"x":25,"y":9},{"x":-22,"y":35},{"x":21,"y":14},{"x":13,"y":-54},{"x":-3,"y":77},{"x":-40,"y":-16},{"x":-110,"y":34},{"x":-109,"y":91},{"x":32,"y":-8},{"x":-25,"y":17},{"x":-18,"y":-11},{"x":-276,"y":514},{"x":8,"y":65},{"x":-31,"y":57},{"x":21,"y":-15},{"x":-6,"y":80},{"x":33,"y":42},{"x":-40,"y":218},{"x":-32,"y":24},{"x":-28,"y":140},{"x":20,"y":-14},{"x":-106,"y":179},{"x":-87,"y":259},{"x":-77,"y":73},{"x":-18,"y":-12},{"x":23,"y":18},{"x":-39,"y":-5},{"x":-143,"y":323},{"x":-49,"y":1},{"x":-27,"y":-62},{"x":-125,"y":5},{"x":-85,"y":30},{"x":-119,"y":178},{"x":11,"y":39},{"x":-31,"y":52},{"x":50,"y":-59},{"x":-79,"y":165},{"x":-20,"y":-7},{"x":-14,"y":28},{"x":-35,"y":-23},{"x":-44,"y":46},{"x":-60,"y":-28},{"x":-25,"y":20},{"x":-43,"y":-96},{"x":-47,"y":-35},{"x":-19,"y":-92},{"x":-114,"y":-94},{"x":-11,"y":-196},{"x":24,"y":-73},{"x":28,"y":35},{"x":-16,"y":-26},{"x":32,"y":-19},{"x":-47,"y":-193},{"x":-171,"y":-152},{"x":-49,"y":-2},{"x":-12,"y":-40},{"x":-58,"y":19},{"x":-10,"y":-54},{"x":-25,"y":-15},{"x":-9,"y":18},{"x":7,"y":-55},{"x":-29,"y":-34},{"x":-100,"y":-35},{"x":-74,"y":24},{"x":29,"y":-23},{"x":-46,"y":-27},{"x":22,"y":40},{"x":-31,"y":-32},{"x":-5,"y":-54},{"x":-34,"y":-14},{"x":1,"y":-70},{"x":-37,"y":-22},{"x":-12,"y":-68},{"x":-43,"y":-21},{"x":-66,"y":22},{"x":-11,"y":-64},{"x":33,"y":-109},{"x":-69,"y":-62},{"x":-52,"y":0},{"x":3,"y":-68},{"x":47,"y":-25},{"x":5,"y":-43},{"x":-90,"y":-107},{"x":-19,"y":-86},{"x":44,"y":-55},{"x":-93,"y":-268},{"x":27,"y":-94},{"x":-10,"y":-11},{"x":24,"y":-43},{"x":-21,"y":47},{"x":8,"y":0},{"x":18,"y":-30},{"x":-6,"y":-6},{"x":10,"y":8},{"x":10,"y":-12},{"x":8,"y":-26},{"x":81,"y":-10},{"x":84,"y":-59},{"x":26,"y":-71},{"x":41,"y":-24},{"x":-50,"y":23},{"x":67,"y":-34},{"x":59,"y":-103},{"x":40,"y":-147},{"x":13,"y":4},{"x":16,"y":-32},{"x":-38,"y":24},{"x":28,"y":-29},{"x":17,"y":3},{"x":79,"y":-226},{"x":2,"y":-144},{"x":5,"y":37},{"x":79,"y":-136},{"x":15,"y":-84},{"x":-38,"y":-80},{"x":23,"y":40},{"x":-15,"y":-30},{"x":30,"y":-8},{"x":12,"y":-53},{"x":-25,"y":-51},{"x":67,"y":-154},{"x":-21,"y":12},{"x":47,"y":-51},{"x":95,"y":-318},{"x":-19,"y":-81},{"x":15,"y":16},{"x":8,"y":-148},{"x":-75,"y":-292},{"x":-103,"y":-126},{"x":-84,"y":-30},{"x":23,"y":-5},{"x":-26,"y":-32},{"x":-107,"y":34},{"x":6,"y":-60},{"x":-63,"y":-141},{"x":40,"y":-39},{"x":78,"y":-11},{"x":89,"y":-56},{"x":103,"y":3},{"x":72,"y":53},{"x":47,"y":-6},{"x":-39,"y":23},{"x":26,"y":15},{"x":2,"y":-26},{"x":32,"y":41},{"x":120,"y":-7},{"x":-7,"y":29},{"x":-55,"y":8},{"x":1,"y":59},{"x":-19,"y":5},{"x":-21,"y":-58},{"x":-42,"y":2},{"x":3,"y":61},{"x":-45,"y":-16},{"x":-51,"y":45},{"x":88,"y":100},{"x":47,"y":12},{"x":3,"y":-40},{"x":30,"y":3},{"x":-24,"y":3},{"x":22,"y":25},{"x":-25,"y":9},{"x":42,"y":18},{"x":11,"y":-56},{"x":36,"y":52},{"x":21,"y":1},{"x":2,"y":-32},{"x":19,"y":33},{"x":44,"y":-9},{"x":46,"y":-27},{"x":-16,"y":-67},{"x":27,"y":28},{"x":55,"y":-16},{"x":-35,"y":-41},{"x":52,"y":-31},{"x":60,"y":17},{"x":-23,"y":7},{"x":25,"y":22},{"x":-1,"y":-72},{"x":24,"y":8}],"type":"coastline"},{"arc":[{"x":242374,"y":187050},{"x":-4,"y":16},{"x":8,"y":-33},{"x":-4,"y":17}],"type":"coastline"},{"arc":[{"x":242413,"y":187004},{"x":-42,"y":30},{"x":122,"y":-91},{"x":-80,"y":61}],"type":"coastline"},{"arc":[{"x":242181,"y":189809},{"x":-31,"y":7},{"x":-23,"y":-27},{"x":-8,"y":-73},{"x":-120,"y":-129},{"x":32,"y":-37},{"x":-180,"y":-200}],"type":"area"},{"arc":[{"x":240610,"y":187257},{"x":69,"y":-187},{"x":64,"y":-22},{"x":35,"y":-82},{"x":133,"y":-75},{"x":75,"y":-14},{"x":52,"y":-74},{"x":135,"y":34},{"x":159,"y":-98},{"x":115,"y":39},{"x":35,"y":-232},{"x":-65,"y":-28},{"x":85,"y":-219},{"x":-11,"y":-145},{"x":-39,"y":-68},{"x":36,"y":-117}],"type":"admin"},{"arc":[{"x":241488,"y":185969},{"x":97,"y":7},{"x":19,"y":28},{"x":152,"y":-4},{"x":146,"y":-283},{"x":-2,"y":-62},{"x":38,"y":-5},{"x":24,"y":-65},{"x":-32,"y":-176},{"x":30,"y":-73},{"x":52,"y":-18},{"x":14,"y":25},{"x":161,"y":-132},{"x":93,"y":7},{"x":95,"y":-31}],"type":"admin"},{"arc":[{"x":242375,"y":185187},{"x":-21,"y":50},{"x":59,"y":78},{"x":108,"y":-37},{"x":-24,"y":72},{"x":10,"y":-24},{"x":40,"y":-2},{"x":13,"y":-48},{"x":18,"y":15},{"x":-15,"y":61},{"x":23,"y":-11},{"x":3,"y":43},{"x":-125,"y":38},{"x":-27,"y":92},{"x":35,"y":160},{"x":40,"y":31},{"x":10,"y":236},{"x":55,"y":37},{"x":27,"y":-8},{"x":-15,"y":-24},{"x":14,"y":21},{"x":-1,"y":-21},{"x":55,"y":2},{"x":12,"y":62},{"x":51,"y":14},{"x":-26,"y":117},{"x":32,"y":22},{"x":0,"y":143},{"x":108,"y":156},{"x":35,"y":110},{"x":-5,"y":383},{"x":-90,"y":4},{"x":34,"y":-16},{"x":-40,"y":-16},{"x":-14,"y":28},{"x":-65,"y":6},{"x":2,"y":49},{"x":-32,"y":-3},{"x":-22,"y":-30},{"x":-42,"y":5},{"x":31,"y":-7},{"x":-30,"y":-43},{"x":-58,"y":25},{"x":-18,"y":-31},{"x":-25,"y":17},{"x":23,"y":-19},{"x":-23,"y":-95},{"x":-41,"y":-18},{"x":-22,"y":46},{"x":-19,"y":-57},{"x":-34,"y":13},{"x":33,"y":55},{"x":-30,"y":-32},{"x":1,"y":40},{"x":-40,"y":-20},{"x":23,"y":56},{"x":-32,"y":17},{"x":-20,"y":-46},{"x":-21,"y":11},{"x":19,"y":46},{"x":-26,"y":13},{"x":-17,"y":-40},{"x":-24,"y":19},{"x":17,"y":55},{"x":-55,"y":80},{"x":-29,"y":-38},{"x":-11,"y":21},{"x":42,"y":28},{"x":-13,"y":26},{"x":-14,"y":8},{"x":26,"y":-34},{"x":-19,"y":25},{"x":15,"y":-31},{"x":-19,"y":-10},{"x":-16,"y":34},{"x":-2,"y":-45},{"x":-8,"y":99},{"x":84,"y":-46},{"x":-131,"y":86},{"x":2,"y":189},{"x":-99,"y":218},{"x":-50,"y":233},{"x":-172,"y":278},{"x":-27,"y":141},{"x":-105,"y":208},{"x":178,"y":469},{"x":200,"y":387},{"x":150,"y":218},{"x":31,"y":20},{"x":53,"y":-53},{"x":-22,"y":26},{"x":106,"y":133},{"x":22,"y":-11},{"x":-1,"y":37},{"x":-58,"y":25},{"x":7,"y":42},{"x":-145,"y":33},{"x":-1,"y":26}],"type":"coastline"},{"arc":[{"x":251728,"y":200052},{"x":-154,"y":22},{"x":-15,"y":-46},{"x":-57,"y":-16},{"x":-45,"y":-62},{"x":-46,"y":-5},{"x":-81,"y":36},{"x":-166,"y":-46},{"x":-157,"y":88},{"x":-81,"y":7},{"x":-39,"y":104},{"x":-158,"y":-48},{"x":-31,"y":-75},{"x":-48,"y":24},{"x":-62,"y":-7},{"x":-20,"y":83},{"x":-45,"y":-5},{"x":-46,"y":69},{"x":-81,"y":5},{"x":-91,"y":-74},{"x":-337,"y":75},{"x":-173,"y":5},{"x":20,"y":157},{"x":88,"y":-28},{"x":19,"y":110},{"x":99,"y":101},{"x":19,"y":-22},{"x":40,"y":19},{"x":74,"y":76},{"x":134,"y":162},{"x":-3,"y":74},{"x":36,"y":-38},{"x":189,"y":389},{"x":215,"y":-234},{"x":162,"y":203},{"x":54,"y":32},{"x":72,"y":-16},{"x":70,"y":18},{"x":129,"y":-49},{"x":27,"y":41},{"x":168,"y":79},{"x":89,"y":-1},{"x":284,"y":229}],"type":"admin"},{"arc":[{"x":251780,"y":201488},{"x":-14,"y":34},{"x":60,"y":76}],"type":"admin"},{"arc":[{"x":251826,"y":201598},{"x":-43,"y":60},{"x":-22,"y":-18},{"x":-105,"y":29},{"x":-181,"y":-37},{"x":-2,"y":38},{"x":-128,"y":66},{"x":-206,"y":18},{"x":-74,"y":-39},{"x":-26,"y":39},{"x":-38,"y":-16},{"x":-44,"y":54},{"x":-143,"y":-7},{"x":3,"y":33},{"x":-34,"y":11},{"x":-122,"y":-26},{"x":-155,"y":79},{"x":-51,"y":-21}],"type":"admin"},{"arc":[{"x":250455,"y":201861},{"x":-503,"y":488},{"x":42,"y":73},{"x":-119,"y":6},{"x":-86,"y":83},{"x":-24,"y":96},{"x":24,"y":63},{"x":-108,"y":88},{"x":-37,"y":-1},{"x":70,"y":188},{"x":-14,"y":26},{"x":-198,"y":26},{"x":-37,"y":55},{"x":-1,"y":241},{"x":52,"y":35},{"x":-62,"y":161},{"x":-44,"y":15},{"x":-75,"y":93},{"x":41,"y":216},{"x":-12,"y":91},{"x":-144,"y":143},{"x":2,"y":62},{"x":-32,"y":40},{"x":44,"y":65},{"x":-30,"y":91},{"x":53,"y":89},{"x":43,"y":22},{"x":12,"y":84}],"type":"admin"},{"arc":[{"x":249312,"y":204500},{"x":-55,"y":98},{"x":-75,"y":1},{"x":-54,"y":39},{"x":-40,"y":87},{"x":-136,"y":-33},{"x":-91,"y":106},{"x":-111,"y":-71},{"x":-86,"y":10},{"x":-103,"y":49},{"x":-73,"y":-4}],"type":"admin"},{"arc":[{"x":248488,"y":204782},{"x":36,"y":-278},{"x":-73,"y":-224},{"x":43,"y":-14},{"x":24,"y":-83},{"x":152,"y":-168},{"x":-14,"y":-101},{"x":54,"y":-162},{"x":107,"y":-49},{"x":135,"y":-141},{"x":-1,"y":-107},{"x":-27,"y":-45},{"x":22,"y":-83},{"x":-38,"y":-103},{"x":114,"y":-142},{"x":-52,"y":-53},{"x":18,"y":-91},{"x":52,"y":-130},{"x":93,"y":-61},{"x":-9,"y":-61},{"x":143,"y":-126},{"x":-5,"y":-54},{"x":77,"y":-134},{"x":0,"y":-135},{"x":-107,"y":-95},{"x":5,"y":-86},{"x":-539,"y":-33}],"type":"admin"},{"arc":[{"x":248698,"y":202023},{"x":81,"y":-169},{"x":89,"y":-70},{"x":128,"y":-328},{"x":100,"y":-158},{"x":-113,"y":-121},{"x":-417,"y":194},{"x":-174,"y":210},{"x":47,"y":43},{"x":-530,"y":640},{"x":48,"y":49},{"x":62,"y":580},{"x":-198,"y":37}],"type":"admin"},{"arc":[{"x":247821,"y":202930},{"x":-19,"y":-225},{"x":-57,"y":-83},{"x":-28,"y":-309},{"x":20,"y":-79},{"x":-47,"y":-86},{"x":22,"y":-64},{"x":-21,"y":-73},{"x":199,"y":-248},{"x":102,"y":-6},{"x":54,"y":-28},{"x":168,"y":-170},{"x":40,"y":-363},{"x":-50,"y":20},{"x":-79,"y":-18},{"x":-41,"y":56},{"x":-44,"y":13},{"x":-124,"y":-122},{"x":-162,"y":14},{"x":-26,"y":-73},{"x":-36,"y":16},{"x":-56,"y":-79},{"x":19,"y":-107},{"x":28,"y":-13},{"x":-10,"y":-38},{"x":-39,"y":-4},{"x":26,"y":-30},{"x":-43,"y":-3},{"x":-61,"y":-88},{"x":-35,"y":6},{"x":-11,"y":-31},{"x":-35,"y":9},{"x":-60,"y":-61},{"x":-152,"y":-3},{"x":-28,"y":-68},{"x":-138,"y":-125},{"x":-123,"y":65},{"x":-98,"y":-9},{"x":-62,"y":-47},{"x":-87,"y":-18}],"type":"admin"},{"arc":[{"x":246727,"y":200458},{"x":37,"y":-65},{"x":53,"y":-24},{"x":-40,"y":-39},{"x":46,"y":-85},{"x":152,"y":-24},{"x":133,"y":-116},{"x":64,"y":38},{"x":77,"y":-62},{"x":97,"y":-8},{"x":14,"y":19},{"x":110,"y":-37},{"x":77,"y":30},{"x":36,"y":56},{"x":57,"y":1},{"x":43,"y":-46},{"x":35,"y":41},{"x":120,"y":23},{"x":127,"y":-56},{"x":41,"y":-97},{"x":85,"y":9},{"x":109,"y":-134},{"x":0,"y":-94},{"x":-85,"y":-89},{"x":-21,"y":-103}],"type":"area"},{"arc":[{"x":248094,"y":199596},{"x":-36,"y":-184},{"x":-107,"y":-214},{"x":12,"y":-19},{"x":49,"y":-29},{"x":103,"y":-2},{"x":244,"y":-177},{"x":81,"y":21},{"x":22,"y":-51},{"x":63,"y":39},{"x":176,"y":-13},{"x":60,"y":38},{"x":79,"y":-35},{"x":14,"y":64},{"x":58,"y":-17},{"x":-33,"y":-52},{"x":83,"y":12},{"x":1,"y":-53},{"x":59,"y":-29},{"x":64,"y":49},{"x":7,"y":203},{"x":39,"y":47},{"x":93,"y":-3},{"x":126,"y":-42},{"x":146,"y":105},{"x":30,"y":60},{"x":43,"y":-1},{"x":89,"y":160},{"x":154,"y":-47},{"x":95,"y":61},{"x":44,"y":126},{"x":86,"y":-32},{"x":28,"y":11},{"x":39,"y":-78},{"x":228,"y":-167},{"x":66,"y":24},{"x":43,"y":-84},{"x":204,"y":118},{"x":131,"y":-45},{"x":42,"y":-107},{"x":-23,"y":-37},{"x":13,"y":-142},{"x":51,"y":-91},{"x":-23,"y":-90},{"x":53,"y":-90},{"x":24,"y":-27},{"x":61,"y":14},{"x":71,"y":-21},{"x":83,"y":38},{"x":68,"y":-59},{"x":19,"y":-79},{"x":80,"y":6}],"type":"area"},{"arc":[{"x":251296,"y":198675},{"x":110,"y":95},{"x":13,"y":60},{"x":97,"y":68},{"x":87,"y":160},{"x":90,"y":30},{"x":129,"y":122},{"x":31,"y":107},{"x":-8,"y":262},{"x":45,"y":71},{"x":50,"y":11}],"type":"admin"},{"arc":[{"x":251940,"y":199661},{"x":-75,"y":40},{"x":-79,"y":140},{"x":-58,"y":211}],"type":"admin"},{"arc":[{"x":231064,"y":186475},{"x":-5,"y":26},{"x":-11,"y":-58},{"x":16,"y":32}],"type":"coastline"},{"arc":[{"x":231642,"y":187354},{"x":-32,"y":-120},{"x":-105,"y":-95},{"x":-35,"y":-12},{"x":-38,"y":24},{"x":19,"y":-34},{"x":-25,"y":0},{"x":2,"y":-50},{"x":-158,"y":-134},{"x":-118,"y":-66},{"x":-43,"y":18},{"x":11,"y":24},{"x":-86,"y":-25},{"x":16,"y":-18},{"x":-55,"y":-48},{"x":-1,"y":-70},{"x":53,"y":-79},{"x":-8,"y":-42},{"x":41,"y":-28},{"x":-21,"y":-51},{"x":0,"y":-46},{"x":35,"y":33},{"x":-17,"y":-75},{"x":15,"y":-22},{"x":42,"y":28},{"x":38,"y":-23},{"x":45,"y":-147},{"x":-26,"y":-42},{"x":36,"y":-20},{"x":2,"y":-35},{"x":29,"y":5},{"x":11,"y":-34},{"x":46,"y":11},{"x":115,"y":-110},{"x":64,"y":6},{"x":1,"y":21},{"x":-29,"y":-3},{"x":22,"y":10},{"x":-14,"y":20},{"x":20,"y":-22},{"x":27,"y":20},{"x":-32,"y":15},{"x":25,"y":12},{"x":-5,"y":49},{"x":11,"y":-68},{"x":7,"y":62},{"x":45,"y":-4},{"x":11,"y":95},{"x":41,"y":-6},{"x":-13,"y":12},{"x":-57,"y":-9},{"x":0,"y":33},{"x":-32,"y":-17},{"x":16,"y":45},{"x":-49,"y":4},{"x":33,"y":29},{"x":-22,"y":19},{"x":-17,"y":-36},{"x":-53,"y":36},{"x":42,"y":23},{"x":16,"y":-13},{"x":-34,"y":29},{"x":-27,"y":-11},{"x":21,"y":27},{"x":-6,"y":17},{"x":-38,"y":-16},{"x":8,"y":41},{"x":-123,"y":-13},{"x":39,"y":19},{"x":-47,"y":9},{"x":0,"y":37},{"x":53,"y":9},{"x":-54,"y":24},{"x":-5,"y":27},{"x":62,"y":-26},{"x":-16,"y":51},{"x":42,"y":-21},{"x":-20,"y":30},{"x":47,"y":19},{"x":13,"y":-46},{"x":35,"y":-7},{"x":90,"y":-14},{"x":7,"y":38},{"x":-4,"y":-47},{"x":62,"y":289},{"x":32,"y":-60},{"x":-27,"y":-261},{"x":50,"y":-7},{"x":8,"y":107},{"x":23,"y":8},{"x":19,"y":-60},{"x":26,"y":8},{"x":-38,"y":-107},{"x":27,"y":-10},{"x":32,"y":-184},{"x":-80,"y":-48},{"x":80,"y":47},{"x":49,"y":-81},{"x":-10,"y":-88},{"x":73,"y":-199},{"x":32,"y":8},{"x":-4,"y":-26},{"x":-67,"y":5},{"x":80,"y":-9},{"x":56,"y":-65},{"x":37,"y":-4}],"type":"coastline"},{"arc":[{"x":232719,"y":186692},{"x":-22,"y":143},{"x":-65,"y":121},{"x":-87,"y":7},{"x":-96,"y":-52},{"x":-52,"y":14},{"x":-59,"y":51},{"x":-44,"y":94},{"x":-303,"y":108},{"x":-182,"y":13},{"x":-113,"y":57},{"x":-54,"y":106}],"type":"area"},{"arc":[{"x":239216,"y":208993},{"x":-78,"y":47},{"x":27,"y":98},{"x":-33,"y":141},{"x":63,"y":70},{"x":-32,"y":125},{"x":-127,"y":57},{"x":-16,"y":46},{"x":47,"y":172},{"x":-23,"y":107},{"x":29,"y":111},{"x":-64,"y":56}],"type":"admin"},{"arc":[{"x":239009,"y":210023},{"x":-24,"y":-78},{"x":-103,"y":-96},{"x":-138,"y":-4},{"x":-226,"y":-162},{"x":-72,"y":121},{"x":-71,"y":-17},{"x":-159,"y":17},{"x":-212,"y":-64},{"x":-132,"y":-70},{"x":-30,"y":60},{"x":-281,"y":-158},{"x":-104,"y":262},{"x":-153,"y":-74},{"x":-99,"y":254},{"x":-278,"y":-131},{"x":-83,"y":361},{"x":-371,"y":-105},{"x":16,"y":-65},{"x":-122,"y":-35}],"type":"admin"},{"arc":[{"x":236367,"y":210039},{"x":-301,"y":-87},{"x":77,"y":-335},{"x":-4,"y":-17},{"x":-66,"y":16},{"x":-36,"y":-172}],"type":"admin"},{"arc":[{"x":236037,"y":209444},{"x":67,"y":-16},{"x":250,"y":78},{"x":102,"y":-396},{"x":-18,"y":-93},{"x":-129,"y":-103},{"x":115,"y":-211},{"x":-57,"y":-36},{"x":74,"y":-140},{"x":-84,"y":-49},{"x":-40,"y":5},{"x":-126,"y":-160},{"x":-81,"y":-40},{"x":-44,"y":-63},{"x":-55,"y":8},{"x":-51,"y":89},{"x":-420,"y":-275},{"x":-61,"y":-105},{"x":-56,"y":3},{"x":-65,"y":-74},{"x":12,"y":-71},{"x":-118,"y":-2},{"x":-18,"y":-20},{"x":-28,"y":-91},{"x":24,"y":-90},{"x":-62,"y":-46},{"x":-2,"y":-78},{"x":-57,"y":-51},{"x":-1,"y":-136},{"x":-89,"y":-199},{"x":11,"y":-66},{"x":36,"y":-29},{"x":-7,"y":-211},{"x":42,"y":-49},{"x":17,"y":-92},{"x":-152,"y":-192},{"x":81,"y":-105},{"x":60,"y":-15},{"x":74,"y":-106},{"x":5,"y":-86},{"x":55,"y":-28},{"x":57,"y":-85},{"x":167,"y":52},{"x":47,"y":-22},{"x":128,"y":35},{"x":82,"y":-23},{"x":113,"y":71},{"x":74,"y":-67},{"x":58,"y":-11},{"x":19,"y":-47},{"x":-43,"y":-62},{"x":-8,"y":-126},{"x":-55,"y":-127},{"x":67,"y":-111},{"x":-17,"y":-63},{"x":39,"y":-186},{"x":-128,"y":-300}],"type":"admin"},{"arc":[{"x":235841,"y":205031},{"x":87,"y":-83},{"x":143,"y":23},{"x":61,"y":-26},{"x":59,"y":17},{"x":130,"y":-16},{"x":37,"y":-67},{"x":-33,"y":-56},{"x":-8,"y":-115},{"x":26,"y":-48},{"x":155,"y":-66},{"x":30,"y":-70},{"x":-22,"y":-108},{"x":27,"y":-99}],"type":"admin"},{"arc":[{"x":236533,"y":204317},{"x":61,"y":-73},{"x":88,"y":-10}],"type":"admin"},{"arc":[{"x":237002,"y":204573},{"x":-64,"y":258},{"x":18,"y":132},{"x":49,"y":98},{"x":-157,"y":152},{"x":21,"y":335},{"x":-53,"y":30},{"x":-4,"y":117},{"x":-56,"y":99},{"x":-5,"y":117},{"x":45,"y":70},{"x":-91,"y":318},{"x":25,"y":78},{"x":-51,"y":38},{"x":-127,"y":-9},{"x":-129,"y":170},{"x":-16,"y":70},{"x":-54,"y":16},{"x":-30,"y":147},{"x":467,"y":452},{"x":257,"y":171},{"x":15,"y":118},{"x":73,"y":141},{"x":6,"y":120},{"x":75,"y":64},{"x":56,"y":144},{"x":37,"y":18},{"x":102,"y":198},{"x":28,"y":-15},{"x":138,"y":140},{"x":126,"y":65},{"x":316,"y":286},{"x":462,"y":284},{"x":63,"y":-9},{"x":-30,"y":-345},{"x":424,"y":-46},{"x":46,"y":33},{"x":46,"y":-20},{"x":24,"y":64},{"x":67,"y":-18},{"x":56,"y":134},{"x":66,"y":30},{"x":-27,"y":175}],"type":"admin"},{"arc":[{"x":240458,"y":200366},{"x":-32,"y":84},{"x":-87,"y":40},{"x":-47,"y":-16},{"x":-60,"y":67},{"x":-94,"y":-98},{"x":-46,"y":-159},{"x":-39,"y":-25},{"x":-22,"y":-69},{"x":-68,"y":-39},{"x":1,"y":-36},{"x":-97,"y":29},{"x":-218,"y":-73},{"x":-48,"y":-47}],"type":"admin"},{"arc":[{"x":239601,"y":200024},{"x":76,"y":-80},{"x":-59,"y":-97},{"x":-201,"y":-77},{"x":25,"y":-84},{"x":71,"y":-85},{"x":-49,"y":-159},{"x":-94,"y":1},{"x":-35,"y":-129},{"x":-99,"y":-95},{"x":18,"y":-107},{"x":-28,"y":-56},{"x":79,"y":-29},{"x":20,"y":-60},{"x":-36,"y":-47},{"x":10,"y":-30},{"x":-85,"y":-78},{"x":53,"y":-104},{"x":-89,"y":-91},{"x":-116,"y":2},{"x":-54,"y":29},{"x":-100,"y":-19},{"x":9,"y":-80},{"x":-56,"y":-96},{"x":-40,"y":-6},{"x":-2,"y":-79},{"x":-57,"y":-94},{"x":-136,"y":18},{"x":-41,"y":-62},{"x":-88,"y":8},{"x":-108,"y":-74},{"x":-20,"y":-52},{"x":-50,"y":-22},{"x":-89,"y":-105},{"x":-52,"y":-21}],"type":"admin"},{"arc":[{"x":238178,"y":197964},{"x":68,"y":-167},{"x":-57,"y":-5},{"x":-117,"y":-94},{"x":27,"y":-117}],"type":"admin"},{"arc":[{"x":238099,"y":197581},{"x":-4,"y":-71},{"x":61,"y":-86},{"x":-48,"y":-197},{"x":40,"y":8},{"x":150,"y":-99},{"x":26,"y":9},{"x":8,"y":-27},{"x":289,"y":-93},{"x":32,"y":-123},{"x":91,"y":-158}],"type":"admin"},{"arc":[{"x":238744,"y":196744},{"x":39,"y":63},{"x":86,"y":44},{"x":74,"y":-21},{"x":33,"y":15},{"x":19,"y":-22},{"x":47,"y":19},{"x":123,"y":-42},{"x":33,"y":-124},{"x":56,"y":-34},{"x":154,"y":4},{"x":66,"y":-71},{"x":84,"y":51},{"x":92,"y":-9},{"x":51,"y":23},{"x":102,"y":-126},{"x":-18,"y":-118},{"x":-27,"y":-15},{"x":6,"y":-88},{"x":81,"y":-63},{"x":178,"y":-54},{"x":84,"y":61},{"x":68,"y":-34},{"x":38,"y":24},{"x":18,"y":-30},{"x":40,"y":2},{"x":61,"y":-76},{"x":108,"y":99},{"x":82,"y":26},{"x":206,"y":-13},{"x":26,"y":44},{"x":46,"y":1},{"x":178,"y":-59},{"x":104,"y":114},{"x":-5,"y":160},{"x":49,"y":-10}],"type":"admin"},{"arc":[{"x":241126,"y":196485},{"x":-26,"y":106},{"x":28,"y":74},{"x":7,"y":226},{"x":-38,"y":58},{"x":-62,"y":25},{"x":41,"y":114},{"x":137,"y":70},{"x":-64,"y":37},{"x":-26,"y":67},{"x":-39,"y":21},{"x":3,"y":215},{"x":125,"y":86},{"x":103,"y":-68},{"x":72,"y":11},{"x":197,"y":-85},{"x":76,"y":54},{"x":-4,"y":62}],"type":"area"},{"arc":[{"x":241656,"y":197558},{"x":-3,"y":89},{"x":39,"y":84},{"x":20,"y":22},{"x":85,"y":-13},{"x":36,"y":21},{"x":39,"y":91},{"x":51,"y":30},{"x":40,"y":139},{"x":-50,"y":103},{"x":104,"y":127},{"x":23,"y":89},{"x":208,"y":123},{"x":45,"y":233},{"x":32,"y":51},{"x":59,"y":-7},{"x":46,"y":-38},{"x":150,"y":36},{"x":90,"y":57}],"type":"area"},{"arc":[{"x":242670,"y":198795},{"x":-123,"y":157},{"x":-5,"y":63},{"x":-88,"y":66},{"x":37,"y":111},{"x":-16,"y":62},{"x":42,"y":88},{"x":-43,"y":113},{"x":36,"y":53},{"x":20,"y":138},{"x":129,"y":43},{"x":-22,"y":87},{"x":53,"y":236}],"type":"area"},{"arc":[{"x":242690,"y":200012},{"x":-151,"y":54},{"x":-146,"y":-25},{"x":-49,"y":27},{"x":-121,"y":-143},{"x":-209,"y":-41},{"x":-144,"y":-110},{"x":-63,"y":18},{"x":-65,"y":-41},{"x":-173,"y":108},{"x":-45,"y":-112},{"x":-89,"y":27},{"x":-60,"y":-28},{"x":-56,"y":-86},{"x":-140,"y":-12},{"x":-77,"y":77},{"x":-89,"y":-14},{"x":-114,"y":143},{"x":-27,"y":-11},{"x":-113,"y":58},{"x":-74,"y":5},{"x":-199,"y":268},{"x":-28,"y":192}],"type":"admin"},{"arc":[{"x":243080,"y":195141},{"x":-38,"y":-30},{"x":-310,"y":-69},{"x":26,"y":101},{"x":-33,"y":20},{"x":30,"y":38},{"x":30,"y":-3},{"x":-7,"y":81},{"x":-43,"y":-2},{"x":-63,"y":43},{"x":-124,"y":-16},{"x":-35,"y":23},{"x":-50,"y":-15},{"x":-61,"y":19},{"x":25,"y":57},{"x":-55,"y":130},{"x":35,"y":126},{"x":-4,"y":148},{"x":-101,"y":192},{"x":-12,"y":88},{"x":36,"y":10},{"x":75,"y":99},{"x":55,"y":-4},{"x":3,"y":107},{"x":-93,"y":198},{"x":-76,"y":14},{"x":-26,"y":43},{"x":39,"y":159},{"x":-44,"y":63},{"x":-38,"y":10},{"x":-16,"y":189},{"x":-101,"y":100},{"x":-87,"y":140},{"x":7,"y":114},{"x":-35,"y":47},{"x":40,"y":58},{"x":-59,"y":35},{"x":-56,"y":-11},{"x":-70,"y":58},{"x":-101,"y":35},{"x":-53,"y":-11},{"x":-34,"y":33}],"type":"area"},{"arc":[{"x":241126,"y":196485},{"x":40,"y":-56},{"x":13,"y":-115},{"x":110,"y":-70},{"x":-39,"y":-55},{"x":13,"y":-94},{"x":84,"y":-61},{"x":23,"y":-85},{"x":115,"y":-11},{"x":4,"y":-188},{"x":-69,"y":-149},{"x":-115,"y":-116},{"x":-11,"y":-53},{"x":-107,"y":-75},{"x":-45,"y":-68},{"x":-3,"y":-94},{"x":-91,"y":-157},{"x":11,"y":-58},{"x":-122,"y":-100},{"x":-83,"y":-179},{"x":-59,"y":-42},{"x":2,"y":-60}],"type":"admin"},{"arc":[{"x":240797,"y":194599},{"x":51,"y":-56},{"x":-55,"y":-76},{"x":76,"y":-56},{"x":23,"y":-336}],"type":"admin"},{"arc":[{"x":240892,"y":194075},{"x":475,"y":-369}],"type":"admin"},{"arc":[{"x":241367,"y":193706},{"x":258,"y":-199},{"x":-18,"y":-35},{"x":78,"y":-59},{"x":-2,"y":-24},{"x":31,"y":22},{"x":81,"y":-15},{"x":84,"y":-163}],"type":"area"},{"arc":[{"x":241879,"y":193233},{"x":94,"y":-130},{"x":274,"y":239},{"x":-31,"y":102},{"x":21,"y":56},{"x":39,"y":7},{"x":46,"y":-35},{"x":44,"y":32},{"x":95,"y":-26},{"x":74,"y":134},{"x":99,"y":-58},{"x":38,"y":134},{"x":54,"y":61},{"x":228,"y":-144},{"x":53,"y":-2},{"x":44,"y":63},{"x":37,"y":-1},{"x":163,"y":-193},{"x":43,"y":17},{"x":24,"y":101},{"x":142,"y":-33}],"type":"admin"},{"arc":[{"x":243460,"y":193557},{"x":61,"y":3},{"x":19,"y":29},{"x":-65,"y":119},{"x":9,"y":71},{"x":270,"y":-99},{"x":175,"y":236},{"x":125,"y":-120},{"x":55,"y":-15},{"x":-75,"y":190}],"type":"admin"},{"arc":[{"x":244034,"y":193971},{"x":-289,"y":613},{"x":-380,"y":389},{"x":-14,"y":-12},{"x":-124,"y":105},{"x":-84,"y":38},{"x":-36,"y":61},{"x":-27,"y":-24}],"type":"area"},{"arc":[{"x":252635,"y":220870},{"x":-38,"y":-4},{"x":60,"y":9},{"x":-22,"y":-5}],"type":"coastline"},{"arc":[{"x":252739,"y":220835},{"x":-45,"y":51},{"x":-5,"y":56},{"x":2,"y":-57},{"x":48,"y":-50}],"type":"coastline"},{"arc":[{"x":251934,"y":221564},{"x":-26,"y":-36},{"x":-60,"y":23},{"x":-132,"y":258},{"x":-94,"y":426},{"x":-92,"y":12},{"x":-65,"y":44},{"x":-92,"y":-46},{"x":-252,"y":-14},{"x":-68,"y":-51},{"x":-75,"y":-4},{"x":-179,"y":-153},{"x":-127,"y":26},{"x":-49,"y":-191},{"x":-74,"y":-6},{"x":-75,"y":31},{"x":-40,"y":-44},{"x":-153,"y":-25},{"x":-31,"y":-41},{"x":-54,"y":-10},{"x":-107,"y":63},{"x":-120,"y":33},{"x":-76,"y":-37},{"x":-147,"y":-2}],"type":"admin"},{"arc":[{"x":249746,"y":221820},{"x":-81,"y":-134},{"x":79,"y":15},{"x":104,"y":75},{"x":456,"y":-198},{"x":173,"y":21},{"x":49,"y":163},{"x":210,"y":-78},{"x":9,"y":-23},{"x":118,"y":55},{"x":290,"y":-792},{"x":-113,"y":-52},{"x":-14,"y":37},{"x":-135,"y":51},{"x":-38,"y":-133},{"x":53,"y":-48},{"x":-69,"y":-254},{"x":410,"y":-191},{"x":20,"y":-54},{"x":57,"y":24},{"x":14,"y":-37},{"x":122,"y":-26},{"x":138,"y":-122},{"x":60,"y":1},{"x":87,"y":-145},{"x":92,"y":-19},{"x":46,"y":31},{"x":33,"y":-30},{"x":-11,"y":-27},{"x":81,"y":-53},{"x":102,"y":-277},{"x":-390,"y":-482},{"x":-55,"y":-7},{"x":83,"y":-310},{"x":56,"y":-53},{"x":-56,"y":-19},{"x":-2,"y":-73},{"x":-42,"y":-70},{"x":-166,"y":-92},{"x":-14,"y":-29}],"type":"admin"},{"arc":[{"x":253958,"y":219074},{"x":-132,"y":581},{"x":16,"y":73},{"x":-37,"y":31},{"x":41,"y":20},{"x":-30,"y":16},{"x":-32,"y":133},{"x":4,"y":150},{"x":53,"y":165},{"x":89,"y":81},{"x":-39,"y":60},{"x":-142,"y":55},{"x":-174,"y":29},{"x":-158,"y":-48},{"x":-51,"y":29},{"x":-90,"y":-36},{"x":-64,"y":101},{"x":-88,"y":-9},{"x":-30,"y":-42},{"x":-115,"y":-17},{"x":-184,"y":187},{"x":0,"y":47},{"x":52,"y":71},{"x":-40,"y":70},{"x":37,"y":-72},{"x":-51,"y":-67},{"x":2,"y":25},{"x":-40,"y":15},{"x":33,"y":7},{"x":-43,"y":23},{"x":40,"y":32},{"x":-24,"y":-4},{"x":-29,"y":49},{"x":27,"y":-53},{"x":-19,"y":-13},{"x":-43,"y":45},{"x":-46,"y":-26},{"x":5,"y":-53},{"x":-23,"y":-3},{"x":-51,"y":52},{"x":15,"y":23},{"x":26,"y":-8},{"x":-30,"y":14},{"x":-50,"y":-34},{"x":-93,"y":65},{"x":-60,"y":86},{"x":-41,"y":-53},{"x":-79,"y":29},{"x":-163,"y":262},{"x":-173,"y":402}],"type":"coastline"},{"arc":[{"x":252029,"y":193237},{"x":43,"y":36},{"x":133,"y":8},{"x":-133,"y":-6},{"x":-43,"y":-38}],"type":"coastline"},{"arc":[{"x":251776,"y":195943},{"x":-104,"y":45},{"x":-118,"y":-84},{"x":-42,"y":0},{"x":-53,"y":22},{"x":-51,"y":76},{"x":-78,"y":49},{"x":-61,"y":1},{"x":-53,"y":54},{"x":-60,"y":-49},{"x":-66,"y":-195},{"x":-83,"y":-93},{"x":-106,"y":-31},{"x":-25,"y":24},{"x":-165,"y":-96},{"x":-47,"y":25},{"x":-111,"y":-25}],"type":"admin"},{"arc":[{"x":250553,"y":195666},{"x":59,"y":-118},{"x":-84,"y":-17},{"x":-27,"y":-159},{"x":-130,"y":7},{"x":-23,"y":-76},{"x":47,"y":-45},{"x":6,"y":-50},{"x":-66,"y":-33},{"x":-15,"y":-130},{"x":-70,"y":4},{"x":-91,"y":83},{"x":-119,"y":-38},{"x":-61,"y":14},{"x":2,"y":-35},{"x":-52,"y":-16},{"x":-25,"y":-35},{"x":15,"y":-27},{"x":-40,"y":-12},{"x":-4,"y":-43},{"x":-32,"y":-13},{"x":-76,"y":-165},{"x":-54,"y":-2},{"x":-44,"y":51},{"x":-257,"y":-61},{"x":21,"y":-88},{"x":174,"y":-133},{"x":161,"y":-69},{"x":68,"y":8},{"x":-18,"y":-91},{"x":36,"y":-17},{"x":47,"y":-113},{"x":-35,"y":-103},{"x":49,"y":-127}],"type":"admin"},{"arc":[{"x":249915,"y":194017},{"x":58,"y":7},{"x":35,"y":-26},{"x":29,"y":15},{"x":132,"y":-56},{"x":108,"y":23},{"x":49,"y":-94},{"x":105,"y":-24},{"x":58,"y":-86},{"x":140,"y":-63},{"x":25,"y":-79},{"x":103,"y":-1},{"x":21,"y":26},{"x":125,"y":-19},{"x":73,"y":-140},{"x":126,"y":-94},{"x":3,"y":-46},{"x":106,"y":-97},{"x":56,"y":-186}],"type":"admin"},{"arc":[{"x":251267,"y":193077},{"x":182,"y":105},{"x":44,"y":90},{"x":183,"y":41},{"x":4,"y":29},{"x":97,"y":-4},{"x":35,"y":-50},{"x":61,"y":40},{"x":1,"y":-11},{"x":56,"y":-3},{"x":51,"y":13},{"x":46,"y":-27},{"x":-46,"y":30},{"x":-86,"y":-9},{"x":1,"y":33},{"x":-14,"y":-27},{"x":4,"y":33},{"x":-79,"y":20},{"x":-13,"y":79},{"x":-43,"y":-4},{"x":8,"y":19},{"x":61,"y":0},{"x":8,"y":-58},{"x":26,"y":-17},{"x":-8,"y":28},{"x":29,"y":-12},{"x":-8,"y":-24},{"x":36,"y":-7},{"x":30,"y":49},{"x":48,"y":-7},{"x":-3,"y":-21},{"x":-37,"y":-1},{"x":37,"y":1},{"x":-3,"y":-38},{"x":14,"y":54},{"x":139,"y":45},{"x":-13,"y":-77},{"x":56,"y":-23},{"x":-2,"y":-30},{"x":20,"y":138},{"x":86,"y":-8},{"x":78,"y":50},{"x":63,"y":6}],"type":"coastline"},{"arc":[{"x":252416,"y":193522},{"x":-39,"y":33},{"x":-66,"y":-2},{"x":-33,"y":78},{"x":-71,"y":68},{"x":-151,"y":81},{"x":3,"y":91},{"x":-20,"y":47},{"x":-76,"y":41},{"x":2,"y":113},{"x":-59,"y":63},{"x":-33,"y":91},{"x":-47,"y":-1},{"x":-67,"y":43},{"x":-10,"y":115},{"x":-77,"y":21},{"x":-53,"y":70},{"x":-74,"y":3},{"x":95,"y":68},{"x":13,"y":130},{"x":-29,"y":97},{"x":72,"y":113},{"x":181,"y":129},{"x":96,"y":30},{"x":-5,"y":111},{"x":67,"y":166},{"x":-36,"y":30},{"x":-9,"y":77},{"x":87,"y":65},{"x":-30,"y":185},{"x":-94,"y":67},{"x":-60,"y":115},{"x":-65,"y":20},{"x":-52,"y":63}],"type":"admin"},{"arc":[{"x":234795,"y":194790},{"x":51,"y":-27},{"x":43,"y":13},{"x":-43,"y":-11},{"x":-51,"y":25}],"type":"coastline"},{"arc":[{"x":236032,"y":195330},{"x":-147,"y":41},{"x":-165,"y":-1},{"x":-82,"y":-74},{"x":-24,"y":-100},{"x":-79,"y":40},{"x":-439,"y":-19},{"x":-135,"y":-114},{"x":-154,"y":-52}],"type":"admin"},{"arc":[{"x":234807,"y":195051},{"x":59,"y":-183},{"x":78,"y":27},{"x":2,"y":29},{"x":30,"y":-7},{"x":16,"y":-82},{"x":-108,"y":-35},{"x":76,"y":23},{"x":46,"y":-81},{"x":70,"y":-294},{"x":0,"y":-47},{"x":-40,"y":-18},{"x":-2,"y":-48},{"x":5,"y":50},{"x":17,"y":6},{"x":6,"y":-25},{"x":28,"y":9},{"x":6,"y":-28},{"x":-51,"y":-8},{"x":53,"y":3},{"x":28,"y":-145},{"x":5,"y":-439},{"x":29,"y":-4},{"x":7,"y":-74},{"x":-13,"y":-216},{"x":-32,"y":-155},{"x":-47,"y":-2},{"x":-42,"y":-55},{"x":43,"y":54},{"x":54,"y":0},{"x":47,"y":63},{"x":-6,"y":38},{"x":18,"y":8},{"x":3,"y":-25},{"x":32,"y":40},{"x":120,"y":329},{"x":26,"y":2},{"x":53,"y":127},{"x":-14,"y":43},{"x":34,"y":82},{"x":62,"y":-32},{"x":-118,"y":-285},{"x":38,"y":-24},{"x":-10,"y":-25},{"x":-40,"y":20},{"x":-128,"y":-318},{"x":-8,"y":-41},{"x":99,"y":-53},{"x":-11,"y":-21},{"x":-26,"y":-22},{"x":-74,"y":37},{"x":-65,"y":-3},{"x":-6,"y":-35},{"x":-6,"y":30},{"x":-16,"y":-28},{"x":-14,"y":20},{"x":15,"y":-48},{"x":15,"y":22},{"x":-4,"y":-58},{"x":-28,"y":45},{"x":3,"y":-25},{"x":-42,"y":4},{"x":-32,"y":30},{"x":-11,"y":-89},{"x":87,"y":-9},{"x":-193,"y":-891},{"x":-246,"y":-648},{"x":-224,"y":-449}],"type":"coastline"},{"arc":[{"x":234460,"y":191117},{"x":72,"y":63},{"x":140,"y":-263},{"x":196,"y":-100},{"x":1,"y":-60},{"x":44,"y":-55},{"x":42,"y":-9},{"x":25,"y":-93},{"x":35,"y":-11},{"x":9,"y":-49},{"x":86,"y":-106},{"x":41,"y":-5},{"x":41,"y":-69},{"x":70,"y":-18},{"x":29,"y":29},{"x":25,"y":-41},{"x":99,"y":-33},{"x":328,"y":43},{"x":61,"y":88},{"x":7,"y":89}],"type":"admin"},{"arc":[{"x":235811,"y":190517},{"x":45,"y":116},{"x":108,"y":34},{"x":11,"y":85},{"x":-31,"y":39},{"x":288,"y":154},{"x":103,"y":121},{"x":137,"y":-26},{"x":251,"y":15},{"x":140,"y":-57},{"x":-60,"y":335},{"x":42,"y":124},{"x":-101,"y":96},{"x":-98,"y":432},{"x":24,"y":112},{"x":-35,"y":190},{"x":51,"y":118},{"x":-104,"y":240},{"x":39,"y":97},{"x":337,"y":301},{"x":-3,"y":149},{"x":41,"y":110},{"x":16,"y":198},{"x":-78,"y":597},{"x":50,"y":99},{"x":84,"y":79},{"x":2,"y":59},{"x":84,"y":135}],"type":"area"},{"arc":[{"x":237154,"y":194469},{"x":-99,"y":51},{"x":-33,"y":-35},{"x":-102,"y":-23},{"x":-187,"y":28},{"x":-69,"y":-80},{"x":-42,"y":-3},{"x":-217,"y":126},{"x":-402,"y":482},{"x":29,"y":315}],"type":"admin"},{"arc":[{"x":234989,"y":193221},{"x":-22,"y":-13},{"x":60,"y":37},{"x":-38,"y":-24}],"type":"coastline"},{"arc":[{"x":270238,"y":197649},{"x":-69,"y":36},{"x":-24,"y":-48},{"x":-49,"y":-14},{"x":-46,"y":20},{"x":-145,"y":-63},{"x":-29,"y":-161},{"x":-41,"y":-29},{"x":-70,"y":0},{"x":-28,"y":-45},{"x":-28,"y":-207},{"x":-85,"y":-168},{"x":2,"y":-80},{"x":-127,"y":-153},{"x":-68,"y":13},{"x":-34,"y":-37},{"x":-97,"y":95},{"x":-169,"y":71},{"x":-30,"y":-36},{"x":-45,"y":15},{"x":-172,"y":-151},{"x":-104,"y":229},{"x":19,"y":48},{"x":-36,"y":62},{"x":-81,"y":-12},{"x":-74,"y":44},{"x":-56,"y":-60},{"x":-34,"y":-2},{"x":-20,"y":27},{"x":-91,"y":19},{"x":-20,"y":62},{"x":-70,"y":67},{"x":-116,"y":-94},{"x":-70,"y":0}],"type":"admin"},{"arc":[{"x":268131,"y":197097},{"x":-51,"y":-30},{"x":3,"y":-157},{"x":-88,"y":-141},{"x":-4,"y":-246},{"x":-365,"y":-357},{"x":-8,"y":-79},{"x":-5,"y":41},{"x":-31,"y":9},{"x":-21,"y":-22},{"x":-177,"y":2},{"x":-6,"y":-402},{"x":168,"y":3},{"x":47,"y":-83},{"x":1,"y":-92},{"x":-93,"y":-162},{"x":96,"y":-83},{"x":90,"y":143},{"x":37,"y":-67},{"x":-26,"y":-39},{"x":54,"y":-50},{"x":23,"y":45},{"x":49,"y":-39},{"x":-148,"y":-241},{"x":218,"y":-184},{"x":139,"y":-115},{"x":90,"y":148},{"x":37,"y":-3},{"x":9,"y":-51},{"x":61,"y":9},{"x":57,"y":-72},{"x":107,"y":-6},{"x":33,"y":-54},{"x":78,"y":8},{"x":41,"y":-28},{"x":23,"y":24},{"x":45,"y":-44},{"x":-49,"y":-132},{"x":-41,"y":-35},{"x":-24,"y":-131},{"x":-131,"y":38},{"x":-98,"y":-83},{"x":-137,"y":14},{"x":11,"y":-85},{"x":-73,"y":-123},{"x":118,"y":-146},{"x":-32,"y":-64},{"x":30,"y":-97},{"x":-47,"y":-195},{"x":-47,"y":-71},{"x":-65,"y":18},{"x":-57,"y":-14},{"x":-55,"y":-133},{"x":-112,"y":-105},{"x":-14,"y":-129},{"x":-47,"y":-41},{"x":-21,"y":-97},{"x":-47,"y":-55},{"x":13,"y":-58},{"x":-85,"y":-35},{"x":-84,"y":111},{"x":-29,"y":-44},{"x":-35,"y":15},{"x":-52,"y":-24},{"x":-42,"y":20},{"x":-9,"y":55},{"x":-59,"y":0},{"x":-7,"y":-32},{"x":56,"y":-29},{"x":-13,"y":-77},{"x":65,"y":-110},{"x":-20,"y":-38}],"type":"admin"},{"arc":[{"x":267375,"y":192770},{"x":312,"y":-99},{"x":438,"y":35},{"x":391,"y":328},{"x":227,"y":129},{"x":133,"y":38},{"x":112,"y":-17},{"x":53,"y":-26},{"x":15,"y":-72},{"x":-1,"y":91},{"x":24,"y":-22},{"x":-17,"y":-32},{"x":42,"y":-19},{"x":-46,"y":-39},{"x":35,"y":5},{"x":15,"y":28},{"x":-16,"y":99},{"x":178,"y":174},{"x":247,"y":162},{"x":176,"y":52},{"x":136,"y":-2},{"x":269,"y":-195},{"x":-21,"y":-7},{"x":187,"y":-30},{"x":164,"y":12},{"x":53,"y":-17},{"x":211,"y":60},{"x":56,"y":41},{"x":46,"y":-17},{"x":-7,"y":19},{"x":31,"y":1},{"x":-22,"y":-30},{"x":32,"y":21},{"x":3,"y":45},{"x":-119,"y":116},{"x":-28,"y":82},{"x":15,"y":-55},{"x":-18,"y":43},{"x":-205,"y":105},{"x":-27,"y":144},{"x":-49,"y":72},{"x":48,"y":-76},{"x":-5,"y":-93},{"x":-24,"y":-1},{"x":-15,"y":60},{"x":-14,"y":-62},{"x":-27,"y":1},{"x":32,"y":-16},{"x":-123,"y":-12},{"x":-26,"y":39},{"x":14,"y":14},{"x":30,"y":-36},{"x":60,"y":3},{"x":-4,"y":70},{"x":-51,"y":-6},{"x":14,"y":-27},{"x":-45,"y":0},{"x":-10,"y":35},{"x":23,"y":-13},{"x":-15,"y":20},{"x":58,"y":16},{"x":-26,"y":2},{"x":0,"y":30},{"x":-67,"y":3},{"x":46,"y":26},{"x":-31,"y":60},{"x":33,"y":0},{"x":0,"y":24},{"x":-47,"y":2},{"x":-1,"y":40},{"x":15,"y":-20},{"x":1,"y":20},{"x":51,"y":1},{"x":-127,"y":-1},{"x":-8,"y":23},{"x":70,"y":342},{"x":42,"y":34},{"x":110,"y":13},{"x":-49,"y":75},{"x":16,"y":20},{"x":-30,"y":7},{"x":15,"y":13},{"x":26,"y":-20},{"x":-26,"y":22},{"x":-26,"y":-24},{"x":17,"y":22},{"x":-30,"y":-6},{"x":-31,"y":90},{"x":35,"y":334},{"x":187,"y":414},{"x":237,"y":276},{"x":262,"y":144},{"x":13,"y":-41},{"x":35,"y":0},{"x":-40,"y":-10},{"x":43,"y":-13},{"x":-3,"y":34},{"x":102,"y":-21},{"x":116,"y":63},{"x":52,"y":-3},{"x":2,"y":-33},{"x":22,"y":24},{"x":78,"y":1},{"x":97,"y":142},{"x":110,"y":1},{"x":32,"y":37},{"x":-36,"y":-19},{"x":23,"y":15},{"x":-15,"y":38},{"x":47,"y":44},{"x":34,"y":96},{"x":0,"y":152},{"x":68,"y":93},{"x":-10,"y":103},{"x":-26,"y":-12},{"x":3,"y":26},{"x":-12,"y":-36},{"x":20,"y":-21},{"x":-57,"y":25},{"x":30,"y":52},{"x":8,"y":-33},{"x":-1,"y":32},{"x":-42,"y":12},{"x":-2,"y":45},{"x":-72,"y":65},{"x":-123,"y":25},{"x":-37,"y":33},{"x":-190,"y":27},{"x":-252,"y":238},{"x":-112,"y":267},{"x":-98,"y":56},{"x":-118,"y":3},{"x":-82,"y":111},{"x":-49,"y":-12},{"x":-36,"y":29},{"x":26,"y":-41},{"x":-23,"y":0},{"x":7,"y":25},{"x":-43,"y":-14},{"x":35,"y":51},{"x":-44,"y":-55},{"x":-37,"y":17},{"x":-189,"y":156}],"type":"coastline"},{"arc":[{"x":244919,"y":197649},{"x":-68,"y":-14},{"x":-77,"y":45},{"x":-131,"y":-8},{"x":-34,"y":87},{"x":-84,"y":15},{"x":-108,"y":-75},{"x":-65,"y":65},{"x":-67,"y":-45},{"x":-5,"y":-53}],"type":"area"},{"arc":[{"x":244280,"y":197666},{"x":73,"y":-155},{"x":-18,"y":-65},{"x":44,"y":-74},{"x":-44,"y":-48},{"x":-103,"y":-6},{"x":-115,"y":-89},{"x":-141,"y":9},{"x":-33,"y":-46},{"x":-133,"y":-55},{"x":-8,"y":-57},{"x":-82,"y":-40},{"x":6,"y":-78},{"x":-51,"y":-152},{"x":-49,"y":-45},{"x":-15,"y":-112},{"x":-55,"y":-18},{"x":-24,"y":-84},{"x":-52,"y":-32},{"x":31,"y":-66},{"x":-18,"y":-105},{"x":56,"y":-57},{"x":-11,"y":-115},{"x":-95,"y":-183},{"x":-83,"y":-26},{"x":-42,"y":-108},{"x":-35,"y":-18},{"x":-39,"y":13},{"x":-121,"y":-155},{"x":-2,"y":-142},{"x":-33,"y":-82},{"x":23,"y":-32},{"x":-128,"y":-117},{"x":0,"y":-45},{"x":97,"y":-140}],"type":"area"},{"arc":[{"x":244034,"y":193971},{"x":171,"y":75},{"x":66,"y":125},{"x":18,"y":205},{"x":50,"y":147},{"x":-63,"y":127},{"x":75,"y":30}],"type":"admin"},{"arc":[{"x":244351,"y":194680},{"x":246,"y":108},{"x":26,"y":240},{"x":116,"y":220},{"x":43,"y":39},{"x":127,"y":13}],"type":"admin"},{"arc":[{"x":244909,"y":195300},{"x":-69,"y":354},{"x":67,"y":15},{"x":-108,"y":477},{"x":16,"y":99},{"x":-117,"y":140},{"x":-76,"y":21},{"x":-18,"y":42},{"x":33,"y":148},{"x":-90,"y":194},{"x":146,"y":128},{"x":102,"y":35},{"x":42,"y":139},{"x":80,"y":48},{"x":49,"y":78},{"x":142,"y":93},{"x":42,"y":58},{"x":-11,"y":93},{"x":-68,"y":29},{"x":-29,"y":105},{"x":-123,"y":53}],"type":"admin"},{"arc":[{"x":246727,"y":200458},{"x":-88,"y":13},{"x":-71,"y":-27},{"x":-23,"y":58},{"x":-56,"y":-13},{"x":-55,"y":28},{"x":2,"y":44},{"x":-193,"y":54},{"x":23,"y":56},{"x":-32,"y":55},{"x":-68,"y":46},{"x":-61,"y":123},{"x":-103,"y":42},{"x":-144,"y":-127},{"x":-119,"y":12}],"type":"admin"},{"arc":[{"x":245739,"y":200822},{"x":-129,"y":42},{"x":-183,"y":3},{"x":-72,"y":70},{"x":-71,"y":-18},{"x":-18,"y":-49},{"x":-45,"y":62},{"x":-99,"y":-126},{"x":-141,"y":-17},{"x":-57,"y":-22},{"x":-16,"y":-42}],"type":"admin"},{"arc":[{"x":244908,"y":200725},{"x":-108,"y":-69},{"x":-42,"y":0},{"x":-45,"y":10},{"x":-59,"y":99},{"x":-28,"y":-6},{"x":-42,"y":-57},{"x":5,"y":-50},{"x":-49,"y":-26},{"x":-11,"y":-82},{"x":-129,"y":-179},{"x":-23,"y":-109},{"x":-26,"y":-1},{"x":-69,"y":-98},{"x":-96,"y":-29},{"x":-80,"y":56},{"x":-27,"y":-15},{"x":-72,"y":31},{"x":-85,"y":-159},{"x":-158,"y":-32},{"x":-95,"y":-69},{"x":-64,"y":10},{"x":-111,"y":141},{"x":-100,"y":26},{"x":-42,"y":-38},{"x":-108,"y":15},{"x":-81,"y":-45},{"x":-92,"y":-8},{"x":-34,"y":-33},{"x":-221,"y":19}],"type":"area"},{"arc":[{"x":242816,"y":200027},{"x":8,"y":-25},{"x":-34,"y":-15},{"x":-60,"y":36},{"x":-40,"y":-11}],"type":"admin"},{"arc":[{"x":242670,"y":198795},{"x":37,"y":2},{"x":32,"y":-119},{"x":-29,"y":-73},{"x":-48,"y":-31},{"x":-42,"y":-158},{"x":59,"y":-141},{"x":29,"y":11},{"x":49,"y":-35},{"x":54,"y":-2},{"x":39,"y":-50},{"x":112,"y":-35},{"x":40,"y":-45},{"x":97,"y":-15},{"x":42,"y":-58},{"x":29,"y":21},{"x":78,"y":-14},{"x":39,"y":-76},{"x":-11,"y":-35},{"x":51,"y":-23},{"x":106,"y":45},{"x":42,"y":-15},{"x":65,"y":-169},{"x":113,"y":-107},{"x":29,"y":12},{"x":58,"y":-76},{"x":114,"y":51},{"x":23,"y":-13},{"x":95,"y":100},{"x":48,"y":-8},{"x":68,"y":52},{"x":156,"y":-148},{"x":36,"y":23}],"type":"area"},{"arc":[{"x":244919,"y":197649},{"x":51,"y":38},{"x":120,"y":-27},{"x":97,"y":21}],"type":"admin"},{"arc":[{"x":245187,"y":197681},{"x":29,"y":64},{"x":64,"y":6},{"x":36,"y":36},{"x":47,"y":93}],"type":"admin"},{"arc":[{"x":245363,"y":197880},{"x":69,"y":-10},{"x":51,"y":-46},{"x":233,"y":-11},{"x":37,"y":-34},{"x":108,"y":41},{"x":19,"y":52},{"x":58,"y":-4},{"x":77,"y":56},{"x":9,"y":151}],"type":"area"},{"arc":[{"x":246024,"y":198075},{"x":-86,"y":44},{"x":28,"y":97},{"x":65,"y":50},{"x":84,"y":-7},{"x":31,"y":31},{"x":73,"y":8},{"x":43,"y":48},{"x":-9,"y":62},{"x":40,"y":7},{"x":56,"y":93},{"x":42,"y":13},{"x":15,"y":66},{"x":47,"y":30},{"x":78,"y":-20},{"x":77,"y":73},{"x":45,"y":-63},{"x":58,"y":-12},{"x":25,"y":-113},{"x":1,"y":-205},{"x":-109,"y":-133},{"x":44,"y":-40},{"x":45,"y":3},{"x":32,"y":71},{"x":109,"y":13},{"x":-16,"y":74},{"x":153,"y":136},{"x":132,"y":-31},{"x":235,"y":-13},{"x":195,"y":23},{"x":66,"y":-61},{"x":148,"y":-61},{"x":116,"y":48}],"type":"area"},{"arc":[{"x":247887,"y":198306},{"x":66,"y":190},{"x":-55,"y":190},{"x":-8,"y":153},{"x":31,"y":82},{"x":-20,"y":176},{"x":62,"y":38},{"x":-119,"y":123},{"x":3,"y":64},{"x":91,"y":132},{"x":12,"y":119},{"x":144,"y":23}],"type":"area"},{"arc":[{"x":241367,"y":193706},{"x":-553,"y":-884},{"x":-19,"y":78},{"x":-77,"y":-30},{"x":-155,"y":25},{"x":-65,"y":-69},{"x":-33,"y":-101},{"x":-91,"y":-3},{"x":-57,"y":-40},{"x":-15,"y":-53},{"x":-72,"y":9},{"x":-49,"y":48},{"x":-28,"y":-15}],"type":"admin"},{"arc":[{"x":240153,"y":192671},{"x":-77,"y":-304},{"x":6,"y":-121},{"x":-39,"y":-36},{"x":61,"y":-193}],"type":"area"},{"arc":[{"x":241898,"y":191438},{"x":127,"y":1312}],"type":"admin"},{"arc":[{"x":242025,"y":192750},{"x":-191,"y":25},{"x":45,"y":458}],"type":"admin"},{"arc":[{"x":246024,"y":198075},{"x":59,"y":23},{"x":102,"y":-56},{"x":82,"y":-13},{"x":36,"y":-49},{"x":99,"y":33},{"x":45,"y":49},{"x":28,"y":-31},{"x":1,"y":-186},{"x":49,"y":-65},{"x":7,"y":-80},{"x":81,"y":-85},{"x":-51,"y":-187},{"x":29,"y":-62},{"x":-76,"y":-22},{"x":-18,"y":-76},{"x":-91,"y":-73},{"x":54,"y":-65},{"x":-24,"y":-57}],"type":"area"},{"arc":[{"x":246436,"y":197073},{"x":187,"y":-210},{"x":282,"y":42}],"type":"area"},{"arc":[{"x":246905,"y":196905},{"x":-7,"y":24},{"x":30,"y":16},{"x":197,"y":47},{"x":129,"y":101},{"x":154,"y":-22},{"x":206,"y":236},{"x":127,"y":275},{"x":2,"y":41},{"x":-89,"y":72},{"x":-10,"y":53},{"x":82,"y":13},{"x":44,"y":36},{"x":33,"y":160},{"x":69,"y":8},{"x":60,"y":56},{"x":33,"y":-21}],"type":"area"},{"arc":[{"x":247965,"y":198000},{"x":30,"y":-10},{"x":44,"y":72},{"x":-41,"y":46},{"x":20,"y":91},{"x":-74,"y":34},{"x":-57,"y":73}],"type":"area"},{"arc":[{"x":255689,"y":213250},{"x":-141,"y":-149},{"x":12,"y":-28},{"x":-72,"y":-169},{"x":-106,"y":-93},{"x":-23,"y":-68},{"x":-100,"y":-47},{"x":-160,"y":-173},{"x":-166,"y":-96},{"x":-67,"y":-87},{"x":-55,"y":-21},{"x":-72,"y":-89},{"x":-49,"y":-156},{"x":-79,"y":-112},{"x":-214,"y":-125},{"x":3,"y":-93},{"x":-32,"y":30},{"x":-58,"y":-2},{"x":-58,"y":-58},{"x":-234,"y":60},{"x":-194,"y":4},{"x":-40,"y":-61}],"type":"admin"},{"arc":[{"x":253784,"y":211717},{"x":63,"y":-71},{"x":4,"y":-66},{"x":63,"y":-61},{"x":-30,"y":-62},{"x":-51,"y":-18},{"x":46,"y":-81},{"x":-62,"y":-4},{"x":-39,"y":-52},{"x":-96,"y":-6},{"x":-121,"y":-132},{"x":-59,"y":16},{"x":-4,"y":-67},{"x":-82,"y":-67},{"x":-34,"y":1},{"x":-46,"y":-120},{"x":-83,"y":3},{"x":-62,"y":-57},{"x":-34,"y":-2},{"x":-10,"y":-141},{"x":-87,"y":-47},{"x":-103,"y":-118},{"x":-71,"y":34},{"x":5,"y":-56},{"x":-43,"y":-87},{"x":82,"y":-46},{"x":17,"y":-189},{"x":70,"y":-107},{"x":-121,"y":-200},{"x":-4,"y":-139},{"x":-107,"y":-20},{"x":-74,"y":-94},{"x":-9,"y":-223},{"x":-41,"y":-134},{"x":-121,"y":-50},{"x":-40,"y":9},{"x":-111,"y":-102},{"x":40,"y":-129},{"x":66,"y":-69},{"x":5,"y":-159},{"x":35,"y":-36}],"type":"admin"},{"arc":[{"x":252535,"y":208768},{"x":99,"y":12},{"x":126,"y":83},{"x":92,"y":-11},{"x":59,"y":-73},{"x":117,"y":90},{"x":59,"y":-40},{"x":105,"y":-24},{"x":40,"y":-57},{"x":120,"y":154},{"x":34,"y":-51},{"x":38,"y":1},{"x":130,"y":106},{"x":14,"y":58},{"x":76,"y":28},{"x":135,"y":-22},{"x":26,"y":15},{"x":97,"y":-90},{"x":70,"y":-18},{"x":8,"y":-47},{"x":59,"y":12},{"x":155,"y":-47},{"x":141,"y":88},{"x":-4,"y":88},{"x":37,"y":71},{"x":125,"y":35},{"x":64,"y":94},{"x":24,"y":-25},{"x":39,"y":18},{"x":50,"y":-24},{"x":175,"y":81},{"x":71,"y":110},{"x":44,"y":17},{"x":42,"y":91},{"x":60,"y":25},{"x":152,"y":-40},{"x":119,"y":11},{"x":-6,"y":-45},{"x":125,"y":-202},{"x":-2,"y":-133},{"x":-45,"y":-17},{"x":1,"y":-26},{"x":59,"y":-41},{"x":79,"y":-12},{"x":113,"y":-130},{"x":105,"y":-60},{"x":18,"y":-98},{"x":91,"y":-100},{"x":-4,"y":-51},{"x":113,"y":-29},{"x":98,"y":-89},{"x":45,"y":1}],"type":"admin"},{"arc":[{"x":256123,"y":208455},{"x":33,"y":36},{"x":-17,"y":63},{"x":39,"y":91},{"x":90,"y":22},{"x":59,"y":-27},{"x":40,"y":52},{"x":96,"y":21},{"x":-12,"y":65},{"x":45,"y":179},{"x":25,"y":28},{"x":40,"y":-16},{"x":41,"y":125},{"x":94,"y":5},{"x":-30,"y":146},{"x":50,"y":44},{"x":-9,"y":105},{"x":-76,"y":30},{"x":3,"y":31},{"x":85,"y":130},{"x":56,"y":-8},{"x":63,"y":15},{"x":30,"y":36},{"x":32,"y":-7},{"x":-19,"y":102},{"x":40,"y":84},{"x":15,"y":180},{"x":178,"y":38},{"x":36,"y":86},{"x":71,"y":36},{"x":128,"y":167},{"x":115,"y":-27},{"x":101,"y":38}],"type":"admin"},{"arc":[{"x":257565,"y":210325},{"x":-342,"y":617},{"x":-42,"y":134},{"x":-74,"y":63},{"x":-58,"y":15},{"x":-46,"y":80},{"x":-63,"y":17},{"x":33,"y":-25},{"x":-12,"y":-26},{"x":27,"y":4},{"x":-40,"y":-45},{"x":4,"y":25},{"x":-44,"y":-2},{"x":42,"y":16},{"x":-85,"y":-5},{"x":8,"y":31},{"x":-42,"y":24},{"x":-24,"y":-34},{"x":-1,"y":27},{"x":-36,"y":-4},{"x":19,"y":74},{"x":-73,"y":52},{"x":45,"y":42},{"x":-81,"y":-65},{"x":-254,"y":357},{"x":-382,"y":751},{"x":-355,"y":802}],"type":"coastline"},{"arc":[{"x":255950,"y":200343},{"x":4,"y":1280},{"x":-140,"y":-3},{"x":-34,"y":63},{"x":-46,"y":10},{"x":-4,"y":320},{"x":-106,"y":9},{"x":-78,"y":98},{"x":-86,"y":32},{"x":-40,"y":-16},{"x":-52,"y":48},{"x":-65,"y":6},{"x":-11,"y":70},{"x":-87,"y":59},{"x":-33,"y":72},{"x":-291,"y":81},{"x":-54,"y":64},{"x":57,"y":41},{"x":54,"y":99},{"x":-69,"y":226},{"x":-124,"y":65},{"x":7,"y":74},{"x":-62,"y":142},{"x":31,"y":245},{"x":-44,"y":83}],"type":"area"},{"arc":[{"x":254677,"y":203511},{"x":-93,"y":102},{"x":7,"y":84},{"x":81,"y":249},{"x":48,"y":-14},{"x":81,"y":53},{"x":33,"y":81},{"x":-24,"y":69},{"x":58,"y":88},{"x":-27,"y":47},{"x":-170,"y":32},{"x":-37,"y":38},{"x":11,"y":19},{"x":122,"y":14},{"x":-2,"y":76},{"x":29,"y":36},{"x":-17,"y":42},{"x":98,"y":22},{"x":51,"y":244},{"x":-39,"y":31},{"x":1,"y":33},{"x":-114,"y":27},{"x":1,"y":172},{"x":-134,"y":148},{"x":-96,"y":22},{"x":-57,"y":100},{"x":-51,"y":-4},{"x":-19,"y":-42},{"x":-45,"y":21},{"x":-85,"y":122},{"x":37,"y":98},{"x":116,"y":101},{"x":36,"y":176}],"type":"admin"},{"arc":[{"x":254477,"y":205798},{"x":-87,"y":1},{"x":-56,"y":50},{"x":-120,"y":-36},{"x":-34,"y":42},{"x":-73,"y":-21},{"x":-62,"y":98},{"x":-67,"y":14},{"x":-39,"y":43},{"x":-38,"y":-6},{"x":-32,"y":44},{"x":-54,"y":-42},{"x":-38,"y":10},{"x":-26,"y":-33},{"x":-15,"y":31},{"x":-97,"y":-3},{"x":-42,"y":40},{"x":-30,"y":101},{"x":-94,"y":-27},{"x":-102,"y":-78},{"x":-68,"y":36},{"x":-63,"y":116},{"x":-92,"y":39},{"x":-35,"y":2},{"x":-21,"y":-58},{"x":-40,"y":-10},{"x":-48,"y":-62},{"x":-43,"y":13},{"x":-53,"y":91},{"x":-173,"y":-24},{"x":20,"y":162},{"x":-90,"y":38},{"x":-47,"y":48},{"x":-48,"y":-1},{"x":-32,"y":-39},{"x":-175,"y":85},{"x":-31,"y":-26},{"x":-75,"y":-6},{"x":-62,"y":-109},{"x":-135,"y":20},{"x":-20,"y":-43},{"x":-140,"y":-49}],"type":"admin"},{"arc":[{"x":251900,"y":206249},{"x":-36,"y":-141},{"x":-98,"y":-60},{"x":26,"y":-123},{"x":-38,"y":-76},{"x":-81,"y":-26},{"x":-66,"y":-107},{"x":-104,"y":-2},{"x":-85,"y":-145},{"x":15,"y":-185},{"x":77,"y":-24},{"x":33,"y":-127},{"x":65,"y":-97}],"type":"admin"},{"arc":[{"x":251608,"y":205136},{"x":59,"y":-63},{"x":49,"y":-8},{"x":34,"y":-115},{"x":71,"y":-13},{"x":35,"y":-106},{"x":69,"y":0},{"x":0,"y":-71},{"x":72,"y":9},{"x":169,"y":-33},{"x":56,"y":-92},{"x":191,"y":-49},{"x":45,"y":-74},{"x":39,"y":-15},{"x":36,"y":-125},{"x":97,"y":-77},{"x":28,"y":-58},{"x":112,"y":12},{"x":-72,"y":-306},{"x":-30,"y":-16},{"x":-45,"y":-145},{"x":82,"y":-69},{"x":18,"y":-98},{"x":142,"y":-173},{"x":-57,"y":-115},{"x":-20,"y":-130},{"x":-95,"y":9},{"x":-38,"y":-63},{"x":4,"y":-66},{"x":-69,"y":-133},{"x":-5,"y":-162},{"x":-83,"y":-41},{"x":-93,"y":-96}],"type":"admin"},{"arc":[{"x":252409,"y":202654},{"x":-1,"y":-145},{"x":-88,"y":-64},{"x":-54,"y":-158},{"x":-78,"y":-74}],"type":"admin"},{"arc":[{"x":252188,"y":202213},{"x":74,"y":-89},{"x":69,"y":-14},{"x":81,"y":-85},{"x":214,"y":75},{"x":116,"y":-37},{"x":96,"y":37},{"x":112,"y":-20},{"x":89,"y":46},{"x":173,"y":-13},{"x":49,"y":18},{"x":125,"y":-94},{"x":36,"y":11},{"x":7,"y":-47},{"x":64,"y":-9},{"x":37,"y":-54},{"x":64,"y":11},{"x":69,"y":-73},{"x":29,"y":-9},{"x":48,"y":50},{"x":68,"y":-8},{"x":10,"y":-34},{"x":84,"y":-52},{"x":25,"y":-64}],"type":"admin"},{"arc":[{"x":253927,"y":201759},{"x":60,"y":-64},{"x":-33,"y":-156},{"x":50,"y":-47},{"x":-6,"y":-50},{"x":62,"y":-88},{"x":164,"y":43},{"x":137,"y":-12},{"x":-8,"y":-104},{"x":-63,"y":-41},{"x":8,"y":-34},{"x":44,"y":-21},{"x":-67,"y":-225},{"x":-9,"y":-180},{"x":32,"y":-35},{"x":50,"y":-3},{"x":16,"y":-37},{"x":157,"y":-37},{"x":76,"y":-186},{"x":45,"y":-28},{"x":138,"y":-2},{"x":72,"y":-113},{"x":-118,"y":8},{"x":-10,"y":-98},{"x":-56,"y":12},{"x":-6,"y":-46},{"x":-73,"y":-59},{"x":-38,"y":1},{"x":-47,"y":-75},{"x":-118,"y":-23},{"x":-23,"y":25},{"x":-50,"y":-8},{"x":-24,"y":-44},{"x":-34,"y":15},{"x":-67,"y":-53},{"x":-109,"y":13},{"x":-46,"y":-42},{"x":-19,"y":16},{"x":-32,"y":-17},{"x":-131,"y":62},{"x":-60,"y":3},{"x":-35,"y":-26},{"x":-19,"y":41},{"x":-59,"y":-31},{"x":-52,"y":22},{"x":-51,"y":-52},{"x":-10,"y":-73},{"x":-116,"y":-8},{"x":-99,"y":29},{"x":-11,"y":29},{"x":-133,"y":24},{"x":-41,"y":50},{"x":-44,"y":-11},{"x":-49,"y":35},{"x":-68,"y":-87}],"type":"admin"},{"arc":[{"x":253004,"y":199971},{"x":-52,"y":-163},{"x":-118,"y":-98},{"x":-82,"y":-137}],"type":"admin"},{"arc":[{"x":252752,"y":199573},{"x":13,"y":-51},{"x":174,"y":-219},{"x":-34,"y":-39},{"x":108,"y":-188},{"x":93,"y":-65},{"x":12,"y":-54},{"x":56,"y":-16},{"x":34,"y":14},{"x":68,"y":-23},{"x":124,"y":66},{"x":86,"y":-13},{"x":39,"y":30},{"x":89,"y":-40},{"x":81,"y":27},{"x":149,"y":103},{"x":42,"y":125},{"x":64,"y":-45},{"x":99,"y":56},{"x":125,"y":-72},{"x":0,"y":-29},{"x":77,"y":-66},{"x":50,"y":15},{"x":25,"y":-29},{"x":95,"y":-14},{"x":67,"y":-61},{"x":123,"y":107},{"x":19,"y":-38},{"x":96,"y":20},{"x":109,"y":-20},{"x":31,"y":-114},{"x":69,"y":-29},{"x":56,"y":112},{"x":43,"y":14},{"x":98,"y":160},{"x":100,"y":32},{"x":23,"y":-15},{"x":54,"y":39},{"x":56,"y":-11},{"x":5,"y":-26},{"x":56,"y":44},{"x":102,"y":6},{"x":14,"y":70},{"x":105,"y":-34},{"x":33,"y":36},{"x":55,"y":-134},{"x":-105,"y":-166},{"x":54,"y":-100},{"x":84,"y":-14},{"x":164,"y":89},{"x":18,"y":75},{"x":36,"y":-10},{"x":46,"y":41},{"x":62,"y":3},{"x":13,"y":26},{"x":-117,"y":143},{"x":19,"y":49},{"x":33,"y":35},{"x":45,"y":-50},{"x":140,"y":7},{"x":27,"y":196},{"x":-21,"y":84},{"x":-58,"y":6},{"x":-79,"y":122},{"x":16,"y":46},{"x":-70,"y":104},{"x":41,"y":71},{"x":-28,"y":67},{"x":-70,"y":10},{"x":-63,"y":121},{"x":-58,"y":-21},{"x":-53,"y":42},{"x":40,"y":93},{"x":-28,"y":45},{"x":47,"y":38},{"x":80,"y":-13}],"type":"admin"},{"arc":[{"x":258128,"y":203193},{"x":-147,"y":-24}],"type":"admin"},{"arc":[{"x":257981,"y":203169},{"x":-169,"y":-186},{"x":-62,"y":-12},{"x":-81,"y":-68},{"x":-114,"y":76},{"x":-40,"y":-31},{"x":-91,"y":-3},{"x":-100,"y":89},{"x":-38,"y":-22},{"x":-139,"y":31},{"x":-102,"y":114},{"x":-56,"y":-47},{"x":-61,"y":10},{"x":-52,"y":-33},{"x":-171,"y":-21},{"x":-77,"y":-48},{"x":-59,"y":-186},{"x":-392,"y":-214},{"x":-33,"y":76},{"x":26,"y":123},{"x":-63,"y":419},{"x":-50,"y":27},{"x":-77,"y":-44},{"x":-60,"y":7},{"x":-48,"y":20},{"x":-26,"y":72},{"x":-75,"y":48},{"x":-55,"y":-14},{"x":-46,"y":-48},{"x":-51,"y":31},{"x":14,"y":62},{"x":-32,"y":28},{"x":-47,"y":0},{"x":-13,"y":37},{"x":-55,"y":-27},{"x":-272,"y":197},{"x":-39,"y":-38},{"x":-61,"y":1},{"x":-93,"y":157},{"x":-47,"y":-16},{"x":-56,"y":-112},{"x":-66,"y":-17},{"x":-93,"y":19},{"x":4,"y":-62},{"x":-86,"y":-53}],"type":"admin"},{"arc":[{"x":255950,"y":200343},{"x":42,"y":4},{"x":66,"y":-96},{"x":73,"y":-60},{"x":44,"y":2},{"x":4,"y":-48},{"x":21,"y":12},{"x":97,"y":-65},{"x":47,"y":20},{"x":52,"y":-107},{"x":32,"y":30},{"x":31,"y":-27},{"x":53,"y":36},{"x":-12,"y":79},{"x":147,"y":183},{"x":104,"y":18},{"x":113,"y":-48},{"x":20,"y":103},{"x":94,"y":93},{"x":35,"y":-15},{"x":90,"y":24},{"x":104,"y":-28},{"x":39,"y":12},{"x":32,"y":-24},{"x":111,"y":6},{"x":22,"y":-25},{"x":92,"y":-2},{"x":100,"y":-42}],"type":"admin"},{"arc":[{"x":257603,"y":200378},{"x":63,"y":10},{"x":28,"y":-27},{"x":56,"y":15},{"x":35,"y":-16},{"x":11,"y":-42},{"x":55,"y":20},{"x":164,"y":-63},{"x":41,"y":26},{"x":22,"y":102},{"x":210,"y":217},{"x":-51,"y":77},{"x":43,"y":115},{"x":-42,"y":48},{"x":4,"y":65},{"x":81,"y":28},{"x":73,"y":64},{"x":23,"y":128},{"x":28,"y":26},{"x":60,"y":2},{"x":74,"y":90},{"x":25,"y":96},{"x":-19,"y":77},{"x":-58,"y":-8},{"x":-70,"y":25},{"x":-11,"y":62},{"x":-25,"y":11},{"x":60,"y":181},{"x":-36,"y":141},{"x":69,"y":89},{"x":-26,"y":79},{"x":-110,"y":56},{"x":-163,"y":134},{"x":-1,"y":79},{"x":-56,"y":50},{"x":-7,"y":87},{"x":-49,"y":97},{"x":25,"y":37},{"x":6,"y":171},{"x":44,"y":71},{"x":3,"y":188},{"x":-54,"y":207}],"type":"admin"},{"arc":[{"x":242645,"y":234327},{"x":-56,"y":16},{"x":9,"y":52},{"x":-40,"y":-15},{"x":-10,"y":64},{"x":-35,"y":1},{"x":-44,"y":-93},{"x":-37,"y":-22},{"x":20,"y":-95},{"x":20,"y":-15},{"x":58,"y":26},{"x":29,"y":-25},{"x":86,"y":106}],"type":"coastline"},{"arc":[{"x":242758,"y":234428},{"x":-59,"y":64},{"x":-22,"y":-67},{"x":48,"y":-63},{"x":33,"y":66}],"type":"coastline"},{"arc":[{"x":243629,"y":235100},{"x":-12,"y":15},{"x":-17,"y":-57},{"x":29,"y":42}],"type":"coastline"},{"arc":[{"x":244125,"y":235989},{"x":-11,"y":-13},{"x":37,"y":52},{"x":-26,"y":-39}],"type":"coastline"},{"arc":[{"x":244628,"y":238659},{"x":-7,"y":59},{"x":-16,"y":-22},{"x":-21,"y":14},{"x":2,"y":-50},{"x":-187,"y":-111},{"x":40,"y":-51},{"x":-12,"y":-29},{"x":31,"y":9},{"x":40,"y":-43},{"x":-28,"y":-41},{"x":40,"y":-50},{"x":77,"y":68},{"x":-41,"y":62},{"x":25,"y":34},{"x":-27,"y":-1},{"x":-9,"y":30},{"x":45,"y":53},{"x":-12,"y":26},{"x":60,"y":43}],"type":"coastline"},{"arc":[{"x":244722,"y":237364},{"x":-15,"y":29},{"x":-36,"y":-19},{"x":6,"y":-18},{"x":45,"y":8}],"type":"coastline"},{"arc":[{"x":242035,"y":231521},{"x":170,"y":-96},{"x":200,"y":-33},{"x":110,"y":-308},{"x":85,"y":-95},{"x":79,"y":-23},{"x":37,"y":-50},{"x":-41,"y":-30},{"x":17,"y":-58},{"x":-51,"y":-131},{"x":-85,"y":-111},{"x":-58,"y":-21},{"x":-9,"y":-55},{"x":-42,"y":-30},{"x":653,"y":-309}],"type":"admin"},{"arc":[{"x":243100,"y":230171},{"x":1,"y":44},{"x":-16,"y":13},{"x":-11,"y":-21},{"x":-36,"y":42},{"x":41,"y":16},{"x":-40,"y":2},{"x":-8,"y":25},{"x":-6,"y":-16},{"x":-14,"y":49},{"x":-20,"y":-10},{"x":8,"y":36},{"x":75,"y":42},{"x":5,"y":40},{"x":80,"y":-43},{"x":57,"y":50},{"x":39,"y":-51},{"x":74,"y":72},{"x":24,"y":-6},{"x":-8,"y":171},{"x":82,"y":118},{"x":91,"y":18},{"x":13,"y":59},{"x":185,"y":-35},{"x":53,"y":12},{"x":123,"y":-53},{"x":127,"y":22},{"x":-9,"y":446},{"x":-236,"y":477},{"x":-257,"y":294},{"x":-14,"y":68},{"x":63,"y":138}],"type":"admin"},{"arc":[{"x":243566,"y":232190},{"x":-44,"y":62},{"x":15,"y":134},{"x":-89,"y":264},{"x":-52,"y":75},{"x":-78,"y":260},{"x":-45,"y":56},{"x":29,"y":80},{"x":-35,"y":61},{"x":-57,"y":6},{"x":3,"y":56},{"x":107,"y":58},{"x":50,"y":65},{"x":77,"y":3},{"x":80,"y":73},{"x":58,"y":17},{"x":13,"y":67},{"x":22,"y":22},{"x":-9,"y":-39},{"x":26,"y":55},{"x":88,"y":-16},{"x":20,"y":54},{"x":66,"y":42},{"x":-36,"y":59},{"x":86,"y":155},{"x":43,"y":19},{"x":48,"y":-39},{"x":13,"y":156},{"x":44,"y":22},{"x":55,"y":100},{"x":42,"y":-6},{"x":68,"y":43},{"x":-30,"y":-16},{"x":-16,"y":22},{"x":20,"y":53},{"x":39,"y":-7},{"x":58,"y":-74},{"x":-7,"y":91},{"x":93,"y":102},{"x":26,"y":135},{"x":60,"y":63},{"x":21,"y":75},{"x":69,"y":37},{"x":60,"y":114},{"x":78,"y":8},{"x":69,"y":79},{"x":47,"y":3},{"x":32,"y":36},{"x":11,"y":165},{"x":-10,"y":32},{"x":-36,"y":-10},{"x":-25,"y":42},{"x":32,"y":70},{"x":-70,"y":177},{"x":-7,"y":256},{"x":37,"y":78},{"x":44,"y":31},{"x":27,"y":-14},{"x":28,"y":32},{"x":-53,"y":28},{"x":22,"y":56},{"x":-21,"y":95},{"x":24,"y":-5},{"x":7,"y":-58},{"x":92,"y":129},{"x":-10,"y":57},{"x":-58,"y":-30},{"x":-40,"y":50},{"x":27,"y":90},{"x":-42,"y":-3},{"x":-9,"y":98},{"x":-36,"y":30},{"x":17,"y":44},{"x":16,"y":-49},{"x":12,"y":37},{"x":-36,"y":18},{"x":13,"y":184},{"x":-33,"y":95},{"x":-44,"y":-20},{"x":10,"y":-40},{"x":-68,"y":-54},{"x":-70,"y":23},{"x":-16,"y":-25},{"x":-6,"y":45},{"x":22,"y":-10},{"x":-29,"y":26},{"x":-23,"y":-12},{"x":-71,"y":-106},{"x":14,"y":-56},{"x":-28,"y":-61},{"x":-36,"y":3},{"x":-48,"y":-43},{"x":-54,"y":-105},{"x":-38,"y":-11},{"x":-27,"y":-99},{"x":-37,"y":12},{"x":-19,"y":-17},{"x":48,"y":6},{"x":-72,"y":-118},{"x":-18,"y":44},{"x":-22,"y":-9},{"x":47,"y":-186},{"x":-104,"y":-43},{"x":-34,"y":-40},{"x":4,"y":-34},{"x":47,"y":12},{"x":47,"y":-56},{"x":-10,"y":-160},{"x":-88,"y":-61},{"x":-7,"y":-135},{"x":-52,"y":-85},{"x":-60,"y":-45},{"x":-53,"y":46},{"x":-40,"y":-41},{"x":37,"y":-69},{"x":6,"y":35},{"x":4,"y":-35},{"x":22,"y":9},{"x":52,"y":-118},{"x":6,"y":-158},{"x":-31,"y":-149},{"x":-117,"y":-217},{"x":-69,"y":-18},{"x":-54,"y":43},{"x":-85,"y":-85},{"x":20,"y":-58},{"x":-63,"y":30},{"x":-78,"y":-40},{"x":-44,"y":-63},{"x":-29,"y":0},{"x":10,"y":-55},{"x":48,"y":-41},{"x":-25,"y":-60},{"x":-26,"y":-1},{"x":27,"y":-1},{"x":25,"y":61},{"x":-1,"y":37},{"x":49,"y":-20},{"x":-30,"y":-7},{"x":-14,"y":-145},{"x":-27,"y":-22},{"x":-36,"y":21},{"x":20,"y":49},{"x":-40,"y":-84},{"x":-60,"y":19},{"x":-22,"y":-34},{"x":-34,"y":9},{"x":-67,"y":-50},{"x":-325,"y":-50},{"x":-83,"y":-54},{"x":-90,"y":10},{"x":2,"y":34},{"x":-10,"y":-17},{"x":-18,"y":22},{"x":37,"y":1},{"x":-37,"y":0},{"x":-17,"y":31},{"x":-81,"y":-108},{"x":-9,"y":-115},{"x":-51,"y":-52},{"x":-65,"y":-22},{"x":-8,"y":33},{"x":-14,"y":8},{"x":17,"y":-27},{"x":-29,"y":-8},{"x":-32,"y":28},{"x":16,"y":30},{"x":-85,"y":9},{"x":-80,"y":-59},{"x":23,"y":-48},{"x":-20,"y":-72},{"x":52,"y":-24},{"x":-27,"y":-62},{"x":-130,"y":-13},{"x":73,"y":64},{"x":-76,"y":-40},{"x":6,"y":50},{"x":-44,"y":33},{"x":-12,"y":56},{"x":-28,"y":-27},{"x":-54,"y":21},{"x":-31,"y":-36},{"x":-77,"y":-248},{"x":66,"y":6},{"x":36,"y":-35},{"x":34,"y":109},{"x":114,"y":-39},{"x":95,"y":-118},{"x":36,"y":-195},{"x":-78,"y":-1014},{"x":-52,"y":-130},{"x":2,"y":-181},{"x":-68,"y":-49},{"x":20,"y":-38},{"x":-36,"y":-33},{"x":18,"y":-38}],"type":"coastline"},{"arc":[{"x":245048,"y":240085},{"x":-32,"y":44},{"x":-4,"y":-76},{"x":-28,"y":-20},{"x":26,"y":-3},{"x":38,"y":55}],"type":"coastline"},{"arc":[{"x":245161,"y":239497},{"x":-25,"y":1},{"x":17,"y":-18},{"x":8,"y":17}],"type":"coastline"},{"arc":[{"x":245193,"y":240216},{"x":-66,"y":-4},{"x":-3,"y":-36},{"x":-75,"y":-4},{"x":32,"y":-93},{"x":52,"y":80},{"x":52,"y":18},{"x":8,"y":39}],"type":"coastline"},{"arc":[{"x":245277,"y":240333},{"x":-13,"y":11},{"x":3,"y":-32},{"x":10,"y":21}],"type":"coastline"},{"arc":[{"x":245510,"y":239508},{"x":-28,"y":30},{"x":-51,"y":-12},{"x":-38,"y":19},{"x":-14,"y":73},{"x":-25,"y":-32},{"x":-58,"y":21},{"x":17,"y":-90},{"x":-22,"y":-62},{"x":-65,"y":-39},{"x":-36,"y":22},{"x":-37,"y":-68},{"x":-63,"y":11},{"x":-18,"y":-24},{"x":-12,"y":-41},{"x":48,"y":16},{"x":-8,"y":-50},{"x":36,"y":-12},{"x":-21,"y":-141},{"x":-46,"y":-80},{"x":-40,"y":5},{"x":-30,"y":-46},{"x":-20,"y":16},{"x":-18,"y":-19},{"x":-37,"y":-83},{"x":29,"y":-27},{"x":-12,"y":-28},{"x":50,"y":-21},{"x":17,"y":-104},{"x":138,"y":26},{"x":-30,"y":45},{"x":21,"y":68},{"x":35,"y":26},{"x":36,"y":-14},{"x":44,"y":75},{"x":49,"y":8},{"x":-31,"y":61},{"x":-87,"y":49},{"x":29,"y":57},{"x":103,"y":-26},{"x":13,"y":29},{"x":-12,"y":83},{"x":-45,"y":-37},{"x":-74,"y":31},{"x":1,"y":35},{"x":45,"y":31},{"x":-35,"y":52},{"x":12,"y":41},{"x":102,"y":22},{"x":46,"y":-69},{"x":34,"y":9},{"x":42,"y":100},{"x":37,"y":7},{"x":29,"y":57}],"type":"coastline"},{"arc":[{"x":245688,"y":237327},{"x":-9,"y":37},{"x":-19,"y":-22},{"x":-70,"y":49},{"x":-31,"y":-19},{"x":-48,"y":88},{"x":-6,"y":260},{"x":122,"y":96},{"x":-39,"y":155},{"x":-36,"y":-16},{"x":-30,"y":-114},{"x":-110,"y":-34},{"x":-43,"y":26},{"x":-29,"y":74},{"x":-61,"y":19},{"x":1,"y":35},{"x":-62,"y":67},{"x":-35,"y":-228},{"x":57,"y":-136},{"x":-8,"y":-83},{"x":-19,"y":-39},{"x":-92,"y":-33},{"x":-8,"y":-68},{"x":30,"y":63},{"x":45,"y":-15},{"x":10,"y":-29},{"x":28,"y":17},{"x":26,"y":-63},{"x":-55,"y":-34},{"x":52,"y":4},{"x":14,"y":-24},{"x":17,"y":59},{"x":59,"y":30},{"x":70,"y":3},{"x":78,"y":-31},{"x":31,"y":-41},{"x":-6,"y":-54},{"x":53,"y":-54},{"x":-42,"y":-104},{"x":67,"y":-101},{"x":30,"y":10},{"x":-12,"y":142},{"x":23,"y":77},{"x":29,"y":43},{"x":28,"y":-12}],"type":"coastline"},{"arc":[{"x":246785,"y":239883},{"x":-5,"y":66},{"x":-38,"y":6},{"x":-77,"y":84},{"x":-63,"y":133},{"x":-27,"y":157},{"x":18,"y":270},{"x":-242,"y":-213},{"x":-135,"y":-55},{"x":-100,"y":64},{"x":-19,"y":126},{"x":-50,"y":-80},{"x":-23,"y":50},{"x":-36,"y":-41},{"x":13,"y":-28},{"x":-36,"y":11},{"x":-31,"y":-35},{"x":8,"y":-36},{"x":-34,"y":-13},{"x":-37,"y":-132},{"x":23,"y":-41},{"x":-23,"y":-18},{"x":-29,"y":19},{"x":-28,"y":-166},{"x":-175,"y":-327},{"x":158,"y":26},{"x":89,"y":-90},{"x":-2,"y":-28},{"x":136,"y":2},{"x":77,"y":-36},{"x":74,"y":-84},{"x":7,"y":-67},{"x":98,"y":-35},{"x":159,"y":-129},{"x":11,"y":-150},{"x":143,"y":247},{"x":12,"y":128},{"x":79,"y":151},{"x":0,"y":102},{"x":105,"y":162}],"type":"coastline"},{"arc":[{"x":247009,"y":242652},{"x":-19,"y":17},{"x":7,"y":-29},{"x":12,"y":12}],"type":"coastline"},{"arc":[{"x":247049,"y":242646},{"x":-39,"y":2},{"x":0,"y":-27},{"x":39,"y":25}],"type":"coastline"},{"arc":[{"x":247052,"y":242702},{"x":-31,"y":-1},{"x":3,"y":-43},{"x":28,"y":44}],"type":"coastline"},{"arc":[{"x":248083,"y":241715},{"x":-21,"y":52},{"x":-67,"y":38},{"x":5,"y":78},{"x":-37,"y":-22},{"x":-41,"y":25},{"x":-15,"y":78},{"x":25,"y":18},{"x":-25,"y":69},{"x":31,"y":68},{"x":-49,"y":-5},{"x":-36,"y":31},{"x":-59,"y":-42},{"x":-67,"y":71},{"x":-72,"y":4},{"x":11,"y":-259},{"x":59,"y":-111},{"x":-31,"y":-133},{"x":51,"y":-139},{"x":-4,"y":-191},{"x":30,"y":-65},{"x":28,"y":3},{"x":-16,"y":94},{"x":34,"y":186},{"x":117,"y":134},{"x":116,"y":-27},{"x":33,"y":45}],"type":"coastline"},{"arc":[{"x":238853,"y":195786},{"x":-55,"y":-26},{"x":-55,"y":-84},{"x":-79,"y":-250},{"x":-114,"y":-182},{"x":-48,"y":-19},{"x":-21,"y":-98},{"x":-179,"y":-114},{"x":-32,"y":-45},{"x":-144,"y":39},{"x":-74,"y":-32},{"x":-26,"y":38},{"x":-95,"y":-105},{"x":-111,"y":49},{"x":-98,"y":-262},{"x":-75,"y":29},{"x":-44,"y":92},{"x":-124,"y":-3},{"x":-75,"y":-58},{"x":21,"y":-56},{"x":-113,"y":-67},{"x":-23,"y":-42},{"x":-82,"y":27},{"x":-53,"y":-148}],"type":"admin"},{"arc":[{"x":235811,"y":190517},{"x":37,"y":-97},{"x":-24,"y":-47},{"x":32,"y":-53},{"x":-33,"y":-165},{"x":21,"y":-144},{"x":66,"y":-98},{"x":51,"y":-18},{"x":65,"y":-125},{"x":53,"y":-42},{"x":31,"y":3},{"x":-18,"y":-146},{"x":44,"y":-4},{"x":41,"y":-91},{"x":42,"y":-21},{"x":-42,"y":-82},{"x":-161,"y":-78},{"x":26,"y":-105},{"x":-19,"y":-137},{"x":42,"y":-58},{"x":-24,"y":-62},{"x":-43,"y":-7},{"x":-117,"y":-112},{"x":-17,"y":-57}],"type":"admin"},{"arc":[{"x":237576,"y":189227},{"x":-79,"y":100},{"x":-2,"y":107},{"x":-53,"y":42},{"x":-24,"y":76},{"x":14,"y":46},{"x":-70,"y":41},{"x":-30,"y":-40},{"x":158,"y":219},{"x":-12,"y":191},{"x":-31,"y":69},{"x":26,"y":80},{"x":-136,"y":446},{"x":-82,"y":81},{"x":84,"y":31},{"x":89,"y":-17},{"x":84,"y":147},{"x":2,"y":421},{"x":-45,"y":112},{"x":111,"y":2},{"x":13,"y":71},{"x":-40,"y":68},{"x":-7,"y":102},{"x":131,"y":295},{"x":-6,"y":203},{"x":34,"y":41},{"x":2,"y":102},{"x":-36,"y":75},{"x":15,"y":102},{"x":-43,"y":44},{"x":87,"y":177},{"x":-29,"y":136},{"x":145,"y":-41},{"x":186,"y":180},{"x":16,"y":66},{"x":-26,"y":32},{"x":882,"y":493}],"type":"area"},{"arc":[{"x":238904,"y":193527},{"x":-155,"y":94},{"x":-80,"y":-86},{"x":-80,"y":26},{"x":-72,"y":-41},{"x":-49,"y":6},{"x":-54,"y":43},{"x":-29,"y":90},{"x":51,"y":56},{"x":277,"y":127},{"x":-33,"y":70},{"x":-122,"y":24},{"x":-40,"y":96},{"x":54,"y":73},{"x":85,"y":-21},{"x":107,"y":46},{"x":9,"y":81},{"x":25,"y":-1},{"x":22,"y":42},{"x":-1,"y":67},{"x":47,"y":45},{"x":3,"y":85},{"x":92,"y":73},{"x":57,"y":-7},{"x":35,"y":89},{"x":194,"y":1}],"type":"admin"},{"arc":[{"x":239247,"y":194605},{"x":-76,"y":134},{"x":-188,"y":132},{"x":-42,"y":99},{"x":28,"y":136},{"x":-48,"y":252},{"x":71,"y":247},{"x":-26,"y":71},{"x":-88,"y":51},{"x":-25,"y":59}],"type":"admin"},{"arc":[{"x":248306,"y":196736},{"x":-18,"y":124},{"x":-70,"y":-1},{"x":-22,"y":24},{"x":-147,"y":288},{"x":-121,"y":48},{"x":-55,"y":156},{"x":9,"y":220},{"x":-55,"y":58},{"x":-3,"y":141},{"x":141,"y":206}],"type":"area"},{"arc":[{"x":246905,"y":196905},{"x":26,"y":-54},{"x":-35,"y":-98},{"x":75,"y":-4},{"x":-26,"y":-142},{"x":-138,"y":-154},{"x":-4,"y":-96},{"x":-54,"y":-155},{"x":-171,"y":-73},{"x":52,"y":-69},{"x":34,"y":-3},{"x":2,"y":-68}],"type":"area"},{"arc":[{"x":246666,"y":195989},{"x":133,"y":26},{"x":229,"y":-147},{"x":164,"y":59},{"x":104,"y":-9},{"x":54,"y":-36},{"x":62,"y":10},{"x":58,"y":52},{"x":50,"y":-36}],"type":"admin"},{"arc":[{"x":247520,"y":195908},{"x":173,"y":-12},{"x":125,"y":112},{"x":-29,"y":153},{"x":32,"y":97},{"x":100,"y":2},{"x":72,"y":-91},{"x":61,"y":36},{"x":48,"y":112},{"x":56,"y":-70},{"x":56,"y":-26},{"x":3,"y":31}],"type":"admin"},{"arc":[{"x":248217,"y":196252},{"x":-2,"y":85},{"x":85,"y":74},{"x":50,"y":180},{"x":-44,"y":145}],"type":"admin"},{"arc":[{"x":246436,"y":197073},{"x":-25,"y":-17},{"x":-42,"y":59},{"x":-13,"y":-48},{"x":-162,"y":-71},{"x":1,"y":-51},{"x":-78,"y":-32},{"x":-39,"y":-94},{"x":-109,"y":-7}],"type":"area"},{"arc":[{"x":245969,"y":196812},{"x":-20,"y":-6},{"x":27,"y":-197},{"x":-38,"y":-42},{"x":-71,"y":3},{"x":-59,"y":311},{"x":-111,"y":-80},{"x":-62,"y":-142},{"x":-60,"y":-23},{"x":-13,"y":-69},{"x":-37,"y":-2}],"type":"admin"},{"arc":[{"x":245525,"y":196565},{"x":143,"y":-761}],"type":"admin"},{"arc":[{"x":245668,"y":195804},{"x":260,"y":-17},{"x":65,"y":55},{"x":115,"y":197},{"x":185,"y":54},{"x":32,"y":-3},{"x":-10,"y":-72},{"x":-58,"y":-108},{"x":64,"y":-70},{"x":43,"y":-6},{"x":27,"y":54},{"x":0,"y":254},{"x":53,"y":1},{"x":34,"y":-80},{"x":128,"y":-76},{"x":60,"y":2}],"type":"admin"},{"arc":[{"x":245363,"y":197880},{"x":54,"y":-220},{"x":114,"y":-131},{"x":74,"y":-46},{"x":58,"y":-77},{"x":134,"y":-76},{"x":123,"y":-13},{"x":21,"y":-42},{"x":-48,"y":-57},{"x":61,"y":-64},{"x":15,"y":-342}],"type":"admin"},{"arc":[{"x":248306,"y":196736},{"x":168,"y":284},{"x":59,"y":17},{"x":17,"y":39},{"x":106,"y":-51},{"x":-22,"y":-61},{"x":202,"y":-99},{"x":26,"y":65},{"x":85,"y":-41},{"x":24,"y":62},{"x":345,"y":-163}],"type":"admin"},{"arc":[{"x":249316,"y":196788},{"x":14,"y":353},{"x":605,"y":91}],"type":"admin"},{"arc":[{"x":249935,"y":197232},{"x":153,"y":48},{"x":118,"y":-17},{"x":15,"y":199},{"x":24,"y":31},{"x":123,"y":43},{"x":114,"y":207},{"x":-15,"y":62},{"x":53,"y":21},{"x":-4,"y":42},{"x":130,"y":61},{"x":38,"y":50},{"x":68,"y":1},{"x":57,"y":37},{"x":158,"y":-143},{"x":43,"y":10},{"x":138,"y":-105},{"x":79,"y":-9},{"x":-6,"y":-39},{"x":63,"y":-52},{"x":26,"y":-72},{"x":105,"y":-27},{"x":0,"y":-42},{"x":24,"y":2},{"x":59,"y":-121},{"x":39,"y":-18},{"x":218,"y":-49},{"x":70,"y":35},{"x":57,"y":-37},{"x":9,"y":43},{"x":167,"y":13},{"x":56,"y":51},{"x":135,"y":-47},{"x":67,"y":6},{"x":81,"y":60},{"x":76,"y":-7}],"type":"admin"},{"arc":[{"x":252473,"y":197469},{"x":18,"y":87},{"x":136,"y":23},{"x":36,"y":45},{"x":-20,"y":126},{"x":90,"y":-64},{"x":78,"y":51},{"x":37,"y":-32},{"x":43,"y":63},{"x":72,"y":-37},{"x":79,"y":4},{"x":62,"y":79}],"type":"admin"},{"arc":[{"x":253104,"y":197814},{"x":15,"y":78},{"x":-72,"y":232},{"x":-35,"y":-4},{"x":-22,"y":25},{"x":-72,"y":-14},{"x":-52,"y":-36},{"x":-1,"y":-48},{"x":-33,"y":-8},{"x":-153,"y":33},{"x":-96,"y":63},{"x":-48,"y":-27},{"x":-33,"y":11},{"x":-42,"y":67},{"x":-94,"y":35},{"x":-48,"y":-9},{"x":-114,"y":85},{"x":-71,"y":-8},{"x":-35,"y":-55},{"x":-43,"y":-14},{"x":-119,"y":101},{"x":-93,"y":-13},{"x":-23,"y":61},{"x":-180,"y":25},{"x":-48,"y":77},{"x":-94,"y":57},{"x":-29,"y":47},{"x":-173,"y":100}],"type":"admin"},{"arc":[{"x":244908,"y":200725},{"x":-33,"y":27},{"x":-110,"y":-50},{"x":-75,"y":33},{"x":-28,"y":65},{"x":-19,"y":-12},{"x":-95,"y":221},{"x":42,"y":34},{"x":-303,"y":488},{"x":213,"y":153},{"x":-81,"y":139},{"x":34,"y":26},{"x":-30,"y":130},{"x":57,"y":478},{"x":-66,"y":141},{"x":46,"y":87},{"x":32,"y":-9},{"x":57,"y":262},{"x":58,"y":-25},{"x":73,"y":17}],"type":"admin"},{"arc":[{"x":244680,"y":202930},{"x":4,"y":69},{"x":108,"y":218},{"x":-32,"y":127},{"x":-70,"y":32},{"x":-22,"y":45},{"x":30,"y":92},{"x":121,"y":150},{"x":34,"y":247},{"x":66,"y":127}],"type":"admin"},{"arc":[{"x":244919,"y":204037},{"x":-30,"y":28},{"x":-193,"y":-14},{"x":-248,"y":-189},{"x":-98,"y":12},{"x":-84,"y":-200},{"x":-96,"y":-35},{"x":-66,"y":66},{"x":-74,"y":-6},{"x":-103,"y":99},{"x":-31,"y":103},{"x":-171,"y":59},{"x":-142,"y":176},{"x":-92,"y":-88},{"x":-58,"y":79},{"x":-138,"y":9},{"x":-185,"y":-154},{"x":-82,"y":87},{"x":-54,"y":17},{"x":-69,"y":-48},{"x":-18,"y":-59},{"x":-70,"y":-29},{"x":-21,"y":-114},{"x":-183,"y":-101},{"x":2,"y":-111},{"x":-39,"y":-73},{"x":-32,"y":-7},{"x":-8,"y":-137},{"x":-129,"y":-84},{"x":-85,"y":-92},{"x":14,"y":-107},{"x":-70,"y":-68},{"x":-34,"y":-86},{"x":37,"y":-315},{"x":55,"y":-89},{"x":-179,"y":-243},{"x":-55,"y":-17},{"x":6,"y":-121},{"x":-61,"y":-117},{"x":42,"y":-40},{"x":9,"y":-247},{"x":106,"y":-97},{"x":73,"y":20},{"x":37,"y":-32},{"x":59,"y":-1},{"x":9,"y":-70},{"x":50,"y":16},{"x":23,"y":-74},{"x":-42,"y":2},{"x":-12,"y":-23},{"x":96,"y":-90},{"x":-1,"y":-218},{"x":-25,"y":-19},{"x":-102,"y":26},{"x":-146,"y":-57},{"x":-59,"y":-44},{"x":-21,"y":-134},{"x":-56,"y":-15},{"x":-79,"y":41},{"x":-53,"y":1},{"x":2,"y":-177},{"x":-85,"y":-17},{"x":-38,"y":-56},{"x":67,"y":-137},{"x":-29,"y":-78},{"x":78,"y":-71},{"x":99,"y":-11},{"x":206,"y":35},{"x":212,"y":-61},{"x":188,"y":-149},{"x":66,"y":-104},{"x":133,"y":12},{"x":-26,"y":-172}],"type":"admin"},{"arc":[{"x":232913,"y":188747},{"x":-25,"y":-30},{"x":-17,"y":13},{"x":15,"y":-15},{"x":-24,"y":-4},{"x":29,"y":-9},{"x":-141,"y":-194},{"x":29,"y":-41},{"x":-22,"y":-67},{"x":-439,"y":-513},{"x":-61,"y":-38},{"x":-8,"y":-48},{"x":-532,"y":-461},{"x":-19,"y":10},{"x":-9,"y":-21},{"x":8,"y":38},{"x":-18,"y":-41},{"x":-3,"y":27},{"x":-34,"y":1}],"type":"coastline"},{"arc":[{"x":233576,"y":186487},{"x":-19,"y":70},{"x":52,"y":74},{"x":-19,"y":57},{"x":14,"y":30},{"x":63,"y":21},{"x":32,"y":209},{"x":-42,"y":84},{"x":85,"y":121},{"x":-3,"y":56},{"x":92,"y":60},{"x":51,"y":78},{"x":4,"y":158},{"x":67,"y":16},{"x":34,"y":-46},{"x":37,"y":14},{"x":59,"y":-23},{"x":56,"y":98},{"x":63,"y":38},{"x":-3,"y":72}],"type":"admin"},{"arc":[{"x":234199,"y":187674},{"x":4,"y":145},{"x":-164,"y":198},{"x":-1,"y":31},{"x":-52,"y":21},{"x":-186,"y":-2},{"x":-16,"y":45},{"x":38,"y":123},{"x":-21,"y":66},{"x":29,"y":40},{"x":-62,"y":173},{"x":-97,"y":47},{"x":-54,"y":-100},{"x":-42,"y":17},{"x":-100,"y":-15},{"x":-284,"y":105},{"x":-55,"y":77},{"x":-176,"y":33},{"x":6,"y":30},{"x":-28,"y":-10},{"x":-25,"y":49}],"type":"admin"},{"arc":[{"x":238466,"y":191147},{"x":82,"y":77},{"x":-9,"y":138},{"x":47,"y":98},{"x":5,"y":83},{"x":-52,"y":126},{"x":16,"y":58},{"x":234,"y":221},{"x":22,"y":168},{"x":-27,"y":136},{"x":136,"y":211},{"x":17,"y":104},{"x":61,"y":27},{"x":25,"y":-11},{"x":158,"y":223},{"x":382,"y":162},{"x":83,"y":-17}],"type":"area"},{"arc":[{"x":239646,"y":192951},{"x":40,"y":136},{"x":-85,"y":164},{"x":-81,"y":-42},{"x":-54,"y":119},{"x":-122,"y":34},{"x":-46,"y":-17},{"x":-87,"y":34},{"x":-20,"y":84},{"x":-83,"y":74},{"x":-130,"y":-30},{"x":-74,"y":20}],"type":"admin"},{"arc":[{"x":239955,"y":192785},{"x":-153,"y":66},{"x":-62,"y":91},{"x":-94,"y":9}],"type":"admin"},{"arc":[{"x":240153,"y":192671},{"x":-40,"y":-4},{"x":-13,"y":75},{"x":-51,"y":55},{"x":-94,"y":-12}],"type":"admin"},{"arc":[{"x":242734,"y":189784},{"x":-66,"y":-20},{"x":-211,"y":-156},{"x":-122,"y":-167},{"x":123,"y":165},{"x":276,"y":178}],"type":"coastline"},{"arc":[{"x":248500,"y":191864},{"x":-22,"y":80},{"x":-73,"y":95},{"x":-100,"y":24},{"x":-32,"y":75},{"x":-240,"y":99},{"x":-177,"y":281},{"x":-61,"y":61},{"x":-104,"y":13},{"x":-8,"y":76},{"x":-120,"y":150},{"x":-194,"y":55},{"x":-72,"y":102},{"x":-70,"y":-33}],"type":"admin"},{"arc":[{"x":247227,"y":192942},{"x":-45,"y":-63},{"x":-58,"y":41},{"x":-100,"y":-67},{"x":-54,"y":-154},{"x":16,"y":-68},{"x":-27,"y":-27},{"x":-2,"y":-68},{"x":89,"y":-88},{"x":-13,"y":-50},{"x":42,"y":-77},{"x":22,"y":-295},{"x":-64,"y":-68},{"x":-275,"y":204},{"x":-130,"y":66},{"x":-63,"y":-46},{"x":-62,"y":14},{"x":-69,"y":-18},{"x":-72,"y":100},{"x":-88,"y":7},{"x":-77,"y":210},{"x":-43,"y":29},{"x":-40,"y":-16},{"x":-59,"y":56},{"x":-81,"y":-40},{"x":-159,"y":26},{"x":-90,"y":-32},{"x":-105,"y":96},{"x":-263,"y":-67},{"x":-49,"y":33},{"x":-51,"y":-34},{"x":-18,"y":26},{"x":-74,"y":7},{"x":-176,"y":-130},{"x":-208,"y":-71},{"x":-103,"y":-22},{"x":-44,"y":29},{"x":-137,"y":-59},{"x":-42,"y":21},{"x":-345,"y":-23},{"x":-190,"y":-54},{"x":-57,"y":-42},{"x":-72,"y":-7},{"x":-50,"y":-36},{"x":-8,"y":-64},{"x":-71,"y":-41},{"x":-33,"y":-105},{"x":-58,"y":3},{"x":-70,"y":-64},{"x":-46,"y":-1},{"x":-156,"y":-85},{"x":-6,"y":16},{"x":-40,"y":-55},{"x":-138,"y":-67},{"x":52,"y":-33},{"x":-173,"y":-128},{"x":-72,"y":-106},{"x":17,"y":-135},{"x":73,"y":-40},{"x":-133,"y":-122},{"x":-46,"y":-93},{"x":-39,"y":37},{"x":2,"y":34},{"x":-63,"y":7},{"x":-4,"y":-36},{"x":-363,"y":53},{"x":43,"y":-46},{"x":-59,"y":-64},{"x":1,"y":-55},{"x":-114,"y":-12}],"type":"admin"},{"arc":[{"x":242181,"y":189809},{"x":6,"y":23},{"x":101,"y":-22},{"x":-2,"y":20},{"x":77,"y":-41},{"x":28,"y":17},{"x":87,"y":-22},{"x":50,"y":62},{"x":-13,"y":13},{"x":-48,"y":-28},{"x":-16,"y":16},{"x":79,"y":128},{"x":34,"y":-44},{"x":-26,"y":-33},{"x":17,"y":-17},{"x":51,"y":62},{"x":17,"y":-45},{"x":-8,"y":36},{"x":-57,"y":59},{"x":72,"y":-50},{"x":10,"y":-42},{"x":-9,"y":42},{"x":38,"y":47},{"x":-22,"y":-25},{"x":-16,"y":88},{"x":136,"y":153},{"x":458,"y":388},{"x":78,"y":45},{"x":49,"y":-41},{"x":-46,"y":40},{"x":175,"y":163},{"x":512,"y":369},{"x":168,"y":-25},{"x":210,"y":62},{"x":-23,"y":-30},{"x":43,"y":44},{"x":44,"y":-30},{"x":101,"y":-8},{"x":238,"y":73},{"x":100,"y":-12},{"x":7,"y":-23},{"x":-6,"y":22},{"x":29,"y":-3},{"x":-26,"y":-28},{"x":65,"y":27},{"x":230,"y":-27},{"x":457,"y":-240},{"x":61,"y":-60},{"x":91,"y":-18},{"x":36,"y":-49},{"x":56,"y":1},{"x":-7,"y":-32},{"x":65,"y":-17},{"x":127,"y":-134},{"x":52,"y":-31},{"x":80,"y":5},{"x":203,"y":-147},{"x":53,"y":23},{"x":80,"y":-8},{"x":33,"y":29},{"x":98,"y":-13},{"x":13,"y":28},{"x":208,"y":95},{"x":18,"y":36},{"x":323,"y":93},{"x":15,"y":-21},{"x":87,"y":27},{"x":156,"y":-47},{"x":-24,"y":16},{"x":35,"y":1},{"x":14,"y":-17},{"x":-6,"y":-9},{"x":-5,"y":11},{"x":-30,"y":-14},{"x":30,"y":7},{"x":8,"y":-8},{"x":10,"y":14},{"x":8,"y":-4},{"x":145,"y":-166},{"x":167,"y":-40},{"x":150,"y":-102},{"x":86,"y":13},{"x":-24,"y":-19},{"x":245,"y":-11},{"x":223,"y":-116},{"x":106,"y":7},{"x":139,"y":-53},{"x":25,"y":-31},{"x":76,"y":2},{"x":30,"y":-25},{"x":98,"y":18},{"x":30,"y":-16},{"x":119,"y":96},{"x":39,"y":-6}],"type":"coastline"},{"arc":[{"x":249172,"y":190280},{"x":-125,"y":351},{"x":126,"y":223},{"x":1,"y":128},{"x":-141,"y":88},{"x":-95,"y":-22},{"x":-99,"y":58},{"x":-9,"y":155},{"x":-42,"y":71},{"x":-42,"y":-3},{"x":-38,"y":150},{"x":15,"y":133},{"x":-46,"y":48},{"x":-63,"y":16},{"x":-69,"y":78},{"x":-45,"y":110}],"type":"admin"},{"arc":[{"x":224142,"y":182724},{"x":-33,"y":-10},{"x":-3,"y":17},{"x":1,"y":-18},{"x":35,"y":11}],"type":"coastline"},{"arc":[{"x":226699,"y":182495},{"x":-33,"y":51},{"x":50,"y":71},{"x":-28,"y":52},{"x":-92,"y":11},{"x":15,"y":80},{"x":-22,"y":20},{"x":-111,"y":48},{"x":-160,"y":-29},{"x":-68,"y":36},{"x":-48,"y":198},{"x":-100,"y":126},{"x":-30,"y":187},{"x":-120,"y":30},{"x":-20,"y":-51},{"x":-43,"y":9},{"x":6,"y":34},{"x":-54,"y":11},{"x":-12,"y":-49},{"x":0,"y":85},{"x":-53,"y":23},{"x":-38,"y":62},{"x":17,"y":-170},{"x":-134,"y":37},{"x":-4,"y":-22},{"x":-32,"y":9},{"x":-28,"y":31},{"x":24,"y":106},{"x":-46,"y":-7},{"x":-31,"y":34},{"x":45,"y":93},{"x":-32,"y":-39},{"x":-20,"y":14},{"x":-133,"y":-85},{"x":-109,"y":47},{"x":19,"y":71},{"x":66,"y":14},{"x":19,"y":81},{"x":-119,"y":-24}],"type":"admin"},{"arc":[{"x":224763,"y":183789},{"x":47,"y":-56},{"x":-21,"y":-22},{"x":28,"y":23},{"x":67,"y":-85},{"x":56,"y":-304},{"x":-64,"y":-202},{"x":-17,"y":32},{"x":26,"y":-63},{"x":-75,"y":-141},{"x":-90,"y":-81},{"x":-100,"y":-44},{"x":-123,"y":23},{"x":-125,"y":-73},{"x":-116,"y":-16},{"x":-81,"y":-82},{"x":-30,"y":24},{"x":-44,"y":-15},{"x":-2,"y":15},{"x":-15,"y":-5},{"x":21,"y":25},{"x":-50,"y":-58},{"x":-132,"y":-14},{"x":-26,"y":-68},{"x":16,"y":-59},{"x":-48,"y":-18},{"x":-11,"y":-71},{"x":-67,"y":-28},{"x":-43,"y":-167},{"x":-65,"y":-61}],"type":"coastline"},{"arc":[{"x":223679,"y":182198},{"x":156,"y":-101},{"x":108,"y":46},{"x":44,"y":-26},{"x":16,"y":-120},{"x":73,"y":-105},{"x":218,"y":-198},{"x":14,"y":-115},{"x":46,"y":-14},{"x":108,"y":-252},{"x":56,"y":-57},{"x":-15,"y":-214},{"x":100,"y":-39},{"x":5,"y":-51},{"x":96,"y":0},{"x":52,"y":-49}],"type":"admin"},{"arc":[{"x":224756,"y":180903},{"x":90,"y":43},{"x":65,"y":-18},{"x":47,"y":-53},{"x":45,"y":14},{"x":44,"y":-17},{"x":51,"y":125},{"x":26,"y":-4},{"x":34,"y":58},{"x":44,"y":16},{"x":-22,"y":106},{"x":40,"y":39},{"x":81,"y":7},{"x":83,"y":-107},{"x":-7,"y":-36},{"x":55,"y":-1},{"x":31,"y":142},{"x":107,"y":8},{"x":46,"y":37},{"x":36,"y":-10},{"x":50,"y":44},{"x":64,"y":-23},{"x":24,"y":44},{"x":141,"y":31},{"x":42,"y":-73},{"x":56,"y":-24},{"x":31,"y":-57},{"x":50,"y":-7},{"x":23,"y":-50},{"x":78,"y":-35},{"x":91,"y":45},{"x":28,"y":-8},{"x":50,"y":-106},{"x":109,"y":145},{"x":88,"y":34},{"x":18,"y":107},{"x":57,"y":-3},{"x":23,"y":-29},{"x":74,"y":17},{"x":132,"y":-51},{"x":44,"y":16},{"x":33,"y":-18},{"x":60,"y":4},{"x":86,"y":66}],"type":"admin"},{"arc":[{"x":227104,"y":181321},{"x":-74,"y":140},{"x":-18,"y":91},{"x":29,"y":73},{"x":-43,"y":101},{"x":45,"y":60},{"x":136,"y":6},{"x":6,"y":59},{"x":-51,"y":37},{"x":-51,"y":117},{"x":45,"y":100},{"x":-57,"y":-34},{"x":-81,"y":28},{"x":-68,"y":-34},{"x":-30,"y":19},{"x":34,"y":206},{"x":-139,"y":57},{"x":1,"y":51},{"x":-98,"y":53},{"x":9,"y":44}],"type":"admin"},{"arc":[{"x":245804,"y":194316},{"x":-148,"y":-57}],"type":"admin"},{"arc":[{"x":245656,"y":194259},{"x":-74,"y":-98},{"x":33,"y":-39},{"x":3,"y":-79},{"x":-29,"y":-40},{"x":-41,"y":-6},{"x":-20,"y":-51},{"x":-42,"y":-4},{"x":-67,"y":-128},{"x":-35,"y":5},{"x":-29,"y":-36},{"x":-21,"y":-132},{"x":-148,"y":-72},{"x":-17,"y":-51},{"x":-88,"y":5},{"x":-19,"y":-91},{"x":-82,"y":-19},{"x":-41,"y":-79},{"x":-37,"y":-8},{"x":-25,"y":-60},{"x":-127,"y":-133},{"x":-43,"y":-174},{"x":-308,"y":-19},{"x":-99,"y":-150},{"x":-64,"y":28},{"x":-14,"y":56},{"x":-61,"y":45},{"x":2,"y":34},{"x":-134,"y":79},{"x":-96,"y":12},{"x":-85,"y":-47},{"x":-111,"y":55},{"x":2,"y":22},{"x":-232,"y":27},{"x":-2,"y":161},{"x":-77,"y":-70}],"type":"admin"},{"arc":[{"x":243428,"y":193202},{"x":-83,"y":-164},{"x":-61,"y":32},{"x":-70,"y":-21},{"x":-13,"y":-140},{"x":-129,"y":-99},{"x":-32,"y":12},{"x":-41,"y":-70},{"x":-55,"y":-15},{"x":-88,"y":-88},{"x":-831,"y":101}],"type":"area"},{"arc":[{"x":247227,"y":192942},{"x":13,"y":48},{"x":-58,"y":63},{"x":14,"y":53},{"x":-44,"y":77},{"x":-47,"y":-35},{"x":-40,"y":12},{"x":-205,"y":121},{"x":-163,"y":-43},{"x":-115,"y":122},{"x":-100,"y":49},{"x":-30,"y":73},{"x":-110,"y":45},{"x":8,"y":116},{"x":-99,"y":73},{"x":-60,"y":-12},{"x":-43,"y":41},{"x":26,"y":120},{"x":-175,"y":336},{"x":-69,"y":18},{"x":-126,"y":97}],"type":"admin"},{"arc":[{"x":243428,"y":193202},{"x":32,"y":355}],"type":"admin"},{"arc":[{"x":219160,"y":174423},{"x":-35,"y":75},{"x":21,"y":54},{"x":-35,"y":8},{"x":32,"y":-9},{"x":-87,"y":-16},{"x":-46,"y":-63},{"x":17,"y":-53},{"x":-39,"y":-45},{"x":70,"y":10},{"x":-6,"y":-54},{"x":23,"y":-9},{"x":85,"y":102}],"type":"coastline"},{"arc":[{"x":221177,"y":169637},{"x":-28,"y":356},{"x":-176,"y":92},{"x":-97,"y":-125},{"x":-11,"y":-149},{"x":-67,"y":-107},{"x":1,"y":-76},{"x":150,"y":-13},{"x":123,"y":-45},{"x":64,"y":20},{"x":41,"y":47}],"type":"coastline"},{"arc":[{"x":221840,"y":178153},{"x":-88,"y":26},{"x":-112,"y":91},{"x":-111,"y":-21},{"x":-36,"y":27},{"x":-53,"y":-45},{"x":-29,"y":65},{"x":-52,"y":36},{"x":-173,"y":-76},{"x":-8,"y":-60},{"x":-41,"y":-12},{"x":-110,"y":28},{"x":-56,"y":-23},{"x":-52,"y":53},{"x":-132,"y":50},{"x":-74,"y":60},{"x":-96,"y":0},{"x":-84,"y":-36},{"x":-109,"y":181},{"x":-77,"y":26},{"x":-153,"y":-43},{"x":-25,"y":-40},{"x":-75,"y":60},{"x":-74,"y":-44},{"x":-39,"y":134},{"x":-41,"y":6},{"x":-37,"y":-34},{"x":-129,"y":45},{"x":-63,"y":-69},{"x":-58,"y":32}],"type":"area"},{"arc":[{"x":219653,"y":178570},{"x":-85,"y":-58},{"x":49,"y":-160},{"x":161,"y":-142},{"x":-6,"y":-9},{"x":-43,"y":22},{"x":46,"y":-25},{"x":10,"y":8},{"x":6,"y":-7},{"x":113,"y":-140},{"x":50,"y":-112},{"x":-18,"y":-58},{"x":-11,"y":30},{"x":14,"y":-70},{"x":44,"y":-67},{"x":-75,"y":-374},{"x":-29,"y":6},{"x":-23,"y":-31},{"x":10,"y":-40},{"x":-29,"y":43},{"x":23,"y":45},{"x":-40,"y":-64},{"x":68,"y":-45},{"x":14,"y":-95},{"x":82,"y":-47},{"x":193,"y":-236},{"x":16,"y":-73},{"x":-35,"y":18},{"x":-6,"y":-36},{"x":74,"y":17},{"x":17,"y":-44},{"x":47,"y":-6},{"x":94,"y":-86},{"x":69,"y":25},{"x":39,"y":-21},{"x":25,"y":13},{"x":78,"y":-53},{"x":16,"y":15},{"x":23,"y":-35},{"x":-22,"y":4},{"x":14,"y":-10},{"x":38,"y":10},{"x":-2,"y":-29},{"x":34,"y":-21},{"x":-39,"y":17},{"x":32,"y":-25},{"x":63,"y":-13},{"x":4,"y":-22},{"x":27,"y":3},{"x":-31,"y":18},{"x":99,"y":17},{"x":25,"y":-49},{"x":91,"y":7},{"x":22,"y":-44},{"x":115,"y":-14},{"x":67,"y":-71},{"x":79,"y":18},{"x":97,"y":-36},{"x":52,"y":-82},{"x":30,"y":-17},{"x":-30,"y":31},{"x":19,"y":-19},{"x":31,"y":12},{"x":21,"y":-37},{"x":30,"y":0},{"x":-48,"y":-4},{"x":54,"y":-16},{"x":17,"y":16},{"x":110,"y":-29},{"x":55,"y":22},{"x":68,"y":-32},{"x":75,"y":12},{"x":99,"y":-28},{"x":59,"y":26},{"x":116,"y":-26},{"x":73,"y":23},{"x":47,"y":-14},{"x":-47,"y":-6},{"x":34,"y":-3},{"x":295,"y":118}],"type":"coastline"},{"arc":[{"x":222507,"y":176385},{"x":24,"y":54},{"x":-40,"y":141},{"x":37,"y":141},{"x":-50,"y":20},{"x":12,"y":49},{"x":-224,"y":151},{"x":-61,"y":123},{"x":-57,"y":32},{"x":-115,"y":5},{"x":-36,"y":56},{"x":6,"y":260},{"x":25,"y":65},{"x":-98,"y":124},{"x":-112,"y":49},{"x":94,"y":144},{"x":-16,"y":86},{"x":30,"y":122},{"x":-86,"y":146}],"type":"area"},{"arc":[{"x":220539,"y":179157},{"x":-19,"y":-11},{"x":41,"y":21},{"x":-22,"y":-10}],"type":"coastline"},{"arc":[{"x":222432,"y":178665},{"x":-46,"y":-13},{"x":-37,"y":50},{"x":-60,"y":-67},{"x":-125,"y":9},{"x":-133,"y":112},{"x":1,"y":92},{"x":-105,"y":105},{"x":-35,"y":3},{"x":-57,"y":92},{"x":-42,"y":131},{"x":7,"y":70},{"x":104,"y":128},{"x":17,"y":71},{"x":95,"y":16},{"x":35,"y":44},{"x":-48,"y":120},{"x":-56,"y":-20},{"x":-96,"y":27},{"x":-337,"y":180},{"x":-117,"y":-4},{"x":-168,"y":-80},{"x":-29,"y":209},{"x":42,"y":110},{"x":-27,"y":120},{"x":11,"y":29},{"x":141,"y":13},{"x":59,"y":222},{"x":-15,"y":36},{"x":-51,"y":3},{"x":-148,"y":88},{"x":-40,"y":120},{"x":-101,"y":-4}],"type":"area"},{"arc":[{"x":221071,"y":180677},{"x":35,"y":-34},{"x":-19,"y":-53},{"x":19,"y":-19},{"x":-56,"y":-132},{"x":4,"y":-241},{"x":-50,"y":-68},{"x":6,"y":-31},{"x":-76,"y":-37},{"x":15,"y":-127},{"x":-173,"y":-282},{"x":-47,"y":-156},{"x":16,"y":13},{"x":6,"y":-22},{"x":-29,"y":5},{"x":13,"y":-74},{"x":-90,"y":-244},{"x":-25,"y":-15},{"x":-1,"y":20},{"x":-1,"y":-54},{"x":-38,"y":13},{"x":28,"y":-18},{"x":-84,"y":-15},{"x":45,"y":28},{"x":12,"y":23},{"x":-25,"y":-29},{"x":-15,"y":20},{"x":-13,"y":-23},{"x":-3,"y":19},{"x":-15,"y":-36},{"x":-84,"y":-9},{"x":-46,"y":-103},{"x":-42,"y":10},{"x":-15,"y":-29},{"x":-56,"y":-2},{"x":-43,"y":-59},{"x":-17,"y":27},{"x":-40,"y":-9},{"x":38,"y":-6},{"x":-33,"y":-30},{"x":-23,"y":14},{"x":24,"y":3},{"x":-22,"y":5},{"x":15,"y":27},{"x":-196,"y":-189},{"x":-127,"y":-26},{"x":-34,"y":-40},{"x":-87,"y":-6},{"x":-69,"y":-116}],"type":"coastline"},{"arc":[{"x":221840,"y":178153},{"x":37,"y":52},{"x":86,"y":47},{"x":37,"y":102},{"x":122,"y":69},{"x":3,"y":37},{"x":106,"y":18},{"x":44,"y":-27},{"x":127,"y":24},{"x":63,"y":57},{"x":-33,"y":133}],"type":"area"},{"arc":[{"x":222870,"y":180945},{"x":-319,"y":-30},{"x":42,"y":26},{"x":-49,"y":-26},{"x":-365,"y":-30},{"x":-235,"y":5},{"x":10,"y":14},{"x":-126,"y":-17},{"x":-177,"y":22},{"x":7,"y":20},{"x":-7,"y":-19},{"x":-37,"y":24},{"x":46,"y":0},{"x":-125,"y":64},{"x":-12,"y":-31},{"x":-55,"y":4},{"x":-127,"y":-80},{"x":-38,"y":2},{"x":-31,"y":-88},{"x":-94,"y":-43},{"x":-54,"y":-77},{"x":-53,"y":-8}],"type":"coastline"},{"arc":[{"x":222432,"y":178665},{"x":123,"y":123},{"x":-9,"y":96},{"x":75,"y":111},{"x":173,"y":125},{"x":52,"y":187},{"x":36,"y":58},{"x":37,"y":4}],"type":"area"},{"arc":[{"x":222919,"y":179369},{"x":4,"y":191},{"x":-23,"y":73},{"x":-99,"y":99},{"x":-19,"y":141},{"x":76,"y":84},{"x":16,"y":83},{"x":38,"y":36},{"x":86,"y":382},{"x":-139,"y":208},{"x":-28,"y":-34},{"x":24,"y":-30},{"x":-34,"y":21},{"x":25,"y":67},{"x":-10,"y":73},{"x":-37,"y":-45},{"x":32,"y":58},{"x":-26,"y":65},{"x":65,"y":104}],"type":"area"},{"arc":[{"x":223679,"y":182198},{"x":-101,"y":-158},{"x":-56,"y":-46},{"x":-21,"y":18},{"x":-23,"y":-8},{"x":36,"y":-3},{"x":-22,"y":-26},{"x":-6,"y":26},{"x":3,"y":-43},{"x":-93,"y":-60},{"x":15,"y":-92},{"x":-27,"y":-161},{"x":-22,"y":-5},{"x":35,"y":-45},{"x":-38,"y":-146},{"x":39,"y":-47},{"x":-37,"y":-54},{"x":-4,"y":-118},{"x":-36,"y":-70},{"x":-173,"y":-141},{"x":-278,"y":-74}],"type":"coastline"},{"arc":[{"x":222919,"y":179369},{"x":102,"y":-2},{"x":39,"y":79},{"x":72,"y":38},{"x":12,"y":32},{"x":63,"y":5},{"x":39,"y":63},{"x":58,"y":-43},{"x":74,"y":20},{"x":14,"y":-16},{"x":51,"y":35},{"x":28,"y":-20},{"x":82,"y":49},{"x":45,"y":-10},{"x":12,"y":97},{"x":-38,"y":64},{"x":73,"y":50},{"x":47,"y":181},{"x":115,"y":12},{"x":104,"y":75},{"x":66,"y":-25},{"x":59,"y":-72},{"x":70,"y":88},{"x":132,"y":24},{"x":56,"y":-22},{"x":29,"y":15},{"x":21,"y":-23},{"x":39,"y":43},{"x":89,"y":-3},{"x":18,"y":51}],"type":"area"},{"arc":[{"x":224490,"y":180154},{"x":155,"y":216},{"x":81,"y":-7},{"x":43,"y":109},{"x":-46,"y":102},{"x":52,"y":28},{"x":6,"y":60},{"x":48,"y":28},{"x":-7,"y":126},{"x":-66,"y":87}],"type":"area"},{"arc":[{"x":226699,"y":182495},{"x":28,"y":-6},{"x":29,"y":-63},{"x":113,"y":-26},{"x":94,"y":115},{"x":58,"y":20},{"x":67,"y":-19},{"x":50,"y":34},{"x":99,"y":186},{"x":21,"y":83},{"x":-63,"y":40},{"x":3,"y":78},{"x":-51,"y":-17},{"x":-34,"y":70},{"x":74,"y":23},{"x":-2,"y":114},{"x":42,"y":58},{"x":3,"y":69},{"x":-57,"y":153},{"x":42,"y":3},{"x":-25,"y":42},{"x":19,"y":92},{"x":73,"y":102},{"x":-27,"y":35},{"x":728,"y":-226}],"type":"area"},{"arc":[{"x":227983,"y":183455},{"x":-170,"y":281},{"x":6,"y":60},{"x":-114,"y":117},{"x":17,"y":77},{"x":-222,"y":45},{"x":51,"y":71},{"x":-21,"y":33},{"x":-73,"y":-92},{"x":-28,"y":54},{"x":-48,"y":19},{"x":-94,"y":-85},{"x":-34,"y":64},{"x":1,"y":108},{"x":-39,"y":55},{"x":0,"y":121},{"x":-140,"y":104},{"x":-29,"y":56},{"x":-55,"y":24},{"x":-91,"y":-7},{"x":-54,"y":35},{"x":-57,"y":-21},{"x":-126,"y":12},{"x":-85,"y":-36},{"x":-115,"y":10},{"x":-13,"y":20},{"x":-101,"y":-42},{"x":-30,"y":53}],"type":"area"},{"arc":[{"x":227983,"y":183455},{"x":97,"y":115},{"x":32,"y":357},{"x":51,"y":130},{"x":197,"y":166},{"x":58,"y":161}],"type":"area"},{"arc":[{"x":228418,"y":184384},{"x":-168,"y":88},{"x":-102,"y":154},{"x":11,"y":123},{"x":-259,"y":13},{"x":8,"y":39},{"x":-7,"y":-35},{"x":-1,"y":36},{"x":-10,"y":-27},{"x":-32,"y":34},{"x":55,"y":2},{"x":-55,"y":-1},{"x":-28,"y":35},{"x":-99,"y":23},{"x":-112,"y":77},{"x":22,"y":22},{"x":-21,"y":33},{"x":1,"y":-46},{"x":-59,"y":63},{"x":61,"y":-10},{"x":-53,"y":12},{"x":-101,"y":151},{"x":-105,"y":95},{"x":-59,"y":127}],"type":"coastline"},{"arc":[{"x":227104,"y":181321},{"x":236,"y":-179},{"x":140,"y":-251}],"type":"area"},{"arc":[{"x":229423,"y":181177},{"x":-138,"y":65},{"x":-101,"y":130},{"x":6,"y":55},{"x":-141,"y":177},{"x":-140,"y":90},{"x":-10,"y":39},{"x":2,"y":-28},{"x":-18,"y":11},{"x":-4,"y":37},{"x":24,"y":-9},{"x":-31,"y":13},{"x":-13,"y":-13},{"x":-44,"y":36},{"x":-86,"y":145},{"x":-6,"y":62},{"x":-63,"y":75},{"x":21,"y":25},{"x":-29,"y":12},{"x":38,"y":-13},{"x":-24,"y":27},{"x":-22,"y":-19},{"x":-23,"y":34},{"x":-65,"y":314},{"x":33,"y":50},{"x":-33,"y":8},{"x":12,"y":28},{"x":25,"y":-8},{"x":-25,"y":21},{"x":21,"y":-7},{"x":21,"y":39},{"x":-37,"y":-26},{"x":24,"y":102},{"x":21,"y":-6},{"x":-17,"y":-65},{"x":45,"y":99},{"x":-40,"y":-15},{"x":7,"y":24},{"x":23,"y":-9},{"x":-26,"y":14},{"x":31,"y":127},{"x":104,"y":262},{"x":52,"y":39},{"x":-41,"y":-26},{"x":60,"y":157},{"x":-32,"y":203},{"x":29,"y":48},{"x":0,"y":-19},{"x":9,"y":92},{"x":-8,"y":-67},{"x":-4,"y":67},{"x":-27,"y":-77},{"x":-3,"y":74},{"x":147,"y":171},{"x":3,"y":73},{"x":-172,"y":216},{"x":15,"y":27},{"x":-23,"y":11},{"x":33,"y":-12},{"x":-75,"y":81},{"x":-56,"y":182},{"x":-234,"y":64}],"type":"coastline"},{"arc":[{"x":232746,"y":179878},{"x":-11,"y":11},{"x":10,"y":-11},{"x":-18,"y":-12},{"x":-2,"y":19},{"x":12,"y":15},{"x":-13,"y":-15},{"x":5,"y":-22},{"x":17,"y":15}],"type":"coastline"},{"arc":[{"x":234817,"y":182085},{"x":-92,"y":5},{"x":-38,"y":-65},{"x":-68,"y":-20}],"type":"admin"},{"arc":[{"x":234619,"y":182005},{"x":25,"y":-207},{"x":-31,"y":-59},{"x":-40,"y":-15},{"x":35,"y":-128},{"x":-35,"y":-48},{"x":66,"y":-178},{"x":-46,"y":-24},{"x":45,"y":21},{"x":-211,"y":-287},{"x":-332,"y":-343},{"x":-181,"y":-163},{"x":-23,"y":-13},{"x":-22,"y":33},{"x":15,"y":-29},{"x":-22,"y":0},{"x":-6,"y":-24},{"x":14,"y":69},{"x":-24,"y":-55},{"x":11,"y":-23},{"x":-265,"y":-209},{"x":-162,"y":-105},{"x":-22,"y":38},{"x":15,"y":-26},{"x":-10,"y":-6},{"x":-6,"y":11},{"x":-4,"y":-18},{"x":-9,"y":14},{"x":1,"y":-16},{"x":-8,"y":15},{"x":22,"y":36},{"x":-23,"y":-36},{"x":15,"y":-29},{"x":-223,"y":-136},{"x":-691,"y":-352},{"x":-557,"y":-219}],"type":"coastline"},{"arc":[{"x":232183,"y":178836},{"x":64,"y":-10},{"x":43,"y":74},{"x":58,"y":25},{"x":18,"y":-81},{"x":42,"y":-33},{"x":41,"y":16},{"x":45,"y":-45},{"x":57,"y":1},{"x":85,"y":57},{"x":43,"y":-55},{"x":148,"y":-84},{"x":34,"y":-52},{"x":60,"y":21},{"x":19,"y":-19},{"x":39,"y":33},{"x":41,"y":-29},{"x":44,"y":29},{"x":79,"y":-72},{"x":22,"y":36},{"x":55,"y":-15},{"x":201,"y":210},{"x":284,"y":86},{"x":18,"y":52},{"x":74,"y":26},{"x":83,"y":87},{"x":22,"y":-12},{"x":34,"y":47},{"x":192,"y":75},{"x":54,"y":-42},{"x":-13,"y":-76},{"x":50,"y":-70},{"x":126,"y":13},{"x":39,"y":-41},{"x":-38,"y":-136},{"x":58,"y":0},{"x":35,"y":-42},{"x":21,"y":-84},{"x":-36,"y":-80},{"x":115,"y":-114},{"x":19,"y":-85},{"x":51,"y":-39},{"x":33,"y":12},{"x":52,"y":-23},{"x":39,"y":33},{"x":40,"y":-31},{"x":45,"y":3}],"type":"area"},{"arc":[{"x":234818,"y":178402},{"x":19,"y":40},{"x":43,"y":13},{"x":20,"y":81},{"x":9,"y":120},{"x":-29,"y":24}],"type":"area"},{"arc":[{"x":234880,"y":178680},{"x":-91,"y":98},{"x":-41,"y":128},{"x":83,"y":113},{"x":-6,"y":198},{"x":36,"y":30},{"x":-32,"y":77},{"x":83,"y":45},{"x":2,"y":31},{"x":105,"y":18},{"x":55,"y":47},{"x":-25,"y":37},{"x":34,"y":106},{"x":34,"y":59},{"x":63,"y":-19},{"x":3,"y":40},{"x":-67,"y":23},{"x":12,"y":26},{"x":-78,"y":132},{"x":3,"y":141},{"x":-83,"y":147},{"x":-170,"y":132},{"x":-41,"y":88},{"x":-97,"y":61},{"x":29,"y":84},{"x":-69,"y":144},{"x":46,"y":71},{"x":62,"y":36},{"x":37,"y":81},{"x":95,"y":-3},{"x":-2,"y":61},{"x":51,"y":-12},{"x":-22,"y":163},{"x":-46,"y":70},{"x":29,"y":118},{"x":-58,"y":69},{"x":-5,"y":55},{"x":-85,"y":33},{"x":-66,"y":103},{"x":37,"y":433},{"x":61,"y":43},{"x":61,"y":98}],"type":"area"},{"arc":[{"x":225594,"y":177708},{"x":-24,"y":-9},{"x":42,"y":14},{"x":-18,"y":-5}],"type":"coastline"},{"arc":[{"x":226885,"y":179151},{"x":-67,"y":-25},{"x":-18,"y":-50},{"x":-69,"y":-13},{"x":-51,"y":-108},{"x":-40,"y":1},{"x":-17,"y":41},{"x":-85,"y":-94},{"x":-102,"y":-8},{"x":-19,"y":-137},{"x":-52,"y":-43},{"x":-25,"y":11},{"x":-81,"y":-43},{"x":10,"y":-93},{"x":-70,"y":-157},{"x":62,"y":-185},{"x":-39,"y":-230},{"x":-84,"y":43},{"x":-47,"y":-35},{"x":-76,"y":-8},{"x":17,"y":125},{"x":-127,"y":168},{"x":-30,"y":161},{"x":-54,"y":75},{"x":-47,"y":289},{"x":-37,"y":-14},{"x":-28,"y":21},{"x":-158,"y":-97},{"x":-6,"y":-88},{"x":-43,"y":-43},{"x":-125,"y":19}],"type":"area"},{"arc":[{"x":225377,"y":178634},{"x":-27,"y":-28},{"x":-64,"y":13},{"x":-49,"y":-24},{"x":-73,"y":111},{"x":-80,"y":59},{"x":-84,"y":-21},{"x":-91,"y":17},{"x":-102,"y":-109},{"x":-28,"y":-156},{"x":40,"y":-200},{"x":-30,"y":-63},{"x":33,"y":-149},{"x":39,"y":-51},{"x":-19,"y":-161},{"x":36,"y":-67},{"x":27,"y":4},{"x":71,"y":-86}],"type":"area"},{"arc":[{"x":224976,"y":177723},{"x":215,"y":29},{"x":80,"y":-32},{"x":9,"y":30},{"x":46,"y":9},{"x":83,"y":-15},{"x":89,"y":-88},{"x":-42,"y":-67},{"x":94,"y":40},{"x":15,"y":74},{"x":-42,"y":-58},{"x":-24,"y":49},{"x":12,"y":27},{"x":13,"y":-28},{"x":7,"y":64},{"x":17,"y":-42},{"x":21,"y":92},{"x":221,"y":28},{"x":46,"y":51},{"x":157,"y":-30},{"x":144,"y":54},{"x":449,"y":-87}],"type":"coastline"},{"arc":[{"x":226586,"y":177823},{"x":92,"y":84},{"x":34,"y":76},{"x":-24,"y":85},{"x":18,"y":181},{"x":-73,"y":130},{"x":142,"y":376},{"x":-26,"y":95},{"x":147,"y":208},{"x":-11,"y":93}],"type":"area"},{"arc":[{"x":222507,"y":176385},{"x":75,"y":-15},{"x":74,"y":70},{"x":97,"y":-23},{"x":32,"y":63},{"x":69,"y":-17},{"x":42,"y":33},{"x":125,"y":-7},{"x":145,"y":54},{"x":123,"y":-2},{"x":114,"y":110},{"x":72,"y":24},{"x":2,"y":30},{"x":99,"y":29},{"x":127,"y":134},{"x":150,"y":94},{"x":56,"y":-2},{"x":-20,"y":9},{"x":30,"y":30},{"x":-8,"y":-31},{"x":20,"y":56},{"x":219,"y":124},{"x":299,"y":66},{"x":189,"y":-4},{"x":58,"y":-41},{"x":49,"y":22},{"x":-23,"y":7},{"x":43,"y":52},{"x":10,"y":71},{"x":-28,"y":58},{"x":35,"y":57},{"x":-23,"y":28},{"x":18,"y":34},{"x":-18,"y":-32},{"x":-19,"y":11},{"x":22,"y":10},{"x":-42,"y":11},{"x":-2,"y":79},{"x":103,"y":88},{"x":155,"y":58}],"type":"coastline"},{"arc":[{"x":225377,"y":178634},{"x":-32,"y":157},{"x":-131,"y":195},{"x":42,"y":43},{"x":-87,"y":106},{"x":5,"y":83},{"x":-145,"y":138},{"x":0,"y":97},{"x":-60,"y":36},{"x":-39,"y":-6},{"x":-14,"y":63},{"x":-27,"y":28},{"x":-43,"y":-2},{"x":-30,"y":94},{"x":-35,"y":42},{"x":-39,"y":4},{"x":-10,"y":51},{"x":-65,"y":46},{"x":29,"y":85},{"x":-46,"y":151},{"x":-160,"y":109}],"type":"area"},{"arc":[{"x":226885,"y":179151},{"x":65,"y":54},{"x":76,"y":-26},{"x":44,"y":79},{"x":398,"y":-93},{"x":68,"y":99},{"x":55,"y":-14},{"x":99,"y":44},{"x":38,"y":44},{"x":68,"y":9}],"type":"area"},{"arc":[{"x":226586,"y":177823},{"x":133,"y":-62},{"x":49,"y":5},{"x":41,"y":54},{"x":-8,"y":-45},{"x":27,"y":43},{"x":43,"y":7},{"x":61,"y":-58},{"x":253,"y":-56},{"x":74,"y":-65},{"x":23,"y":-137},{"x":73,"y":38},{"x":88,"y":-66},{"x":105,"y":-1},{"x":13,"y":-47},{"x":47,"y":12},{"x":37,"y":-40},{"x":3,"y":-97},{"x":38,"y":36},{"x":38,"y":0},{"x":11,"y":-27},{"x":35,"y":0},{"x":-16,"y":-26},{"x":15,"y":22},{"x":19,"y":-23},{"x":-42,"y":-2},{"x":124,"y":-58},{"x":6,"y":-34},{"x":70,"y":-14}],"type":"coastline"},{"arc":[{"x":229420,"y":170316},{"x":-21,"y":-9},{"x":21,"y":-17},{"x":0,"y":26}],"type":"coastline"},{"arc":[{"x":230342,"y":171900},{"x":-187,"y":9},{"x":-4,"y":26},{"x":-4,"y":-24},{"x":-90,"y":-2},{"x":-122,"y":-105},{"x":-61,"y":-14},{"x":-22,"y":8},{"x":26,"y":11},{"x":-35,"y":0},{"x":-116,"y":-82},{"x":-43,"y":-96},{"x":-122,"y":-108},{"x":-33,"y":-21},{"x":-24,"y":16},{"x":-19,"y":-30},{"x":17,"y":34},{"x":-36,"y":5},{"x":16,"y":-29},{"x":-65,"y":-39},{"x":-72,"y":-4},{"x":18,"y":11},{"x":-18,"y":-3},{"x":0,"y":9},{"x":79,"y":24},{"x":-80,"y":-23},{"x":-9,"y":-13},{"x":-133,"y":-6},{"x":-68,"y":63},{"x":-53,"y":-34},{"x":-51,"y":3},{"x":35,"y":17},{"x":-38,"y":-7},{"x":-32,"y":-30},{"x":-89,"y":21},{"x":-68,"y":-48},{"x":-141,"y":-29},{"x":-148,"y":-66},{"x":-126,"y":-10},{"x":-86,"y":-70},{"x":-100,"y":-21},{"x":-113,"y":-108},{"x":-38,"y":-66},{"x":1,"y":-125},{"x":-56,"y":-129},{"x":-43,"y":-27},{"x":-19,"y":23},{"x":-44,"y":-14},{"x":41,"y":8},{"x":-10,"y":-35},{"x":-70,"y":9},{"x":18,"y":5},{"x":47,"y":55},{"x":-51,"y":-57},{"x":-56,"y":-4},{"x":-4,"y":-27},{"x":158,"y":-53},{"x":93,"y":-180},{"x":2,"y":-54},{"x":53,"y":1},{"x":57,"y":37},{"x":126,"y":10},{"x":64,"y":-24},{"x":76,"y":23},{"x":71,"y":-15},{"x":101,"y":-67},{"x":181,"y":57},{"x":89,"y":2},{"x":190,"y":-94},{"x":29,"y":-42},{"x":32,"y":29},{"x":50,"y":-65},{"x":57,"y":-16},{"x":67,"y":66},{"x":23,"y":-17},{"x":-29,"y":-1},{"x":133,"y":-29},{"x":-1,"y":30},{"x":187,"y":104},{"x":-4,"y":24},{"x":25,"y":-8},{"x":0,"y":37},{"x":38,"y":-18},{"x":31,"y":29},{"x":43,"y":-7},{"x":45,"y":60},{"x":90,"y":45},{"x":8,"y":117},{"x":33,"y":16},{"x":-42,"y":151},{"x":21,"y":66},{"x":65,"y":62},{"x":6,"y":108},{"x":91,"y":293},{"x":-3,"y":86},{"x":50,"y":55},{"x":-16,"y":92},{"x":84,"y":110},{"x":-18,"y":-8},{"x":10,"y":36},{"x":176,"y":80},{"x":-41,"y":21}],"type":"coastline"},{"arc":[{"x":230633,"y":176603},{"x":-2,"y":-117},{"x":71,"y":-84},{"x":88,"y":-44},{"x":-5,"y":-29},{"x":70,"y":13},{"x":98,"y":-42},{"x":58,"y":7},{"x":54,"y":-42},{"x":48,"y":-4},{"x":127,"y":-123},{"x":94,"y":-4},{"x":118,"y":-78},{"x":71,"y":26},{"x":134,"y":-23},{"x":129,"y":-46},{"x":101,"y":-100},{"x":51,"y":52},{"x":47,"y":-9},{"x":154,"y":76},{"x":74,"y":-74},{"x":63,"y":-166},{"x":130,"y":-143},{"x":23,"y":67},{"x":-37,"y":88},{"x":39,"y":49},{"x":-52,"y":59},{"x":25,"y":21},{"x":48,"y":-48},{"x":74,"y":138},{"x":81,"y":39},{"x":2,"y":-52},{"x":66,"y":-22},{"x":59,"y":97},{"x":156,"y":48},{"x":21,"y":63},{"x":35,"y":-12},{"x":65,"y":22},{"x":16,"y":77},{"x":48,"y":-6},{"x":138,"y":77},{"x":81,"y":-7},{"x":120,"y":-65},{"x":86,"y":-126},{"x":129,"y":-19},{"x":68,"y":62},{"x":46,"y":100},{"x":75,"y":41},{"x":81,"y":195},{"x":70,"y":55},{"x":114,"y":160},{"x":136,"y":11}],"type":"area"},{"arc":[{"x":234219,"y":176761},{"x":57,"y":78},{"x":-84,"y":146},{"x":74,"y":254},{"x":-68,"y":223},{"x":-41,"y":18},{"x":-60,"y":87},{"x":-15,"y":97},{"x":98,"y":104},{"x":99,"y":9},{"x":54,"y":137},{"x":60,"y":-10},{"x":124,"y":31},{"x":5,"y":93},{"x":83,"y":43},{"x":85,"y":14},{"x":93,"y":-100},{"x":66,"y":-12},{"x":34,"y":34},{"x":43,"y":-12},{"x":50,"y":22},{"x":26,"y":218},{"x":-56,"y":46},{"x":-17,"y":90},{"x":-69,"y":-5},{"x":-42,"y":36}],"type":"area"},{"arc":[{"x":232893,"y":174752},{"x":-7,"y":-17},{"x":39,"y":63},{"x":-32,"y":-46}],"type":"coastline"},{"arc":[{"x":228900,"y":175641},{"x":61,"y":-41},{"x":-34,"y":0},{"x":35,"y":-13},{"x":36,"y":19},{"x":88,"y":-67},{"x":45,"y":6},{"x":62,"y":-57},{"x":90,"y":-19},{"x":6,"y":-49},{"x":30,"y":18},{"x":81,"y":-64},{"x":23,"y":19},{"x":14,"y":-26},{"x":66,"y":8},{"x":1,"y":-37},{"x":38,"y":-6},{"x":0,"y":-45},{"x":66,"y":-56},{"x":87,"y":-20},{"x":81,"y":21},{"x":67,"y":-36},{"x":116,"y":-157},{"x":-34,"y":-103},{"x":44,"y":-55},{"x":-4,"y":-129},{"x":11,"y":-28},{"x":3,"y":34},{"x":24,"y":-18},{"x":-21,"y":-3},{"x":25,"y":-65},{"x":-32,"y":34},{"x":47,"y":-52},{"x":-10,"y":-91},{"x":-34,"y":-28},{"x":66,"y":-4},{"x":25,"y":-37},{"x":-16,"y":29},{"x":32,"y":-13},{"x":-18,"y":-90},{"x":38,"y":-83},{"x":229,"y":-105},{"x":27,"y":-62},{"x":63,"y":-7},{"x":42,"y":-43},{"x":102,"y":46},{"x":33,"y":61},{"x":65,"y":10},{"x":84,"y":-21},{"x":16,"y":-26},{"x":-31,"y":12},{"x":65,"y":-44},{"x":25,"y":13},{"x":55,"y":-44},{"x":65,"y":-1},{"x":69,"y":-81},{"x":36,"y":11},{"x":13,"y":-21},{"x":21,"y":23},{"x":39,"y":-25},{"x":14,"y":39},{"x":81,"y":-4},{"x":23,"y":38},{"x":33,"y":-14},{"x":30,"y":33},{"x":51,"y":-32},{"x":80,"y":41},{"x":82,"y":7},{"x":142,"y":53},{"x":-15,"y":38},{"x":60,"y":66},{"x":-9,"y":46},{"x":17,"y":-23},{"x":39,"y":77},{"x":78,"y":18},{"x":95,"y":120},{"x":67,"y":26},{"x":21,"y":-24},{"x":44,"y":44},{"x":59,"y":-15},{"x":-13,"y":62},{"x":70,"y":60},{"x":137,"y":65},{"x":348,"y":106},{"x":77,"y":8},{"x":67,"y":-30},{"x":19,"y":34},{"x":79,"y":-39},{"x":-31,"y":36},{"x":48,"y":5},{"x":19,"y":-25},{"x":7,"y":23},{"x":14,"y":-31},{"x":-37,"y":0},{"x":-21,"y":-25},{"x":30,"y":25},{"x":23,"y":-17},{"x":13,"y":19},{"x":-5,"y":35},{"x":106,"y":53},{"x":83,"y":-11},{"x":127,"y":-69},{"x":26,"y":26},{"x":40,"y":-11},{"x":84,"y":26},{"x":75,"y":-66},{"x":50,"y":5},{"x":-13,"y":24},{"x":161,"y":-30},{"x":176,"y":42},{"x":156,"y":-91},{"x":84,"y":12},{"x":6,"y":-23},{"x":18,"y":-11},{"x":-18,"y":24},{"x":23,"y":-6},{"x":4,"y":-15},{"x":13,"y":15},{"x":131,"y":-36},{"x":62,"y":16},{"x":51,"y":-38},{"x":48,"y":13},{"x":23,"y":-54},{"x":152,"y":-8},{"x":71,"y":-30},{"x":-26,"y":-21},{"x":60,"y":23},{"x":-18,"y":8},{"x":11,"y":29},{"x":3,"y":-29},{"x":37,"y":9},{"x":96,"y":-41},{"x":82,"y":11}],"type":"coastline"},{"arc":[{"x":234943,"y":174624},{"x":16,"y":155},{"x":-68,"y":186},{"x":12,"y":161},{"x":83,"y":130},{"x":-30,"y":30},{"x":35,"y":241},{"x":-56,"y":82},{"x":16,"y":217},{"x":-19,"y":32},{"x":-58,"y":5},{"x":-67,"y":-81},{"x":-80,"y":-36},{"x":-90,"y":49},{"x":-21,"y":158},{"x":25,"y":94},{"x":-97,"y":140},{"x":-47,"y":207},{"x":49,"y":72},{"x":-9,"y":76},{"x":-63,"y":48},{"x":-49,"y":86},{"x":-172,"y":33},{"x":-34,"y":52}],"type":"area"},{"arc":[{"x":232865,"y":174782},{"x":-21,"y":21},{"x":35,"y":-34},{"x":-14,"y":13}],"type":"coastline"},{"arc":[{"x":236578,"y":178760},{"x":-72,"y":-85},{"x":-61,"y":-1},{"x":-177,"y":-204},{"x":-29,"y":62},{"x":-79,"y":38},{"x":-23,"y":38},{"x":-32,"y":-30},{"x":-91,"y":1},{"x":-118,"y":102},{"x":-84,"y":-59},{"x":-109,"y":16},{"x":-62,"y":-23},{"x":-149,"y":43},{"x":-48,"y":28},{"x":-46,"y":99},{"x":-28,"y":-18},{"x":-37,"y":12},{"x":-53,"y":75},{"x":-194,"y":-85},{"x":-59,"y":72},{"x":-62,"y":0},{"x":-85,"y":-161}],"type":"area"},{"arc":[{"x":234943,"y":174624},{"x":71,"y":32},{"x":55,"y":65},{"x":35,"y":101},{"x":70,"y":-10},{"x":7,"y":50},{"x":29,"y":20},{"x":22,"y":-15},{"x":1,"y":29},{"x":67,"y":55},{"x":112,"y":13},{"x":70,"y":80},{"x":125,"y":46},{"x":6,"y":67},{"x":177,"y":248},{"x":119,"y":379},{"x":-17,"y":221},{"x":39,"y":160},{"x":-40,"y":120},{"x":53,"y":55},{"x":-73,"y":188},{"x":61,"y":111},{"x":0,"y":58},{"x":-36,"y":6},{"x":-7,"y":56},{"x":92,"y":188},{"x":150,"y":180},{"x":77,"y":-8},{"x":77,"y":49},{"x":23,"y":-18},{"x":87,"y":60},{"x":-28,"y":31},{"x":39,"y":20},{"x":20,"y":74},{"x":32,"y":33},{"x":-8,"y":-35},{"x":45,"y":84},{"x":6,"y":128},{"x":21,"y":16},{"x":42,"y":-16},{"x":-16,"y":44},{"x":24,"y":52},{"x":52,"y":-15},{"x":9,"y":176},{"x":101,"y":142},{"x":119,"y":60},{"x":91,"y":-32},{"x":206,"y":110},{"x":38,"y":-9},{"x":69,"y":83},{"x":108,"y":47},{"x":26,"y":40}],"type":"coastline"},{"arc":[{"x":237391,"y":178243},{"x":-95,"y":79},{"x":15,"y":26},{"x":-31,"y":86},{"x":-47,"y":12},{"x":16,"y":62},{"x":-62,"y":67},{"x":-109,"y":49},{"x":-119,"y":-17},{"x":-32,"y":67},{"x":-116,"y":79},{"x":-36,"y":-33},{"x":-85,"y":-5},{"x":-112,"y":45}],"type":"area"},{"arc":[{"x":236837,"y":180210},{"x":39,"y":-116},{"x":-30,"y":-128},{"x":34,"y":-100},{"x":-41,"y":-144},{"x":101,"y":-221},{"x":-55,"y":-130},{"x":-76,"y":-28},{"x":28,"y":34},{"x":-30,"y":12},{"x":22,"y":45},{"x":-58,"y":27},{"x":-141,"y":-15},{"x":-41,"y":68},{"x":-86,"y":3},{"x":-25,"y":33},{"x":-119,"y":-13},{"x":140,"y":-362},{"x":-76,"y":-64},{"x":-89,"y":25},{"x":6,"y":-73},{"x":-34,"y":-5},{"x":272,"y":-298}],"type":"area"},{"arc":[{"x":237391,"y":178243},{"x":76,"y":53},{"x":39,"y":-2},{"x":79,"y":74},{"x":36,"y":-5},{"x":3,"y":25},{"x":36,"y":-11},{"x":-45,"y":15},{"x":7,"y":31},{"x":-193,"y":146},{"x":-54,"y":200},{"x":-107,"y":60},{"x":19,"y":28},{"x":-38,"y":57},{"x":7,"y":-62},{"x":-39,"y":61},{"x":-99,"y":-13},{"x":-100,"y":48},{"x":-42,"y":-5},{"x":-72,"y":56},{"x":-3,"y":249},{"x":65,"y":236},{"x":63,"y":122},{"x":99,"y":34},{"x":131,"y":18},{"x":1,"y":-25},{"x":30,"y":10},{"x":174,"y":-56},{"x":192,"y":33},{"x":16,"y":-20},{"x":-3,"y":28},{"x":62,"y":36},{"x":79,"y":127},{"x":86,"y":45},{"x":16,"y":26},{"x":-34,"y":-34},{"x":30,"y":70},{"x":130,"y":138},{"x":190,"y":123},{"x":63,"y":0}],"type":"coastline"},{"arc":[{"x":238291,"y":180159},{"x":-147,"y":95},{"x":-35,"y":-24},{"x":-26,"y":52},{"x":-46,"y":-47},{"x":29,"y":46},{"x":-58,"y":-23},{"x":-59,"y":60},{"x":-65,"y":-66},{"x":-87,"y":44},{"x":-73,"y":-4},{"x":-107,"y":69},{"x":-77,"y":-36},{"x":-67,"y":58},{"x":-22,"y":-50},{"x":-43,"y":32},{"x":-83,"y":-14},{"x":-16,"y":32},{"x":-63,"y":-34},{"x":-101,"y":37},{"x":-21,"y":-40},{"x":-278,"y":-88},{"x":-9,"y":-48}],"type":"area"},{"arc":[{"x":236837,"y":180210},{"x":-56,"y":-28},{"x":-42,"y":17},{"x":-71,"y":-38},{"x":-69,"y":52},{"x":-52,"y":-2},{"x":-28,"y":62},{"x":-132,"y":67},{"x":-40,"y":82},{"x":-36,"y":-6},{"x":-91,"y":97},{"x":-60,"y":13},{"x":-30,"y":92},{"x":-47,"y":17},{"x":3,"y":40},{"x":50,"y":19},{"x":-29,"y":217},{"x":-117,"y":116},{"x":-1,"y":106},{"x":-74,"y":138},{"x":23,"y":94},{"x":56,"y":69},{"x":-9,"y":78},{"x":51,"y":48},{"x":7,"y":183},{"x":-130,"y":29},{"x":-65,"y":-66},{"x":-62,"y":92},{"x":-65,"y":-26},{"x":-119,"y":63},{"x":-89,"y":-2},{"x":-67,"y":211},{"x":-45,"y":22},{"x":-46,"y":-18},{"x":-37,"y":80},{"x":-91,"y":80}],"type":"area"},{"arc":[{"x":235227,"y":182208},{"x":-65,"y":-53},{"x":-49,"y":-7},{"x":-131,"y":-183},{"x":-41,"y":7},{"x":-80,"y":119},{"x":-44,"y":-6}],"type":"admin"},{"arc":[{"x":238594,"y":181983},{"x":-65,"y":215},{"x":63,"y":104},{"x":-33,"y":36},{"x":0,"y":62},{"x":-125,"y":91},{"x":-11,"y":140},{"x":40,"y":168},{"x":-46,"y":43}],"type":"admin"},{"arc":[{"x":238417,"y":182842},{"x":-57,"y":33},{"x":39,"y":166},{"x":-20,"y":14},{"x":-21,"y":-23},{"x":-36,"y":68},{"x":-36,"y":-9}],"type":"admin"},{"arc":[{"x":238286,"y":183091},{"x":-51,"y":-56},{"x":-69,"y":-14},{"x":-38,"y":-103},{"x":-91,"y":-49},{"x":-44,"y":22},{"x":-105,"y":-28},{"x":-92,"y":30},{"x":-66,"y":-15},{"x":-66,"y":21},{"x":-50,"y":51},{"x":-180,"y":11},{"x":-67,"y":35},{"x":-38,"y":-113},{"x":38,"y":-30},{"x":10,"y":-60},{"x":-109,"y":-128},{"x":-58,"y":2},{"x":-29,"y":32},{"x":-65,"y":-46},{"x":-57,"y":14},{"x":-92,"y":-50},{"x":-32,"y":-46},{"x":-153,"y":-75},{"x":-35,"y":4},{"x":-30,"y":-36},{"x":-49,"y":18},{"x":-97,"y":-18},{"x":-118,"y":-67},{"x":-58,"y":-73},{"x":-67,"y":-5},{"x":-66,"y":-53}],"type":"area"},{"arc":[{"x":236262,"y":182266},{"x":-22,"y":-7},{"x":-47,"y":43},{"x":-36,"y":-38},{"x":-31,"y":41},{"x":-122,"y":-12},{"x":-110,"y":56},{"x":-31,"y":-21},{"x":-92,"y":86},{"x":-43,"y":-25},{"x":-131,"y":32},{"x":-84,"y":-177},{"x":-113,"y":72},{"x":-15,"y":-63},{"x":-52,"y":-42},{"x":-106,"y":-3}],"type":"admin"},{"arc":[{"x":238291,"y":180159},{"x":6,"y":57},{"x":20,"y":-8},{"x":226,"y":148},{"x":41,"y":-20},{"x":14,"y":22},{"x":19,"y":-10},{"x":3,"y":37},{"x":28,"y":5}],"type":"coastline"},{"arc":[{"x":238648,"y":180390},{"x":69,"y":184},{"x":-55,"y":156},{"x":9,"y":130},{"x":-31,"y":84},{"x":72,"y":232},{"x":-92,"y":132},{"x":-28,"y":124},{"x":136,"y":135},{"x":14,"y":93},{"x":-33,"y":75},{"x":-100,"y":15},{"x":-42,"y":40},{"x":27,"y":193}],"type":"admin"},{"arc":[{"x":237650,"y":184794},{"x":-424,"y":-512},{"x":-123,"y":-25},{"x":-32,"y":-54},{"x":5,"y":-63},{"x":16,"y":-19},{"x":2,"y":36},{"x":33,"y":-17},{"x":-4,"y":-33},{"x":-20,"y":-49},{"x":-87,"y":-7},{"x":3,"y":-68},{"x":-252,"y":-17},{"x":2,"y":-71},{"x":-170,"y":3},{"x":-84,"y":79},{"x":-17,"y":319},{"x":-65,"y":-4},{"x":-6,"y":102},{"x":-100,"y":119},{"x":-29,"y":-10},{"x":22,"y":-95},{"x":-17,"y":-51},{"x":-122,"y":-39},{"x":17,"y":-66},{"x":-41,"y":-15}],"type":"area"},{"arc":[{"x":236157,"y":184237},{"x":82,"y":-159},{"x":26,"y":-140},{"x":-29,"y":-47},{"x":35,"y":-143},{"x":-26,"y":-66},{"x":17,"y":-83},{"x":-112,"y":-226},{"x":25,"y":-148},{"x":-38,"y":-250},{"x":38,"y":-41},{"x":16,"y":-139},{"x":-56,"y":-169},{"x":9,"y":-75},{"x":98,"y":-160},{"x":-7,"y":-92},{"x":27,"y":-33}],"type":"admin"},{"arc":[{"x":238286,"y":183091},{"x":-3,"y":137},{"x":-73,"y":50},{"x":-66,"y":112},{"x":-50,"y":10},{"x":-528,"y":323},{"x":23,"y":11},{"x":-15,"y":79},{"x":37,"y":-21},{"x":57,"y":26},{"x":-53,"y":58},{"x":61,"y":-3},{"x":15,"y":31},{"x":32,"y":-60},{"x":33,"y":-2},{"x":40,"y":39},{"x":35,"y":-15},{"x":34,"y":22},{"x":-215,"y":906}],"type":"admin"},{"arc":[{"x":236961,"y":185865},{"x":-63,"y":-469},{"x":-524,"y":-505},{"x":-334,"y":42},{"x":-24,"y":-86},{"x":17,"y":-181},{"x":-46,"y":-115},{"x":-147,"y":-45},{"x":-93,"y":18},{"x":-102,"y":-28}],"type":"area"},{"arc":[{"x":235645,"y":184496},{"x":-96,"y":0},{"x":9,"y":-53},{"x":-27,"y":-7},{"x":21,"y":-80},{"x":-38,"y":0},{"x":-6,"y":-24},{"x":59,"y":-44},{"x":-36,"y":-28}],"type":"admin"},{"arc":[{"x":235531,"y":184260},{"x":45,"y":-51},{"x":77,"y":70},{"x":95,"y":3},{"x":38,"y":-22},{"x":198,"y":79},{"x":85,"y":-23},{"x":88,"y":-79}],"type":"admin"},{"arc":[{"x":237650,"y":184794},{"x":-689,"y":1071}],"type":"area"},{"arc":[{"x":235675,"y":186455},{"x":55,"y":-115},{"x":62,"y":-32},{"x":50,"y":-97},{"x":11,"y":-165},{"x":45,"y":-88},{"x":-30,"y":-114},{"x":20,"y":-184},{"x":60,"y":-78},{"x":89,"y":-266},{"x":-36,"y":-87},{"x":-105,"y":-68},{"x":-23,"y":11},{"x":-34,"y":-58},{"x":-76,"y":-204},{"x":4,"y":-66},{"x":-105,"y":-136},{"x":18,"y":-104},{"x":-35,"y":-108}],"type":"admin"},{"arc":[{"x":236961,"y":185865},{"x":-710,"y":1034}],"type":"area"},{"arc":[{"x":237650,"y":184794},{"x":-132,"y":889},{"x":-92,"y":153},{"x":-3,"y":102},{"x":-50,"y":123},{"x":-5,"y":228},{"x":43,"y":93},{"x":-11,"y":264},{"x":112,"y":123},{"x":71,"y":-28},{"x":66,"y":22},{"x":147,"y":-58},{"x":600,"y":441},{"x":-7,"y":54}],"type":"area"},{"arc":[{"x":237650,"y":184794},{"x":456,"y":390},{"x":-11,"y":76},{"x":151,"y":8},{"x":109,"y":-77},{"x":73,"y":-12},{"x":252,"y":198},{"x":106,"y":4},{"x":56,"y":28},{"x":20,"y":69},{"x":82,"y":65},{"x":0,"y":119},{"x":-67,"y":76},{"x":93,"y":218},{"x":143,"y":48},{"x":89,"y":-81},{"x":64,"y":-3}],"type":"admin"},{"arc":[{"x":239266,"y":185920},{"x":12,"y":62},{"x":56,"y":17},{"x":85,"y":137},{"x":146,"y":103},{"x":-11,"y":122},{"x":47,"y":156},{"x":-16,"y":61},{"x":80,"y":195}],"type":"admin"},{"arc":[{"x":239894,"y":185068},{"x":-19,"y":24},{"x":-100,"y":19},{"x":-25,"y":145},{"x":-138,"y":7},{"x":-57,"y":105},{"x":-62,"y":21},{"x":42,"y":127},{"x":-27,"y":111},{"x":22,"y":174},{"x":-163,"y":64},{"x":-28,"y":55},{"x":-73,"y":0}],"type":"area"},{"arc":[{"x":238417,"y":182842},{"x":12,"y":25},{"x":152,"y":50},{"x":14,"y":43},{"x":73,"y":29},{"x":6,"y":53},{"x":35,"y":20},{"x":29,"y":333},{"x":103,"y":152},{"x":-8,"y":227},{"x":61,"y":137},{"x":87,"y":78},{"x":79,"y":-11},{"x":6,"y":90},{"x":96,"y":12},{"x":41,"y":-33},{"x":54,"y":27},{"x":89,"y":-11},{"x":126,"y":81},{"x":4,"y":43},{"x":55,"y":-2},{"x":32,"y":103},{"x":60,"y":26},{"x":81,"y":-12},{"x":205,"y":89},{"x":44,"y":-9},{"x":47,"y":46}],"type":"area"},{"arc":[{"x":240000,"y":184428},{"x":31,"y":65},{"x":-71,"y":132},{"x":18,"y":64},{"x":-49,"y":50},{"x":-45,"y":-4},{"x":-24,"y":91},{"x":78,"y":125},{"x":-51,"y":62},{"x":7,"y":55}],"type":"area"},{"arc":[{"x":240849,"y":183002},{"x":-76,"y":102},{"x":20,"y":124},{"x":-43,"y":119},{"x":-167,"y":117},{"x":-21,"y":79},{"x":-52,"y":32},{"x":-40,"y":-5},{"x":-102,"y":135},{"x":-90,"y":-12},{"x":-23,"y":117},{"x":-90,"y":44},{"x":-22,"y":61},{"x":-98,"y":74},{"x":33,"y":69},{"x":-48,"y":105},{"x":-48,"y":-12},{"x":-29,"y":57},{"x":49,"y":95},{"x":-2,"y":125}],"type":"area"},{"arc":[{"x":238594,"y":181983},{"x":1104,"y":-41},{"x":23,"y":-82},{"x":84,"y":37},{"x":21,"y":-37}],"type":"area"},{"arc":[{"x":239826,"y":181860},{"x":90,"y":62},{"x":197,"y":23},{"x":86,"y":-22}],"type":"coastline"},{"arc":[{"x":240199,"y":181923},{"x":60,"y":-20},{"x":-26,"y":57},{"x":31,"y":38},{"x":122,"y":-64},{"x":185,"y":120},{"x":52,"y":-24},{"x":82,"y":24},{"x":79,"y":99},{"x":78,"y":43},{"x":77,"y":122},{"x":59,"y":32},{"x":31,"y":88},{"x":-23,"y":63},{"x":44,"y":57}],"type":"area"},{"arc":[{"x":241050,"y":182558},{"x":8,"y":27},{"x":-66,"y":73},{"x":-50,"y":18},{"x":-112,"y":117},{"x":25,"y":72},{"x":-28,"y":110},{"x":22,"y":27}],"type":"area"},{"arc":[{"x":238648,"y":180390},{"x":146,"y":106},{"x":69,"y":-10},{"x":-12,"y":58},{"x":31,"y":58},{"x":50,"y":17},{"x":69,"y":95},{"x":111,"y":51},{"x":83,"y":137},{"x":56,"y":170},{"x":54,"y":31},{"x":24,"y":91},{"x":176,"y":301},{"x":55,"y":46},{"x":36,"y":104},{"x":111,"y":44},{"x":40,"y":41},{"x":53,"y":-14},{"x":-53,"y":17},{"x":-67,"y":-43},{"x":-7,"y":37},{"x":-14,"y":-34},{"x":-11,"y":88},{"x":19,"y":9},{"x":-13,"y":-26},{"x":13,"y":-31},{"x":-4,"y":43},{"x":7,"y":12},{"x":25,"y":-18},{"x":18,"y":12},{"x":-24,"y":7},{"x":34,"y":46},{"x":-12,"y":-41},{"x":23,"y":19},{"x":7,"y":-55},{"x":9,"y":23},{"x":-21,"y":43},{"x":71,"y":26},{"x":42,"y":-36},{"x":-15,"y":-61},{"x":16,"y":61},{"x":-17,"y":46}],"type":"coastline"},{"arc":[{"x":239892,"y":181696},{"x":-49,"y":13},{"x":-47,"y":-24},{"x":96,"y":11}],"type":"coastline"},{"arc":[{"x":240199,"y":181923},{"x":3,"y":-36},{"x":13,"y":14},{"x":21,"y":-31},{"x":-5,"y":-119},{"x":31,"y":-19},{"x":1,"y":-46},{"x":2,"y":52},{"x":48,"y":-30},{"x":-10,"y":-29},{"x":-54,"y":-17},{"x":92,"y":24},{"x":15,"y":20},{"x":24,"y":3},{"x":32,"y":-44},{"x":126,"y":-41},{"x":39,"y":-53},{"x":85,"y":0},{"x":46,"y":-59},{"x":100,"y":-45},{"x":-2,"y":-35},{"x":69,"y":-63},{"x":-8,"y":-62},{"x":47,"y":-53},{"x":150,"y":-26},{"x":10,"y":-43},{"x":19,"y":11},{"x":-6,"y":-19},{"x":-27,"y":2},{"x":28,"y":-3},{"x":10,"y":36},{"x":73,"y":-14},{"x":38,"y":-99},{"x":59,"y":11},{"x":23,"y":-48},{"x":50,"y":-6}],"type":"coastline"},{"arc":[{"x":241341,"y":181056},{"x":87,"y":145},{"x":73,"y":15},{"x":38,"y":42},{"x":139,"y":17},{"x":24,"y":29},{"x":-39,"y":118},{"x":-74,"y":94},{"x":24,"y":101},{"x":-28,"y":68},{"x":139,"y":85},{"x":14,"y":99},{"x":111,"y":112},{"x":14,"y":61}],"type":"area"},{"arc":[{"x":241863,"y":182042},{"x":-28,"y":62},{"x":-147,"y":21},{"x":-56,"y":39},{"x":-5,"y":36},{"x":-35,"y":5},{"x":-121,"y":-25},{"x":-95,"y":-81},{"x":-30,"y":93},{"x":-53,"y":2},{"x":-14,"y":27},{"x":28,"y":137},{"x":-59,"y":100},{"x":-37,"y":39},{"x":-79,"y":-40},{"x":-82,"y":101}],"type":"area"},{"arc":[{"x":242546,"y":181894},{"x":-25,"y":58},{"x":-77,"y":-6},{"x":-69,"y":71},{"x":-124,"y":-92},{"x":-70,"y":-19},{"x":-189,"y":74},{"x":-74,"y":-14},{"x":-19,"y":67},{"x":-36,"y":9}],"type":"area"},{"arc":[{"x":241341,"y":181056},{"x":16,"y":-20},{"x":34,"y":9},{"x":9,"y":-34},{"x":24,"y":31},{"x":5,"y":-21},{"x":30,"y":6},{"x":7,"y":-62},{"x":30,"y":4},{"x":-8,"y":-29},{"x":77,"y":-70},{"x":42,"y":37},{"x":34,"y":-14},{"x":-9,"y":-48},{"x":18,"y":13},{"x":9,"y":-27},{"x":-41,"y":9},{"x":63,"y":-25},{"x":151,"y":-193},{"x":90,"y":-191},{"x":59,"y":-92},{"x":96,"y":-75},{"x":31,"y":-90},{"x":13,"y":14},{"x":-1,"y":-24},{"x":113,"y":-68},{"x":39,"y":-53},{"x":53,"y":-4},{"x":3,"y":-29},{"x":35,"y":25},{"x":62,"y":-62},{"x":16,"y":13},{"x":25,"y":-34},{"x":47,"y":0},{"x":16,"y":-58},{"x":107,"y":-86},{"x":150,"y":22},{"x":164,"y":76},{"x":83,"y":-11},{"x":26,"y":34},{"x":75,"y":-55},{"x":-19,"y":-42},{"x":41,"y":34},{"x":-16,"y":21},{"x":25,"y":1},{"x":20,"y":76},{"x":23,"y":14},{"x":29,"y":-29},{"x":27,"y":7},{"x":39,"y":52},{"x":103,"y":-77}],"type":"coastline"},{"arc":[{"x":243406,"y":179931},{"x":-32,"y":110},{"x":-96,"y":132},{"x":-75,"y":-9},{"x":-54,"y":35},{"x":-28,"y":-33},{"x":-41,"y":14},{"x":-63,"y":-32},{"x":-11,"y":101},{"x":-43,"y":4},{"x":-91,"y":70},{"x":-20,"y":153},{"x":-80,"y":162},{"x":33,"y":103},{"x":-121,"y":83},{"x":37,"y":110},{"x":82,"y":35},{"x":31,"y":161},{"x":139,"y":140},{"x":-153,"y":65},{"x":-93,"y":-8},{"x":-42,"y":70},{"x":-50,"y":4},{"x":-33,"y":39},{"x":-28,"y":173},{"x":-49,"y":42},{"x":24,"y":50},{"x":-31,"y":146},{"x":28,"y":43}],"type":"area"},{"arc":[{"x":243738,"y":182683},{"x":-24,"y":-3},{"x":10,"y":-27},{"x":14,"y":30}],"type":"coastline"},{"arc":[{"x":243570,"y":182966},{"x":-62,"y":-86},{"x":-79,"y":-28},{"x":-86,"y":-169},{"x":-46,"y":-5},{"x":-16,"y":-37},{"x":-83,"y":-26},{"x":-26,"y":18},{"x":-26,"y":-32},{"x":-89,"y":-26},{"x":-48,"y":-97},{"x":-58,"y":-21},{"x":-100,"y":-144},{"x":-16,"y":-174},{"x":-82,"y":-166},{"x":-74,"y":-78},{"x":-133,"y":-1}],"type":"area"},{"arc":[{"x":243406,"y":179931},{"x":-8,"y":66},{"x":46,"y":43},{"x":142,"y":39},{"x":71,"y":45},{"x":86,"y":-6},{"x":54,"y":26},{"x":26,"y":-21},{"x":-18,"y":19},{"x":14,"y":-11},{"x":15,"y":44},{"x":133,"y":-46},{"x":95,"y":-98},{"x":-46,"y":213},{"x":13,"y":77},{"x":26,"y":7},{"x":2,"y":47},{"x":-6,"y":-35},{"x":-44,"y":48},{"x":48,"y":137},{"x":1,"y":43},{"x":-18,"y":-34},{"x":-18,"y":52},{"x":64,"y":65},{"x":-65,"y":112},{"x":-9,"y":130},{"x":75,"y":168},{"x":56,"y":75},{"x":21,"y":9},{"x":14,"y":-11},{"x":11,"y":12},{"x":-17,"y":-7},{"x":45,"y":76},{"x":48,"y":-20},{"x":64,"y":57},{"x":68,"y":1},{"x":-62,"y":-19},{"x":63,"y":3},{"x":6,"y":30},{"x":52,"y":17},{"x":7,"y":39},{"x":37,"y":-104},{"x":51,"y":6},{"x":14,"y":166},{"x":31,"y":44},{"x":-26,"y":21},{"x":15,"y":26},{"x":-62,"y":181},{"x":-67,"y":46},{"x":-57,"y":2},{"x":-5,"y":47},{"x":4,"y":-41},{"x":-11,"y":31},{"x":-28,"y":-1},{"x":30,"y":157},{"x":-25,"y":18},{"x":-53,"y":-24},{"x":-94,"y":70},{"x":-30,"y":70},{"x":-60,"y":11},{"x":-5,"y":77},{"x":-66,"y":22},{"x":-88,"y":125},{"x":-27,"y":-4},{"x":-9,"y":78},{"x":-29,"y":-5},{"x":-21,"y":41},{"x":-112,"y":55},{"x":8,"y":35},{"x":-49,"y":43},{"x":22,"y":46},{"x":-80,"y":31},{"x":-14,"y":49},{"x":25,"y":31},{"x":-35,"y":62},{"x":3,"y":-76},{"x":-25,"y":15},{"x":22,"y":7},{"x":-26,"y":17},{"x":19,"y":21},{"x":-25,"y":-20},{"x":-1,"y":38},{"x":2,"y":-17},{"x":-33,"y":6},{"x":15,"y":117},{"x":-30,"y":84},{"x":44,"y":43},{"x":-40,"y":-4}],"type":"coastline"},{"arc":[{"x":243011,"y":183693},{"x":-87,"y":-31},{"x":-100,"y":13},{"x":-56,"y":-77},{"x":1,"y":-46},{"x":-142,"y":-127},{"x":-103,"y":96},{"x":-69,"y":-15},{"x":-154,"y":128},{"x":-90,"y":-84},{"x":-78,"y":-142},{"x":45,"y":-123},{"x":-30,"y":-73},{"x":-128,"y":-8},{"x":-49,"y":-42},{"x":-123,"y":0},{"x":-17,"y":-27},{"x":-119,"y":38}],"type":"area"},{"arc":[{"x":241712,"y":183173},{"x":-97,"y":46},{"x":-53,"y":-16},{"x":-43,"y":32},{"x":-111,"y":-69},{"x":-135,"y":79},{"x":-61,"y":-53},{"x":-54,"y":-130},{"x":-126,"y":-15},{"x":-28,"y":-49},{"x":-91,"y":-13},{"x":-64,"y":17}],"type":"area"},{"arc":[{"x":243570,"y":182966},{"x":-115,"y":48},{"x":14,"y":84},{"x":-29,"y":37},{"x":-81,"y":-49},{"x":-77,"y":28},{"x":18,"y":-37},{"x":55,"y":8},{"x":-37,"y":-53},{"x":-38,"y":36},{"x":1,"y":-21},{"x":-21,"y":9},{"x":23,"y":34},{"x":-42,"y":-31},{"x":-55,"y":39},{"x":-124,"y":409},{"x":11,"y":52},{"x":-54,"y":68},{"x":-8,"y":66}],"type":"coastline"},{"arc":[{"x":241314,"y":185012},{"x":51,"y":-120},{"x":-49,"y":-95},{"x":-58,"y":8},{"x":-55,"y":-84},{"x":15,"y":-89},{"x":-38,"y":-152},{"x":-70,"y":-45},{"x":-46,"y":-76},{"x":-100,"y":-39},{"x":-32,"y":22},{"x":-197,"y":0},{"x":-119,"y":74},{"x":-79,"y":134},{"x":31,"y":62},{"x":-50,"y":86},{"x":-86,"y":18},{"x":-21,"y":56},{"x":-163,"y":154},{"x":-138,"y":30},{"x":-33,"y":35},{"x":-101,"y":-2},{"x":-82,"y":79}],"type":"area"},{"arc":[{"x":241712,"y":183173},{"x":-8,"y":112},{"x":46,"y":90},{"x":-33,"y":120},{"x":-83,"y":78},{"x":40,"y":89},{"x":-2,"y":99},{"x":80,"y":156},{"x":101,"y":100},{"x":81,"y":261},{"x":10,"y":189},{"x":111,"y":76},{"x":-42,"y":51},{"x":-246,"y":149},{"x":-22,"y":-26},{"x":-43,"y":0},{"x":-9,"y":22},{"x":-24,"y":-17},{"x":-70,"y":144},{"x":-54,"y":13},{"x":-21,"y":66},{"x":-65,"y":63},{"x":-84,"y":29},{"x":-61,"y":-25}],"type":"area"},{"arc":[{"x":241488,"y":185969},{"x":27,"y":-73},{"x":-70,"y":-54},{"x":0,"y":-29},{"x":23,"y":-125},{"x":42,"y":-35},{"x":-81,"y":-48},{"x":-23,"y":-49},{"x":21,"y":-178},{"x":-82,"y":-78},{"x":-33,"y":0},{"x":-72,"y":-95},{"x":74,"y":-193}],"type":"area"},{"arc":[{"x":243011,"y":183693},{"x":25,"y":84},{"x":-65,"y":33},{"x":33,"y":65},{"x":-103,"y":95},{"x":3,"y":88},{"x":-90,"y":1},{"x":-19,"y":41},{"x":26,"y":72},{"x":-60,"y":19},{"x":-17,"y":39},{"x":24,"y":16},{"x":-64,"y":45},{"x":6,"y":173},{"x":-182,"y":78},{"x":51,"y":-40},{"x":-27,"y":-17},{"x":-37,"y":17},{"x":36,"y":-17},{"x":-31,"y":-21},{"x":-23,"y":0},{"x":17,"y":28},{"x":-17,"y":-6},{"x":-4,"y":-29},{"x":-63,"y":2},{"x":-72,"y":115},{"x":25,"y":65},{"x":-14,"y":-28},{"x":-26,"y":15},{"x":31,"y":12},{"x":-30,"y":8},{"x":-39,"y":-22},{"x":3,"y":398},{"x":35,"y":156},{"x":32,"y":9}],"type":"coastline"},{"arc":[{"x":240892,"y":194075},{"x":-61,"y":55},{"x":-45,"y":-75},{"x":-75,"y":-4},{"x":-21,"y":-121},{"x":-94,"y":-111},{"x":-108,"y":40},{"x":-91,"y":-82},{"x":7,"y":-102},{"x":-97,"y":-40},{"x":-71,"y":17},{"x":-17,"y":-143},{"x":-111,"y":-121},{"x":15,"y":-96},{"x":-151,"y":-76},{"x":-88,"y":-116},{"x":-55,"y":-7},{"x":-39,"y":-92},{"x":10,"y":-57},{"x":97,"y":-126},{"x":58,"y":-33}],"type":"area"},{"arc":[{"x":245525,"y":196565},{"x":89,"y":236},{"x":-74,"y":155},{"x":-260,"y":0},{"x":-151,"y":-115},{"x":-114,"y":2},{"x":44,"y":116},{"x":23,"y":227},{"x":39,"y":81},{"x":55,"y":12},{"x":1,"y":163},{"x":42,"y":26},{"x":0,"y":153},{"x":-32,"y":60}],"type":"area"},{"arc":[{"x":244909,"y":195300},{"x":96,"y":18},{"x":38,"y":90},{"x":327,"y":160},{"x":12,"y":101},{"x":63,"y":74}],"type":"area"},{"arc":[{"x":245445,"y":195743},{"x":100,"y":86},{"x":75,"y":-43},{"x":48,"y":18}],"type":"area"},{"arc":[{"x":238099,"y":197581},{"x":-189,"y":-262},{"x":13,"y":-44},{"x":-46,"y":-78},{"x":58,"y":-134},{"x":-66,"y":-25},{"x":-92,"y":-97},{"x":87,"y":-122},{"x":-3,"y":-98},{"x":119,"y":-30},{"x":17,"y":-32}],"type":"admin"},{"arc":[{"x":237997,"y":196659},{"x":361,"y":-179},{"x":67,"y":-90},{"x":-8,"y":-71},{"x":36,"y":-43},{"x":96,"y":-5},{"x":36,"y":-32},{"x":5,"y":-66},{"x":50,"y":-53},{"x":3,"y":-58},{"x":96,"y":-171},{"x":114,"y":-105}],"type":"admin"},{"arc":[{"x":239247,"y":194605},{"x":221,"y":-10},{"x":102,"y":-88},{"x":50,"y":-1},{"x":107,"y":8},{"x":47,"y":74},{"x":63,"y":-1},{"x":30,"y":-32},{"x":19,"y":33},{"x":106,"y":22},{"x":179,"y":-88},{"x":82,"y":95},{"x":118,"y":-9},{"x":143,"y":53},{"x":-25,"y":52},{"x":-47,"y":-24}],"type":"area"},{"arc":[{"x":240442,"y":194689},{"x":-58,"y":-24},{"x":-43,"y":66},{"x":-53,"y":-23},{"x":-54,"y":20},{"x":-18,"y":52},{"x":51,"y":-8},{"x":10,"y":52},{"x":-78,"y":-28},{"x":-43,"y":43},{"x":-7,"y":56},{"x":-52,"y":31},{"x":9,"y":37},{"x":60,"y":10},{"x":14,"y":132},{"x":-88,"y":81},{"x":-63,"y":2},{"x":-46,"y":-59},{"x":-22,"y":7},{"x":31,"y":100},{"x":-56,"y":76},{"x":-74,"y":43},{"x":45,"y":21},{"x":-89,"y":15},{"x":-15,"y":86},{"x":-105,"y":1},{"x":-52,"y":25},{"x":-4,"y":51},{"x":62,"y":80},{"x":-19,"y":59},{"x":-49,"y":-16},{"x":-117,"y":25},{"x":-49,"y":-78},{"x":-29,"y":0},{"x":-25,"y":163},{"x":-63,"y":-5},{"x":-76,"y":55},{"x":-97,"y":-37},{"x":-62,"y":61},{"x":-72,"y":142},{"x":-155,"y":40},{"x":-97,"y":175},{"x":-143,"y":84},{"x":-48,"y":133},{"x":174,"y":169},{"x":-33,"y":140}],"type":"area"},{"arc":[{"x":240797,"y":194599},{"x":-21,"y":47},{"x":-53,"y":16},{"x":-25,"y":90},{"x":-29,"y":-59},{"x":-127,"y":56},{"x":-69,"y":-10},{"x":-31,"y":-50}],"type":"area"},{"arc":[{"x":245656,"y":194259},{"x":-49,"y":63},{"x":-43,"y":-6},{"x":-70,"y":55},{"x":-121,"y":-132},{"x":-156,"y":166},{"x":-164,"y":-28},{"x":-24,"y":41},{"x":-38,"y":-9},{"x":-49,"y":31},{"x":-45,"y":-14},{"x":-50,"y":62},{"x":-38,"y":137},{"x":-124,"y":91},{"x":-42,"y":69},{"x":-192,"y":-124},{"x":-100,"y":19}],"type":"area"},{"arc":[{"x":245804,"y":194316},{"x":15,"y":59},{"x":151,"y":131},{"x":24,"y":68},{"x":72,"y":10},{"x":89,"y":62},{"x":25,"y":60},{"x":-89,"y":70},{"x":-15,"y":68},{"x":-91,"y":51},{"x":-129,"y":164},{"x":117,"y":342},{"x":-39,"y":77},{"x":-53,"y":38},{"x":-2,"y":52},{"x":-73,"y":12},{"x":-22,"y":95},{"x":-25,"y":-8},{"x":4,"y":96},{"x":-34,"y":1},{"x":-67,"y":-51},{"x":-48,"y":24},{"x":-54,"y":-25},{"x":-52,"y":44},{"x":-50,"y":-41},{"x":-13,"y":28}],"type":"area"},{"arc":[{"x":248500,"y":191864},{"x":130,"y":67},{"x":62,"y":89},{"x":-13,"y":60},{"x":124,"y":140}],"type":"area"},{"arc":[{"x":248803,"y":192220},{"x":-76,"y":56},{"x":-62,"y":92},{"x":-12,"y":298},{"x":-40,"y":56},{"x":-14,"y":115},{"x":-69,"y":23},{"x":-77,"y":133},{"x":-98,"y":17},{"x":-46,"y":181},{"x":-100,"y":181},{"x":2,"y":47},{"x":63,"y":62},{"x":14,"y":58},{"x":-22,"y":86},{"x":127,"y":234},{"x":117,"y":43},{"x":49,"y":124},{"x":98,"y":92},{"x":51,"y":163},{"x":-28,"y":35},{"x":18,"y":37},{"x":-42,"y":-13},{"x":-15,"y":29},{"x":-87,"y":10},{"x":-53,"y":49},{"x":13,"y":60},{"x":-89,"y":73},{"x":-4,"y":74},{"x":-107,"y":174},{"x":-35,"y":224},{"x":34,"y":61},{"x":-62,"y":20},{"x":-15,"y":129},{"x":34,"y":81},{"x":-22,"y":125},{"x":38,"y":31},{"x":-4,"y":44},{"x":-82,"y":16},{"x":-69,"y":98},{"x":-54,"y":3},{"x":-43,"y":39},{"x":-125,"y":-13},{"x":-26,"y":49},{"x":-108,"y":-34},{"x":-63,"y":65},{"x":38,"y":-12},{"x":-3,"y":30},{"x":-70,"y":0},{"x":1,"y":45},{"x":-96,"y":34},{"x":-62,"y":64}],"type":"area"},{"arc":[{"x":248217,"y":196252},{"x":52,"y":29},{"x":126,"y":-35},{"x":97,"y":-157},{"x":46,"y":19},{"x":78,"y":176},{"x":85,"y":1},{"x":152,"y":-108},{"x":96,"y":-19}],"type":"area"},{"arc":[{"x":248949,"y":196158},{"x":120,"y":62},{"x":163,"y":-42},{"x":40,"y":-38}],"type":"area"},{"arc":[{"x":249272,"y":196140},{"x":44,"y":648}],"type":"area"},{"arc":[{"x":249272,"y":196140},{"x":5,"y":-65},{"x":79,"y":-31},{"x":33,"y":27},{"x":59,"y":-15},{"x":51,"y":25},{"x":52,"y":-7}],"type":"area"},{"arc":[{"x":249551,"y":196074},{"x":90,"y":123},{"x":100,"y":63},{"x":52,"y":89},{"x":-95,"y":68},{"x":2,"y":59},{"x":62,"y":4},{"x":63,"y":-81},{"x":26,"y":94},{"x":93,"y":-15},{"x":74,"y":209},{"x":63,"y":95},{"x":-10,"y":144},{"x":71,"y":155},{"x":-65,"y":15},{"x":-53,"y":69},{"x":-80,"y":32},{"x":-9,"y":35}],"type":"area"},{"arc":[{"x":248803,"y":192220},{"x":33,"y":1}],"type":"area"},{"arc":[{"x":248836,"y":192221},{"x":-38,"y":47},{"x":17,"y":95},{"x":-52,"y":97},{"x":66,"y":152},{"x":210,"y":179},{"x":-4,"y":126},{"x":162,"y":410},{"x":2,"y":249},{"x":-30,"y":127},{"x":-25,"y":1},{"x":29,"y":23},{"x":-17,"y":46},{"x":129,"y":261},{"x":-84,"y":17},{"x":-49,"y":205},{"x":7,"y":174},{"x":-87,"y":197},{"x":-6,"y":155},{"x":-41,"y":40},{"x":-28,"y":122},{"x":-135,"y":181},{"x":-43,"y":150},{"x":79,"y":167},{"x":30,"y":-20},{"x":-10,"y":57},{"x":36,"y":92},{"x":19,"y":284},{"x":-35,"y":27},{"x":-5,"y":125},{"x":41,"y":69},{"x":-40,"y":24},{"x":15,"y":58}],"type":"area"},{"arc":[{"x":250553,"y":195666},{"x":-262,"y":154},{"x":-121,"y":-31},{"x":-80,"y":17},{"x":-71,"y":-17},{"x":-40,"y":57},{"x":-101,"y":-1},{"x":-100,"y":-10},{"x":-137,"y":-52},{"x":-41,"y":163},{"x":14,"y":122},{"x":-63,"y":6}],"type":"area"},{"arc":[{"x":248836,"y":192221},{"x":60,"y":-22},{"x":-33,"y":40},{"x":-12,"y":118},{"x":20,"y":127},{"x":387,"y":541},{"x":10,"y":37},{"x":-41,"y":76},{"x":53,"y":39},{"x":84,"y":2},{"x":92,"y":152},{"x":11,"y":81},{"x":-58,"y":71},{"x":46,"y":169},{"x":-171,"y":310},{"x":47,"y":72},{"x":85,"y":44},{"x":219,"y":-69},{"x":90,"y":18},{"x":58,"y":-50},{"x":132,"y":40}],"type":"area"},{"arc":[{"x":251776,"y":195943},{"x":27,"y":104},{"x":44,"y":3},{"x":3,"y":46},{"x":52,"y":-11},{"x":43,"y":26},{"x":4,"y":124},{"x":53,"y":163},{"x":28,"y":22},{"x":107,"y":-22},{"x":144,"y":20},{"x":35,"y":65},{"x":62,"y":24},{"x":110,"y":103},{"x":-23,"y":37},{"x":32,"y":111},{"x":-89,"y":225},{"x":44,"y":64},{"x":121,"y":43},{"x":-31,"y":156},{"x":31,"y":57},{"x":-100,"y":166}],"type":"area"},{"arc":[{"x":251728,"y":200052},{"x":97,"y":103},{"x":-23,"y":123},{"x":72,"y":34},{"x":65,"y":-15},{"x":38,"y":53},{"x":-58,"y":154},{"x":51,"y":75},{"x":55,"y":291},{"x":-64,"y":67},{"x":-50,"y":445},{"x":-131,"y":106}],"type":"area"},{"arc":[{"x":247759,"y":203642},{"x":-13,"y":-276},{"x":128,"y":-280},{"x":-42,"y":0},{"x":-11,"y":-156}],"type":"area"},{"arc":[{"x":248698,"y":202023},{"x":-166,"y":473},{"x":-166,"y":252},{"x":-243,"y":178},{"x":-13,"y":121},{"x":-80,"y":194},{"x":-271,"y":401}],"type":"area"},{"arc":[{"x":250326,"y":204188},{"x":-141,"y":-11},{"x":-123,"y":75},{"x":-12,"y":39},{"x":-109,"y":-2},{"x":-119,"y":79},{"x":-57,"y":-37},{"x":-44,"y":52},{"x":-80,"y":-2},{"x":-54,"y":45},{"x":-275,"y":74}],"type":"area"},{"arc":[{"x":250455,"y":201861},{"x":9,"y":100},{"x":115,"y":99},{"x":95,"y":183},{"x":70,"y":19},{"x":20,"y":64},{"x":124,"y":33},{"x":80,"y":84},{"x":111,"y":43},{"x":80,"y":68},{"x":31,"y":79}],"type":"area"},{"arc":[{"x":251190,"y":202633},{"x":7,"y":30},{"x":-51,"y":14},{"x":-65,"y":143},{"x":7,"y":60},{"x":-31,"y":49},{"x":24,"y":74},{"x":-31,"y":48},{"x":-44,"y":12},{"x":21,"y":60},{"x":-65,"y":130},{"x":8,"y":152},{"x":50,"y":73},{"x":-47,"y":5},{"x":-37,"y":53},{"x":-35,"y":7},{"x":35,"y":70},{"x":-17,"y":71},{"x":71,"y":-2},{"x":37,"y":38},{"x":-6,"y":135},{"x":-311,"y":94},{"x":-70,"y":-2},{"x":-134,"y":108},{"x":-61,"y":18},{"x":-41,"y":95},{"x":-78,"y":20}],"type":"area"},{"arc":[{"x":252409,"y":202654},{"x":-165,"y":74},{"x":-98,"y":-130},{"x":-167,"y":18},{"x":8,"y":-56},{"x":-59,"y":-153},{"x":-98,"y":42},{"x":-61,"y":-30},{"x":-121,"y":76},{"x":-51,"y":41},{"x":-31,"y":83},{"x":-170,"y":135},{"x":-113,"y":-28},{"x":11,"y":-39},{"x":-104,"y":-54}],"type":"area"},{"arc":[{"x":251826,"y":201598},{"x":105,"y":41},{"x":41,"y":-11},{"x":24,"y":26},{"x":52,"y":-37},{"x":110,"y":115},{"x":-116,"y":77},{"x":14,"y":137},{"x":-63,"y":71},{"x":-25,"y":111},{"x":-36,"y":34},{"x":95,"y":41},{"x":109,"y":-9},{"x":52,"y":19}],"type":"area"},{"arc":[{"x":251608,"y":205136},{"x":-41,"y":-4},{"x":-53,"y":-87},{"x":-86,"y":-64},{"x":50,"y":-77},{"x":-16,"y":-104},{"x":32,"y":-77},{"x":31,"y":-8},{"x":13,"y":-86},{"x":-81,"y":-209},{"x":-104,"y":2},{"x":-77,"y":-30},{"x":-35,"y":65},{"x":-109,"y":14},{"x":-99,"y":-29},{"x":-11,"y":-23},{"x":-95,"y":-2},{"x":-14,"y":-31},{"x":-179,"y":-19},{"x":-74,"y":23},{"x":-47,"y":-50},{"x":-92,"y":71},{"x":-195,"y":-223}],"type":"area"},{"arc":[{"x":251407,"y":208042},{"x":-94,"y":-71},{"x":-45,"y":-110},{"x":-115,"y":-52},{"x":-98,"y":-138},{"x":-128,"y":36},{"x":-33,"y":-62},{"x":-111,"y":45},{"x":-74,"y":-132},{"x":-163,"y":98},{"x":-24,"y":-44},{"x":-42,"y":9},{"x":-45,"y":-57},{"x":-137,"y":12},{"x":-134,"y":147},{"x":-43,"y":229},{"x":-124,"y":-272},{"x":-64,"y":-68},{"x":-42,"y":-15},{"x":-69,"y":40},{"x":-125,"y":-28},{"x":-47,"y":-65},{"x":-89,"y":-3},{"x":-79,"y":30},{"x":-30,"y":-28},{"x":-181,"y":179},{"x":46,"y":98},{"x":-64,"y":181},{"x":54,"y":126},{"x":-66,"y":111},{"x":-64,"y":1},{"x":0,"y":57},{"x":14,"y":45},{"x":78,"y":58},{"x":-27,"y":59},{"x":17,"y":60},{"x":121,"y":174},{"x":3,"y":187},{"x":108,"y":94},{"x":-14,"y":157},{"x":-75,"y":84},{"x":-261,"y":114},{"x":-53,"y":-55},{"x":-98,"y":-16},{"x":-23,"y":-40},{"x":-65,"y":-9},{"x":-117,"y":39}],"type":"admin"},{"arc":[{"x":247370,"y":208943},{"x":-37,"y":-8},{"x":-53,"y":-76},{"x":-56,"y":-188},{"x":-56,"y":-32},{"x":-34,"y":-106},{"x":-53,"y":-17},{"x":-64,"y":-111},{"x":-44,"y":-106},{"x":27,"y":-45},{"x":-18,"y":-57},{"x":-74,"y":-15},{"x":-41,"y":-88},{"x":98,"y":-198},{"x":-18,"y":-53},{"x":-141,"y":-54},{"x":-24,"y":-80},{"x":-38,"y":-18},{"x":-40,"y":-12},{"x":-33,"y":30},{"x":-71,"y":5},{"x":-72,"y":-103}],"type":"admin"},{"arc":[{"x":246528,"y":207611},{"x":57,"y":-257},{"x":79,"y":-135},{"x":-61,"y":-20},{"x":-8,"y":-61},{"x":-47,"y":-24},{"x":-49,"y":-81},{"x":125,"y":-146},{"x":143,"y":-84},{"x":65,"y":-124},{"x":146,"y":-162},{"x":29,"y":-140}],"type":"admin"},{"arc":[{"x":247007,"y":206377},{"x":189,"y":-41},{"x":77,"y":67},{"x":80,"y":-32},{"x":60,"y":44},{"x":89,"y":-17},{"x":222,"y":29},{"x":379,"y":132},{"x":102,"y":-60},{"x":27,"y":24},{"x":72,"y":-11}],"type":"area"},{"arc":[{"x":248304,"y":206512},{"x":94,"y":-119},{"x":-54,"y":-67},{"x":-24,"y":-107},{"x":20,"y":-64},{"x":95,"y":-11},{"x":135,"y":97},{"x":75,"y":5},{"x":43,"y":-201},{"x":-61,"y":-93},{"x":-4,"y":-81},{"x":-74,"y":-171},{"x":-2,"y":-91},{"x":103,"y":-74},{"x":27,"y":8},{"x":-2,"y":-80},{"x":44,"y":-38},{"x":-41,"y":-84},{"x":19,"y":-58},{"x":-24,"y":-44},{"x":1,"y":-181},{"x":-31,"y":-20},{"x":-31,"y":-109},{"x":-124,"y":-147}],"type":"area"},{"arc":[{"x":251900,"y":206249},{"x":-118,"y":-18},{"x":-7,"y":121},{"x":-40,"y":18},{"x":-69,"y":-82},{"x":-58,"y":58},{"x":-46,"y":-29},{"x":-58,"y":95},{"x":65,"y":141},{"x":7,"y":302},{"x":206,"y":424},{"x":-194,"y":180},{"x":-83,"y":138},{"x":5,"y":82},{"x":67,"y":95},{"x":7,"y":80},{"x":-130,"y":173},{"x":-47,"y":15}],"type":"admin"},{"arc":[{"x":248304,"y":206512},{"x":-34,"y":-82},{"x":-57,"y":-11},{"x":-119,"y":-105},{"x":-66,"y":-23},{"x":-36,"y":-69},{"x":-91,"y":-8},{"x":-44,"y":-89},{"x":-100,"y":-66},{"x":28,"y":-98},{"x":-20,"y":-106},{"x":-96,"y":7},{"x":-41,"y":-51},{"x":163,"y":-182},{"x":-67,"y":-112},{"x":5,"y":-247},{"x":-80,"y":-153},{"x":47,"y":-134},{"x":1,"y":-125},{"x":43,"y":-120},{"x":-9,"y":-86},{"x":81,"y":-382},{"x":-41,"y":-168},{"x":21,"y":-105},{"x":-33,"y":-355}],"type":"area"},{"arc":[{"x":247007,"y":206377},{"x":45,"y":-197},{"x":-65,"y":-30},{"x":6,"y":-114},{"x":-87,"y":-7},{"x":-121,"y":-108},{"x":-160,"y":39},{"x":-77,"y":-18},{"x":-102,"y":-133},{"x":17,"y":-96},{"x":91,"y":-149},{"x":-29,"y":-89},{"x":-73,"y":74},{"x":-110,"y":-10},{"x":-41,"y":-85},{"x":-123,"y":-73},{"x":-4,"y":-69},{"x":-59,"y":-41},{"x":-28,"y":-108},{"x":-84,"y":-1},{"x":-166,"y":-234},{"x":-42,"y":-18},{"x":-44,"y":-127},{"x":-82,"y":-99},{"x":-108,"y":-64},{"x":-5,"y":-102},{"x":-149,"y":-43},{"x":-25,"y":25},{"x":-62,"y":-19},{"x":-38,"y":-72},{"x":-57,"y":-27},{"x":-50,"y":-93},{"x":-51,"y":-34},{"x":2,"y":-28}],"type":"admin"},{"arc":[{"x":245126,"y":204227},{"x":56,"y":-114},{"x":55,"y":14},{"x":184,"y":-242},{"x":114,"y":-64},{"x":107,"y":-100},{"x":105,"y":-168},{"x":-15,"y":-50},{"x":38,"y":-76},{"x":252,"y":-176},{"x":73,"y":-16},{"x":43,"y":70},{"x":172,"y":-196},{"x":33,"y":-76},{"x":-77,"y":-104},{"x":20,"y":-84},{"x":-68,"y":-71},{"x":70,"y":-76},{"x":30,"y":-143},{"x":-56,"y":-56},{"x":-19,"y":-94},{"x":-47,"y":-30},{"x":57,"y":-264},{"x":67,"y":-119},{"x":159,"y":-109},{"x":177,"y":-184},{"x":124,"y":-49},{"x":33,"y":-39},{"x":-24,"y":-63},{"x":-67,"y":41},{"x":-125,"y":-42},{"x":36,"y":-59},{"x":-41,"y":-48},{"x":99,"y":-58},{"x":-43,"y":-90},{"x":-244,"y":-19},{"x":-162,"y":24},{"x":-125,"y":-60},{"x":-282,"y":15},{"x":-43,"y":-51},{"x":23,"y":-80},{"x":-42,"y":-41}],"type":"area"},{"arc":[{"x":245773,"y":201080},{"x":-7,"y":-36},{"x":38,"y":-21},{"x":-65,"y":-201}],"type":"area"},{"arc":[{"x":245126,"y":204227},{"x":-39,"y":-77},{"x":-121,"y":-73}],"type":"admin"},{"arc":[{"x":244966,"y":204077},{"x":-47,"y":-40}],"type":"area"},{"arc":[{"x":244680,"y":202930},{"x":156,"y":-352},{"x":-27,"y":-432},{"x":182,"y":-314},{"x":9,"y":-16},{"x":249,"y":180},{"x":524,"y":-916}],"type":"area"},{"arc":[{"x":240006,"y":204930},{"x":-103,"y":-139}],"type":"admin"},{"arc":[{"x":239964,"y":204655},{"x":192,"y":-190},{"x":-47,"y":-98},{"x":147,"y":-112},{"x":234,"y":-274},{"x":27,"y":-68},{"x":73,"y":-13},{"x":39,"y":-74},{"x":104,"y":-35},{"x":30,"y":-41},{"x":25,"y":-99},{"x":58,"y":-71},{"x":-11,"y":-287},{"x":135,"y":-53},{"x":112,"y":55},{"x":69,"y":7},{"x":35,"y":-132},{"x":62,"y":-32},{"x":32,"y":-66},{"x":-2,"y":-61},{"x":104,"y":-124},{"x":63,"y":-12},{"x":80,"y":-325},{"x":-8,"y":-88},{"x":-62,"y":-12},{"x":-28,"y":-51},{"x":-120,"y":-82},{"x":-35,"y":-132},{"x":-66,"y":-4},{"x":-58,"y":33},{"x":-38,"y":-17},{"x":-53,"y":-86},{"x":4,"y":-145},{"x":-57,"y":-15},{"x":-69,"y":-69},{"x":-16,"y":-108},{"x":-26,"y":-18},{"x":5,"y":-61},{"x":120,"y":-152},{"x":-48,"y":-66},{"x":-10,"y":-145},{"x":52,"y":-99},{"x":45,"y":-6},{"x":47,"y":-73},{"x":-10,"y":-125},{"x":-41,"y":-29},{"x":17,"y":-96},{"x":83,"y":-17},{"x":2,"y":-42},{"x":-32,"y":-50},{"x":-137,"y":-17},{"x":-14,"y":-100},{"x":-52,"y":-52},{"x":-48,"y":19},{"x":-15,"y":-42},{"x":-153,"y":23},{"x":-56,"y":-39},{"x":-25,"y":7},{"x":-47,"y":-139},{"x":-118,"y":-89}],"type":"area"},{"arc":[{"x":244966,"y":204077},{"x":-18,"y":56},{"x":-105,"y":64},{"x":-20,"y":57},{"x":-113,"y":58},{"x":-83,"y":121},{"x":-230,"y":143},{"x":-67,"y":232},{"x":-52,"y":44},{"x":84,"y":147},{"x":-137,"y":82},{"x":-24,"y":-12},{"x":10,"y":-127},{"x":-67,"y":-71},{"x":-165,"y":-19},{"x":-108,"y":-108},{"x":-119,"y":42},{"x":-25,"y":-43},{"x":-118,"y":-14},{"x":-71,"y":26},{"x":-37,"y":-21},{"x":-50,"y":9},{"x":-54,"y":49},{"x":-51,"y":-9},{"x":-147,"y":72},{"x":-73,"y":-1},{"x":-23,"y":-57},{"x":-69,"y":-15},{"x":-40,"y":-63},{"x":-109,"y":85},{"x":-97,"y":-92},{"x":-110,"y":38},{"x":-60,"y":-6},{"x":-103,"y":57},{"x":-5,"y":70},{"x":-127,"y":147},{"x":-87,"y":-8},{"x":-69,"y":75},{"x":-100,"y":-24},{"x":-89,"y":126},{"x":-150,"y":-151},{"x":-35,"y":26},{"x":-89,"y":6},{"x":-181,"y":-34},{"x":-95,"y":30},{"x":-72,"y":-21},{"x":-43,"y":-50},{"x":25,"y":-78},{"x":-103,"y":-79},{"x":-64,"y":62},{"x":-187,"y":-149},{"x":-48,"y":9},{"x":-50,"y":62},{"x":-145,"y":-175},{"x":-59,"y":29},{"x":-62,"y":105},{"x":-80,"y":32},{"x":-22,"y":41},{"x":-84,"y":24},{"x":-123,"y":-11},{"x":-72,"y":56},{"x":-78,"y":-30},{"x":-51,"y":32},{"x":-91,"y":-12},{"x":-73,"y":19}],"type":"admin"},{"arc":[{"x":238404,"y":201041},{"x":63,"y":-188},{"x":-43,"y":-31},{"x":-54,"y":-182},{"x":88,"y":-153}],"type":"admin"},{"arc":[{"x":238458,"y":200487},{"x":123,"y":92},{"x":50,"y":-16},{"x":48,"y":15},{"x":125,"y":-217},{"x":164,"y":-51},{"x":29,"y":-65},{"x":95,"y":6},{"x":4,"y":-181},{"x":113,"y":-119},{"x":72,"y":5},{"x":153,"y":111},{"x":65,"y":2},{"x":27,"y":-36},{"x":37,"y":15},{"x":38,"y":-24}],"type":"admin"},{"arc":[{"x":251940,"y":199661},{"x":81,"y":6},{"x":51,"y":78},{"x":95,"y":18},{"x":95,"y":-16},{"x":38,"y":-110},{"x":92,"y":39},{"x":34,"y":45},{"x":92,"y":-67},{"x":92,"y":-2},{"x":59,"y":-26},{"x":44,"y":-57},{"x":39,"y":4}],"type":"area"},{"arc":[{"x":253004,"y":199971},{"x":-28,"y":121},{"x":32,"y":221},{"x":-42,"y":47},{"x":1,"y":48},{"x":193,"y":289},{"x":-16,"y":125},{"x":65,"y":61},{"x":117,"y":55},{"x":44,"y":-18},{"x":56,"y":47},{"x":-114,"y":80},{"x":-33,"y":70},{"x":66,"y":91},{"x":52,"y":160},{"x":151,"y":132},{"x":137,"y":48},{"x":17,"y":68},{"x":130,"y":42},{"x":95,"y":101}],"type":"area"},{"arc":[{"x":258040,"y":205932},{"x":-75,"y":-113},{"x":-63,"y":-24},{"x":-44,"y":-136},{"x":-63,"y":-63},{"x":-64,"y":-4},{"x":-95,"y":39},{"x":-20,"y":39},{"x":-100,"y":47},{"x":-61,"y":-9},{"x":-58,"y":-67},{"x":-111,"y":60},{"x":-49,"y":-29},{"x":-65,"y":1},{"x":-40,"y":-96},{"x":-42,"y":44},{"x":-88,"y":-62},{"x":-79,"y":3},{"x":-26,"y":-26},{"x":12,"y":-43},{"x":-81,"y":-66},{"x":-141,"y":2},{"x":8,"y":161},{"x":-41,"y":62},{"x":-93,"y":-10},{"x":-49,"y":31},{"x":-51,"y":-36},{"x":-80,"y":50},{"x":-29,"y":-39},{"x":-121,"y":29},{"x":-26,"y":27},{"x":-134,"y":-21},{"x":-46,"y":-31},{"x":-85,"y":23},{"x":-46,"y":189},{"x":-74,"y":67},{"x":-50,"y":11},{"x":-21,"y":73},{"x":-82,"y":28},{"x":-30,"y":48},{"x":-93,"y":-10},{"x":-86,"y":27},{"x":-70,"y":76}],"type":"admin"},{"arc":[{"x":255388,"y":206184},{"x":-43,"y":-60},{"x":-89,"y":-53},{"x":-112,"y":20},{"x":-72,"y":60},{"x":-71,"y":-36},{"x":-50,"y":40},{"x":-72,"y":-49},{"x":-75,"y":109},{"x":-38,"y":-27},{"x":-171,"y":63},{"x":-81,"y":-53},{"x":-62,"y":-141},{"x":21,"y":-68},{"x":36,"y":-18},{"x":-5,"y":-137},{"x":-27,"y":-36}],"type":"admin"},{"arc":[{"x":257981,"y":203169},{"x":-24,"y":77},{"x":65,"y":168},{"x":-29,"y":128},{"x":38,"y":315},{"x":42,"y":32},{"x":86,"y":12},{"x":98,"y":158},{"x":228,"y":138},{"x":44,"y":94},{"x":62,"y":25},{"x":-8,"y":138},{"x":60,"y":39},{"x":-60,"y":6},{"x":-172,"y":87},{"x":-60,"y":-39},{"x":-26,"y":37},{"x":-16,"y":118},{"x":46,"y":71},{"x":-105,"y":117},{"x":33,"y":85},{"x":44,"y":-8},{"x":75,"y":95},{"x":-86,"y":97},{"x":15,"y":58},{"x":-27,"y":33},{"x":-55,"y":4},{"x":-18,"y":39},{"x":62,"y":185},{"x":2,"y":57},{"x":-47,"y":86},{"x":45,"y":75},{"x":-16,"y":39},{"x":35,"y":168},{"x":-165,"y":-86},{"x":-107,"y":115}],"type":"admin"},{"arc":[{"x":260918,"y":201392},{"x":-210,"y":-71},{"x":-156,"y":80},{"x":-4,"y":59},{"x":-51,"y":60},{"x":-37,"y":4},{"x":-22,"y":69},{"x":-92,"y":42},{"x":-41,"y":53},{"x":18,"y":72},{"x":-33,"y":109},{"x":47,"y":93},{"x":-17,"y":55},{"x":-91,"y":2},{"x":-68,"y":65},{"x":-125,"y":-14},{"x":-53,"y":22},{"x":-33,"y":137},{"x":-142,"y":-12},{"x":56,"y":184},{"x":114,"y":45},{"x":55,"y":54},{"x":167,"y":52},{"x":72,"y":128},{"x":-21,"y":113},{"x":26,"y":154},{"x":-94,"y":-16},{"x":-89,"y":29},{"x":-33,"y":216},{"x":-16,"y":38},{"x":-40,"y":-2},{"x":54,"y":210},{"x":-42,"y":161},{"x":33,"y":183},{"x":-60,"y":55},{"x":-32,"y":-1}],"type":"admin"},{"arc":[{"x":259958,"y":203820},{"x":-113,"y":-23},{"x":-60,"y":127},{"x":-46,"y":-39},{"x":-67,"y":-6},{"x":-5,"y":-31},{"x":-29,"y":9},{"x":-145,"y":-151},{"x":-56,"y":23},{"x":-72,"y":-58},{"x":-48,"y":47},{"x":-46,"y":-6},{"x":-12,"y":67},{"x":-52,"y":32},{"x":-87,"y":-117},{"x":-6,"y":-67},{"x":-65,"y":-27},{"x":-44,"y":-53},{"x":-184,"y":-23},{"x":-81,"y":-56},{"x":-97,"y":-124},{"x":-143,"y":-44},{"x":-27,"y":-35},{"x":-80,"y":48},{"x":-265,"y":-120}],"type":"admin"},{"arc":[{"x":257603,"y":200378},{"x":-27,"y":-102},{"x":-106,"y":-142},{"x":36,"y":-92},{"x":75,"y":-44},{"x":4,"y":-61},{"x":98,"y":-113},{"x":-3,"y":-106},{"x":99,"y":-34},{"x":73,"y":-113},{"x":106,"y":-17},{"x":124,"y":-137},{"x":112,"y":-28},{"x":46,"y":-102},{"x":-24,"y":-125},{"x":96,"y":-39}],"type":"area"},{"arc":[{"x":258312,"y":199123},{"x":111,"y":34},{"x":113,"y":99},{"x":110,"y":14},{"x":44,"y":28},{"x":73,"y":-25},{"x":55,"y":158},{"x":111,"y":-36},{"x":48,"y":36},{"x":37,"y":-27},{"x":106,"y":18},{"x":61,"y":-98},{"x":46,"y":5},{"x":22,"y":-31},{"x":59,"y":12},{"x":48,"y":-82},{"x":45,"y":10},{"x":67,"y":-29},{"x":43,"y":54},{"x":121,"y":1},{"x":177,"y":-230},{"x":67,"y":-48},{"x":83,"y":7},{"x":106,"y":110},{"x":58,"y":-7}],"type":"area"},{"arc":[{"x":260123,"y":199096},{"x":35,"y":246},{"x":142,"y":-32},{"x":73,"y":108},{"x":105,"y":39},{"x":-2,"y":272},{"x":78,"y":128},{"x":85,"y":-10},{"x":139,"y":154},{"x":42,"y":182},{"x":-37,"y":183},{"x":20,"y":124},{"x":138,"y":248},{"x":5,"y":170},{"x":36,"y":77},{"x":-129,"y":182},{"x":65,"y":225}],"type":"area"},{"arc":[{"x":262337,"y":200357},{"x":-36,"y":-27},{"x":-94,"y":-1},{"x":-68,"y":-46},{"x":-179,"y":-24},{"x":-27,"y":64},{"x":-44,"y":31},{"x":-55,"y":-3},{"x":-145,"y":133},{"x":-107,"y":0},{"x":-103,"y":32},{"x":-9,"y":108},{"x":-42,"y":44},{"x":50,"y":173},{"x":-64,"y":45},{"x":-46,"y":164},{"x":32,"y":61},{"x":-36,"y":33},{"x":-1,"y":71},{"x":-73,"y":18},{"x":-102,"y":129},{"x":-131,"y":96},{"x":-139,"y":-66}],"type":"admin"},{"arc":[{"x":260123,"y":199096},{"x":67,"y":-7},{"x":19,"y":-35},{"x":88,"y":39},{"x":103,"y":-53},{"x":64,"y":-153},{"x":60,"y":-5},{"x":21,"y":-41},{"x":55,"y":20},{"x":62,"y":-14},{"x":44,"y":39},{"x":81,"y":-132},{"x":8,"y":-67},{"x":74,"y":16},{"x":52,"y":-42},{"x":82,"y":18},{"x":57,"y":74},{"x":72,"y":-12},{"x":127,"y":39},{"x":20,"y":-173},{"x":61,"y":-30},{"x":248,"y":79},{"x":110,"y":188},{"x":49,"y":-20},{"x":39,"y":-68},{"x":23,"y":-133},{"x":73,"y":54},{"x":67,"y":8},{"x":36,"y":33},{"x":47,"y":-6},{"x":127,"y":114},{"x":71,"y":15},{"x":140,"y":-39},{"x":85,"y":85},{"x":137,"y":38}],"type":"area"},{"arc":[{"x":262592,"y":198925},{"x":-16,"y":166},{"x":147,"y":163},{"x":53,"y":19},{"x":11,"y":-22},{"x":34,"y":35},{"x":66,"y":7},{"x":45,"y":122},{"x":-23,"y":66},{"x":50,"y":83},{"x":-71,"y":50},{"x":-3,"y":125},{"x":-32,"y":17},{"x":-18,"y":100},{"x":55,"y":98},{"x":9,"y":82},{"x":-141,"y":40},{"x":-105,"y":-47},{"x":-46,"y":20},{"x":-75,"y":-21},{"x":-19,"y":39},{"x":-43,"y":-5},{"x":-3,"y":128},{"x":-130,"y":167}],"type":"admin"},{"arc":[{"x":263909,"y":198509},{"x":-80,"y":33},{"x":-2,"y":48},{"x":-125,"y":114},{"x":-70,"y":5},{"x":-129,"y":78},{"x":-58,"y":-6},{"x":-68,"y":-93},{"x":-42,"y":-9},{"x":-24,"y":2},{"x":-32,"y":163},{"x":-74,"y":9},{"x":-125,"y":-47},{"x":-12,"y":46},{"x":-63,"y":13},{"x":-54,"y":-44},{"x":-43,"y":25},{"x":-132,"y":-74},{"x":-57,"y":-4},{"x":-47,"y":29},{"x":-16,"y":77},{"x":-64,"y":51}],"type":"admin"},{"arc":[{"x":258312,"y":199123},{"x":40,"y":-87},{"x":94,"y":-95},{"x":43,"y":-86},{"x":-3,"y":-74},{"x":55,"y":-56},{"x":-14,"y":-55},{"x":23,"y":-35},{"x":-44,"y":-108},{"x":37,"y":-22},{"x":-45,"y":-182}],"type":"area"},{"arc":[{"x":258498,"y":198323},{"x":109,"y":-57},{"x":63,"y":20},{"x":29,"y":-153},{"x":-18,"y":-112},{"x":40,"y":-52},{"x":59,"y":-13},{"x":-9,"y":-71},{"x":101,"y":-58},{"x":43,"y":10},{"x":72,"y":-138},{"x":46,"y":-5},{"x":29,"y":-55},{"x":30,"y":11},{"x":9,"y":-43},{"x":108,"y":-55},{"x":91,"y":82},{"x":91,"y":37},{"x":38,"y":-14},{"x":50,"y":45},{"x":101,"y":-83},{"x":54,"y":-10},{"x":19,"y":19},{"x":140,"y":-70},{"x":106,"y":-5},{"x":64,"y":-119},{"x":-10,"y":-74},{"x":119,"y":-134},{"x":40,"y":10},{"x":49,"y":-27},{"x":55,"y":72},{"x":63,"y":-19},{"x":51,"y":17},{"x":64,"y":-114},{"x":113,"y":11},{"x":45,"y":50},{"x":47,"y":-59},{"x":67,"y":-4},{"x":102,"y":69},{"x":52,"y":-124},{"x":75,"y":4},{"x":99,"y":-39},{"x":50,"y":31},{"x":28,"y":-42},{"x":68,"y":-13},{"x":30,"y":-36},{"x":55,"y":75},{"x":-15,"y":46},{"x":79,"y":-18},{"x":105,"y":25},{"x":27,"y":-74},{"x":43,"y":-13},{"x":74,"y":32},{"x":60,"y":-6},{"x":55,"y":46},{"x":9,"y":-88},{"x":45,"y":-64},{"x":147,"y":-33},{"x":76,"y":-55},{"x":144,"y":82},{"x":46,"y":56},{"x":48,"y":5},{"x":46,"y":-32},{"x":104,"y":56},{"x":42,"y":-17}],"type":"area"},{"arc":[{"x":262360,"y":197036},{"x":38,"y":28},{"x":34,"y":-26},{"x":31,"y":50},{"x":164,"y":54},{"x":56,"y":-41},{"x":170,"y":81},{"x":153,"y":-33},{"x":36,"y":-39},{"x":102,"y":66},{"x":24,"y":54},{"x":48,"y":-19},{"x":7,"y":-35},{"x":50,"y":31},{"x":82,"y":-13},{"x":123,"y":-162},{"x":83,"y":-9},{"x":87,"y":116},{"x":102,"y":-14},{"x":39,"y":19},{"x":42,"y":184},{"x":75,"y":6},{"x":41,"y":88}],"type":"area"},{"arc":[{"x":263947,"y":197422},{"x":-15,"y":25},{"x":-52,"y":-27},{"x":-25,"y":63},{"x":5,"y":126},{"x":42,"y":18},{"x":-44,"y":85},{"x":41,"y":139},{"x":-3,"y":274},{"x":27,"y":16},{"x":-60,"y":124},{"x":-8,"y":118},{"x":54,"y":126}],"type":"admin"},{"arc":[{"x":253104,"y":197814},{"x":26,"y":-10},{"x":7,"y":-73},{"x":60,"y":-31},{"x":73,"y":96},{"x":103,"y":58},{"x":113,"y":-78},{"x":326,"y":-103},{"x":149,"y":163},{"x":100,"y":30},{"x":68,"y":73},{"x":42,"y":-60},{"x":57,"y":-6},{"x":107,"y":40},{"x":74,"y":-45},{"x":53,"y":17},{"x":29,"y":-18},{"x":89,"y":45}],"type":"area"},{"arc":[{"x":254580,"y":197912},{"x":48,"y":39},{"x":43,"y":-6},{"x":21,"y":36},{"x":51,"y":0},{"x":56,"y":60},{"x":33,"y":-19},{"x":46,"y":20},{"x":91,"y":-65},{"x":-19,"y":-84},{"x":20,"y":-100},{"x":22,"y":-44},{"x":67,"y":-25},{"x":5,"y":-109},{"x":47,"y":9},{"x":71,"y":-43},{"x":93,"y":74},{"x":25,"y":-51},{"x":78,"y":-24}],"type":"area"},{"arc":[{"x":256993,"y":197462},{"x":123,"y":-1},{"x":67,"y":-33},{"x":88,"y":30},{"x":12,"y":-55},{"x":195,"y":-54},{"x":18,"y":102},{"x":70,"y":50},{"x":60,"y":-5},{"x":31,"y":178},{"x":75,"y":47},{"x":4,"y":84},{"x":34,"y":-5},{"x":74,"y":64},{"x":20,"y":67},{"x":115,"y":27},{"x":46,"y":49},{"x":19,"y":37},{"x":-27,"y":68},{"x":31,"y":116},{"x":94,"y":14},{"x":84,"y":49},{"x":100,"y":-5},{"x":54,"y":40},{"x":39,"y":4},{"x":14,"y":-31},{"x":65,"y":24}],"type":"area"},{"arc":[{"x":249172,"y":190280},{"x":97,"y":44},{"x":-57,"y":-12},{"x":220,"y":138},{"x":43,"y":81},{"x":104,"y":14},{"x":58,"y":53},{"x":37,"y":-27},{"x":7,"y":27},{"x":-24,"y":0},{"x":25,"y":23},{"x":75,"y":8},{"x":14,"y":-27},{"x":92,"y":37},{"x":184,"y":159},{"x":2,"y":59},{"x":62,"y":56},{"x":38,"y":142},{"x":148,"y":219},{"x":29,"y":136},{"x":89,"y":106},{"x":-34,"y":98},{"x":40,"y":280},{"x":255,"y":174},{"x":37,"y":102},{"x":-25,"y":94},{"x":23,"y":75},{"x":-41,"y":-15},{"x":11,"y":-28},{"x":-28,"y":19},{"x":28,"y":-51},{"x":-40,"y":-4},{"x":-29,"y":53},{"x":16,"y":-9},{"x":-7,"y":10},{"x":9,"y":27},{"x":17,"y":-11},{"x":-28,"y":17},{"x":31,"y":64},{"x":71,"y":24},{"x":18,"y":33},{"x":-45,"y":79},{"x":15,"y":42},{"x":101,"y":48},{"x":17,"y":115},{"x":55,"y":59},{"x":120,"y":63},{"x":29,"y":96},{"x":93,"y":52},{"x":21,"y":-20},{"x":-1,"y":28},{"x":123,"y":47}],"type":"coastline"},{"arc":[{"x":252416,"y":193522},{"x":71,"y":-16},{"x":-59,"y":17},{"x":42,"y":-7},{"x":5,"y":21},{"x":12,"y":-22},{"x":-11,"y":22},{"x":47,"y":51},{"x":101,"y":32},{"x":414,"y":24},{"x":556,"y":-14},{"x":675,"y":-84},{"x":226,"y":2},{"x":-48,"y":6},{"x":114,"y":46},{"x":577,"y":-24}],"type":"coastline"},{"arc":[{"x":255138,"y":193576},{"x":52,"y":99},{"x":23,"y":208},{"x":-116,"y":126},{"x":-3,"y":128},{"x":-58,"y":11},{"x":-111,"y":103},{"x":-4,"y":106},{"x":-55,"y":-10},{"x":-13,"y":-31},{"x":-58,"y":11},{"x":-45,"y":-54},{"x":-72,"y":-16},{"x":-15,"y":57},{"x":-67,"y":57},{"x":-30,"y":153},{"x":-278,"y":247},{"x":-161,"y":21},{"x":-53,"y":41},{"x":-52,"y":-1},{"x":-110,"y":-75},{"x":-57,"y":29},{"x":-67,"y":92},{"x":-37,"y":-3},{"x":-110,"y":326},{"x":81,"y":107},{"x":137,"y":5},{"x":53,"y":122},{"x":41,"y":-7},{"x":29,"y":55},{"x":-86,"y":264},{"x":-56,"y":54},{"x":-18,"y":128},{"x":24,"y":141},{"x":43,"y":31},{"x":34,"y":113},{"x":103,"y":43},{"x":30,"y":81},{"x":2,"y":69},{"x":-85,"y":41},{"x":-24,"y":111},{"x":134,"y":74},{"x":34,"y":-50},{"x":56,"y":42},{"x":67,"y":-6},{"x":49,"y":-41},{"x":69,"y":33},{"x":-71,"y":193},{"x":89,"y":198},{"x":-54,"y":153},{"x":9,"y":103},{"x":77,"y":98},{"x":-33,"y":87},{"x":-37,"y":-8},{"x":1,"y":18},{"x":137,"y":172},{"x":163,"y":71},{"x":-59,"y":216}],"type":"area"},{"arc":[{"x":255138,"y":193576},{"x":178,"y":-17},{"x":5,"y":-18},{"x":19,"y":22},{"x":218,"y":32},{"x":629,"y":-108},{"x":306,"y":-2},{"x":43,"y":69},{"x":-67,"y":-57},{"x":14,"y":64},{"x":28,"y":-14},{"x":-15,"y":49},{"x":21,"y":-33},{"x":-30,"y":70},{"x":96,"y":101},{"x":117,"y":74},{"x":186,"y":52}],"type":"coastline"},{"arc":[{"x":257970,"y":194515},{"x":237,"y":84},{"x":260,"y":56},{"x":502,"y":39},{"x":179,"y":0},{"x":118,"y":-28},{"x":-22,"y":21},{"x":18,"y":-13},{"x":39,"y":36},{"x":250,"y":25},{"x":97,"y":49},{"x":15,"y":71},{"x":228,"y":72},{"x":738,"y":56}],"type":"coastline"},{"arc":[{"x":260629,"y":194983},{"x":-52,"y":10},{"x":-26,"y":36},{"x":9,"y":171},{"x":-30,"y":-15},{"x":-42,"y":17},{"x":-25,"y":77},{"x":-38,"y":18},{"x":-57,"y":-12},{"x":-49,"y":50},{"x":-49,"y":11},{"x":-48,"y":64},{"x":-4,"y":234},{"x":-88,"y":23},{"x":-52,"y":132},{"x":26,"y":31},{"x":-13,"y":34},{"x":36,"y":14},{"x":-26,"y":108},{"x":30,"y":80},{"x":-48,"y":257},{"x":-48,"y":70},{"x":-173,"y":-58},{"x":-52,"y":6},{"x":-75,"y":77},{"x":-193,"y":7},{"x":-28,"y":31},{"x":-43,"y":-54},{"x":-88,"y":-32},{"x":-51,"y":17},{"x":-54,"y":-44},{"x":-31,"y":49},{"x":-76,"y":-12},{"x":-78,"y":26},{"x":6,"y":-57},{"x":-40,"y":-66},{"x":-102,"y":-111},{"x":-48,"y":-4},{"x":-62,"y":-102},{"x":-79,"y":12},{"x":-76,"y":172},{"x":-91,"y":-81},{"x":-63,"y":33},{"x":-86,"y":-37},{"x":-35,"y":34},{"x":-6,"y":111},{"x":-33,"y":-22},{"x":-24,"y":16},{"x":-49,"y":131},{"x":-52,"y":-12},{"x":-52,"y":78}],"type":"area"},{"arc":[{"x":260629,"y":194983},{"x":239,"y":-4},{"x":578,"y":-65},{"x":138,"y":-30},{"x":84,"y":-49},{"x":-41,"y":38},{"x":-1,"y":37},{"x":6,"y":-32},{"x":37,"y":25},{"x":-20,"y":-35},{"x":59,"y":17},{"x":365,"y":-54},{"x":641,"y":-147}],"type":"coastline"},{"arc":[{"x":262714,"y":194684},{"x":144,"y":705},{"x":-27,"y":8},{"x":59,"y":70},{"x":34,"y":150},{"x":87,"y":17},{"x":129,"y":-26},{"x":52,"y":80},{"x":-282,"y":76},{"x":-156,"y":82},{"x":-25,"y":47},{"x":17,"y":80},{"x":-102,"y":-43},{"x":-53,"y":27},{"x":-17,"y":-19},{"x":-145,"y":53},{"x":-18,"y":27},{"x":-74,"y":9},{"x":-44,"y":50},{"x":-50,"y":-29},{"x":-18,"y":-54},{"x":-41,"y":1},{"x":7,"y":116},{"x":-38,"y":114},{"x":49,"y":72},{"x":-42,"y":65},{"x":5,"y":71},{"x":30,"y":10},{"x":12,"y":64},{"x":98,"y":81},{"x":-18,"y":53},{"x":58,"y":165},{"x":15,"y":230}],"type":"area"},{"arc":[{"x":262714,"y":194684},{"x":673,"y":-184},{"x":88,"y":-50},{"x":-12,"y":-45},{"x":16,"y":54},{"x":36,"y":-14},{"x":8,"y":-39},{"x":17,"y":23},{"x":30,"y":-31},{"x":-4,"y":36},{"x":21,"y":-8},{"x":-18,"y":-56},{"x":-69,"y":14},{"x":69,"y":-15},{"x":37,"y":38}],"type":"coastline"},{"arc":[{"x":263606,"y":194407},{"x":36,"y":40},{"x":158,"y":-31},{"x":585,"y":-159},{"x":92,"y":-67},{"x":70,"y":-4},{"x":152,"y":152},{"x":63,"y":168},{"x":189,"y":194},{"x":0,"y":119},{"x":96,"y":240},{"x":8,"y":226},{"x":-39,"y":108},{"x":45,"y":186},{"x":-20,"y":104},{"x":-49,"y":31},{"x":-116,"y":14},{"x":-124,"y":88},{"x":-158,"y":35},{"x":-321,"y":-15},{"x":-57,"y":108},{"x":-95,"y":327},{"x":-43,"y":18},{"x":-49,"y":-74},{"x":-54,"y":-18},{"x":-32,"y":129},{"x":-84,"y":42},{"x":16,"y":26},{"x":111,"y":16},{"x":39,"y":178},{"x":-175,"y":72},{"x":62,"y":122},{"x":111,"y":88},{"x":73,"y":116},{"x":-48,"y":56},{"x":-198,"y":-7},{"x":98,"y":57},{"x":-73,"y":27},{"x":-22,"y":54},{"x":119,"y":89},{"x":46,"y":79},{"x":-5,"y":47},{"x":-66,"y":34}],"type":"admin"},{"arc":[{"x":267359,"y":200697},{"x":-182,"y":-268},{"x":21,"y":-68},{"x":138,"y":-167},{"x":170,"y":-330},{"x":14,"y":-75},{"x":58,"y":-60},{"x":3,"y":-54},{"x":-99,"y":-28},{"x":-15,"y":-34},{"x":-42,"y":-12},{"x":-5,"y":-79},{"x":-60,"y":-116},{"x":62,"y":-122},{"x":-45,"y":-77},{"x":-97,"y":-91},{"x":-48,"y":-7},{"x":-39,"y":-78},{"x":-39,"y":26},{"x":-87,"y":-20},{"x":-78,"y":18},{"x":-39,"y":-46},{"x":-7,"y":-111},{"x":-42,"y":-41},{"x":-60,"y":70},{"x":-41,"y":-14},{"x":-22,"y":43},{"x":-36,"y":-21},{"x":21,"y":73},{"x":-64,"y":22},{"x":-53,"y":-11},{"x":-2,"y":75},{"x":-52,"y":-11},{"x":-133,"y":49},{"x":-42,"y":-22},{"x":-27,"y":18},{"x":-2,"y":53},{"x":-57,"y":-18},{"x":-30,"y":24},{"x":-61,"y":-2},{"x":-54,"y":-12},{"x":-36,"y":-122},{"x":-193,"y":-62},{"x":-115,"y":36},{"x":-47,"y":-195}],"type":"area"},{"arc":[{"x":265795,"y":198830},{"x":229,"y":-324},{"x":57,"y":12},{"x":57,"y":-55},{"x":88,"y":27},{"x":-28,"y":-57},{"x":58,"y":-107},{"x":2,"y":-89},{"x":160,"y":-113},{"x":-47,"y":-40},{"x":-12,"y":36},{"x":-47,"y":0},{"x":-73,"y":-185},{"x":-229,"y":-154},{"x":-48,"y":-120},{"x":72,"y":-13},{"x":50,"y":-59},{"x":59,"y":3},{"x":-5,"y":-36},{"x":68,"y":-44},{"x":0,"y":-26},{"x":43,"y":28},{"x":-15,"y":-126},{"x":95,"y":-92},{"x":-1,"y":-111}],"type":"area"},{"arc":[{"x":266328,"y":197185},{"x":91,"y":-11},{"x":7,"y":-123},{"x":58,"y":-15},{"x":34,"y":-45},{"x":106,"y":26},{"x":88,"y":-16},{"x":80,"y":91},{"x":15,"y":85},{"x":24,"y":24},{"x":42,"y":-6},{"x":32,"y":84},{"x":94,"y":52},{"x":100,"y":-82},{"x":129,"y":-18},{"x":125,"y":-50},{"x":81,"y":7},{"x":41,"y":-138},{"x":70,"y":20},{"x":31,"y":-15},{"x":19,"y":-58},{"x":60,"y":2},{"x":78,"y":-96},{"x":87,"y":152},{"x":96,"y":36},{"x":31,"y":52},{"x":33,"y":12},{"x":39,"y":-63},{"x":53,"y":40},{"x":59,"y":-35}],"type":"area"},{"arc":[{"x":270238,"y":197649},{"x":-271,"y":400},{"x":2,"y":58},{"x":-18,"y":-25},{"x":-8,"y":38},{"x":32,"y":-6},{"x":-65,"y":34},{"x":-78,"y":108},{"x":-354,"y":568},{"x":1,"y":43},{"x":-9,"y":-25},{"x":-21,"y":30},{"x":15,"y":1},{"x":-9,"y":5},{"x":12,"y":16},{"x":8,"y":-26},{"x":15,"y":35},{"x":-24,"y":-6},{"x":-15,"y":-20},{"x":-27,"y":14},{"x":-392,"y":312},{"x":-5,"y":31},{"x":-11,"y":-20},{"x":-293,"y":282},{"x":-100,"y":57},{"x":-20,"y":90},{"x":-6,"y":-58},{"x":-20,"y":18},{"x":24,"y":31},{"x":-29,"y":-27},{"x":-24,"y":11},{"x":-296,"y":235},{"x":-893,"y":844}],"type":"coastline"},{"arc":[{"x":267359,"y":200697},{"x":-449,"y":416},{"x":-7,"y":65},{"x":-47,"y":51},{"x":43,"y":-51},{"x":-13,"y":-25},{"x":-14,"y":39},{"x":-9,"y":-17},{"x":-23,"y":19},{"x":13,"y":21},{"x":-55,"y":11},{"x":-200,"y":184},{"x":-296,"y":341},{"x":-378,"y":365},{"x":-27,"y":81},{"x":10,"y":148}],"type":"coastline"},{"arc":[{"x":265907,"y":202345},{"x":-66,"y":-116},{"x":-51,"y":-229},{"x":-43,"y":4},{"x":-57,"y":56},{"x":-45,"y":-12},{"x":-93,"y":100},{"x":-64,"y":2},{"x":-55,"y":63},{"x":-42,"y":-40},{"x":-27,"y":-125},{"x":-40,"y":39},{"x":-126,"y":47},{"x":-2,"y":-128},{"x":-49,"y":-7},{"x":-19,"y":-33},{"x":-87,"y":-14},{"x":-34,"y":-65},{"x":-3,"y":-60},{"x":43,"y":-1},{"x":19,"y":-71},{"x":59,"y":-58},{"x":-90,"y":-132},{"x":-56,"y":-42},{"x":-67,"y":7},{"x":-26,"y":-25},{"x":-1,"y":-56},{"x":-30,"y":-24}],"type":"area"},{"arc":[{"x":264855,"y":201425},{"x":7,"y":-104},{"x":64,"y":-82},{"x":102,"y":20},{"x":67,"y":-17},{"x":179,"y":-94},{"x":-38,"y":-148},{"x":99,"y":-137},{"x":-43,"y":-183},{"x":64,"y":-111},{"x":33,"y":-212},{"x":48,"y":-28},{"x":24,"y":-56},{"x":-38,"y":-216},{"x":-120,"y":-130},{"x":-13,"y":-133},{"x":-79,"y":-33},{"x":-1,"y":-34},{"x":-77,"y":9},{"x":-20,"y":-169},{"x":-65,"y":-19},{"x":3,"y":-222},{"x":-60,"y":20},{"x":-41,"y":72},{"x":-37,"y":-17},{"x":-79,"y":-131},{"x":-62,"y":-21},{"x":-21,"y":-73},{"x":44,"y":-117},{"x":-53,"y":-157},{"x":36,"y":-57}],"type":"area"},{"arc":[{"x":264778,"y":198845},{"x":42,"y":32},{"x":97,"y":6},{"x":127,"y":-104},{"x":93,"y":-8},{"x":122,"y":-60},{"x":49,"y":45},{"x":54,"y":-17},{"x":55,"y":95},{"x":136,"y":83},{"x":26,"y":-33},{"x":43,"y":21},{"x":4,"y":-157},{"x":73,"y":10},{"x":96,"y":72}],"type":"area"},{"arc":[{"x":264855,"y":201425},{"x":-70,"y":6},{"x":-46,"y":105},{"x":-91,"y":-62},{"x":-54,"y":38},{"x":-90,"y":-14},{"x":-100,"y":65},{"x":-76,"y":-12},{"x":-39,"y":35},{"x":-25,"y":-52},{"x":-72,"y":-29},{"x":-56,"y":-79},{"x":-29,"y":5},{"x":-87,"y":-50},{"x":-66,"y":18},{"x":-72,"y":-43},{"x":-13,"y":-36},{"x":-106,"y":6},{"x":-72,"y":-81},{"x":-116,"y":16},{"x":-29,"y":-56},{"x":-36,"y":-9},{"x":26,"y":-103},{"x":-97,"y":-69},{"x":-2,"y":-91},{"x":73,"y":-58},{"x":-15,"y":-48},{"x":-102,"y":-57},{"x":-19,"y":-51},{"x":-60,"y":-29},{"x":-10,"y":-50},{"x":-124,"y":-93},{"x":-63,"y":-9},{"x":-16,"y":37},{"x":-41,"y":-20},{"x":-42,"y":-120},{"x":-96,"y":-46},{"x":-2,"y":-33},{"x":-42,"y":26},{"x":-28,"y":-33},{"x":-27,"y":37},{"x":-31,"y":-14},{"x":-37,"y":35},{"x":-62,"y":-36},{"x":-45,"y":81},{"x":-91,"y":11},{"x":-84,"y":-77},{"x":-136,"y":-29}],"type":"area"},{"arc":[{"x":263909,"y":198509},{"x":22,"y":19},{"x":115,"y":-91},{"x":45,"y":32},{"x":105,"y":15},{"x":51,"y":103},{"x":60,"y":28},{"x":31,"y":-19},{"x":111,"y":37},{"x":60,"y":-53},{"x":39,"y":12},{"x":72,"y":127},{"x":85,"y":7},{"x":73,"y":119}],"type":"area"},{"arc":[{"x":261189,"y":205837},{"x":-77,"y":-76},{"x":-136,"y":-41},{"x":-23,"y":-56},{"x":-55,"y":-16},{"x":-61,"y":-103},{"x":-85,"y":-62},{"x":-11,"y":-55},{"x":-107,"y":-104},{"x":-37,"y":2},{"x":-15,"y":-272},{"x":-59,"y":-39},{"x":91,"y":-218},{"x":-38,"y":-47},{"x":4,"y":-61},{"x":-98,"y":-146},{"x":-16,"y":-149},{"x":-50,"y":-52},{"x":-80,"y":-22},{"x":-53,"y":-113},{"x":-72,"y":52},{"x":-36,"y":-15},{"x":-26,"y":21},{"x":-23,"y":-22},{"x":-69,"y":-175},{"x":8,"y":-117},{"x":-93,"y":-86},{"x":-14,"y":-45}],"type":"area"},{"arc":[{"x":265907,"y":202345},{"x":-106,"y":-61},{"x":-92,"y":65},{"x":0,"y":49},{"x":-56,"y":-17},{"x":-37,"y":49},{"x":23,"y":31},{"x":-17,"y":-17},{"x":-29,"y":47},{"x":39,"y":-31},{"x":21,"y":47},{"x":-37,"y":-27},{"x":-9,"y":14},{"x":-53,"y":3},{"x":-42,"y":58},{"x":-4,"y":98},{"x":-36,"y":-27},{"x":-57,"y":17},{"x":-111,"y":-15},{"x":-131,"y":107},{"x":-30,"y":-57},{"x":-108,"y":37},{"x":-11,"y":68},{"x":2,"y":-50},{"x":-20,"y":46},{"x":-6,"y":-27},{"x":-31,"y":13},{"x":-110,"y":186},{"x":-102,"y":29},{"x":-98,"y":130},{"x":-1,"y":67},{"x":-73,"y":-63},{"x":-92,"y":4},{"x":-119,"y":130},{"x":-47,"y":3},{"x":27,"y":-6},{"x":6,"y":-10},{"x":-22,"y":-18},{"x":36,"y":29},{"x":8,"y":-16},{"x":-65,"y":-48},{"x":10,"y":51},{"x":-28,"y":-37},{"x":-76,"y":13},{"x":45,"y":77},{"x":-47,"y":-47},{"x":-2,"y":-43},{"x":-65,"y":-3},{"x":-54,"y":32},{"x":-299,"y":273},{"x":-55,"y":80},{"x":-18,"y":92},{"x":-63,"y":37},{"x":-92,"y":-1},{"x":-29,"y":61},{"x":-30,"y":-15},{"x":-58,"y":58},{"x":-150,"y":53},{"x":-55,"y":38},{"x":6,"y":23},{"x":-17,"y":23},{"x":12,"y":-38},{"x":-12,"y":28},{"x":-7,"y":-27},{"x":-77,"y":19},{"x":-66,"y":72},{"x":-24,"y":108},{"x":-46,"y":21},{"x":10,"y":39},{"x":-11,"y":-41},{"x":-11,"y":41},{"x":-131,"y":32},{"x":-162,"y":188},{"x":-130,"y":-5},{"x":-148,"y":165},{"x":-6,"y":41},{"x":-37,"y":13},{"x":36,"y":-13},{"x":-35,"y":-9},{"x":-140,"y":73},{"x":-133,"y":105},{"x":-308,"y":378},{"x":-93,"y":32},{"x":-29,"y":70},{"x":-77,"y":43},{"x":-150,"y":169},{"x":-30,"y":74},{"x":22,"y":20},{"x":-22,"y":5},{"x":27,"y":30},{"x":-5,"y":-27},{"x":15,"y":25},{"x":6,"y":-15},{"x":-1,"y":35},{"x":-63,"y":-36},{"x":-30,"y":8},{"x":-133,"y":144},{"x":-6,"y":73},{"x":-48,"y":14},{"x":-8,"y":36}],"type":"coastline"},{"arc":[{"x":266328,"y":197185},{"x":-122,"y":-70},{"x":-14,"y":-41},{"x":47,"y":-67},{"x":-42,"y":-68},{"x":-105,"y":-59},{"x":-26,"y":-60},{"x":80,"y":-108},{"x":-38,"y":-139},{"x":44,"y":-15},{"x":-17,"y":-43},{"x":38,"y":-37},{"x":-10,"y":-25},{"x":30,"y":8},{"x":19,"y":-29},{"x":-51,"y":-101},{"x":11,"y":-85},{"x":-45,"y":-184},{"x":29,"y":-47},{"x":-15,"y":-100},{"x":83,"y":-148},{"x":-428,"y":-331},{"x":-19,"y":-75},{"x":26,"y":-42},{"x":-38,"y":-51},{"x":39,"y":-98},{"x":-44,"y":-56},{"x":57,"y":-194},{"x":-12,"y":-54},{"x":72,"y":-58},{"x":-4,"y":-69},{"x":147,"y":-5},{"x":66,"y":-35},{"x":24,"y":-171},{"x":58,"y":2},{"x":-10,"y":-142},{"x":-388,"y":-613},{"x":-227,"y":-124}],"type":"area"},{"arc":[{"x":265543,"y":193651},{"x":586,"y":-293},{"x":67,"y":-45},{"x":23,"y":-54},{"x":-21,"y":57},{"x":35,"y":-18},{"x":-6,"y":-43},{"x":19,"y":41},{"x":809,"y":-418},{"x":320,"y":-108}],"type":"coastline"},{"arc":[{"x":268876,"y":187308},{"x":-7,"y":-23},{"x":30,"y":68},{"x":-23,"y":-45}],"type":"coastline"},{"arc":[{"x":271021,"y":186454},{"x":-71,"y":40},{"x":-28,"y":71},{"x":3,"y":-38},{"x":-34,"y":59},{"x":-66,"y":12},{"x":-14,"y":64},{"x":-49,"y":-24},{"x":-68,"y":65},{"x":-43,"y":71},{"x":-25,"y":149},{"x":24,"y":117},{"x":69,"y":112},{"x":55,"y":11},{"x":0,"y":-36},{"x":6,"y":38},{"x":67,"y":-25},{"x":15,"y":15},{"x":16,"y":-15},{"x":-5,"y":-7},{"x":-62,"y":-33},{"x":32,"y":28},{"x":37,"y":11},{"x":76,"y":-15},{"x":22,"y":18},{"x":-128,"y":161},{"x":-249,"y":113},{"x":-89,"y":72},{"x":-36,"y":-58},{"x":-67,"y":25},{"x":42,"y":-17},{"x":-33,"y":8},{"x":-12,"y":-33},{"x":-112,"y":-41},{"x":-137,"y":28},{"x":-86,"y":-23},{"x":0,"y":-23},{"x":-140,"y":50},{"x":-316,"y":1},{"x":-128,"y":-47},{"x":-42,"y":-58},{"x":-39,"y":10},{"x":21,"y":21},{"x":-77,"y":-10},{"x":-169,"y":62},{"x":-103,"y":-51},{"x":-94,"y":-10},{"x":6,"y":-29},{"x":-30,"y":-11},{"x":18,"y":33},{"x":-60,"y":-51},{"x":-123,"y":16},{"x":-78,"y":-21},{"x":-36,"y":8},{"x":11,"y":13},{"x":-77,"y":-38},{"x":-6,"y":-180},{"x":133,"y":-119},{"x":89,"y":113},{"x":141,"y":-6},{"x":44,"y":-61},{"x":-22,"y":37},{"x":42,"y":-11},{"x":-23,"y":-12},{"x":52,"y":24},{"x":235,"y":-211},{"x":98,"y":17},{"x":92,"y":-44},{"x":108,"y":-3},{"x":145,"y":-51},{"x":59,"y":-55},{"x":158,"y":-65},{"x":53,"y":13},{"x":21,"y":68},{"x":155,"y":-63},{"x":118,"y":72},{"x":38,"y":-14},{"x":1,"y":-26},{"x":6,"y":20},{"x":-9,"y":-55},{"x":44,"y":22},{"x":17,"y":-41},{"x":8,"y":62},{"x":22,"y":-8},{"x":20,"y":7},{"x":-34,"y":1},{"x":30,"y":43},{"x":-4,"y":-37},{"x":13,"y":27},{"x":-13,"y":17},{"x":64,"y":11},{"x":69,"y":-32},{"x":76,"y":-91},{"x":39,"y":-167},{"x":61,"y":87},{"x":56,"y":21},{"x":59,"y":-37},{"x":8,"y":-59},{"x":55,"y":-17},{"x":88,"y":15}],"type":"coastline"},{"arc":[{"x":271222,"y":186424},{"x":-29,"y":40},{"x":23,"y":27},{"x":-24,"y":2},{"x":-31,"y":-18},{"x":-2,"y":-60},{"x":22,"y":-14},{"x":41,"y":23}],"type":"coastline"},{"arc":[{"x":266421,"y":189336},{"x":-47,"y":-86},{"x":14,"y":-55},{"x":24,"y":-58},{"x":69,"y":2},{"x":19,"y":-99},{"x":51,"y":-31},{"x":10,"y":-77},{"x":14,"y":29},{"x":10,"y":-24},{"x":-16,"y":-30},{"x":155,"y":-116},{"x":43,"y":-138},{"x":116,"y":-145},{"x":116,"y":-44},{"x":50,"y":-88},{"x":59,"y":-17},{"x":-14,"y":-14},{"x":38,"y":11},{"x":60,"y":-105},{"x":100,"y":-37},{"x":52,"y":12},{"x":50,"y":-34},{"x":56,"y":43},{"x":53,"y":-132},{"x":67,"y":40},{"x":-44,"y":-7},{"x":26,"y":42},{"x":-30,"y":-12},{"x":-15,"y":18},{"x":47,"y":72},{"x":56,"y":8},{"x":64,"y":-72},{"x":-1,"y":22},{"x":56,"y":-6},{"x":7,"y":25},{"x":24,"y":-39},{"x":88,"y":-34},{"x":24,"y":39},{"x":29,"y":12},{"x":5,"y":-13},{"x":20,"y":5},{"x":-20,"y":-4},{"x":7,"y":30},{"x":26,"y":-9},{"x":38,"y":36},{"x":10,"y":77}],"type":"coastline"},{"arc":[{"x":267987,"y":188333},{"x":-133,"y":106},{"x":-47,"y":92},{"x":-45,"y":296},{"x":-40,"y":60},{"x":-178,"y":128},{"x":-33,"y":131},{"x":-81,"y":140},{"x":-219,"y":54},{"x":-36,"y":43},{"x":-114,"y":-11},{"x":-54,"y":71},{"x":-74,"y":-31},{"x":-327,"y":-19},{"x":-119,"y":-80},{"x":-66,"y":23}],"type":"area"},{"arc":[{"x":268216,"y":189204},{"x":-4,"y":19},{"x":18,"y":-36},{"x":-14,"y":17}],"type":"coastline"},{"arc":[{"x":267987,"y":188333},{"x":134,"y":71},{"x":40,"y":69},{"x":7,"y":88},{"x":66,"y":23},{"x":-17,"y":22},{"x":35,"y":20},{"x":30,"y":-16},{"x":-7,"y":35},{"x":48,"y":0},{"x":29,"y":59},{"x":-33,"y":26},{"x":78,"y":18},{"x":36,"y":102},{"x":-63,"y":38},{"x":-32,"y":126},{"x":-94,"y":104},{"x":25,"y":74},{"x":-54,"y":-9},{"x":21,"y":-5},{"x":-14,"y":-37},{"x":-13,"y":17},{"x":-61,"y":-17},{"x":-25,"y":28},{"x":-18,"y":54},{"x":21,"y":185},{"x":-68,"y":120},{"x":73,"y":44},{"x":-26,"y":70},{"x":-36,"y":14},{"x":-2,"y":35},{"x":-52,"y":-8},{"x":-11,"y":32},{"x":2,"y":-38},{"x":-73,"y":173},{"x":-64,"y":74},{"x":-117,"y":80},{"x":-66,"y":14},{"x":-45,"y":66},{"x":-46,"y":-4},{"x":-124,"y":68},{"x":-429,"y":57},{"x":-152,"y":-201},{"x":-17,"y":19},{"x":-3,"y":-32},{"x":-43,"y":-16},{"x":31,"y":63},{"x":-34,"y":-56},{"x":-31,"y":1},{"x":-93,"y":-171},{"x":-44,"y":9},{"x":-56,"y":-68},{"x":-73,"y":-7},{"x":-27,"y":-58},{"x":46,"y":-62},{"x":-13,"y":-18},{"x":-21,"y":15},{"x":-4,"y":-112},{"x":-55,"y":-151},{"x":-32,"y":-24}],"type":"coastline"},{"arc":[{"x":263606,"y":194407},{"x":13,"y":13},{"x":-17,"y":-58},{"x":21,"y":62},{"x":77,"y":-10},{"x":558,"y":-199},{"x":1285,"y":-564}],"type":"coastline"},{"arc":[{"x":248781,"y":221238},{"x":-21,"y":3}],"type":"area"},{"arc":[{"x":248760,"y":221241},{"x":-21,"y":-88},{"x":-162,"y":-216},{"x":-56,"y":-225},{"x":-50,"y":-60},{"x":-84,"y":-20},{"x":-103,"y":54},{"x":-11,"y":-76},{"x":-57,"y":-16},{"x":-31,"y":-56},{"x":-74,"y":-47},{"x":-62,"y":-114},{"x":-42,"y":-1},{"x":-18,"y":-38},{"x":-52,"y":-16},{"x":-79,"y":-127},{"x":-156,"y":-66},{"x":-207,"y":-11},{"x":-76,"y":-58}],"type":"admin"},{"arc":[{"x":247419,"y":220060},{"x":1,"y":-70},{"x":107,"y":-121},{"x":-4,"y":-118},{"x":91,"y":-39},{"x":136,"y":-157},{"x":-3,"y":-60},{"x":36,"y":-43},{"x":-37,"y":-25},{"x":36,"y":-52},{"x":-25,"y":-49},{"x":11,"y":-86},{"x":81,"y":-13},{"x":36,"y":-50},{"x":110,"y":-64},{"x":6,"y":-39},{"x":49,"y":-11},{"x":87,"y":37},{"x":77,"y":-19},{"x":53,"y":38},{"x":50,"y":-37},{"x":192,"y":64},{"x":104,"y":-85},{"x":14,"y":-61},{"x":110,"y":1},{"x":5,"y":-33},{"x":42,"y":6},{"x":13,"y":-40},{"x":161,"y":-100},{"x":33,"y":19},{"x":157,"y":-105},{"x":34,"y":55},{"x":190,"y":-134},{"x":123,"y":-139},{"x":60,"y":-145},{"x":-59,"y":-17},{"x":-3,"y":-27},{"x":-158,"y":-126},{"x":-68,"y":-114},{"x":-116,"y":-75},{"x":-88,"y":-138},{"x":37,"y":-97},{"x":-35,"y":-45},{"x":-20,"y":-152},{"x":47,"y":-79},{"x":-57,"y":-75},{"x":9,"y":-74},{"x":39,"y":-43},{"x":-89,"y":-108},{"x":61,"y":-128},{"x":63,"y":-60},{"x":6,"y":-115}],"type":"area"},{"arc":[{"x":251074,"y":218351},{"x":19,"y":137},{"x":53,"y":49},{"x":-78,"y":50},{"x":-29,"y":84},{"x":-129,"y":26},{"x":-126,"y":85},{"x":-71,"y":-15},{"x":-26,"y":36},{"x":2,"y":155},{"x":71,"y":47},{"x":101,"y":146},{"x":39,"y":14},{"x":-235,"y":622},{"x":-38,"y":-3},{"x":-82,"y":-72},{"x":-39,"y":22},{"x":-34,"y":85},{"x":-82,"y":28},{"x":-88,"y":90},{"x":-14,"y":69},{"x":-43,"y":45},{"x":-54,"y":2},{"x":-44,"y":-30},{"x":-170,"y":55},{"x":6,"y":146},{"x":-22,"y":26},{"x":-171,"y":-20},{"x":-49,"y":64},{"x":-99,"y":55},{"x":-108,"y":31},{"x":-105,"y":-24},{"x":-134,"y":7},{"x":-206,"y":62},{"x":-196,"y":102},{"x":-88,"y":109},{"x":-18,"y":78},{"x":-22,"y":317},{"x":50,"y":96},{"x":-4,"y":79},{"x":-30,"y":32}],"type":"area"},{"arc":[{"x":247419,"y":220060},{"x":-130,"y":4},{"x":-129,"y":49},{"x":-67,"y":68},{"x":-30,"y":-34},{"x":-82,"y":10},{"x":-50,"y":84},{"x":-74,"y":-30},{"x":-120,"y":32},{"x":-71,"y":-29},{"x":-95,"y":6},{"x":-138,"y":-116}],"type":"admin"},{"arc":[{"x":245723,"y":217797},{"x":85,"y":-224},{"x":14,"y":-180},{"x":34,"y":-46},{"x":53,"y":41},{"x":39,"y":-16},{"x":40,"y":-84}],"type":"admin"},{"arc":[{"x":245988,"y":217288},{"x":51,"y":-97},{"x":143,"y":35},{"x":35,"y":-157},{"x":98,"y":25},{"x":96,"y":-28},{"x":35,"y":-135},{"x":82,"y":-60},{"x":35,"y":-121},{"x":-36,"y":-30},{"x":0,"y":-40},{"x":-82,"y":-63},{"x":12,"y":-78},{"x":62,"y":-5},{"x":31,"y":-28},{"x":-15,"y":-37},{"x":113,"y":-148},{"x":61,"y":-35},{"x":23,"y":-72},{"x":61,"y":-39},{"x":1,"y":-51},{"x":208,"y":-128},{"x":174,"y":-48},{"x":44,"y":-160},{"x":81,"y":-51},{"x":25,"y":-91},{"x":83,"y":5},{"x":23,"y":-45},{"x":14,"y":26},{"x":57,"y":-9},{"x":107,"y":-131},{"x":112,"y":-14}],"type":"admin"},{"arc":[{"x":247722,"y":215478},{"x":43,"y":44},{"x":65,"y":5},{"x":21,"y":-36},{"x":59,"y":49},{"x":65,"y":-17},{"x":15,"y":65},{"x":-44,"y":23},{"x":-11,"y":38},{"x":78,"y":65},{"x":22,"y":77},{"x":-26,"y":160},{"x":81,"y":39},{"x":25,"y":62},{"x":45,"y":25},{"x":57,"y":-13},{"x":22,"y":31},{"x":71,"y":-83},{"x":-7,"y":-46},{"x":39,"y":-54}],"type":"area"},{"arc":[{"x":256812,"y":231639},{"x":-85,"y":-74},{"x":-115,"y":-48},{"x":-67,"y":-8},{"x":-26,"y":29},{"x":-74,"y":-13},{"x":-38,"y":20},{"x":-70,"y":-63},{"x":-83,"y":-2},{"x":-126,"y":-51},{"x":-66,"y":41},{"x":-64,"y":-5},{"x":-31,"y":-34},{"x":-111,"y":23},{"x":-142,"y":-86},{"x":8,"y":-75},{"x":-29,"y":-43},{"x":-76,"y":31},{"x":-86,"y":-91},{"x":-79,"y":-38},{"x":-17,"y":-41},{"x":-55,"y":9},{"x":-37,"y":-76},{"x":-69,"y":-28},{"x":-32,"y":14},{"x":-144,"y":-19},{"x":2,"y":40},{"x":-60,"y":3},{"x":-22,"y":45},{"x":-127,"y":-65},{"x":-2,"y":41},{"x":-50,"y":47},{"x":-96,"y":-166},{"x":-114,"y":27},{"x":-56,"y":-301},{"x":-38,"y":-23},{"x":-18,"y":-76},{"x":-32,"y":-11},{"x":-22,"y":-111},{"x":-114,"y":-61},{"x":-133,"y":-385},{"x":-39,"y":13},{"x":-65,"y":-25},{"x":-44,"y":-109},{"x":-102,"y":-22},{"x":-41,"y":-42},{"x":-16,"y":-136},{"x":-155,"y":-88},{"x":-121,"y":-21},{"x":-189,"y":-184},{"x":-217,"y":-81},{"x":-32,"y":-77},{"x":-84,"y":-49},{"x":-76,"y":-128},{"x":20,"y":-28},{"x":-17,"y":-217},{"x":-62,"y":-69},{"x":-191,"y":-35},{"x":-20,"y":-44},{"x":-171,"y":-14},{"x":11,"y":-64},{"x":-49,"y":-32},{"x":17,"y":-145},{"x":-110,"y":-109},{"x":-111,"y":-49},{"x":-64,"y":-57},{"x":-104,"y":-14},{"x":-96,"y":-90},{"x":-81,"y":25},{"x":-82,"y":-7},{"x":-103,"y":64},{"x":-98,"y":-182},{"x":-43,"y":-37},{"x":-37,"y":2},{"x":-37,"y":-56},{"x":-45,"y":-5},{"x":7,"y":-32},{"x":-61,"y":-86},{"x":-29,"y":-97},{"x":23,"y":-166},{"x":-50,"y":-77},{"x":13,"y":-94},{"x":-34,"y":0},{"x":-52,"y":-70},{"x":-63,"y":5},{"x":-18,"y":-121},{"x":-88,"y":7},{"x":-28,"y":-47},{"x":-67,"y":-11},{"x":-77,"y":-51},{"x":-104,"y":-189}],"type":"admin"},{"arc":[{"x":250934,"y":226874},{"x":-89,"y":128},{"x":-33,"y":165},{"x":-65,"y":-33},{"x":-148,"y":33},{"x":-66,"y":-87},{"x":-70,"y":-8},{"x":-48,"y":-56},{"x":-49,"y":-139},{"x":-120,"y":26},{"x":-33,"y":-37},{"x":15,"y":-43},{"x":-104,"y":-85},{"x":-67,"y":19},{"x":-53,"y":-16},{"x":-66,"y":38},{"x":-139,"y":-70},{"x":-14,"y":-28},{"x":39,"y":-54},{"x":-33,"y":-35},{"x":3,"y":-57},{"x":126,"y":-60},{"x":36,"y":9},{"x":0,"y":-87},{"x":-66,"y":-33},{"x":21,"y":-118},{"x":-69,"y":-12},{"x":-39,"y":-75},{"x":-71,"y":44},{"x":-52,"y":-71},{"x":-36,"y":54},{"x":-113,"y":-85},{"x":-4,"y":-47},{"x":-34,"y":-14},{"x":-75,"y":-364},{"x":48,"y":-154},{"x":13,"y":-243}],"type":"admin"},{"arc":[{"x":249479,"y":225279},{"x":25,"y":-48},{"x":733,"y":-654},{"x":151,"y":-314},{"x":276,"y":-20},{"x":-6,"y":-34},{"x":360,"y":-27},{"x":-35,"y":-611}],"type":"area"},{"arc":[{"x":250983,"y":223571},{"x":515,"y":-32}],"type":"area"},{"arc":[{"x":251498,"y":223539},{"x":-47,"y":513},{"x":-9,"y":577},{"x":34,"y":22},{"x":45,"y":71},{"x":-45,"y":-70},{"x":-52,"y":-16},{"x":55,"y":32},{"x":-5,"y":51},{"x":29,"y":-5},{"x":-38,"y":7},{"x":-14,"y":125},{"x":51,"y":562},{"x":123,"y":624},{"x":142,"y":108},{"x":111,"y":293},{"x":66,"y":18},{"x":51,"y":-24},{"x":57,"y":80},{"x":108,"y":77},{"x":9,"y":76},{"x":140,"y":251},{"x":75,"y":54},{"x":33,"y":82},{"x":170,"y":214},{"x":72,"y":27},{"x":85,"y":81},{"x":170,"y":48},{"x":124,"y":66},{"x":-7,"y":40},{"x":-40,"y":16},{"x":3,"y":45},{"x":113,"y":133},{"x":81,"y":23},{"x":23,"y":85},{"x":72,"y":79},{"x":68,"y":1},{"x":-13,"y":116},{"x":13,"y":22},{"x":32,"y":-26},{"x":0,"y":56},{"x":27,"y":-35},{"x":-18,"y":-42},{"x":26,"y":47},{"x":42,"y":11},{"x":-48,"y":65},{"x":29,"y":-38},{"x":-14,"y":49},{"x":66,"y":72},{"x":80,"y":49},{"x":68,"y":-21},{"x":55,"y":13},{"x":23,"y":54},{"x":41,"y":9},{"x":-14,"y":45},{"x":42,"y":-3},{"x":12,"y":72},{"x":31,"y":0},{"x":25,"y":153},{"x":40,"y":14},{"x":63,"y":101},{"x":51,"y":34},{"x":55,"y":84},{"x":-5,"y":60},{"x":58,"y":21},{"x":-3,"y":28},{"x":64,"y":52},{"x":45,"y":3},{"x":4,"y":77},{"x":140,"y":113},{"x":28,"y":122},{"x":62,"y":89},{"x":68,"y":45},{"x":39,"y":-23},{"x":-17,"y":31},{"x":41,"y":34},{"x":-13,"y":48},{"x":75,"y":46},{"x":45,"y":124},{"x":95,"y":88},{"x":15,"y":76},{"x":159,"y":293},{"x":254,"y":175},{"x":198,"y":81},{"x":63,"y":62},{"x":44,"y":-12},{"x":48,"y":51},{"x":59,"y":-11},{"x":59,"y":45},{"x":213,"y":291},{"x":69,"y":9},{"x":48,"y":63},{"x":55,"y":22},{"x":-2,"y":50},{"x":91,"y":93},{"x":80,"y":10},{"x":36,"y":73},{"x":51,"y":-25},{"x":77,"y":46},{"x":-14,"y":75},{"x":51,"y":84},{"x":82,"y":41},{"x":32,"y":-30},{"x":39,"y":7},{"x":21,"y":43},{"x":20,"y":-9},{"x":33,"y":35},{"x":38,"y":-10},{"x":29,"y":62},{"x":35,"y":-2},{"x":7,"y":28},{"x":21,"y":-16},{"x":60,"y":93},{"x":-50,"y":82}],"type":"coastline"},{"arc":[{"x":249479,"y":225279},{"x":-46,"y":-24},{"x":-207,"y":1},{"x":-118,"y":32},{"x":-77,"y":-14},{"x":-81,"y":36},{"x":-128,"y":-20},{"x":-61,"y":14},{"x":-47,"y":56},{"x":-167,"y":39},{"x":-52,"y":-14}],"type":"admin"},{"arc":[{"x":248495,"y":225385},{"x":-63,"y":-151},{"x":-99,"y":-111},{"x":-40,"y":-27},{"x":-103,"y":15},{"x":-43,"y":-187},{"x":-58,"y":-53},{"x":6,"y":-44},{"x":-100,"y":-132},{"x":-82,"y":-60},{"x":-51,"y":-142},{"x":-114,"y":-52},{"x":0,"y":-78},{"x":68,"y":-19},{"x":43,"y":-53},{"x":9,"y":-137},{"x":-184,"y":-132},{"x":-12,"y":-95},{"x":-125,"y":12},{"x":-107,"y":-230}],"type":"admin"},{"arc":[{"x":247440,"y":223709},{"x":88,"y":-70},{"x":47,"y":-81},{"x":19,"y":-86},{"x":-64,"y":-83},{"x":49,"y":-97},{"x":46,"y":-3},{"x":49,"y":-66},{"x":60,"y":8},{"x":79,"y":-61},{"x":107,"y":25},{"x":73,"y":-44},{"x":107,"y":-18},{"x":46,"y":-48},{"x":-21,"y":-46},{"x":65,"y":-199},{"x":85,"y":-2},{"x":114,"y":-56},{"x":32,"y":8}],"type":"admin"},{"arc":[{"x":248421,"y":222790},{"x":95,"y":88},{"x":56,"y":-27},{"x":141,"y":2},{"x":45,"y":-28},{"x":246,"y":74},{"x":182,"y":-14},{"x":112,"y":46},{"x":79,"y":-7},{"x":51,"y":37},{"x":10,"y":151},{"x":818,"y":-59},{"x":10,"y":141},{"x":124,"y":-7},{"x":31,"y":425},{"x":562,"y":-41}],"type":"area"},{"arc":[{"x":251934,"y":221564},{"x":-247,"y":857},{"x":-99,"y":471},{"x":-90,"y":647}],"type":"coastline"},{"arc":[{"x":248421,"y":222790},{"x":48,"y":-55},{"x":56,"y":-18},{"x":14,"y":-82},{"x":-23,"y":-20},{"x":91,"y":-65},{"x":-29,"y":-33},{"x":95,"y":-157},{"x":-54,"y":-276},{"x":30,"y":-27},{"x":-67,"y":-67},{"x":-40,"y":-145},{"x":23,"y":-145},{"x":112,"y":-64},{"x":25,"y":-49},{"x":52,"y":-196},{"x":-24,"y":-89},{"x":30,"y":-61}],"type":"admin"},{"arc":[{"x":248781,"y":221238},{"x":233,"y":383},{"x":160,"y":42},{"x":76,"y":-14},{"x":361,"y":154},{"x":135,"y":17}],"type":"area"},{"arc":[{"x":247722,"y":215478},{"x":0,"y":-69},{"x":-36,"y":2},{"x":-43,"y":-56},{"x":19,"y":-206},{"x":14,"y":-25},{"x":178,"y":-10},{"x":57,"y":-34},{"x":-19,"y":-66},{"x":53,"y":-62},{"x":-66,"y":-130},{"x":56,"y":-160},{"x":-72,"y":-31},{"x":-28,"y":-68},{"x":-77,"y":-68},{"x":52,"y":-63},{"x":-38,"y":-154},{"x":87,"y":-30},{"x":38,"y":-112},{"x":31,"y":-16},{"x":-19,"y":-181}],"type":"admin"},{"arc":[{"x":247909,"y":213939},{"x":68,"y":-91},{"x":153,"y":152},{"x":27,"y":68},{"x":49,"y":4},{"x":-22,"y":29},{"x":30,"y":141},{"x":122,"y":201},{"x":72,"y":-50},{"x":34,"y":57},{"x":33,"y":-23},{"x":25,"y":41},{"x":129,"y":-103},{"x":146,"y":-19},{"x":22,"y":92},{"x":167,"y":-16},{"x":48,"y":-6},{"x":-5,"y":-71},{"x":650,"y":-57}],"type":"area"},{"arc":[{"x":247909,"y":213939},{"x":-198,"y":65},{"x":-122,"y":-137},{"x":-82,"y":-16},{"x":-39,"y":-155},{"x":8,"y":-129},{"x":-113,"y":-200},{"x":60,"y":-230},{"x":-33,"y":-68},{"x":-108,"y":-83},{"x":-75,"y":8},{"x":-52,"y":-63},{"x":-53,"y":12},{"x":-43,"y":-19},{"x":-58,"y":26},{"x":-154,"y":-111},{"x":-74,"y":1},{"x":-7,"y":-171},{"x":39,"y":-44},{"x":-75,"y":-27},{"x":-47,"y":-69},{"x":-102,"y":-69},{"x":-44,"y":-107},{"x":-106,"y":-15},{"x":-161,"y":-73}],"type":"admin"},{"arc":[{"x":246270,"y":212265},{"x":55,"y":-150},{"x":113,"y":-131},{"x":42,"y":-118},{"x":108,"y":-59},{"x":11,"y":-48},{"x":138,"y":-120},{"x":29,"y":-77},{"x":-37,"y":-60},{"x":57,"y":-51},{"x":39,"y":-98},{"x":-38,"y":-35},{"x":14,"y":-100},{"x":-46,"y":-58},{"x":58,"y":-86},{"x":-12,"y":-98},{"x":96,"y":-53},{"x":-129,"y":-178},{"x":-14,"y":-145},{"x":87,"y":-229},{"x":5,"y":-112},{"x":71,"y":-86},{"x":-103,"y":-268}],"type":"admin"},{"arc":[{"x":246814,"y":209905},{"x":72,"y":-124},{"x":67,"y":24},{"x":82,"y":-20},{"x":47,"y":41},{"x":32,"y":-19},{"x":5,"y":-133},{"x":117,"y":-54},{"x":-26,"y":-253},{"x":51,"y":17},{"x":106,"y":-126}],"type":"admin"},{"arc":[{"x":251821,"y":213547},{"x":31,"y":-135},{"x":94,"y":-39},{"x":94,"y":26},{"x":11,"y":75},{"x":30,"y":2},{"x":31,"y":85},{"x":72,"y":-40},{"x":95,"y":46},{"x":79,"y":-25}],"type":"area"},{"arc":[{"x":252358,"y":213542},{"x":79,"y":270},{"x":-47,"y":89},{"x":34,"y":59},{"x":-14,"y":104},{"x":-32,"y":-14},{"x":-45,"y":58},{"x":9,"y":65},{"x":49,"y":67},{"x":76,"y":-38},{"x":26,"y":9},{"x":73,"y":103},{"x":67,"y":22},{"x":17,"y":106},{"x":59,"y":81},{"x":-3,"y":90},{"x":-51,"y":36},{"x":-17,"y":119},{"x":-60,"y":71},{"x":104,"y":34},{"x":38,"y":-29},{"x":94,"y":27},{"x":469,"y":235},{"x":258,"y":41},{"x":75,"y":-24},{"x":57,"y":69},{"x":77,"y":-16},{"x":34,"y":16},{"x":29,"y":-55},{"x":120,"y":26},{"x":87,"y":-22},{"x":300,"y":349}],"type":"area"},{"arc":[{"x":253784,"y":211717},{"x":-318,"y":847},{"x":9,"y":45},{"x":151,"y":1},{"x":-8,"y":100},{"x":-119,"y":5},{"x":51,"y":127},{"x":35,"y":35},{"x":43,"y":-3},{"x":88,"y":180},{"x":-33,"y":242},{"x":27,"y":74},{"x":-86,"y":50},{"x":-26,"y":78},{"x":-64,"y":-50},{"x":-40,"y":11},{"x":-63,"y":-56},{"x":-62,"y":21},{"x":-30,"y":-23},{"x":-44,"y":21},{"x":-85,"y":-22},{"x":-53,"y":16},{"x":-148,"y":-48},{"x":-40,"y":25},{"x":-110,"y":-115},{"x":-51,"y":-16},{"x":-143,"y":67},{"x":-60,"y":-27},{"x":-65,"y":38},{"x":-69,"y":-36},{"x":-52,"y":77},{"x":7,"y":92},{"x":-32,"y":63},{"x":-36,"y":6}],"type":"area"},{"arc":[{"x":251407,"y":208042},{"x":8,"y":87},{"x":136,"y":-4},{"x":184,"y":221},{"x":9,"y":66},{"x":70,"y":42},{"x":89,"y":15},{"x":86,"y":116},{"x":65,"y":-2},{"x":36,"y":-49},{"x":125,"y":-11},{"x":59,"y":-107},{"x":36,"y":17},{"x":21,"y":-16},{"x":40,"y":51},{"x":67,"y":-5},{"x":25,"y":30},{"x":17,"y":201},{"x":55,"y":74}],"type":"area"},{"arc":[{"x":255689,"y":213250},{"x":-252,"y":624},{"x":18,"y":47},{"x":-36,"y":-34},{"x":36,"y":108},{"x":-36,"y":-107},{"x":13,"y":53},{"x":-29,"y":2},{"x":33,"y":22},{"x":-49,"y":5},{"x":-51,"y":119},{"x":-506,"y":1409}],"type":"coastline"},{"arc":[{"x":255388,"y":206184},{"x":-41,"y":49},{"x":-22,"y":126},{"x":68,"y":149},{"x":-71,"y":80},{"x":-102,"y":30},{"x":12,"y":93},{"x":49,"y":74},{"x":-59,"y":114},{"x":39,"y":184},{"x":80,"y":84},{"x":13,"y":70},{"x":87,"y":32},{"x":11,"y":93},{"x":89,"y":12},{"x":32,"y":55},{"x":51,"y":-27},{"x":117,"y":-8},{"x":77,"y":60},{"x":20,"y":83},{"x":121,"y":175},{"x":4,"y":84},{"x":189,"y":334}],"type":"area"},{"arc":[{"x":256152,"y":208130},{"x":33,"y":190},{"x":-52,"y":29},{"x":-10,"y":106}],"type":"area"},{"arc":[{"x":256152,"y":208130},{"x":124,"y":-53},{"x":7,"y":-61},{"x":55,"y":-49},{"x":63,"y":30},{"x":45,"y":-42},{"x":29,"y":-119},{"x":157,"y":-25},{"x":41,"y":-64},{"x":63,"y":12},{"x":76,"y":-24},{"x":71,"y":34},{"x":22,"y":43},{"x":149,"y":-58},{"x":79,"y":57},{"x":76,"y":-7},{"x":320,"y":-221},{"x":-95,"y":-284},{"x":15,"y":-115},{"x":34,"y":-39},{"x":-18,"y":-138},{"x":-99,"y":-226},{"x":74,"y":-130},{"x":64,"y":-30},{"x":51,"y":-151},{"x":-37,"y":-91},{"x":44,"y":-70},{"x":109,"y":-70},{"x":54,"y":9},{"x":3,"y":-34},{"x":67,"y":-51},{"x":84,"y":-29},{"x":52,"y":-150},{"x":37,"y":53},{"x":66,"y":0}],"type":"area"},{"arc":[{"x":258034,"y":206037},{"x":50,"y":53},{"x":-63,"y":96},{"x":78,"y":111},{"x":-18,"y":86},{"x":30,"y":-31},{"x":68,"y":-1},{"x":117,"y":168},{"x":49,"y":-13},{"x":74,"y":83},{"x":-49,"y":16},{"x":-39,"y":52},{"x":-89,"y":10},{"x":-95,"y":67},{"x":59,"y":167},{"x":-79,"y":96},{"x":9,"y":101},{"x":-42,"y":49},{"x":30,"y":168},{"x":-30,"y":67},{"x":69,"y":114},{"x":89,"y":53},{"x":0,"y":84},{"x":68,"y":78},{"x":-47,"y":74},{"x":-50,"y":10},{"x":-26,"y":139},{"x":52,"y":67},{"x":75,"y":10},{"x":32,"y":145},{"x":52,"y":41},{"x":73,"y":155},{"x":142,"y":114},{"x":170,"y":43}],"type":"area"},{"arc":[{"x":258793,"y":208509},{"x":-725,"y":1175},{"x":-20,"y":65},{"x":33,"y":28},{"x":-114,"y":71},{"x":-7,"y":29},{"x":-47,"y":-6},{"x":34,"y":0},{"x":-9,"y":-30},{"x":20,"y":-3},{"x":-27,"y":-18},{"x":-28,"y":8},{"x":15,"y":29},{"x":-11,"y":-21},{"x":-61,"y":32},{"x":-281,"y":457}],"type":"coastline"},{"arc":[{"x":258040,"y":205932},{"x":-6,"y":105}],"type":"area"},{"arc":[{"x":261189,"y":205837},{"x":-120,"y":107},{"x":-33,"y":107},{"x":-39,"y":0},{"x":-122,"y":82},{"x":-31,"y":101},{"x":-2,"y":-16},{"x":-30,"y":20},{"x":-71,"y":129},{"x":-111,"y":58},{"x":-178,"y":191},{"x":-2,"y":104},{"x":-75,"y":59},{"x":-49,"y":-24},{"x":-57,"y":16},{"x":-70,"y":83},{"x":-1,"y":55},{"x":-40,"y":26},{"x":29,"y":-54},{"x":-19,"y":20},{"x":-37,"y":0},{"x":23,"y":14},{"x":-21,"y":1},{"x":-22,"y":-32},{"x":-40,"y":117},{"x":-120,"y":65},{"x":17,"y":35},{"x":-57,"y":50},{"x":37,"y":-56},{"x":-11,"y":-19},{"x":-36,"y":20},{"x":2,"y":31},{"x":-15,"y":-29},{"x":-301,"y":266},{"x":-246,"y":339},{"x":-102,"y":206},{"x":-45,"y":31},{"x":-22,"y":108},{"x":52,"y":73},{"x":-21,"y":-13},{"x":-2,"y":33},{"x":-48,"y":-36},{"x":-35,"y":-9},{"x":-11,"y":18},{"x":8,"y":-18},{"x":-30,"y":17},{"x":26,"y":10},{"x":-47,"y":2},{"x":-271,"y":384}],"type":"coastline"},{"arc":[{"x":235531,"y":184260},{"x":-109,"y":-11},{"x":-64,"y":-103},{"x":-78,"y":-37},{"x":-57,"y":-127},{"x":-37,"y":95},{"x":-112,"y":-5},{"x":-89,"y":58},{"x":-62,"y":6},{"x":-38,"y":54},{"x":-84,"y":35},{"x":-6,"y":109},{"x":-93,"y":-25},{"x":9,"y":-120},{"x":-129,"y":-2},{"x":-76,"y":-85},{"x":1,"y":-62},{"x":-85,"y":-85}],"type":"area"},{"arc":[{"x":234422,"y":183955},{"x":39,"y":-51},{"x":-15,"y":-91},{"x":96,"y":-15},{"x":-2,"y":-28},{"x":-21,"y":11},{"x":25,"y":-50},{"x":-3,"y":38},{"x":17,"y":10},{"x":-10,"y":-27},{"x":22,"y":-8},{"x":-11,"y":-18},{"x":43,"y":-57},{"x":18,"y":-376},{"x":-34,"y":-136},{"x":19,"y":-44},{"x":-40,"y":-33},{"x":31,"y":17},{"x":-22,"y":-17},{"x":17,"y":-26},{"x":-142,"y":-326},{"x":14,"y":-103},{"x":-26,"y":11},{"x":23,"y":-15},{"x":-21,"y":-54},{"x":-52,"y":-23},{"x":-36,"y":-67},{"x":45,"y":-157},{"x":65,"y":-31},{"x":35,"y":-123},{"x":123,"y":-161}],"type":"coastline"},{"arc":[{"x":234512,"y":187672},{"x":-237,"y":30},{"x":-76,"y":-28}],"type":"area"},{"arc":[{"x":234050,"y":184988},{"x":289,"y":47},{"x":485,"y":135},{"x":246,"y":661},{"x":95,"y":53},{"x":99,"y":-18},{"x":86,"y":82},{"x":4,"y":146},{"x":-52,"y":262},{"x":41,"y":29}],"type":"area"},{"arc":[{"x":233651,"y":190091},{"x":-30,"y":-21},{"x":95,"y":60},{"x":-65,"y":-39}],"type":"coastline"},{"arc":[{"x":234460,"y":191117},{"x":-478,"y":-812},{"x":-122,"y":-162},{"x":-41,"y":27},{"x":-102,"y":-57},{"x":102,"y":55},{"x":33,"y":-31},{"x":-16,"y":-18},{"x":-17,"y":25},{"x":-8,"y":-51},{"x":-37,"y":29},{"x":21,"y":-26},{"x":-24,"y":-32},{"x":-43,"y":31},{"x":55,"y":-76},{"x":-43,"y":-49},{"x":-56,"y":55},{"x":55,"y":-59},{"x":-39,"y":-63},{"x":-777,"y":-981},{"x":-14,"y":-146},{"x":-67,"y":-53},{"x":71,"y":24}],"type":"coastline"},{"arc":[{"x":234553,"y":194804},{"x":-13,"y":-30},{"x":28,"y":54},{"x":26,"y":240},{"x":118,"y":89},{"x":-120,"y":-88},{"x":-39,"y":-265}],"type":"coastline"},{"arc":[{"x":234777,"y":195206},{"x":-61,"y":-49},{"x":85,"y":66},{"x":-24,"y":-17}],"type":"coastline"},{"arc":[{"x":238178,"y":197964},{"x":-37,"y":80},{"x":-198,"y":69},{"x":30,"y":80},{"x":-17,"y":32},{"x":-37,"y":8},{"x":-139,"y":-66},{"x":-85,"y":77},{"x":-68,"y":26},{"x":-102,"y":-18},{"x":-62,"y":39},{"x":-112,"y":-98},{"x":-22,"y":-87},{"x":-108,"y":26},{"x":-17,"y":-74},{"x":-63,"y":23},{"x":-102,"y":-46},{"x":-25,"y":16},{"x":-124,"y":-160},{"x":-63,"y":-21},{"x":-46,"y":14},{"x":-33,"y":-74},{"x":-119,"y":-38},{"x":-5,"y":-71},{"x":-50,"y":-44},{"x":-20,"y":9},{"x":-39,"y":-59},{"x":-129,"y":0},{"x":-40,"y":-25},{"x":-28,"y":-109},{"x":-107,"y":-122},{"x":15,"y":-63},{"x":-112,"y":-75},{"x":-18,"y":-42},{"x":-58,"y":-17},{"x":12,"y":-50},{"x":-65,"y":-2},{"x":-65,"y":-39},{"x":-94,"y":33},{"x":-101,"y":-27},{"x":-29,"y":22},{"x":-81,"y":-1},{"x":-26,"y":54},{"x":-65,"y":-16},{"x":-81,"y":35},{"x":-131,"y":-56},{"x":-39,"y":-80},{"x":44,"y":-107},{"x":-61,"y":-126},{"x":72,"y":-259},{"x":-34,"y":-114},{"x":-143,"y":-81},{"x":-144,"y":9},{"x":-42,"y":-60},{"x":-37,"y":-170},{"x":-67,"y":-102},{"x":-74,"y":-18},{"x":-65,"y":-126},{"x":-55,"y":18},{"x":-59,"y":-34}],"type":"area"},{"arc":[{"x":234608,"y":195857},{"x":213,"y":-553},{"x":29,"y":-16},{"x":-59,"y":-42},{"x":27,"y":-47},{"x":-20,"y":37},{"x":39,"y":28},{"x":25,"y":-28},{"x":-35,"y":-26},{"x":102,"y":66},{"x":13,"y":-26},{"x":6,"y":-28},{"x":-42,"y":-30},{"x":21,"y":-22},{"x":-47,"y":-33},{"x":-14,"y":12},{"x":11,"y":-14},{"x":-78,"y":-60},{"x":8,"y":-24}],"type":"coastline"},{"arc":[{"x":236032,"y":195330},{"x":57,"y":-19},{"x":111,"y":23},{"x":60,"y":-27},{"x":18,"y":94},{"x":159,"y":162},{"x":72,"y":1},{"x":53,"y":-46},{"x":18,"y":51},{"x":70,"y":33},{"x":-12,"y":53},{"x":23,"y":23},{"x":165,"y":-6},{"x":66,"y":37},{"x":30,"y":118},{"x":63,"y":33},{"x":23,"y":50},{"x":78,"y":7},{"x":63,"y":89},{"x":119,"y":48},{"x":175,"y":213},{"x":95,"y":66},{"x":79,"y":8},{"x":17,"y":24},{"x":44,"y":-15},{"x":59,"y":46},{"x":28,"y":-7},{"x":45,"y":47},{"x":-6,"y":71},{"x":193,"y":152}],"type":"area"},{"arc":[{"x":233771,"y":184446},{"x":25,"y":-20},{"x":60,"y":51},{"x":36,"y":-40},{"x":-30,"y":39},{"x":17,"y":15},{"x":11,"y":-41},{"x":31,"y":31},{"x":100,"y":-60},{"x":164,"y":-152},{"x":54,"y":-120},{"x":183,"y":-194}],"type":"coastline"},{"arc":[{"x":238458,"y":200487},{"x":-46,"y":-70},{"x":-73,"y":-49},{"x":-62,"y":13},{"x":-41,"y":-27},{"x":-22,"y":52},{"x":-82,"y":13},{"x":-155,"y":-107},{"x":-68,"y":35},{"x":-63,"y":-68},{"x":-57,"y":8},{"x":-40,"y":43},{"x":-124,"y":25},{"x":-86,"y":-50},{"x":-187,"y":12},{"x":-30,"y":-31},{"x":-131,"y":0},{"x":-83,"y":-81},{"x":-138,"y":16},{"x":-109,"y":-227},{"x":-64,"y":-58},{"x":-7,"y":-64},{"x":-56,"y":-9},{"x":-54,"y":-110},{"x":-42,"y":-14},{"x":-9,"y":-74},{"x":-53,"y":-26},{"x":69,"y":-77},{"x":-44,"y":-52},{"x":27,"y":-53},{"x":-17,"y":-54},{"x":-133,"y":2},{"x":-21,"y":-58},{"x":-56,"y":-43},{"x":-52,"y":24},{"x":-50,"y":-237},{"x":-179,"y":-50},{"x":-66,"y":9},{"x":-24,"y":-83},{"x":-41,"y":-21},{"x":-41,"y":-88},{"x":-47,"y":-10},{"x":-56,"y":-59},{"x":-59,"y":18},{"x":-45,"y":-19},{"x":-55,"y":-126},{"x":-136,"y":5},{"x":-45,"y":-80},{"x":-66,"y":-42},{"x":-139,"y":7},{"x":-47,"y":-64},{"x":-90,"y":-12},{"x":-49,"y":-51},{"x":-73,"y":-1},{"x":-92,"y":-49},{"x":-227,"y":16},{"x":-138,"y":-252},{"x":5,"y":-82},{"x":-40,"y":12},{"x":-91,"y":-68},{"x":-43,"y":-176},{"x":24,"y":-68},{"x":-161,"y":-139}],"type":"admin"},{"arc":[{"x":233873,"y":196788},{"x":40,"y":4},{"x":48,"y":-48},{"x":124,"y":-255},{"x":28,"y":-30},{"x":-31,"y":68},{"x":17,"y":15},{"x":16,"y":-52},{"x":35,"y":1},{"x":105,"y":-126},{"x":21,"y":-83},{"x":208,"y":-132},{"x":124,"y":-293}],"type":"coastline"},{"arc":[{"x":236533,"y":204317},{"x":-81,"y":-37},{"x":-79,"y":7},{"x":-95,"y":-121},{"x":15,"y":-62},{"x":63,"y":-8},{"x":40,"y":-154},{"x":-29,"y":-133},{"x":29,"y":-179},{"x":-33,"y":-129},{"x":152,"y":-81},{"x":-23,"y":-88},{"x":32,"y":-72},{"x":-25,"y":-54},{"x":-104,"y":-57},{"x":-1,"y":-109},{"x":-87,"y":-58},{"x":-177,"y":-39},{"x":-27,"y":-118},{"x":-73,"y":-8},{"x":-59,"y":22},{"x":-43,"y":-74},{"x":-60,"y":2},{"x":-36,"y":28},{"x":-52,"y":-27},{"x":-60,"y":47},{"x":-97,"y":-80},{"x":-96,"y":84},{"x":-90,"y":-80},{"x":-158,"y":30},{"x":-91,"y":-150},{"x":39,"y":-81},{"x":-31,"y":-106},{"x":16,"y":-179},{"x":-47,"y":-9},{"x":-22,"y":-42},{"x":-98,"y":-62}],"type":"area"},{"arc":[{"x":235841,"y":205031},{"x":-135,"y":-55},{"x":-52,"y":-56},{"x":-69,"y":-16}],"type":"area"},{"arc":[{"x":235585,"y":204904},{"x":47,"y":-150},{"x":-47,"y":-106},{"x":9,"y":-51},{"x":-66,"y":-57},{"x":-14,"y":-121},{"x":37,"y":-78},{"x":-19,"y":-63},{"x":-81,"y":-181},{"x":-122,"y":-102},{"x":-79,"y":-30},{"x":-62,"y":-108},{"x":-97,"y":-69},{"x":-91,"y":-155},{"x":-141,"y":-92},{"x":10,"y":-178},{"x":-21,"y":-128},{"x":-47,"y":-21},{"x":-21,"y":-172},{"x":-57,"y":-49},{"x":-90,"y":56},{"x":-113,"y":-82},{"x":-104,"y":-2},{"x":-213,"y":-91},{"x":-138,"y":108},{"x":-53,"y":-9},{"x":-55,"y":-48},{"x":-93,"y":71},{"x":-97,"y":-8},{"x":-119,"y":-141},{"x":-160,"y":-19},{"x":-121,"y":-139},{"x":23,"y":-99},{"x":-95,"y":-66},{"x":-37,"y":-161},{"x":-47,"y":-48},{"x":-62,"y":-18},{"x":-41,"y":-85},{"x":-171,"y":-72},{"x":-96,"y":-61},{"x":-16,"y":-44},{"x":-59,"y":17},{"x":-62,"y":-25},{"x":-18,"y":-96},{"x":-83,"y":-85},{"x":0,"y":-39},{"x":-63,"y":-58},{"x":-51,"y":15},{"x":18,"y":-97},{"x":-53,"y":-23},{"x":-54,"y":9},{"x":-87,"y":-139},{"x":-101,"y":-29},{"x":-261,"y":-405},{"x":-36,"y":-10},{"x":-52,"y":-74},{"x":-27,"y":-94},{"x":-41,"y":-63},{"x":-29,"y":-1},{"x":-64,"y":-134},{"x":-150,"y":-114}],"type":"area"},{"arc":[{"x":231552,"y":200590},{"x":141,"y":-173},{"x":79,"y":-180},{"x":68,"y":-67},{"x":122,"y":-218},{"x":-7,"y":56},{"x":9,"y":-31},{"x":35,"y":6},{"x":129,"y":-101},{"x":228,"y":-252},{"x":105,"y":-167},{"x":72,"y":-34}],"type":"coastline"},{"arc":[{"x":231887,"y":207468},{"x":-234,"y":106},{"x":-73,"y":154},{"x":-105,"y":28},{"x":-122,"y":117},{"x":-3,"y":93},{"x":-73,"y":13},{"x":-56,"y":42},{"x":-121,"y":16},{"x":4,"y":73},{"x":-56,"y":39},{"x":-43,"y":96},{"x":-138,"y":13},{"x":-61,"y":167},{"x":-6,"y":146},{"x":-27,"y":26},{"x":-47,"y":35},{"x":-115,"y":-9},{"x":-132,"y":57}],"type":"area"},{"arc":[{"x":230479,"y":208680},{"x":-162,"y":-178},{"x":-8,"y":-100},{"x":-54,"y":-74},{"x":8,"y":-82},{"x":-86,"y":-22},{"x":-129,"y":-97},{"x":54,"y":-382},{"x":-25,"y":-66},{"x":-73,"y":-13},{"x":16,"y":-96},{"x":-47,"y":-87},{"x":-1,"y":-94},{"x":-76,"y":-19},{"x":26,"y":-97},{"x":-73,"y":-130},{"x":42,"y":-82},{"x":-87,"y":-65},{"x":-13,"y":-45},{"x":-11,"y":-134},{"x":35,"y":-40},{"x":-128,"y":-112},{"x":-23,"y":-59},{"x":-62,"y":-30},{"x":-94,"y":-168},{"x":5,"y":-40},{"x":-85,"y":-22},{"x":-7,"y":-46},{"x":-152,"y":-67},{"x":-74,"y":45},{"x":-147,"y":-170},{"x":-44,"y":4},{"x":-96,"y":-50}],"type":"area"},{"arc":[{"x":228908,"y":206062},{"x":56,"y":-232},{"x":14,"y":-276},{"x":186,"y":-278},{"x":108,"y":-333},{"x":-36,"y":141},{"x":24,"y":19},{"x":-28,"y":25},{"x":64,"y":-31},{"x":-34,"y":-28},{"x":81,"y":-48},{"x":-43,"y":-56},{"x":48,"y":63},{"x":49,"y":-37},{"x":34,"y":-278},{"x":84,"y":-95},{"x":22,"y":-72},{"x":-10,"y":-199},{"x":11,"y":27},{"x":-7,"y":-23},{"x":78,"y":-80},{"x":1,"y":-205},{"x":93,"y":-135},{"x":-9,"y":37},{"x":136,"y":-126}],"type":"coastline"},{"arc":[{"x":229830,"y":203842},{"x":59,"y":3},{"x":62,"y":49},{"x":47,"y":171},{"x":43,"y":14},{"x":69,"y":-32},{"x":82,"y":132},{"x":49,"y":23},{"x":-23,"y":158},{"x":51,"y":51},{"x":-1,"y":63},{"x":28,"y":-8},{"x":122,"y":117},{"x":65,"y":81},{"x":-13,"y":29},{"x":83,"y":29},{"x":26,"y":51},{"x":125,"y":-37},{"x":33,"y":72},{"x":115,"y":35},{"x":52,"y":59},{"x":103,"y":-11},{"x":36,"y":51},{"x":70,"y":18},{"x":45,"y":113},{"x":80,"y":3},{"x":61,"y":-48},{"x":77,"y":24},{"x":28,"y":-35},{"x":130,"y":77},{"x":100,"y":-5},{"x":15,"y":54},{"x":181,"y":113},{"x":64,"y":2},{"x":90,"y":75},{"x":49,"y":-9},{"x":0,"y":-32},{"x":90,"y":-58},{"x":119,"y":49},{"x":47,"y":-72},{"x":109,"y":-47},{"x":135,"y":14},{"x":30,"y":-28},{"x":91,"y":30},{"x":49,"y":169},{"x":-14,"y":62},{"x":62,"y":159},{"x":72,"y":57},{"x":50,"y":106},{"x":-32,"y":89},{"x":68,"y":106},{"x":2,"y":161},{"x":79,"y":34},{"x":66,"y":-12},{"x":31,"y":140}],"type":"area"},{"arc":[{"x":233087,"y":206251},{"x":-153,"y":66},{"x":-54,"y":54},{"x":-10,"y":52},{"x":-54,"y":-8},{"x":-50,"y":47},{"x":-156,"y":36},{"x":72,"y":195},{"x":-59,"y":65},{"x":-28,"y":164},{"x":-162,"y":31},{"x":-46,"y":75},{"x":-111,"y":69},{"x":-2,"y":30},{"x":-133,"y":35},{"x":-61,"y":86},{"x":-81,"y":34},{"x":-84,"y":80},{"x":-28,"y":106}],"type":"area"},{"arc":[{"x":229604,"y":209529},{"x":-90,"y":-224},{"x":-55,"y":-30},{"x":-53,"y":15},{"x":-50,"y":-47},{"x":-109,"y":68},{"x":-85,"y":-9},{"x":-51,"y":49},{"x":-24,"y":-14},{"x":-150,"y":95},{"x":-78,"y":-19},{"x":-19,"y":-85},{"x":-145,"y":-83},{"x":-77,"y":59},{"x":-17,"y":132},{"x":-92,"y":135},{"x":-98,"y":-58},{"x":-80,"y":-6},{"x":138,"y":-79},{"x":-69,"y":-78},{"x":1,"y":-57},{"x":-152,"y":-49},{"x":-80,"y":-83},{"x":18,"y":-94},{"x":-52,"y":-76},{"x":-19,"y":-199},{"x":54,"y":-354},{"x":-60,"y":-143},{"x":-67,"y":-30},{"x":-85,"y":-94}],"type":"area"},{"arc":[{"x":227958,"y":208171},{"x":21,"y":-77},{"x":0,"y":46},{"x":155,"y":-287},{"x":77,"y":-291},{"x":30,"y":-4},{"x":48,"y":-87},{"x":87,"y":-20},{"x":80,"y":-113},{"x":-4,"y":-31},{"x":-15,"y":18},{"x":39,"y":-84},{"x":136,"y":-101},{"x":56,"y":-13},{"x":35,"y":-57},{"x":76,"y":-319},{"x":-24,"y":-89},{"x":-53,"y":-1},{"x":37,"y":-36},{"x":-1,"y":-94},{"x":2,"y":94},{"x":41,"y":13},{"x":20,"y":-75},{"x":-21,"y":46},{"x":-21,"y":-4},{"x":-4,"y":-54},{"x":78,"y":12},{"x":35,"y":-52},{"x":-20,"y":-49},{"x":24,"y":-221},{"x":-24,"y":-57},{"x":60,"y":-122}],"type":"coastline"},{"arc":[{"x":230479,"y":208680},{"x":-24,"y":160},{"x":-80,"y":171},{"x":-144,"y":-15},{"x":-165,"y":116},{"x":-56,"y":70},{"x":6,"y":135},{"x":-59,"y":77},{"x":-159,"y":22},{"x":-194,"y":113}],"type":"area"},{"arc":[{"x":229211,"y":210821},{"x":-67,"y":-16},{"x":-35,"y":38},{"x":-72,"y":-46},{"x":-295,"y":-52},{"x":-26,"y":41},{"x":10,"y":-38},{"x":-78,"y":62},{"x":-133,"y":-66},{"x":-119,"y":-5},{"x":-47,"y":-37},{"x":-204,"y":-52},{"x":-74,"y":3},{"x":-83,"y":46},{"x":-55,"y":-30},{"x":-65,"y":28},{"x":-40,"y":-39},{"x":-41,"y":17},{"x":-42,"y":-100},{"x":-52,"y":-15},{"x":48,"y":11},{"x":-1,"y":-35},{"x":-20,"y":22},{"x":11,"y":-47},{"x":-28,"y":1},{"x":-2,"y":37},{"x":-1,"y":-46},{"x":-94,"y":-58},{"x":-61,"y":20},{"x":-30,"y":-57},{"x":-30,"y":-2},{"x":7,"y":-49},{"x":-71,"y":-84},{"x":-259,"y":-152},{"x":-402,"y":-125},{"x":-227,"y":-39},{"x":-82,"y":2},{"x":-81,"y":58},{"x":-26,"y":-24},{"x":-114,"y":55},{"x":0,"y":-79},{"x":33,"y":0},{"x":153,"y":-130},{"x":34,"y":-67},{"x":73,"y":-26},{"x":-3,"y":-36},{"x":-20,"y":19},{"x":21,"y":-30},{"x":51,"y":-4},{"x":2,"y":-56},{"x":46,"y":-30},{"x":30,"y":-110},{"x":78,"y":-28},{"x":44,"y":-114},{"x":100,"y":-51},{"x":96,"y":-145},{"x":80,"y":-9},{"x":32,"y":-35},{"x":45,"y":21},{"x":72,"y":-29},{"x":186,"y":-143},{"x":-18,"y":23},{"x":38,"y":-7},{"x":22,"y":-41},{"x":-46,"y":10},{"x":38,"y":-29},{"x":60,"y":-7},{"x":61,"y":-57},{"x":91,"y":-163},{"x":72,"y":-65},{"x":30,"y":-110},{"x":20,"y":-19},{"x":-17,"y":30},{"x":29,"y":-7},{"x":-10,"y":-15},{"x":22,"y":5},{"x":46,"y":-60},{"x":88,"y":-231},{"x":49,"y":-52}],"type":"coastline"},{"arc":[{"x":229604,"y":209529},{"x":-30,"y":77},{"x":-130,"y":140},{"x":53,"y":104},{"x":-13,"y":101},{"x":-73,"y":102},{"x":-91,"y":35},{"x":27,"y":63},{"x":-25,"y":70},{"x":-75,"y":4},{"x":-27,"y":32},{"x":99,"y":250},{"x":-77,"y":115},{"x":-26,"y":111},{"x":23,"y":56},{"x":-28,"y":32}],"type":"area"},{"arc":[{"x":235585,"y":204904},{"x":-47,"y":-2},{"x":-38,"y":48},{"x":-155,"y":-13},{"x":-126,"y":146},{"x":-89,"y":2},{"x":-35,"y":-28},{"x":-44,"y":50},{"x":-20,"y":177},{"x":-53,"y":55},{"x":-245,"y":69},{"x":-101,"y":99},{"x":-137,"y":16},{"x":-61,"y":54},{"x":12,"y":44},{"x":-42,"y":41}],"type":"area"},{"arc":[{"x":234404,"y":205662},{"x":-157,"y":40},{"x":-77,"y":-23},{"x":-39,"y":15},{"x":-92,"y":368},{"x":-126,"y":-18},{"x":-43,"y":20},{"x":-62,"y":-24},{"x":-42,"y":-52},{"x":-83,"y":-6},{"x":-76,"y":91},{"x":-105,"y":65},{"x":-20,"y":146},{"x":-47,"y":35},{"x":-78,"y":26},{"x":-78,"y":-14},{"x":-51,"y":-43},{"x":-108,"y":-8},{"x":-33,"y":-29}],"type":"area"},{"arc":[{"x":229830,"y":203842},{"x":122,"y":-176},{"x":23,"y":0},{"x":5,"y":-41},{"x":23,"y":3},{"x":38,"y":-97},{"x":-17,"y":-53},{"x":12,"y":28},{"x":233,"y":-338},{"x":55,"y":-292},{"x":-31,"y":-24},{"x":3,"y":-31},{"x":6,"y":31},{"x":24,"y":-38},{"x":1,"y":24},{"x":22,"y":-12},{"x":43,"y":-147},{"x":167,"y":-276},{"x":-13,"y":-145},{"x":45,"y":-128},{"x":40,"y":-7},{"x":3,"y":-22},{"x":-21,"y":11},{"x":40,"y":-56},{"x":55,"y":-21},{"x":209,"y":-222},{"x":-1,"y":-22},{"x":19,"y":-26},{"x":-17,"y":41},{"x":21,"y":-4},{"x":-1,"y":-9},{"x":11,"y":8},{"x":-12,"y":-27},{"x":30,"y":29},{"x":39,"y":-31},{"x":78,"y":-182},{"x":7,"y":-256},{"x":93,"y":-120},{"x":103,"y":-225},{"x":-16,"y":-19},{"x":8,"y":-36},{"x":-7,"y":36},{"x":10,"y":11},{"x":-2,"y":-24},{"x":24,"y":0},{"x":108,"y":-83},{"x":140,"y":-284}],"type":"coastline"},{"arc":[{"x":241768,"y":209026},{"x":-146,"y":642},{"x":-38,"y":17},{"x":-50,"y":-24},{"x":-114,"y":53},{"x":-204,"y":-62},{"x":-96,"y":-65},{"x":-158,"y":-21},{"x":-57,"y":396},{"x":498,"y":90},{"x":-117,"y":776},{"x":-50,"y":-29},{"x":-43,"y":53},{"x":-107,"y":4},{"x":-20,"y":20},{"x":-55,"y":-5},{"x":-70,"y":-50},{"x":-80,"y":95},{"x":-17,"y":113}],"type":"area"},{"arc":[{"x":240844,"y":211029},{"x":-208,"y":-42},{"x":-64,"y":15},{"x":-15,"y":41},{"x":-199,"y":68},{"x":-49,"y":47},{"x":-65,"y":-3},{"x":-58,"y":-47},{"x":-20,"y":73},{"x":-36,"y":7},{"x":-25,"y":42},{"x":-35,"y":-18},{"x":-103,"y":44},{"x":-33,"y":-13},{"x":-94,"y":72},{"x":-41,"y":-12},{"x":-67,"y":48},{"x":-111,"y":-78},{"x":-83,"y":31},{"x":-78,"y":-38},{"x":-63,"y":-258},{"x":38,"y":-58},{"x":-61,"y":-115},{"x":-120,"y":0},{"x":-65,"y":-57},{"x":-61,"y":33},{"x":-95,"y":-23}],"type":"area"},{"arc":[{"x":239033,"y":210788},{"x":-48,"y":-67},{"x":-82,"y":-6},{"x":-13,"y":-78},{"x":94,"y":-125},{"x":-3,"y":-70},{"x":47,"y":-45},{"x":-44,"y":-319},{"x":25,"y":-55}],"type":"area"},{"arc":[{"x":239216,"y":208993},{"x":144,"y":-166},{"x":85,"y":-22},{"x":132,"y":-82},{"x":264,"y":-209},{"x":58,"y":-62},{"x":7,"y":-136},{"x":72,"y":-120}],"type":"area"},{"arc":[{"x":239978,"y":208196},{"x":650,"y":-70},{"x":63,"y":-90},{"x":32,"y":-148},{"x":1224,"y":356},{"x":-179,"y":782}],"type":"area"},{"arc":[{"x":242213,"y":211522},{"x":-143,"y":-36},{"x":-438,"y":18},{"x":-154,"y":129},{"x":-127,"y":30},{"x":-51,"y":106}],"type":"area"},{"arc":[{"x":241300,"y":211769},{"x":-374,"y":-299},{"x":-42,"y":-284},{"x":-60,"y":-94},{"x":20,"y":-63}],"type":"area"},{"arc":[{"x":241768,"y":209026},{"x":176,"y":-209},{"x":166,"y":-121},{"x":237,"y":33},{"x":90,"y":-64},{"x":94,"y":16},{"x":145,"y":-95},{"x":57,"y":4},{"x":157,"y":-91},{"x":107,"y":35}],"type":"area"},{"arc":[{"x":242997,"y":208534},{"x":-372,"y":1627},{"x":-78,"y":-47},{"x":-174,"y":1212},{"x":-34,"y":31},{"x":-98,"y":-39},{"x":-28,"y":204}],"type":"area"},{"arc":[{"x":246814,"y":209905},{"x":-232,"y":-92},{"x":-177,"y":61},{"x":-79,"y":-8},{"x":-157,"y":72},{"x":-55,"y":-3},{"x":-10,"y":-93},{"x":-80,"y":-51},{"x":-253,"y":-91},{"x":-117,"y":31},{"x":-130,"y":-77},{"x":-240,"y":263},{"x":-128,"y":-55},{"x":-138,"y":132},{"x":-156,"y":-6},{"x":-39,"y":-45},{"x":-87,"y":-24},{"x":-5,"y":105},{"x":-124,"y":41},{"x":2,"y":84},{"x":-57,"y":100},{"x":-19,"y":146},{"x":-169,"y":40},{"x":-31,"y":46},{"x":-51,"y":3},{"x":-90,"y":169},{"x":-157,"y":114},{"x":-45,"y":14},{"x":-47,"y":-16},{"x":-49,"y":-80},{"x":-80,"y":19},{"x":-101,"y":714},{"x":-40,"y":97},{"x":-140,"y":125},{"x":-48,"y":90},{"x":-543,"y":-102},{"x":-8,"y":92}],"type":"area"},{"arc":[{"x":242934,"y":211720},{"x":-202,"y":-100},{"x":-113,"y":-10},{"x":-61,"y":66},{"x":-87,"y":-126},{"x":-103,"y":45},{"x":-33,"y":-33},{"x":-55,"y":2},{"x":-67,"y":-42}],"type":"area"},{"arc":[{"x":242997,"y":208534},{"x":88,"y":54},{"x":262,"y":86},{"x":258,"y":23},{"x":24,"y":28},{"x":44,"y":-19},{"x":32,"y":68},{"x":86,"y":18},{"x":83,"y":162},{"x":101,"y":-23},{"x":28,"y":18},{"x":62,"y":-79},{"x":85,"y":-19},{"x":122,"y":-77},{"x":66,"y":-66},{"x":16,"y":-74},{"x":98,"y":5},{"x":64,"y":-64},{"x":41,"y":0},{"x":168,"y":-115},{"x":50,"y":-196},{"x":-70,"y":-72},{"x":-1,"y":-103},{"x":152,"y":-289}],"type":"area"},{"arc":[{"x":244856,"y":207800},{"x":134,"y":2},{"x":50,"y":-50},{"x":83,"y":39},{"x":123,"y":-52},{"x":219,"y":96},{"x":159,"y":-31},{"x":117,"y":122},{"x":19,"y":-27},{"x":69,"y":41},{"x":69,"y":-30},{"x":114,"y":-111},{"x":68,"y":-3},{"x":187,"y":-79},{"x":86,"y":-139},{"x":67,"y":-20},{"x":57,"y":50},{"x":51,"y":3}],"type":"area"},{"arc":[{"x":239978,"y":208196},{"x":302,"y":-506}],"type":"area"},{"arc":[{"x":240280,"y":207690},{"x":270,"y":-314},{"x":106,"y":-183},{"x":140,"y":-143},{"x":99,"y":-59},{"x":52,"y":-71},{"x":59,"y":0},{"x":43,"y":-31},{"x":102,"y":-114},{"x":161,"y":-45},{"x":52,"y":10}],"type":"area"},{"arc":[{"x":241364,"y":206740},{"x":104,"y":-27},{"x":39,"y":20},{"x":122,"y":-41},{"x":97,"y":21},{"x":42,"y":-44},{"x":50,"y":56},{"x":72,"y":-22},{"x":204,"y":139},{"x":11,"y":99},{"x":47,"y":-8},{"x":44,"y":55},{"x":169,"y":-3},{"x":-17,"y":164},{"x":69,"y":9},{"x":29,"y":38},{"x":30,"y":-27},{"x":49,"y":31},{"x":89,"y":-85},{"x":33,"y":98},{"x":64,"y":72},{"x":69,"y":20},{"x":13,"y":47},{"x":91,"y":-114},{"x":21,"y":34},{"x":42,"y":-16},{"x":68,"y":-77},{"x":51,"y":72},{"x":26,"y":-17},{"x":39,"y":32},{"x":98,"y":-58},{"x":77,"y":59},{"x":88,"y":1},{"x":60,"y":-61},{"x":109,"y":44},{"x":44,"y":84},{"x":172,"y":14},{"x":76,"y":45},{"x":61,"y":177},{"x":38,"y":-4},{"x":36,"y":31},{"x":48,"y":-15},{"x":38,"y":27},{"x":92,"y":-71},{"x":44,"y":0},{"x":50,"y":-62},{"x":61,"y":-2},{"x":32,"y":53},{"x":75,"y":-5},{"x":49,"y":38},{"x":114,"y":-22},{"x":60,"y":163},{"x":62,"y":37},{"x":91,"y":10},{"x":50,"y":51}],"type":"area"},{"arc":[{"x":241364,"y":206740},{"x":-36,"y":-49},{"x":18,"y":-39},{"x":-24,"y":-52},{"x":-80,"y":-7},{"x":-71,"y":49},{"x":-92,"y":-33},{"x":-61,"y":32},{"x":-67,"y":-345},{"x":-223,"y":96},{"x":-111,"y":-415},{"x":-100,"y":57},{"x":-32,"y":-58},{"x":-53,"y":37},{"x":-48,"y":-72},{"x":-64,"y":65},{"x":-23,"y":-64},{"x":17,"y":-132},{"x":-42,"y":-166},{"x":14,"y":-98},{"x":-110,"y":-193},{"x":-79,"y":-63},{"x":-66,"y":-138},{"x":-25,"y":-222}],"type":"area"},{"arc":[{"x":240280,"y":207690},{"x":-280,"y":31},{"x":-28,"y":-303},{"x":-605,"y":64},{"x":-41,"y":-427},{"x":-149,"y":141},{"x":24,"y":62},{"x":-75,"y":87},{"x":-29,"y":31},{"x":-66,"y":9},{"x":-19,"y":73},{"x":-65,"y":7},{"x":24,"y":-184},{"x":-19,"y":-16},{"x":-40,"y":54},{"x":-23,"y":-19},{"x":-28,"y":30},{"x":-41,"y":-36},{"x":59,"y":-47},{"x":42,"y":-106},{"x":-23,"y":-79},{"x":20,"y":-38},{"x":-24,"y":3},{"x":-4,"y":-29},{"x":33,"y":-29},{"x":-71,"y":-65},{"x":-50,"y":70},{"x":16,"y":51},{"x":50,"y":-8},{"x":-3,"y":76},{"x":-157,"y":-136},{"x":-75,"y":26},{"x":42,"y":78},{"x":-25,"y":20},{"x":-34,"y":-56},{"x":-43,"y":-8},{"x":-141,"y":-128},{"x":-73,"y":-116},{"x":-17,"y":-88},{"x":-36,"y":-22},{"x":-83,"y":174},{"x":-94,"y":-58},{"x":-61,"y":123},{"x":-267,"y":-167},{"x":35,"y":-110},{"x":107,"y":-130},{"x":-75,"y":-146},{"x":52,"y":-71},{"x":10,"y":-227},{"x":45,"y":-207},{"x":53,"y":-75},{"x":102,"y":-65},{"x":30,"y":-157},{"x":90,"y":-69},{"x":-70,"y":-227}],"type":"area"},{"arc":[{"x":236037,"y":209444},{"x":-7,"y":-35},{"x":-40,"y":-12},{"x":7,"y":-32},{"x":-394,"y":-208},{"x":-360,"y":-250},{"x":-127,"y":-168},{"x":-72,"y":64},{"x":-177,"y":-239},{"x":-34,"y":3},{"x":-45,"y":51},{"x":-97,"y":-129},{"x":85,"y":-79},{"x":-28,"y":-26},{"x":-41,"y":-187},{"x":1,"y":-139},{"x":-78,"y":-169}],"type":"area"},{"arc":[{"x":234630,"y":207889},{"x":-26,"y":-113},{"x":58,"y":-71},{"x":-82,"y":-152},{"x":-37,"y":6},{"x":-43,"y":-65},{"x":55,"y":-254},{"x":-58,"y":-73},{"x":-35,"y":-118},{"x":52,"y":-80},{"x":-54,"y":-112},{"x":-66,"y":-31},{"x":-116,"y":-115},{"x":17,"y":-98},{"x":86,"y":-73},{"x":-17,"y":-176},{"x":26,"y":-145},{"x":96,"y":-135},{"x":15,"y":-178},{"x":-53,"y":-69},{"x":-44,"y":-175}],"type":"area"},{"arc":[{"x":234408,"y":209769},{"x":39,"y":-174},{"x":4,"y":-439},{"x":41,"y":-205},{"x":-38,"y":-272},{"x":87,"y":-198},{"x":-55,"y":-145},{"x":37,"y":-50},{"x":-14,"y":-238},{"x":121,"y":-159}],"type":"area"},{"arc":[{"x":236367,"y":210039},{"x":-88,"y":374},{"x":-142,"y":-56},{"x":-241,"y":-20},{"x":-613,"y":-162},{"x":-74,"y":80},{"x":-40,"y":341},{"x":-64,"y":19},{"x":-262,"y":-53},{"x":2,"y":-49},{"x":-22,"y":-5},{"x":-48,"y":40},{"x":-90,"y":-25},{"x":10,"y":-72},{"x":-38,"y":-57},{"x":1,"y":-73},{"x":-29,"y":6},{"x":5,"y":-28},{"x":-45,"y":-28},{"x":-69,"y":-152},{"x":17,"y":-36},{"x":-137,"y":-241},{"x":31,"y":-60},{"x":-23,"y":-13}],"type":"area"},{"arc":[{"x":234443,"y":212889},{"x":-1063,"y":-828},{"x":-155,"y":-106},{"x":-40,"y":2},{"x":35,"y":-21},{"x":-67,"y":17},{"x":3,"y":-23},{"x":-66,"y":-49},{"x":-524,"y":-327},{"x":-40,"y":-15},{"x":-19,"y":19},{"x":-21,"y":-38},{"x":25,"y":51},{"x":-72,"y":-83}],"type":"coastline"},{"arc":[{"x":232439,"y":211488},{"x":57,"y":-26},{"x":74,"y":-181},{"x":65,"y":-11},{"x":40,"y":-108},{"x":-36,"y":-114},{"x":73,"y":-161},{"x":56,"y":-35},{"x":-25,"y":-89},{"x":40,"y":-94},{"x":45,"y":-21},{"x":-13,"y":-106},{"x":45,"y":-34},{"x":-31,"y":-13},{"x":10,"y":-97},{"x":-48,"y":-129},{"x":39,"y":-83},{"x":-34,"y":-82},{"x":35,"y":-74},{"x":-61,"y":-244},{"x":24,"y":-32},{"x":-5,"y":-66},{"x":-29,"y":-17},{"x":24,"y":-64},{"x":-59,"y":-113},{"x":-29,"y":-29},{"x":-47,"y":2},{"x":-19,"y":-38},{"x":23,"y":-11},{"x":0,"y":-73},{"x":-27,"y":-49},{"x":23,"y":-54},{"x":-31,"y":-47},{"x":0,"y":-128},{"x":-78,"y":-60},{"x":4,"y":-78},{"x":-46,"y":-66},{"x":-10,"y":-125},{"x":52,"y":-85},{"x":9,"y":-81},{"x":-42,"y":-55},{"x":49,"y":-163},{"x":-29,"y":-62},{"x":76,"y":-80},{"x":-1,"y":-82},{"x":-35,"y":-61},{"x":-49,"y":-23},{"x":21,"y":-49},{"x":-68,"y":-81},{"x":8,"y":-64},{"x":-39,"y":-46},{"x":-217,"y":-1},{"x":-146,"y":-202},{"x":-190,"y":-135}],"type":"area"},{"arc":[{"x":234408,"y":209769},{"x":-65,"y":-39},{"x":-58,"y":120},{"x":-112,"y":-66},{"x":-91,"y":191},{"x":30,"y":17},{"x":-91,"y":187},{"x":27,"y":16},{"x":-176,"y":367},{"x":159,"y":410},{"x":-104,"y":180},{"x":13,"y":51},{"x":-60,"y":22},{"x":16,"y":64},{"x":-266,"y":89},{"x":232,"y":772},{"x":34,"y":-42},{"x":35,"y":10},{"x":73,"y":-119},{"x":42,"y":-2},{"x":67,"y":-88},{"x":45,"y":-12},{"x":50,"y":-102},{"x":56,"y":-7},{"x":7,"y":-66},{"x":75,"y":9},{"x":23,"y":-26},{"x":112,"y":27},{"x":45,"y":-38},{"x":91,"y":-27},{"x":36,"y":13},{"x":39,"y":-149},{"x":-62,"y":-66},{"x":77,"y":-170},{"x":88,"y":11},{"x":23,"y":-42},{"x":88,"y":-37},{"x":57,"y":3},{"x":1,"y":25},{"x":137,"y":54},{"x":74,"y":-14},{"x":79,"y":-60},{"x":51,"y":49},{"x":46,"y":4}],"type":"area"},{"arc":[{"x":235351,"y":211288},{"x":61,"y":38},{"x":10,"y":38},{"x":-31,"y":145},{"x":131,"y":-21},{"x":32,"y":86},{"x":199,"y":145},{"x":-38,"y":106},{"x":-118,"y":125},{"x":18,"y":59},{"x":-65,"y":15},{"x":-52,"y":-17},{"x":-65,"y":52},{"x":-53,"y":8},{"x":-129,"y":177},{"x":-63,"y":20},{"x":-3,"y":39},{"x":93,"y":74},{"x":-62,"y":98},{"x":-84,"y":-48},{"x":-77,"y":0},{"x":-26,"y":50},{"x":-34,"y":9},{"x":34,"y":24},{"x":-61,"y":108},{"x":-49,"y":-38},{"x":-69,"y":60},{"x":-2,"y":41},{"x":-53,"y":-1},{"x":-27,"y":28},{"x":-17,"y":48},{"x":27,"y":96},{"x":-128,"y":-52},{"x":-18,"y":35},{"x":-29,"y":-23},{"x":-46,"y":56},{"x":-76,"y":-41},{"x":-38,"y":62}],"type":"area"},{"arc":[{"x":232439,"y":211488},{"x":-489,"y":-269},{"x":-213,"y":-98},{"x":-81,"y":-11},{"x":-108,"y":-82},{"x":-396,"y":-182},{"x":-68,"y":-14},{"x":-52,"y":107},{"x":-39,"y":48},{"x":76,"y":-129},{"x":-23,"y":-14},{"x":-28,"y":69},{"x":-31,"y":-18},{"x":16,"y":-57},{"x":-28,"y":-17},{"x":-21,"y":46},{"x":-28,"y":-15},{"x":-8,"y":16},{"x":33,"y":-81},{"x":-20,"y":-11},{"x":-63,"y":35},{"x":-5,"y":-38},{"x":-37,"y":30},{"x":11,"y":-27},{"x":-31,"y":21},{"x":10,"y":19},{"x":68,"y":27},{"x":49,"y":139},{"x":80,"y":83},{"x":-83,"y":-81},{"x":-63,"y":-144},{"x":-102,"y":-35},{"x":30,"y":2},{"x":-35,"y":-23},{"x":4,"y":49},{"x":-14,"y":-59},{"x":-302,"y":-108},{"x":-58,"y":17},{"x":-120,"y":-27},{"x":-101,"y":70},{"x":-106,"y":6},{"x":-50,"y":54},{"x":45,"y":3},{"x":-53,"y":28},{"x":-8,"y":-41},{"x":-161,"y":7},{"x":-99,"y":161},{"x":-108,"y":-33},{"x":-77,"y":33},{"x":-67,"y":-30},{"x":-88,"y":5},{"x":-37,"y":-38},{"x":-149,"y":-60}],"type":"coastline"},{"arc":[{"x":238244,"y":212055},{"x":-47,"y":-558},{"x":-669,"y":72},{"x":-450,"y":-470},{"x":-566,"y":-13},{"x":-208,"y":-140},{"x":-158,"y":-54},{"x":-109,"y":26},{"x":-38,"y":-42},{"x":-72,"y":-14},{"x":-76,"y":36},{"x":-85,"y":-9},{"x":-79,"y":28},{"x":-56,"y":51},{"x":-45,"y":-25},{"x":-87,"y":18},{"x":-14,"y":181},{"x":20,"y":35},{"x":-154,"y":111}],"type":"area"},{"arc":[{"x":239033,"y":210788},{"x":63,"y":202},{"x":-10,"y":222},{"x":31,"y":129},{"x":-62,"y":65},{"x":-88,"y":-21},{"x":-76,"y":54},{"x":-238,"y":344},{"x":-141,"y":115},{"x":-268,"y":157}],"type":"area"},{"arc":[{"x":240778,"y":213259},{"x":-27,"y":23},{"x":-57,"y":-41},{"x":-53,"y":45},{"x":-176,"y":27},{"x":-16,"y":53},{"x":-93,"y":45},{"x":-9,"y":69},{"x":-56,"y":10},{"x":-38,"y":84},{"x":-45,"y":9},{"x":-36,"y":-31},{"x":-53,"y":3},{"x":-38,"y":-43},{"x":-30,"y":10},{"x":-39,"y":-29},{"x":-48,"y":19},{"x":-12,"y":-54},{"x":-68,"y":-17},{"x":-18,"y":-32},{"x":-17,"y":20},{"x":-116,"y":-1},{"x":-43,"y":31},{"x":-5,"y":-31},{"x":-56,"y":12},{"x":-13,"y":51},{"x":-89,"y":6},{"x":-13,"y":-78},{"x":-28,"y":9},{"x":-60,"y":-49},{"x":-24,"y":-65},{"x":-223,"y":30},{"x":-19,"y":91},{"x":-142,"y":31},{"x":-17,"y":-21},{"x":-75,"y":6},{"x":-43,"y":-57},{"x":-164,"y":-49},{"x":-22,"y":-78},{"x":-52,"y":-14},{"x":-68,"y":-95},{"x":-46,"y":-12},{"x":-33,"y":21}],"type":"area"},{"arc":[{"x":238498,"y":213167},{"x":-160,"y":-389},{"x":-65,"y":-242},{"x":19,"y":-17},{"x":-37,"y":-69},{"x":20,"y":-17},{"x":-31,"y":-378}],"type":"area"},{"arc":[{"x":241300,"y":211769},{"x":-195,"y":289},{"x":10,"y":51},{"x":-287,"y":217},{"x":-271,"y":424},{"x":245,"y":483},{"x":-24,"y":26}],"type":"area"},{"arc":[{"x":236208,"y":214612},{"x":-244,"y":-228},{"x":-52,"y":-100},{"x":-172,"y":-177},{"x":-78,"y":55},{"x":-61,"y":-5},{"x":61,"y":4},{"x":32,"y":-54},{"x":43,"y":-4},{"x":-40,"y":-50},{"x":-62,"y":68},{"x":59,"y":-68},{"x":-31,"y":-52},{"x":-570,"y":-552},{"x":-650,"y":-560}],"type":"coastline"},{"arc":[{"x":238498,"y":213167},{"x":-54,"y":-3},{"x":-33,"y":32},{"x":-74,"y":166},{"x":-117,"y":57},{"x":-42,"y":103},{"x":-39,"y":-62},{"x":-113,"y":-73},{"x":-1,"y":-87},{"x":-136,"y":-50},{"x":-183,"y":107},{"x":-74,"y":7},{"x":-70,"y":107},{"x":-63,"y":-38},{"x":-81,"y":42},{"x":-73,"y":154},{"x":-676,"y":-77},{"x":-108,"y":61},{"x":-75,"y":-23},{"x":-87,"y":9},{"x":-58,"y":123},{"x":-124,"y":-80},{"x":-157,"y":93},{"x":-33,"y":52},{"x":10,"y":191},{"x":101,"y":2},{"x":-67,"y":176},{"x":62,"y":99},{"x":1,"y":110},{"x":-32,"y":72},{"x":106,"y":175}],"type":"area"},{"arc":[{"x":242417,"y":215665},{"x":-60,"y":10},{"x":-74,"y":-38},{"x":-83,"y":-134},{"x":-36,"y":34},{"x":-3,"y":-21},{"x":-103,"y":-27},{"x":-35,"y":80},{"x":-62,"y":-13},{"x":3,"y":-97},{"x":-61,"y":-51}],"type":"area"},{"arc":[{"x":241903,"y":215408},{"x":-18,"y":-187},{"x":35,"y":-68},{"x":-68,"y":-167},{"x":-76,"y":-68},{"x":-36,"y":-270},{"x":-94,"y":-97},{"x":6,"y":-40},{"x":-108,"y":-58},{"x":-22,"y":-139},{"x":-46,"y":-29},{"x":-14,"y":-75},{"x":-94,"y":-60},{"x":-60,"y":-101},{"x":-53,"y":-195},{"x":-104,"y":-81},{"x":13,"y":-67},{"x":-122,"y":-38},{"x":-82,"y":-126},{"x":40,"y":-38},{"x":-35,"y":-33},{"x":4,"y":-91},{"x":-47,"y":-58},{"x":-62,"y":23},{"x":-27,"y":-54},{"x":-55,"y":-32}],"type":"area"},{"arc":[{"x":242934,"y":211720},{"x":-56,"y":683},{"x":-13,"y":-15},{"x":-18,"y":24},{"x":-28,"y":122},{"x":47,"y":71},{"x":-43,"y":-10},{"x":2,"y":73},{"x":-104,"y":237},{"x":37,"y":2},{"x":69,"y":132},{"x":-113,"y":24},{"x":-25,"y":58},{"x":-175,"y":112},{"x":-53,"y":63},{"x":-140,"y":55},{"x":-49,"y":-12},{"x":-45,"y":19},{"x":81,"y":133},{"x":96,"y":-16},{"x":471,"y":819},{"x":-63,"y":22},{"x":-9,"y":48},{"x":-40,"y":-3},{"x":-54,"y":62},{"x":7,"y":71},{"x":-84,"y":68},{"x":-20,"y":110},{"x":-118,"y":53},{"x":-66,"y":113},{"x":-49,"y":32},{"x":21,"y":31},{"x":-31,"y":71},{"x":51,"y":91},{"x":40,"y":-7},{"x":41,"y":129},{"x":-6,"y":261},{"x":24,"y":35},{"x":-95,"y":76},{"x":-7,"y":108}],"type":"area"},{"arc":[{"x":246270,"y":212265},{"x":-766,"y":-77},{"x":158,"y":923},{"x":-133,"y":363},{"x":143,"y":127},{"x":-11,"y":61},{"x":118,"y":134},{"x":-137,"y":376},{"x":-244,"y":244},{"x":-17,"y":52},{"x":6,"y":158},{"x":81,"y":109},{"x":-24,"y":66},{"x":50,"y":52},{"x":-83,"y":102},{"x":45,"y":47},{"x":-54,"y":65},{"x":-159,"y":-143},{"x":-34,"y":36},{"x":-82,"y":-55},{"x":-26,"y":-123},{"x":-37,"y":-12},{"x":-53,"y":30},{"x":-191,"y":-64},{"x":36,"y":-89},{"x":-57,"y":-100},{"x":-84,"y":-56},{"x":18,"y":-94},{"x":-111,"y":-42},{"x":-21,"y":-52},{"x":-65,"y":5},{"x":-36,"y":-38},{"x":-85,"y":41},{"x":-12,"y":29},{"x":40,"y":60},{"x":-17,"y":54},{"x":-135,"y":57},{"x":-38,"y":-5},{"x":-38,"y":165},{"x":24,"y":19},{"x":-19,"y":29},{"x":30,"y":130},{"x":71,"y":62},{"x":64,"y":1},{"x":55,"y":160},{"x":8,"y":128},{"x":135,"y":2},{"x":-8,"y":88},{"x":81,"y":29},{"x":51,"y":58},{"x":36,"y":203},{"x":53,"y":-2},{"x":37,"y":46},{"x":42,"y":-19},{"x":60,"y":17},{"x":-5,"y":78},{"x":172,"y":128},{"x":27,"y":5},{"x":102,"y":-77},{"x":134,"y":85},{"x":119,"y":20},{"x":89,"y":129},{"x":93,"y":23},{"x":126,"y":-98},{"x":102,"y":187},{"x":41,"y":-3},{"x":26,"y":-53},{"x":98,"y":-46},{"x":53,"y":70},{"x":-102,"y":259},{"x":-93,"y":53},{"x":-1,"y":92},{"x":-37,"y":42},{"x":29,"y":66},{"x":-53,"y":60},{"x":-9,"y":60},{"x":142,"y":586}],"type":"area"},{"arc":[{"x":244588,"y":217893},{"x":-74,"y":-202},{"x":-57,"y":-49},{"x":1,"y":-76},{"x":-57,"y":-53},{"x":17,"y":-51},{"x":-69,"y":-60},{"x":24,"y":-83},{"x":-22,"y":-20},{"x":-75,"y":8},{"x":-123,"y":-197},{"x":-47,"y":3},{"x":0,"y":-57},{"x":43,"y":-56},{"x":-87,"y":-41},{"x":16,"y":-79},{"x":-76,"y":-38},{"x":-56,"y":-107},{"x":-85,"y":18},{"x":-47,"y":-21},{"x":23,"y":-56},{"x":-82,"y":-45},{"x":-39,"y":-58},{"x":15,"y":-87},{"x":-28,"y":-64},{"x":-268,"y":-216},{"x":48,"y":-123},{"x":74,"y":-25},{"x":-63,"y":-88},{"x":-124,"y":48},{"x":-61,"y":-8},{"x":-19,"y":-46},{"x":-59,"y":52},{"x":-73,"y":7},{"x":-22,"y":-77},{"x":-49,"y":-47},{"x":-39,"y":-31},{"x":-84,"y":-8},{"x":27,"y":-87},{"x":-18,"y":-27},{"x":-80,"y":23},{"x":-37,"y":-27},{"x":-89,"y":-1},{"x":-19,"y":-65},{"x":-117,"y":-45},{"x":-76,"y":18},{"x":-56,"y":68},{"x":-82,"y":-52}],"type":"area"},{"arc":[{"x":241903,"y":215408},{"x":-51,"y":-5},{"x":-60,"y":76},{"x":-46,"y":4},{"x":-149,"y":-70},{"x":-88,"y":-2},{"x":-48,"y":-79},{"x":-54,"y":-10},{"x":-44,"y":-49}],"type":"area"},{"arc":[{"x":237844,"y":216458},{"x":-443,"y":-494},{"x":-19,"y":8},{"x":-33,"y":-13},{"x":-39,"y":40},{"x":40,"y":-46},{"x":32,"y":15},{"x":21,"y":-10},{"x":-7,"y":-12},{"x":-21,"y":11},{"x":-23,"y":-26},{"x":-52,"y":53},{"x":49,"y":-51},{"x":-41,"y":-62},{"x":-331,"y":-386},{"x":-133,"y":-110},{"x":-75,"y":-126},{"x":-561,"y":-637}],"type":"coastline"},{"arc":[{"x":240157,"y":223707},{"x":-78,"y":66},{"x":-83,"y":3},{"x":-67,"y":-22},{"x":-64,"y":10},{"x":-39,"y":-64},{"x":-37,"y":45},{"x":-37,"y":-25},{"x":-129,"y":107},{"x":-18,"y":45},{"x":-62,"y":627},{"x":179,"y":715},{"x":64,"y":-38},{"x":34,"y":23},{"x":59,"y":136},{"x":-26,"y":26}],"type":"area"},{"arc":[{"x":239853,"y":225361},{"x":-178,"y":-74},{"x":-153,"y":-1},{"x":-10,"y":32},{"x":21,"y":2},{"x":-55,"y":17},{"x":-53,"y":114},{"x":-150,"y":93},{"x":-14,"y":85},{"x":-57,"y":36},{"x":-3,"y":41},{"x":-143,"y":220},{"x":-26,"y":4},{"x":-42,"y":-117},{"x":31,"y":-562},{"x":-21,"y":-6},{"x":-9,"y":-28},{"x":27,"y":32},{"x":5,"y":-30},{"x":-23,"y":2},{"x":34,"y":-31},{"x":33,"y":-402},{"x":78,"y":-108},{"x":8,"y":-250},{"x":70,"y":-109},{"x":-39,"y":-476},{"x":29,"y":-127},{"x":-47,"y":-207},{"x":56,"y":-238},{"x":-14,"y":-33},{"x":-10,"y":22},{"x":-14,"y":-139},{"x":-82,"y":-153},{"x":-29,"y":-139}],"type":"coastline"},{"arc":[{"x":240759,"y":221936},{"x":98,"y":14},{"x":23,"y":-37},{"x":41,"y":56},{"x":8,"y":-20},{"x":34,"y":7},{"x":4,"y":31},{"x":78,"y":-37},{"x":59,"y":3},{"x":22,"y":-28},{"x":95,"y":45}],"type":"area"},{"arc":[{"x":241221,"y":221970},{"x":99,"y":643},{"x":-23,"y":217},{"x":44,"y":47},{"x":-9,"y":71},{"x":-48,"y":21},{"x":14,"y":88},{"x":-37,"y":1},{"x":-14,"y":91},{"x":28,"y":86},{"x":-20,"y":27},{"x":-52,"y":2},{"x":-13,"y":39},{"x":-35,"y":-7},{"x":-44,"y":27},{"x":58,"y":87},{"x":-130,"y":-14},{"x":-57,"y":40},{"x":-66,"y":-18},{"x":-21,"y":45},{"x":-54,"y":-23},{"x":-107,"y":52},{"x":-45,"y":-11},{"x":-86,"y":25},{"x":-16,"y":-17},{"x":-52,"y":87},{"x":-62,"y":9},{"x":-89,"y":-1},{"x":-118,"y":-87},{"x":-147,"y":70},{"x":52,"y":91},{"x":-14,"y":49}],"type":"area"},{"arc":[{"x":239348,"y":226850},{"x":-42,"y":59},{"x":-24,"y":-4},{"x":-80,"y":-68},{"x":-45,"y":-91},{"x":82,"y":11},{"x":158,"y":78},{"x":-49,"y":15}],"type":"coastline"},{"arc":[{"x":239531,"y":226909},{"x":-29,"y":-5},{"x":24,"y":-16},{"x":5,"y":21}],"type":"coastline"},{"arc":[{"x":242936,"y":227280},{"x":-43,"y":-37},{"x":-133,"y":183},{"x":-48,"y":-44},{"x":-200,"y":276},{"x":-195,"y":-177},{"x":-81,"y":110},{"x":-249,"y":-224},{"x":-170,"y":232},{"x":-88,"y":3},{"x":-22,"y":34},{"x":-140,"y":363},{"x":-73,"y":73},{"x":-84,"y":159},{"x":-37,"y":-23},{"x":-13,"y":-76},{"x":-206,"y":-144},{"x":-37,"y":20},{"x":-80,"y":-13},{"x":-130,"y":76},{"x":-79,"y":-11},{"x":-50,"y":-161},{"x":-120,"y":-28},{"x":15,"y":-43},{"x":-74,"y":-35},{"x":-127,"y":107},{"x":-50,"y":-18},{"x":-63,"y":29},{"x":-89,"y":124},{"x":-87,"y":-11},{"x":-61,"y":68},{"x":-79,"y":-24},{"x":-40,"y":66},{"x":-44,"y":-29},{"x":-199,"y":-3}],"type":"area"},{"arc":[{"x":239760,"y":228102},{"x":-63,"y":-71},{"x":7,"y":-34},{"x":-28,"y":-7},{"x":11,"y":-32},{"x":-49,"y":-22},{"x":-35,"y":-59},{"x":14,"y":-40},{"x":-29,"y":-96},{"x":67,"y":-54},{"x":-29,"y":-87},{"x":93,"y":-187},{"x":-13,"y":-29},{"x":-109,"y":-35},{"x":65,"y":-38},{"x":-1,"y":-107},{"x":48,"y":-56},{"x":-62,"y":-205},{"x":11,"y":-65},{"x":33,"y":-29},{"x":58,"y":4},{"x":29,"y":-72},{"x":5,"y":39},{"x":75,"y":-179},{"x":49,"y":51},{"x":88,"y":-56},{"x":43,"y":-110},{"x":-18,"y":-111},{"x":126,"y":63},{"x":104,"y":-35},{"x":41,"y":-42},{"x":-12,"y":24},{"x":27,"y":21},{"x":-19,"y":-16},{"x":-19,"y":24},{"x":54,"y":53},{"x":38,"y":-47},{"x":14,"y":13},{"x":-38,"y":48},{"x":41,"y":40},{"x":17,"y":-51},{"x":22,"y":22},{"x":-22,"y":28},{"x":20,"y":57},{"x":42,"y":25},{"x":113,"y":-265},{"x":21,"y":-145},{"x":-12,"y":-172},{"x":-53,"y":-170},{"x":-27,"y":22},{"x":-21,"y":-38},{"x":26,"y":33},{"x":16,"y":-12},{"x":-22,"y":-40},{"x":-23,"y":-12},{"x":-6,"y":17},{"x":-335,"y":-346},{"x":-280,"y":-153}],"type":"coastline"},{"arc":[{"x":240157,"y":223707},{"x":98,"y":98},{"x":65,"y":1},{"x":6,"y":64},{"x":42,"y":-3},{"x":73,"y":43},{"x":22,"y":24},{"x":-15,"y":51},{"x":84,"y":30},{"x":-40,"y":82},{"x":65,"y":103},{"x":52,"y":174},{"x":145,"y":78},{"x":80,"y":-5},{"x":161,"y":92},{"x":53,"y":58},{"x":79,"y":4},{"x":21,"y":231},{"x":63,"y":11},{"x":44,"y":-59},{"x":43,"y":15},{"x":80,"y":-99},{"x":142,"y":7},{"x":138,"y":-42},{"x":13,"y":-26},{"x":74,"y":-1},{"x":52,"y":110},{"x":-20,"y":55},{"x":-55,"y":15},{"x":-38,"y":-41},{"x":-88,"y":17},{"x":7,"y":69},{"x":32,"y":20},{"x":3,"y":62},{"x":90,"y":9},{"x":48,"y":53},{"x":25,"y":101},{"x":68,"y":33},{"x":-20,"y":80},{"x":-18,"y":-20},{"x":-40,"y":13},{"x":-16,"y":-29},{"x":-73,"y":15},{"x":201,"y":91},{"x":32,"y":89},{"x":144,"y":-8},{"x":144,"y":215},{"x":-34,"y":270},{"x":-90,"y":91},{"x":-21,"y":47},{"x":19,"y":51},{"x":-51,"y":74},{"x":-53,"y":25},{"x":21,"y":110},{"x":48,"y":-24},{"x":13,"y":-52},{"x":16,"y":41},{"x":23,"y":-11},{"x":43,"y":42},{"x":79,"y":-114},{"x":91,"y":-36},{"x":14,"y":-70},{"x":40,"y":-12},{"x":62,"y":-95},{"x":35,"y":-156},{"x":60,"y":-53},{"x":19,"y":-109},{"x":71,"y":-39},{"x":26,"y":55},{"x":109,"y":46},{"x":38,"y":-35},{"x":79,"y":14},{"x":168,"y":-68},{"x":104,"y":-2},{"x":64,"y":-50},{"x":48,"y":28},{"x":59,"y":-144},{"x":-14,"y":-50},{"x":174,"y":-262},{"x":-1,"y":-105},{"x":117,"y":-21},{"x":84,"y":-92},{"x":93,"y":12},{"x":43,"y":-21},{"x":79,"y":-129},{"x":27,"y":12},{"x":36,"y":-21},{"x":76,"y":23},{"x":174,"y":-51},{"x":76,"y":28}],"type":"area"},{"arc":[{"x":244287,"y":224734},{"x":2,"y":54},{"x":-101,"y":57},{"x":-47,"y":79},{"x":8,"y":43},{"x":52,"y":38},{"x":-40,"y":66},{"x":-80,"y":107},{"x":-122,"y":99},{"x":-119,"y":55},{"x":17,"y":107},{"x":-120,"y":207},{"x":17,"y":82},{"x":-62,"y":24},{"x":-4,"y":159},{"x":-39,"y":48},{"x":-35,"y":237},{"x":23,"y":27},{"x":-55,"y":44},{"x":34,"y":50},{"x":-13,"y":60},{"x":-51,"y":6},{"x":12,"y":63},{"x":-27,"y":55},{"x":-120,"y":65},{"x":-71,"y":151},{"x":56,"y":113},{"x":-35,"y":66},{"x":-43,"y":-1},{"x":-14,"y":58},{"x":-213,"y":270},{"x":-161,"y":57}],"type":"area"},{"arc":[{"x":240515,"y":229281},{"x":-18,"y":75},{"x":-31,"y":-29},{"x":-48,"y":-193},{"x":93,"y":13},{"x":4,"y":134}],"type":"coastline"},{"arc":[{"x":240651,"y":229416},{"x":-8,"y":16},{"x":-3,"y":-31},{"x":11,"y":15}],"type":"coastline"},{"arc":[{"x":242035,"y":231521},{"x":-85,"y":-95},{"x":8,"y":-63},{"x":30,"y":4},{"x":15,"y":-28},{"x":-8,"y":-94},{"x":30,"y":-25},{"x":-32,"y":-134},{"x":-159,"y":-394},{"x":-108,"y":-116},{"x":-3,"y":-51},{"x":-12,"y":31},{"x":4,"y":-35},{"x":-34,"y":4},{"x":-16,"y":-43},{"x":-29,"y":-4},{"x":-8,"y":-71},{"x":-36,"y":-29},{"x":-33,"y":-154},{"x":20,"y":-93},{"x":28,"y":-86},{"x":37,"y":7},{"x":13,"y":-51},{"x":63,"y":-21},{"x":9,"y":-53},{"x":-15,"y":0},{"x":-19,"y":-27},{"x":19,"y":21},{"x":21,"y":-6},{"x":-21,"y":-9},{"x":27,"y":-8},{"x":-66,"y":-234},{"x":-147,"y":-156},{"x":-3,"y":-81},{"x":-99,"y":-71},{"x":-16,"y":28},{"x":-49,"y":-12},{"x":49,"y":11},{"x":11,"y":-20},{"x":-21,"y":7},{"x":-6,"y":-24},{"x":-16,"y":20},{"x":14,"y":-23},{"x":-41,"y":-28},{"x":-116,"y":-25},{"x":-148,"y":-2},{"x":-181,"y":55},{"x":-2,"y":77},{"x":1,"y":-67},{"x":-26,"y":4},{"x":-8,"y":139},{"x":44,"y":41},{"x":-37,"y":5},{"x":-18,"y":32},{"x":51,"y":228},{"x":-14,"y":42},{"x":-66,"y":12},{"x":-29,"y":78},{"x":21,"y":-165},{"x":-38,"y":-68},{"x":-37,"y":-15},{"x":-21,"y":20},{"x":-35,"y":-265},{"x":55,"y":46},{"x":48,"y":-19},{"x":33,"y":-55},{"x":5,"y":-28},{"x":-55,"y":-29},{"x":-10,"y":-30},{"x":10,"y":30},{"x":22,"y":-10},{"x":38,"y":26},{"x":-5,"y":-44},{"x":-48,"y":-6},{"x":55,"y":-1},{"x":-25,"y":-154},{"x":-145,"y":-118},{"x":-98,"y":23},{"x":-48,"y":-49},{"x":-41,"y":53},{"x":40,"y":-54},{"x":-33,"y":38},{"x":-82,"y":-24},{"x":-63,"y":-266},{"x":-116,"y":-104},{"x":-19,"y":-197},{"x":-81,"y":-13},{"x":3,"y":-36},{"x":-40,"y":-28},{"x":-84,"y":21},{"x":-31,"y":50},{"x":-64,"y":-51},{"x":-74,"y":-7},{"x":-93,"y":-179},{"x":19,"y":-30},{"x":-39,"y":-32},{"x":34,"y":-62}],"type":"coastline"},{"arc":[{"x":242936,"y":227280},{"x":58,"y":218},{"x":-10,"y":103},{"x":-137,"y":161},{"x":-45,"y":236},{"x":-56,"y":79},{"x":-65,"y":30},{"x":-93,"y":142},{"x":-28,"y":144},{"x":47,"y":42},{"x":-13,"y":36},{"x":30,"y":48},{"x":58,"y":-11},{"x":38,"y":70},{"x":24,"y":-11},{"x":61,"y":81},{"x":37,"y":1},{"x":-40,"y":30},{"x":108,"y":156},{"x":19,"y":-12},{"x":-18,"y":70},{"x":-37,"y":25},{"x":-4,"y":73},{"x":-22,"y":3},{"x":30,"y":83},{"x":-48,"y":18},{"x":26,"y":76},{"x":-5,"y":29},{"x":-31,"y":-9},{"x":9,"y":78},{"x":-22,"y":21},{"x":30,"y":32},{"x":-14,"y":61},{"x":36,"y":37},{"x":-67,"y":16},{"x":50,"y":90},{"x":-16,"y":37},{"x":53,"y":-10},{"x":9,"y":32},{"x":25,"y":-17},{"x":12,"y":47},{"x":35,"y":-3},{"x":-39,"y":81},{"x":33,"y":18},{"x":-26,"y":17},{"x":77,"y":23},{"x":2,"y":21},{"x":34,"y":-28},{"x":4,"y":61},{"x":59,"y":21},{"x":0,"y":138},{"x":38,"y":22},{"x":-56,"y":77},{"x":14,"y":108}],"type":"area"},{"arc":[{"x":245989,"y":225513},{"x":-556,"y":-683},{"x":49,"y":-170},{"x":-29,"y":-35},{"x":39,"y":-70},{"x":-101,"y":-61},{"x":-25,"y":-51},{"x":-113,"y":53},{"x":-14,"y":-84},{"x":-100,"y":-2},{"x":-75,"y":73},{"x":-69,"y":-12},{"x":-245,"y":171},{"x":-97,"y":32},{"x":-51,"y":-21},{"x":-65,"y":25},{"x":-31,"y":-13},{"x":-69,"y":58},{"x":-150,"y":11}],"type":"area"},{"arc":[{"x":241221,"y":221970},{"x":34,"y":51},{"x":26,"y":8},{"x":16,"y":-22},{"x":41,"y":32},{"x":34,"y":84},{"x":77,"y":71},{"x":43,"y":147},{"x":158,"y":94},{"x":84,"y":-1},{"x":39,"y":41},{"x":170,"y":-42},{"x":0,"y":-64},{"x":212,"y":-94},{"x":120,"y":95},{"x":82,"y":20},{"x":22,"y":44},{"x":111,"y":-13},{"x":41,"y":-52},{"x":30,"y":-4},{"x":6,"y":28},{"x":17,"y":-35},{"x":69,"y":-2},{"x":-4,"y":-34},{"x":89,"y":-26},{"x":30,"y":-66},{"x":39,"y":-4},{"x":39,"y":32},{"x":32,"y":-52},{"x":21,"y":9},{"x":8,"y":-52},{"x":44,"y":4},{"x":47,"y":-182},{"x":134,"y":-71},{"x":21,"y":-64},{"x":63,"y":-35},{"x":-10,"y":-16},{"x":52,"y":-28},{"x":78,"y":-112},{"x":48,"y":9},{"x":30,"y":-42},{"x":43,"y":11},{"x":15,"y":-19},{"x":47,"y":21},{"x":39,"y":-37},{"x":74,"y":36},{"x":47,"y":-50},{"x":33,"y":42},{"x":59,"y":-27},{"x":22,"y":17},{"x":12,"y":-21},{"x":80,"y":26},{"x":66,"y":-19},{"x":43,"y":-24},{"x":14,"y":-51},{"x":83,"y":-31},{"x":47,"y":-69},{"x":55,"y":-13},{"x":78,"y":-98},{"x":32,"y":6},{"x":44,"y":-45},{"x":36,"y":1},{"x":72,"y":-135},{"x":-6,"y":-213},{"x":19,"y":-36},{"x":49,"y":-3},{"x":24,"y":-65},{"x":78,"y":20},{"x":11,"y":28},{"x":33,"y":-2},{"x":131,"y":89},{"x":259,"y":-157},{"x":68,"y":9},{"x":73,"y":-25},{"x":104,"y":-143},{"x":14,"y":-77},{"x":141,"y":-154},{"x":5,"y":-40},{"x":59,"y":-10},{"x":65,"y":-101}],"type":"area"},{"arc":[{"x":245582,"y":220267},{"x":0,"y":119},{"x":-72,"y":27},{"x":-38,"y":69},{"x":-36,"y":11},{"x":-55,"y":130},{"x":29,"y":71},{"x":-42,"y":49},{"x":41,"y":61},{"x":-65,"y":97},{"x":45,"y":112},{"x":-96,"y":33},{"x":-72,"y":146},{"x":21,"y":115},{"x":-32,"y":64},{"x":43,"y":70},{"x":-402,"y":276},{"x":16,"y":149},{"x":-63,"y":65},{"x":193,"y":331},{"x":153,"y":-98},{"x":-39,"y":94},{"x":119,"y":133},{"x":-12,"y":45},{"x":-65,"y":38},{"x":12,"y":68},{"x":-46,"y":34},{"x":-63,"y":236},{"x":-52,"y":23},{"x":-38,"y":136},{"x":20,"y":90},{"x":-117,"y":134},{"x":-72,"y":-24},{"x":-43,"y":84},{"x":7,"y":155},{"x":160,"y":-43},{"x":97,"y":-59},{"x":150,"y":287},{"x":47,"y":-53},{"x":34,"y":35},{"x":64,"y":14},{"x":18,"y":52},{"x":33,"y":-19},{"x":31,"y":22},{"x":11,"y":-43},{"x":30,"y":-6},{"x":43,"y":45},{"x":19,"y":-42},{"x":14,"y":22},{"x":44,"y":-13},{"x":16,"y":41},{"x":41,"y":4},{"x":8,"y":68},{"x":47,"y":5},{"x":33,"y":68},{"x":53,"y":-64},{"x":31,"y":26},{"x":134,"y":7},{"x":89,"y":47},{"x":73,"y":-62},{"x":106,"y":-36},{"x":8,"y":23},{"x":-32,"y":12},{"x":10,"y":212},{"x":236,"y":-151},{"x":167,"y":-69},{"x":213,"y":-181},{"x":61,"y":-19},{"x":181,"y":186},{"x":109,"y":70}],"type":"area"},{"arc":[{"x":247140,"y":223796},{"x":4,"y":118},{"x":-81,"y":242},{"x":-301,"y":567},{"x":-773,"y":790}],"type":"area"},{"arc":[{"x":247440,"y":223709},{"x":-108,"y":45},{"x":-100,"y":-5},{"x":-92,"y":47}],"type":"area"},{"arc":[{"x":239805,"y":220173},{"x":-119,"y":-488},{"x":-141,"y":-379},{"x":-86,"y":-190},{"x":-253,"y":-408},{"x":16,"y":-27},{"x":17,"y":44},{"x":6,"y":-68},{"x":-31,"y":17},{"x":30,"y":-49},{"x":-195,"y":-415},{"x":-213,"y":-352}],"type":"coastline"},{"arc":[{"x":247098,"y":230729},{"x":-41,"y":-78},{"x":-2,"y":-22},{"x":28,"y":-78},{"x":-19,"y":105},{"x":30,"y":40},{"x":27,"y":79},{"x":-23,"y":-46}],"type":"coastline"},{"arc":[{"x":247171,"y":231509},{"x":-41,"y":-38},{"x":11,"y":-21},{"x":20,"y":-2},{"x":-23,"y":21},{"x":33,"y":40}],"type":"coastline"},{"arc":[{"x":247248,"y":231470},{"x":-22,"y":-47},{"x":-31,"y":19},{"x":1,"y":-43},{"x":48,"y":8},{"x":4,"y":63}],"type":"coastline"},{"arc":[{"x":247374,"y":231332},{"x":-8,"y":-30},{"x":28,"y":47},{"x":-20,"y":-17}],"type":"coastline"},{"arc":[{"x":247531,"y":230205},{"x":-44,"y":-42},{"x":-69,"y":16},{"x":-121,"y":151},{"x":-23,"y":82},{"x":-129,"y":-48},{"x":-53,"y":70},{"x":-30,"y":18},{"x":27,"y":-17},{"x":-32,"y":-5},{"x":-20,"y":44},{"x":13,"y":-41},{"x":-32,"y":27},{"x":12,"y":21},{"x":-72,"y":-18},{"x":1,"y":25},{"x":64,"y":-1},{"x":-65,"y":2},{"x":-2,"y":-47},{"x":-57,"y":3},{"x":-191,"y":133},{"x":-93,"y":22},{"x":-14,"y":36},{"x":-125,"y":43},{"x":-503,"y":56},{"x":-365,"y":114},{"x":-246,"y":17},{"x":-434,"y":154},{"x":-153,"y":87},{"x":-12,"y":14},{"x":13,"y":21},{"x":-21,"y":29},{"x":20,"y":-28},{"x":-12,"y":-20},{"x":-16,"y":15},{"x":18,"y":15},{"x":-19,"y":-15},{"x":-12,"y":22},{"x":-12,"y":-20},{"x":-165,"y":77},{"x":-310,"y":222},{"x":-302,"y":308},{"x":-232,"y":331},{"x":-110,"y":61},{"x":-37,"y":51}],"type":"coastline"},{"arc":[{"x":245989,"y":225513},{"x":82,"y":108},{"x":-108,"y":111},{"x":-40,"y":82},{"x":30,"y":97},{"x":-39,"y":80},{"x":11,"y":52},{"x":-38,"y":26},{"x":31,"y":11},{"x":-28,"y":42},{"x":24,"y":81},{"x":-53,"y":43},{"x":34,"y":51},{"x":15,"y":222},{"x":46,"y":40},{"x":-50,"y":154},{"x":19,"y":255},{"x":89,"y":151},{"x":-334,"y":348},{"x":19,"y":105},{"x":81,"y":92},{"x":-10,"y":231},{"x":449,"y":552},{"x":58,"y":-53},{"x":2,"y":72},{"x":53,"y":44},{"x":281,"y":-258},{"x":-13,"y":80},{"x":24,"y":-4},{"x":8,"y":61},{"x":109,"y":144},{"x":-3,"y":95},{"x":32,"y":43},{"x":-39,"y":44},{"x":10,"y":93},{"x":49,"y":31},{"x":54,"y":264},{"x":55,"y":70},{"x":-2,"y":38},{"x":52,"y":29},{"x":-11,"y":49},{"x":35,"y":32}],"type":"area"},{"arc":[{"x":246973,"y":229321},{"x":42,"y":187},{"x":-41,"y":41},{"x":44,"y":85},{"x":19,"y":-22},{"x":61,"y":53},{"x":-16,"y":78},{"x":41,"y":-8},{"x":32,"y":40},{"x":50,"y":-3},{"x":-23,"y":39},{"x":31,"y":39},{"x":-1,"y":-24},{"x":20,"y":9},{"x":-6,"y":81},{"x":15,"y":-21},{"x":44,"y":37},{"x":13,"y":-19},{"x":100,"y":82},{"x":56,"y":-37},{"x":66,"y":46},{"x":41,"y":59},{"x":-6,"y":38},{"x":59,"y":28},{"x":-83,"y":76}],"type":"area"},{"arc":[{"x":247606,"y":230687},{"x":17,"y":0}],"type":"area"},{"arc":[{"x":247623,"y":230687},{"x":-139,"y":586},{"x":-105,"y":264},{"x":-150,"y":163},{"x":-249,"y":59},{"x":-89,"y":-54},{"x":-82,"y":-151},{"x":1,"y":-459},{"x":21,"y":17},{"x":-15,"y":66},{"x":27,"y":16},{"x":-17,"y":27},{"x":27,"y":-13},{"x":-27,"y":156},{"x":119,"y":-283},{"x":-53,"y":212},{"x":34,"y":-33},{"x":-24,"y":60},{"x":89,"y":-14},{"x":10,"y":112},{"x":-9,"y":18},{"x":-7,"y":-48},{"x":-31,"y":108},{"x":16,"y":106},{"x":16,"y":19},{"x":16,"y":-54},{"x":27,"y":90},{"x":1,"y":-72},{"x":67,"y":100},{"x":143,"y":-22},{"x":-55,"y":-15},{"x":68,"y":-20},{"x":-46,"y":-57},{"x":-22,"y":-3},{"x":-1,"y":24},{"x":-11,"y":-70},{"x":10,"y":21},{"x":21,"y":-84},{"x":23,"y":118},{"x":77,"y":35},{"x":29,"y":-33},{"x":-75,"y":-24},{"x":96,"y":-18},{"x":21,"y":-55},{"x":-40,"y":-5},{"x":30,"y":-26},{"x":-14,"y":-44},{"x":38,"y":-22},{"x":14,"y":30},{"x":36,"y":-90},{"x":-8,"y":-25},{"x":-11,"y":40},{"x":-14,"y":-94},{"x":-6,"y":26},{"x":-21,"y":-32},{"x":-11,"y":52},{"x":1,"y":-114},{"x":-44,"y":-139},{"x":135,"y":105},{"x":9,"y":-17},{"x":-123,"y":-181},{"x":41,"y":-79},{"x":34,"y":96},{"x":58,"y":10},{"x":-156,"y":-329},{"x":111,"y":198},{"x":99,"y":90},{"x":33,"y":-30},{"x":40,"y":-215}],"type":"coastline"},{"arc":[{"x":248495,"y":225385},{"x":-20,"y":117},{"x":128,"y":83},{"x":49,"y":200},{"x":56,"y":28},{"x":-26,"y":89},{"x":20,"y":27},{"x":-85,"y":242},{"x":91,"y":54},{"x":-17,"y":85},{"x":33,"y":62},{"x":-44,"y":38},{"x":0,"y":90},{"x":-42,"y":55},{"x":-59,"y":290},{"x":-17,"y":29},{"x":-126,"y":25},{"x":-85,"y":73},{"x":-592,"y":1386},{"x":64,"y":73},{"x":32,"y":230},{"x":83,"y":74},{"x":0,"y":66},{"x":-58,"y":110},{"x":11,"y":60},{"x":-112,"y":13},{"x":-278,"y":-207},{"x":-528,"y":544}],"type":"area"},{"arc":[{"x":250733,"y":229167},{"x":-272,"y":-65},{"x":-234,"y":-89},{"x":-122,"y":-180},{"x":-66,"y":-53},{"x":-80,"y":9},{"x":-72,"y":38},{"x":30,"y":-26},{"x":-27,"y":18},{"x":-122,"y":-60},{"x":-154,"y":47},{"x":-149,"y":4},{"x":-161,"y":53},{"x":-208,"y":164},{"x":-75,"y":96},{"x":-96,"y":23},{"x":-404,"y":251},{"x":-130,"y":46},{"x":-125,"y":137},{"x":-16,"y":8},{"x":63,"y":-75},{"x":4,"y":-47},{"x":-21,"y":42},{"x":-31,"y":-2},{"x":10,"y":36},{"x":-30,"y":-14},{"x":18,"y":27},{"x":-53,"y":-27},{"x":-41,"y":58},{"x":-35,"y":-31},{"x":-81,"y":38},{"x":-126,"y":242},{"x":-304,"y":852}],"type":"coastline"},{"arc":[{"x":247606,"y":230687},{"x":8,"y":-167},{"x":74,"y":-56},{"x":48,"y":-224},{"x":-44,"y":-90},{"x":-54,"y":77},{"x":-88,"y":7},{"x":-19,"y":-29}],"type":"coastline"},{"arc":[{"x":250934,"y":226874},{"x":39,"y":140},{"x":68,"y":63},{"x":6,"y":88},{"x":63,"y":69},{"x":13,"y":97},{"x":53,"y":6},{"x":43,"y":71},{"x":22,"y":75},{"x":-23,"y":105},{"x":40,"y":53},{"x":-47,"y":44},{"x":-4,"y":116},{"x":-30,"y":14},{"x":-93,"y":291},{"x":-53,"y":85},{"x":-57,"y":28},{"x":-25,"y":84},{"x":-130,"y":88},{"x":-39,"y":104},{"x":16,"y":167},{"x":-37,"y":7},{"x":20,"y":38},{"x":-25,"y":21},{"x":25,"y":19},{"x":-57,"y":86},{"x":27,"y":27},{"x":-31,"y":142},{"x":21,"y":18},{"x":-6,"y":147}],"type":"area"},{"arc":[{"x":256812,"y":231639},{"x":-40,"y":77},{"x":-48,"y":-37},{"x":-96,"y":-6},{"x":-58,"y":48},{"x":-13,"y":48},{"x":-62,"y":16},{"x":-69,"y":-57},{"x":-158,"y":40},{"x":-47,"y":-14},{"x":-67,"y":61},{"x":-33,"y":-13},{"x":-123,"y":70},{"x":-41,"y":0},{"x":-29,"y":77},{"x":-116,"y":-27},{"x":-46,"y":22},{"x":-42,"y":-61},{"x":-54,"y":5},{"x":-107,"y":-142},{"x":-135,"y":20},{"x":-45,"y":-41},{"x":-67,"y":24},{"x":-122,"y":-112},{"x":-107,"y":-50},{"x":-102,"y":3},{"x":-69,"y":-41},{"x":-46,"y":-100},{"x":-87,"y":-27},{"x":-73,"y":-77},{"x":-81,"y":-26},{"x":-60,"y":-105},{"x":-96,"y":-39},{"x":-72,"y":-66},{"x":-159,"y":-232},{"x":-66,"y":-46},{"x":-554,"y":-201},{"x":-265,"y":52},{"x":-49,"y":-60},{"x":-86,"y":-5},{"x":-149,"y":-94},{"x":-111,"y":-74},{"x":-97,"y":-182},{"x":-37,"y":-25},{"x":-26,"y":27},{"x":-55,"y":-13},{"x":-49,"y":-46},{"x":49,"y":44},{"x":69,"y":-8},{"x":-46,"y":-29},{"x":-7,"y":30},{"x":-28,"y":-90},{"x":5,"y":42},{"x":-20,"y":-24},{"x":-11,"y":28},{"x":11,"y":-59},{"x":-120,"y":-115},{"x":-103,"y":-34},{"x":-99,"y":-104},{"x":-76,"y":-35},{"x":40,"y":16},{"x":-87,"y":-119},{"x":-77,"y":-14},{"x":-64,"y":-44},{"x":-40,"y":-76},{"x":-61,"y":-26},{"x":-14,"y":17},{"x":-29,"y":-9},{"x":34,"y":-4},{"x":-214,"y":-130},{"x":-94,"y":-10},{"x":-82,"y":-60},{"x":-114,"y":-22},{"x":-82,"y":-80},{"x":-149,"y":-45},{"x":-176,"y":-131},{"x":-135,"y":30},{"x":-57,"y":-24},{"x":-11,"y":24},{"x":-20,"y":0},{"x":24,"y":-13},{"x":-21,"y":6},{"x":8,"y":-27},{"x":-22,"y":-2},{"x":-146,"y":54}],"type":"coastline"},{"arc":[{"x":212443,"y":184419},{"x":-18,"y":5},{"x":20,"y":-42},{"x":-2,"y":37}],"type":"coastline"},{"arc":[{"x":212476,"y":184284},{"x":-23,"y":-73},{"x":38,"y":91},{"x":-15,"y":-18}],"type":"coastline"},{"arc":[{"x":212607,"y":183965},{"x":-27,"y":-1},{"x":-51,"y":49},{"x":-7,"y":48},{"x":6,"y":-48},{"x":52,"y":-50},{"x":52,"y":5},{"x":-25,"y":-3}],"type":"coastline"},{"arc":[{"x":213228,"y":185246},{"x":-25,"y":17},{"x":-12,"y":-19},{"x":22,"y":-34},{"x":15,"y":36}],"type":"coastline"},{"arc":[{"x":213880,"y":183284},{"x":-156,"y":33},{"x":-39,"y":50},{"x":23,"y":-41},{"x":-23,"y":31},{"x":-18,"y":-20},{"x":-321,"y":89},{"x":-141,"y":15},{"x":-45,"y":41},{"x":16,"y":-31},{"x":-16,"y":23},{"x":-6,"y":-22},{"x":-43,"y":5},{"x":-163,"y":57},{"x":3,"y":26},{"x":-16,"y":18},{"x":11,"y":-29},{"x":-19,"y":9},{"x":7,"y":12},{"x":-13,"y":-22},{"x":-64,"y":26},{"x":-91,"y":52},{"x":-74,"y":99},{"x":5,"y":-32},{"x":-48,"y":50},{"x":47,"y":-12},{"x":-61,"y":19},{"x":21,"y":30},{"x":-21,"y":-29},{"x":-17,"y":26},{"x":30,"y":11},{"x":-66,"y":71},{"x":33,"y":62},{"x":-37,"y":-45},{"x":-117,"y":110},{"x":-39,"y":80},{"x":-6,"y":-25},{"x":-32,"y":9},{"x":36,"y":19},{"x":28,"y":69},{"x":-69,"y":-67},{"x":2,"y":108},{"x":18,"y":-16},{"x":-7,"y":17},{"x":47,"y":2},{"x":33,"y":-28},{"x":-35,"y":51},{"x":-53,"y":-12},{"x":-6,"y":26},{"x":27,"y":62},{"x":-18,"y":14},{"x":62,"y":50},{"x":16,"y":-17},{"x":-22,"y":38},{"x":23,"y":32},{"x":-19,"y":-30},{"x":-20,"y":8},{"x":-20,"y":185},{"x":111,"y":229},{"x":60,"y":27},{"x":-42,"y":-12},{"x":159,"y":129},{"x":-51,"y":-18},{"x":42,"y":40},{"x":90,"y":22},{"x":-1,"y":41},{"x":53,"y":38},{"x":11,"y":46},{"x":76,"y":1},{"x":31,"y":83},{"x":-27,"y":-17},{"x":6,"y":41},{"x":56,"y":45},{"x":82,"y":6},{"x":53,"y":98},{"x":68,"y":-17},{"x":-20,"y":23},{"x":50,"y":-19},{"x":11,"y":15},{"x":84,"y":-51},{"x":8,"y":42}],"type":"coastline"},{"arc":[{"x":213317,"y":185333},{"x":-39,"y":140},{"x":19,"y":93},{"x":-67,"y":16},{"x":-11,"y":85},{"x":-77,"y":-34},{"x":-38,"y":60},{"x":-45,"y":-14},{"x":-125,"y":120},{"x":-30,"y":68},{"x":-84,"y":27},{"x":-107,"y":187},{"x":-64,"y":23},{"x":-72,"y":-36},{"x":-32,"y":22},{"x":-5,"y":63},{"x":-48,"y":38},{"x":-22,"y":85},{"x":-89,"y":76},{"x":-151,"y":-28},{"x":-44,"y":139},{"x":-106,"y":128}],"type":"admin"},{"arc":[{"x":212080,"y":186591},{"x":-47,"y":4},{"x":-21,"y":-44},{"x":-120,"y":-15},{"x":-144,"y":-179},{"x":-87,"y":35},{"x":-84,"y":-69},{"x":-88,"y":-157},{"x":29,"y":-196},{"x":-63,"y":-43},{"x":4,"y":-61},{"x":-76,"y":-50},{"x":-66,"y":4},{"x":-23,"y":-38},{"x":-65,"y":-12},{"x":-121,"y":82},{"x":6,"y":63},{"x":-45,"y":47},{"x":11,"y":59},{"x":-71,"y":40},{"x":-36,"y":246},{"x":-66,"y":66},{"x":-2,"y":35},{"x":-69,"y":19},{"x":-130,"y":147}],"type":"admin"},{"arc":[{"x":210706,"y":186574},{"x":-66,"y":-90},{"x":-131,"y":-28},{"x":-106,"y":6},{"x":-106,"y":-87},{"x":-81,"y":15},{"x":-36,"y":-51},{"x":-114,"y":-13},{"x":-53,"y":-199},{"x":37,"y":-166},{"x":91,"y":-92},{"x":2,"y":-242},{"x":54,"y":-101},{"x":-52,"y":18},{"x":-94,"y":-32},{"x":-65,"y":78},{"x":-65,"y":-1},{"x":-128,"y":-73},{"x":-146,"y":0},{"x":-54,"y":-142}],"type":"area"},{"arc":[{"x":209593,"y":185374},{"x":-3,"y":-104},{"x":-44,"y":-89}],"type":"area"},{"arc":[{"x":209546,"y":185181},{"x":78,"y":-4},{"x":106,"y":-166},{"x":42,"y":1},{"x":218,"y":-169},{"x":67,"y":-83},{"x":38,"y":-179},{"x":73,"y":-60},{"x":9,"y":-49},{"x":129,"y":-96},{"x":-3,"y":-29},{"x":-61,"y":-27},{"x":28,"y":-113},{"x":-23,"y":-119},{"x":17,"y":-67},{"x":47,"y":-37},{"x":-56,"y":-132},{"x":-2,"y":-105},{"x":-62,"y":-39},{"x":46,"y":-65},{"x":-29,"y":-47},{"x":13,"y":-68},{"x":-35,"y":-156},{"x":72,"y":-111},{"x":91,"y":-54},{"x":97,"y":-129},{"x":164,"y":-71},{"x":-35,"y":-163},{"x":62,"y":-203},{"x":-61,"y":-210}],"type":"area"},{"arc":[{"x":210576,"y":182431},{"x":27,"y":-69},{"x":-18,"y":-128},{"x":-48,"y":-47},{"x":-71,"y":16},{"x":-113,"y":-61},{"x":66,"y":-11},{"x":28,"y":-51},{"x":76,"y":-30},{"x":19,"y":19},{"x":34,"y":-33},{"x":-7,"y":55},{"x":93,"y":7},{"x":17,"y":28},{"x":61,"y":-18},{"x":72,"y":-104},{"x":203,"y":-164}],"type":"admin"},{"arc":[{"x":211015,"y":181840},{"x":56,"y":13},{"x":41,"y":-22}],"type":"admin"},{"arc":[{"x":211112,"y":181831},{"x":12,"y":76},{"x":80,"y":-38},{"x":13,"y":131},{"x":105,"y":77},{"x":-42,"y":20},{"x":49,"y":30},{"x":23,"y":73},{"x":111,"y":22},{"x":42,"y":60},{"x":-11,"y":82},{"x":66,"y":60},{"x":89,"y":-10},{"x":95,"y":-47},{"x":96,"y":47},{"x":81,"y":-39},{"x":51,"y":49},{"x":47,"y":-32},{"x":77,"y":12},{"x":28,"y":-22},{"x":65,"y":41},{"x":180,"y":-3},{"x":49,"y":50},{"x":99,"y":-24},{"x":36,"y":56},{"x":72,"y":39},{"x":109,"y":-5},{"x":52,"y":33},{"x":82,"y":6},{"x":16,"y":-24},{"x":46,"y":17},{"x":75,"y":-43},{"x":51,"y":26},{"x":37,"y":-40},{"x":103,"y":-18},{"x":-5,"y":-43},{"x":39,"y":-50},{"x":50,"y":-16},{"x":79,"y":61},{"x":59,"y":-8},{"x":25,"y":48},{"x":53,"y":-11},{"x":58,"y":38},{"x":63,"y":-34},{"x":80,"y":52},{"x":25,"y":-54},{"x":55,"y":-28},{"x":-9,"y":-43},{"x":60,"y":-92},{"x":52,"y":-3},{"x":61,"y":-45},{"x":30,"y":-72},{"x":53,"y":15},{"x":18,"y":-40},{"x":102,"y":8}],"type":"area"},{"arc":[{"x":214144,"y":182176},{"x":12,"y":100},{"x":-95,"y":185},{"x":35,"y":65},{"x":-38,"y":137},{"x":-33,"y":47},{"x":-120,"y":37},{"x":7,"y":32},{"x":-36,"y":24},{"x":46,"y":17},{"x":6,"y":29},{"x":-33,"y":116},{"x":8,"y":228},{"x":-23,"y":91}],"type":"admin"},{"arc":[{"x":211486,"y":179964},{"x":-46,"y":173},{"x":-52,"y":-21},{"x":-35,"y":26},{"x":14,"y":70},{"x":-63,"y":148},{"x":37,"y":54},{"x":-47,"y":46},{"x":-34,"y":-7},{"x":84,"y":86},{"x":-26,"y":63},{"x":-143,"y":21},{"x":-6,"y":23},{"x":55,"y":34},{"x":-24,"y":119},{"x":-139,"y":-19},{"x":-46,"y":82}],"type":"admin"},{"arc":[{"x":211015,"y":180862},{"x":-63,"y":15},{"x":-113,"y":81},{"x":-33,"y":61},{"x":-95,"y":44},{"x":-42,"y":79},{"x":-89,"y":26},{"x":-33,"y":60},{"x":-29,"y":3},{"x":4,"y":55},{"x":-22,"y":10},{"x":-28,"y":-53},{"x":-109,"y":22}],"type":"admin"},{"arc":[{"x":210363,"y":181265},{"x":-25,"y":-34},{"x":-88,"y":-17},{"x":-6,"y":51},{"x":-72,"y":18},{"x":-58,"y":47},{"x":9,"y":24},{"x":-66,"y":27},{"x":-7,"y":39},{"x":73,"y":25},{"x":7,"y":51},{"x":-23,"y":68},{"x":-96,"y":28}],"type":"admin"},{"arc":[{"x":210011,"y":181592},{"x":-132,"y":28},{"x":-37,"y":65},{"x":-61,"y":-17},{"x":-44,"y":72},{"x":-73,"y":25}],"type":"admin"},{"arc":[{"x":209664,"y":181765},{"x":-25,"y":-51},{"x":-30,"y":13},{"x":46,"y":50},{"x":-22,"y":104},{"x":-313,"y":32},{"x":-123,"y":-21},{"x":-67,"y":32},{"x":46,"y":48},{"x":-30,"y":50},{"x":-47,"y":-88},{"x":-152,"y":88},{"x":-46,"y":98},{"x":7,"y":28},{"x":67,"y":19},{"x":-12,"y":50},{"x":69,"y":37},{"x":-29,"y":9},{"x":7,"y":180},{"x":-63,"y":43},{"x":-35,"y":83},{"x":-63,"y":16},{"x":-20,"y":51},{"x":-81,"y":1}],"type":"area"},{"arc":[{"x":208748,"y":182637},{"x":-17,"y":-134},{"x":-40,"y":-23},{"x":-14,"y":-60},{"x":81,"y":-67},{"x":-9,"y":-70},{"x":85,"y":-56},{"x":5,"y":-51},{"x":-143,"y":9},{"x":-33,"y":-36},{"x":91,"y":-51},{"x":50,"y":3},{"x":0,"y":-21},{"x":-27,"y":-31},{"x":-69,"y":3},{"x":-157,"y":-94},{"x":6,"y":-42},{"x":-32,"y":-14},{"x":-30,"y":-73},{"x":-11,"y":-78},{"x":28,"y":-24},{"x":-62,"y":-255},{"x":-59,"y":-38},{"x":-35,"y":33},{"x":-52,"y":-11},{"x":-44,"y":-72},{"x":-20,"y":-155},{"x":-55,"y":7},{"x":-62,"y":-44},{"x":-85,"y":64},{"x":-78,"y":-37},{"x":-29,"y":-246}],"type":"admin"},{"arc":[{"x":207931,"y":180973},{"x":15,"y":-9}],"type":"coastline"},{"arc":[{"x":207946,"y":180964},{"x":6,"y":-7}],"type":"admin"},{"arc":[{"x":207952,"y":180957},{"x":8,"y":-20}],"type":"coastline"},{"arc":[{"x":207960,"y":180937},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":207960,"y":180931},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":207960,"y":180920},{"x":14,"y":-8}],"type":"admin"},{"arc":[{"x":207974,"y":180912},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":207974,"y":180904},{"x":0,"y":-13}],"type":"admin"},{"arc":[{"x":207974,"y":180891},{"x":11,"y":-19}],"type":"coastline"},{"arc":[{"x":207985,"y":180872},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":207986,"y":180868},{"x":-4,"y":-11}],"type":"coastline"},{"arc":[{"x":207982,"y":180857},{"x":-5,"y":-12}],"type":"admin"},{"arc":[{"x":207977,"y":180845},{"x":-6,"y":-30}],"type":"coastline"},{"arc":[{"x":207971,"y":180815},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":207967,"y":180805},{"x":-11,"y":-26}],"type":"admin"},{"arc":[{"x":207956,"y":180779},{"x":-12,"y":-19}],"type":"coastline"},{"arc":[{"x":207944,"y":180760},{"x":-11,"y":-12}],"type":"coastline"},{"arc":[{"x":207933,"y":180748},{"x":-24,"y":-34}],"type":"coastline"},{"arc":[{"x":207909,"y":180714},{"x":-9,"y":-22}],"type":"coastline"},{"arc":[{"x":207900,"y":180692},{"x":-9,"y":-14}],"type":"admin"},{"arc":[{"x":207891,"y":180678},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":207890,"y":180674},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":207889,"y":180674},{"x":-4,"y":-11}],"type":"admin"},{"arc":[{"x":207885,"y":180663},{"x":0,"y":-12}],"type":"coastline"},{"arc":[{"x":207885,"y":180651},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":207890,"y":180642},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":207895,"y":180637},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":207895,"y":180634},{"x":-5,"y":-16}],"type":"coastline"},{"arc":[{"x":207890,"y":180618},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":207889,"y":180616},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":207890,"y":180610},{"x":23,"y":-4}],"type":"coastline"},{"arc":[{"x":207913,"y":180606},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":207922,"y":180601},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":207922,"y":180590},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":207922,"y":180588},{"x":4,"y":-24}],"type":"coastline"},{"arc":[{"x":207926,"y":180564},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":207928,"y":180561},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":207932,"y":180553},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":207936,"y":180553},{"x":6,"y":2}],"type":"admin"},{"arc":[{"x":207942,"y":180555},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":207949,"y":180556},{"x":7,"y":-5}],"type":"admin"},{"arc":[{"x":207956,"y":180551},{"x":23,"y":-8}],"type":"coastline"},{"arc":[{"x":207979,"y":180543},{"x":16,"y":-16}],"type":"coastline"},{"arc":[{"x":207995,"y":180527},{"x":16,"y":0}],"type":"coastline"},{"arc":[{"x":208011,"y":180527},{"x":7,"y":-1}],"type":"admin"},{"arc":[{"x":208018,"y":180526},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":208017,"y":180516},{"x":-4,"y":-9}],"type":"admin"},{"arc":[{"x":208013,"y":180507},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":208014,"y":180502},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":208021,"y":180493},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":208022,"y":180485},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":208026,"y":180480},{"x":17,"y":-17}],"type":"coastline"},{"arc":[{"x":208043,"y":180463},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":208043,"y":180461},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":208041,"y":180451},{"x":-11,"y":-12}],"type":"admin"},{"arc":[{"x":208030,"y":180439},{"x":-7,"y":-12}],"type":"coastline"},{"arc":[{"x":208023,"y":180427},{"x":-19,"y":-10}],"type":"coastline"},{"arc":[{"x":208004,"y":180417},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":208001,"y":180416},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":207995,"y":180412},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":207991,"y":180410},{"x":-23,"y":-9}],"type":"coastline"},{"arc":[{"x":207968,"y":180401},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":207962,"y":180400},{"x":-13,"y":-4}],"type":"admin"},{"arc":[{"x":207949,"y":180396},{"x":-9,"y":-6}],"type":"coastline"},{"arc":[{"x":207940,"y":180390},{"x":-7,"y":-17}],"type":"coastline"},{"arc":[{"x":207933,"y":180373},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":207930,"y":180369},{"x":-22,"y":-18}],"type":"coastline"},{"arc":[{"x":207908,"y":180351},{"x":-2,"y":-18}],"type":"admin"},{"arc":[{"x":207906,"y":180333},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":207906,"y":180323},{"x":-1,"y":-10}],"type":"admin"},{"arc":[{"x":207905,"y":180313},{"x":2,"y":-16}],"type":"coastline"},{"arc":[{"x":207907,"y":180297},{"x":1,"y":-14}],"type":"coastline"},{"arc":[{"x":207908,"y":180283},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":207908,"y":180280},{"x":13,"y":-39}],"type":"coastline"},{"arc":[{"x":207921,"y":180241},{"x":5,"y":-5}],"type":"admin"},{"arc":[{"x":207926,"y":180236},{"x":7,"y":-35}],"type":"coastline"},{"arc":[{"x":207933,"y":180201},{"x":-42,"y":-43}],"type":"coastline"},{"arc":[{"x":207891,"y":180158},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":207890,"y":180156},{"x":-6,"y":-15}],"type":"coastline"},{"arc":[{"x":207884,"y":180141},{"x":-5,"y":-5}],"type":"admin"},{"arc":[{"x":207879,"y":180136},{"x":-13,"y":-15}],"type":"coastline"},{"arc":[{"x":207866,"y":180121},{"x":-11,"y":-10}],"type":"coastline"},{"arc":[{"x":207855,"y":180111},{"x":-5,"y":-1}],"type":"admin"},{"arc":[{"x":207850,"y":180110},{"x":-15,"y":-3}],"type":"coastline"},{"arc":[{"x":207835,"y":180107},{"x":-27,"y":-29}],"type":"coastline"},{"arc":[{"x":207808,"y":180078},{"x":-2,"y":-12}],"type":"coastline"},{"arc":[{"x":207806,"y":180066},{"x":-11,"y":-18}],"type":"coastline"},{"arc":[{"x":207795,"y":180048},{"x":69,"y":-41},{"x":21,"y":-64},{"x":82,"y":-34},{"x":4,"y":-72},{"x":82,"y":-3},{"x":58,"y":28},{"x":88,"y":-98},{"x":59,"y":-12},{"x":84,"y":37},{"x":55,"y":-30},{"x":5,"y":-58},{"x":63,"y":-31},{"x":12,"y":-56},{"x":78,"y":-39},{"x":241,"y":5},{"x":72,"y":78},{"x":107,"y":-14},{"x":46,"y":22},{"x":122,"y":-72},{"x":60,"y":51},{"x":78,"y":-105},{"x":24,"y":12},{"x":-22,"y":78},{"x":62,"y":41},{"x":49,"y":-36},{"x":12,"y":-87},{"x":105,"y":-46},{"x":3,"y":34},{"x":48,"y":-13},{"x":-9,"y":-77},{"x":68,"y":-53},{"x":47,"y":-123},{"x":-20,"y":-142},{"x":-65,"y":-91},{"x":-76,"y":-24},{"x":20,"y":-107},{"x":-87,"y":-8},{"x":-87,"y":-57},{"x":-17,"y":-94},{"x":-45,"y":-21},{"x":-54,"y":-96},{"x":-123,"y":5},{"x":-60,"y":-32},{"x":-11,"y":-61},{"x":-63,"y":-39},{"x":-58,"y":-3},{"x":-9,"y":-86},{"x":56,"y":-95},{"x":54,"y":-7},{"x":35,"y":-47},{"x":-132,"y":-125}],"type":"admin"},{"arc":[{"x":208926,"y":178140},{"x":31,"y":-32},{"x":84,"y":17},{"x":69,"y":-70},{"x":133,"y":23},{"x":48,"y":-26},{"x":22,"y":108},{"x":85,"y":90},{"x":22,"y":88},{"x":-35,"y":85},{"x":103,"y":25},{"x":55,"y":-38},{"x":43,"y":159},{"x":131,"y":36},{"x":66,"y":113},{"x":118,"y":-50},{"x":8,"y":33},{"x":37,"y":-6},{"x":37,"y":54},{"x":24,"y":-4},{"x":155,"y":598},{"x":98,"y":-15},{"x":58,"y":126},{"x":30,"y":-17},{"x":107,"y":150},{"x":41,"y":128},{"x":86,"y":71},{"x":65,"y":100},{"x":82,"y":52},{"x":57,"y":-288},{"x":-138,"y":-176},{"x":345,"y":-56},{"x":102,"y":27},{"x":64,"y":127},{"x":142,"y":81},{"x":-6,"y":76},{"x":55,"y":-7},{"x":109,"y":137}],"type":"admin"},{"arc":[{"x":211459,"y":179859},{"x":55,"y":36},{"x":-28,"y":69}],"type":"area"},{"arc":[{"x":208681,"y":192323},{"x":-18,"y":95},{"x":21,"y":29},{"x":-22,"y":-29},{"x":19,"y":-95}],"type":"coastline"},{"arc":[{"x":208726,"y":192260},{"x":-60,"y":46},{"x":13,"y":-15},{"x":-44,"y":-21},{"x":-1,"y":-38},{"x":85,"y":-56},{"x":-26,"y":45},{"x":26,"y":29},{"x":56,"y":-40},{"x":16,"y":44},{"x":-25,"y":28},{"x":-40,"y":-22}],"type":"coastline"},{"arc":[{"x":208831,"y":192474},{"x":-37,"y":8},{"x":-23,"y":103},{"x":21,"y":-104},{"x":39,"y":-7}],"type":"coastline"},{"arc":[{"x":209003,"y":192324},{"x":-88,"y":5},{"x":-87,"y":103},{"x":87,"y":-105},{"x":117,"y":-5},{"x":-29,"y":2}],"type":"coastline"},{"arc":[{"x":209282,"y":191763},{"x":-16,"y":17},{"x":47,"y":-33},{"x":-31,"y":16}],"type":"coastline"},{"arc":[{"x":207886,"y":193476},{"x":-3,"y":-157},{"x":-91,"y":-85},{"x":-53,"y":-196},{"x":61,"y":-113},{"x":119,"y":16},{"x":-19,"y":-88},{"x":48,"y":-164},{"x":-70,"y":-141},{"x":-104,"y":18},{"x":-18,"y":-58},{"x":-89,"y":-3},{"x":-77,"y":-50},{"x":40,"y":-27},{"x":-23,"y":-74},{"x":93,"y":-49},{"x":-39,"y":-149},{"x":-396,"y":34},{"x":-131,"y":-33},{"x":-145,"y":13},{"x":-85,"y":35},{"x":-162,"y":146},{"x":-47,"y":8},{"x":-15,"y":44},{"x":-107,"y":25},{"x":-156,"y":88}],"type":"admin"},{"arc":[{"x":206417,"y":192516},{"x":-94,"y":-85},{"x":-48,"y":-101},{"x":51,"y":-41},{"x":-19,"y":-47},{"x":24,"y":-93},{"x":140,"y":-110},{"x":-10,"y":-89},{"x":67,"y":-26},{"x":111,"y":-165},{"x":16,"y":-145},{"x":-56,"y":-125},{"x":38,"y":-131},{"x":-29,"y":-80},{"x":-160,"y":-84},{"x":33,"y":-62},{"x":-83,"y":-131},{"x":117,"y":-58},{"x":12,"y":-42},{"x":-84,"y":-45}],"type":"admin"},{"arc":[{"x":206443,"y":190856},{"x":62,"y":-77},{"x":-22,"y":-130},{"x":21,"y":-3},{"x":27,"y":94},{"x":94,"y":20},{"x":64,"y":-134},{"x":-21,"y":-36},{"x":25,"y":-39},{"x":13,"y":81},{"x":-48,"y":139},{"x":123,"y":22},{"x":68,"y":-31},{"x":3,"y":54},{"x":44,"y":-58},{"x":27,"y":14},{"x":11,"y":-22},{"x":11,"y":59},{"x":26,"y":16},{"x":50,"y":-26},{"x":26,"y":65},{"x":83,"y":76},{"x":107,"y":-55},{"x":76,"y":457},{"x":60,"y":38},{"x":61,"y":2},{"x":120,"y":98},{"x":136,"y":-267},{"x":55,"y":-46},{"x":49,"y":23},{"x":115,"y":-71},{"x":-80,"y":-64},{"x":27,"y":-45},{"x":36,"y":5},{"x":-24,"y":-76},{"x":87,"y":-83},{"x":42,"y":8},{"x":54,"y":-25},{"x":21,"y":-67},{"x":48,"y":-37},{"x":140,"y":-2},{"x":-120,"y":-182}],"type":"admin"},{"arc":[{"x":208140,"y":190551},{"x":46,"y":36},{"x":90,"y":-129},{"x":61,"y":39},{"x":85,"y":-38},{"x":90,"y":232},{"x":-4,"y":78},{"x":94,"y":66},{"x":75,"y":120},{"x":38,"y":213},{"x":0,"y":-55},{"x":27,"y":-42},{"x":21,"y":31},{"x":-8,"y":-33},{"x":41,"y":-34},{"x":37,"y":35},{"x":-35,"y":43},{"x":44,"y":-26},{"x":5,"y":33},{"x":33,"y":-2},{"x":-60,"y":25},{"x":-10,"y":25},{"x":-41,"y":-13},{"x":43,"y":24},{"x":22,"y":-14},{"x":23,"y":15},{"x":33,"y":-48},{"x":48,"y":0},{"x":-42,"y":36},{"x":-5,"y":36},{"x":29,"y":-50},{"x":4,"y":18},{"x":17,"y":-23},{"x":55,"y":21},{"x":133,"y":-33},{"x":12,"y":-46},{"x":15,"y":22},{"x":-24,"y":-114},{"x":63,"y":-3},{"x":36,"y":48}],"type":"admin"},{"arc":[{"x":209231,"y":191044},{"x":34,"y":4},{"x":-9,"y":40},{"x":52,"y":91},{"x":60,"y":7},{"x":62,"y":229},{"x":46,"y":56},{"x":-8,"y":79},{"x":47,"y":29}],"type":"admin"},{"arc":[{"x":209515,"y":191579},{"x":-34,"y":31},{"x":-157,"y":48},{"x":-23,"y":78},{"x":3,"y":-46},{"x":-4,"y":35},{"x":-12,"y":-14},{"x":-78,"y":38},{"x":-12,"y":-24},{"x":-121,"y":54},{"x":30,"y":68},{"x":-62,"y":31},{"x":-87,"y":120},{"x":-51,"y":181},{"x":42,"y":73},{"x":-44,"y":-73},{"x":51,"y":-182},{"x":88,"y":-120},{"x":-62,"y":-87},{"x":-57,"y":42},{"x":27,"y":55},{"x":-28,"y":75},{"x":-20,"y":12},{"x":-24,"y":-45},{"x":-25,"y":15},{"x":0,"y":79},{"x":-34,"y":-58},{"x":-25,"y":15},{"x":31,"y":59},{"x":-41,"y":25},{"x":12,"y":24},{"x":72,"y":24},{"x":-73,"y":-23},{"x":-48,"y":-98},{"x":-32,"y":17},{"x":34,"y":101},{"x":-35,"y":39},{"x":-18,"y":-31},{"x":-32,"y":38},{"x":16,"y":18},{"x":-19,"y":-21},{"x":-50,"y":52},{"x":13,"y":19},{"x":-27,"y":-30},{"x":3,"y":31},{"x":-22,"y":-11},{"x":29,"y":34},{"x":-4,"y":71},{"x":-5,"y":-66},{"x":-22,"y":28},{"x":-8,"y":-38},{"x":-20,"y":76},{"x":48,"y":15},{"x":10,"y":31},{"x":-16,"y":-25},{"x":-41,"y":4},{"x":1,"y":45},{"x":4,"y":24},{"x":42,"y":-6},{"x":-15,"y":64},{"x":60,"y":33},{"x":-58,"y":-17},{"x":-6,"y":16},{"x":71,"y":33},{"x":-3,"y":-18},{"x":25,"y":49},{"x":-6,"y":-35},{"x":46,"y":31},{"x":-22,"y":24},{"x":41,"y":54},{"x":10,"y":-21},{"x":10,"y":128},{"x":-47,"y":59},{"x":-44,"y":-22},{"x":-25,"y":40},{"x":-39,"y":-17},{"x":-109,"y":61},{"x":-43,"y":48},{"x":17,"y":68},{"x":-34,"y":1},{"x":-44,"y":99},{"x":-29,"y":29},{"x":-57,"y":-7},{"x":-25,"y":20},{"x":5,"y":95},{"x":-21,"y":-29},{"x":-15,"y":26},{"x":-48,"y":-1},{"x":-51,"y":73},{"x":22,"y":16},{"x":-34,"y":13},{"x":42,"y":-12},{"x":-21,"y":27},{"x":-59,"y":-27},{"x":-37,"y":41},{"x":-48,"y":-7},{"x":-121,"y":135}],"type":"coastline"},{"arc":[{"x":208698,"y":192481},{"x":-4,"y":53},{"x":10,"y":-75},{"x":-6,"y":22}],"type":"coastline"},{"arc":[{"x":209546,"y":185181},{"x":-34,"y":-19},{"x":-67,"y":-178},{"x":-322,"y":-141},{"x":-78,"y":-232},{"x":3,"y":-138},{"x":46,"y":-86},{"x":-133,"y":-154},{"x":-71,"y":40},{"x":-49,"y":-10},{"x":-47,"y":-20},{"x":-12,"y":-42},{"x":-104,"y":-30},{"x":-32,"y":-142},{"x":11,"y":-97},{"x":24,"y":-140},{"x":81,"y":-85},{"x":19,"y":-69},{"x":65,"y":-54},{"x":20,"y":36},{"x":56,"y":-7},{"x":45,"y":-71},{"x":88,"y":0},{"x":41,"y":-40},{"x":-53,"y":-90},{"x":-99,"y":-67},{"x":27,"y":-38},{"x":-23,"y":-86},{"x":90,"y":-36},{"x":75,"y":58},{"x":122,"y":32},{"x":162,"y":-86},{"x":7,"y":-56},{"x":86,"y":-76},{"x":22,"y":-128},{"x":85,"y":-51},{"x":30,"y":-152},{"x":61,"y":47},{"x":-11,"y":-80},{"x":40,"y":-16},{"x":-1,"y":-35},{"x":36,"y":-1},{"x":4,"y":-69},{"x":63,"y":-3},{"x":-1,"y":-25},{"x":31,"y":-1},{"x":14,"y":-73}],"type":"area"},{"arc":[{"x":209863,"y":182470},{"x":55,"y":-7},{"x":36,"y":-84},{"x":85,"y":35},{"x":29,"y":-35},{"x":54,"y":8},{"x":36,"y":-75},{"x":76,"y":-20},{"x":20,"y":27},{"x":-43,"y":59},{"x":22,"y":30},{"x":109,"y":-81},{"x":48,"y":32}],"type":"admin"},{"arc":[{"x":210390,"y":182359},{"x":93,"y":73},{"x":93,"y":-1}],"type":"admin"},{"arc":[{"x":211112,"y":181831},{"x":73,"y":-84},{"x":62,"y":35},{"x":77,"y":-42},{"x":47,"y":28},{"x":94,"y":-7},{"x":-7,"y":-44},{"x":30,"y":-6},{"x":11,"y":-35},{"x":-35,"y":-32},{"x":32,"y":-10},{"x":-7,"y":-36},{"x":-32,"y":14}],"type":"admin"},{"arc":[{"x":211457,"y":181612},{"x":-12,"y":-49},{"x":56,"y":-36},{"x":112,"y":-12},{"x":-5,"y":-42},{"x":-64,"y":-12},{"x":-7,"y":-63},{"x":-50,"y":3},{"x":-40,"y":-31},{"x":15,"y":-65},{"x":50,"y":-18},{"x":0,"y":-56},{"x":120,"y":-30},{"x":1,"y":-31},{"x":33,"y":-6},{"x":-43,"y":-27},{"x":27,"y":-22},{"x":-11,"y":-65},{"x":115,"y":-6},{"x":7,"y":-50},{"x":42,"y":-5},{"x":7,"y":-30},{"x":15,"y":24},{"x":46,"y":-8}],"type":"admin"},{"arc":[{"x":211871,"y":180975},{"x":102,"y":-15},{"x":144,"y":16},{"x":0,"y":-87},{"x":26,"y":-18},{"x":-59,"y":-46},{"x":111,"y":-44},{"x":14,"y":54},{"x":34,"y":-12},{"x":25,"y":24},{"x":175,"y":-143},{"x":146,"y":-39},{"x":31,"y":-70},{"x":105,"y":-15},{"x":129,"y":7},{"x":62,"y":77},{"x":111,"y":-40},{"x":22,"y":105},{"x":59,"y":82},{"x":62,"y":-23},{"x":24,"y":62},{"x":43,"y":-50},{"x":24,"y":77},{"x":50,"y":-18},{"x":81,"y":27},{"x":28,"y":-124},{"x":124,"y":23}],"type":"area"},{"arc":[{"x":213544,"y":180785},{"x":-32,"y":28},{"x":9,"y":94},{"x":28,"y":-4},{"x":4,"y":47},{"x":93,"y":-31},{"x":78,"y":157},{"x":-13,"y":167},{"x":56,"y":99},{"x":36,"y":11},{"x":0,"y":137},{"x":54,"y":34},{"x":22,"y":120},{"x":59,"y":65},{"x":146,"y":54},{"x":64,"y":17},{"x":77,"y":-32},{"x":96,"y":58},{"x":23,"y":-22},{"x":84,"y":14},{"x":50,"y":48}],"type":"admin"},{"arc":[{"x":214478,"y":181846},{"x":-26,"y":62},{"x":-62,"y":-2},{"x":-3,"y":53},{"x":-75,"y":73},{"x":6,"y":63},{"x":-64,"y":56},{"x":-94,"y":-35},{"x":-16,"y":60}],"type":"admin"},{"arc":[{"x":216140,"y":180498},{"x":-64,"y":86},{"x":-13,"y":75}],"type":"admin"},{"arc":[{"x":216063,"y":180659},{"x":-20,"y":137},{"x":26,"y":71},{"x":-70,"y":166},{"x":18,"y":190},{"x":-70,"y":32}],"type":"admin"},{"arc":[{"x":215947,"y":181255},{"x":-97,"y":-81}],"type":"admin"},{"arc":[{"x":215850,"y":181174},{"x":0,"y":-61},{"x":-114,"y":-42},{"x":-20,"y":28},{"x":-49,"y":-3},{"x":-19,"y":31},{"x":-28,"y":-26},{"x":-31,"y":37},{"x":-59,"y":-8},{"x":-49,"y":-117},{"x":-180,"y":-137},{"x":-42,"y":-71},{"x":-160,"y":-58},{"x":-20,"y":-97},{"x":24,"y":-75},{"x":-39,"y":-151},{"x":-26,"y":23},{"x":-3,"y":173},{"x":-97,"y":47},{"x":-61,"y":80},{"x":-85,"y":-18},{"x":-11,"y":-26},{"x":-40,"y":7},{"x":79,"y":-72},{"x":9,"y":-54},{"x":-65,"y":-22},{"x":3,"y":-49},{"x":58,"y":-13},{"x":-81,"y":-207},{"x":-59,"y":-46}],"type":"admin"},{"arc":[{"x":214685,"y":180247},{"x":-18,"y":-45},{"x":-61,"y":-31},{"x":-84,"y":70},{"x":-76,"y":-88},{"x":189,"y":-203},{"x":1,"y":-102},{"x":-97,"y":-65},{"x":-9,"y":-33}],"type":"area"},{"arc":[{"x":214530,"y":179750},{"x":394,"y":37},{"x":63,"y":-22},{"x":35,"y":25},{"x":216,"y":13},{"x":301,"y":-9},{"x":171,"y":-41},{"x":33,"y":-72},{"x":139,"y":-66}],"type":"coastline"},{"arc":[{"x":215882,"y":179615},{"x":33,"y":40},{"x":-40,"y":38},{"x":41,"y":116},{"x":-40,"y":52},{"x":54,"y":140},{"x":-15,"y":73},{"x":147,"y":87},{"x":54,"y":86},{"x":31,"y":72},{"x":-7,"y":179}],"type":"admin"},{"arc":[{"x":210287,"y":189582},{"x":-72,"y":-48},{"x":-97,"y":-20},{"x":-62,"y":61},{"x":15,"y":97},{"x":-27,"y":47},{"x":-97,"y":-128},{"x":-5,"y":-98},{"x":-71,"y":48},{"x":-14,"y":-70},{"x":-144,"y":-22},{"x":-36,"y":15},{"x":-9,"y":165},{"x":-180,"y":27},{"x":-27,"y":176},{"x":-100,"y":-92},{"x":-41,"y":4},{"x":-58,"y":82},{"x":-73,"y":27},{"x":-32,"y":63},{"x":-90,"y":15}],"type":"admin"},{"arc":[{"x":209067,"y":189931},{"x":-65,"y":-24},{"x":-8,"y":-27},{"x":-47,"y":3},{"x":-9,"y":-89},{"x":-67,"y":-30},{"x":2,"y":-30},{"x":-112,"y":-35},{"x":-32,"y":-43},{"x":-70,"y":-27},{"x":67,"y":-39},{"x":-121,"y":-459},{"x":-52,"y":-71},{"x":-125,"y":-16},{"x":-117,"y":-176},{"x":-107,"y":-63},{"x":-51,"y":-101}],"type":"admin"},{"arc":[{"x":208153,"y":188704},{"x":-35,"y":-125},{"x":59,"y":-260},{"x":-40,"y":-108},{"x":14,"y":-183},{"x":38,"y":-78},{"x":-77,"y":-83},{"x":13,"y":-167},{"x":-52,"y":-36},{"x":-83,"y":-171},{"x":-24,"y":19},{"x":-13,"y":-15},{"x":-70,"y":-384},{"x":-73,"y":-129},{"x":-98,"y":-72},{"x":-79,"y":-108},{"x":-121,"y":0},{"x":-142,"y":-64},{"x":-87,"y":-102}],"type":"admin"},{"arc":[{"x":207283,"y":186638},{"x":48,"y":-134},{"x":-49,"y":-94},{"x":-9,"y":-122},{"x":50,"y":-97},{"x":-110,"y":-87},{"x":-5,"y":-70}],"type":"admin"},{"arc":[{"x":207208,"y":186034},{"x":78,"y":-69},{"x":-50,"y":-88},{"x":24,"y":-50},{"x":-24,"y":-149},{"x":219,"y":-320},{"x":881,"y":193}],"type":"admin"},{"arc":[{"x":208336,"y":185551},{"x":372,"y":-199},{"x":67,"y":-96},{"x":174,"y":134},{"x":331,"y":22},{"x":46,"y":-81},{"x":113,"y":45},{"x":97,"y":-52},{"x":57,"y":50}],"type":"area"},{"arc":[{"x":210706,"y":186574},{"x":-38,"y":127},{"x":-70,"y":5},{"x":-90,"y":71},{"x":-139,"y":49},{"x":-81,"y":234},{"x":5,"y":200},{"x":-49,"y":59},{"x":-129,"y":39},{"x":-96,"y":79},{"x":-36,"y":111},{"x":-93,"y":102},{"x":28,"y":71},{"x":3,"y":192},{"x":-23,"y":42},{"x":40,"y":16},{"x":76,"y":133},{"x":-47,"y":179},{"x":90,"y":50},{"x":46,"y":59},{"x":1,"y":-88},{"x":86,"y":-8},{"x":81,"y":119},{"x":130,"y":29},{"x":-6,"y":129},{"x":66,"y":-30},{"x":62,"y":35}],"type":"admin"},{"arc":[{"x":210523,"y":188578},{"x":35,"y":166},{"x":44,"y":63},{"x":-13,"y":91},{"x":57,"y":64},{"x":-44,"y":50},{"x":20,"y":149},{"x":48,"y":24},{"x":-6,"y":47},{"x":54,"y":40},{"x":-35,"y":20},{"x":75,"y":99},{"x":-31,"y":51},{"x":27,"y":103},{"x":-82,"y":-40},{"x":-8,"y":36},{"x":-115,"y":-24},{"x":-79,"y":35},{"x":-97,"y":1},{"x":-29,"y":47},{"x":-57,"y":-18}],"type":"admin"},{"arc":[{"x":210363,"y":191328},{"x":-82,"y":-623},{"x":21,"y":-2},{"x":16,"y":-105},{"x":88,"y":-53},{"x":-78,"y":15},{"x":5,"y":-18},{"x":-45,"y":-11},{"x":-9,"y":-61}],"type":"admin"},{"arc":[{"x":210279,"y":190470},{"x":14,"y":-47},{"x":-48,"y":-75},{"x":109,"y":-101},{"x":65,"y":-17},{"x":71,"y":13},{"x":99,"y":71},{"x":47,"y":-79},{"x":7,"y":-77},{"x":48,"y":-33},{"x":54,"y":24}],"type":"admin"},{"arc":[{"x":210745,"y":190149},{"x":73,"y":36},{"x":21,"y":61},{"x":58,"y":36},{"x":-7,"y":29},{"x":101,"y":34},{"x":8,"y":-79},{"x":-99,"y":-45},{"x":6,"y":-134},{"x":-40,"y":-57},{"x":3,"y":-26},{"x":77,"y":-7},{"x":101,"y":122},{"x":8,"y":72},{"x":-36,"y":82},{"x":25,"y":10},{"x":-44,"y":102},{"x":56,"y":55},{"x":112,"y":51},{"x":221,"y":20},{"x":213,"y":-19},{"x":74,"y":-23},{"x":68,"y":-79},{"x":309,"y":-3},{"x":105,"y":37},{"x":48,"y":79},{"x":143,"y":73},{"x":142,"y":18}],"type":"admin"},{"arc":[{"x":212491,"y":190594},{"x":15,"y":53},{"x":72,"y":64},{"x":222,"y":-52},{"x":199,"y":29},{"x":69,"y":49},{"x":30,"y":117}],"type":"admin"},{"arc":[{"x":213098,"y":190854},{"x":-1051,"y":127},{"x":-1224,"y":200},{"x":-262,"y":77},{"x":6,"y":64},{"x":-71,"y":38},{"x":69,"y":-39},{"x":-5,"y":-45},{"x":-28,"y":34},{"x":-22,"y":4},{"x":15,"y":-29},{"x":-38,"y":9},{"x":-4,"y":31},{"x":-2,"y":-29},{"x":-20,"y":4},{"x":2,"y":25},{"x":27,"y":8},{"x":-29,"y":-6},{"x":-2,"y":21},{"x":42,"y":41},{"x":-43,"y":-40},{"x":-9,"y":-35},{"x":-30,"y":18},{"x":6,"y":28},{"x":-8,"y":-32},{"x":-54,"y":0}],"type":"coastline"},{"arc":[{"x":219211,"y":189270},{"x":-1,"y":-45},{"x":5,"y":71},{"x":-4,"y":-26}],"type":"coastline"},{"arc":[{"x":219103,"y":189341},{"x":-117,"y":36},{"x":-230,"y":-136},{"x":-29,"y":83},{"x":-62,"y":-110},{"x":-60,"y":-12},{"x":-25,"y":-42},{"x":-74,"y":-32},{"x":-57,"y":25},{"x":18,"y":186},{"x":-117,"y":68},{"x":-121,"y":13},{"x":-130,"y":-69},{"x":-214,"y":38},{"x":-80,"y":-38},{"x":-119,"y":-11},{"x":-55,"y":89},{"x":-19,"y":111},{"x":83,"y":151},{"x":-33,"y":98},{"x":25,"y":140},{"x":-76,"y":73},{"x":87,"y":98},{"x":-52,"y":7},{"x":-24,"y":64},{"x":-59,"y":-16},{"x":-82,"y":31},{"x":-23,"y":34},{"x":-60,"y":2},{"x":-5,"y":34},{"x":-83,"y":4},{"x":-54,"y":36},{"x":-34,"y":-32},{"x":-89,"y":-12},{"x":-72,"y":26},{"x":-114,"y":-74},{"x":-79,"y":-15},{"x":-35,"y":16},{"x":-95,"y":-71},{"x":-47,"y":10},{"x":-37,"y":-50},{"x":-20,"y":18},{"x":-49,"y":-28},{"x":-32,"y":34},{"x":-51,"y":-11},{"x":-19,"y":24}],"type":"admin"},{"arc":[{"x":216483,"y":190131},{"x":-31,"y":-125},{"x":78,"y":-237},{"x":-90,"y":-121}],"type":"admin"},{"arc":[{"x":216440,"y":189648},{"x":98,"y":29},{"x":208,"y":-54},{"x":313,"y":-116},{"x":19,"y":-57},{"x":-16,"y":52},{"x":301,"y":-146},{"x":326,"y":-229},{"x":245,"y":-245},{"x":32,"y":-39},{"x":-14,"y":-21},{"x":27,"y":17},{"x":59,"y":-105},{"x":-34,"y":-40},{"x":10,"y":-36},{"x":-9,"y":36},{"x":47,"y":54},{"x":16,"y":-14},{"x":-34,"y":-29},{"x":8,"y":-79},{"x":-27,"y":-18},{"x":28,"y":18},{"x":28,"y":-65},{"x":-27,"y":-44},{"x":22,"y":7},{"x":-3,"y":-19},{"x":-24,"y":12},{"x":33,"y":-28},{"x":-24,"y":-52},{"x":-121,"y":-43},{"x":-160,"y":-109},{"x":-19,"y":17},{"x":19,"y":-19},{"x":-29,"y":-6},{"x":3,"y":-27},{"x":-24,"y":25},{"x":12,"y":-25},{"x":-69,"y":-24},{"x":-41,"y":-57},{"x":-50,"y":10},{"x":11,"y":104},{"x":118,"y":103},{"x":30,"y":-19},{"x":-18,"y":28},{"x":25,"y":26},{"x":97,"y":9},{"x":26,"y":-20},{"x":-28,"y":29},{"x":-49,"y":0},{"x":-175,"y":-51},{"x":-371,"y":-419},{"x":-8,"y":-156},{"x":-53,"y":-73},{"x":2,"y":33},{"x":-108,"y":-215},{"x":-138,"y":-131},{"x":-76,"y":-34},{"x":20,"y":-245},{"x":161,"y":-266},{"x":-33,"y":-122},{"x":15,"y":-108},{"x":7,"y":35},{"x":23,"y":-58},{"x":-43,"y":17},{"x":50,"y":-35},{"x":-2,"y":-27},{"x":-99,"y":-165},{"x":-36,"y":-26},{"x":-3,"y":22},{"x":-18,"y":-24},{"x":19,"y":2},{"x":-19,"y":-19},{"x":-5,"y":23},{"x":-5,"y":-11},{"x":16,"y":-21},{"x":-61,"y":-27},{"x":-108,"y":-111},{"x":25,"y":-80},{"x":-33,"y":-85},{"x":36,"y":-134},{"x":-28,"y":-77},{"x":-73,"y":-56},{"x":-24,"y":-61},{"x":-4,"y":24},{"x":-31,"y":-83},{"x":44,"y":-158},{"x":-70,"y":-229},{"x":-53,"y":-81},{"x":-21,"y":4},{"x":-74,"y":-149},{"x":-98,"y":-67},{"x":43,"y":-8},{"x":-94,"y":-36},{"x":2,"y":-36},{"x":-133,"y":-74},{"x":1,"y":-47},{"x":15,"y":14},{"x":12,"y":-26},{"x":-12,"y":-70},{"x":56,"y":-67},{"x":-25,"y":-97},{"x":52,"y":-58},{"x":40,"y":19},{"x":23,"y":-69},{"x":23,"y":11},{"x":-20,"y":-45},{"x":61,"y":-22},{"x":3,"y":-31},{"x":72,"y":31},{"x":33,"y":-16},{"x":44,"y":27},{"x":41,"y":-16},{"x":52,"y":22},{"x":35,"y":-21},{"x":55,"y":24},{"x":287,"y":-52},{"x":86,"y":50},{"x":77,"y":103},{"x":34,"y":-6}],"type":"coastline"},{"arc":[{"x":217192,"y":184499},{"x":86,"y":148},{"x":75,"y":1},{"x":0,"y":58},{"x":101,"y":125},{"x":27,"y":81},{"x":82,"y":48},{"x":102,"y":8},{"x":109,"y":-80},{"x":172,"y":115},{"x":0,"y":153},{"x":-104,"y":110},{"x":-41,"y":161},{"x":17,"y":34},{"x":19,"y":-69},{"x":90,"y":-48},{"x":21,"y":-67},{"x":48,"y":23},{"x":27,"y":-34},{"x":84,"y":-26},{"x":62,"y":20},{"x":49,"y":-58},{"x":37,"y":0},{"x":56,"y":-120},{"x":47,"y":3},{"x":74,"y":44},{"x":-16,"y":68},{"x":97,"y":38},{"x":-16,"y":39},{"x":25,"y":63},{"x":82,"y":19},{"x":-8,"y":80},{"x":149,"y":72},{"x":32,"y":-18},{"x":153,"y":103},{"x":43,"y":5},{"x":138,"y":196},{"x":35,"y":-11},{"x":13,"y":127},{"x":35,"y":37},{"x":78,"y":-70},{"x":78,"y":38},{"x":17,"y":103},{"x":139,"y":83},{"x":70,"y":-58},{"x":116,"y":101},{"x":169,"y":31}],"type":"admin"},{"arc":[{"x":219861,"y":186175},{"x":27,"y":50},{"x":46,"y":-3},{"x":-37,"y":122},{"x":18,"y":39},{"x":124,"y":73}],"type":"admin"},{"arc":[{"x":220039,"y":186456},{"x":49,"y":80},{"x":-26,"y":117},{"x":31,"y":113},{"x":-51,"y":52},{"x":-163,"y":70},{"x":-19,"y":98},{"x":23,"y":54},{"x":-26,"y":39},{"x":53,"y":33},{"x":14,"y":77},{"x":71,"y":114},{"x":86,"y":18},{"x":79,"y":-37},{"x":21,"y":36},{"x":-32,"y":87},{"x":43,"y":53},{"x":19,"y":179},{"x":32,"y":10},{"x":0,"y":226},{"x":56,"y":113}],"type":"admin"},{"arc":[{"x":220299,"y":187988},{"x":1,"y":42},{"x":-98,"y":20},{"x":-75,"y":59},{"x":-1,"y":33},{"x":-91,"y":46},{"x":-43,"y":108},{"x":-162,"y":101},{"x":-125,"y":221},{"x":27,"y":-92},{"x":-96,"y":95},{"x":21,"y":27},{"x":-54,"y":-15},{"x":36,"y":61},{"x":-53,"y":-55},{"x":-95,"y":81},{"x":-34,"y":68},{"x":5,"y":-34},{"x":-32,"y":29},{"x":-156,"y":214},{"x":-42,"y":162},{"x":13,"y":-59},{"x":-15,"y":-10},{"x":-30,"y":61},{"x":34,"y":-21},{"x":-63,"y":52},{"x":-5,"y":27},{"x":35,"y":22},{"x":-38,"y":-23},{"x":-24,"y":46},{"x":57,"y":19},{"x":-59,"y":-3},{"x":-34,"y":71}],"type":"coastline"},{"arc":[{"x":213731,"y":180712},{"x":-26,"y":17},{"x":27,"y":-42},{"x":-1,"y":25}],"type":"admin"},{"arc":[{"x":211871,"y":180975},{"x":-27,"y":-139},{"x":-128,"y":-91},{"x":-36,"y":3},{"x":-32,"y":50},{"x":-94,"y":21},{"x":-25,"y":-30},{"x":12,"y":-34},{"x":-23,"y":-16},{"x":135,"y":-74},{"x":-32,"y":-67},{"x":113,"y":-36},{"x":-7,"y":-34},{"x":88,"y":-74},{"x":-21,"y":-29},{"x":79,"y":-65},{"x":-54,"y":-72},{"x":-30,"y":27},{"x":-20,"y":-15},{"x":71,"y":-105},{"x":-44,"y":-11},{"x":-31,"y":68},{"x":-26,"y":-4},{"x":-14,"y":70},{"x":-47,"y":9},{"x":-192,"y":-363}],"type":"admin"},{"arc":[{"x":211459,"y":179859},{"x":161,"y":-190},{"x":37,"y":-200},{"x":157,"y":-72},{"x":111,"y":-118},{"x":50,"y":19},{"x":4,"y":-45},{"x":26,"y":-6},{"x":3,"y":-211}],"type":"admin"},{"arc":[{"x":212008,"y":179036},{"x":460,"y":236},{"x":89,"y":27},{"x":11,"y":-22},{"x":18,"y":39},{"x":486,"y":156},{"x":944,"y":208},{"x":159,"y":17},{"x":19,"y":-46},{"x":28,"y":-9},{"x":-27,"y":10},{"x":6,"y":47},{"x":49,"y":8},{"x":-33,"y":-53},{"x":49,"y":61},{"x":264,"y":35}],"type":"coastline"},{"arc":[{"x":214685,"y":180247},{"x":-78,"y":125},{"x":-48,"y":29},{"x":-80,"y":5},{"x":-155,"y":100},{"x":-73,"y":-4},{"x":-254,"y":-154},{"x":-81,"y":-12},{"x":-43,"y":47},{"x":-72,"y":-3},{"x":-47,"y":59},{"x":44,"y":91},{"x":-6,"y":58},{"x":-58,"y":61},{"x":14,"y":78},{"x":-34,"y":10},{"x":23,"y":-28},{"x":-7,"y":-30},{"x":-30,"y":50},{"x":-156,"y":56}],"type":"admin"},{"arc":[{"x":208336,"y":185551},{"x":-64,"y":-284},{"x":27,"y":-78},{"x":-48,"y":-31},{"x":0,"y":-67},{"x":-95,"y":-89},{"x":-9,"y":-72},{"x":-87,"y":-55},{"x":-17,"y":-42},{"x":-75,"y":-10},{"x":-53,"y":18},{"x":-243,"y":-38},{"x":-116,"y":-42},{"x":10,"y":-108},{"x":98,"y":-62},{"x":-75,"y":-153},{"x":33,"y":-34},{"x":-36,"y":-69},{"x":-155,"y":-107},{"x":9,"y":-188},{"x":-45,"y":-12},{"x":-25,"y":29},{"x":-36,"y":-45},{"x":-41,"y":49},{"x":-152,"y":-24},{"x":10,"y":-109},{"x":57,"y":-58},{"x":86,"y":-20},{"x":22,"y":-59},{"x":-32,"y":-74},{"x":29,"y":-35},{"x":-26,"y":-117},{"x":-115,"y":-8},{"x":-69,"y":-117}],"type":"admin"},{"arc":[{"x":207103,"y":183440},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":207102,"y":183440},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":207098,"y":183438},{"x":-4,"y":-7}],"type":"admin"},{"arc":[{"x":207094,"y":183431},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":207095,"y":183430},{"x":-2,"y":-8}],"type":"admin"},{"arc":[{"x":207093,"y":183422},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":207092,"y":183418},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":207085,"y":183411},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":207088,"y":183404},{"x":3,"y":-10}],"type":"admin"},{"arc":[{"x":207091,"y":183394},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":207090,"y":183385},{"x":-2,"y":-26}],"type":"coastline"},{"arc":[{"x":207088,"y":183359},{"x":-1,"y":-4}],"type":"admin"},{"arc":[{"x":207087,"y":183355},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":207087,"y":183347},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":207087,"y":183345},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":207087,"y":183341},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":207084,"y":183338},{"x":-20,"y":3}],"type":"admin"},{"arc":[{"x":207064,"y":183341},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":207055,"y":183336},{"x":-2,"y":-3}],"type":"admin"},{"arc":[{"x":207053,"y":183333},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":207048,"y":183328},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":207046,"y":183327},{"x":-5,"y":-3}],"type":"admin"},{"arc":[{"x":207041,"y":183324},{"x":-13,"y":-3}],"type":"coastline"},{"arc":[{"x":207028,"y":183321},{"x":-8,"y":-11}],"type":"admin"},{"arc":[{"x":207020,"y":183310},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":207017,"y":183307},{"x":-15,"y":-11}],"type":"coastline"},{"arc":[{"x":207002,"y":183296},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":207000,"y":183295},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":206997,"y":183291},{"x":2,"y":-5}],"type":"admin"},{"arc":[{"x":206999,"y":183286},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":207005,"y":183280},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":207006,"y":183272},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":207003,"y":183264},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":207002,"y":183259},{"x":-3,"y":-17}],"type":"coastline"},{"arc":[{"x":206999,"y":183242},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":207000,"y":183231},{"x":-14,"y":-20}],"type":"coastline"},{"arc":[{"x":206986,"y":183211},{"x":-1,"y":-4}],"type":"admin"},{"arc":[{"x":206985,"y":183207},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":206983,"y":183200},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":206983,"y":183198},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":206986,"y":183192},{"x":4,"y":-6}],"type":"admin"},{"arc":[{"x":206990,"y":183186},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":206988,"y":183180},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":206988,"y":183173},{"x":4,"y":-14}],"type":"admin"},{"arc":[{"x":206992,"y":183159},{"x":-6,"y":-11}],"type":"coastline"},{"arc":[{"x":206986,"y":183148},{"x":-6,"y":-28}],"type":"coastline"},{"arc":[{"x":206980,"y":183120},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":206986,"y":183108},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":206989,"y":183104},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":206993,"y":183098},{"x":8,"y":-9}],"type":"coastline"},{"arc":[{"x":207001,"y":183089},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":207002,"y":183087},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":207005,"y":183083},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":207006,"y":183078},{"x":-9,"y":-11}],"type":"coastline"},{"arc":[{"x":206997,"y":183067},{"x":-4,"y":-11}],"type":"coastline"},{"arc":[{"x":206993,"y":183056},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":206989,"y":183046},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":206987,"y":183037},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":206982,"y":183027},{"x":-10,"y":-13}],"type":"coastline"},{"arc":[{"x":206972,"y":183014},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":206977,"y":183002},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":206980,"y":183000},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":206985,"y":182996},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":206992,"y":182992},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":206998,"y":182994},{"x":4,"y":2}],"type":"admin"},{"arc":[{"x":207002,"y":182996},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":207009,"y":183000},{"x":3,"y":2}],"type":"admin"},{"arc":[{"x":207012,"y":183002},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":207017,"y":183009},{"x":3,"y":9}],"type":"admin"},{"arc":[{"x":207020,"y":183018},{"x":11,"y":5}],"type":"coastline"},{"arc":[{"x":207031,"y":183023},{"x":16,"y":4}],"type":"coastline"},{"arc":[{"x":207047,"y":183027},{"x":10,"y":5}],"type":"coastline"},{"arc":[{"x":207057,"y":183032},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":207059,"y":183032},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":207063,"y":183026},{"x":4,"y":-12}],"type":"coastline"},{"arc":[{"x":207067,"y":183014},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":207070,"y":183013},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":207076,"y":183008},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":207089,"y":183006},{"x":8,"y":0}],"type":"admin"},{"arc":[{"x":207097,"y":183006},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":207110,"y":183005},{"x":6,"y":0}],"type":"admin"},{"arc":[{"x":207116,"y":183005},{"x":20,"y":-1}],"type":"coastline"},{"arc":[{"x":207136,"y":183004},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":207144,"y":183001},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":207145,"y":183000},{"x":6,"y":-4}],"type":"admin"},{"arc":[{"x":207151,"y":182996},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":207159,"y":182998},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":207162,"y":182998},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":207165,"y":182996},{"x":5,"y":-13}],"type":"coastline"},{"arc":[{"x":207170,"y":182983},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":207174,"y":182980},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":207176,"y":182979},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":207178,"y":182976},{"x":15,"y":-21}],"type":"coastline"},{"arc":[{"x":207193,"y":182955},{"x":14,"y":-25}],"type":"coastline"},{"arc":[{"x":207207,"y":182930},{"x":6,"y":-11}],"type":"coastline"},{"arc":[{"x":207213,"y":182919},{"x":15,"y":7}],"type":"admin"},{"arc":[{"x":207228,"y":182926},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":207236,"y":182926},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":207245,"y":182920},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":207245,"y":182917},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":207245,"y":182913},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":207248,"y":182908},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":207251,"y":182906},{"x":-7,"y":-20}],"type":"coastline"},{"arc":[{"x":207244,"y":182886},{"x":-5,"y":-22}],"type":"coastline"},{"arc":[{"x":207239,"y":182864},{"x":-2,"y":-7}],"type":"admin"},{"arc":[{"x":207237,"y":182857},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":207237,"y":182847},{"x":0,"y":-11}],"type":"admin"},{"arc":[{"x":207237,"y":182836},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":207240,"y":182831},{"x":5,"y":-18}],"type":"coastline"},{"arc":[{"x":207245,"y":182813},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":207245,"y":182811},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":207245,"y":182805},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":207245,"y":182802},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":207241,"y":182792},{"x":0,"y":-8}],"type":"admin"},{"arc":[{"x":207241,"y":182784},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":207240,"y":182782},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":207240,"y":182780},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":207242,"y":182774},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":207244,"y":182768},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":207247,"y":182765},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":207254,"y":182759},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":207255,"y":182758},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":207255,"y":182749},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":207257,"y":182746},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":207262,"y":182744},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":207263,"y":182742},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":207264,"y":182740},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":207264,"y":182739},{"x":2,"y":-15}],"type":"coastline"},{"arc":[{"x":207266,"y":182724},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":207266,"y":182723},{"x":8,"y":-10}],"type":"coastline"},{"arc":[{"x":207274,"y":182713},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":207278,"y":182712},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":207284,"y":182705},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":207286,"y":182699},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":207290,"y":182696},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":207292,"y":182695},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":207293,"y":182695},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":207301,"y":182695},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":207303,"y":182695},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":207307,"y":182695},{"x":12,"y":-2}],"type":"coastline"},{"arc":[{"x":207319,"y":182693},{"x":5,"y":-3}],"type":"admin"},{"arc":[{"x":207324,"y":182690},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":207325,"y":182688},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":207327,"y":182687},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":207334,"y":182678},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":207336,"y":182674},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":207341,"y":182664},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":207345,"y":182660},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":207349,"y":182656},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":207351,"y":182654},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":207358,"y":182647},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":207362,"y":182637},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":207366,"y":182628},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":207370,"y":182620},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":207373,"y":182617},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":207375,"y":182616},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":207378,"y":182612},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":207379,"y":182610},{"x":7,"y":-16}],"type":"coastline"},{"arc":[{"x":207386,"y":182594},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":207388,"y":182586},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":207390,"y":182580},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":207392,"y":182570},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":207395,"y":182560},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":207397,"y":182550},{"x":56,"y":79},{"x":62,"y":31},{"x":266,"y":-4},{"x":39,"y":-26},{"x":85,"y":9},{"x":24,"y":-63},{"x":89,"y":-92},{"x":21,"y":15},{"x":31,"y":63},{"x":58,"y":25},{"x":-10,"y":63},{"x":-40,"y":63},{"x":-127,"y":16},{"x":-13,"y":42},{"x":24,"y":30},{"x":220,"y":77},{"x":11,"y":25},{"x":-41,"y":13},{"x":-19,"y":56},{"x":-5,"y":187},{"x":194,"y":296},{"x":45,"y":19},{"x":54,"y":-28},{"x":61,"y":8},{"x":104,"y":-127},{"x":21,"y":-170},{"x":32,"y":-38},{"x":87,"y":3},{"x":-75,"y":-120},{"x":7,"y":-30},{"x":33,"y":10},{"x":28,"y":-42},{"x":-64,"y":-125},{"x":19,"y":-96},{"x":74,"y":-82}],"type":"admin"},{"arc":[{"x":209664,"y":181765},{"x":8,"y":24},{"x":38,"y":-9},{"x":64,"y":32},{"x":25,"y":76},{"x":33,"y":15},{"x":19,"y":94},{"x":-42,"y":83},{"x":-35,"y":-22},{"x":-6,"y":153},{"x":12,"y":68},{"x":45,"y":48},{"x":-20,"y":43},{"x":28,"y":-45},{"x":18,"y":21},{"x":12,"y":124}],"type":"admin"},{"arc":[{"x":213712,"y":185295},{"x":-23,"y":28},{"x":-25,"y":-48},{"x":26,"y":-11},{"x":22,"y":31}],"type":"coastline"},{"arc":[{"x":213093,"y":187661},{"x":-67,"y":-266},{"x":-80,"y":-150},{"x":-134,"y":-24},{"x":-124,"y":54},{"x":-88,"y":-46},{"x":-11,"y":-34},{"x":-76,"y":4}],"type":"admin"},{"arc":[{"x":212513,"y":187199},{"x":-41,"y":-221},{"x":-145,"y":21},{"x":-74,"y":-34},{"x":-41,"y":-104}],"type":"admin"},{"arc":[{"x":212212,"y":186861},{"x":-43,"y":-173},{"x":-62,"y":-20},{"x":-27,"y":-77}],"type":"admin"},{"arc":[{"x":213317,"y":185333},{"x":4,"y":71},{"x":71,"y":20},{"x":-23,"y":-28},{"x":27,"y":16},{"x":-4,"y":24},{"x":94,"y":5},{"x":38,"y":-44},{"x":68,"y":5},{"x":-20,"y":8},{"x":19,"y":25},{"x":71,"y":-27},{"x":122,"y":7},{"x":33,"y":11},{"x":-15,"y":36},{"x":37,"y":-2},{"x":5,"y":-25},{"x":-20,"y":4},{"x":43,"y":-76},{"x":-46,"y":-50},{"x":67,"y":-127},{"x":24,"y":-4},{"x":4,"y":-60},{"x":27,"y":-7},{"x":3,"y":117},{"x":41,"y":60},{"x":7,"y":80},{"x":67,"y":8},{"x":-5,"y":-41},{"x":-36,"y":5},{"x":41,"y":-8},{"x":114,"y":8},{"x":29,"y":70},{"x":73,"y":36},{"x":-35,"y":16},{"x":26,"y":14},{"x":3,"y":-19},{"x":25,"y":15},{"x":26,"y":-17},{"x":20,"y":-80},{"x":25,"y":81},{"x":71,"y":51},{"x":150,"y":48},{"x":69,"y":-20},{"x":-15,"y":35},{"x":27,"y":76},{"x":-36,"y":139},{"x":-138,"y":145},{"x":8,"y":-22},{"x":-31,"y":15},{"x":-4,"y":56},{"x":2,"y":-52},{"x":-23,"y":31},{"x":-3,"y":138},{"x":28,"y":68},{"x":-36,"y":93},{"x":-86,"y":17},{"x":-14,"y":32},{"x":8,"y":-27},{"x":-28,"y":19},{"x":21,"y":15},{"x":-26,"y":-18},{"x":-124,"y":99},{"x":-165,"y":233},{"x":-32,"y":3},{"x":40,"y":-28},{"x":-166,"y":-18},{"x":23,"y":-26},{"x":-96,"y":38},{"x":27,"y":-17},{"x":-28,"y":-31},{"x":0,"y":36},{"x":-16,"y":-25},{"x":7,"y":-54},{"x":-58,"y":-20},{"x":-21,"y":17},{"x":1,"y":195},{"x":35,"y":75},{"x":-65,"y":88},{"x":-42,"y":162},{"x":-17,"y":19},{"x":16,"y":-27},{"x":-51,"y":14},{"x":-42,"y":88},{"x":-49,"y":31},{"x":-5,"y":88},{"x":-17,"y":-37},{"x":-11,"y":37},{"x":28,"y":119},{"x":-47,"y":98},{"x":-141,"y":79},{"x":-77,"y":105},{"x":15,"y":-41},{"x":-15,"y":26},{"x":-6,"y":-14},{"x":-119,"y":50}],"type":"coastline"},{"arc":[{"x":214751,"y":185468},{"x":-92,"y":62},{"x":33,"y":-68},{"x":59,"y":6}],"type":"coastline"},{"arc":[{"x":217271,"y":182594},{"x":-121,"y":0},{"x":-201,"y":97},{"x":-20,"y":-50},{"x":-93,"y":-5},{"x":15,"y":-70},{"x":-98,"y":-96},{"x":-77,"y":-35},{"x":-214,"y":21},{"x":-14,"y":-75},{"x":-154,"y":-43},{"x":-15,"y":-41},{"x":-72,"y":4},{"x":-117,"y":-80},{"x":-37,"y":-68},{"x":-42,"y":-9},{"x":-22,"y":36},{"x":-43,"y":2},{"x":-61,"y":-54},{"x":-57,"y":-97},{"x":83,"y":-105},{"x":-37,"y":-70},{"x":19,"y":-36},{"x":-53,"y":-224},{"x":68,"y":-74},{"x":9,"y":-61},{"x":-43,"y":-51},{"x":73,"y":-155}],"type":"area"},{"arc":[{"x":216063,"y":180659},{"x":67,"y":33},{"x":65,"y":98},{"x":0,"y":93},{"x":68,"y":70},{"x":69,"y":-17},{"x":124,"y":90},{"x":79,"y":3},{"x":24,"y":-26},{"x":120,"y":-17},{"x":134,"y":99},{"x":108,"y":8}],"type":"area"},{"arc":[{"x":216921,"y":181093},{"x":-13,"y":108},{"x":-57,"y":22},{"x":-18,"y":68},{"x":51,"y":232},{"x":243,"y":296},{"x":49,"y":29},{"x":34,"y":-16},{"x":49,"y":26},{"x":3,"y":-21},{"x":11,"y":40},{"x":22,"y":-12},{"x":36,"y":35},{"x":0,"y":103},{"x":-10,"y":19},{"x":-22,"y":-23},{"x":-10,"y":22},{"x":49,"y":63},{"x":99,"y":50},{"x":-65,"y":56},{"x":22,"y":72},{"x":-20,"y":-20},{"x":-2,"y":24},{"x":29,"y":12},{"x":-40,"y":40},{"x":8,"y":119},{"x":-13,"y":-31},{"x":-85,"y":188}],"type":"coastline"},{"arc":[{"x":214904,"y":183139},{"x":-185,"y":22},{"x":-87,"y":57},{"x":19,"y":-23},{"x":-15,"y":14},{"x":-26,"y":-37},{"x":-10,"y":19},{"x":-91,"y":6},{"x":-4,"y":35},{"x":-7,"y":-32},{"x":-81,"y":14},{"x":-97,"y":51},{"x":37,"y":-34},{"x":-40,"y":24},{"x":-6,"y":-38},{"x":3,"y":19},{"x":-434,"y":48}],"type":"coastline"},{"arc":[{"x":214478,"y":181846},{"x":59,"y":-13},{"x":72,"y":22},{"x":44,"y":-69},{"x":153,"y":10},{"x":17,"y":21}],"type":"area"},{"arc":[{"x":214823,"y":181817},{"x":15,"y":140},{"x":-24,"y":136},{"x":17,"y":47},{"x":40,"y":5},{"x":54,"y":207},{"x":-41,"y":79},{"x":57,"y":106},{"x":-23,"y":33},{"x":30,"y":109},{"x":-29,"y":66},{"x":77,"y":94},{"x":-30,"y":36},{"x":31,"y":68},{"x":-82,"y":98},{"x":-11,"y":98}],"type":"area"},{"arc":[{"x":214823,"y":181817},{"x":76,"y":4},{"x":31,"y":-80},{"x":21,"y":37},{"x":53,"y":0},{"x":37,"y":-102},{"x":159,"y":-113},{"x":52,"y":34},{"x":69,"y":0},{"x":16,"y":-34},{"x":93,"y":5},{"x":2,"y":-52},{"x":119,"y":-109},{"x":77,"y":-157},{"x":36,"y":1},{"x":126,"y":-92},{"x":60,"y":15}],"type":"area"},{"arc":[{"x":217271,"y":182594},{"x":-26,"y":105},{"x":-220,"y":140},{"x":8,"y":47},{"x":-10,"y":-33},{"x":-68,"y":139},{"x":-91,"y":70},{"x":-153,"y":53},{"x":-137,"y":-45},{"x":-7,"y":25},{"x":-29,"y":2},{"x":33,"y":-19},{"x":-34,"y":-15},{"x":9,"y":23},{"x":-67,"y":-35},{"x":-71,"y":14},{"x":-200,"y":-62},{"x":-436,"y":-21},{"x":-454,"y":74},{"x":-153,"y":58},{"x":-33,"y":50},{"x":20,"y":-37},{"x":-33,"y":-5},{"x":17,"y":27},{"x":-33,"y":-29},{"x":-199,"y":19}],"type":"coastline"},{"arc":[{"x":216140,"y":180498},{"x":99,"y":-57},{"x":131,"y":-135},{"x":48,"y":-13},{"x":50,"y":-86},{"x":114,"y":50},{"x":149,"y":28},{"x":79,"y":-23},{"x":84,"y":8},{"x":32,"y":44},{"x":50,"y":-26},{"x":32,"y":46},{"x":47,"y":12},{"x":47,"y":-54},{"x":90,"y":11},{"x":4,"y":-30},{"x":116,"y":-79},{"x":194,"y":1},{"x":58,"y":-76},{"x":54,"y":9},{"x":35,"y":-27},{"x":30,"y":-111}],"type":"area"},{"arc":[{"x":217683,"y":179990},{"x":41,"y":0},{"x":37,"y":-42},{"x":60,"y":9},{"x":40,"y":73},{"x":-32,"y":16},{"x":6,"y":-35},{"x":-23,"y":19},{"x":-10,"y":44},{"x":-42,"y":22},{"x":9,"y":34},{"x":-73,"y":62},{"x":-30,"y":137},{"x":-105,"y":108},{"x":-6,"y":87},{"x":-20,"y":2},{"x":9,"y":-38},{"x":-39,"y":69},{"x":-170,"y":66},{"x":-158,"y":221},{"x":-50,"y":21},{"x":7,"y":14},{"x":-38,"y":26},{"x":-23,"y":10},{"x":8,"y":-14},{"x":-36,"y":18},{"x":-8,"y":24},{"x":4,"y":25},{"x":-6,"y":-22},{"x":15,"y":-37},{"x":-34,"y":7},{"x":16,"y":19},{"x":-24,"y":-12},{"x":21,"y":43},{"x":-54,"y":27},{"x":-54,"y":100}],"type":"coastline"},{"arc":[{"x":208926,"y":178140},{"x":-84,"y":4},{"x":-78,"y":-35},{"x":0,"y":-145},{"x":-53,"y":-86},{"x":-172,"y":-43},{"x":-94,"y":28},{"x":-65,"y":-68},{"x":-22,"y":-108},{"x":-104,"y":15},{"x":-125,"y":124},{"x":-106,"y":-14},{"x":2,"y":23},{"x":-124,"y":100},{"x":-21,"y":64},{"x":-59,"y":-6},{"x":-19,"y":28},{"x":-71,"y":14},{"x":-137,"y":-32},{"x":-107,"y":19},{"x":-64,"y":-47}],"type":"area"},{"arc":[{"x":207423,"y":177975},{"x":19,"y":-109},{"x":-59,"y":-195},{"x":12,"y":-106}],"type":"admin"},{"arc":[{"x":207395,"y":177565},{"x":64,"y":-28},{"x":38,"y":-60},{"x":67,"y":-18},{"x":48,"y":22},{"x":74,"y":-61},{"x":44,"y":-105},{"x":56,"y":-44},{"x":-28,"y":-52},{"x":54,"y":-60}],"type":"admin"},{"arc":[{"x":207812,"y":177159},{"x":164,"y":84},{"x":132,"y":-35},{"x":174,"y":115},{"x":119,"y":28},{"x":137,"y":-4},{"x":18,"y":51},{"x":84,"y":32},{"x":100,"y":-21},{"x":73,"y":79},{"x":69,"y":31},{"x":91,"y":4},{"x":125,"y":-52},{"x":113,"y":38},{"x":139,"y":-25},{"x":46,"y":22},{"x":103,"y":-8},{"x":88,"y":-65},{"x":63,"y":30},{"x":168,"y":0},{"x":35,"y":-40},{"x":72,"y":22},{"x":38,"y":69},{"x":117,"y":-17},{"x":242,"y":42},{"x":46,"y":93},{"x":60,"y":40},{"x":61,"y":92},{"x":43,"y":20},{"x":75,"y":-16},{"x":30,"y":40},{"x":28,"y":-17},{"x":81,"y":53},{"x":61,"y":148},{"x":99,"y":12},{"x":50,"y":57},{"x":38,"y":-11},{"x":13,"y":60},{"x":100,"y":69},{"x":68,"y":-20},{"x":49,"y":-57},{"x":49,"y":-12},{"x":70,"y":25},{"x":17,"y":-127},{"x":34,"y":-43}],"type":"area"},{"arc":[{"x":211394,"y":177945},{"x":151,"y":191},{"x":72,"y":62},{"x":22,"y":-13},{"x":49,"y":168},{"x":94,"y":80},{"x":39,"y":207},{"x":-22,"y":-62},{"x":-40,"y":26},{"x":45,"y":3},{"x":-53,"y":21},{"x":-16,"y":36},{"x":1,"y":16},{"x":21,"y":-2},{"x":49,"y":-54},{"x":-48,"y":61},{"x":-15,"y":-5},{"x":-3,"y":11},{"x":28,"y":114},{"x":117,"y":134},{"x":19,"y":4},{"x":27,"y":-47},{"x":53,"y":-12},{"x":-53,"y":13},{"x":-28,"y":50},{"x":33,"y":22},{"x":43,"y":-38},{"x":-14,"y":-16},{"x":16,"y":16},{"x":-33,"y":56},{"x":60,"y":49}],"type":"coastline"},{"arc":[{"x":207812,"y":177159},{"x":-14,"y":-152},{"x":-43,"y":4},{"x":-54,"y":-55},{"x":19,"y":-130},{"x":-47,"y":-20},{"x":-84,"y":-119},{"x":-56,"y":-27},{"x":-100,"y":61},{"x":-45,"y":-35},{"x":-70,"y":-5},{"x":-35,"y":-49},{"x":-91,"y":21},{"x":90,"y":-130},{"x":61,"y":-37},{"x":41,"y":-85},{"x":-32,"y":-14},{"x":-65,"y":-129},{"x":1,"y":-118},{"x":94,"y":-106},{"x":-85,"y":-240}],"type":"admin"},{"arc":[{"x":207297,"y":175794},{"x":32,"y":39},{"x":194,"y":-17},{"x":45,"y":39},{"x":32,"y":-16},{"x":155,"y":45},{"x":30,"y":-20},{"x":41,"y":30},{"x":107,"y":12},{"x":129,"y":-16},{"x":13,"y":30},{"x":78,"y":15},{"x":181,"y":-16},{"x":33,"y":-33},{"x":-2,"y":23},{"x":145,"y":0},{"x":367,"y":-76},{"x":-9,"y":-20},{"x":15,"y":14},{"x":40,"y":-35},{"x":-20,"y":-40},{"x":26,"y":-32},{"x":4,"y":30},{"x":22,"y":-22},{"x":42,"y":35},{"x":41,"y":0},{"x":139,"y":-64},{"x":114,"y":-90},{"x":6,"y":-78},{"x":-20,"y":26},{"x":-22,"y":-34},{"x":39,"y":5},{"x":5,"y":-37},{"x":-57,"y":-107},{"x":33,"y":-119},{"x":-37,"y":-98},{"x":30,"y":-68},{"x":125,"y":-39},{"x":25,"y":-42},{"x":16,"y":43},{"x":75,"y":-59},{"x":14,"y":24},{"x":63,"y":-10},{"x":0,"y":21},{"x":31,"y":-33},{"x":54,"y":9},{"x":214,"y":337},{"x":38,"y":-10},{"x":128,"y":103},{"x":8,"y":30},{"x":-55,"y":69},{"x":37,"y":56},{"x":-5,"y":78},{"x":-35,"y":-3},{"x":9,"y":43},{"x":31,"y":13},{"x":26,"y":-39},{"x":71,"y":33},{"x":21,"y":-21},{"x":-15,"y":48},{"x":33,"y":53},{"x":97,"y":-18},{"x":51,"y":41},{"x":27,"y":-36},{"x":26,"y":5},{"x":-49,"y":60},{"x":32,"y":85},{"x":161,"y":144},{"x":144,"y":47},{"x":57,"y":-12},{"x":26,"y":52},{"x":20,"y":-3},{"x":13,"y":30},{"x":-14,"y":-28},{"x":4,"y":66},{"x":130,"y":80},{"x":40,"y":8},{"x":54,"y":-33},{"x":32,"y":55},{"x":150,"y":44},{"x":31,"y":62},{"x":43,"y":0},{"x":23,"y":-30},{"x":31,"y":36},{"x":34,"y":-9},{"x":-21,"y":30},{"x":-13,"y":-20},{"x":-19,"y":45},{"x":86,"y":154},{"x":0,"y":63},{"x":76,"y":57},{"x":39,"y":1},{"x":50,"y":79},{"x":19,"y":-2},{"x":10,"y":8},{"x":-22,"y":-6},{"x":4,"y":34},{"x":10,"y":-27},{"x":0,"y":26},{"x":-17,"y":9},{"x":70,"y":99},{"x":-31,"y":131},{"x":-90,"y":110},{"x":-38,"y":147},{"x":-35,"y":26},{"x":31,"y":-39},{"x":-47,"y":-4},{"x":6,"y":20},{"x":-59,"y":61},{"x":-15,"y":-10},{"x":-70,"y":171},{"x":11,"y":109},{"x":119,"y":224}],"type":"coastline"},{"arc":[{"x":207795,"y":180048},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":207784,"y":180051},{"x":-13,"y":-1}],"type":"admin"},{"arc":[{"x":207771,"y":180050},{"x":-46,"y":-6}],"type":"coastline"},{"arc":[{"x":207725,"y":180044},{"x":-5,"y":-12}],"type":"coastline"},{"arc":[{"x":207720,"y":180032},{"x":-7,"y":-32}],"type":"coastline"},{"arc":[{"x":207713,"y":180000},{"x":-29,"y":2}],"type":"coastline"},{"arc":[{"x":207684,"y":180002},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":207679,"y":180004},{"x":-9,"y":1}],"type":"admin"},{"arc":[{"x":207670,"y":180005},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":207660,"y":180007},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":207650,"y":180003},{"x":-6,"y":-2}],"type":"admin"},{"arc":[{"x":207644,"y":180001},{"x":-22,"y":-1}],"type":"coastline"},{"arc":[{"x":207622,"y":180000},{"x":-9,"y":5}],"type":"admin"},{"arc":[{"x":207613,"y":180005},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":207605,"y":180007},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":207601,"y":180007},{"x":-9,"y":-12}],"type":"coastline"},{"arc":[{"x":207592,"y":179995},{"x":-12,"y":-11}],"type":"coastline"},{"arc":[{"x":207580,"y":179984},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":207573,"y":179980},{"x":-33,"y":5}],"type":"coastline"},{"arc":[{"x":207540,"y":179985},{"x":-6,"y":1}],"type":"admin"},{"arc":[{"x":207534,"y":179986},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":207532,"y":179985},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":207529,"y":179983},{"x":-20,"y":-11}],"type":"coastline"},{"arc":[{"x":207509,"y":179972},{"x":-21,"y":2}],"type":"coastline"},{"arc":[{"x":207488,"y":179974},{"x":-13,"y":-14}],"type":"coastline"},{"arc":[{"x":207475,"y":179960},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":207468,"y":179959},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":207459,"y":179956},{"x":-1,"y":-12}],"type":"admin"},{"arc":[{"x":207458,"y":179944},{"x":-19,"y":-26}],"type":"coastline"},{"arc":[{"x":207439,"y":179918},{"x":4,"y":-182},{"x":-43,"y":-71},{"x":79,"y":-44},{"x":4,"y":-47},{"x":43,"y":-32},{"x":4,"y":-81},{"x":-21,"y":-26},{"x":14,"y":-100},{"x":-67,"y":-124},{"x":29,"y":-173},{"x":-62,"y":-49},{"x":-88,"y":-260},{"x":95,"y":-114},{"x":-49,"y":-156},{"x":108,"y":-89},{"x":-67,"y":-151},{"x":17,"y":-87},{"x":-56,"y":-109},{"x":40,"y":-48}],"type":"admin"},{"arc":[{"x":210390,"y":182359},{"x":23,"y":-40},{"x":-59,"y":-18},{"x":-83,"y":-80},{"x":-47,"y":-1},{"x":37,"y":-84},{"x":-44,"y":-45},{"x":2,"y":-68},{"x":49,"y":-81},{"x":-47,"y":-4},{"x":28,"y":-84},{"x":-56,"y":6},{"x":-80,"y":-33},{"x":-22,"y":-39},{"x":-48,"y":-2},{"x":2,"y":-52},{"x":-51,"y":-91},{"x":17,"y":-51}],"type":"area"},{"arc":[{"x":210363,"y":181265},{"x":15,"y":22},{"x":-69,"y":47},{"x":33,"y":67},{"x":80,"y":1},{"x":62,"y":-42},{"x":47,"y":79},{"x":-37,"y":61},{"x":39,"y":3},{"x":8,"y":37},{"x":146,"y":-6},{"x":68,"y":34},{"x":15,"y":61},{"x":86,"y":20},{"x":-22,"y":41},{"x":-68,"y":10},{"x":-9,"y":35},{"x":-37,"y":-10},{"x":10,"y":44},{"x":-43,"y":42},{"x":-56,"y":1},{"x":7,"y":13},{"x":-41,"y":83},{"x":-11,"y":88},{"x":16,"y":-88},{"x":32,"y":-57},{"x":31,"y":-18},{"x":72,"y":85},{"x":238,"y":-83},{"x":40,"y":5}],"type":"area"},{"arc":[{"x":207397,"y":182550},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":207393,"y":182550},{"x":-19,"y":3}],"type":"admin"},{"arc":[{"x":207374,"y":182553},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":207367,"y":182553},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":207364,"y":182552},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":207362,"y":182552},{"x":-5,"y":-2}],"type":"admin"},{"arc":[{"x":207357,"y":182550},{"x":-10,"y":-3}],"type":"coastline"},{"arc":[{"x":207347,"y":182547},{"x":-15,"y":-4}],"type":"coastline"},{"arc":[{"x":207332,"y":182543},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":207323,"y":182539},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":207317,"y":182531},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":207314,"y":182528},{"x":-6,"y":-16}],"type":"coastline"},{"arc":[{"x":207308,"y":182512},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":207308,"y":182511},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":207308,"y":182507},{"x":6,"y":-58}],"type":"coastline"},{"arc":[{"x":207314,"y":182449},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":207308,"y":182440},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":207306,"y":182435},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":207307,"y":182427},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":207311,"y":182420},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":207312,"y":182418},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":207312,"y":182416},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":207310,"y":182412},{"x":-18,"y":-15}],"type":"coastline"},{"arc":[{"x":207292,"y":182397},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":207281,"y":182393},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":207278,"y":182392},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":207271,"y":182383},{"x":1,"y":-16}],"type":"coastline"},{"arc":[{"x":207272,"y":182367},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":207271,"y":182360},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":207271,"y":182355},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":207270,"y":182349},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":207270,"y":182345},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":207270,"y":182338},{"x":1,"y":-7}],"type":"admin"},{"arc":[{"x":207271,"y":182331},{"x":0,"y":-13}],"type":"coastline"},{"arc":[{"x":207271,"y":182318},{"x":-4,"y":-19}],"type":"coastline"},{"arc":[{"x":207267,"y":182299},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":207266,"y":182292},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":207266,"y":182283},{"x":14,"y":-22}],"type":"coastline"},{"arc":[{"x":207280,"y":182261},{"x":-10,"y":-10}],"type":"coastline"},{"arc":[{"x":207270,"y":182251},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":207268,"y":182241},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":207267,"y":182236},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":207266,"y":182230},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":207266,"y":182225},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":207266,"y":182222},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":207266,"y":182218},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":207257,"y":182214},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":207252,"y":182211},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":207247,"y":182207},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":207244,"y":182205},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":207241,"y":182203},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":207235,"y":182199},{"x":-5,"y":-5}],"type":"admin"},{"arc":[{"x":207230,"y":182194},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":207227,"y":182190},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":207224,"y":182189},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":207217,"y":182189},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":207216,"y":182189},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":207213,"y":182188},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":207210,"y":182185},{"x":-8,"y":-11}],"type":"coastline"},{"arc":[{"x":207202,"y":182174},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":207201,"y":182173},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":207192,"y":182172},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":207188,"y":182178},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":207186,"y":182183},{"x":-2,"y":5}],"type":"admin"},{"arc":[{"x":207184,"y":182188},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":207178,"y":182191},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":207172,"y":182192},{"x":-18,"y":10}],"type":"coastline"},{"arc":[{"x":207154,"y":182202},{"x":-3,"y":2}],"type":"admin"},{"arc":[{"x":207151,"y":182204},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":207147,"y":182205},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":207140,"y":182204},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":207130,"y":182204},{"x":-4,"y":3}],"type":"admin"},{"arc":[{"x":207126,"y":182207},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":207122,"y":182214},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":207117,"y":182222},{"x":-4,"y":3}],"type":"admin"},{"arc":[{"x":207113,"y":182225},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":207107,"y":182229},{"x":-8,"y":2}],"type":"admin"},{"arc":[{"x":207099,"y":182231},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":207094,"y":182231},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":207090,"y":182233},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":207087,"y":182234},{"x":-14,"y":14}],"type":"coastline"},{"arc":[{"x":207073,"y":182248},{"x":-4,"y":5}],"type":"admin"},{"arc":[{"x":207069,"y":182253},{"x":-2,"y":14}],"type":"coastline"},{"arc":[{"x":207067,"y":182267},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":207066,"y":182269},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":207062,"y":182271},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":207059,"y":182272},{"x":-12,"y":11}],"type":"coastline"},{"arc":[{"x":207047,"y":182283},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":207046,"y":182284},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":207046,"y":182285},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":207044,"y":182290},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":207041,"y":182292},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":207033,"y":182298},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":207025,"y":182303},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":207014,"y":182305},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":207011,"y":182306},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":207003,"y":182307},{"x":-16,"y":-6}],"type":"coastline"},{"arc":[{"x":206987,"y":182301},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":206986,"y":182301},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":206982,"y":182305},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":206982,"y":182306},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":206979,"y":182310},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":206978,"y":182312},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":206973,"y":182315},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":206966,"y":182318},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":206961,"y":182322},{"x":-9,"y":11}],"type":"coastline"},{"arc":[{"x":206952,"y":182333},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":206951,"y":182338},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":206950,"y":182339},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":206946,"y":182333},{"x":-5,"y":-4}],"type":"admin"},{"arc":[{"x":206941,"y":182329},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":206938,"y":182327},{"x":-5,"y":-3}],"type":"admin"},{"arc":[{"x":206933,"y":182324},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":206928,"y":182320},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":206926,"y":182318},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":206922,"y":182311},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":206921,"y":182307},{"x":-4,"y":-5}],"type":"admin"},{"arc":[{"x":206917,"y":182302},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":206917,"y":182294},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":206919,"y":182286},{"x":-8,"y":-21}],"type":"coastline"},{"arc":[{"x":206911,"y":182265},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":206912,"y":182253},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":206911,"y":182249},{"x":-6,"y":-11}],"type":"coastline"},{"arc":[{"x":206905,"y":182238},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":206904,"y":182235},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":206904,"y":182230},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":206905,"y":182226},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":206906,"y":182225},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":206907,"y":182224},{"x":5,"y":-3}],"type":"admin"},{"arc":[{"x":206912,"y":182221},{"x":18,"y":-17}],"type":"coastline"},{"arc":[{"x":206930,"y":182204},{"x":2,"y":-5}],"type":"admin"},{"arc":[{"x":206932,"y":182199},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":206934,"y":182194},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":206937,"y":182191},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":206941,"y":182185},{"x":8,"y":-20}],"type":"admin"},{"arc":[{"x":206949,"y":182165},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":206950,"y":182159},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":206951,"y":182147},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":206955,"y":182143},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":206966,"y":182140},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":206968,"y":182139},{"x":3,"y":-5}],"type":"admin"},{"arc":[{"x":206971,"y":182134},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":206975,"y":182125},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":206983,"y":182120},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":206991,"y":182115},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":206990,"y":182111},{"x":-3,"y":-5}],"type":"admin"},{"arc":[{"x":206987,"y":182106},{"x":-8,"y":-14}],"type":"coastline"},{"arc":[{"x":206979,"y":182092},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":206975,"y":182086},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":206974,"y":182084},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":206974,"y":182079},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":206976,"y":182075},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":206981,"y":182068},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":206982,"y":182065},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":206977,"y":182054},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":206977,"y":182053},{"x":-2,"y":-6}],"type":"admin"},{"arc":[{"x":206975,"y":182047},{"x":7,"y":-13}],"type":"coastline"},{"arc":[{"x":206982,"y":182034},{"x":12,"y":-8}],"type":"coastline"},{"arc":[{"x":206994,"y":182026},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":206997,"y":182020},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":206999,"y":182016},{"x":5,"y":-4}],"type":"admin"},{"arc":[{"x":207004,"y":182012},{"x":15,"y":-2}],"type":"coastline"},{"arc":[{"x":207019,"y":182010},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":207030,"y":182009},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":207033,"y":182008},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":207040,"y":182007},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":207045,"y":182004},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":207047,"y":182000},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":207049,"y":181997},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":207051,"y":181996},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":207057,"y":181994},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":207061,"y":181993},{"x":5,"y":-14}],"type":"coastline"},{"arc":[{"x":207066,"y":181979},{"x":8,"y":-12}],"type":"coastline"},{"arc":[{"x":207074,"y":181967},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":207081,"y":181958},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":207083,"y":181954},{"x":1,"y":-15}],"type":"coastline"},{"arc":[{"x":207084,"y":181939},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":207084,"y":181932},{"x":-6,"y":-10}],"type":"admin"},{"arc":[{"x":207078,"y":181922},{"x":-3,"y":-14}],"type":"coastline"},{"arc":[{"x":207075,"y":181908},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":207075,"y":181904},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":207073,"y":181896},{"x":-1,"y":-14}],"type":"coastline"},{"arc":[{"x":207072,"y":181882},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":207071,"y":181879},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":207070,"y":181870},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":207076,"y":181866},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":207079,"y":181867},{"x":8,"y":8}],"type":"admin"},{"arc":[{"x":207087,"y":181875},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":207091,"y":181876},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":207096,"y":181877},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":207099,"y":181879},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":207105,"y":181881},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":207114,"y":181881},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":207120,"y":181881},{"x":13,"y":-4}],"type":"coastline"},{"arc":[{"x":207133,"y":181877},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":207141,"y":181875},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":207143,"y":181874},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":207151,"y":181870},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":207153,"y":181870},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":207161,"y":181871},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":207170,"y":181874},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":207184,"y":181873},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":207188,"y":181873},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":207190,"y":181873},{"x":-2,"y":16}],"type":"coastline"},{"arc":[{"x":207188,"y":181889},{"x":5,"y":19}],"type":"admin"},{"arc":[{"x":207193,"y":181908},{"x":2,"y":13}],"type":"coastline"},{"arc":[{"x":207195,"y":181921},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":207198,"y":181930},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":207199,"y":181930},{"x":22,"y":-3}],"type":"coastline"},{"arc":[{"x":207221,"y":181927},{"x":14,"y":-2}],"type":"coastline"},{"arc":[{"x":207235,"y":181925},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":207242,"y":181928},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":207250,"y":181932},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":207251,"y":181932},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":207257,"y":181934},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":207260,"y":181934},{"x":10,"y":3}],"type":"coastline"},{"arc":[{"x":207270,"y":181937},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":207279,"y":181940},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":207281,"y":181940},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":207286,"y":181937},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":207293,"y":181938},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":207296,"y":181936},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":207299,"y":181932},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":207301,"y":181931},{"x":17,"y":0}],"type":"coastline"},{"arc":[{"x":207318,"y":181931},{"x":5,"y":0}],"type":"admin"},{"arc":[{"x":207323,"y":181931},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":207326,"y":181930},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":207327,"y":181929},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":207330,"y":181924},{"x":3,"y":-6}],"type":"admin"},{"arc":[{"x":207333,"y":181918},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":207337,"y":181910},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":207337,"y":181908},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":207332,"y":181898},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":207332,"y":181896},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":207331,"y":181893},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":207331,"y":181892},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":207331,"y":181884},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":207331,"y":181881},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":207330,"y":181878},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":207330,"y":181872},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":207332,"y":181865},{"x":-3,"y":-8}],"type":"admin"},{"arc":[{"x":207329,"y":181857},{"x":-2,"y":-28}],"type":"coastline"},{"arc":[{"x":207327,"y":181829},{"x":-3,"y":-29}],"type":"admin"},{"arc":[{"x":207324,"y":181800},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":207319,"y":181794},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":207318,"y":181792},{"x":-7,"y":-13}],"type":"coastline"},{"arc":[{"x":207311,"y":181779},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":207308,"y":181778},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":207306,"y":181774},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":207306,"y":181771},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":207303,"y":181768},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":207302,"y":181765},{"x":8,"y":-13}],"type":"coastline"},{"arc":[{"x":207310,"y":181752},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":207311,"y":181749},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":207311,"y":181747},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":207310,"y":181741},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":207309,"y":181739},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":207307,"y":181735},{"x":-4,"y":-4}],"type":"admin"},{"arc":[{"x":207303,"y":181731},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":207302,"y":181727},{"x":-1,"y":-12}],"type":"admin"},{"arc":[{"x":207301,"y":181715},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":207302,"y":181708},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":207302,"y":181707},{"x":11,"y":-10}],"type":"coastline"},{"arc":[{"x":207313,"y":181697},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":207314,"y":181694},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":207316,"y":181689},{"x":6,"y":-13}],"type":"coastline"},{"arc":[{"x":207322,"y":181676},{"x":9,"y":-14}],"type":"admin"},{"arc":[{"x":207331,"y":181662},{"x":13,"y":-17}],"type":"coastline"},{"arc":[{"x":207344,"y":181645},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":207346,"y":181645},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":207348,"y":181644},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":207354,"y":181640},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":207362,"y":181639},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":207364,"y":181639},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":207373,"y":181637},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":207377,"y":181633},{"x":10,"y":-14}],"type":"coastline"},{"arc":[{"x":207387,"y":181619},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":207389,"y":181617},{"x":10,"y":-12}],"type":"coastline"},{"arc":[{"x":207399,"y":181605},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":207400,"y":181604},{"x":3,"y":-18}],"type":"coastline"},{"arc":[{"x":207403,"y":181586},{"x":2,"y":-9}],"type":"admin"},{"arc":[{"x":207405,"y":181577},{"x":11,"y":-19}],"type":"coastline"},{"arc":[{"x":207416,"y":181558},{"x":5,"y":-21}],"type":"coastline"},{"arc":[{"x":207421,"y":181537},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":207421,"y":181534},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":207422,"y":181529},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":207426,"y":181523},{"x":8,"y":-18}],"type":"coastline"},{"arc":[{"x":207434,"y":181505},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":207438,"y":181498},{"x":8,"y":-12}],"type":"coastline"},{"arc":[{"x":207446,"y":181486},{"x":8,"y":-11}],"type":"admin"},{"arc":[{"x":207454,"y":181475},{"x":10,"y":-28}],"type":"coastline"},{"arc":[{"x":207464,"y":181447},{"x":7,"y":-20}],"type":"coastline"},{"arc":[{"x":207471,"y":181427},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":207476,"y":181436},{"x":8,"y":13}],"type":"coastline"},{"arc":[{"x":207484,"y":181449},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":207489,"y":181452},{"x":17,"y":3}],"type":"coastline"},{"arc":[{"x":207506,"y":181455},{"x":5,"y":2}],"type":"admin"},{"arc":[{"x":207511,"y":181457},{"x":14,"y":3}],"type":"coastline"},{"arc":[{"x":207525,"y":181460},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":207529,"y":181460},{"x":11,"y":-6}],"type":"coastline"},{"arc":[{"x":207540,"y":181454},{"x":9,"y":-8}],"type":"coastline"},{"arc":[{"x":207549,"y":181446},{"x":15,"y":-14}],"type":"coastline"},{"arc":[{"x":207564,"y":181432},{"x":9,"y":-5}],"type":"admin"},{"arc":[{"x":207573,"y":181427},{"x":19,"y":0}],"type":"coastline"},{"arc":[{"x":207592,"y":181427},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":207594,"y":181426},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":207599,"y":181416},{"x":8,"y":-19}],"type":"coastline"},{"arc":[{"x":207607,"y":181397},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":207609,"y":181395},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":207612,"y":181391},{"x":1,"y":-18}],"type":"coastline"},{"arc":[{"x":207613,"y":181373},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":207617,"y":181367},{"x":0,"y":-24}],"type":"coastline"},{"arc":[{"x":207617,"y":181343},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":207618,"y":181337},{"x":-1,"y":-29}],"type":"coastline"},{"arc":[{"x":207617,"y":181308},{"x":2,"y":-5}],"type":"admin"},{"arc":[{"x":207619,"y":181303},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":207620,"y":181296},{"x":3,"y":-17}],"type":"coastline"},{"arc":[{"x":207623,"y":181279},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":207623,"y":181277},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":207624,"y":181275},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":207624,"y":181269},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":207624,"y":181268},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":207627,"y":181269},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":207629,"y":181269},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":207635,"y":181268},{"x":8,"y":-5}],"type":"admin"},{"arc":[{"x":207643,"y":181263},{"x":12,"y":-9}],"type":"coastline"},{"arc":[{"x":207655,"y":181254},{"x":-5,"y":-11}],"type":"admin"},{"arc":[{"x":207650,"y":181243},{"x":-1,"y":-14}],"type":"coastline"},{"arc":[{"x":207649,"y":181229},{"x":1,"y":-13}],"type":"coastline"},{"arc":[{"x":207650,"y":181216},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":207651,"y":181211},{"x":2,"y":-3}],"type":"admin"},{"arc":[{"x":207653,"y":181208},{"x":-6,"y":-15}],"type":"coastline"},{"arc":[{"x":207647,"y":181193},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":207645,"y":181191},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":207645,"y":181190},{"x":-8,"y":-14}],"type":"coastline"},{"arc":[{"x":207637,"y":181176},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":207636,"y":181170},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":207635,"y":181165},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":207634,"y":181159},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":207632,"y":181154},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":207631,"y":181151},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":207629,"y":181144},{"x":-12,"y":-13}],"type":"coastline"},{"arc":[{"x":207617,"y":181131},{"x":5,"y":-18}],"type":"coastline"},{"arc":[{"x":207622,"y":181113},{"x":3,"y":-11}],"type":"coastline"},{"arc":[{"x":207625,"y":181102},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":207625,"y":181098},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":207620,"y":181089},{"x":-11,"y":-9}],"type":"coastline"},{"arc":[{"x":207609,"y":181080},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":207608,"y":181078},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":207606,"y":181072},{"x":-3,"y":-13}],"type":"admin"},{"arc":[{"x":207603,"y":181059},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":207601,"y":181055},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":207599,"y":181053},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":207593,"y":181050},{"x":-15,"y":-15}],"type":"coastline"},{"arc":[{"x":207578,"y":181035},{"x":-3,"y":-7}],"type":"admin"},{"arc":[{"x":207575,"y":181028},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":207573,"y":181021},{"x":1,"y":-20}],"type":"coastline"},{"arc":[{"x":207574,"y":181001},{"x":4,"y":-3}],"type":"admin"},{"arc":[{"x":207578,"y":180998},{"x":10,"y":3}],"type":"coastline"},{"arc":[{"x":207588,"y":181001},{"x":13,"y":4}],"type":"admin"},{"arc":[{"x":207601,"y":181005},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":207606,"y":181004},{"x":4,"y":-9}],"type":"admin"},{"arc":[{"x":207610,"y":180995},{"x":10,"y":-4}],"type":"coastline"},{"arc":[{"x":207620,"y":180991},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":207628,"y":180985},{"x":12,"y":-9}],"type":"admin"},{"arc":[{"x":207640,"y":180976},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":207650,"y":180975},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":207661,"y":180978},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":207668,"y":180979},{"x":17,"y":0}],"type":"coastline"},{"arc":[{"x":207685,"y":180979},{"x":22,"y":-10}],"type":"coastline"},{"arc":[{"x":207707,"y":180969},{"x":12,"y":2}],"type":"coastline"},{"arc":[{"x":207719,"y":180971},{"x":42,"y":2}],"type":"coastline"},{"arc":[{"x":207761,"y":180973},{"x":8,"y":-2}],"type":"admin"},{"arc":[{"x":207769,"y":180971},{"x":9,"y":-8}],"type":"coastline"},{"arc":[{"x":207778,"y":180963},{"x":6,"y":-9}],"type":"admin"},{"arc":[{"x":207784,"y":180954},{"x":9,"y":-15}],"type":"coastline"},{"arc":[{"x":207793,"y":180939},{"x":21,"y":-5}],"type":"coastline"},{"arc":[{"x":207814,"y":180934},{"x":8,"y":-1}],"type":"admin"},{"arc":[{"x":207822,"y":180933},{"x":19,"y":0}],"type":"coastline"},{"arc":[{"x":207841,"y":180933},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":207848,"y":180933},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":207853,"y":180933},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":207854,"y":180933},{"x":7,"y":5}],"type":"admin"},{"arc":[{"x":207861,"y":180938},{"x":13,"y":14}],"type":"coastline"},{"arc":[{"x":207874,"y":180952},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":207886,"y":180951},{"x":3,"y":1}],"type":"admin"},{"arc":[{"x":207889,"y":180952},{"x":16,"y":10}],"type":"coastline"},{"arc":[{"x":207905,"y":180962},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":207915,"y":180964},{"x":16,"y":9}],"type":"coastline"},{"arc":[{"x":211015,"y":180862},{"x":54,"y":40},{"x":-26,"y":76},{"x":26,"y":14},{"x":40,"y":-18},{"x":5,"y":27},{"x":43,"y":-12},{"x":20,"y":21},{"x":-110,"y":26},{"x":26,"y":36},{"x":23,"y":-25},{"x":-18,"y":68},{"x":27,"y":-8},{"x":-37,"y":28},{"x":5,"y":21},{"x":29,"y":-3},{"x":11,"y":55},{"x":-84,"y":75},{"x":24,"y":-16},{"x":74,"y":30},{"x":86,"y":-12},{"x":65,"y":48},{"x":24,"y":-18},{"x":74,"y":23},{"x":22,"y":46},{"x":-45,"y":22},{"x":-42,"y":69},{"x":29,"y":43},{"x":-17,"y":43},{"x":-51,"y":-5},{"x":2,"y":55},{"x":-49,"y":-2},{"x":6,"y":28},{"x":105,"y":-30},{"x":-4,"y":27},{"x":105,"y":-22}],"type":"area"},{"arc":[{"x":215882,"y":179615},{"x":11,"y":-42},{"x":43,"y":-13},{"x":4,"y":-29},{"x":36,"y":-1},{"x":13,"y":-57},{"x":66,"y":-56},{"x":-5,"y":-207},{"x":-22,"y":89},{"x":20,"y":-96},{"x":25,"y":-2},{"x":-8,"y":-94},{"x":38,"y":-91},{"x":68,"y":7},{"x":9,"y":21},{"x":45,"y":-21},{"x":22,"y":50},{"x":34,"y":0},{"x":33,"y":38},{"x":-66,"y":79},{"x":36,"y":26},{"x":-19,"y":44},{"x":38,"y":67},{"x":-50,"y":62},{"x":10,"y":22},{"x":24,"y":-11},{"x":-8,"y":27},{"x":-53,"y":30},{"x":39,"y":66},{"x":-47,"y":-60},{"x":-30,"y":67},{"x":44,"y":-45},{"x":-5,"y":36},{"x":-33,"y":68},{"x":18,"y":8},{"x":29,"y":-75},{"x":-30,"y":98},{"x":36,"y":37},{"x":27,"y":-4},{"x":5,"y":30},{"x":89,"y":-23},{"x":-1,"y":75},{"x":36,"y":42},{"x":155,"y":67},{"x":47,"y":-19},{"x":16,"y":28},{"x":43,"y":-4},{"x":69,"y":39},{"x":30,"y":-15},{"x":53,"y":31},{"x":43,"y":-15},{"x":102,"y":38},{"x":45,"y":-49},{"x":53,"y":-8},{"x":67,"y":41},{"x":18,"y":-22},{"x":14,"y":26},{"x":154,"y":-64},{"x":43,"y":21},{"x":86,"y":-9},{"x":25,"y":30},{"x":82,"y":1},{"x":14,"y":80},{"x":15,"y":-14},{"x":16,"y":22},{"x":6,"y":-17},{"x":21,"y":24},{"x":63,"y":1}],"type":"coastline"},{"arc":[{"x":214145,"y":189431},{"x":-36,"y":30},{"x":-41,"y":-12},{"x":-45,"y":-115},{"x":-89,"y":-9},{"x":-154,"y":-127},{"x":-39,"y":25},{"x":-74,"y":-28}],"type":"area"},{"arc":[{"x":213667,"y":189195},{"x":-94,"y":21},{"x":-151,"y":-93},{"x":-121,"y":-8},{"x":-193,"y":-214},{"x":-225,"y":-91},{"x":16,"y":-39},{"x":-87,"y":-183},{"x":-213,"y":-279},{"x":43,"y":-138},{"x":-142,"y":19},{"x":-59,"y":-19},{"x":38,"y":-65},{"x":60,"y":-3},{"x":-154,"y":-518},{"x":64,"y":-179},{"x":-31,"y":-150},{"x":95,"y":-57}],"type":"area"},{"arc":[{"x":213093,"y":187661},{"x":-76,"y":72},{"x":-7,"y":46},{"x":7,"y":-42},{"x":-32,"y":36},{"x":-3,"y":-5},{"x":-14,"y":30},{"x":-18,"y":0},{"x":-28,"y":50},{"x":23,"y":56},{"x":-26,"y":-16},{"x":2,"y":33},{"x":53,"y":32},{"x":-51,"y":-16},{"x":-28,"y":23},{"x":43,"y":-6},{"x":0,"y":29},{"x":-37,"y":18},{"x":43,"y":86},{"x":-26,"y":61},{"x":60,"y":80},{"x":41,"y":122},{"x":179,"y":179},{"x":296,"y":223},{"x":329,"y":179},{"x":348,"y":145}],"type":"coastline"},{"arc":[{"x":214171,"y":189076},{"x":8,"y":195},{"x":-34,"y":160}],"type":"area"},{"arc":[{"x":212212,"y":186861},{"x":-87,"y":43},{"x":-26,"y":44},{"x":-21,"y":-13},{"x":-44,"y":24},{"x":-42,"y":146},{"x":58,"y":98},{"x":-58,"y":65},{"x":-6,"y":74},{"x":27,"y":24},{"x":-8,"y":78},{"x":30,"y":75},{"x":-24,"y":196},{"x":86,"y":93},{"x":-28,"y":18},{"x":-40,"y":197},{"x":24,"y":168},{"x":-62,"y":23},{"x":16,"y":35},{"x":-45,"y":64},{"x":-33,"y":150},{"x":-94,"y":10},{"x":-34,"y":252},{"x":-64,"y":27},{"x":-136,"y":-43},{"x":-45,"y":67},{"x":-10,"y":73},{"x":-54,"y":19},{"x":36,"y":1},{"x":37,"y":-28},{"x":40,"y":23},{"x":-152,"y":189},{"x":21,"y":109},{"x":38,"y":-27},{"x":33,"y":15},{"x":91,"y":73},{"x":-17,"y":34},{"x":76,"y":-18},{"x":-24,"y":191},{"x":-47,"y":-17},{"x":1,"y":36},{"x":-70,"y":-1},{"x":1,"y":-21},{"x":-125,"y":-12},{"x":-18,"y":184},{"x":-47,"y":-7},{"x":12,"y":-132},{"x":35,"y":-29},{"x":-10,"y":-70},{"x":-25,"y":-24},{"x":-63,"y":26},{"x":-175,"y":-107},{"x":-72,"y":-148},{"x":-5,"y":-100},{"x":-54,"y":-5},{"x":19,"y":-47},{"x":-81,"y":-48},{"x":14,"y":-31},{"x":-137,"y":-233},{"x":-49,"y":5},{"x":-18,"y":-39},{"x":-43,"y":1},{"x":-4,"y":-35},{"x":-105,"y":35},{"x":-48,"y":-52},{"x":-34,"y":19}],"type":"area"},{"arc":[{"x":210279,"y":190470},{"x":-73,"y":37},{"x":-135,"y":10},{"x":-51,"y":34},{"x":-101,"y":-128},{"x":-128,"y":-57},{"x":-101,"y":-11},{"x":-52,"y":22},{"x":-28,"y":-31},{"x":-40,"y":7},{"x":-84,"y":29},{"x":-19,"y":44},{"x":34,"y":16},{"x":-16,"y":89},{"x":38,"y":-21},{"x":32,"y":35},{"x":11,"y":-21},{"x":-7,"y":41},{"x":-26,"y":19},{"x":-75,"y":6},{"x":-1,"y":-61},{"x":-120,"y":-72},{"x":-33,"y":205},{"x":19,"y":43},{"x":-14,"y":35},{"x":-20,"y":-16}],"type":"area"},{"arc":[{"x":209289,"y":190724},{"x":-74,"y":2},{"x":-96,"y":-42},{"x":-73,"y":-94},{"x":-2,"y":-22},{"x":250,"y":-115},{"x":-60,"y":-78},{"x":9,"y":-71},{"x":-34,"y":-59},{"x":-141,"y":32},{"x":-69,"y":-150},{"x":68,"y":-196}],"type":"area"},{"arc":[{"x":210287,"y":189582},{"x":138,"y":172},{"x":78,"y":46},{"x":16,"y":99},{"x":73,"y":73},{"x":26,"y":84},{"x":111,"y":24},{"x":16,"y":69}],"type":"area"},{"arc":[{"x":216483,"y":190131},{"x":-55,"y":43},{"x":-28,"y":-18},{"x":-143,"y":10},{"x":-82,"y":72},{"x":-51,"y":8},{"x":-31,"y":-3},{"x":-15,"y":-61},{"x":-63,"y":-28},{"x":-37,"y":12},{"x":-68,"y":86},{"x":-30,"y":133}],"type":"area"},{"arc":[{"x":215880,"y":190385},{"x":-59,"y":46},{"x":-55,"y":-9},{"x":-19,"y":20},{"x":-61,"y":-86},{"x":-109,"y":-15},{"x":-96,"y":26},{"x":-35,"y":-72},{"x":-90,"y":56},{"x":-69,"y":-12},{"x":-31,"y":-53},{"x":24,"y":-91},{"x":-35,"y":-38},{"x":-145,"y":-13},{"x":-52,"y":-79},{"x":-43,"y":6},{"x":-3,"y":28},{"x":-108,"y":13},{"x":-98,"y":-92},{"x":-46,"y":-101},{"x":-155,"y":-48},{"x":-16,"y":-99},{"x":-51,"y":-7},{"x":-19,"y":-48},{"x":-44,"y":8},{"x":-4,"y":-110},{"x":-154,"y":-97},{"x":-104,"y":10},{"x":-58,"y":-97}],"type":"area"},{"arc":[{"x":214171,"y":189076},{"x":322,"y":102},{"x":363,"y":76},{"x":133,"y":17},{"x":19,"y":-18},{"x":1,"y":21},{"x":190,"y":22},{"x":69,"y":-1},{"x":8,"y":-26},{"x":37,"y":33},{"x":275,"y":-13},{"x":75,"y":59},{"x":194,"y":-8},{"x":137,"y":45},{"x":-22,"y":2},{"x":16,"y":32},{"x":74,"y":9},{"x":76,"y":56},{"x":-5,"y":46},{"x":109,"y":79},{"x":198,"y":39}],"type":"coastline"},{"arc":[{"x":213667,"y":189195},{"x":-97,"y":178},{"x":28,"y":116},{"x":-26,"y":12},{"x":-187,"y":-60},{"x":-14,"y":-71},{"x":1,"y":71},{"x":-213,"y":66},{"x":-81,"y":69},{"x":-192,"y":-29},{"x":-306,"y":34},{"x":-178,"y":395},{"x":200,"y":78},{"x":64,"y":133},{"x":-40,"y":3},{"x":-23,"y":-29},{"x":-49,"y":90},{"x":-16,"y":132},{"x":27,"y":125},{"x":-24,"y":64},{"x":-50,"y":22}],"type":"area"},{"arc":[{"x":213575,"y":191012},{"x":77,"y":-75},{"x":125,"y":0},{"x":-124,"y":4},{"x":-78,"y":71}],"type":"coastline"},{"arc":[{"x":215880,"y":190385},{"x":44,"y":183},{"x":160,"y":93},{"x":92,"y":121},{"x":-3,"y":62},{"x":35,"y":40}],"type":"area"},{"arc":[{"x":216208,"y":190884},{"x":-233,"y":-31},{"x":-108,"y":13},{"x":21,"y":17},{"x":-60,"y":28},{"x":33,"y":-27},{"x":-45,"y":-2},{"x":24,"y":-28},{"x":-46,"y":15},{"x":27,"y":24},{"x":-48,"y":22},{"x":-360,"y":-82},{"x":-1126,"y":-69},{"x":-130,"y":14},{"x":-8,"y":43},{"x":-60,"y":35},{"x":53,"y":-36},{"x":-1,"y":-36},{"x":-26,"y":0},{"x":-5,"y":32},{"x":1,"y":-53},{"x":-33,"y":24},{"x":14,"y":49},{"x":-58,"y":-46},{"x":-159,"y":-4},{"x":-21,"y":23},{"x":-35,"y":-21},{"x":-84,"y":36},{"x":-2,"y":40},{"x":-21,"y":-90},{"x":38,"y":-54},{"x":-38,"y":-44},{"x":-55,"y":63},{"x":6,"y":67},{"x":-36,"y":20},{"x":-1,"y":35},{"x":-27,"y":23},{"x":26,"y":-24},{"x":0,"y":-29},{"x":-23,"y":3},{"x":56,"y":-54},{"x":-55,"y":12},{"x":0,"y":25},{"x":-1,"y":-25},{"x":-28,"y":0},{"x":-6,"y":92},{"x":31,"y":44},{"x":-34,"y":-44},{"x":2,"y":-32},{"x":-78,"y":-24},{"x":-391,"y":26}],"type":"coastline"},{"arc":[{"x":210363,"y":191328},{"x":-299,"y":69},{"x":-36,"y":17},{"x":6,"y":32},{"x":-8,"y":-32},{"x":-86,"y":15},{"x":-27,"y":13},{"x":6,"y":36},{"x":-11,"y":-35},{"x":-66,"y":20},{"x":-44,"y":17},{"x":11,"y":35},{"x":-13,"y":-33},{"x":-41,"y":12},{"x":-69,"y":31},{"x":10,"y":33},{"x":-18,"y":-27},{"x":-109,"y":41},{"x":1,"y":34},{"x":-55,"y":-27}],"type":"coastline"},{"arc":[{"x":209231,"y":191044},{"x":47,"y":-49},{"x":-20,"y":-73},{"x":20,"y":-23},{"x":-22,"y":-12},{"x":44,"y":-47},{"x":-46,"y":4},{"x":-24,"y":-26},{"x":85,"y":5},{"x":-5,"y":-54},{"x":-22,"y":1},{"x":21,"y":-28},{"x":-34,"y":-1},{"x":-11,"y":30},{"x":0,"y":-24},{"x":-34,"y":5},{"x":59,"y":-28}],"type":"area"},{"arc":[{"x":221314,"y":185807},{"x":-15,"y":21},{"x":-41,"y":-24},{"x":56,"y":3}],"type":"coastline"},{"arc":[{"x":221226,"y":186141},{"x":-96,"y":-33},{"x":-34,"y":17},{"x":-46,"y":50},{"x":-55,"y":15},{"x":-114,"y":158},{"x":-81,"y":21},{"x":-18,"y":-40},{"x":-75,"y":-30},{"x":-84,"y":19},{"x":-30,"y":49},{"x":-49,"y":-11},{"x":-57,"y":36},{"x":-53,"y":-41},{"x":-68,"y":9},{"x":-50,"y":-32},{"x":-57,"y":15},{"x":-44,"y":-59},{"x":-38,"y":-3},{"x":-129,"y":118},{"x":-9,"y":57}],"type":"area"},{"arc":[{"x":219861,"y":186175},{"x":79,"y":-122},{"x":-55,"y":-55},{"x":35,"y":-51},{"x":83,"y":-20},{"x":30,"y":-40},{"x":-16,"y":-46},{"x":88,"y":-67},{"x":47,"y":3},{"x":88,"y":-53},{"x":130,"y":9},{"x":12,"y":-46},{"x":81,"y":-53},{"x":-6,"y":-61}],"type":"area"},{"arc":[{"x":220457,"y":185573},{"x":52,"y":62},{"x":-25,"y":-10},{"x":-5,"y":26},{"x":72,"y":44},{"x":14,"y":48},{"x":72,"y":5},{"x":96,"y":57},{"x":57,"y":-10},{"x":-33,"y":11},{"x":47,"y":46},{"x":31,"y":-31},{"x":61,"y":5},{"x":-19,"y":7},{"x":28,"y":23},{"x":77,"y":-20},{"x":20,"y":-72},{"x":42,"y":-18},{"x":-48,"y":67},{"x":39,"y":9},{"x":11,"y":-38},{"x":13,"y":28},{"x":133,"y":-84},{"x":39,"y":14},{"x":-43,"y":-11},{"x":-15,"y":36},{"x":41,"y":30},{"x":47,"y":-6},{"x":-35,"y":20},{"x":11,"y":30},{"x":35,"y":-26},{"x":37,"y":37},{"x":109,"y":-15},{"x":-34,"y":20},{"x":33,"y":9},{"x":1,"y":-19},{"x":28,"y":39},{"x":6,"y":64},{"x":-12,"y":14},{"x":-10,"y":-31},{"x":-15,"y":30},{"x":-34,"y":3},{"x":59,"y":7},{"x":-66,"y":-6},{"x":-77,"y":40},{"x":-71,"y":134}],"type":"coastline"},{"arc":[{"x":221566,"y":185879},{"x":-16,"y":25},{"x":-32,"y":-35},{"x":42,"y":-16},{"x":6,"y":26}],"type":"coastline"},{"arc":[{"x":219743,"y":191254},{"x":-13,"y":-26},{"x":45,"y":68},{"x":-32,"y":-42}],"type":"coastline"},{"arc":[{"x":219103,"y":189341},{"x":-95,"y":290},{"x":-27,"y":147},{"x":15,"y":67},{"x":-21,"y":-30},{"x":-8,"y":53},{"x":71,"y":373},{"x":68,"y":69},{"x":-47,"y":-36},{"x":35,"y":35},{"x":-12,"y":47},{"x":300,"y":599},{"x":115,"y":86},{"x":63,"y":111},{"x":120,"y":129},{"x":18,"y":-17},{"x":24,"y":20},{"x":-14,"y":20},{"x":53,"y":27},{"x":151,"y":183},{"x":73,"y":42},{"x":-17,"y":44},{"x":-68,"y":-15},{"x":-71,"y":56},{"x":-40,"y":-82},{"x":-77,"y":-8},{"x":-88,"y":35},{"x":-12,"y":-88},{"x":-45,"y":-11},{"x":-3,"y":7},{"x":-30,"y":-2},{"x":-9,"y":14},{"x":7,"y":-18},{"x":31,"y":5},{"x":3,"y":-10},{"x":-20,"y":-10},{"x":-89,"y":82},{"x":-71,"y":-22},{"x":-33,"y":19},{"x":-42,"y":-55},{"x":-25,"y":11},{"x":-10,"y":-33},{"x":-39,"y":-9},{"x":34,"y":4},{"x":-16,"y":-25},{"x":-39,"y":8},{"x":-64,"y":-55},{"x":-115,"y":-38},{"x":-1483,"y":-381},{"x":-148,"y":-14},{"x":-25,"y":44},{"x":2,"y":-37},{"x":-20,"y":11},{"x":3,"y":-14},{"x":18,"y":1},{"x":3,"y":-11},{"x":-38,"y":-7},{"x":5,"y":26},{"x":25,"y":41},{"x":-28,"y":-55},{"x":-128,"y":-36},{"x":-21,"y":29},{"x":8,"y":-27},{"x":-41,"y":-13},{"x":-32,"y":8},{"x":11,"y":54},{"x":-22,"y":-7},{"x":2,"y":-56},{"x":-178,"y":-51},{"x":-30,"y":2},{"x":-8,"y":50},{"x":-67,"y":14},{"x":54,"y":-20},{"x":9,"y":-49},{"x":-41,"y":-9},{"x":-4,"y":43},{"x":-1,"y":-34},{"x":-59,"y":-27},{"x":-152,"y":-15},{"x":1,"y":32},{"x":-17,"y":-30},{"x":-204,"y":-12},{"x":-160,"y":31},{"x":-4,"y":30},{"x":-40,"y":-5},{"x":34,"y":-16},{"x":-29,"y":9},{"x":-15,"y":-20},{"x":-9,"y":45}],"type":"coastline"},{"arc":[{"x":221226,"y":186141},{"x":-4,"y":49},{"x":-65,"y":32},{"x":-19,"y":79},{"x":-79,"y":50},{"x":-22,"y":61},{"x":-79,"y":16},{"x":-20,"y":54},{"x":-33,"y":-6},{"x":-60,"y":40},{"x":-148,"y":290},{"x":36,"y":-33},{"x":-27,"y":39},{"x":-26,"y":-2},{"x":-34,"y":194},{"x":8,"y":28},{"x":17,"y":-20},{"x":-27,"y":82},{"x":-8,"y":387},{"x":-105,"y":141},{"x":-44,"y":132},{"x":-5,"y":-36},{"x":-28,"y":46},{"x":44,"y":-4},{"x":-52,"y":10},{"x":-55,"y":186},{"x":-40,"y":-12},{"x":-52,"y":44}],"type":"coastline"},{"arc":[{"x":217192,"y":184499},{"x":311,"y":76},{"x":230,"y":-61},{"x":39,"y":58},{"x":69,"y":3},{"x":122,"y":62},{"x":48,"y":-23},{"x":51,"y":66},{"x":44,"y":-10},{"x":52,"y":33},{"x":94,"y":6},{"x":-17,"y":36},{"x":81,"y":-38},{"x":50,"y":39},{"x":13,"y":-23},{"x":129,"y":65},{"x":91,"y":-77},{"x":75,"y":87},{"x":10,"y":-64},{"x":54,"y":41},{"x":43,"y":94},{"x":130,"y":65},{"x":292,"y":39},{"x":23,"y":36},{"x":229,"y":-1},{"x":145,"y":38},{"x":-26,"y":5},{"x":26,"y":18},{"x":61,"y":-7},{"x":10,"y":34},{"x":59,"y":-5},{"x":34,"y":36},{"x":30,"y":-39},{"x":20,"y":31},{"x":38,"y":-5},{"x":-12,"y":50},{"x":31,"y":65},{"x":141,"y":53},{"x":47,"y":68},{"x":-59,"y":-52},{"x":32,"y":44},{"x":-13,"y":9},{"x":12,"y":23},{"x":15,"y":-18},{"x":-5,"y":13},{"x":-21,"y":12},{"x":27,"y":25},{"x":87,"y":13},{"x":41,"y":-22},{"x":69,"y":62},{"x":-16,"y":20},{"x":40,"y":63},{"x":45,"y":-17},{"x":131,"y":77},{"x":13,"y":-29}],"type":"coastline"},{"arc":[{"x":207119,"y":188973},{"x":-180,"y":141},{"x":42,"y":284},{"x":39,"y":22},{"x":-38,"y":-9},{"x":-22,"y":26},{"x":22,"y":82},{"x":-136,"y":77},{"x":54,"y":157},{"x":-138,"y":151},{"x":20,"y":100},{"x":-63,"y":40},{"x":-64,"y":-13},{"x":-60,"y":39}],"type":"area"},{"arc":[{"x":206595,"y":190070},{"x":-74,"y":-70},{"x":-46,"y":-174},{"x":-32,"y":25},{"x":-35,"y":-41},{"x":-79,"y":4},{"x":-87,"y":-132},{"x":59,"y":-177},{"x":-96,"y":-24},{"x":-11,"y":-122},{"x":-160,"y":-165},{"x":-7,"y":-64},{"x":-159,"y":-80},{"x":-15,"y":-95},{"x":-81,"y":-123},{"x":31,"y":-254},{"x":-44,"y":-43},{"x":-23,"y":-98}],"type":"admin"},{"arc":[{"x":205736,"y":188437},{"x":65,"y":-3},{"x":63,"y":42},{"x":55,"y":99},{"x":63,"y":-28},{"x":52,"y":28},{"x":60,"y":104},{"x":162,"y":-58},{"x":72,"y":66},{"x":48,"y":-56},{"x":21,"y":39},{"x":36,"y":-170},{"x":93,"y":-6},{"x":-32,"y":-220},{"x":58,"y":-47},{"x":18,"y":-175},{"x":72,"y":-120},{"x":-19,"y":-46},{"x":28,"y":-38},{"x":-64,"y":-124},{"x":45,"y":-101},{"x":5,"y":-293},{"x":64,"y":-97},{"x":58,"y":-23},{"x":18,"y":-67},{"x":-50,"y":-219},{"x":46,"y":-30},{"x":31,"y":-104},{"x":89,"y":-19},{"x":-15,"y":-111}],"type":"area"},{"arc":[{"x":206878,"y":186660},{"x":103,"y":-16},{"x":31,"y":-45},{"x":81,"y":12}],"type":"admin"},{"arc":[{"x":207093,"y":186611},{"x":-46,"y":12},{"x":-74,"y":73},{"x":96,"y":142},{"x":-46,"y":109},{"x":22,"y":83},{"x":-16,"y":75},{"x":-77,"y":113},{"x":88,"y":101},{"x":50,"y":204},{"x":8,"y":143},{"x":-90,"y":117},{"x":23,"y":69},{"x":93,"y":105},{"x":29,"y":83},{"x":-25,"y":122},{"x":89,"y":183},{"x":-30,"y":162},{"x":23,"y":70},{"x":-66,"y":34},{"x":-1,"y":232},{"x":35,"y":62},{"x":-48,"y":23},{"x":-11,"y":45}],"type":"area"},{"arc":[{"x":208140,"y":190551},{"x":-173,"y":-273},{"x":-64,"y":-179},{"x":-102,"y":46},{"x":-37,"y":-5},{"x":39,"y":-50},{"x":-96,"y":-81},{"x":-28,"y":-89},{"x":-134,"y":-77},{"x":-58,"y":-98},{"x":-103,"y":83},{"x":-17,"y":-11},{"x":-55,"y":35},{"x":-44,"y":-27},{"x":11,"y":-102},{"x":91,"y":-67},{"x":25,"y":-58},{"x":-98,"y":-74},{"x":-12,"y":-129},{"x":-87,"y":-97},{"x":13,"y":-60},{"x":-28,"y":-26}],"type":"area"},{"arc":[{"x":207183,"y":189212},{"x":9,"y":-42},{"x":38,"y":16},{"x":7,"y":-52},{"x":89,"y":-44},{"x":47,"y":77},{"x":131,"y":87},{"x":-3,"y":-49},{"x":116,"y":-18},{"x":80,"y":-94},{"x":6,"y":-68},{"x":-49,"y":-101},{"x":4,"y":-145},{"x":58,"y":32},{"x":114,"y":-9},{"x":80,"y":-47},{"x":19,"y":-60},{"x":63,"y":-3},{"x":47,"y":-34},{"x":24,"y":-53},{"x":90,"y":99}],"type":"area"},{"arc":[{"x":205736,"y":188437},{"x":-50,"y":-71},{"x":-4,"y":-144},{"x":-73,"y":-41},{"x":-62,"y":-152},{"x":-104,"y":-133},{"x":-9,"y":-72},{"x":-252,"y":105},{"x":-67,"y":-62},{"x":-11,"y":-101},{"x":-39,"y":-62},{"x":11,"y":-123},{"x":-48,"y":-74},{"x":-135,"y":-98},{"x":-17,"y":-185},{"x":-33,"y":-3},{"x":-97,"y":-152},{"x":-62,"y":-9}],"type":"admin"},{"arc":[{"x":204684,"y":187060},{"x":-50,"y":-137},{"x":3,"y":-73},{"x":33,"y":-40},{"x":-18,"y":-55},{"x":46,"y":-56},{"x":-38,"y":-120},{"x":76,"y":-36},{"x":8,"y":-76},{"x":147,"y":-16},{"x":48,"y":-89},{"x":73,"y":-35}],"type":"admin"},{"arc":[{"x":205012,"y":186327},{"x":133,"y":-97},{"x":80,"y":16},{"x":86,"y":57},{"x":108,"y":16},{"x":34,"y":33},{"x":63,"y":-53},{"x":9,"y":-80},{"x":103,"y":-7},{"x":107,"y":134},{"x":187,"y":21},{"x":63,"y":-16},{"x":13,"y":23},{"x":-30,"y":31},{"x":64,"y":-1},{"x":69,"y":50},{"x":64,"y":8},{"x":106,"y":-63},{"x":48,"y":65},{"x":-91,"y":36},{"x":-5,"y":94},{"x":127,"y":150},{"x":95,"y":-24},{"x":3,"y":-20},{"x":75,"y":-2},{"x":40,"y":42},{"x":81,"y":-10},{"x":28,"y":-42},{"x":122,"y":-58},{"x":84,"y":30}],"type":"admin"},{"arc":[{"x":206443,"y":190856},{"x":-18,"y":-41},{"x":-79,"y":6},{"x":-138,"y":-84},{"x":-40,"y":-51},{"x":54,"y":-35},{"x":-59,"y":-33},{"x":-95,"y":-198}],"type":"admin"},{"arc":[{"x":206068,"y":190420},{"x":47,"y":-1},{"x":12,"y":-49},{"x":32,"y":24},{"x":24,"y":-16},{"x":69,"y":-133},{"x":77,"y":30},{"x":108,"y":-6},{"x":21,"y":-66},{"x":49,"y":-52},{"x":52,"y":-6},{"x":36,"y":-75}],"type":"admin"},{"arc":[{"x":207119,"y":188973},{"x":64,"y":239}],"type":"area"},{"arc":[{"x":207886,"y":193476},{"x":-57,"y":27},{"x":15,"y":13},{"x":-53,"y":75},{"x":2,"y":-20},{"x":-20,"y":13},{"x":-7,"y":49},{"x":-25,"y":-10},{"x":5,"y":25},{"x":-14,"y":-10},{"x":-77,"y":66},{"x":-53,"y":150},{"x":-25,"y":-4}],"type":"coastline"},{"arc":[{"x":207577,"y":193850},{"x":-22,"y":-69},{"x":-143,"y":-63},{"x":-42,"y":-91},{"x":-68,"y":-64},{"x":-4,"y":-83},{"x":-101,"y":-161},{"x":-1,"y":-157},{"x":-60,"y":-37},{"x":-29,"y":-152},{"x":-78,"y":-113},{"x":-153,"y":-61},{"x":-38,"y":0},{"x":-30,"y":37},{"x":-74,"y":-14},{"x":-38,"y":36},{"x":-55,"y":-58},{"x":-31,"y":2}],"type":"admin"},{"arc":[{"x":206610,"y":192802},{"x":-55,"y":-92},{"x":-46,"y":-6},{"x":-56,"y":-85},{"x":-3,"y":-79},{"x":-33,"y":-24}],"type":"admin"},{"arc":[{"x":207093,"y":186611},{"x":40,"y":-8},{"x":10,"y":-31},{"x":70,"y":69},{"x":70,"y":-3}],"type":"admin"},{"arc":[{"x":200379,"y":191281},{"x":33,"y":85},{"x":-16,"y":82},{"x":-108,"y":208},{"x":13,"y":91},{"x":95,"y":50}],"type":"admin"},{"arc":[{"x":200396,"y":191797},{"x":-62,"y":153},{"x":17,"y":78},{"x":-192,"y":3},{"x":-102,"y":-32},{"x":-117,"y":80},{"x":-140,"y":54},{"x":-209,"y":38},{"x":-85,"y":74},{"x":-74,"y":-48},{"x":31,"y":-65},{"x":-13,"y":-96},{"x":30,"y":-33},{"x":-34,"y":-61},{"x":-85,"y":35},{"x":-87,"y":-24},{"x":-39,"y":-97},{"x":-167,"y":-41},{"x":-30,"y":-82},{"x":-79,"y":-3},{"x":-53,"y":-31},{"x":-19,"y":-65},{"x":43,"y":-88},{"x":-5,"y":-81},{"x":-107,"y":-181},{"x":-25,"y":-127},{"x":47,"y":-121},{"x":-65,"y":-64},{"x":-92,"y":-71},{"x":-70,"y":44},{"x":-68,"y":-7},{"x":-17,"y":-45},{"x":-74,"y":-19},{"x":-121,"y":50},{"x":-43,"y":-40},{"x":-88,"y":-7},{"x":-75,"y":92},{"x":-7,"y":53},{"x":-142,"y":-5}],"type":"admin"},{"arc":[{"x":197978,"y":191017},{"x":-78,"y":-71},{"x":-15,"y":-49},{"x":-151,"y":-115},{"x":-84,"y":-254},{"x":-88,"y":-100},{"x":-66,"y":-17},{"x":-27,"y":-50},{"x":-57,"y":0},{"x":-60,"y":-86},{"x":-35,"y":38},{"x":-29,"y":-20},{"x":-50,"y":37},{"x":-35,"y":-8},{"x":-58,"y":76},{"x":-204,"y":463},{"x":-104,"y":145},{"x":-147,"y":90},{"x":-70,"y":145},{"x":-184,"y":54},{"x":-42,"y":-43},{"x":-35,"y":-119}],"type":"area"},{"arc":[{"x":196359,"y":191133},{"x":111,"y":-65},{"x":57,"y":-112},{"x":-40,"y":-205},{"x":25,"y":-123},{"x":-28,"y":-95},{"x":-78,"y":-101},{"x":23,"y":-83},{"x":-29,"y":-115},{"x":43,"y":-79},{"x":56,"y":-39},{"x":-40,"y":-83},{"x":7,"y":-88}],"type":"area"},{"arc":[{"x":196466,"y":189945},{"x":102,"y":44},{"x":11,"y":-30},{"x":65,"y":-11},{"x":32,"y":-75},{"x":38,"y":4},{"x":53,"y":-54},{"x":110,"y":-42},{"x":37,"y":-46},{"x":-53,"y":-41},{"x":3,"y":-27},{"x":-149,"y":20},{"x":-70,"y":-72},{"x":-55,"y":2},{"x":-7,"y":-30},{"x":57,"y":-70},{"x":0,"y":-44},{"x":215,"y":-202},{"x":36,"y":-86},{"x":-50,"y":-324},{"x":-59,"y":-31}],"type":"admin"},{"arc":[{"x":196782,"y":188830},{"x":179,"y":-39},{"x":34,"y":-79},{"x":75,"y":-51},{"x":77,"y":5},{"x":65,"y":-29},{"x":37,"y":-279},{"x":20,"y":19},{"x":2,"y":-38},{"x":65,"y":-35},{"x":31,"y":-105},{"x":91,"y":-37},{"x":-16,"y":-96},{"x":-98,"y":-79},{"x":-9,"y":-76},{"x":-49,"y":-9},{"x":-37,"y":-67},{"x":33,"y":-237},{"x":-30,"y":-104},{"x":17,"y":-36},{"x":59,"y":-23},{"x":23,"y":-75}],"type":"admin"},{"arc":[{"x":197351,"y":187360},{"x":62,"y":-88},{"x":86,"y":40},{"x":97,"y":-102},{"x":5,"y":-30},{"x":-80,"y":33},{"x":16,"y":-41},{"x":-44,"y":-5},{"x":0,"y":-51},{"x":-32,"y":-1},{"x":-27,"y":-129},{"x":35,"y":-53},{"x":89,"y":-17},{"x":46,"y":-35},{"x":43,"y":-139},{"x":61,"y":96},{"x":75,"y":31},{"x":71,"y":113},{"x":25,"y":-64},{"x":55,"y":3},{"x":-58,"y":34},{"x":-8,"y":36},{"x":94,"y":-75},{"x":144,"y":184}],"type":"admin"},{"arc":[{"x":198106,"y":187100},{"x":-23,"y":60},{"x":-64,"y":33},{"x":-63,"y":91},{"x":79,"y":136},{"x":33,"y":135},{"x":61,"y":48},{"x":-1,"y":74},{"x":59,"y":-70},{"x":45,"y":17},{"x":30,"y":-34},{"x":96,"y":37},{"x":42,"y":-48},{"x":17,"y":-81},{"x":40,"y":18},{"x":-54,"y":118},{"x":-26,"y":-6},{"x":-17,"y":78},{"x":38,"y":9},{"x":-22,"y":98},{"x":76,"y":-6},{"x":81,"y":81},{"x":88,"y":-8},{"x":-22,"y":16},{"x":62,"y":47},{"x":36,"y":81},{"x":-30,"y":4},{"x":41,"y":39},{"x":0,"y":-54},{"x":33,"y":-19},{"x":51,"y":55},{"x":51,"y":4},{"x":99,"y":67},{"x":48,"y":184},{"x":-74,"y":45},{"x":38,"y":157},{"x":88,"y":-16},{"x":58,"y":39},{"x":207,"y":-60},{"x":56,"y":39},{"x":28,"y":-57},{"x":61,"y":16},{"x":6,"y":-149},{"x":42,"y":72},{"x":61,"y":-29},{"x":60,"y":40},{"x":65,"y":-88},{"x":-32,"y":-49},{"x":1,"y":-80},{"x":234,"y":-77},{"x":-1,"y":-162},{"x":224,"y":-21},{"x":239,"y":-113}],"type":"area"},{"arc":[{"x":200351,"y":187811},{"x":-3,"y":91},{"x":33,"y":52},{"x":18,"y":-8},{"x":11,"y":96},{"x":-19,"y":128},{"x":210,"y":174},{"x":2,"y":61},{"x":73,"y":80},{"x":-25,"y":49},{"x":67,"y":5},{"x":116,"y":-101},{"x":119,"y":-35}],"type":"area"},{"arc":[{"x":200953,"y":188403},{"x":43,"y":91},{"x":-24,"y":196},{"x":-40,"y":54},{"x":-142,"y":32},{"x":-19,"y":46},{"x":-75,"y":-11},{"x":23,"y":41},{"x":-11,"y":116},{"x":-23,"y":56},{"x":-54,"y":22},{"x":63,"y":70},{"x":-5,"y":50},{"x":-59,"y":38},{"x":24,"y":78},{"x":-42,"y":33},{"x":3,"y":20},{"x":46,"y":-7},{"x":-28,"y":60},{"x":38,"y":111},{"x":-20,"y":69},{"x":-116,"y":9},{"x":-9,"y":62},{"x":-86,"y":-9},{"x":-34,"y":22},{"x":-200,"y":13},{"x":-74,"y":113},{"x":4,"y":38},{"x":-41,"y":28},{"x":-77,"y":-85},{"x":-147,"y":11},{"x":3,"y":48},{"x":50,"y":28},{"x":10,"y":83},{"x":-43,"y":65},{"x":-78,"y":-3},{"x":-33,"y":73},{"x":38,"y":112},{"x":151,"y":83},{"x":11,"y":50},{"x":-48,"y":22},{"x":25,"y":160},{"x":62,"y":63},{"x":-72,"y":259},{"x":79,"y":252},{"x":-69,"y":104},{"x":102,"y":93},{"x":91,"y":-15},{"x":229,"y":34}],"type":"admin"},{"arc":[{"x":197488,"y":196945},{"x":-40,"y":31},{"x":37,"y":-61},{"x":3,"y":30}],"type":"coastline"},{"arc":[{"x":197730,"y":197001},{"x":-33,"y":21},{"x":-17,"y":-20},{"x":18,"y":-19},{"x":32,"y":18}],"type":"coastline"},{"arc":[{"x":199739,"y":196918},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":199740,"y":196919},{"x":0,"y":3}],"type":"admin"},{"arc":[{"x":199740,"y":196922},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":199737,"y":196908},{"x":-32,"y":18},{"x":25,"y":62},{"x":-33,"y":23},{"x":-43,"y":-10},{"x":-47,"y":41},{"x":-76,"y":-37},{"x":-6,"y":-43},{"x":-38,"y":21},{"x":-55,"y":-26},{"x":-72,"y":28},{"x":-18,"y":-16},{"x":-23,"y":44},{"x":-111,"y":-53},{"x":-37,"y":81},{"x":-23,"y":-11},{"x":-77,"y":59},{"x":-28,"y":86},{"x":-109,"y":-149},{"x":-132,"y":-10},{"x":-72,"y":65},{"x":26,"y":23},{"x":-20,"y":70},{"x":-65,"y":-149},{"x":-109,"y":-38},{"x":-14,"y":-31},{"x":-27,"y":24},{"x":-27,"y":-88},{"x":37,"y":5},{"x":-1,"y":-27},{"x":-28,"y":4},{"x":-17,"y":-33},{"x":-11,"y":20},{"x":-11,"y":-23},{"x":-29,"y":17},{"x":-14,"y":101},{"x":-43,"y":13},{"x":1,"y":38},{"x":-9,"y":-38},{"x":-63,"y":-21},{"x":-49,"y":43},{"x":-41,"y":-14},{"x":-8,"y":17},{"x":-52,"y":-65},{"x":5,"y":-50},{"x":-55,"y":-8},{"x":-17,"y":-32},{"x":-39,"y":24},{"x":-47,"y":-19},{"x":-43,"y":-54},{"x":-38,"y":22},{"x":19,"y":31},{"x":-18,"y":11},{"x":29,"y":-2},{"x":-38,"y":22},{"x":19,"y":80},{"x":-36,"y":36},{"x":-159,"y":-61},{"x":-55,"y":-57},{"x":-48,"y":8},{"x":-47,"y":-25},{"x":11,"y":-19},{"x":-60,"y":30},{"x":-51,"y":-47},{"x":-24,"y":18},{"x":29,"y":82},{"x":-6,"y":-9},{"x":-48,"y":13},{"x":-5,"y":24},{"x":-19,"y":-29},{"x":-2,"y":41},{"x":-51,"y":-82},{"x":47,"y":-59},{"x":-66,"y":-16},{"x":-29,"y":42},{"x":8,"y":-82},{"x":-33,"y":-6},{"x":-26,"y":77},{"x":-80,"y":58},{"x":64,"y":-50},{"x":17,"y":-64},{"x":-122,"y":59},{"x":4,"y":-22},{"x":-33,"y":3},{"x":-1,"y":-37},{"x":-18,"y":6},{"x":19,"y":-33},{"x":-74,"y":38},{"x":7,"y":-31},{"x":-32,"y":-20},{"x":-55,"y":14},{"x":-64,"y":-77},{"x":-43,"y":-2},{"x":16,"y":-20},{"x":-40,"y":-59},{"x":-37,"y":22},{"x":14,"y":-51},{"x":-48,"y":-1},{"x":-38,"y":39},{"x":-57,"y":-11},{"x":-19,"y":107},{"x":153,"y":97},{"x":40,"y":1},{"x":124,"y":105},{"x":5,"y":-21},{"x":79,"y":117},{"x":471,"y":296},{"x":15,"y":88},{"x":-29,"y":18},{"x":-20,"y":-38},{"x":-15,"y":34},{"x":-33,"y":-19},{"x":-37,"y":41},{"x":-25,"y":-37},{"x":-14,"y":36},{"x":-22,"y":-35},{"x":-52,"y":44},{"x":-7,"y":-58},{"x":-62,"y":53},{"x":-21,"y":-60},{"x":-25,"y":29},{"x":-25,"y":-38},{"x":-25,"y":31},{"x":-100,"y":-21},{"x":-38,"y":22},{"x":11,"y":59},{"x":-44,"y":11},{"x":-6,"y":32},{"x":-10,"y":-66},{"x":-52,"y":-29},{"x":-75,"y":34},{"x":-7,"y":57},{"x":-46,"y":-46},{"x":-59,"y":-1},{"x":-17,"y":25},{"x":-127,"y":-57},{"x":-27,"y":44},{"x":-19,"y":-35},{"x":-14,"y":64},{"x":40,"y":30},{"x":-23,"y":-1},{"x":6,"y":20},{"x":-45,"y":-16},{"x":28,"y":213},{"x":-85,"y":-18},{"x":-42,"y":33},{"x":-38,"y":-20},{"x":14,"y":113},{"x":-44,"y":21},{"x":-36,"y":-23},{"x":-24,"y":25},{"x":-10,"y":-25},{"x":-45,"y":27},{"x":-47,"y":-13},{"x":22,"y":36},{"x":-45,"y":-35},{"x":-47,"y":6},{"x":0,"y":-47},{"x":-19,"y":17},{"x":-38,"y":-24},{"x":-33,"y":11},{"x":-10,"y":-151},{"x":-25,"y":42},{"x":-10,"y":-27},{"x":-15,"y":12},{"x":-51,"y":85},{"x":-36,"y":-62},{"x":119,"y":-112},{"x":0,"y":-83},{"x":-85,"y":-71},{"x":-36,"y":-9},{"x":17,"y":22},{"x":-21,"y":-18},{"x":-21,"y":24},{"x":-124,"y":-45},{"x":-13,"y":15},{"x":-19,"y":-37},{"x":-30,"y":7},{"x":-37,"y":-66},{"x":-27,"y":20},{"x":-10,"y":-16},{"x":32,"y":-32},{"x":-1,"y":-56},{"x":-23,"y":-10}],"type":"coastline"},{"arc":[{"x":195551,"y":197240},{"x":27,"y":-43},{"x":49,"y":-11},{"x":102,"y":-135},{"x":63,"y":-4},{"x":-11,"y":-55},{"x":29,"y":-53},{"x":44,"y":8},{"x":260,"y":-119},{"x":4,"y":-153},{"x":64,"y":-48},{"x":30,"y":-141},{"x":-14,"y":-170},{"x":-46,"y":-56},{"x":4,"y":-161},{"x":88,"y":-140},{"x":111,"y":-88},{"x":1,"y":-75},{"x":-54,"y":-75},{"x":-11,"y":-95},{"x":-110,"y":-204},{"x":59,"y":-182},{"x":-77,"y":-227},{"x":-1,"y":-92},{"x":-78,"y":-168},{"x":-22,"y":-170},{"x":-92,"y":-55},{"x":-46,"y":0}],"type":"admin"},{"arc":[{"x":195924,"y":194528},{"x":-41,"y":-83},{"x":-192,"y":-38},{"x":-44,"y":-86},{"x":6,"y":-89},{"x":-32,"y":-75},{"x":-176,"y":-89},{"x":-105,"y":16},{"x":-61,"y":-32},{"x":-81,"y":64},{"x":-90,"y":27},{"x":-30,"y":39},{"x":-121,"y":16},{"x":-65,"y":56},{"x":-20,"y":-10}],"type":"admin"},{"arc":[{"x":194872,"y":194244},{"x":-36,"y":-302},{"x":-40,"y":-29},{"x":-17,"y":-76},{"x":155,"y":-203},{"x":71,"y":-24},{"x":-15,"y":-60},{"x":-51,"y":-26},{"x":48,"y":-157},{"x":63,"y":-60},{"x":84,"y":-14},{"x":168,"y":-200},{"x":106,"y":11},{"x":-1,"y":-133},{"x":23,"y":8},{"x":99,"y":-53},{"x":4,"y":-35},{"x":36,"y":-5},{"x":67,"y":-105},{"x":90,"y":-59},{"x":3,"y":-68},{"x":84,"y":-75},{"x":23,"y":-76},{"x":41,"y":-6},{"x":-27,"y":-242},{"x":33,"y":-100},{"x":54,"y":-42},{"x":72,"y":-145},{"x":71,"y":-45},{"x":198,"y":-34},{"x":13,"y":-42}],"type":"area"},{"arc":[{"x":196291,"y":191847},{"x":5,"y":-376},{"x":-59,"y":-214},{"x":7,"y":-33},{"x":115,"y":-91}],"type":"area"},{"arc":[{"x":197978,"y":191017},{"x":-71,"y":119},{"x":-88,"y":25},{"x":-28,"y":36},{"x":-5,"y":97},{"x":60,"y":240},{"x":-9,"y":95},{"x":79,"y":21},{"x":119,"y":103},{"x":25,"y":61},{"x":61,"y":16},{"x":46,"y":98},{"x":-50,"y":305},{"x":32,"y":72},{"x":-14,"y":179},{"x":192,"y":159},{"x":-64,"y":91},{"x":6,"y":36},{"x":-64,"y":29},{"x":13,"y":129},{"x":-22,"y":80},{"x":33,"y":33},{"x":52,"y":-12},{"x":62,"y":45},{"x":85,"y":8},{"x":29,"y":-19},{"x":59,"y":97},{"x":-2,"y":57},{"x":157,"y":46},{"x":106,"y":5},{"x":10,"y":62},{"x":-4,"y":244},{"x":-61,"y":139},{"x":-74,"y":56},{"x":-31,"y":68},{"x":19,"y":65},{"x":46,"y":22},{"x":77,"y":118},{"x":-2,"y":57},{"x":-101,"y":155},{"x":78,"y":144},{"x":-135,"y":59},{"x":-115,"y":157},{"x":55,"y":153},{"x":-58,"y":78},{"x":-57,"y":24},{"x":11,"y":51},{"x":-46,"y":97},{"x":-79,"y":66},{"x":86,"y":27},{"x":85,"y":136},{"x":-25,"y":102},{"x":54,"y":28},{"x":16,"y":55},{"x":55,"y":20},{"x":-4,"y":47},{"x":-44,"y":42},{"x":18,"y":50},{"x":91,"y":-33},{"x":34,"y":20},{"x":24,"y":243},{"x":63,"y":143},{"x":129,"y":106},{"x":56,"y":30},{"x":21,"y":-11},{"x":26,"y":59},{"x":76,"y":-10},{"x":46,"y":24},{"x":90,"y":-70},{"x":2,"y":-107},{"x":51,"y":0},{"x":72,"y":121},{"x":-21,"y":32},{"x":17,"y":44},{"x":141,"y":34},{"x":-29,"y":109},{"x":26,"y":127},{"x":57,"y":46},{"x":82,"y":19},{"x":35,"y":167},{"x":-25,"y":62},{"x":49,"y":57},{"x":0,"y":63},{"x":60,"y":9},{"x":13,"y":34}],"type":"admin"},{"arc":[{"x":191532,"y":196313},{"x":-55,"y":14},{"x":-37,"y":-28},{"x":-135,"y":-223},{"x":-28,"y":-27},{"x":-20,"y":12},{"x":0,"y":-35},{"x":-61,"y":-60},{"x":-29,"y":-228},{"x":12,"y":-49},{"x":8,"y":17},{"x":20,"y":-17},{"x":-22,"y":-33},{"x":34,"y":-22},{"x":-7,"y":-54},{"x":-56,"y":-87},{"x":-100,"y":-63},{"x":-18,"y":66},{"x":24,"y":-10},{"x":-53,"y":83},{"x":-38,"y":5},{"x":-34,"y":44},{"x":-59,"y":196},{"x":-32,"y":10},{"x":-80,"y":-38},{"x":6,"y":49},{"x":-63,"y":-28},{"x":-21,"y":19},{"x":10,"y":183},{"x":47,"y":92},{"x":-32,"y":7},{"x":-10,"y":47},{"x":-52,"y":-3},{"x":-9,"y":28},{"x":-38,"y":9},{"x":-18,"y":108},{"x":-23,"y":-14},{"x":-15,"y":31},{"x":13,"y":-77},{"x":-59,"y":-120},{"x":-46,"y":-31},{"x":-10,"y":-67},{"x":-89,"y":-26},{"x":7,"y":-71},{"x":-76,"y":-24},{"x":30,"y":-25},{"x":84,"y":-6},{"x":-8,"y":-25},{"x":65,"y":-79},{"x":-15,"y":-57},{"x":33,"y":-24},{"x":0,"y":25},{"x":40,"y":-13},{"x":-33,"y":-5},{"x":38,"y":-19},{"x":-1,"y":26},{"x":20,"y":-12},{"x":4,"y":-274},{"x":63,"y":-43},{"x":68,"y":-132},{"x":-58,"y":-67},{"x":-48,"y":53},{"x":-45,"y":-61},{"x":-103,"y":67},{"x":-16,"y":-65},{"x":-38,"y":-10},{"x":-50,"y":36},{"x":35,"y":-1},{"x":-43,"y":37},{"x":7,"y":90},{"x":-42,"y":-40},{"x":-68,"y":39},{"x":-1,"y":-30},{"x":-29,"y":22},{"x":-2,"y":110},{"x":-25,"y":12},{"x":43,"y":96},{"x":-41,"y":43},{"x":0,"y":78},{"x":-29,"y":10},{"x":16,"y":131},{"x":-39,"y":32},{"x":-38,"y":-17},{"x":-15,"y":47},{"x":-75,"y":-127},{"x":27,"y":1},{"x":-16,"y":-36},{"x":25,"y":-11},{"x":-51,"y":-97},{"x":41,"y":-120},{"x":-34,"y":-72},{"x":-1,"y":-172},{"x":-42,"y":-3},{"x":0,"y":33},{"x":-62,"y":1},{"x":26,"y":11},{"x":-36,"y":-6},{"x":-89,"y":157},{"x":-30,"y":122},{"x":-38,"y":51},{"x":-15,"y":-15},{"x":-46,"y":32},{"x":-11,"y":-18},{"x":-26,"y":36},{"x":-57,"y":-179},{"x":33,"y":-113},{"x":-60,"y":-69},{"x":31,"y":-16},{"x":-13,"y":-33},{"x":41,"y":-83},{"x":-36,"y":-57},{"x":73,"y":-60},{"x":139,"y":42},{"x":28,"y":-22},{"x":-35,"y":3},{"x":8,"y":-35},{"x":-33,"y":8},{"x":-3,"y":-24},{"x":-62,"y":-15},{"x":-12,"y":-62},{"x":-65,"y":-19},{"x":93,"y":-140},{"x":-50,"y":-4},{"x":12,"y":-20},{"x":-64,"y":-12},{"x":-28,"y":-34},{"x":-16,"y":22},{"x":-31,"y":-10},{"x":-39,"y":-46},{"x":27,"y":-29},{"x":-14,"y":-29},{"x":24,"y":2},{"x":-10,"y":-38},{"x":65,"y":-47},{"x":-41,"y":-120},{"x":87,"y":-57},{"x":28,"y":109},{"x":4,"y":-20},{"x":24,"y":11},{"x":3,"y":-72},{"x":23,"y":61},{"x":41,"y":1},{"x":1,"y":19},{"x":17,"y":-27},{"x":52,"y":-3},{"x":-5,"y":-19},{"x":31,"y":-1},{"x":24,"y":34},{"x":37,"y":-19},{"x":-17,"y":30},{"x":28,"y":33},{"x":41,"y":-26},{"x":-46,"y":-47},{"x":86,"y":4},{"x":71,"y":44},{"x":38,"y":-47},{"x":27,"y":4},{"x":-32,"y":-30},{"x":44,"y":4},{"x":17,"y":-25},{"x":-84,"y":-48},{"x":18,"y":-32},{"x":-54,"y":46},{"x":-101,"y":-44},{"x":-161,"y":28},{"x":-208,"y":-158},{"x":-48,"y":72},{"x":-67,"y":-8},{"x":50,"y":29},{"x":-58,"y":23},{"x":-24,"y":-20},{"x":20,"y":25},{"x":33,"y":7},{"x":12,"y":-20},{"x":17,"y":22},{"x":-67,"y":64},{"x":18,"y":35},{"x":-55,"y":0},{"x":-89,"y":69},{"x":-38,"y":11},{"x":-6,"y":-17},{"x":-45,"y":64},{"x":-30,"y":-24},{"x":-57,"y":26},{"x":-57,"y":-28},{"x":45,"y":-35},{"x":-12,"y":-52},{"x":28,"y":-25},{"x":-26,"y":-28},{"x":39,"y":2},{"x":-43,"y":-55},{"x":64,"y":4},{"x":23,"y":-42},{"x":15,"y":23},{"x":-5,"y":-49},{"x":30,"y":0},{"x":0,"y":-23},{"x":-42,"y":-38},{"x":-68,"y":38},{"x":-34,"y":-6}],"type":"coastline"},{"arc":[{"x":189056,"y":194172},{"x":166,"y":-117},{"x":194,"y":-85},{"x":48,"y":-53},{"x":163,"y":-13},{"x":132,"y":-72},{"x":119,"y":-2},{"x":-13,"y":-25},{"x":33,"y":24},{"x":53,"y":-32},{"x":76,"y":76},{"x":33,"y":-10},{"x":30,"y":-132},{"x":-48,"y":-75},{"x":-108,"y":-66},{"x":2,"y":-59},{"x":67,"y":-53},{"x":143,"y":-54},{"x":144,"y":-131},{"x":119,"y":21},{"x":87,"y":-83},{"x":92,"y":37},{"x":60,"y":-9}],"type":"area"},{"arc":[{"x":190648,"y":193259},{"x":29,"y":-83},{"x":77,"y":-8},{"x":164,"y":64},{"x":60,"y":84},{"x":117,"y":-8},{"x":82,"y":30},{"x":105,"y":119},{"x":57,"y":-29},{"x":-4,"y":-33},{"x":56,"y":12},{"x":28,"y":77},{"x":57,"y":16},{"x":-11,"y":122},{"x":-38,"y":36},{"x":31,"y":147},{"x":106,"y":116},{"x":-19,"y":61},{"x":77,"y":130},{"x":132,"y":102},{"x":44,"y":107}],"type":"admin"},{"arc":[{"x":191798,"y":194321},{"x":-191,"y":24},{"x":-174,"y":164},{"x":88,"y":395},{"x":-54,"y":94},{"x":21,"y":148},{"x":-38,"y":93},{"x":5,"y":66},{"x":49,"y":64},{"x":-71,"y":211},{"x":18,"y":76},{"x":-75,"y":92},{"x":-29,"y":190},{"x":21,"y":93},{"x":93,"y":124},{"x":24,"y":111},{"x":47,"y":47}],"type":"area"},{"arc":[{"x":196291,"y":191847},{"x":-358,"y":70},{"x":36,"y":-93},{"x":-17,"y":-144},{"x":-167,"y":-253},{"x":-74,"y":-33},{"x":-105,"y":7},{"x":-94,"y":-95},{"x":-51,"y":10},{"x":-29,"y":-20},{"x":-43,"y":23},{"x":-79,"y":-38},{"x":-31,"y":27},{"x":-147,"y":27},{"x":-34,"y":-151},{"x":-124,"y":-77},{"x":-10,"y":-81},{"x":-81,"y":-75},{"x":21,"y":-45},{"x":-30,"y":-59},{"x":-36,"y":-40},{"x":-88,"y":-7},{"x":-68,"y":-52},{"x":-10,"y":-160},{"x":-96,"y":-105},{"x":-66,"y":-128},{"x":23,"y":-139},{"x":-48,"y":-91},{"x":-150,"y":-73},{"x":-22,"y":-52},{"x":-95,"y":39},{"x":-51,"y":-77},{"x":-66,"y":8},{"x":-18,"y":-61},{"x":-278,"y":-19},{"x":-35,"y":72},{"x":-75,"y":33},{"x":7,"y":98},{"x":44,"y":41},{"x":-17,"y":45},{"x":-83,"y":-14},{"x":-36,"y":62},{"x":-29,"y":-86},{"x":-97,"y":0},{"x":-37,"y":61},{"x":-86,"y":27},{"x":-89,"y":113},{"x":-55,"y":18},{"x":-16,"y":56},{"x":-103,"y":-41},{"x":-104,"y":1},{"x":-12,"y":29},{"x":-75,"y":32},{"x":-102,"y":176},{"x":-63,"y":14},{"x":-120,"y":-40},{"x":-11,"y":-54},{"x":-61,"y":-6},{"x":-30,"y":-42}],"type":"area"},{"arc":[{"x":192520,"y":190485},{"x":77,"y":-204},{"x":70,"y":-41},{"x":61,"y":4},{"x":77,"y":-90},{"x":-84,"y":-227},{"x":103,"y":0},{"x":76,"y":59},{"x":58,"y":-34},{"x":17,"y":-42},{"x":67,"y":17},{"x":68,"y":-56},{"x":62,"y":10},{"x":80,"y":-55},{"x":-65,"y":-322},{"x":22,"y":-137},{"x":-55,"y":-96},{"x":-50,"y":-25}],"type":"area"},{"arc":[{"x":193104,"y":189246},{"x":56,"y":-36},{"x":18,"y":-97},{"x":-44,"y":-40},{"x":-17,"y":-78},{"x":107,"y":-83},{"x":51,"y":-120},{"x":-47,"y":-89},{"x":13,"y":-51},{"x":73,"y":15},{"x":38,"y":80},{"x":97,"y":-39},{"x":51,"y":42},{"x":77,"y":18},{"x":215,"y":-140},{"x":69,"y":52},{"x":1,"y":-46},{"x":-79,"y":-88},{"x":162,"y":-21},{"x":-22,"y":-65},{"x":-202,"y":62},{"x":-9,"y":-98},{"x":-49,"y":-6},{"x":5,"y":-21},{"x":28,"y":5},{"x":8,"y":-48},{"x":-9,"y":-71},{"x":-42,"y":-26},{"x":17,"y":-270},{"x":50,"y":-44},{"x":37,"y":-134},{"x":61,"y":-65},{"x":-9,"y":-36},{"x":-39,"y":-19},{"x":18,"y":-47},{"x":-85,"y":-13},{"x":10,"y":-49},{"x":-49,"y":-6},{"x":-11,"y":-77},{"x":-40,"y":17},{"x":-27,"y":-131},{"x":-50,"y":-3},{"x":-18,"y":-26},{"x":-92,"y":68},{"x":-49,"y":15},{"x":-28,"y":-17},{"x":57,"y":-106},{"x":91,"y":-90},{"x":21,"y":-64},{"x":-18,"y":-71},{"x":57,"y":-94},{"x":-7,"y":-81},{"x":56,"y":-171},{"x":74,"y":-151},{"x":44,"y":-17},{"x":49,"y":-72},{"x":-45,"y":-26},{"x":77,"y":-224},{"x":-5,"y":-82},{"x":-34,"y":-44},{"x":11,"y":-61},{"x":70,"y":-67},{"x":-2,"y":-73},{"x":194,"y":-78},{"x":30,"y":32},{"x":72,"y":-56},{"x":77,"y":35},{"x":141,"y":-76},{"x":107,"y":5},{"x":73,"y":82},{"x":97,"y":-26},{"x":46,"y":20},{"x":97,"y":-68},{"x":152,"y":-30},{"x":15,"y":-35},{"x":121,"y":46},{"x":53,"y":51},{"x":90,"y":-152},{"x":-5,"y":-43},{"x":73,"y":-1},{"x":23,"y":-36}],"type":"area"},{"arc":[{"x":195301,"y":185596},{"x":105,"y":10},{"x":24,"y":-63},{"x":68,"y":40},{"x":68,"y":-46},{"x":110,"y":106},{"x":100,"y":-60}],"type":"admin"},{"arc":[{"x":195776,"y":185583},{"x":209,"y":108},{"x":-18,"y":71},{"x":85,"y":90},{"x":-4,"y":51},{"x":52,"y":61},{"x":-17,"y":67},{"x":-42,"y":9},{"x":3,"y":66},{"x":-84,"y":135},{"x":-5,"y":92},{"x":11,"y":35},{"x":90,"y":37},{"x":83,"y":100}],"type":"admin"},{"arc":[{"x":196139,"y":186505},{"x":-52,"y":67},{"x":15,"y":94},{"x":-52,"y":20},{"x":-27,"y":172},{"x":-100,"y":51},{"x":-60,"y":156},{"x":39,"y":58},{"x":-27,"y":84},{"x":32,"y":145},{"x":-70,"y":146},{"x":95,"y":85},{"x":-26,"y":53},{"x":-35,"y":-35},{"x":-20,"y":37},{"x":-122,"y":14},{"x":11,"y":118},{"x":-64,"y":36},{"x":-37,"y":95},{"x":54,"y":297},{"x":-35,"y":212},{"x":15,"y":132},{"x":-53,"y":-12},{"x":-8,"y":125},{"x":-73,"y":167},{"x":-123,"y":161},{"x":25,"y":68},{"x":-58,"y":57},{"x":14,"y":201},{"x":-23,"y":59},{"x":37,"y":19},{"x":-19,"y":28},{"x":39,"y":63},{"x":-90,"y":51},{"x":1,"y":134},{"x":27,"y":48},{"x":73,"y":9},{"x":41,"y":46},{"x":115,"y":-2},{"x":70,"y":85},{"x":76,"y":-37},{"x":50,"y":-75},{"x":71,"y":-4},{"x":101,"y":59},{"x":36,"y":-25},{"x":53,"y":12},{"x":107,"y":-34},{"x":131,"y":57},{"x":19,"y":72},{"x":71,"y":-47},{"x":83,"y":118}],"type":"admin"},{"arc":[{"x":193104,"y":189246},{"x":-58,"y":-14},{"x":-42,"y":47},{"x":-62,"y":-33},{"x":-32,"y":56},{"x":-67,"y":16},{"x":-43,"y":55},{"x":-42,"y":-5},{"x":-102,"y":59},{"x":-58,"y":-262},{"x":-61,"y":-61},{"x":34,"y":-119},{"x":73,"y":-110},{"x":44,"y":-23},{"x":30,"y":-98},{"x":-52,"y":-20},{"x":-37,"y":-168},{"x":-128,"y":-57},{"x":-48,"y":1},{"x":-47,"y":-48},{"x":56,"y":-111},{"x":-49,"y":-29},{"x":-18,"y":-64},{"x":-51,"y":18},{"x":10,"y":25},{"x":-63,"y":-17},{"x":-60,"y":-167},{"x":-23,"y":-173},{"x":-74,"y":-81}],"type":"area"},{"arc":[{"x":192134,"y":187863},{"x":-17,"y":-104},{"x":48,"y":-52},{"x":-10,"y":-32},{"x":76,"y":-27},{"x":33,"y":-57},{"x":30,"y":2},{"x":-5,"y":-36},{"x":80,"y":48},{"x":32,"y":-193},{"x":-17,"y":-91},{"x":72,"y":6},{"x":18,"y":53},{"x":30,"y":-47},{"x":-47,"y":-128},{"x":-70,"y":1},{"x":0,"y":-40},{"x":65,"y":-45},{"x":-154,"y":-214},{"x":-62,"y":-140},{"x":-42,"y":-322},{"x":-51,"y":-65},{"x":47,"y":-66},{"x":-39,"y":-30},{"x":10,"y":-67},{"x":-85,"y":-40},{"x":-15,"y":-74},{"x":-48,"y":11},{"x":-79,"y":-68},{"x":-139,"y":-44},{"x":-31,"y":-43},{"x":-67,"y":2},{"x":-6,"y":-118},{"x":-34,"y":-15},{"x":12,"y":-49},{"x":-89,"y":-96},{"x":-55,"y":-22}],"type":"admin"},{"arc":[{"x":191525,"y":185661},{"x":-29,"y":-78},{"x":-48,"y":-28},{"x":-15,"y":-71},{"x":36,"y":-165}],"type":"area"},{"arc":[{"x":191469,"y":185319},{"x":182,"y":-35},{"x":64,"y":15},{"x":57,"y":47},{"x":36,"y":-51},{"x":74,"y":-10},{"x":65,"y":104},{"x":46,"y":17},{"x":35,"y":73},{"x":111,"y":94},{"x":18,"y":52},{"x":57,"y":24},{"x":69,"y":5},{"x":43,"y":-46},{"x":74,"y":-21},{"x":27,"y":-70},{"x":80,"y":25},{"x":39,"y":-23},{"x":43,"y":107},{"x":79,"y":-12},{"x":127,"y":73},{"x":25,"y":47},{"x":229,"y":-94},{"x":26,"y":73},{"x":124,"y":-6},{"x":120,"y":-79},{"x":54,"y":7},{"x":121,"y":-142},{"x":253,"y":-21},{"x":112,"y":-147},{"x":121,"y":9},{"x":77,"y":-140},{"x":77,"y":-24},{"x":90,"y":47},{"x":11,"y":-51},{"x":83,"y":-52},{"x":15,"y":-123},{"x":77,"y":-28},{"x":44,"y":-64},{"x":64,"y":1},{"x":23,"y":70},{"x":68,"y":43},{"x":77,"y":-35},{"x":-1,"y":47},{"x":101,"y":140},{"x":-91,"y":72},{"x":86,"y":61},{"x":26,"y":68},{"x":28,"y":-18},{"x":99,"y":91},{"x":91,"y":-34},{"x":42,"y":60},{"x":113,"y":14},{"x":127,"y":66},{"x":-6,"y":51}],"type":"admin"},{"arc":[{"x":203561,"y":195584},{"x":-14,"y":35},{"x":6,"y":-49},{"x":8,"y":14}],"type":"coastline"},{"arc":[{"x":204023,"y":195583},{"x":-4,"y":30},{"x":10,"y":-48},{"x":-6,"y":18}],"type":"coastline"},{"arc":[{"x":205623,"y":195004},{"x":-147,"y":128},{"x":-100,"y":32},{"x":-57,"y":66},{"x":-56,"y":3},{"x":-7,"y":-17},{"x":-33,"y":51},{"x":-58,"y":-12},{"x":-11,"y":25},{"x":-7,"y":-15},{"x":-4,"y":17},{"x":-52,"y":-2},{"x":-21,"y":42},{"x":-6,"y":-20},{"x":-32,"y":17},{"x":-38,"y":-21},{"x":-137,"y":94},{"x":-99,"y":-15},{"x":-52,"y":34},{"x":-11,"y":-25},{"x":-62,"y":44},{"x":41,"y":-49},{"x":6,"y":-120},{"x":-68,"y":-82},{"x":-25,"y":33},{"x":-22,"y":-19},{"x":41,"y":-55},{"x":-86,"y":-65},{"x":-97,"y":-22},{"x":-33,"y":7},{"x":7,"y":64},{"x":-122,"y":72},{"x":104,"y":-64},{"x":-4,"y":-50},{"x":-59,"y":16},{"x":-26,"y":-28},{"x":-17,"y":20},{"x":31,"y":-56},{"x":44,"y":-14},{"x":-1,"y":-21},{"x":-54,"y":4},{"x":-23,"y":63},{"x":-75,"y":37},{"x":5,"y":31},{"x":31,"y":-13},{"x":-39,"y":15},{"x":9,"y":78},{"x":-54,"y":49},{"x":12,"y":37},{"x":16,"y":-20},{"x":-29,"y":119},{"x":-136,"y":149},{"x":1,"y":63},{"x":-61,"y":84},{"x":-33,"y":-6},{"x":-3,"y":36},{"x":-30,"y":-18},{"x":-47,"y":27},{"x":-36,"y":55},{"x":-91,"y":32},{"x":-10,"y":35},{"x":-106,"y":-46},{"x":-38,"y":-66},{"x":-19,"y":-121},{"x":15,"y":33},{"x":33,"y":-91},{"x":-53,"y":-59}],"type":"coastline"},{"arc":[{"x":203532,"y":195504},{"x":65,"y":-117},{"x":-2,"y":-109},{"x":-123,"y":-52},{"x":-128,"y":15},{"x":34,"y":-47},{"x":-25,"y":-30},{"x":38,"y":-48},{"x":-25,"y":-52},{"x":29,"y":-103},{"x":-40,"y":-47},{"x":-67,"y":-17},{"x":-20,"y":-66},{"x":13,"y":-58},{"x":68,"y":12},{"x":-113,"y":-97},{"x":-4,"y":-30},{"x":-58,"y":-25},{"x":-123,"y":-187},{"x":-151,"y":-69},{"x":-79,"y":0},{"x":-55,"y":53},{"x":-89,"y":-1},{"x":-67,"y":76},{"x":-74,"y":19},{"x":-40,"y":63},{"x":9,"y":47},{"x":-51,"y":12},{"x":-68,"y":-32},{"x":-12,"y":23},{"x":-59,"y":-30},{"x":-34,"y":12}],"type":"admin"},{"arc":[{"x":202281,"y":194619},{"x":-36,"y":-105},{"x":-75,"y":-78},{"x":-87,"y":-3},{"x":-2,"y":-108},{"x":-53,"y":-2},{"x":-23,"y":-57},{"x":60,"y":-74},{"x":0,"y":-38},{"x":-75,"y":-73},{"x":121,"y":-156},{"x":-44,"y":-142},{"x":-58,"y":-58},{"x":5,"y":-71},{"x":-37,"y":-61},{"x":49,"y":-100},{"x":31,"y":15},{"x":77,"y":-57},{"x":-23,"y":-85},{"x":62,"y":-112},{"x":54,"y":-22},{"x":-16,"y":-66},{"x":33,"y":-47},{"x":-53,"y":-145},{"x":70,"y":-85},{"x":137,"y":-89},{"x":71,"y":-126},{"x":-33,"y":-78},{"x":54,"y":-173},{"x":-22,"y":-125}],"type":"admin"},{"arc":[{"x":202468,"y":192298},{"x":128,"y":-80},{"x":223,"y":3},{"x":18,"y":-50},{"x":71,"y":-50},{"x":-40,"y":-187},{"x":59,"y":-9},{"x":56,"y":-104},{"x":62,"y":0},{"x":67,"y":-36},{"x":65,"y":8},{"x":46,"y":-80},{"x":1,"y":-93},{"x":134,"y":-50}],"type":"admin"},{"arc":[{"x":203358,"y":191570},{"x":241,"y":-54},{"x":-16,"y":41},{"x":106,"y":49},{"x":-5,"y":63},{"x":192,"y":69},{"x":29,"y":-11},{"x":37,"y":36},{"x":89,"y":-14},{"x":114,"y":83},{"x":128,"y":-54},{"x":49,"y":112},{"x":48,"y":21},{"x":116,"y":-39},{"x":46,"y":114},{"x":68,"y":22},{"x":21,"y":-21},{"x":58,"y":47}],"type":"admin"},{"arc":[{"x":204679,"y":192034},{"x":-6,"y":96},{"x":176,"y":63},{"x":-91,"y":115},{"x":77,"y":181},{"x":-3,"y":62},{"x":-50,"y":62},{"x":29,"y":50},{"x":-41,"y":52},{"x":55,"y":57},{"x":2,"y":60}],"type":"admin"},{"arc":[{"x":204827,"y":192832},{"x":-115,"y":169},{"x":22,"y":57},{"x":-44,"y":117},{"x":-31,"y":-19},{"x":-27,"y":34},{"x":13,"y":108},{"x":-29,"y":27},{"x":-30,"y":201},{"x":37,"y":95},{"x":15,"y":270},{"x":64,"y":-47},{"x":74,"y":3},{"x":61,"y":-59},{"x":76,"y":1},{"x":31,"y":120},{"x":8,"y":420},{"x":57,"y":-64},{"x":61,"y":65},{"x":61,"y":-25},{"x":145,"y":80},{"x":38,"y":-27},{"x":36,"y":49},{"x":12,"y":96},{"x":-49,"y":39},{"x":38,"y":62},{"x":-38,"y":125},{"x":55,"y":-33},{"x":-17,"y":51},{"x":43,"y":10},{"x":0,"y":64},{"x":23,"y":-22},{"x":34,"y":55},{"x":98,"y":7},{"x":24,"y":93},{"x":16,"y":-16},{"x":34,"y":16},{"x":0,"y":50}],"type":"admin"},{"arc":[{"x":204380,"y":195488},{"x":-22,"y":7},{"x":41,"y":-13},{"x":-19,"y":6}],"type":"coastline"},{"arc":[{"x":204621,"y":195225},{"x":-17,"y":-8},{"x":34,"y":15},{"x":-17,"y":-7}],"type":"coastline"},{"arc":[{"x":194872,"y":194244},{"x":-81,"y":-4},{"x":-81,"y":36},{"x":-74,"y":-35},{"x":-11,"y":118},{"x":-49,"y":103},{"x":-74,"y":47},{"x":-73,"y":-50}],"type":"admin"},{"arc":[{"x":194429,"y":194459},{"x":-41,"y":-95},{"x":15,"y":-82},{"x":-36,"y":-48},{"x":35,"y":-92},{"x":-25,"y":-42},{"x":38,"y":-26},{"x":30,"y":-127},{"x":-70,"y":-69},{"x":-21,"y":-155},{"x":-52,"y":-36},{"x":-40,"y":46},{"x":-89,"y":-103},{"x":-32,"y":27},{"x":-23,"y":-22},{"x":-116,"y":7},{"x":-49,"y":-70},{"x":-108,"y":11},{"x":-130,"y":-25},{"x":-41,"y":65},{"x":-151,"y":-7},{"x":-142,"y":67},{"x":-46,"y":-2},{"x":-46,"y":-61},{"x":-56,"y":67},{"x":3,"y":187},{"x":-30,"y":105},{"x":-244,"y":-130},{"x":-47,"y":67},{"x":-69,"y":35},{"x":-41,"y":-11},{"x":-124,"y":82},{"x":-80,"y":-19}],"type":"area"},{"arc":[{"x":192601,"y":194003},{"x":-13,"y":-76},{"x":-79,"y":-66},{"x":6,"y":-45},{"x":-92,"y":-71},{"x":-18,"y":-107},{"x":-68,"y":-3},{"x":-35,"y":-35},{"x":115,"y":-245},{"x":-65,"y":-74},{"x":48,"y":-69},{"x":-22,"y":-64},{"x":33,"y":-40},{"x":2,"y":-77},{"x":-73,"y":-45},{"x":-33,"y":-57},{"x":86,"y":-78},{"x":1,"y":-52},{"x":96,"y":-37},{"x":31,"y":-57},{"x":-8,"y":-101},{"x":-94,"y":-59},{"x":-28,"y":-100},{"x":-87,"y":-60},{"x":34,"y":-96},{"x":-9,"y":-81},{"x":42,"y":-30},{"x":-37,"y":-47},{"x":-58,"y":-5},{"x":-89,"y":-138},{"x":72,"y":-63},{"x":-69,"y":-194},{"x":-82,"y":44},{"x":-14,"y":-21},{"x":-77,"y":7},{"x":-71,"y":-50},{"x":-67,"y":35},{"x":-14,"y":-115},{"x":-108,"y":-121},{"x":13,"y":-127},{"x":-111,"y":-28},{"x":35,"y":-175},{"x":83,"y":-176},{"x":-6,"y":-59}],"type":"admin"},{"arc":[{"x":191771,"y":190945},{"x":31,"y":52},{"x":305,"y":-195},{"x":78,"y":-22},{"x":26,"y":-43},{"x":84,"y":-14},{"x":56,"y":23},{"x":169,"y":-261}],"type":"area"},{"arc":[{"x":190511,"y":191576},{"x":-18,"y":17},{"x":-71,"y":-11},{"x":-142,"y":162},{"x":-83,"y":43},{"x":-94,"y":-48},{"x":-167,"y":12},{"x":-58,"y":-118},{"x":-85,"y":-30},{"x":-21,"y":-49},{"x":-160,"y":10},{"x":-239,"y":126},{"x":-61,"y":-21},{"x":-38,"y":-46},{"x":-84,"y":39},{"x":-47,"y":-20},{"x":-20,"y":-51},{"x":-56,"y":22},{"x":4,"y":39},{"x":-51,"y":41},{"x":1,"y":54},{"x":-71,"y":44}],"type":"area"},{"arc":[{"x":188950,"y":191791},{"x":-122,"y":54},{"x":-143,"y":15},{"x":-24,"y":39},{"x":-66,"y":-41},{"x":-79,"y":7},{"x":-104,"y":-53},{"x":-71,"y":9},{"x":-107,"y":58},{"x":-53,"y":-28},{"x":-56,"y":26},{"x":-80,"y":-32},{"x":-53,"y":-58},{"x":-108,"y":-173},{"x":-112,"y":-7},{"x":-118,"y":-154},{"x":-130,"y":33},{"x":-37,"y":-14},{"x":-75,"y":139},{"x":-119,"y":-119},{"x":-125,"y":-50},{"x":-192,"y":50},{"x":-46,"y":-16},{"x":-58,"y":58},{"x":-39,"y":-45},{"x":25,"y":-171},{"x":-29,"y":-87},{"x":-51,"y":21},{"x":-12,"y":51},{"x":-177,"y":-40},{"x":-83,"y":73},{"x":-36,"y":-17},{"x":14,"y":-72},{"x":-28,"y":-13},{"x":-16,"y":-83},{"x":-104,"y":13},{"x":-48,"y":-132}],"type":"admin"},{"arc":[{"x":186288,"y":191032},{"x":68,"y":-1},{"x":80,"y":57},{"x":84,"y":-7},{"x":50,"y":-186},{"x":65,"y":5},{"x":58,"y":-37},{"x":-19,"y":-41},{"x":20,"y":-30},{"x":-49,"y":-80},{"x":144,"y":-81},{"x":26,"y":-56},{"x":-17,"y":-40},{"x":55,"y":-97},{"x":-48,"y":-119},{"x":-28,"y":-1},{"x":6,"y":-70},{"x":64,"y":-23},{"x":44,"y":-82},{"x":98,"y":-76},{"x":-13,"y":-81},{"x":-37,"y":-23},{"x":-134,"y":5},{"x":-68,"y":-50},{"x":-125,"y":22},{"x":0,"y":-72},{"x":53,"y":-131},{"x":-65,"y":-47},{"x":57,"y":-81},{"x":-49,"y":-38},{"x":-62,"y":1},{"x":-11,"y":-62},{"x":-89,"y":3},{"x":-52,"y":-53},{"x":-71,"y":-22},{"x":-113,"y":17},{"x":-27,"y":-34},{"x":12,"y":-69},{"x":-27,"y":3},{"x":-7,"y":-68},{"x":-26,"y":3},{"x":5,"y":-66},{"x":-45,"y":-67},{"x":-7,"y":84},{"x":-36,"y":2},{"x":-18,"y":-35},{"x":9,"y":-185},{"x":106,"y":-89},{"x":53,"y":12},{"x":107,"y":-24},{"x":190,"y":-260},{"x":-93,"y":-129},{"x":61,"y":-50},{"x":9,"y":-66}],"type":"admin"},{"arc":[{"x":188695,"y":184451},{"x":30,"y":14},{"x":79,"y":-29},{"x":47,"y":29},{"x":74,"y":-50},{"x":75,"y":-14},{"x":41,"y":-44},{"x":51,"y":-7},{"x":67,"y":42},{"x":23,"y":-34},{"x":46,"y":-6},{"x":101,"y":151},{"x":82,"y":14},{"x":64,"y":51}],"type":"admin"},{"arc":[{"x":189475,"y":184568},{"x":-58,"y":77},{"x":-17,"y":167},{"x":122,"y":234},{"x":-29,"y":115},{"x":56,"y":3},{"x":49,"y":62},{"x":76,"y":21},{"x":47,"y":119},{"x":62,"y":-13},{"x":32,"y":40},{"x":-47,"y":113},{"x":29,"y":18},{"x":-15,"y":53},{"x":38,"y":85},{"x":41,"y":42},{"x":-49,"y":60},{"x":-56,"y":5},{"x":-63,"y":56},{"x":-32,"y":-10},{"x":-72,"y":33},{"x":-29,"y":-23},{"x":-145,"y":116},{"x":-97,"y":-19},{"x":-158,"y":54},{"x":-57,"y":128},{"x":83,"y":259},{"x":-30,"y":189},{"x":39,"y":29},{"x":-43,"y":75},{"x":-17,"y":-18},{"x":-57,"y":34},{"x":14,"y":43},{"x":-53,"y":143}],"type":"area"},{"arc":[{"x":189039,"y":186858},{"x":-42,"y":41},{"x":-27,"y":-9},{"x":-4,"y":40},{"x":-81,"y":26},{"x":-7,"y":76},{"x":-62,"y":66},{"x":-29,"y":280},{"x":-44,"y":9},{"x":-34,"y":43},{"x":70,"y":50},{"x":-51,"y":59},{"x":38,"y":76},{"x":-11,"y":57},{"x":70,"y":105},{"x":5,"y":29},{"x":-52,"y":47},{"x":47,"y":40},{"x":-1,"y":50},{"x":-109,"y":21},{"x":-37,"y":-51},{"x":-77,"y":-14},{"x":-13,"y":30},{"x":94,"y":113},{"x":13,"y":67},{"x":-26,"y":4},{"x":42,"y":29},{"x":109,"y":-34},{"x":40,"y":89},{"x":28,"y":-9},{"x":30,"y":57},{"x":26,"y":-11},{"x":29,"y":95},{"x":-52,"y":61},{"x":72,"y":84},{"x":29,"y":-2},{"x":33,"y":227},{"x":96,"y":4},{"x":77,"y":75},{"x":231,"y":-151}],"type":"admin"},{"arc":[{"x":189459,"y":188627},{"x":41,"y":58},{"x":71,"y":13},{"x":65,"y":212},{"x":83,"y":-67},{"x":12,"y":91},{"x":59,"y":-24},{"x":94,"y":30},{"x":12,"y":55},{"x":73,"y":54},{"x":-9,"y":63},{"x":54,"y":43},{"x":17,"y":117},{"x":89,"y":35},{"x":5,"y":75},{"x":38,"y":-12},{"x":10,"y":24},{"x":90,"y":13},{"x":-15,"y":73},{"x":128,"y":97},{"x":17,"y":60},{"x":-37,"y":44},{"x":9,"y":80},{"x":-36,"y":17},{"x":-44,"y":87},{"x":-7,"y":175},{"x":248,"y":-118},{"x":63,"y":19},{"x":27,"y":-20},{"x":57,"y":35},{"x":67,"y":-46},{"x":13,"y":25},{"x":144,"y":-17},{"x":-3,"y":240},{"x":67,"y":77},{"x":21,"y":73},{"x":-99,"y":107},{"x":0,"y":46},{"x":48,"y":18},{"x":72,"y":-38},{"x":89,"y":35},{"x":49,"y":90},{"x":-35,"y":67},{"x":52,"y":93},{"x":119,"y":45}],"type":"area"},{"arc":[{"x":191277,"y":190771},{"x":-33,"y":63},{"x":-54,"y":34},{"x":-91,"y":-42},{"x":-91,"y":29},{"x":-64,"y":142},{"x":-105,"y":34},{"x":-134,"y":-42},{"x":-117,"y":79},{"x":35,"y":266},{"x":-112,"y":242}],"type":"admin"},{"arc":[{"x":188450,"y":194134},{"x":-12,"y":12},{"x":7,"y":-29},{"x":5,"y":17}],"type":"coastline"},{"arc":[{"x":189056,"y":194172},{"x":-59,"y":38},{"x":23,"y":-48},{"x":-19,"y":-15},{"x":31,"y":-19},{"x":-79,"y":-2},{"x":-11,"y":-78},{"x":-40,"y":-9},{"x":24,"y":-25},{"x":-81,"y":-22},{"x":-62,"y":73},{"x":33,"y":47},{"x":-4,"y":104},{"x":-35,"y":-4},{"x":-25,"y":66},{"x":-69,"y":-6},{"x":-19,"y":45},{"x":-29,"y":-22},{"x":-13,"y":28},{"x":-27,"y":-57},{"x":31,"y":-26},{"x":-23,"y":-84},{"x":-42,"y":37},{"x":-49,"y":-98},{"x":17,"y":-22},{"x":-24,"y":-5},{"x":-28,"y":38},{"x":-33,"y":-37},{"x":9,"y":-45},{"x":37,"y":11},{"x":-5,"y":-44},{"x":38,"y":25},{"x":36,"y":-26},{"x":-21,"y":-39},{"x":23,"y":-39},{"x":58,"y":40},{"x":-1,"y":-18},{"x":64,"y":4},{"x":-40,"y":-25},{"x":26,"y":5},{"x":17,"y":-28},{"x":10,"y":25},{"x":30,"y":-25},{"x":53,"y":24},{"x":16,"y":-42},{"x":42,"y":-16},{"x":-3,"y":-72},{"x":35,"y":14},{"x":58,"y":-100},{"x":23,"y":12},{"x":42,"y":-33},{"x":41,"y":28},{"x":55,"y":-9},{"x":7,"y":40},{"x":48,"y":22},{"x":9,"y":58},{"x":52,"y":20},{"x":13,"y":-45},{"x":16,"y":10},{"x":55,"y":-72},{"x":8,"y":-55},{"x":-67,"y":-81},{"x":45,"y":-4},{"x":10,"y":25},{"x":11,"y":-16},{"x":9,"y":-202},{"x":-82,"y":-154},{"x":-68,"y":54},{"x":-5,"y":-73},{"x":-36,"y":35},{"x":18,"y":35},{"x":-52,"y":0},{"x":-29,"y":-39},{"x":-8,"y":16},{"x":-30,"y":-17},{"x":-115,"y":87},{"x":-41,"y":-15}],"type":"coastline"},{"arc":[{"x":188855,"y":193325},{"x":27,"y":-108},{"x":168,"y":-203},{"x":33,"y":-154},{"x":-22,"y":-122},{"x":113,"y":-83},{"x":-27,"y":-71},{"x":25,"y":-33},{"x":-5,"y":-208},{"x":-51,"y":-143},{"x":87,"y":-67},{"x":40,"y":18},{"x":18,"y":-95},{"x":-38,"y":-24},{"x":-28,"y":-175},{"x":-155,"y":-61},{"x":-40,"y":15},{"x":-50,"y":-20}],"type":"admin"},{"arc":[{"x":190511,"y":191576},{"x":89,"y":53},{"x":202,"y":-17},{"x":22,"y":73},{"x":-146,"y":110},{"x":-1,"y":49},{"x":-56,"y":47},{"x":47,"y":161},{"x":-35,"y":66},{"x":-152,"y":41},{"x":-47,"y":56},{"x":52,"y":37},{"x":41,"y":-4},{"x":30,"y":37},{"x":-119,"y":174},{"x":85,"y":89},{"x":119,"y":26},{"x":-7,"y":207},{"x":-129,"y":107},{"x":19,"y":36},{"x":-20,"y":41},{"x":143,"y":294}],"type":"admin"},{"arc":[{"x":193135,"y":196940},{"x":-44,"y":68},{"x":-32,"y":-41},{"x":43,"y":-84},{"x":33,"y":57}],"type":"coastline"},{"arc":[{"x":194429,"y":194459},{"x":-153,"y":23},{"x":-26,"y":30},{"x":-39,"y":-33},{"x":-37,"y":36},{"x":17,"y":63},{"x":-66,"y":123},{"x":31,"y":108},{"x":-64,"y":38},{"x":-64,"y":118},{"x":-60,"y":-23},{"x":-53,"y":19},{"x":33,"y":213},{"x":-38,"y":130},{"x":-48,"y":57},{"x":26,"y":59},{"x":-15,"y":70},{"x":-112,"y":73},{"x":-14,"y":110},{"x":-167,"y":236},{"x":69,"y":193},{"x":-50,"y":153}],"type":"admin"},{"arc":[{"x":193599,"y":196255},{"x":-103,"y":-168},{"x":-86,"y":11},{"x":-54,"y":40},{"x":32,"y":75},{"x":-58,"y":10},{"x":-1,"y":43},{"x":29,"y":-8},{"x":82,"y":96},{"x":-44,"y":202},{"x":19,"y":5},{"x":-7,"y":-22},{"x":40,"y":26},{"x":34,"y":33},{"x":-10,"y":32},{"x":62,"y":45},{"x":2,"y":49},{"x":-34,"y":-26},{"x":-19,"y":16},{"x":10,"y":163},{"x":138,"y":95},{"x":32,"y":128},{"x":-179,"y":-172},{"x":-52,"y":-1},{"x":-88,"y":-68},{"x":-86,"y":33},{"x":-15,"y":-57},{"x":-57,"y":-12},{"x":50,"y":-131},{"x":-46,"y":-31},{"x":12,"y":-83},{"x":22,"y":-4},{"x":-45,"y":-53},{"x":-39,"y":-2},{"x":-16,"y":-44},{"x":24,"y":-33},{"x":-1,"y":-121},{"x":-51,"y":-17},{"x":1,"y":-25},{"x":-38,"y":2},{"x":40,"y":-24},{"x":-11,"y":-69},{"x":54,"y":-25},{"x":-60,"y":-97},{"x":25,"y":1},{"x":-13,"y":-26},{"x":33,"y":-37},{"x":-46,"y":4},{"x":-19,"y":-43},{"x":-32,"y":14},{"x":11,"y":47},{"x":-65,"y":157},{"x":-17,"y":12},{"x":-31,"y":-56},{"x":-21,"y":9},{"x":-19,"y":103},{"x":-47,"y":17},{"x":-2,"y":94},{"x":-53,"y":12},{"x":-27,"y":-57},{"x":-30,"y":46},{"x":-58,"y":8},{"x":-22,"y":32},{"x":-41,"y":-12},{"x":-26,"y":-60},{"x":44,"y":-20},{"x":-20,"y":-35},{"x":50,"y":-11},{"x":-19,"y":-28},{"x":-41,"y":3},{"x":17,"y":-48},{"x":13,"y":13},{"x":39,"y":-40},{"x":4,"y":-75},{"x":-26,"y":-10},{"x":45,"y":-101},{"x":-38,"y":47},{"x":22,"y":-57},{"x":-47,"y":-9},{"x":19,"y":35},{"x":-24,"y":-18},{"x":-25,"y":95},{"x":-25,"y":-19},{"x":-33,"y":37},{"x":-42,"y":-5},{"x":-21,"y":44},{"x":-14,"y":-24},{"x":-35,"y":20},{"x":-68,"y":-129},{"x":-14,"y":24},{"x":50,"y":130},{"x":-44,"y":24},{"x":19,"y":63},{"x":-19,"y":19},{"x":-80,"y":-19},{"x":-35,"y":88},{"x":27,"y":21},{"x":-3,"y":-35},{"x":5,"y":38},{"x":79,"y":42},{"x":-54,"y":50},{"x":26,"y":57},{"x":55,"y":-3},{"x":-27,"y":41},{"x":64,"y":187},{"x":-8,"y":111},{"x":-38,"y":0},{"x":-2,"y":-40},{"x":-25,"y":-8},{"x":23,"y":-64},{"x":-48,"y":-34},{"x":11,"y":-56},{"x":-39,"y":-30},{"x":5,"y":-48},{"x":-56,"y":-8},{"x":2,"y":48},{"x":-28,"y":22},{"x":-20,"y":-16},{"x":-101,"y":19},{"x":-16,"y":50},{"x":-95,"y":-80},{"x":7,"y":-45},{"x":76,"y":-54},{"x":-32,"y":-108},{"x":20,"y":-34},{"x":-16,"y":15},{"x":-15,"y":-24},{"x":-24,"y":49},{"x":-34,"y":-6},{"x":-24,"y":-118},{"x":-109,"y":-121},{"x":10,"y":-59},{"x":24,"y":-2},{"x":7,"y":-45},{"x":14,"y":13},{"x":-6,"y":-89},{"x":-60,"y":71},{"x":-25,"y":-24},{"x":-30,"y":22},{"x":-28,"y":-39},{"x":57,"y":-40},{"x":63,"y":-158},{"x":-51,"y":-66},{"x":-41,"y":21},{"x":15,"y":37},{"x":-40,"y":30},{"x":-42,"y":-66},{"x":-38,"y":-3},{"x":-6,"y":152},{"x":-34,"y":22},{"x":-39,"y":-10},{"x":-9,"y":71},{"x":-43,"y":22},{"x":14,"y":39},{"x":9,"y":-25},{"x":24,"y":32},{"x":-17,"y":68},{"x":39,"y":138},{"x":-25,"y":74},{"x":-30,"y":-16}],"type":"coastline"},{"arc":[{"x":191798,"y":194321},{"x":189,"y":-140},{"x":-15,"y":-84},{"x":24,"y":-57},{"x":120,"y":46},{"x":75,"y":62},{"x":120,"y":-60},{"x":261,"y":8},{"x":29,"y":-93}],"type":"admin"},{"arc":[{"x":206068,"y":190420},{"x":-179,"y":55},{"x":-98,"y":-28},{"x":-115,"y":17},{"x":-12,"y":90},{"x":-358,"y":101}],"type":"admin"},{"arc":[{"x":205306,"y":190655},{"x":-111,"y":30},{"x":-62,"y":60},{"x":-283,"y":34}],"type":"admin"},{"arc":[{"x":204850,"y":190779},{"x":-60,"y":-168},{"x":-1,"y":-87},{"x":-71,"y":-46},{"x":-3,"y":-44},{"x":71,"y":-84},{"x":0,"y":-101},{"x":111,"y":-98},{"x":-21,"y":-49},{"x":56,"y":-77},{"x":20,"y":-130},{"x":66,"y":-4},{"x":43,"y":-44},{"x":-100,"y":-183},{"x":94,"y":-92},{"x":-120,"y":-21},{"x":-52,"y":-53},{"x":-61,"y":22},{"x":-127,"y":-40},{"x":-49,"y":-151},{"x":-115,"y":-57},{"x":-59,"y":-136},{"x":-58,"y":-9},{"x":-5,"y":-41},{"x":84,"y":-63},{"x":-96,"y":-56},{"x":-14,"y":-47},{"x":-29,"y":17},{"x":7,"y":-71},{"x":-69,"y":-93},{"x":-153,"y":19},{"x":-109,"y":-85},{"x":-97,"y":-24},{"x":-120,"y":36},{"x":-114,"y":-9},{"x":-177,"y":52},{"x":-184,"y":-96},{"x":-122,"y":-177},{"x":-59,"y":-24},{"x":-55,"y":41},{"x":-65,"y":-17},{"x":-34,"y":-65}],"type":"admin"},{"arc":[{"x":203003,"y":188424},{"x":84,"y":-118},{"x":5,"y":-189},{"x":45,"y":14},{"x":55,"y":-44},{"x":134,"y":-26},{"x":109,"y":-145},{"x":103,"y":3},{"x":70,"y":-29},{"x":19,"y":-232},{"x":36,"y":-36},{"x":-42,"y":-34},{"x":5,"y":-76},{"x":33,"y":-85},{"x":46,"y":0},{"x":8,"y":-36},{"x":63,"y":-49},{"x":89,"y":-184},{"x":101,"y":-38},{"x":36,"y":-59},{"x":40,"y":16},{"x":50,"y":-19},{"x":84,"y":59},{"x":70,"y":-42},{"x":21,"y":33},{"x":206,"y":-40},{"x":30,"y":51},{"x":94,"y":-39},{"x":33,"y":22},{"x":54,"y":-42}],"type":"area"},{"arc":[{"x":203003,"y":188424},{"x":-58,"y":42},{"x":-45,"y":-32}],"type":"admin"},{"arc":[{"x":202900,"y":188434},{"x":-96,"y":-38},{"x":-22,"y":-52},{"x":-55,"y":23},{"x":-62,"y":-48},{"x":-142,"y":12},{"x":-79,"y":-136},{"x":-63,"y":-49},{"x":19,"y":-50},{"x":-205,"y":-37},{"x":-116,"y":55},{"x":-65,"y":-9},{"x":-14,"y":-24},{"x":-109,"y":61},{"x":-87,"y":-16},{"x":-161,"y":94},{"x":-4,"y":33},{"x":-65,"y":-6},{"x":-46,"y":78},{"x":-47,"y":17},{"x":-130,"y":-183},{"x":-60,"y":-42},{"x":-37,"y":-2},{"x":-20,"y":28},{"x":-40,"y":-25},{"x":17,"y":57},{"x":-31,"y":57},{"x":-227,"y":171}],"type":"admin"},{"arc":[{"x":200351,"y":187811},{"x":-32,"y":-30},{"x":-18,"y":-98},{"x":-74,"y":-35},{"x":-57,"y":7},{"x":-32,"y":-34},{"x":36,"y":-144},{"x":-19,"y":-67},{"x":55,"y":-24},{"x":-66,"y":-242},{"x":-131,"y":-340},{"x":-116,"y":-8}],"type":"area"},{"arc":[{"x":199897,"y":186796},{"x":28,"y":-36},{"x":-40,"y":-130},{"x":14,"y":-65},{"x":104,"y":-116},{"x":-20,"y":-118},{"x":-42,"y":-23},{"x":-87,"y":-139},{"x":20,"y":-148},{"x":72,"y":-88},{"x":-8,"y":-182},{"x":176,"y":-120},{"x":34,"y":7},{"x":48,"y":-51},{"x":63,"y":-17},{"x":29,"y":-41}],"type":"admin"},{"arc":[{"x":200288,"y":185529},{"x":130,"y":15},{"x":123,"y":-47},{"x":75,"y":-78},{"x":145,"y":8},{"x":65,"y":-34},{"x":83,"y":-104},{"x":85,"y":30},{"x":77,"y":-56},{"x":70,"y":10},{"x":32,"y":39},{"x":89,"y":-12},{"x":21,"y":17},{"x":52,"y":-36},{"x":30,"y":-62}],"type":"admin"},{"arc":[{"x":201365,"y":185219},{"x":197,"y":-27},{"x":238,"y":57},{"x":181,"y":-19},{"x":97,"y":71},{"x":37,"y":-28},{"x":45,"y":26},{"x":43,"y":-40},{"x":77,"y":-14},{"x":69,"y":50},{"x":86,"y":4},{"x":120,"y":-47},{"x":100,"y":0},{"x":49,"y":-40},{"x":119,"y":-29},{"x":41,"y":71},{"x":93,"y":37},{"x":-6,"y":82},{"x":80,"y":94},{"x":89,"y":56},{"x":92,"y":2},{"x":12,"y":22},{"x":94,"y":14},{"x":29,"y":-101},{"x":81,"y":29},{"x":126,"y":-73},{"x":234,"y":159},{"x":82,"y":13},{"x":34,"y":-27},{"x":-6,"y":-126},{"x":78,"y":-74},{"x":72,"y":-25},{"x":73,"y":81},{"x":31,"y":87},{"x":163,"y":178},{"x":102,"y":-33},{"x":95,"y":95},{"x":54,"y":4},{"x":17,"y":-34},{"x":54,"y":85},{"x":50,"y":12},{"x":63,"y":370},{"x":172,"y":-8},{"x":72,"y":45},{"x":18,"y":109}],"type":"admin"},{"arc":[{"x":191771,"y":190945},{"x":-43,"y":-88},{"x":-43,"y":-14},{"x":-29,"y":-139},{"x":-37,"y":-52},{"x":-92,"y":165},{"x":-64,"y":-51},{"x":-61,"y":42},{"x":-125,"y":-37}],"type":"admin"},{"arc":[{"x":189459,"y":188627},{"x":-10,"y":-93},{"x":-64,"y":-82},{"x":110,"y":-233},{"x":-14,"y":-39},{"x":-89,"y":-67},{"x":34,"y":-68},{"x":-17,"y":-17},{"x":46,"y":-5},{"x":83,"y":-88},{"x":12,"y":15},{"x":40,"y":-78},{"x":-123,"y":7},{"x":-14,"y":63},{"x":-100,"y":14},{"x":-53,"y":-19},{"x":7,"y":-116},{"x":-26,"y":-28},{"x":36,"y":-69},{"x":-48,"y":-19},{"x":-6,"y":-217},{"x":-44,"y":-100},{"x":26,"y":-131},{"x":-43,"y":-145},{"x":-80,"y":-51},{"x":-21,"y":-88},{"x":-35,"y":-25},{"x":9,"y":-56},{"x":-36,"y":-34}],"type":"admin"},{"arc":[{"x":189475,"y":184568},{"x":123,"y":107},{"x":42,"y":-22},{"x":44,"y":30},{"x":71,"y":-26},{"x":32,"y":60},{"x":64,"y":15},{"x":101,"y":97},{"x":45,"y":-110},{"x":79,"y":45},{"x":61,"y":2},{"x":24,"y":-34},{"x":50,"y":16},{"x":-11,"y":-85},{"x":65,"y":-163},{"x":-41,"y":-82},{"x":92,"y":-184},{"x":59,"y":6},{"x":38,"y":41},{"x":44,"y":-11},{"x":146,"y":74},{"x":42,"y":-76},{"x":78,"y":0},{"x":24,"y":110},{"x":50,"y":35},{"x":120,"y":-122},{"x":-8,"y":-71},{"x":65,"y":-24},{"x":56,"y":40},{"x":14,"y":66},{"x":198,"y":119},{"x":108,"y":35},{"x":9,"y":46},{"x":-40,"y":54},{"x":92,"y":49},{"x":49,"y":79},{"x":-18,"y":40},{"x":41,"y":81}],"type":"admin"},{"arc":[{"x":191483,"y":184805},{"x":-20,"y":160},{"x":-37,"y":42},{"x":-34,"y":-28},{"x":-78,"y":88},{"x":50,"y":115},{"x":97,"y":80},{"x":8,"y":57}],"type":"admin"},{"arc":[{"x":191525,"y":185661},{"x":-130,"y":105},{"x":18,"y":48},{"x":-42,"y":142},{"x":-442,"y":768},{"x":5,"y":151},{"x":-64,"y":92},{"x":22,"y":122},{"x":190,"y":147},{"x":52,"y":174},{"x":159,"y":291},{"x":105,"y":121},{"x":23,"y":-21},{"x":45,"y":71},{"x":68,"y":37},{"x":103,"y":357},{"x":64,"y":-34},{"x":-5,"y":-95},{"x":38,"y":-45},{"x":164,"y":42},{"x":91,"y":5},{"x":45,"y":-23},{"x":39,"y":-56},{"x":24,"y":-174},{"x":37,"y":-23}],"type":"admin"},{"arc":[{"x":198106,"y":187100},{"x":3,"y":147},{"x":45,"y":-80},{"x":-6,"y":-132},{"x":42,"y":-28},{"x":80,"y":6},{"x":36,"y":-57},{"x":151,"y":13},{"x":119,"y":-33},{"x":131,"y":70},{"x":196,"y":8},{"x":134,"y":-136},{"x":5,"y":-52},{"x":421,"y":3},{"x":125,"y":53},{"x":93,"y":8},{"x":87,"y":-67},{"x":129,"y":-27}],"type":"admin"},{"arc":[{"x":197351,"y":187360},{"x":-74,"y":-113},{"x":-62,"y":2},{"x":-30,"y":65},{"x":-79,"y":66},{"x":-64,"y":-37},{"x":-27,"y":-60},{"x":-197,"y":114},{"x":-20,"y":37}],"type":"area"},{"arc":[{"x":196798,"y":187434},{"x":-141,"y":-24},{"x":45,"y":-82},{"x":-20,"y":-66},{"x":27,"y":-40},{"x":-78,"y":-46},{"x":-72,"y":17},{"x":-56,"y":-93},{"x":-46,"y":-171},{"x":64,"y":-134},{"x":-34,"y":-77},{"x":82,"y":-99},{"x":-7,"y":-131},{"x":-184,"y":-67},{"x":-7,"y":-25},{"x":-117,"y":40},{"x":-46,"y":-22},{"x":-69,"y":91}],"type":"area"},{"arc":[{"x":195776,"y":185583},{"x":8,"y":-33},{"x":64,"y":-23},{"x":-11,"y":-40},{"x":60,"y":0},{"x":28,"y":-46},{"x":64,"y":70},{"x":82,"y":3},{"x":80,"y":-55},{"x":39,"y":11},{"x":11,"y":-47},{"x":22,"y":15},{"x":47,"y":-21},{"x":38,"y":-43},{"x":35,"y":-1},{"x":-2,"y":-32},{"x":113,"y":-51},{"x":65,"y":50},{"x":63,"y":-32},{"x":78,"y":-130},{"x":83,"y":-63},{"x":-57,"y":-211},{"x":10,"y":-104},{"x":160,"y":-125}],"type":"area"},{"arc":[{"x":196856,"y":184675},{"x":114,"y":99},{"x":86,"y":-24},{"x":69,"y":60},{"x":100,"y":-13},{"x":57,"y":48},{"x":119,"y":37},{"x":49,"y":72},{"x":40,"y":-22},{"x":203,"y":25},{"x":138,"y":-43},{"x":103,"y":43},{"x":93,"y":-116},{"x":80,"y":-25},{"x":77,"y":10},{"x":36,"y":-48},{"x":-15,"y":-112},{"x":127,"y":-64},{"x":41,"y":5},{"x":35,"y":-56},{"x":43,"y":7},{"x":69,"y":-95},{"x":129,"y":299},{"x":106,"y":34},{"x":45,"y":-17},{"x":79,"y":111},{"x":147,"y":63},{"x":-2,"y":35},{"x":83,"y":94},{"x":96,"y":55},{"x":60,"y":86},{"x":64,"y":-11},{"x":84,"y":-58},{"x":61,"y":-172},{"x":72,"y":-38},{"x":36,"y":-103},{"x":-40,"y":-76},{"x":105,"y":-180},{"x":39,"y":17},{"x":23,"y":-50},{"x":37,"y":-4},{"x":42,"y":31},{"x":97,"y":-10},{"x":101,"y":42},{"x":77,"y":-54},{"x":33,"y":39},{"x":22,"y":-47},{"x":91,"y":-9},{"x":174,"y":176},{"x":-29,"y":170},{"x":40,"y":11},{"x":3,"y":56},{"x":45,"y":38},{"x":-52,"y":37},{"x":-12,"y":47},{"x":-29,"y":10},{"x":-48,"y":-26},{"x":-20,"y":122},{"x":-29,"y":-11},{"x":-69,"y":101},{"x":57,"y":57},{"x":9,"y":121},{"x":41,"y":80}],"type":"admin"},{"arc":[{"x":203792,"y":190899},{"x":-98,"y":-90},{"x":-96,"y":-38},{"x":-110,"y":194},{"x":-127,"y":52},{"x":-7,"y":33},{"x":-81,"y":-9},{"x":-44,"y":38},{"x":26,"y":127},{"x":-54,"y":11},{"x":-17,"y":127},{"x":174,"y":226}],"type":"admin"},{"arc":[{"x":202468,"y":192298},{"x":-37,"y":-4},{"x":-39,"y":-44},{"x":-81,"y":25},{"x":-143,"y":185},{"x":-104,"y":7},{"x":-65,"y":34},{"x":-105,"y":119},{"x":-180,"y":82},{"x":-98,"y":85},{"x":-30,"y":-11},{"x":-115,"y":65},{"x":-92,"y":-1},{"x":-54,"y":47},{"x":-36,"y":-58},{"x":-65,"y":-27},{"x":-90,"y":1},{"x":-57,"y":-46},{"x":-101,"y":-182},{"x":-63,"y":-4},{"x":-116,"y":48},{"x":-140,"y":-121},{"x":63,"y":-159},{"x":-3,"y":-73},{"x":30,"y":-31},{"x":3,"y":-103},{"x":-96,"y":-131},{"x":27,"y":-49},{"x":-9,"y":-79},{"x":-108,"y":-96},{"x":-50,"y":-2},{"x":-6,"y":49},{"x":-91,"y":8},{"x":-21,"y":-35}],"type":"admin"},{"arc":[{"x":200379,"y":191281},{"x":12,"y":-88},{"x":63,"y":-56},{"x":-21,"y":-25},{"x":46,"y":-70},{"x":6,"y":-89},{"x":85,"y":43},{"x":10,"y":-71},{"x":59,"y":0},{"x":35,"y":-28},{"x":25,"y":47},{"x":25,"y":-15},{"x":84,"y":38},{"x":10,"y":-42},{"x":71,"y":-34},{"x":110,"y":-138},{"x":66,"y":18},{"x":117,"y":-123},{"x":125,"y":63},{"x":39,"y":-18},{"x":52,"y":34},{"x":111,"y":-44},{"x":28,"y":-398},{"x":55,"y":-18},{"x":-6,"y":-43},{"x":70,"y":-62},{"x":84,"y":-202},{"x":126,"y":-37},{"x":40,"y":44},{"x":51,"y":-25},{"x":55,"y":10},{"x":94,"y":-103},{"x":68,"y":36},{"x":100,"y":-123}],"type":"area"},{"arc":[{"x":202274,"y":189762},{"x":44,"y":81},{"x":64,"y":39},{"x":123,"y":-101},{"x":131,"y":7},{"x":2,"y":80},{"x":-39,"y":13},{"x":-60,"y":143},{"x":94,"y":189},{"x":-50,"y":27},{"x":0,"y":71},{"x":79,"y":33},{"x":-14,"y":55},{"x":91,"y":160},{"x":37,"y":7},{"x":79,"y":-131},{"x":50,"y":1},{"x":52,"y":-50},{"x":65,"y":-18},{"x":20,"y":-50},{"x":149,"y":-4},{"x":104,"y":-48},{"x":132,"y":59},{"x":33,"y":-6},{"x":54,"y":48},{"x":23,"y":-46},{"x":-46,"y":-67},{"x":12,"y":-33},{"x":21,"y":13},{"x":57,"y":-43},{"x":55,"y":29},{"x":3,"y":38},{"x":52,"y":33},{"x":35,"y":73},{"x":-32,"y":106},{"x":107,"y":104},{"x":-20,"y":79},{"x":42,"y":125},{"x":-31,"y":121}],"type":"admin"},{"arc":[{"x":202900,"y":188434},{"x":-67,"y":128},{"x":-188,"y":186},{"x":-36,"y":310},{"x":27,"y":99},{"x":-72,"y":77},{"x":-1,"y":76},{"x":-59,"y":39},{"x":-46,"y":-8},{"x":-44,"y":47},{"x":22,"y":123},{"x":-29,"y":147},{"x":-133,"y":104}],"type":"admin"},{"arc":[{"x":196798,"y":187434},{"x":-6,"y":37},{"x":58,"y":38},{"x":4,"y":31},{"x":-94,"y":91},{"x":1,"y":45},{"x":41,"y":40},{"x":-42,"y":-5},{"x":-4,"y":46},{"x":-59,"y":-14},{"x":-74,"y":59},{"x":-42,"y":-14},{"x":-22,"y":43},{"x":-11,"y":112},{"x":23,"y":30},{"x":92,"y":27},{"x":-2,"y":59},{"x":-69,"y":34},{"x":-29,"y":-33},{"x":-42,"y":127},{"x":-80,"y":-67},{"x":59,"y":181},{"x":30,"y":20},{"x":-20,"y":-93},{"x":42,"y":-47},{"x":-7,"y":73},{"x":63,"y":39},{"x":-13,"y":50},{"x":42,"y":17},{"x":-86,"y":159},{"x":35,"y":16},{"x":38,"y":-26},{"x":8,"y":29},{"x":-85,"y":19},{"x":1,"y":31},{"x":45,"y":12},{"x":106,"y":215},{"x":83,"y":15}],"type":"area"},{"arc":[{"x":191483,"y":184805},{"x":62,"y":-20},{"x":84,"y":-88},{"x":-17,"y":-92},{"x":78,"y":-101},{"x":-17,"y":-80},{"x":55,"y":-64},{"x":89,"y":29},{"x":47,"y":-11}],"type":"admin"},{"arc":[{"x":191864,"y":184378},{"x":55,"y":-38},{"x":73,"y":35},{"x":8,"y":30},{"x":52,"y":11},{"x":43,"y":180},{"x":95,"y":-17},{"x":52,"y":27},{"x":40,"y":-118},{"x":138,"y":-86},{"x":-16,"y":-27},{"x":45,"y":-50},{"x":1,"y":-44},{"x":101,"y":-60},{"x":-13,"y":-79},{"x":63,"y":-75},{"x":74,"y":-193},{"x":302,"y":-5},{"x":-8,"y":-68},{"x":76,"y":-70},{"x":-28,"y":-108},{"x":58,"y":-3},{"x":77,"y":41},{"x":42,"y":-48},{"x":78,"y":15},{"x":25,"y":36},{"x":85,"y":11},{"x":19,"y":111},{"x":57,"y":-11},{"x":115,"y":-52},{"x":12,"y":-109},{"x":38,"y":-44},{"x":44,"y":-6},{"x":96,"y":50},{"x":44,"y":-105},{"x":79,"y":-71},{"x":64,"y":32},{"x":124,"y":2},{"x":34,"y":-40},{"x":-21,"y":-97},{"x":63,"y":-98}],"type":"admin"},{"arc":[{"x":194150,"y":183237},{"x":21,"y":-31},{"x":26,"y":7},{"x":87,"y":43},{"x":50,"y":58},{"x":21,"y":-20},{"x":35,"y":11},{"x":38,"y":-54},{"x":49,"y":8},{"x":24,"y":173},{"x":25,"y":19},{"x":-14,"y":39},{"x":87,"y":46},{"x":125,"y":12},{"x":170,"y":-98},{"x":117,"y":53},{"x":37,"y":56},{"x":59,"y":22},{"x":38,"y":90}],"type":"admin"},{"arc":[{"x":195145,"y":183671},{"x":92,"y":107},{"x":69,"y":164},{"x":54,"y":-56},{"x":117,"y":-59},{"x":61,"y":3},{"x":75,"y":64},{"x":-5,"y":44},{"x":86,"y":3},{"x":36,"y":-33},{"x":58,"y":37},{"x":48,"y":72},{"x":0,"y":64},{"x":132,"y":10},{"x":42,"y":26},{"x":132,"y":-17},{"x":118,"y":-126},{"x":125,"y":29}],"type":"admin"},{"arc":[{"x":196385,"y":184003},{"x":-6,"y":103},{"x":68,"y":145},{"x":213,"y":99},{"x":43,"y":107},{"x":-8,"y":67},{"x":102,"y":-20},{"x":71,"y":35},{"x":-12,"y":136}],"type":"admin"},{"arc":[{"x":194279,"y":196646},{"x":-191,"y":-157},{"x":-108,"y":51},{"x":19,"y":24},{"x":-45,"y":-17},{"x":-39,"y":39},{"x":18,"y":58},{"x":15,"y":-10},{"x":44,"y":46},{"x":15,"y":104},{"x":-60,"y":15},{"x":-15,"y":-35},{"x":-49,"y":5},{"x":-79,"y":-97},{"x":-33,"y":32},{"x":-41,"y":-13},{"x":-98,"y":-185},{"x":36,"y":-57},{"x":-45,"y":-27},{"x":44,"y":22},{"x":26,"y":-35},{"x":38,"y":-147},{"x":-15,"y":-13},{"x":-25,"y":45},{"x":-39,"y":-67},{"x":-53,"y":28}],"type":"coastline"},{"arc":[{"x":195924,"y":194528},{"x":-46,"y":108},{"x":-100,"y":64},{"x":7,"y":53},{"x":-52,"y":125},{"x":-50,"y":-2},{"x":-73,"y":44},{"x":-71,"y":125},{"x":-44,"y":6},{"x":-90,"y":82},{"x":-59,"y":13},{"x":-74,"y":70},{"x":-66,"y":-11},{"x":-84,"y":36},{"x":-46,"y":90},{"x":19,"y":49},{"x":-52,"y":98},{"x":-110,"y":32},{"x":-44,"y":67},{"x":-152,"y":118},{"x":-63,"y":-11},{"x":-124,"y":49},{"x":-60,"y":146},{"x":-105,"y":39},{"x":-99,"y":99},{"x":-13,"y":45},{"x":40,"y":91},{"x":-26,"y":102},{"x":15,"y":76},{"x":68,"y":79},{"x":-59,"y":39},{"x":21,"y":74},{"x":-53,"y":123}],"type":"area"},{"arc":[{"x":194374,"y":197130},{"x":-89,"y":-14},{"x":6,"y":-45},{"x":83,"y":59}],"type":"coastline"},{"arc":[{"x":195551,"y":197240},{"x":-25,"y":23},{"x":-37,"y":-39},{"x":-45,"y":1},{"x":-13,"y":22},{"x":-18,"y":-21},{"x":-115,"y":33},{"x":-41,"y":-14},{"x":91,"y":-205},{"x":-48,"y":-109},{"x":31,"y":-6},{"x":-1,"y":-67},{"x":-33,"y":-56},{"x":-43,"y":-18},{"x":-29,"y":-118},{"x":-95,"y":-14},{"x":-70,"y":33},{"x":8,"y":21},{"x":51,"y":-7},{"x":-55,"y":11},{"x":-15,"y":-20},{"x":-7,"y":39},{"x":22,"y":-9},{"x":-24,"y":17},{"x":-34,"y":-50},{"x":-24,"y":50},{"x":-37,"y":7},{"x":18,"y":8},{"x":-67,"y":14},{"x":8,"y":69},{"x":-97,"y":12},{"x":-21,"y":30},{"x":-3,"y":47},{"x":117,"y":69},{"x":49,"y":87},{"x":-91,"y":98},{"x":44,"y":-27},{"x":81,"y":-2},{"x":127,"y":75},{"x":104,"y":179},{"x":28,"y":-2},{"x":37,"y":61},{"x":64,"y":38},{"x":-29,"y":34},{"x":25,"y":31},{"x":-12,"y":67},{"x":32,"y":23},{"x":-45,"y":9},{"x":-18,"y":-26},{"x":-64,"y":36},{"x":-41,"y":93},{"x":-12,"y":-29},{"x":-22,"y":16},{"x":-27,"y":-29},{"x":-6,"y":22},{"x":-122,"y":-120},{"x":-73,"y":12},{"x":-54,"y":-112},{"x":-38,"y":13},{"x":-11,"y":-17},{"x":-26,"y":53},{"x":-3,"y":-39},{"x":-18,"y":12},{"x":1,"y":-22},{"x":-9,"y":19},{"x":-34,"y":-29},{"x":7,"y":29},{"x":-16,"y":-18},{"x":-24,"y":50},{"x":-62,"y":-19},{"x":-26,"y":33},{"x":-9,"y":-68},{"x":-37,"y":8},{"x":-10,"y":-26},{"x":-39,"y":-2},{"x":-38,"y":-80},{"x":26,"y":-61},{"x":34,"y":6},{"x":5,"y":-32},{"x":53,"y":-25},{"x":21,"y":-76},{"x":-66,"y":-35},{"x":-72,"y":44},{"x":-14,"y":-53},{"x":-51,"y":-6},{"x":22,"y":-74},{"x":-32,"y":-20},{"x":-16,"y":-131},{"x":21,"y":-33},{"x":87,"y":26},{"x":6,"y":26},{"x":45,"y":-17},{"x":-24,"y":-14},{"x":68,"y":-3},{"x":-19,"y":-28},{"x":39,"y":31},{"x":21,"y":-64},{"x":-100,"y":-35},{"x":-96,"y":-99},{"x":-78,"y":-33},{"x":1,"y":-24},{"x":-68,"y":-15},{"x":-17,"y":-33}],"type":"coastline"},{"arc":[{"x":202281,"y":194619},{"x":-88,"y":40},{"x":-153,"y":532}],"type":"admin"},{"arc":[{"x":202040,"y":195191},{"x":-104,"y":-158},{"x":-39,"y":-20},{"x":-94,"y":-15},{"x":-81,"y":79},{"x":-133,"y":-23}],"type":"area"},{"arc":[{"x":201589,"y":195054},{"x":-172,"y":-64},{"x":-64,"y":3},{"x":-22,"y":-29},{"x":-89,"y":-24},{"x":-13,"y":-44},{"x":-27,"y":11},{"x":-42,"y":-29},{"x":-33,"y":40},{"x":-92,"y":-5},{"x":-121,"y":-60},{"x":-271,"y":-37},{"x":-56,"y":-54},{"x":-51,"y":55},{"x":-15,"y":39},{"x":73,"y":247},{"x":-48,"y":28},{"x":-8,"y":35},{"x":81,"y":54},{"x":19,"y":116},{"x":-47,"y":40},{"x":-84,"y":-19},{"x":-109,"y":31},{"x":-66,"y":105},{"x":-64,"y":6},{"x":-75,"y":268},{"x":-87,"y":90},{"x":38,"y":3},{"x":5,"y":109},{"x":22,"y":-55},{"x":97,"y":-10},{"x":-125,"y":124},{"x":-62,"y":-11},{"x":-12,"y":42},{"x":35,"y":61},{"x":-13,"y":57},{"x":33,"y":38},{"x":-2,"y":55},{"x":74,"y":37},{"x":35,"y":83},{"x":158,"y":168},{"x":66,"y":155}],"type":"area"},{"arc":[{"x":200455,"y":196713},{"x":-36,"y":120},{"x":-48,"y":-1},{"x":-116,"y":62},{"x":-47,"y":-6},{"x":-43,"y":27},{"x":-67,"y":-45},{"x":-78,"y":33},{"x":-21,"y":-30},{"x":5,"y":35},{"x":-20,"y":-44},{"x":-16,"y":33},{"x":-5,"y":-29},{"x":-29,"y":0},{"x":-14,"y":40},{"x":-40,"y":-20},{"x":-25,"y":49},{"x":-25,"y":-21},{"x":-90,"y":6}],"type":"coastline"},{"arc":[{"x":199740,"y":196919},{"x":-3,"y":-11}],"type":"coastline"},{"arc":[{"x":201589,"y":195054},{"x":-22,"y":209},{"x":-57,"y":182},{"x":58,"y":48},{"x":7,"y":42},{"x":34,"y":-12},{"x":-85,"y":34},{"x":59,"y":91},{"x":39,"y":152},{"x":-168,"y":29},{"x":-61,"y":33},{"x":6,"y":37},{"x":80,"y":60},{"x":-17,"y":65},{"x":51,"y":25},{"x":64,"y":95},{"x":6,"y":122},{"x":-37,"y":57},{"x":20,"y":57},{"x":129,"y":66},{"x":49,"y":152}],"type":"area"},{"arc":[{"x":201744,"y":196598},{"x":14,"y":18},{"x":-45,"y":5},{"x":3,"y":32},{"x":-26,"y":-18},{"x":-16,"y":40},{"x":-50,"y":-8},{"x":-6,"y":20},{"x":-24,"y":-25},{"x":-59,"y":11},{"x":-18,"y":-17},{"x":-39,"y":27},{"x":-10,"y":-17},{"x":-116,"y":7},{"x":-20,"y":37},{"x":-30,"y":-24},{"x":-13,"y":64},{"x":-38,"y":-56},{"x":-72,"y":29},{"x":15,"y":-157},{"x":-68,"y":-21},{"x":-19,"y":-38},{"x":3,"y":28},{"x":-69,"y":-23},{"x":-20,"y":14},{"x":19,"y":-24},{"x":-21,"y":-9},{"x":-7,"y":41},{"x":-30,"y":10},{"x":-20,"y":-32},{"x":-26,"y":34},{"x":-75,"y":-38},{"x":-81,"y":86},{"x":-278,"y":74},{"x":-47,"y":45}],"type":"coastline"},{"arc":[{"x":202040,"y":195191},{"x":60,"y":72},{"x":42,"y":165},{"x":216,"y":79},{"x":33,"y":-38},{"x":192,"y":162}],"type":"admin"},{"arc":[{"x":202583,"y":195631},{"x":-22,"y":76},{"x":-7,"y":-27},{"x":-28,"y":42},{"x":27,"y":55},{"x":-24,"y":-11},{"x":-37,"y":31},{"x":-11,"y":76},{"x":-45,"y":5},{"x":-30,"y":40},{"x":-50,"y":-1},{"x":-16,"y":29},{"x":-37,"y":-6},{"x":-100,"y":120},{"x":-72,"y":22},{"x":-17,"y":28},{"x":-38,"y":-21},{"x":-10,"y":64},{"x":-53,"y":18},{"x":12,"y":-25},{"x":-29,"y":24},{"x":19,"y":29},{"x":17,"y":-16},{"x":-53,"y":93},{"x":23,"y":186},{"x":-48,"y":24},{"x":-38,"y":-8},{"x":-12,"y":37},{"x":-34,"y":-9},{"x":-25,"y":58},{"x":-36,"y":-9},{"x":-65,"y":43}],"type":"coastline"},{"arc":[{"x":206610,"y":192802},{"x":-70,"y":26},{"x":-48,"y":62},{"x":-43,"y":-3},{"x":1,"y":90},{"x":-64,"y":94},{"x":24,"y":57},{"x":-61,"y":-55},{"x":-13,"y":-65},{"x":-24,"y":-13},{"x":-30,"y":24},{"x":-52,"y":-35},{"x":-18,"y":-88},{"x":26,"y":0},{"x":-29,"y":-45},{"x":-31,"y":4},{"x":-46,"y":-50},{"x":-14,"y":61},{"x":-29,"y":0},{"x":13,"y":-16},{"x":-48,"y":-48},{"x":-63,"y":19},{"x":-11,"y":-84},{"x":-44,"y":-46},{"x":-54,"y":9},{"x":-33,"y":36},{"x":-32,"y":91},{"x":-56,"y":-57},{"x":-93,"y":-4},{"x":-68,"y":124},{"x":-44,"y":-33},{"x":-37,"y":6},{"x":-44,"y":-56},{"x":-81,"y":38},{"x":-55,"y":129},{"x":-35,"y":21},{"x":-18,"y":119},{"x":-75,"y":-20},{"x":-96,"y":31},{"x":-141,"y":-17},{"x":-33,"y":-56},{"x":22,"y":-133},{"x":-42,"y":-97},{"x":-35,"y":-16},{"x":-33,"y":38},{"x":-26,"y":-12}],"type":"area"},{"arc":[{"x":204679,"y":192034},{"x":55,"y":-39},{"x":-6,"y":-72},{"x":115,"y":-129},{"x":106,"y":-257},{"x":39,"y":-16},{"x":46,"y":28},{"x":67,"y":-21},{"x":123,"y":-77},{"x":-8,"y":-76},{"x":203,"y":-42},{"x":-44,"y":-21},{"x":-19,"y":-153},{"x":17,"y":-30},{"x":54,"y":1},{"x":-18,"y":-130},{"x":20,"y":-37},{"x":-66,"y":-116},{"x":-57,"y":-192}],"type":"area"},{"arc":[{"x":203532,"y":195504},{"x":-114,"y":-77},{"x":-67,"y":14},{"x":8,"y":-35},{"x":-13,"y":14},{"x":-49,"y":-66},{"x":-176,"y":-18},{"x":-81,"y":49},{"x":-78,"y":-23},{"x":-51,"y":14},{"x":-3,"y":33},{"x":2,"y":-25},{"x":-6,"y":18},{"x":-82,"y":6},{"x":-182,"y":166},{"x":-54,"y":14},{"x":-3,"y":43}],"type":"coastline"},{"arc":[{"x":203792,"y":190899},{"x":118,"y":49},{"x":71,"y":-21},{"x":78,"y":-74},{"x":29,"y":9},{"x":10,"y":-43},{"x":237,"y":-62},{"x":37,"y":-4},{"x":59,"y":45},{"x":59,"y":-9},{"x":28,"y":42},{"x":68,"y":12},{"x":67,"y":1},{"x":72,"y":-62},{"x":125,"y":-3}],"type":"area"},{"arc":[{"x":207577,"y":193850},{"x":-84,"y":69},{"x":-24,"y":-8},{"x":24,"y":14},{"x":-30,"y":-8},{"x":-75,"y":46},{"x":-37,"y":81},{"x":-17,"y":11},{"x":17,"y":-18},{"x":-15,"y":14},{"x":-50,"y":-1},{"x":-66,"y":34},{"x":-19,"y":97},{"x":-14,"y":-13},{"x":-159,"y":100},{"x":-21,"y":2},{"x":41,"y":-28},{"x":-36,"y":17},{"x":-17,"y":-20},{"x":-10,"y":34},{"x":-11,"y":-35},{"x":-39,"y":4},{"x":-64,"y":68},{"x":5,"y":-15},{"x":-76,"y":32},{"x":-66,"y":102},{"x":-53,"y":20},{"x":-130,"y":141},{"x":-173,"y":2},{"x":-48,"y":81},{"x":4,"y":37},{"x":-34,"y":34},{"x":28,"y":-35},{"x":-47,"y":-18},{"x":-26,"y":23},{"x":3,"y":46},{"x":20,"y":-15},{"x":-29,"y":22},{"x":-47,"y":-1},{"x":11,"y":13},{"x":-73,"y":-23},{"x":-189,"y":39},{"x":-95,"y":121},{"x":-36,"y":-8},{"x":-164,"y":102},{"x":-33,"y":-6}],"type":"coastline"},{"arc":[{"x":180161,"y":191652},{"x":-77,"y":124},{"x":-63,"y":15},{"x":-66,"y":57},{"x":-101,"y":6},{"x":-10,"y":54},{"x":-7,"y":-22},{"x":-34,"y":25},{"x":26,"y":22},{"x":22,"y":-19},{"x":-27,"y":38},{"x":-77,"y":-26},{"x":-62,"y":42},{"x":22,"y":-51},{"x":41,"y":-9},{"x":-26,"y":-48},{"x":27,"y":-21},{"x":-11,"y":-95},{"x":34,"y":-38},{"x":139,"y":-32},{"x":35,"y":-41},{"x":-19,"y":-34},{"x":44,"y":16},{"x":-5,"y":-98},{"x":57,"y":26},{"x":11,"y":-31},{"x":10,"y":29},{"x":34,"y":3},{"x":-40,"y":4},{"x":39,"y":34},{"x":50,"y":-37},{"x":30,"y":6},{"x":-42,"y":73},{"x":46,"y":28}],"type":"coastline"},{"arc":[{"x":180254,"y":191290},{"x":-38,"y":14},{"x":17,"y":-26},{"x":21,"y":12}],"type":"coastline"},{"arc":[{"x":180523,"y":191095},{"x":-35,"y":56},{"x":-46,"y":2},{"x":0,"y":-24},{"x":-8,"y":23},{"x":-28,"y":-15},{"x":-88,"y":60},{"x":-18,"y":-19},{"x":-6,"y":43},{"x":29,"y":-14},{"x":-46,"y":26},{"x":-14,"y":-55},{"x":-51,"y":-39},{"x":21,"y":-31},{"x":-54,"y":-91},{"x":66,"y":-23},{"x":115,"y":66},{"x":69,"y":-35},{"x":94,"y":70}],"type":"coastline"},{"arc":[{"x":180540,"y":192652},{"x":-19,"y":46},{"x":-48,"y":-30},{"x":-83,"y":220},{"x":-70,"y":-24},{"x":-35,"y":-51},{"x":-62,"y":0},{"x":-21,"y":-34},{"x":-60,"y":41},{"x":-31,"y":-18},{"x":-30,"y":50},{"x":-69,"y":-92},{"x":-35,"y":-8},{"x":16,"y":-38},{"x":83,"y":-48},{"x":64,"y":-105},{"x":74,"y":-58},{"x":77,"y":-4},{"x":16,"y":-42},{"x":-13,"y":40},{"x":120,"y":-35},{"x":126,"y":190}],"type":"coastline"},{"arc":[{"x":181109,"y":192244},{"x":-27,"y":-4},{"x":6,"y":-20},{"x":21,"y":24}],"type":"coastline"},{"arc":[{"x":181391,"y":191141},{"x":-12,"y":66},{"x":-47,"y":-35},{"x":9,"y":-65},{"x":50,"y":34}],"type":"coastline"},{"arc":[{"x":181422,"y":190691},{"x":-14,"y":34},{"x":-12,"y":-47},{"x":26,"y":13}],"type":"coastline"},{"arc":[{"x":181508,"y":189635},{"x":-39,"y":-59},{"x":67,"y":96},{"x":11,"y":98},{"x":-39,"y":-135}],"type":"coastline"},{"arc":[{"x":181577,"y":189566},{"x":-18,"y":25},{"x":40,"y":-57},{"x":-22,"y":32}],"type":"coastline"},{"arc":[{"x":181675,"y":190329},{"x":-17,"y":32},{"x":15,"y":-67},{"x":2,"y":35}],"type":"coastline"},{"arc":[{"x":182625,"y":191956},{"x":0,"y":-3},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":182644,"y":191933},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":182645,"y":191932},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":183048,"y":192087},{"x":-11,"y":18},{"x":5,"y":-40},{"x":6,"y":22}],"type":"coastline"},{"arc":[{"x":183608,"y":192112},{"x":-9,"y":22},{"x":-72,"y":-62},{"x":81,"y":40}],"type":"coastline"},{"arc":[{"x":184547,"y":192255},{"x":-8,"y":-17},{"x":-24,"y":24},{"x":-12,"y":-26},{"x":-2,"y":22},{"x":-86,"y":-23},{"x":-24,"y":18},{"x":-16,"y":-26},{"x":-94,"y":-16},{"x":-21,"y":-25},{"x":24,"y":-13},{"x":-67,"y":-31},{"x":-2,"y":-94},{"x":-30,"y":25},{"x":-41,"y":-26},{"x":31,"y":2},{"x":28,"y":-77},{"x":-102,"y":36},{"x":-66,"y":-102},{"x":29,"y":4},{"x":-14,"y":-32},{"x":-20,"y":22},{"x":-22,"y":-49},{"x":-58,"y":-21},{"x":-13,"y":-74},{"x":40,"y":-26},{"x":0,"y":-35},{"x":-42,"y":-33},{"x":5,"y":-56},{"x":-48,"y":-73},{"x":-218,"y":46},{"x":-9,"y":94},{"x":30,"y":30},{"x":-33,"y":14},{"x":40,"y":-12},{"x":-10,"y":33},{"x":-65,"y":-21},{"x":24,"y":36},{"x":-62,"y":28},{"x":-6,"y":54},{"x":-166,"y":-22},{"x":-67,"y":86},{"x":-11,"y":-27},{"x":-19,"y":17},{"x":-5,"y":70},{"x":36,"y":-16},{"x":10,"y":37},{"x":-40,"y":84},{"x":20,"y":13},{"x":40,"y":-34},{"x":85,"y":66},{"x":-59,"y":24},{"x":-10,"y":47},{"x":86,"y":40},{"x":37,"y":77},{"x":-33,"y":1},{"x":7,"y":24},{"x":-75,"y":-2},{"x":-59,"y":-46},{"x":-55,"y":1},{"x":13,"y":67},{"x":-18,"y":-12},{"x":2,"y":28},{"x":-22,"y":-8},{"x":-65,"y":42},{"x":-14,"y":61},{"x":-92,"y":-94},{"x":-67,"y":8},{"x":-28,"y":-56},{"x":-16,"y":31},{"x":-67,"y":22},{"x":26,"y":40},{"x":-84,"y":-38},{"x":19,"y":-24},{"x":-44,"y":-36},{"x":-62,"y":42},{"x":-36,"y":-23},{"x":28,"y":-11},{"x":-28,"y":-52},{"x":31,"y":-20},{"x":-10,"y":-34},{"x":55,"y":14},{"x":22,"y":-21},{"x":-37,"y":-85},{"x":92,"y":15},{"x":38,"y":-15},{"x":-1,"y":-26},{"x":36,"y":39},{"x":88,"y":-27},{"x":-17,"y":-94},{"x":-42,"y":-12},{"x":37,"y":-50},{"x":-32,"y":-46},{"x":35,"y":-1},{"x":106,"y":-112},{"x":12,"y":-145},{"x":-111,"y":-46},{"x":71,"y":108},{"x":-147,"y":143},{"x":-47,"y":0},{"x":-6,"y":-21},{"x":-41,"y":24},{"x":23,"y":72},{"x":-95,"y":0},{"x":-54,"y":-56},{"x":-45,"y":16},{"x":-12,"y":33},{"x":-53,"y":5}],"type":"coastline"},{"arc":[{"x":182646,"y":191920},{"x":-10,"y":-89},{"x":37,"y":-152},{"x":95,"y":-27},{"x":9,"y":-88},{"x":29,"y":-27},{"x":-101,"y":-93},{"x":-30,"y":1},{"x":-41,"y":-103},{"x":62,"y":-100},{"x":22,"y":-136},{"x":-72,"y":-25},{"x":-90,"y":4},{"x":-33,"y":-35},{"x":-22,"y":13},{"x":-123,"y":-58},{"x":-33,"y":-37},{"x":-31,"y":29},{"x":-87,"y":-5},{"x":-130,"y":-62},{"x":-216,"y":-5},{"x":-37,"y":102},{"x":-68,"y":27},{"x":-18,"y":94},{"x":63,"y":66},{"x":5,"y":46},{"x":-66,"y":175},{"x":-133,"y":29},{"x":-85,"y":-12},{"x":-9,"y":75},{"x":-78,"y":25},{"x":-15,"y":152},{"x":85,"y":71},{"x":24,"y":63},{"x":-55,"y":100},{"x":109,"y":87}],"type":"admin"},{"arc":[{"x":181603,"y":192025},{"x":26,"y":49},{"x":-88,"y":41},{"x":32,"y":23},{"x":-21,"y":4},{"x":7,"y":45},{"x":50,"y":22},{"x":-13,"y":68},{"x":69,"y":40},{"x":-20,"y":47},{"x":-54,"y":-7},{"x":-11,"y":27},{"x":-18,"y":-36},{"x":-66,"y":29},{"x":-30,"y":-73},{"x":-38,"y":2},{"x":-33,"y":-38},{"x":68,"y":-47},{"x":33,"y":15},{"x":15,"y":-47},{"x":-48,"y":-64},{"x":39,"y":10},{"x":25,"y":-50},{"x":-13,"y":-40},{"x":-34,"y":9},{"x":-21,"y":-33},{"x":-26,"y":15},{"x":-56,"y":-163},{"x":32,"y":-32},{"x":-34,"y":7},{"x":6,"y":-44},{"x":-55,"y":-35},{"x":-102,"y":78},{"x":47,"y":62},{"x":-36,"y":33},{"x":38,"y":49},{"x":-2,"y":56},{"x":-24,"y":11},{"x":24,"y":39},{"x":-36,"y":51},{"x":-24,"y":17},{"x":-49,"y":-14},{"x":-11,"y":36},{"x":-40,"y":-23},{"x":-27,"y":50},{"x":-69,"y":-17},{"x":-45,"y":17},{"x":-98,"y":101},{"x":-85,"y":-44},{"x":-46,"y":11},{"x":-2,"y":-38},{"x":-23,"y":3},{"x":17,"y":-13},{"x":-43,"y":-18},{"x":-23,"y":37},{"x":-27,"y":-2},{"x":-2,"y":46},{"x":-19,"y":-17},{"x":-16,"y":18},{"x":7,"y":74},{"x":-140,"y":13},{"x":-67,"y":-16},{"x":-19,"y":-91},{"x":-62,"y":-25},{"x":-6,"y":-27},{"x":-180,"y":-18},{"x":-22,"y":19},{"x":-23,"y":-23},{"x":-25,"y":34},{"x":-20,"y":-39},{"x":-20,"y":22},{"x":-21,"y":-26},{"x":42,"y":-101},{"x":45,"y":-26},{"x":109,"y":-17},{"x":71,"y":16},{"x":4,"y":-32},{"x":1,"y":22},{"x":50,"y":-2},{"x":17,"y":-26},{"x":-54,"y":-24},{"x":17,"y":-37},{"x":-47,"y":-52},{"x":31,"y":-41},{"x":134,"y":57},{"x":32,"y":-17},{"x":17,"y":-118},{"x":-37,"y":-61},{"x":126,"y":-84},{"x":59,"y":20},{"x":-59,"y":-41},{"x":-94,"y":26},{"x":-27,"y":-40},{"x":45,"y":-70},{"x":56,"y":-13},{"x":18,"y":-95},{"x":94,"y":97},{"x":-3,"y":52},{"x":31,"y":14},{"x":-31,"y":-13},{"x":7,"y":35},{"x":24,"y":21},{"x":28,"y":-13},{"x":28,"y":63},{"x":63,"y":-10},{"x":18,"y":-105},{"x":68,"y":21},{"x":132,"y":-30},{"x":-2,"y":-47},{"x":-49,"y":-11},{"x":4,"y":-30},{"x":-35,"y":11},{"x":-60,"y":-34},{"x":18,"y":-25},{"x":153,"y":-7},{"x":-4,"y":-37},{"x":-87,"y":-56},{"x":-31,"y":12},{"x":-37,"y":-46},{"x":-1,"y":-57},{"x":46,"y":29},{"x":43,"y":-22},{"x":-53,"y":-97},{"x":52,"y":-5},{"x":-26,"y":-59},{"x":56,"y":51},{"x":-12,"y":-36},{"x":42,"y":9},{"x":28,"y":-29},{"x":6,"y":90},{"x":117,"y":61},{"x":28,"y":87},{"x":-13,"y":-14},{"x":-11,"y":38},{"x":68,"y":31},{"x":32,"y":158},{"x":45,"y":-60},{"x":-13,"y":-134},{"x":-44,"y":-33},{"x":21,"y":-53},{"x":40,"y":49},{"x":57,"y":18},{"x":0,"y":-55},{"x":14,"y":17},{"x":8,"y":-16},{"x":-35,"y":-54},{"x":31,"y":-2},{"x":-15,"y":-23},{"x":34,"y":-28},{"x":145,"y":112},{"x":43,"y":-25},{"x":-56,"y":-82},{"x":28,"y":-42},{"x":-70,"y":-47},{"x":57,"y":-10},{"x":-11,"y":-28},{"x":28,"y":12},{"x":85,"y":-38},{"x":-52,"y":-68},{"x":-34,"y":19},{"x":-28,"y":-50},{"x":-48,"y":-17},{"x":-14,"y":-53},{"x":-56,"y":-21},{"x":-30,"y":-174},{"x":67,"y":-97},{"x":59,"y":50},{"x":88,"y":16},{"x":32,"y":-47},{"x":-4,"y":22},{"x":64,"y":13},{"x":27,"y":-53},{"x":-83,"y":-5},{"x":112,"y":4},{"x":28,"y":-70},{"x":-26,"y":-310},{"x":-32,"y":2},{"x":0,"y":85},{"x":-3,"y":-85},{"x":2,"y":89},{"x":-43,"y":48},{"x":42,"y":-48},{"x":-6,"y":-155},{"x":4,"y":44},{"x":34,"y":-2},{"x":-5,"y":-80},{"x":-55,"y":0},{"x":-60,"y":72},{"x":4,"y":82},{"x":-5,"y":-83},{"x":65,"y":-78},{"x":54,"y":-17},{"x":-56,"y":-4},{"x":75,"y":-5},{"x":10,"y":-205},{"x":-176,"y":6},{"x":-12,"y":-113},{"x":6,"y":31},{"x":118,"y":-8},{"x":-15,"y":-69},{"x":25,"y":1},{"x":-3,"y":-41},{"x":-5,"y":-14},{"x":-15,"y":0},{"x":-129,"y":-101},{"x":131,"y":101},{"x":43,"y":-9},{"x":10,"y":19},{"x":20,"y":-2},{"x":-18,"y":-12},{"x":25,"y":11},{"x":22,"y":113},{"x":42,"y":-4},{"x":-13,"y":-104},{"x":-25,"y":-15},{"x":44,"y":-4},{"x":-7,"y":-71},{"x":-89,"y":-6},{"x":-25,"y":35},{"x":-17,"y":-41},{"x":-5,"y":27},{"x":-14,"y":-13},{"x":9,"y":-86},{"x":-33,"y":-105}],"type":"coastline"},{"arc":[{"x":181705,"y":189359},{"x":122,"y":7},{"x":60,"y":-21},{"x":87,"y":16},{"x":6,"y":98},{"x":78,"y":8},{"x":146,"y":-35},{"x":11,"y":-142},{"x":78,"y":3},{"x":66,"y":-62},{"x":136,"y":9},{"x":54,"y":-110},{"x":-160,"y":-23},{"x":12,"y":-88},{"x":-37,"y":-3},{"x":21,"y":-28},{"x":-25,"y":-49},{"x":-57,"y":-5},{"x":19,"y":-14},{"x":-50,"y":-38},{"x":33,"y":-28},{"x":-48,"y":-36},{"x":9,"y":-30},{"x":41,"y":12},{"x":28,"y":-29},{"x":24,"y":22},{"x":33,"y":-37},{"x":-16,"y":-81},{"x":34,"y":-38},{"x":-7,"y":-131}],"type":"area"},{"arc":[{"x":182403,"y":188506},{"x":102,"y":-13},{"x":47,"y":17},{"x":5,"y":-41},{"x":37,"y":-14},{"x":77,"y":54},{"x":-9,"y":23},{"x":61,"y":-14},{"x":22,"y":35},{"x":167,"y":-69},{"x":94,"y":27},{"x":6,"y":36},{"x":60,"y":45},{"x":80,"y":25}],"type":"admin"},{"arc":[{"x":183152,"y":188617},{"x":140,"y":15},{"x":12,"y":68},{"x":98,"y":87},{"x":22,"y":51},{"x":-93,"y":165},{"x":-2,"y":129},{"x":168,"y":48}],"type":"admin"},{"arc":[{"x":183497,"y":189180},{"x":283,"y":46},{"x":75,"y":67},{"x":100,"y":226},{"x":67,"y":35},{"x":146,"y":-21},{"x":59,"y":53},{"x":-35,"y":206},{"x":-62,"y":-8},{"x":-39,"y":28},{"x":-228,"y":-67},{"x":-75,"y":18},{"x":22,"y":171},{"x":-46,"y":83},{"x":10,"y":60},{"x":92,"y":69},{"x":4,"y":127},{"x":53,"y":106},{"x":42,"y":21},{"x":85,"y":128},{"x":11,"y":93},{"x":-27,"y":68},{"x":196,"y":233},{"x":53,"y":21}],"type":"area"},{"arc":[{"x":184283,"y":190943},{"x":21,"y":82},{"x":-66,"y":67},{"x":-46,"y":-87},{"x":-53,"y":-9},{"x":-62,"y":201},{"x":136,"y":224},{"x":62,"y":-16},{"x":13,"y":117},{"x":65,"y":36},{"x":57,"y":94},{"x":18,"y":43},{"x":-28,"y":118},{"x":54,"y":81},{"x":-71,"y":50},{"x":-33,"y":100},{"x":208,"y":136},{"x":17,"y":27},{"x":-28,"y":48}],"type":"admin"},{"arc":[{"x":180662,"y":187327},{"x":27,"y":-33},{"x":57,"y":50},{"x":-58,"y":-50},{"x":-26,"y":33}],"type":"coastline"},{"arc":[{"x":180852,"y":187731},{"x":-35,"y":0},{"x":21,"y":16},{"x":-42,"y":108},{"x":-79,"y":45},{"x":64,"y":-104},{"x":-24,"y":-98},{"x":66,"y":-29},{"x":-6,"y":30},{"x":35,"y":32}],"type":"coastline"},{"arc":[{"x":180858,"y":187355},{"x":-51,"y":-1},{"x":2,"y":-28},{"x":49,"y":29}],"type":"coastline"},{"arc":[{"x":180914,"y":187255},{"x":-34,"y":-13},{"x":4,"y":-29},{"x":30,"y":42}],"type":"coastline"},{"arc":[{"x":180919,"y":187984},{"x":-20,"y":10},{"x":-20,"y":-37},{"x":32,"y":-4},{"x":8,"y":31}],"type":"coastline"},{"arc":[{"x":180936,"y":188044},{"x":-109,"y":-56},{"x":-11,"y":-65},{"x":-55,"y":4},{"x":84,"y":-37},{"x":-5,"y":-20},{"x":77,"y":-8},{"x":-17,"y":30},{"x":-24,"y":-18},{"x":-17,"y":22},{"x":27,"y":40},{"x":-35,"y":28},{"x":85,"y":80}],"type":"coastline"},{"arc":[{"x":180963,"y":187937},{"x":-21,"y":17},{"x":0,"y":-25},{"x":21,"y":8}],"type":"coastline"},{"arc":[{"x":180965,"y":188138},{"x":-27,"y":10},{"x":-32,"y":-41},{"x":-36,"y":2},{"x":47,"y":54},{"x":-66,"y":-27},{"x":-26,"y":16},{"x":-5,"y":-49},{"x":-44,"y":46},{"x":-7,"y":-54},{"x":-48,"y":26},{"x":-31,"y":-45},{"x":55,"y":-27},{"x":29,"y":-56},{"x":42,"y":-7},{"x":51,"y":45},{"x":-60,"y":17},{"x":6,"y":31},{"x":63,"y":-29},{"x":-8,"y":23},{"x":27,"y":-14},{"x":41,"y":69},{"x":52,"y":5},{"x":-23,"y":5}],"type":"coastline"},{"arc":[{"x":180870,"y":187169},{"x":-27,"y":13},{"x":10,"y":36},{"x":-50,"y":-20},{"x":47,"y":41},{"x":-39,"y":-21},{"x":20,"y":56},{"x":41,"y":-3},{"x":-28,"y":11},{"x":25,"y":27},{"x":-36,"y":-19},{"x":-77,"y":59},{"x":14,"y":-18},{"x":-87,"y":-98},{"x":-17,"y":7},{"x":-3,"y":-133},{"x":-42,"y":-61},{"x":-9,"y":156},{"x":-35,"y":-2},{"x":31,"y":22},{"x":-4,"y":40},{"x":-147,"y":-99}],"type":"coastline"},{"arc":[{"x":180457,"y":187163},{"x":-54,"y":1}],"type":"admin"},{"arc":[{"x":180403,"y":187164},{"x":19,"y":-73},{"x":28,"y":-19},{"x":59,"y":9},{"x":-55,"y":-66},{"x":3,"y":-80},{"x":-42,"y":-35},{"x":28,"y":-31},{"x":-23,"y":-63},{"x":64,"y":-9},{"x":10,"y":-46},{"x":54,"y":-23}],"type":"area"},{"arc":[{"x":180548,"y":186728},{"x":68,"y":72},{"x":76,"y":34},{"x":29,"y":-63},{"x":37,"y":77},{"x":39,"y":0},{"x":184,"y":142},{"x":0,"y":65},{"x":-115,"y":-15},{"x":4,"y":129}],"type":"admin"},{"arc":[{"x":181025,"y":188035},{"x":-49,"y":22},{"x":3,"y":-36},{"x":46,"y":14}],"type":"coastline"},{"arc":[{"x":181029,"y":187981},{"x":-25,"y":7},{"x":19,"y":14},{"x":-46,"y":-20},{"x":-7,"y":23},{"x":-24,"y":-34},{"x":44,"y":-23},{"x":-15,"y":21},{"x":54,"y":12}],"type":"coastline"},{"arc":[{"x":181054,"y":188044},{"x":-25,"y":55},{"x":-43,"y":-16},{"x":1,"y":-21},{"x":67,"y":-18}],"type":"coastline"},{"arc":[{"x":187269,"y":193422},{"x":-30,"y":29},{"x":-21,"y":-8},{"x":16,"y":-26},{"x":35,"y":5}],"type":"coastline"},{"arc":[{"x":187776,"y":193246},{"x":-34,"y":35},{"x":-56,"y":1},{"x":10,"y":20},{"x":-56,"y":49},{"x":-35,"y":-33},{"x":-58,"y":32},{"x":-54,"y":-42},{"x":18,"y":-36},{"x":-37,"y":-47},{"x":-40,"y":7},{"x":-29,"y":50},{"x":-35,"y":-16},{"x":21,"y":5},{"x":-10,"y":-38},{"x":-36,"y":-6},{"x":-43,"y":50},{"x":7,"y":94},{"x":-37,"y":-33},{"x":-66,"y":48},{"x":-28,"y":-40},{"x":24,"y":-56},{"x":-125,"y":-44},{"x":59,"y":-8},{"x":53,"y":-82},{"x":32,"y":20},{"x":76,"y":-72},{"x":-7,"y":31},{"x":25,"y":3},{"x":80,"y":-73},{"x":64,"y":-21},{"x":58,"y":21},{"x":5,"y":64},{"x":15,"y":-60},{"x":88,"y":-57},{"x":52,"y":39},{"x":14,"y":137},{"x":85,"y":58}],"type":"coastline"},{"arc":[{"x":188855,"y":193325},{"x":-34,"y":40},{"x":-44,"y":0},{"x":-20,"y":-39},{"x":17,"y":52},{"x":-104,"y":48},{"x":-7,"y":24},{"x":-14,"y":-32},{"x":49,"y":-86},{"x":-51,"y":-13},{"x":-47,"y":27},{"x":4,"y":33},{"x":-27,"y":-8},{"x":8,"y":34},{"x":-32,"y":-25},{"x":-8,"y":32},{"x":-22,"y":-16},{"x":-31,"y":15},{"x":4,"y":83},{"x":-26,"y":-59},{"x":-92,"y":5},{"x":-37,"y":-92},{"x":-7,"y":33},{"x":-30,"y":6},{"x":12,"y":50},{"x":-29,"y":24},{"x":-39,"y":-6},{"x":6,"y":36},{"x":-34,"y":10},{"x":-18,"y":43},{"x":-26,"y":-25},{"x":-19,"y":19},{"x":-2,"y":-22},{"x":-51,"y":2},{"x":-1,"y":-32},{"x":-55,"y":76},{"x":-65,"y":-35},{"x":-72,"y":96},{"x":14,"y":29},{"x":-22,"y":17},{"x":-37,"y":-21},{"x":-4,"y":45},{"x":-43,"y":9},{"x":22,"y":-34},{"x":-22,"y":-26},{"x":-73,"y":27},{"x":-17,"y":-27},{"x":-82,"y":45},{"x":-16,"y":40},{"x":-51,"y":-23},{"x":-33,"y":52},{"x":-116,"y":10},{"x":-4,"y":-33},{"x":51,"y":-20},{"x":-11,"y":-29},{"x":35,"y":-46},{"x":-30,"y":-15},{"x":15,"y":-42},{"x":48,"y":14},{"x":37,"y":-75},{"x":47,"y":4},{"x":35,"y":-23},{"x":-8,"y":-23},{"x":55,"y":16},{"x":-9,"y":-54},{"x":32,"y":-9},{"x":36,"y":30},{"x":-23,"y":-31},{"x":34,"y":-52},{"x":61,"y":47},{"x":-13,"y":-56},{"x":65,"y":11},{"x":33,"y":-40},{"x":72,"y":51},{"x":-11,"y":-72},{"x":-33,"y":8},{"x":-41,"y":-28},{"x":54,"y":-62},{"x":-61,"y":7},{"x":-13,"y":63},{"x":-39,"y":7},{"x":25,"y":-104},{"x":-33,"y":3},{"x":-29,"y":-66},{"x":-76,"y":6},{"x":-9,"y":-24},{"x":64,"y":-27},{"x":-37,"y":8},{"x":-47,"y":-39},{"x":47,"y":-55},{"x":27,"y":18},{"x":-21,"y":-18},{"x":126,"y":-48},{"x":10,"y":-95},{"x":33,"y":-4},{"x":-6,"y":20},{"x":11,"y":-21},{"x":148,"y":-10},{"x":11,"y":-50},{"x":-46,"y":-7},{"x":-5,"y":-65},{"x":-16,"y":49},{"x":-49,"y":-2},{"x":-102,"y":68},{"x":-40,"y":79},{"x":-54,"y":3},{"x":-1,"y":-39},{"x":-79,"y":15},{"x":-48,"y":-34},{"x":-19,"y":21},{"x":-4,"y":-29},{"x":-47,"y":47},{"x":-20,"y":-69},{"x":-130,"y":8},{"x":6,"y":-14},{"x":-22,"y":-14},{"x":14,"y":34},{"x":-19,"y":-21},{"x":5,"y":-16},{"x":-104,"y":-1},{"x":-35,"y":18},{"x":8,"y":21},{"x":-154,"y":41},{"x":-10,"y":47},{"x":28,"y":-13},{"x":9,"y":21},{"x":-21,"y":-3},{"x":27,"y":5},{"x":-69,"y":56},{"x":15,"y":10},{"x":-60,"y":9},{"x":19,"y":-74},{"x":-90,"y":-64},{"x":37,"y":-43},{"x":-12,"y":-70},{"x":-64,"y":-47},{"x":-76,"y":37},{"x":-64,"y":-72},{"x":67,"y":-29},{"x":-11,"y":-99},{"x":-39,"y":-41},{"x":-40,"y":6},{"x":28,"y":33},{"x":-97,"y":-37},{"x":17,"y":-43},{"x":-50,"y":-10},{"x":28,"y":-43},{"x":-47,"y":-23},{"x":19,"y":-49},{"x":-36,"y":-8},{"x":-7,"y":-73},{"x":-52,"y":-40},{"x":-28,"y":-72},{"x":-107,"y":-29},{"x":-57,"y":10},{"x":-98,"y":-71},{"x":-34,"y":28},{"x":-2,"y":61},{"x":-67,"y":-6},{"x":-10,"y":97},{"x":-22,"y":-23},{"x":-1,"y":21},{"x":-56,"y":18},{"x":15,"y":-31},{"x":-23,"y":10},{"x":-2,"y":42},{"x":-11,"y":-33},{"x":-26,"y":11}],"type":"coastline"},{"arc":[{"x":186048,"y":192277},{"x":-22,"y":-40},{"x":17,"y":-94},{"x":-81,"y":-181},{"x":48,"y":-37},{"x":-2,"y":-105},{"x":98,"y":-112},{"x":-34,"y":-85},{"x":-72,"y":-37},{"x":-32,"y":-66},{"x":-6,"y":-33},{"x":83,"y":-130},{"x":-100,"y":-93},{"x":-14,"y":-192}],"type":"admin"},{"arc":[{"x":185931,"y":191072},{"x":51,"y":-77},{"x":136,"y":-33},{"x":29,"y":-47},{"x":141,"y":117}],"type":"area"},{"arc":[{"x":177032,"y":183642},{"x":13,"y":61},{"x":-59,"y":39},{"x":-70,"y":-11},{"x":-59,"y":21}],"type":"admin"},{"arc":[{"x":176857,"y":183752},{"x":-117,"y":-14},{"x":-54,"y":-47},{"x":-58,"y":-2},{"x":-29,"y":-100},{"x":-37,"y":-4},{"x":-53,"y":46},{"x":-65,"y":-13},{"x":-17,"y":22},{"x":-80,"y":-70},{"x":-89,"y":10},{"x":-39,"y":34},{"x":-61,"y":-64}],"type":"area"},{"arc":[{"x":176158,"y":183550},{"x":-101,"y":-23},{"x":-131,"y":-83},{"x":48,"y":-55},{"x":-61,"y":-50},{"x":-31,"y":-129},{"x":14,"y":-64},{"x":-108,"y":-206},{"x":-115,"y":-40},{"x":-91,"y":63},{"x":-57,"y":-88},{"x":-40,"y":7},{"x":-20,"y":-34}],"type":"admin"},{"arc":[{"x":175465,"y":182848},{"x":35,"y":-70},{"x":-52,"y":-15},{"x":-8,"y":-100},{"x":-36,"y":-24}],"type":"admin"},{"arc":[{"x":175404,"y":182639},{"x":-19,"y":-73},{"x":49,"y":-47},{"x":-10,"y":-35},{"x":171,"y":-176},{"x":-59,"y":-39},{"x":-75,"y":11},{"x":-28,"y":-49},{"x":0,"y":-93},{"x":-60,"y":-189},{"x":45,"y":-101},{"x":-21,"y":-52},{"x":-46,"y":-11},{"x":26,"y":-128},{"x":-66,"y":-52},{"x":-6,"y":-109}],"type":"admin"},{"arc":[{"x":175305,"y":181496},{"x":21,"y":-38}],"type":"admin"},{"arc":[{"x":175326,"y":181458},{"x":129,"y":-116},{"x":149,"y":-47},{"x":73,"y":11},{"x":113,"y":-21},{"x":109,"y":77}],"type":"admin"},{"arc":[{"x":175899,"y":181362},{"x":35,"y":-5},{"x":60,"y":39},{"x":-22,"y":82},{"x":33,"y":29},{"x":-56,"y":194},{"x":149,"y":152},{"x":28,"y":-5},{"x":-2,"y":107},{"x":41,"y":10},{"x":135,"y":-35},{"x":47,"y":-53},{"x":175,"y":-85},{"x":74,"y":7},{"x":24,"y":47},{"x":86,"y":-101},{"x":70,"y":21},{"x":116,"y":-25},{"x":74,"y":-42},{"x":104,"y":-158},{"x":332,"y":-37},{"x":122,"y":-76},{"x":39,"y":-78},{"x":46,"y":-24},{"x":111,"y":62}],"type":"admin"},{"arc":[{"x":177720,"y":181388},{"x":-30,"y":106},{"x":51,"y":54},{"x":24,"y":87},{"x":31,"y":394},{"x":-69,"y":10},{"x":-9,"y":33},{"x":-39,"y":2},{"x":3,"y":40},{"x":-93,"y":20},{"x":-30,"y":49},{"x":101,"y":178},{"x":-6,"y":149},{"x":33,"y":121},{"x":-47,"y":80},{"x":-54,"y":-11},{"x":-79,"y":72},{"x":-36,"y":-21},{"x":-76,"y":35},{"x":-12,"y":69},{"x":-50,"y":38},{"x":-17,"y":56},{"x":-57,"y":27},{"x":-38,"y":112},{"x":-60,"y":-2},{"x":-43,"y":41},{"x":-70,"y":-9},{"x":-42,"y":40},{"x":108,"y":88},{"x":-23,"y":95},{"x":-50,"y":64},{"x":27,"y":60},{"x":-41,"y":109},{"x":5,"y":68}],"type":"admin"},{"arc":[{"x":178774,"y":186407},{"x":-6,"y":29},{"x":-38,"y":-3},{"x":38,"y":-22},{"x":-48,"y":-25},{"x":9,"y":70},{"x":-51,"y":-88},{"x":-440,"y":-178}],"type":"coastline"},{"arc":[{"x":178238,"y":186190},{"x":77,"y":-222},{"x":61,"y":5},{"x":-41,"y":-33},{"x":9,"y":-37},{"x":47,"y":32},{"x":-21,"y":-59},{"x":27,"y":-66},{"x":-243,"y":-128},{"x":-16,"y":25},{"x":-60,"y":-46},{"x":-21,"y":-74},{"x":-47,"y":15},{"x":-49,"y":-31},{"x":4,"y":-51},{"x":27,"y":21},{"x":137,"y":-60},{"x":45,"y":8},{"x":6,"y":-81},{"x":152,"y":54},{"x":20,"y":-38},{"x":-104,"y":-46},{"x":20,"y":-268},{"x":48,"y":-61},{"x":23,"y":-201},{"x":107,"y":-160}],"type":"area"},{"arc":[{"x":178446,"y":184688},{"x":102,"y":-27},{"x":78,"y":7},{"x":52,"y":-41},{"x":47,"y":13},{"x":43,"y":-21},{"x":11,"y":22}],"type":"admin"},{"arc":[{"x":176467,"y":185168},{"x":-180,"y":78},{"x":-139,"y":28},{"x":-195,"y":-17},{"x":-34,"y":22},{"x":-136,"y":-31},{"x":-125,"y":62},{"x":-73,"y":-28},{"x":-34,"y":13},{"x":-31,"y":-35},{"x":-59,"y":-10}],"type":"admin"},{"arc":[{"x":175461,"y":185250},{"x":12,"y":-47},{"x":142,"y":-58},{"x":33,"y":-81},{"x":55,"y":-28},{"x":42,"y":-138},{"x":-16,"y":-106},{"x":-105,"y":14},{"x":-15,"y":-36},{"x":63,"y":-36},{"x":40,"y":-143},{"x":44,"y":-40},{"x":104,"y":43},{"x":168,"y":0},{"x":-111,"y":-67},{"x":3,"y":-159},{"x":-73,"y":-158},{"x":41,"y":-157},{"x":-49,"y":-28},{"x":1,"y":-187},{"x":90,"y":-123},{"x":41,"y":67},{"x":58,"y":22},{"x":64,"y":-17},{"x":34,"y":-61},{"x":-6,"y":-127},{"x":37,"y":-49}],"type":"admin"},{"arc":[{"x":176857,"y":183752},{"x":52,"y":121},{"x":61,"y":62},{"x":-38,"y":65},{"x":33,"y":33},{"x":26,"y":129},{"x":23,"y":-4},{"x":63,"y":74}],"type":"admin"},{"arc":[{"x":177077,"y":184232},{"x":17,"y":76},{"x":-26,"y":134},{"x":45,"y":49},{"x":-12,"y":52},{"x":58,"y":61},{"x":-33,"y":42},{"x":13,"y":42},{"x":83,"y":44},{"x":14,"y":103},{"x":129,"y":17},{"x":183,"y":111}],"type":"admin"},{"arc":[{"x":177548,"y":184963},{"x":-21,"y":32},{"x":-119,"y":-1},{"x":-74,"y":41},{"x":-158,"y":8},{"x":-70,"y":-29},{"x":-138,"y":14},{"x":-76,"y":25},{"x":-88,"y":77},{"x":-103,"y":-2},{"x":-35,"y":20},{"x":-75,"y":-19},{"x":-124,"y":39}],"type":"admin"},{"arc":[{"x":180403,"y":187164},{"x":-46,"y":-4},{"x":-116,"y":85},{"x":-22,"y":-32},{"x":-12,"y":45},{"x":-3,"y":-97},{"x":-84,"y":-37}],"type":"admin"},{"arc":[{"x":180124,"y":187115},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":180140,"y":187112},{"x":5,"y":-28}],"type":"coastline"},{"arc":[{"x":180490,"y":186406},{"x":-15,"y":195},{"x":73,"y":127}],"type":"admin"},{"arc":[{"x":178238,"y":186190},{"x":-516,"y":-140},{"x":-556,"y":-64}],"type":"coastline"},{"arc":[{"x":177166,"y":185986},{"x":98,"y":-154},{"x":70,"y":-9},{"x":138,"y":39},{"x":56,"y":-13},{"x":239,"y":-214},{"x":9,"y":-172},{"x":-137,"y":-84},{"x":-41,"y":-81},{"x":-11,"y":-106},{"x":44,"y":-109}],"type":"admin"},{"arc":[{"x":177631,"y":185083},{"x":36,"y":1},{"x":75,"y":-65},{"x":49,"y":8},{"x":7,"y":-48},{"x":180,"y":25},{"x":51,"y":-30},{"x":87,"y":30},{"x":62,"y":-86},{"x":6,"y":-65},{"x":-5,"y":-68},{"x":-59,"y":-42},{"x":-10,"y":-60},{"x":88,"y":-196},{"x":72,"y":33},{"x":34,"y":63}],"type":"admin"},{"arc":[{"x":178304,"y":184583},{"x":107,"y":39},{"x":35,"y":66}],"type":"admin"},{"arc":[{"x":185931,"y":191072},{"x":-48,"y":-24},{"x":-57,"y":-200},{"x":-69,"y":10},{"x":-25,"y":-37},{"x":-65,"y":-218},{"x":-102,"y":32},{"x":-93,"y":-20},{"x":-101,"y":20},{"x":-69,"y":-42},{"x":-17,"y":78},{"x":-145,"y":-30},{"x":1,"y":81},{"x":-44,"y":58},{"x":-26,"y":-3},{"x":-55,"y":-93},{"x":-169,"y":-7},{"x":-76,"y":47},{"x":-26,"y":60},{"x":-94,"y":44},{"x":-27,"y":-21},{"x":-120,"y":75},{"x":-32,"y":81},{"x":-102,"y":-36},{"x":-70,"y":-6},{"x":-17,"y":22}],"type":"admin"},{"arc":[{"x":183497,"y":189180},{"x":123,"y":-19},{"x":41,"y":-44},{"x":13,"y":13},{"x":64,"y":-33},{"x":72,"y":-200},{"x":56,"y":-25},{"x":68,"y":-89},{"x":-3,"y":30},{"x":83,"y":3},{"x":15,"y":50},{"x":60,"y":1},{"x":121,"y":-222},{"x":-95,"y":-50},{"x":29,"y":-130}],"type":"admin"},{"arc":[{"x":180637,"y":188425},{"x":-59,"y":36},{"x":21,"y":-64},{"x":36,"y":-1},{"x":2,"y":29}],"type":"coastline"},{"arc":[{"x":181074,"y":188478},{"x":-21,"y":43},{"x":-18,"y":-60},{"x":39,"y":17}],"type":"coastline"},{"arc":[{"x":181085,"y":188342},{"x":-43,"y":86},{"x":-68,"y":-40},{"x":22,"y":25},{"x":-80,"y":7},{"x":-36,"y":52},{"x":126,"y":-38},{"x":-30,"y":29},{"x":53,"y":-11},{"x":3,"y":32},{"x":-9,"y":-17},{"x":-29,"y":22},{"x":0,"y":19},{"x":36,"y":-4},{"x":-41,"y":12},{"x":14,"y":21},{"x":-29,"y":3},{"x":-9,"y":-55},{"x":-3,"y":36},{"x":-17,"y":-36},{"x":-1,"y":37},{"x":-19,"y":-18},{"x":-21,"y":13},{"x":30,"y":27},{"x":-104,"y":-9},{"x":30,"y":21},{"x":-86,"y":-41},{"x":-86,"y":54},{"x":4,"y":48},{"x":-52,"y":63},{"x":28,"y":-57},{"x":-36,"y":25},{"x":-17,"y":-26},{"x":14,"y":-27},{"x":16,"y":18},{"x":16,"y":-14},{"x":0,"y":-58},{"x":37,"y":-1},{"x":-9,"y":-42},{"x":26,"y":15},{"x":9,"y":-38},{"x":-26,"y":-40},{"x":-21,"y":13},{"x":3,"y":-41},{"x":-31,"y":4},{"x":2,"y":-25},{"x":97,"y":-92},{"x":19,"y":34},{"x":34,"y":3},{"x":-21,"y":-44},{"x":20,"y":-28},{"x":-41,"y":13},{"x":-10,"y":-56},{"x":-13,"y":53},{"x":-55,"y":38},{"x":-25,"y":-39},{"x":24,"y":-22},{"x":-37,"y":-31},{"x":66,"y":21},{"x":23,"y":-34},{"x":126,"y":-51},{"x":29,"y":17},{"x":-20,"y":13},{"x":41,"y":1},{"x":-44,"y":22},{"x":3,"y":60},{"x":39,"y":4},{"x":-46,"y":26},{"x":0,"y":30},{"x":48,"y":18},{"x":77,"y":-77},{"x":71,"y":-20},{"x":29,"y":97}],"type":"coastline"},{"arc":[{"x":181705,"y":189359},{"x":-109,"y":-296},{"x":-272,"y":-471},{"x":-139,"y":-139},{"x":-139,"y":-21},{"x":87,"y":-151},{"x":-6,"y":-121},{"x":27,"y":-12},{"x":10,"y":29},{"x":79,"y":31},{"x":8,"y":-17},{"x":29,"y":28},{"x":69,"y":-55},{"x":29,"y":-66}],"type":"coastline"},{"arc":[{"x":181378,"y":188098},{"x":43,"y":2},{"x":35,"y":-34},{"x":59,"y":9},{"x":40,"y":-25},{"x":-15,"y":-24},{"x":48,"y":0},{"x":33,"y":-51},{"x":-73,"y":-38},{"x":88,"y":-42},{"x":36,"y":-70},{"x":68,"y":-10},{"x":-3,"y":-51},{"x":78,"y":59},{"x":-27,"y":92},{"x":121,"y":192},{"x":26,"y":-33},{"x":91,"y":-19},{"x":71,"y":-71},{"x":85,"y":10}],"type":"admin"},{"arc":[{"x":182182,"y":187994},{"x":24,"y":-4},{"x":59,"y":124},{"x":-44,"y":29},{"x":-64,"y":-70},{"x":-37,"y":65},{"x":5,"y":19},{"x":53,"y":-7},{"x":-11,"y":43},{"x":121,"y":201},{"x":44,"y":214},{"x":54,"y":-42},{"x":17,"y":-60}],"type":"admin"},{"arc":[{"x":181046,"y":186164},{"x":-67,"y":-12},{"x":-33,"y":-47},{"x":-61,"y":5}],"type":"admin"},{"arc":[{"x":178447,"y":182434},{"x":-12,"y":16}],"type":"coastline"},{"arc":[{"x":178435,"y":182450},{"x":-5,"y":3}],"type":"area"},{"arc":[{"x":178430,"y":182453},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":178428,"y":182455},{"x":-1,"y":15}],"type":"coastline"},{"arc":[{"x":178427,"y":182470},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":178426,"y":182471},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":178423,"y":182475},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178422,"y":182477},{"x":-11,"y":15}],"type":"coastline"},{"arc":[{"x":178411,"y":182492},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178410,"y":182494},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":178405,"y":182498},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178404,"y":182502},{"x":0,"y":4}],"type":"area"},{"arc":[{"x":178404,"y":182506},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":178402,"y":182509},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178401,"y":182511},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":178404,"y":182517},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":178404,"y":182522},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178404,"y":182525},{"x":-21,"y":7}],"type":"coastline"},{"arc":[{"x":178383,"y":182532},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":178381,"y":182529},{"x":-16,"y":-2}],"type":"coastline"},{"arc":[{"x":178365,"y":182527},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178362,"y":182527},{"x":-4,"y":3}],"type":"area"},{"arc":[{"x":178358,"y":182530},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178355,"y":182530},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":178350,"y":182530},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":178340,"y":182529},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":178336,"y":182532},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178332,"y":182534},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":178327,"y":182535},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":178321,"y":182544},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":178318,"y":182548},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":178316,"y":182551},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":178317,"y":182564},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":178318,"y":182570},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178318,"y":182573},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178318,"y":182575},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178318,"y":182580},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":178319,"y":182588},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":178318,"y":182595},{"x":8,"y":16}],"type":"coastline"},{"arc":[{"x":178326,"y":182611},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178326,"y":182613},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":178324,"y":182622},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":178321,"y":182629},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":178320,"y":182637},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":178318,"y":182643},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":178316,"y":182646},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":178314,"y":182649},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":178317,"y":182656},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":178318,"y":182656},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":178322,"y":182665},{"x":-2,"y":21}],"type":"coastline"},{"arc":[{"x":178320,"y":182686},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":178317,"y":182688},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":178312,"y":182696},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":178315,"y":182706},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":178317,"y":182709},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":178320,"y":182717},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":178318,"y":182722},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":178316,"y":182730},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178315,"y":182735},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":178312,"y":182737},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":178312,"y":182746},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":178309,"y":182749},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":178309,"y":182753},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":178308,"y":182760},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":178306,"y":182760},{"x":-12,"y":-4}],"type":"coastline"},{"arc":[{"x":178294,"y":182756},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178290,"y":182758},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":178288,"y":182760},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178284,"y":182762},{"x":6,"y":10}],"type":"coastline"},{"arc":[{"x":178290,"y":182772},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178291,"y":182774},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":178292,"y":182778},{"x":7,"y":22}],"type":"coastline"},{"arc":[{"x":178299,"y":182800},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":178298,"y":182807},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":178292,"y":182811},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":178290,"y":182813},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":178287,"y":182822},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178286,"y":182827},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":178285,"y":182828},{"x":-5,"y":11}],"type":"coastline"},{"arc":[{"x":178280,"y":182839},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":178279,"y":182840},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":178273,"y":182843},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":178272,"y":182844},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178268,"y":182846},{"x":-2,"y":7}],"type":"area"},{"arc":[{"x":178266,"y":182853},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178264,"y":182857},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178264,"y":182862},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":178268,"y":182868},{"x":9,"y":12}],"type":"coastline"},{"arc":[{"x":178277,"y":182880},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":178281,"y":182890},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178283,"y":182894},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":178287,"y":182900},{"x":7,"y":14}],"type":"coastline"},{"arc":[{"x":178294,"y":182914},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178294,"y":182917},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178296,"y":182921},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":178301,"y":182930},{"x":11,"y":21}],"type":"coastline"},{"arc":[{"x":178312,"y":182951},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":178314,"y":182954},{"x":9,"y":13}],"type":"coastline"},{"arc":[{"x":178323,"y":182967},{"x":5,"y":8}],"type":"area"},{"arc":[{"x":178328,"y":182975},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":178334,"y":182983},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178335,"y":182985},{"x":11,"y":14}],"type":"coastline"},{"arc":[{"x":178346,"y":182999},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":178348,"y":183002},{"x":9,"y":14}],"type":"coastline"},{"arc":[{"x":178357,"y":183016},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178357,"y":183018},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":178360,"y":183023},{"x":9,"y":10}],"type":"coastline"},{"arc":[{"x":178369,"y":183033},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178370,"y":183034},{"x":-63,"y":65},{"x":-8,"y":69},{"x":87,"y":123},{"x":7,"y":60},{"x":-84,"y":107},{"x":32,"y":75},{"x":-52,"y":143},{"x":-26,"y":-9},{"x":-23,"y":39},{"x":-102,"y":47},{"x":-44,"y":-30},{"x":-83,"y":5},{"x":-64,"y":-38},{"x":-35,"y":5},{"x":-104,"y":-67},{"x":-28,"y":12},{"x":-95,"y":-45},{"x":-24,"y":-44},{"x":-145,"y":22}],"type":"area"},{"arc":[{"x":177516,"y":183573},{"x":-43,"y":-66},{"x":-72,"y":-8},{"x":-57,"y":-42},{"x":-71,"y":22},{"x":-30,"y":-31},{"x":-24,"y":58},{"x":-84,"y":72},{"x":2,"y":40},{"x":-39,"y":29},{"x":-66,"y":-5}],"type":"area"},{"arc":[{"x":177720,"y":181388},{"x":56,"y":-13},{"x":141,"y":-191},{"x":95,"y":-40},{"x":60,"y":6},{"x":58,"y":-72},{"x":60,"y":7},{"x":25,"y":-25}],"type":"area"},{"arc":[{"x":178215,"y":181060},{"x":88,"y":-34},{"x":86,"y":37}],"type":"admin"},{"arc":[{"x":178389,"y":181063},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":178387,"y":181063},{"x":0,"y":36}],"type":"coastline"},{"arc":[{"x":178387,"y":181099},{"x":-4,"y":6}],"type":"area"},{"arc":[{"x":178383,"y":181105},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178382,"y":181110},{"x":-3,"y":10}],"type":"area"},{"arc":[{"x":178379,"y":181120},{"x":0,"y":24}],"type":"coastline"},{"arc":[{"x":178379,"y":181144},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":178376,"y":181149},{"x":-4,"y":13}],"type":"coastline"},{"arc":[{"x":178372,"y":181162},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":178369,"y":181170},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":178369,"y":181187},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":178367,"y":181192},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":178369,"y":181203},{"x":-3,"y":12}],"type":"area"},{"arc":[{"x":178366,"y":181215},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178365,"y":181219},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":178365,"y":181226},{"x":16,"y":20}],"type":"coastline"},{"arc":[{"x":178381,"y":181246},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":178385,"y":181250},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":178390,"y":181253},{"x":4,"y":-1}],"type":"area"},{"arc":[{"x":178394,"y":181252},{"x":11,"y":5}],"type":"coastline"},{"arc":[{"x":178405,"y":181257},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":178408,"y":181260},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":178402,"y":181272},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":178399,"y":181278},{"x":-13,"y":7}],"type":"coastline"},{"arc":[{"x":178386,"y":181285},{"x":-14,"y":-2}],"type":"coastline"},{"arc":[{"x":178372,"y":181283},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":178365,"y":181286},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":178359,"y":181286},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":178357,"y":181287},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178357,"y":181292},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178357,"y":181293},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":178362,"y":181295},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":178365,"y":181296},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":178370,"y":181302},{"x":15,"y":6}],"type":"coastline"},{"arc":[{"x":178385,"y":181308},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":178386,"y":181308},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":178389,"y":181310},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":178391,"y":181312},{"x":13,"y":14}],"type":"coastline"},{"arc":[{"x":178404,"y":181326},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":178407,"y":181332},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178406,"y":181336},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178406,"y":181338},{"x":4,"y":13}],"type":"coastline"},{"arc":[{"x":178410,"y":181351},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178409,"y":181355},{"x":-3,"y":8}],"type":"area"},{"arc":[{"x":178406,"y":181363},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":178406,"y":181365},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":178406,"y":181369},{"x":-6,"y":12}],"type":"area"},{"arc":[{"x":178400,"y":181381},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":178397,"y":181387},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":178396,"y":181394},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178396,"y":181395},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178398,"y":181401},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":178397,"y":181407},{"x":1,"y":4}],"type":"area"},{"arc":[{"x":178398,"y":181411},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":178405,"y":181418},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":178408,"y":181419},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":178415,"y":181428},{"x":14,"y":21}],"type":"coastline"},{"arc":[{"x":178429,"y":181449},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178430,"y":181451},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178431,"y":181453},{"x":10,"y":12}],"type":"coastline"},{"arc":[{"x":178441,"y":181465},{"x":8,"y":15}],"type":"coastline"},{"arc":[{"x":178449,"y":181480},{"x":2,"y":9}],"type":"area"},{"arc":[{"x":178451,"y":181489},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":178451,"y":181496},{"x":-12,"y":19}],"type":"coastline"},{"arc":[{"x":178439,"y":181515},{"x":-17,"y":21}],"type":"coastline"},{"arc":[{"x":178422,"y":181536},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":178417,"y":181541},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":178410,"y":181547},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":178403,"y":181553},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":178402,"y":181554},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":178397,"y":181562},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":178395,"y":181564},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":178390,"y":181573},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":178387,"y":181578},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":178388,"y":181588},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":178390,"y":181591},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178391,"y":181593},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178391,"y":181594},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178390,"y":181598},{"x":-4,"y":5}],"type":"area"},{"arc":[{"x":178386,"y":181603},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":178385,"y":181606},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178385,"y":181607},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178387,"y":181611},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":178388,"y":181614},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":178389,"y":181617},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178389,"y":181622},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178391,"y":181628},{"x":2,"y":4}],"type":"area"},{"arc":[{"x":178393,"y":181632},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":178397,"y":181636},{"x":-5,"y":19}],"type":"coastline"},{"arc":[{"x":178392,"y":181655},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":178387,"y":181660},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":178385,"y":181667},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178384,"y":181671},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178384,"y":181673},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178383,"y":181678},{"x":3,"y":7}],"type":"area"},{"arc":[{"x":178386,"y":181685},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":178387,"y":181690},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":178392,"y":181693},{"x":17,"y":2}],"type":"coastline"},{"arc":[{"x":178409,"y":181695},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":178411,"y":181696},{"x":10,"y":12}],"type":"coastline"},{"arc":[{"x":178421,"y":181708},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":178422,"y":181714},{"x":4,"y":13}],"type":"coastline"},{"arc":[{"x":178426,"y":181727},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178428,"y":181733},{"x":2,"y":6}],"type":"area"},{"arc":[{"x":178430,"y":181739},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":178433,"y":181743},{"x":-16,"y":11}],"type":"coastline"},{"arc":[{"x":178417,"y":181754},{"x":-6,"y":5}],"type":"area"},{"arc":[{"x":178411,"y":181759},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178411,"y":181764},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178411,"y":181766},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":178408,"y":181776},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":178410,"y":181784},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178410,"y":181785},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":178412,"y":181788},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":178418,"y":181793},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178419,"y":181794},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":178422,"y":181800},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":178424,"y":181808},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":178425,"y":181819},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178425,"y":181821},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":178420,"y":181826},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":178414,"y":181825},{"x":-5,"y":-5}],"type":"area"},{"arc":[{"x":178409,"y":181820},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":178404,"y":181820},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":178395,"y":181824},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":178392,"y":181825},{"x":-11,"y":20}],"type":"coastline"},{"arc":[{"x":178381,"y":181845},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":178377,"y":181850},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178375,"y":181854},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":178370,"y":181858},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178367,"y":181858},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":178359,"y":181855},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":178357,"y":181855},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":178352,"y":181858},{"x":-3,"y":13}],"type":"coastline"},{"arc":[{"x":178349,"y":181871},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178349,"y":181872},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":178346,"y":181879},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":178344,"y":181880},{"x":-21,"y":-6}],"type":"coastline"},{"arc":[{"x":178323,"y":181874},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":178322,"y":181872},{"x":-12,"y":5}],"type":"coastline"},{"arc":[{"x":178310,"y":181877},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":178309,"y":181880},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":178309,"y":181881},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178309,"y":181884},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178309,"y":181886},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":178306,"y":181893},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":178305,"y":181894},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178303,"y":181898},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178302,"y":181903},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":178303,"y":181911},{"x":3,"y":3}],"type":"area"},{"arc":[{"x":178306,"y":181914},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":178314,"y":181921},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178315,"y":181923},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":178317,"y":181931},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":178319,"y":181933},{"x":7,"y":18}],"type":"coastline"},{"arc":[{"x":178326,"y":181951},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178327,"y":181953},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178329,"y":181959},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":178325,"y":181967},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178324,"y":181969},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":178319,"y":181979},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":178318,"y":181989},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":178317,"y":181999},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178318,"y":182001},{"x":5,"y":22}],"type":"coastline"},{"arc":[{"x":178323,"y":182023},{"x":-4,"y":7}],"type":"area"},{"arc":[{"x":178319,"y":182030},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":178315,"y":182040},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":178315,"y":182043},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":178310,"y":182052},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178310,"y":182053},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178308,"y":182057},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":178304,"y":182066},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":178303,"y":182073},{"x":15,"y":28}],"type":"coastline"},{"arc":[{"x":178318,"y":182101},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":178323,"y":182106},{"x":10,"y":7}],"type":"coastline"},{"arc":[{"x":178333,"y":182113},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":178335,"y":182115},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":178340,"y":182119},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":178342,"y":182121},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":178347,"y":182124},{"x":5,"y":4}],"type":"area"},{"arc":[{"x":178352,"y":182128},{"x":9,"y":9}],"type":"coastline"},{"arc":[{"x":178361,"y":182137},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":178364,"y":182139},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178365,"y":182141},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":178369,"y":182145},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178368,"y":182150},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178368,"y":182152},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":178368,"y":182156},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":178369,"y":182162},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178371,"y":182168},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":178377,"y":182173},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":178382,"y":182178},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":178385,"y":182185},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178386,"y":182187},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":178395,"y":182189},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":178403,"y":182190},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178407,"y":182188},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":178413,"y":182184},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":178418,"y":182182},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":178421,"y":182179},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":178424,"y":182177},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178428,"y":182175},{"x":4,"y":-4}],"type":"area"},{"arc":[{"x":178432,"y":182171},{"x":6,"y":-8}],"type":"coastline"},{"arc":[{"x":178438,"y":182163},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":178440,"y":182159},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":178442,"y":182153},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":178449,"y":182149},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":178450,"y":182150},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178450,"y":182151},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":178451,"y":182158},{"x":6,"y":14}],"type":"coastline"},{"arc":[{"x":178457,"y":182172},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178458,"y":182173},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":178458,"y":182175},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178458,"y":182180},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":178457,"y":182186},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178459,"y":182192},{"x":-1,"y":5}],"type":"area"},{"arc":[{"x":178458,"y":182197},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178456,"y":182201},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":178456,"y":182208},{"x":2,"y":8}],"type":"area"},{"arc":[{"x":178458,"y":182216},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":178459,"y":182221},{"x":0,"y":4}],"type":"area"},{"arc":[{"x":178459,"y":182225},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178458,"y":182229},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":178457,"y":182232},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178456,"y":182236},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":178456,"y":182239},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178456,"y":182244},{"x":0,"y":10}],"type":"area"},{"arc":[{"x":178456,"y":182254},{"x":-3,"y":11}],"type":"coastline"},{"arc":[{"x":178453,"y":182265},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178453,"y":182270},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178452,"y":182272},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178451,"y":182276},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":178447,"y":182280},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178445,"y":182284},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":178444,"y":182284},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":178442,"y":182290},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":178439,"y":182296},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":178439,"y":182298},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":178440,"y":182305},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":178441,"y":182308},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178441,"y":182311},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178441,"y":182314},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":178441,"y":182320},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178441,"y":182321},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178443,"y":182325},{"x":2,"y":7}],"type":"area"},{"arc":[{"x":178445,"y":182332},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":178446,"y":182341},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":178453,"y":182344},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178454,"y":182346},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":178453,"y":182354},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":178455,"y":182361},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178456,"y":182363},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178456,"y":182364},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":178452,"y":182371},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":178459,"y":182378},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":178462,"y":182379},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":178468,"y":182380},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":178469,"y":182383},{"x":-7,"y":14}],"type":"coastline"},{"arc":[{"x":178462,"y":182397},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":178459,"y":182405},{"x":-5,"y":8}],"type":"area"},{"arc":[{"x":178454,"y":182413},{"x":-7,"y":21}],"type":"coastline"},{"arc":[{"x":175899,"y":181362},{"x":73,"y":-137},{"x":-28,"y":-57},{"x":7,"y":-82},{"x":77,"y":-36},{"x":-37,"y":-64},{"x":4,"y":-97},{"x":81,"y":-95},{"x":38,"y":-112},{"x":125,"y":-17},{"x":9,"y":-92},{"x":-65,"y":-103},{"x":-54,"y":-30},{"x":-161,"y":-12},{"x":85,"y":-265},{"x":-16,"y":-41},{"x":-42,"y":-14},{"x":-27,"y":23},{"x":-15,"y":-19},{"x":-11,"y":-56},{"x":62,"y":-130},{"x":-47,"y":-19},{"x":88,"y":-58},{"x":-3,"y":-125},{"x":80,"y":-23},{"x":-11,"y":-59},{"x":69,"y":-63},{"x":17,"y":-111},{"x":80,"y":-121}],"type":"admin"},{"arc":[{"x":176277,"y":179347},{"x":68,"y":-53},{"x":139,"y":14},{"x":179,"y":139},{"x":110,"y":-66},{"x":124,"y":-19},{"x":39,"y":-56},{"x":91,"y":-1},{"x":178,"y":77},{"x":78,"y":-65}],"type":"admin"},{"arc":[{"x":177283,"y":179317},{"x":42,"y":50},{"x":-2,"y":74},{"x":-47,"y":36},{"x":19,"y":42},{"x":-45,"y":63},{"x":52,"y":59},{"x":9,"y":76},{"x":-38,"y":43},{"x":10,"y":153},{"x":-36,"y":100},{"x":8,"y":58},{"x":57,"y":58},{"x":-27,"y":92},{"x":14,"y":108},{"x":84,"y":76},{"x":68,"y":-22},{"x":26,"y":29},{"x":-15,"y":205},{"x":44,"y":15},{"x":83,"y":138},{"x":102,"y":38},{"x":190,"y":-40},{"x":145,"y":85},{"x":71,"y":-13},{"x":85,"y":77},{"x":33,"y":143}],"type":"admin"},{"arc":[{"x":177312,"y":184244},{"x":-23,"y":-64},{"x":-63,"y":55},{"x":-36,"y":-100},{"x":-44,"y":65},{"x":-69,"y":32}],"type":"area"},{"arc":[{"x":177516,"y":183573},{"x":26,"y":111},{"x":-44,"y":92},{"x":32,"y":90},{"x":-75,"y":72},{"x":-12,"y":58},{"x":-55,"y":-2},{"x":-3,"y":38},{"x":62,"y":34},{"x":-51,"y":55},{"x":-22,"y":-6},{"x":-62,"y":129}],"type":"area"},{"arc":[{"x":178304,"y":184583},{"x":3,"y":-106},{"x":-119,"y":-20},{"x":-86,"y":-134},{"x":-105,"y":-42},{"x":-78,"y":-3},{"x":-154,"y":-65},{"x":-120,"y":68},{"x":-56,"y":-33},{"x":-41,"y":19},{"x":-126,"y":-37},{"x":-97,"y":46},{"x":-13,"y":-32}],"type":"area"},{"arc":[{"x":178370,"y":183034},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":178372,"y":183039},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":178373,"y":183042},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":178375,"y":183048},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178376,"y":183049},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":178376,"y":183051},{"x":3,"y":4}],"type":"area"},{"arc":[{"x":178379,"y":183055},{"x":9,"y":16}],"type":"coastline"},{"arc":[{"x":178388,"y":183071},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":178389,"y":183074},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":178390,"y":183083},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178390,"y":183088},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":178390,"y":183097},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":178391,"y":183100},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":178395,"y":183106},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178395,"y":183111},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":178396,"y":183114},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178397,"y":183116},{"x":-6,"y":3}],"type":"area"},{"arc":[{"x":178391,"y":183119},{"x":-4,"y":19}],"type":"coastline"},{"arc":[{"x":178387,"y":183138},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":178383,"y":183146},{"x":1,"y":16}],"type":"area"},{"arc":[{"x":178384,"y":183162},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":178386,"y":183173},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":178387,"y":183177},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":178389,"y":183178},{"x":13,"y":18}],"type":"coastline"},{"arc":[{"x":178402,"y":183196},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178404,"y":183200},{"x":0,"y":13}],"type":"coastline"},{"arc":[{"x":178404,"y":183213},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":178415,"y":183215},{"x":8,"y":-4}],"type":"area"},{"arc":[{"x":178423,"y":183211},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":178429,"y":183208},{"x":9,"y":-3}],"type":"coastline"},{"arc":[{"x":178438,"y":183205},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":178446,"y":183201},{"x":6,"y":-2}],"type":"area"},{"arc":[{"x":178452,"y":183199},{"x":18,"y":-2}],"type":"coastline"},{"arc":[{"x":178470,"y":183197},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":178471,"y":183197},{"x":19,"y":-4}],"type":"coastline"},{"arc":[{"x":178490,"y":183193},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":178497,"y":183193},{"x":10,"y":-4}],"type":"coastline"},{"arc":[{"x":178507,"y":183189},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":178508,"y":183188},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":178514,"y":183185},{"x":14,"y":-9}],"type":"coastline"},{"arc":[{"x":178528,"y":183176},{"x":7,"y":-3}],"type":"area"},{"arc":[{"x":178535,"y":183173},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":178539,"y":183173},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":178545,"y":183172},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":178551,"y":183171},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":178553,"y":183171},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":178559,"y":183172},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":178562,"y":183173},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":178573,"y":183177},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178576,"y":183177},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":178587,"y":183175},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":178592,"y":183174},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":178596,"y":183173},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":178601,"y":183171},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":178603,"y":183171},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":178609,"y":183169},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":178622,"y":183167},{"x":4,"y":-1}],"type":"area"},{"arc":[{"x":178626,"y":183166},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":178636,"y":183164},{"x":15,"y":-5}],"type":"coastline"},{"arc":[{"x":178651,"y":183159},{"x":4,"y":-1}],"type":"area"},{"arc":[{"x":178655,"y":183158},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":178668,"y":183160},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":178675,"y":183166},{"x":3,"y":4}],"type":"area"},{"arc":[{"x":178678,"y":183170},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":178679,"y":183174},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":178681,"y":183176},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":178685,"y":183180},{"x":8,"y":8}],"type":"area"},{"arc":[{"x":178693,"y":183188},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":178701,"y":183194},{"x":9,"y":8}],"type":"coastline"},{"arc":[{"x":178710,"y":183202},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":178713,"y":183206},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":178714,"y":183219},{"x":-2,"y":12}],"type":"coastline"},{"arc":[{"x":178712,"y":183231},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178711,"y":183233},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":178706,"y":183240},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":178704,"y":183242},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":178702,"y":183244},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":178703,"y":183247},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178703,"y":183252},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":178703,"y":183258},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":178706,"y":183266},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":178706,"y":183275},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":178705,"y":183285},{"x":-2,"y":5}],"type":"area"},{"arc":[{"x":178703,"y":183290},{"x":0,"y":12}],"type":"coastline"},{"arc":[{"x":178703,"y":183302},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":178704,"y":183308},{"x":2,"y":4}],"type":"area"},{"arc":[{"x":178706,"y":183312},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":178705,"y":183318},{"x":-9,"y":4}],"type":"area"},{"arc":[{"x":178696,"y":183322},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":178689,"y":183325},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":178681,"y":183329},{"x":-13,"y":7}],"type":"coastline"},{"arc":[{"x":178668,"y":183336},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":178665,"y":183337},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":178660,"y":183337},{"x":-7,"y":1}],"type":"area"},{"arc":[{"x":178653,"y":183338},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":178648,"y":183340},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":178645,"y":183341},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":178640,"y":183344},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178640,"y":183345},{"x":-7,"y":12}],"type":"coastline"},{"arc":[{"x":178633,"y":183357},{"x":-2,"y":5}],"type":"area"},{"arc":[{"x":178631,"y":183362},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":178628,"y":183368},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":178626,"y":183370},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":178621,"y":183380},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":178620,"y":183382},{"x":-1,"y":5}],"type":"area"},{"arc":[{"x":178619,"y":183387},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":178618,"y":183390},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178617,"y":183395},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":178614,"y":183404},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178613,"y":183406},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":178607,"y":183411},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":178606,"y":183417},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":178604,"y":183423},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178604,"y":183428},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178603,"y":183430},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178602,"y":183434},{"x":-2,"y":12}],"type":"coastline"},{"arc":[{"x":178600,"y":183446},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":178598,"y":183451},{"x":-4,"y":3}],"type":"area"},{"arc":[{"x":178594,"y":183454},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":178590,"y":183454},{"x":-12,"y":5}],"type":"coastline"},{"arc":[{"x":178578,"y":183459},{"x":1,"y":5}],"type":"area"},{"arc":[{"x":178579,"y":183464},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":178581,"y":183469},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":178582,"y":183475},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":178582,"y":183482},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":178580,"y":183490},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":178581,"y":183497},{"x":-3,"y":20}],"type":"coastline"},{"arc":[{"x":178578,"y":183517},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":178577,"y":183527},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":178577,"y":183530},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178576,"y":183535},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":178575,"y":183536},{"x":-5,"y":13}],"type":"coastline"},{"arc":[{"x":178570,"y":183549},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":178569,"y":183552},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":178563,"y":183561},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178561,"y":183565},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":178559,"y":183567},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178556,"y":183567},{"x":-6,"y":6}],"type":"area"},{"arc":[{"x":178550,"y":183573},{"x":-6,"y":16}],"type":"coastline"},{"arc":[{"x":178544,"y":183589},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":178544,"y":183590},{"x":-5,"y":14}],"type":"coastline"},{"arc":[{"x":178539,"y":183604},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":178538,"y":183607},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":178536,"y":183612},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":178535,"y":183616},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":178531,"y":183626},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":178524,"y":183631},{"x":-3,"y":6}],"type":"area"},{"arc":[{"x":178521,"y":183637},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":178514,"y":183648},{"x":-4,"y":4}],"type":"area"},{"arc":[{"x":178510,"y":183652},{"x":15,"y":9}],"type":"coastline"},{"arc":[{"x":178525,"y":183661},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":178532,"y":183662},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":178545,"y":183664},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":178547,"y":183665},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":178553,"y":183667},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":178558,"y":183669},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":178564,"y":183673},{"x":6,"y":7}],"type":"coastline"},{"arc":[{"x":178570,"y":183680},{"x":2,"y":3}],"type":"area"},{"arc":[{"x":178572,"y":183683},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":178574,"y":183685},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":178576,"y":183694},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":178578,"y":183699},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":178581,"y":183703},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":178585,"y":183709},{"x":6,"y":7}],"type":"coastline"},{"arc":[{"x":178591,"y":183716},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178592,"y":183718},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":178591,"y":183722},{"x":-2,"y":7}],"type":"area"},{"arc":[{"x":178589,"y":183729},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":178584,"y":183733},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":178580,"y":183733},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":178577,"y":183735},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":178576,"y":183736},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":178575,"y":183737},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":178570,"y":183738},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":178567,"y":183739},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":178559,"y":183742},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":178554,"y":183749},{"x":-10,"y":6}],"type":"coastline"},{"arc":[{"x":178544,"y":183755},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":178540,"y":183754},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":178532,"y":183755},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":178524,"y":183758},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":178516,"y":183763},{"x":-4,"y":10}],"type":"area"},{"arc":[{"x":178512,"y":183773},{"x":-5,"y":17}],"type":"coastline"},{"arc":[{"x":178507,"y":183790},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":178503,"y":183795},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":178495,"y":183789},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":178490,"y":183787},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":178488,"y":183787},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":178483,"y":183790},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178481,"y":183794},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":178479,"y":183803},{"x":10,"y":11}],"type":"coastline"},{"arc":[{"x":178489,"y":183814},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178490,"y":183815},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":178496,"y":183819},{"x":-7,"y":12}],"type":"coastline"},{"arc":[{"x":178489,"y":183831},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":178489,"y":183835},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":178485,"y":183843},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":178484,"y":183845},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178484,"y":183848},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":178485,"y":183857},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":178484,"y":183866},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":178481,"y":183871},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":178480,"y":183874},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":178478,"y":183879},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178478,"y":183880},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":178475,"y":183882},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":178470,"y":183885},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":178469,"y":183886},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":178468,"y":183889},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":178470,"y":183891},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":178472,"y":183892},{"x":19,"y":1}],"type":"coastline"},{"arc":[{"x":178491,"y":183893},{"x":9,"y":9}],"type":"coastline"},{"arc":[{"x":178500,"y":183902},{"x":0,"y":12}],"type":"coastline"},{"arc":[{"x":178500,"y":183914},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":178505,"y":183922},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":178505,"y":183923},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":178504,"y":183925},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":178500,"y":183926},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":178495,"y":183926},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":178483,"y":183927},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":178484,"y":183930},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":178485,"y":183934},{"x":1,"y":14}],"type":"coastline"},{"arc":[{"x":178486,"y":183948},{"x":-5,"y":2}],"type":"area"},{"arc":[{"x":178481,"y":183950},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":178479,"y":183955},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178481,"y":183959},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":178483,"y":183961},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":178490,"y":183965},{"x":3,"y":9}],"type":"area"},{"arc":[{"x":178493,"y":183974},{"x":2,"y":19}],"type":"coastline"},{"arc":[{"x":178495,"y":183993},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":178496,"y":184002},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":178497,"y":184005},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":178498,"y":184010},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178499,"y":184012},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":178502,"y":184017},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":178505,"y":184023},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178506,"y":184025},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":178511,"y":184029},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":178519,"y":184033},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":178520,"y":184035},{"x":14,"y":17}],"type":"coastline"},{"arc":[{"x":178534,"y":184052},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178535,"y":184053},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":178544,"y":184053},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":178547,"y":184054},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":178552,"y":184058},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":178557,"y":184061},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":178560,"y":184064},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":178563,"y":184071},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":178568,"y":184077},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":178574,"y":184076},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":178575,"y":184077},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":178576,"y":184077},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":178580,"y":184085},{"x":5,"y":5}],"type":"area"},{"arc":[{"x":178585,"y":184090},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":178590,"y":184097},{"x":7,"y":20}],"type":"coastline"},{"arc":[{"x":178597,"y":184117},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":178596,"y":184121},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":178598,"y":184126},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":178603,"y":184137},{"x":9,"y":14}],"type":"coastline"},{"arc":[{"x":178612,"y":184151},{"x":2,"y":3}],"type":"area"},{"arc":[{"x":178614,"y":184154},{"x":9,"y":7}],"type":"coastline"},{"arc":[{"x":178623,"y":184161},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":178626,"y":184159},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":178635,"y":184155},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":178643,"y":184152},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":178653,"y":184152},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":178660,"y":184156},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":178657,"y":184164},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":178655,"y":184168},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":178659,"y":184168},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":178668,"y":184166},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":178673,"y":184163},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":178680,"y":184158},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":178685,"y":184156},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":178690,"y":184153},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":178699,"y":184147},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":178701,"y":184146},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":178705,"y":184145},{"x":4,"y":1}],"type":"area"},{"arc":[{"x":178709,"y":184146},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":178718,"y":184144},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":178720,"y":184144},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":178730,"y":184144},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":178735,"y":184142},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":178743,"y":184140},{"x":6,"y":3}],"type":"area"},{"arc":[{"x":178749,"y":184143},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":178749,"y":184148},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":178751,"y":184152},{"x":1,"y":6}],"type":"area"},{"arc":[{"x":178752,"y":184158},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":178752,"y":184161},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":178750,"y":184164},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":178761,"y":184167},{"x":12,"y":-3}],"type":"coastline"},{"arc":[{"x":178773,"y":184164},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":178779,"y":184162},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":178780,"y":184162},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":178786,"y":184155},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":178788,"y":184154},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":178791,"y":184153},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":178799,"y":184150},{"x":14,"y":-2}],"type":"coastline"},{"arc":[{"x":178813,"y":184148},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":178817,"y":184149},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178818,"y":184150},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178821,"y":184150},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":178826,"y":184152},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":178822,"y":184156},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":178818,"y":184157},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":178810,"y":184158},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":178808,"y":184158},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":178807,"y":184160},{"x":0,"y":3}],"type":"area"},{"arc":[{"x":178807,"y":184163},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":178806,"y":184168},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":178809,"y":184172},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":178814,"y":184174},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":178815,"y":184175},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":178819,"y":184177},{"x":2,"y":3}],"type":"area"},{"arc":[{"x":178821,"y":184180},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178824,"y":184180},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":178826,"y":184173},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":178827,"y":184173},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":178830,"y":184174},{"x":-3,"y":14}],"type":"coastline"},{"arc":[{"x":178827,"y":184188},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":178828,"y":184190},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":178831,"y":184194},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":178834,"y":184199},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":177631,"y":185083},{"x":-83,"y":-120}],"type":"area"},{"arc":[{"x":179946,"y":182285},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":179946,"y":182296},{"x":-9,"y":15}],"type":"coastline"},{"arc":[{"x":179937,"y":182311},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":179939,"y":182317},{"x":-4,"y":21}],"type":"coastline"},{"arc":[{"x":179935,"y":182338},{"x":7,"y":11}],"type":"coastline"},{"arc":[{"x":179942,"y":182349},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":179940,"y":182358},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":179941,"y":182368},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":179940,"y":182373},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":179933,"y":182381},{"x":-1,"y":20}],"type":"coastline"},{"arc":[{"x":179928,"y":182408},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":179927,"y":182415},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":179921,"y":182420},{"x":-5,"y":11}],"type":"coastline"},{"arc":[{"x":179916,"y":182431},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":179916,"y":182438},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":179918,"y":182446},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":179909,"y":182460},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":179910,"y":182474},{"x":3,"y":18}],"type":"coastline"},{"arc":[{"x":179913,"y":182492},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":179911,"y":182496},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":179902,"y":182501},{"x":7,"y":20}],"type":"coastline"},{"arc":[{"x":179909,"y":182521},{"x":4,"y":17}],"type":"coastline"},{"arc":[{"x":179913,"y":182539},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":179913,"y":182557},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":179912,"y":182570},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":179912,"y":182574},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":179913,"y":182579},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":179918,"y":182590},{"x":2,"y":22}],"type":"coastline"},{"arc":[{"x":179917,"y":182626},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":179917,"y":182640},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":179918,"y":182644},{"x":-11,"y":37}],"type":"coastline"},{"arc":[{"x":179907,"y":182684},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":179907,"y":182690},{"x":1,"y":21}],"type":"coastline"},{"arc":[{"x":179908,"y":182711},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":179916,"y":182717},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":179924,"y":182724},{"x":4,"y":13}],"type":"coastline"},{"arc":[{"x":179928,"y":182737},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":179925,"y":182742},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":179923,"y":182746},{"x":-48,"y":41}],"type":"coastline"},{"arc":[{"x":179875,"y":182787},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":179873,"y":182801},{"x":4,"y":13}],"type":"coastline"},{"arc":[{"x":179878,"y":182817},{"x":-8,"y":11}],"type":"coastline"},{"arc":[{"x":179869,"y":182828},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":179865,"y":182838},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":179861,"y":182843},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":179856,"y":182851},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":179856,"y":182856},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":179857,"y":182862},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":179852,"y":182871},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":179843,"y":182884},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":179844,"y":182895},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":179844,"y":182909},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":179843,"y":182928},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":179841,"y":182937},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":179841,"y":182938},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":179840,"y":182945},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":179841,"y":182958},{"x":-2,"y":12}],"type":"coastline"},{"arc":[{"x":179836,"y":182973},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":179830,"y":182982},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":179828,"y":182988},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":179827,"y":182993},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":179823,"y":183001},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":179821,"y":183004},{"x":-7,"y":10}],"type":"coastline"},{"arc":[{"x":179813,"y":183015},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":179810,"y":183017},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":179798,"y":183030},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":179794,"y":183036},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":179789,"y":183048},{"x":-5,"y":18}],"type":"coastline"},{"arc":[{"x":179784,"y":183066},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":179776,"y":183076},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":179775,"y":183079},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":179774,"y":183083},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":179773,"y":183084},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":179770,"y":183089},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":179764,"y":183098},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":179759,"y":183103},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179754,"y":183105},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":179753,"y":183109},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":179750,"y":183112},{"x":-7,"y":13}],"type":"coastline"},{"arc":[{"x":179740,"y":183131},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":179737,"y":183139},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":179735,"y":183141},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":179732,"y":183145},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":179731,"y":183153},{"x":-10,"y":20}],"type":"coastline"},{"arc":[{"x":179721,"y":183173},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":179719,"y":183175},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":179715,"y":183179},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":179711,"y":183185},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":179708,"y":183193},{"x":-8,"y":8}],"type":"coastline"},{"arc":[{"x":179695,"y":183207},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":179692,"y":183216},{"x":-8,"y":8}],"type":"coastline"},{"arc":[{"x":179684,"y":183224},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":179679,"y":183227},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":179674,"y":183229},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":179670,"y":183223},{"x":3,"y":-16}],"type":"coastline"},{"arc":[{"x":179673,"y":183205},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":179673,"y":183199},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":179667,"y":183190},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":179664,"y":183190},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":179654,"y":183187},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":179648,"y":183181},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":179640,"y":183181},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":179637,"y":183181},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":179634,"y":183182},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":179627,"y":183182},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":179616,"y":183178},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":179613,"y":183185},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":179613,"y":183190},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":179614,"y":183199},{"x":-7,"y":19}],"type":"coastline"},{"arc":[{"x":179607,"y":183224},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":179612,"y":183233},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":179613,"y":183244},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":179612,"y":183246},{"x":-10,"y":9}],"type":"coastline"},{"arc":[{"x":179602,"y":183255},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":179599,"y":183259},{"x":1,"y":19}],"type":"coastline"},{"arc":[{"x":179600,"y":183278},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":179600,"y":183282},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":179597,"y":183291},{"x":-4,"y":12}],"type":"coastline"},{"arc":[{"x":179593,"y":183303},{"x":6,"y":12}],"type":"coastline"},{"arc":[{"x":179599,"y":183315},{"x":3,"y":14}],"type":"coastline"},{"arc":[{"x":179602,"y":183329},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":179603,"y":183337},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":179604,"y":183343},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":179605,"y":183354},{"x":0,"y":16}],"type":"coastline"},{"arc":[{"x":179605,"y":183370},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":179607,"y":183379},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":179607,"y":183387},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":179610,"y":183392},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":179611,"y":183397},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179599,"y":183393},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":179596,"y":183390},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":179591,"y":183386},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":179582,"y":183383},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":179579,"y":183382},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":179574,"y":183385},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":179564,"y":183383},{"x":-8,"y":8}],"type":"coastline"},{"arc":[{"x":179555,"y":183392},{"x":-13,"y":12}],"type":"coastline"},{"arc":[{"x":179541,"y":183406},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":179538,"y":183415},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":179534,"y":183421},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":179531,"y":183427},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":179528,"y":183431},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":179525,"y":183439},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":179524,"y":183442},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":179521,"y":183448},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":179512,"y":183455},{"x":-15,"y":3}],"type":"coastline"},{"arc":[{"x":179497,"y":183458},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":179496,"y":183458},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":179490,"y":183466},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":179483,"y":183473},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":179475,"y":183480},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":179476,"y":183485},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":179478,"y":183492},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":179479,"y":183501},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":179479,"y":183503},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":179478,"y":183514},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":179475,"y":183517},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":179476,"y":183520},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":179478,"y":183525},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":179475,"y":183538},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":179474,"y":183542},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":179474,"y":183546},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":179461,"y":183544},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":179456,"y":183540},{"x":-6,"y":-7}],"type":"coastline"},{"arc":[{"x":179450,"y":183533},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":179439,"y":183526},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":179434,"y":183519},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":179433,"y":183517},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":179431,"y":183515},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":179428,"y":183517},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":179424,"y":183519},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":179419,"y":183524},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":179420,"y":183531},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":179419,"y":183544},{"x":-6,"y":20}],"type":"coastline"},{"arc":[{"x":179413,"y":183564},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":179407,"y":183571},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":179405,"y":183574},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":179401,"y":183580},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":179397,"y":183591},{"x":-9,"y":10}],"type":"coastline"},{"arc":[{"x":179386,"y":183604},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":179380,"y":183610},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":179383,"y":183611},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":179385,"y":183609},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":179391,"y":183606},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":179398,"y":183608},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":179402,"y":183615},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":179403,"y":183623},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":179401,"y":183629},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":179397,"y":183639},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":179395,"y":183648},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":179394,"y":183667},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":179394,"y":183672},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":179384,"y":183683},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":179376,"y":183690},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":179374,"y":183693},{"x":-4,"y":11}],"type":"coastline"},{"arc":[{"x":179369,"y":183705},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":179365,"y":183708},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":179356,"y":183714},{"x":-6,"y":32}],"type":"coastline"},{"arc":[{"x":179350,"y":183746},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":179350,"y":183749},{"x":-3,"y":11}],"type":"coastline"},{"arc":[{"x":179347,"y":183762},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":179340,"y":183768},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":179339,"y":183776},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":179338,"y":183783},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":179335,"y":183787},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":179335,"y":183793},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":179332,"y":183797},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":179328,"y":183802},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":179331,"y":183806},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":179334,"y":183808},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":179336,"y":183811},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":179330,"y":183818},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":179327,"y":183823},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":179324,"y":183825},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":179325,"y":183829},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":179325,"y":183839},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":179325,"y":183843},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":179325,"y":183854},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":179323,"y":183871},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":179319,"y":183879},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":179315,"y":183883},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":179314,"y":183883},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179310,"y":183884},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":179311,"y":183890},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":179318,"y":183897},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":179320,"y":183901},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":179317,"y":183907},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":179313,"y":183909},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":179313,"y":183916},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":179314,"y":183918},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":179312,"y":183920},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179308,"y":183921},{"x":-10,"y":9}],"type":"coastline"},{"arc":[{"x":179298,"y":183930},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":179290,"y":183934},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":179290,"y":183940},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":179289,"y":183948},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":179287,"y":183951},{"x":-2,"y":17}],"type":"coastline"},{"arc":[{"x":179285,"y":183968},{"x":-7,"y":16}],"type":"coastline"},{"arc":[{"x":179278,"y":183984},{"x":-14,"y":10}],"type":"coastline"},{"arc":[{"x":179264,"y":183994},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":179261,"y":183995},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":179259,"y":184000},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":179259,"y":184003},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":179253,"y":184005},{"x":0,"y":15}],"type":"coastline"},{"arc":[{"x":179253,"y":184022},{"x":-10,"y":20}],"type":"coastline"},{"arc":[{"x":179243,"y":184042},{"x":-8,"y":22}],"type":"coastline"},{"arc":[{"x":179235,"y":184064},{"x":-13,"y":11}],"type":"coastline"},{"arc":[{"x":179220,"y":184077},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":179210,"y":184080},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":179208,"y":184081},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":179206,"y":184085},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":179203,"y":184086},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":179200,"y":184085},{"x":-11,"y":-5}],"type":"coastline"},{"arc":[{"x":179189,"y":184080},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":179186,"y":184078},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":179179,"y":184077},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":179171,"y":184084},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":179168,"y":184084},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":179159,"y":184088},{"x":-28,"y":12}],"type":"coastline"},{"arc":[{"x":179130,"y":184102},{"x":-13,"y":7}],"type":"coastline"},{"arc":[{"x":179115,"y":184109},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":179112,"y":184110},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":179111,"y":184113},{"x":-8,"y":8}],"type":"coastline"},{"arc":[{"x":179103,"y":184121},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":179102,"y":184121},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":179101,"y":184121},{"x":-5,"y":13}],"type":"coastline"},{"arc":[{"x":179093,"y":184138},{"x":-9,"y":9}],"type":"coastline"},{"arc":[{"x":179084,"y":184147},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":179074,"y":184150},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":179068,"y":184152},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":179063,"y":184153},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":179064,"y":184149},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":179071,"y":184144},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":179079,"y":184140},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":179083,"y":184135},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":179078,"y":184129},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":179068,"y":184127},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":179063,"y":184126},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":179056,"y":184128},{"x":-18,"y":13}],"type":"coastline"},{"arc":[{"x":179037,"y":184143},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179031,"y":184144},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":179028,"y":184137},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":179029,"y":184128},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":179028,"y":184124},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":179014,"y":184128},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":178997,"y":184130},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":178995,"y":184131},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":178992,"y":184132},{"x":-16,"y":3}],"type":"coastline"},{"arc":[{"x":178975,"y":184135},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":178971,"y":184138},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":178966,"y":184145},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":178963,"y":184146},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178959,"y":184148},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":178953,"y":184155},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":178949,"y":184160},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":178941,"y":184164},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":178928,"y":184158},{"x":-17,"y":-2}],"type":"coastline"},{"arc":[{"x":178906,"y":184153},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":178900,"y":184150},{"x":-8,"y":-5}],"type":"coastline"},{"arc":[{"x":178892,"y":184145},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":178881,"y":184144},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":178878,"y":184151},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":178876,"y":184153},{"x":-9,"y":10}],"type":"coastline"},{"arc":[{"x":178867,"y":184163},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":178860,"y":184178},{"x":-4,"y":12}],"type":"coastline"},{"arc":[{"x":178856,"y":184190},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":178850,"y":184193},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":178840,"y":184201},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":178834,"y":184199},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":178831,"y":184194},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":178827,"y":184188},{"x":3,"y":-14}],"type":"coastline"},{"arc":[{"x":178830,"y":184174},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":178826,"y":184173},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":178824,"y":184180},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178819,"y":184177},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":178814,"y":184174},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":178809,"y":184172},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":178806,"y":184168},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178807,"y":184160},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":178810,"y":184158},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":178822,"y":184156},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":178821,"y":184150},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178817,"y":184149},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":178813,"y":184148},{"x":-14,"y":2}],"type":"coastline"},{"arc":[{"x":178799,"y":184150},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":178791,"y":184153},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":178788,"y":184154},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":178786,"y":184155},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":178779,"y":184162},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":178773,"y":184164},{"x":-12,"y":3}],"type":"coastline"},{"arc":[{"x":178761,"y":184167},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":178750,"y":184164},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178752,"y":184161},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178751,"y":184152},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178749,"y":184148},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178743,"y":184140},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":178735,"y":184142},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":178730,"y":184144},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":178718,"y":184144},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":178705,"y":184145},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":178699,"y":184147},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":178690,"y":184153},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":178685,"y":184156},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":178680,"y":184158},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":178673,"y":184163},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":178668,"y":184166},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":178659,"y":184168},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":178655,"y":184168},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178657,"y":184164},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":178660,"y":184156},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":178653,"y":184152},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":178643,"y":184152},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":178635,"y":184155},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":178623,"y":184161},{"x":-9,"y":-7}],"type":"coastline"},{"arc":[{"x":178612,"y":184151},{"x":-9,"y":-14}],"type":"coastline"},{"arc":[{"x":178603,"y":184137},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":178598,"y":184126},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":178597,"y":184117},{"x":-7,"y":-20}],"type":"coastline"},{"arc":[{"x":178590,"y":184097},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":178580,"y":184085},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":178576,"y":184077},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":178575,"y":184077},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":178574,"y":184076},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":178568,"y":184077},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":178563,"y":184071},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":178560,"y":184064},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":178552,"y":184058},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":178544,"y":184053},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":178534,"y":184052},{"x":-14,"y":-17}],"type":"coastline"},{"arc":[{"x":178520,"y":184035},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178519,"y":184033},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":178511,"y":184029},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":178505,"y":184023},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":178502,"y":184017},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":178498,"y":184010},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":178496,"y":184002},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":178495,"y":183993},{"x":-2,"y":-19}],"type":"coastline"},{"arc":[{"x":178490,"y":183965},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":178481,"y":183959},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178479,"y":183955},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":178486,"y":183948},{"x":-1,"y":-14}],"type":"coastline"},{"arc":[{"x":178485,"y":183934},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":178484,"y":183930},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":178483,"y":183927},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":178495,"y":183926},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":178504,"y":183925},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":178505,"y":183922},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":178500,"y":183914},{"x":0,"y":-12}],"type":"coastline"},{"arc":[{"x":178500,"y":183902},{"x":-9,"y":-9}],"type":"coastline"},{"arc":[{"x":178491,"y":183893},{"x":-19,"y":-1}],"type":"coastline"},{"arc":[{"x":178472,"y":183892},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":178470,"y":183891},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":178468,"y":183889},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":178470,"y":183885},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":178475,"y":183882},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":178478,"y":183879},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":178481,"y":183871},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":178484,"y":183866},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":178485,"y":183857},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":178484,"y":183848},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178485,"y":183843},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":178489,"y":183835},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":178489,"y":183831},{"x":7,"y":-12}],"type":"coastline"},{"arc":[{"x":178496,"y":183819},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":178489,"y":183814},{"x":-10,"y":-11}],"type":"coastline"},{"arc":[{"x":178479,"y":183803},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":178481,"y":183794},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178483,"y":183790},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":178490,"y":183787},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":178495,"y":183789},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":178503,"y":183795},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":178507,"y":183790},{"x":5,"y":-17}],"type":"coastline"},{"arc":[{"x":178516,"y":183763},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":178524,"y":183758},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":178532,"y":183755},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":178544,"y":183755},{"x":10,"y":-6}],"type":"coastline"},{"arc":[{"x":178554,"y":183749},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":178559,"y":183742},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":178570,"y":183738},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":178576,"y":183736},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":178577,"y":183735},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":178580,"y":183733},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":178584,"y":183733},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":178591,"y":183722},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178591,"y":183716},{"x":-6,"y":-7}],"type":"coastline"},{"arc":[{"x":178585,"y":183709},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":178581,"y":183703},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":178578,"y":183699},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":178576,"y":183694},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":178574,"y":183685},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":178570,"y":183680},{"x":-6,"y":-7}],"type":"coastline"},{"arc":[{"x":178564,"y":183673},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":178553,"y":183667},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":178545,"y":183664},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":178532,"y":183662},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":178525,"y":183661},{"x":-15,"y":-9}],"type":"coastline"},{"arc":[{"x":178514,"y":183648},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":178524,"y":183631},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":178531,"y":183626},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":178536,"y":183612},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":178539,"y":183604},{"x":5,"y":-14}],"type":"coastline"},{"arc":[{"x":178544,"y":183590},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":178544,"y":183589},{"x":6,"y":-16}],"type":"coastline"},{"arc":[{"x":178556,"y":183567},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178559,"y":183567},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":178561,"y":183565},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178563,"y":183561},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":178570,"y":183549},{"x":5,"y":-13}],"type":"coastline"},{"arc":[{"x":178575,"y":183536},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":178576,"y":183535},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178577,"y":183527},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":178578,"y":183517},{"x":3,"y":-20}],"type":"coastline"},{"arc":[{"x":178580,"y":183490},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":178582,"y":183482},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":178582,"y":183475},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":178581,"y":183469},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":178578,"y":183459},{"x":12,"y":-5}],"type":"coastline"},{"arc":[{"x":178590,"y":183454},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":178598,"y":183451},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":178600,"y":183446},{"x":2,"y":-12}],"type":"coastline"},{"arc":[{"x":178602,"y":183434},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178604,"y":183428},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178606,"y":183417},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":178607,"y":183411},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":178614,"y":183404},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":178617,"y":183395},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178618,"y":183390},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":178620,"y":183382},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":178621,"y":183380},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":178628,"y":183368},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":178633,"y":183357},{"x":7,"y":-12}],"type":"coastline"},{"arc":[{"x":178640,"y":183344},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":178648,"y":183340},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":178660,"y":183337},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":178668,"y":183336},{"x":13,"y":-7}],"type":"coastline"},{"arc":[{"x":178681,"y":183329},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":178689,"y":183325},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":178705,"y":183318},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":178704,"y":183308},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":178703,"y":183302},{"x":0,"y":-12}],"type":"coastline"},{"arc":[{"x":178705,"y":183285},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":178706,"y":183275},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":178706,"y":183266},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":178703,"y":183258},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":178703,"y":183252},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178702,"y":183244},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":178706,"y":183240},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":178712,"y":183231},{"x":2,"y":-12}],"type":"coastline"},{"arc":[{"x":178714,"y":183219},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":178713,"y":183206},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":178710,"y":183202},{"x":-9,"y":-8}],"type":"coastline"},{"arc":[{"x":178701,"y":183194},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":178685,"y":183180},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":178681,"y":183176},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":178679,"y":183174},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":178675,"y":183166},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":178668,"y":183160},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":178651,"y":183159},{"x":-15,"y":5}],"type":"coastline"},{"arc":[{"x":178636,"y":183164},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":178622,"y":183167},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":178609,"y":183169},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":178603,"y":183171},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":178601,"y":183171},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":178596,"y":183173},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":178592,"y":183174},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":178587,"y":183175},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":178576,"y":183177},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178573,"y":183177},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":178562,"y":183173},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":178559,"y":183172},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":178551,"y":183171},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":178545,"y":183172},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":178539,"y":183173},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":178528,"y":183176},{"x":-14,"y":9}],"type":"coastline"},{"arc":[{"x":178514,"y":183185},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":178507,"y":183189},{"x":-10,"y":4}],"type":"coastline"},{"arc":[{"x":178497,"y":183193},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":178490,"y":183193},{"x":-19,"y":4}],"type":"coastline"},{"arc":[{"x":178470,"y":183197},{"x":-18,"y":2}],"type":"coastline"},{"arc":[{"x":178446,"y":183201},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":178438,"y":183205},{"x":-9,"y":3}],"type":"coastline"},{"arc":[{"x":178429,"y":183208},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":178415,"y":183215},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":178404,"y":183213},{"x":0,"y":-13}],"type":"coastline"},{"arc":[{"x":178404,"y":183200},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178402,"y":183196},{"x":-13,"y":-18}],"type":"coastline"},{"arc":[{"x":178387,"y":183177},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":178386,"y":183173},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":178383,"y":183146},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":178387,"y":183138},{"x":4,"y":-19}],"type":"coastline"},{"arc":[{"x":178397,"y":183116},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178396,"y":183114},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":178395,"y":183111},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178395,"y":183106},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":178390,"y":183097},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":178390,"y":183088},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178390,"y":183083},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":178388,"y":183071},{"x":-9,"y":-16}],"type":"coastline"},{"arc":[{"x":178376,"y":183051},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":178375,"y":183048},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178372,"y":183039},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":178369,"y":183033},{"x":-9,"y":-10}],"type":"coastline"},{"arc":[{"x":178360,"y":183023},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":178357,"y":183016},{"x":-9,"y":-14}],"type":"coastline"},{"arc":[{"x":178348,"y":183002},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":178346,"y":182999},{"x":-11,"y":-14}],"type":"coastline"},{"arc":[{"x":178334,"y":182983},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":178323,"y":182967},{"x":-9,"y":-13}],"type":"coastline"},{"arc":[{"x":178314,"y":182954},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":178312,"y":182951},{"x":-11,"y":-21}],"type":"coastline"},{"arc":[{"x":178301,"y":182930},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":178296,"y":182921},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178294,"y":182917},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178294,"y":182914},{"x":-7,"y":-14}],"type":"coastline"},{"arc":[{"x":178287,"y":182900},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":178283,"y":182894},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178281,"y":182890},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":178277,"y":182880},{"x":-9,"y":-12}],"type":"coastline"},{"arc":[{"x":178268,"y":182868},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":178264,"y":182862},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178264,"y":182857},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178268,"y":182846},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178273,"y":182843},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":178280,"y":182839},{"x":5,"y":-11}],"type":"coastline"},{"arc":[{"x":178285,"y":182828},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":178286,"y":182827},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178287,"y":182822},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":178292,"y":182811},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":178298,"y":182807},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":178299,"y":182800},{"x":-7,"y":-22}],"type":"coastline"},{"arc":[{"x":178292,"y":182778},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":178290,"y":182772},{"x":-6,"y":-10}],"type":"coastline"},{"arc":[{"x":178284,"y":182762},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178290,"y":182758},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178294,"y":182756},{"x":12,"y":4}],"type":"coastline"},{"arc":[{"x":178308,"y":182760},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":178309,"y":182753},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":178309,"y":182749},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":178312,"y":182746},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":178315,"y":182735},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178316,"y":182730},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":178318,"y":182722},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":178320,"y":182717},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":178317,"y":182709},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":178315,"y":182706},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":178312,"y":182696},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":178320,"y":182686},{"x":2,"y":-21}],"type":"coastline"},{"arc":[{"x":178322,"y":182665},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":178318,"y":182656},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":178317,"y":182656},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":178314,"y":182649},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178316,"y":182646},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178320,"y":182637},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":178321,"y":182629},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":178324,"y":182622},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":178326,"y":182611},{"x":-8,"y":-16}],"type":"coastline"},{"arc":[{"x":178318,"y":182595},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":178319,"y":182588},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":178318,"y":182580},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178318,"y":182573},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178318,"y":182570},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":178317,"y":182564},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":178316,"y":182551},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178318,"y":182548},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":178321,"y":182544},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":178327,"y":182535},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":178332,"y":182534},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":178336,"y":182532},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":178340,"y":182529},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":178350,"y":182530},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":178355,"y":182530},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178362,"y":182527},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178365,"y":182527},{"x":16,"y":2}],"type":"coastline"},{"arc":[{"x":178383,"y":182532},{"x":21,"y":-7}],"type":"coastline"},{"arc":[{"x":178404,"y":182525},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178404,"y":182517},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":178402,"y":182509},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":178404,"y":182502},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178405,"y":182498},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":178411,"y":182492},{"x":11,"y":-15}],"type":"coastline"},{"arc":[{"x":178423,"y":182475},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":178427,"y":182470},{"x":1,"y":-15}],"type":"coastline"},{"arc":[{"x":178428,"y":182455},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":178435,"y":182450},{"x":12,"y":-16}],"type":"coastline"},{"arc":[{"x":178447,"y":182434},{"x":7,"y":-21}],"type":"coastline"},{"arc":[{"x":178459,"y":182405},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":178462,"y":182397},{"x":7,"y":-14}],"type":"coastline"},{"arc":[{"x":178469,"y":182383},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":178468,"y":182380},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":178462,"y":182379},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":178459,"y":182378},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":178452,"y":182371},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":178456,"y":182363},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178455,"y":182361},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":178453,"y":182354},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":178454,"y":182346},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178453,"y":182344},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":178446,"y":182341},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":178443,"y":182325},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178441,"y":182320},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":178441,"y":182314},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178441,"y":182311},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178441,"y":182308},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":178440,"y":182305},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":178439,"y":182296},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":178442,"y":182290},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":178445,"y":182284},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178447,"y":182280},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":178451,"y":182276},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178453,"y":182270},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178453,"y":182265},{"x":3,"y":-11}],"type":"coastline"},{"arc":[{"x":178456,"y":182244},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178456,"y":182236},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178458,"y":182229},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178459,"y":182221},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":178456,"y":182208},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":178456,"y":182201},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178459,"y":182192},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178457,"y":182186},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":178458,"y":182180},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178458,"y":182175},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":178457,"y":182172},{"x":-6,"y":-14}],"type":"coastline"},{"arc":[{"x":178451,"y":182158},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":178450,"y":182150},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":178449,"y":182149},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":178442,"y":182153},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":178438,"y":182163},{"x":-6,"y":8}],"type":"coastline"},{"arc":[{"x":178428,"y":182175},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178421,"y":182179},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":178418,"y":182182},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":178413,"y":182184},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":178407,"y":182188},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":178403,"y":182190},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":178395,"y":182189},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":178385,"y":182185},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":178382,"y":182178},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":178377,"y":182173},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":178371,"y":182168},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178369,"y":182162},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":178368,"y":182156},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":178368,"y":182150},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178369,"y":182145},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":178365,"y":182141},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178364,"y":182139},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":178361,"y":182137},{"x":-9,"y":-9}],"type":"coastline"},{"arc":[{"x":178347,"y":182124},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":178340,"y":182119},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":178333,"y":182113},{"x":-10,"y":-7}],"type":"coastline"},{"arc":[{"x":178323,"y":182106},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":178318,"y":182101},{"x":-15,"y":-28}],"type":"coastline"},{"arc":[{"x":178303,"y":182073},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":178304,"y":182066},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":178308,"y":182057},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178310,"y":182052},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":178315,"y":182040},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":178323,"y":182023},{"x":-5,"y":-22}],"type":"coastline"},{"arc":[{"x":178317,"y":181999},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":178318,"y":181989},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":178319,"y":181979},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":178325,"y":181967},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":178329,"y":181959},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178326,"y":181951},{"x":-7,"y":-18}],"type":"coastline"},{"arc":[{"x":178317,"y":181931},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":178314,"y":181921},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":178303,"y":181911},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":178302,"y":181903},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178303,"y":181898},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178306,"y":181893},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":178309,"y":181884},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":178309,"y":181881},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":178310,"y":181877},{"x":12,"y":-5}],"type":"coastline"},{"arc":[{"x":178323,"y":181874},{"x":21,"y":6}],"type":"coastline"},{"arc":[{"x":178344,"y":181880},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":178346,"y":181879},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":178349,"y":181871},{"x":3,"y":-13}],"type":"coastline"},{"arc":[{"x":178352,"y":181858},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":178359,"y":181855},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":178367,"y":181858},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":178370,"y":181858},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":178375,"y":181854},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":178377,"y":181850},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":178381,"y":181845},{"x":11,"y":-20}],"type":"coastline"},{"arc":[{"x":178395,"y":181824},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":178404,"y":181820},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":178414,"y":181825},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":178420,"y":181826},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":178425,"y":181819},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":178424,"y":181808},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":178422,"y":181800},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":178418,"y":181793},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":178412,"y":181788},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":178410,"y":181784},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":178408,"y":181776},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":178411,"y":181764},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178417,"y":181754},{"x":16,"y":-11}],"type":"coastline"},{"arc":[{"x":178433,"y":181743},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":178428,"y":181733},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178426,"y":181727},{"x":-4,"y":-13}],"type":"coastline"},{"arc":[{"x":178422,"y":181714},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":178421,"y":181708},{"x":-10,"y":-12}],"type":"coastline"},{"arc":[{"x":178409,"y":181695},{"x":-17,"y":-2}],"type":"coastline"},{"arc":[{"x":178387,"y":181690},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":178383,"y":181678},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178384,"y":181671},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178385,"y":181667},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":178387,"y":181660},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":178392,"y":181655},{"x":5,"y":-19}],"type":"coastline"},{"arc":[{"x":178397,"y":181636},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":178391,"y":181628},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178389,"y":181622},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178389,"y":181617},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":178387,"y":181611},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":178385,"y":181606},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":178390,"y":181598},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178391,"y":181593},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178390,"y":181591},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":178388,"y":181588},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":178387,"y":181578},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":178390,"y":181573},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":178397,"y":181562},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":178402,"y":181554},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":178403,"y":181553},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":178410,"y":181547},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":178417,"y":181541},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":178422,"y":181536},{"x":17,"y":-21}],"type":"coastline"},{"arc":[{"x":178439,"y":181515},{"x":12,"y":-19}],"type":"coastline"},{"arc":[{"x":178451,"y":181496},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":178449,"y":181480},{"x":-8,"y":-15}],"type":"coastline"},{"arc":[{"x":178441,"y":181465},{"x":-10,"y":-12}],"type":"coastline"},{"arc":[{"x":178430,"y":181451},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":178429,"y":181449},{"x":-14,"y":-21}],"type":"coastline"},{"arc":[{"x":178415,"y":181428},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":178405,"y":181418},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":178397,"y":181407},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":178398,"y":181401},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":178396,"y":181394},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":178397,"y":181387},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":178406,"y":181369},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":178406,"y":181365},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":178409,"y":181355},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178410,"y":181351},{"x":-4,"y":-13}],"type":"coastline"},{"arc":[{"x":178406,"y":181336},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178407,"y":181332},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":178404,"y":181326},{"x":-13,"y":-14}],"type":"coastline"},{"arc":[{"x":178389,"y":181310},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":178385,"y":181308},{"x":-15,"y":-6}],"type":"coastline"},{"arc":[{"x":178370,"y":181302},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":178365,"y":181296},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":178362,"y":181295},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":178357,"y":181292},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":178359,"y":181286},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":178365,"y":181286},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":178372,"y":181283},{"x":14,"y":2}],"type":"coastline"},{"arc":[{"x":178386,"y":181285},{"x":13,"y":-7}],"type":"coastline"},{"arc":[{"x":178399,"y":181278},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":178402,"y":181272},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":178408,"y":181260},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":178405,"y":181257},{"x":-11,"y":-5}],"type":"coastline"},{"arc":[{"x":178390,"y":181253},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":178385,"y":181250},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":178381,"y":181246},{"x":-16,"y":-20}],"type":"coastline"},{"arc":[{"x":178365,"y":181226},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":178365,"y":181219},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":178369,"y":181203},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":178367,"y":181192},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":178369,"y":181187},{"x":0,"y":-17}],"type":"coastline"},{"arc":[{"x":178369,"y":181170},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":178372,"y":181162},{"x":4,"y":-13}],"type":"coastline"},{"arc":[{"x":178376,"y":181149},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":178379,"y":181144},{"x":0,"y":-24}],"type":"coastline"},{"arc":[{"x":178382,"y":181110},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":178387,"y":181099},{"x":0,"y":-36}],"type":"coastline"},{"arc":[{"x":178389,"y":181063},{"x":7,"y":6}],"type":"admin"},{"arc":[{"x":178396,"y":181069},{"x":32,"y":31}],"type":"coastline"},{"arc":[{"x":178428,"y":181100},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":178433,"y":181105},{"x":17,"y":7}],"type":"admin"},{"arc":[{"x":178450,"y":181112},{"x":25,"y":8}],"type":"coastline"},{"arc":[{"x":178475,"y":181120},{"x":16,"y":15}],"type":"coastline"},{"arc":[{"x":178491,"y":181135},{"x":6,"y":18}],"type":"admin"},{"arc":[{"x":178497,"y":181153},{"x":4,"y":11}],"type":"coastline"},{"arc":[{"x":178501,"y":181164},{"x":15,"y":27}],"type":"coastline"},{"arc":[{"x":178516,"y":181191},{"x":8,"y":20}],"type":"coastline"},{"arc":[{"x":178524,"y":181211},{"x":13,"y":11}],"type":"admin"},{"arc":[{"x":178537,"y":181222},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":178543,"y":181230},{"x":8,"y":38}],"type":"coastline"},{"arc":[{"x":178551,"y":181268},{"x":19,"y":19}],"type":"coastline"},{"arc":[{"x":178570,"y":181287},{"x":14,"y":-1}],"type":"admin"},{"arc":[{"x":178584,"y":181286},{"x":15,"y":-3}],"type":"coastline"},{"arc":[{"x":178599,"y":181283},{"x":59,"y":18}],"type":"coastline"},{"arc":[{"x":178658,"y":181301},{"x":16,"y":2}],"type":"coastline"},{"arc":[{"x":178674,"y":181303},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":178681,"y":181305},{"x":21,"y":1}],"type":"coastline"},{"arc":[{"x":178702,"y":181306},{"x":17,"y":1}],"type":"coastline"},{"arc":[{"x":178719,"y":181307},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":178727,"y":181307},{"x":10,"y":8}],"type":"coastline"},{"arc":[{"x":178737,"y":181315},{"x":17,"y":13}],"type":"coastline"},{"arc":[{"x":178754,"y":181328},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":178758,"y":181333},{"x":9,"y":8}],"type":"admin"},{"arc":[{"x":178767,"y":181341},{"x":19,"y":11}],"type":"coastline"},{"arc":[{"x":178786,"y":181352},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":178787,"y":181352},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":178792,"y":181357},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":178792,"y":181359},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":178795,"y":181363},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":178801,"y":181367},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":178809,"y":181370},{"x":11,"y":6}],"type":"coastline"},{"arc":[{"x":178820,"y":181376},{"x":11,"y":8}],"type":"admin"},{"arc":[{"x":178831,"y":181384},{"x":6,"y":7}],"type":"coastline"},{"arc":[{"x":178837,"y":181391},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":178842,"y":181396},{"x":10,"y":9}],"type":"coastline"},{"arc":[{"x":178852,"y":181405},{"x":10,"y":8}],"type":"coastline"},{"arc":[{"x":178862,"y":181413},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":178873,"y":181416},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":178883,"y":181416},{"x":9,"y":0}],"type":"admin"},{"arc":[{"x":178892,"y":181416},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":178900,"y":181415},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":178904,"y":181415},{"x":18,"y":-5}],"type":"coastline"},{"arc":[{"x":178922,"y":181410},{"x":8,"y":-5}],"type":"admin"},{"arc":[{"x":178930,"y":181405},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":178937,"y":181401},{"x":12,"y":-1}],"type":"admin"},{"arc":[{"x":178949,"y":181400},{"x":13,"y":0}],"type":"coastline"},{"arc":[{"x":178962,"y":181400},{"x":15,"y":-6}],"type":"coastline"},{"arc":[{"x":178977,"y":181394},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":178979,"y":181393},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":178982,"y":181393},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":178995,"y":181391},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":178997,"y":181391},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":178998,"y":181391},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":179001,"y":181391},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":179004,"y":181393},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":179006,"y":181394},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":179011,"y":181396},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":179013,"y":181396},{"x":19,"y":9}],"type":"coastline"},{"arc":[{"x":179032,"y":181405},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":179038,"y":181404},{"x":9,"y":-9}],"type":"coastline"},{"arc":[{"x":179047,"y":181395},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":179051,"y":181394},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":179060,"y":181398},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":179063,"y":181398},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":179071,"y":181396},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":179077,"y":181397},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":179080,"y":181398},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179084,"y":181397},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":179088,"y":181393},{"x":15,"y":-5}],"type":"coastline"},{"arc":[{"x":179103,"y":181388},{"x":13,"y":-3}],"type":"coastline"},{"arc":[{"x":179116,"y":181385},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":179119,"y":181383},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":179123,"y":181379},{"x":19,"y":-13}],"type":"coastline"},{"arc":[{"x":179142,"y":181366},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":179144,"y":181363},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":179145,"y":181360},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":179146,"y":181357},{"x":16,"y":-10}],"type":"coastline"},{"arc":[{"x":179162,"y":181347},{"x":4,"y":-5}],"type":"admin"},{"arc":[{"x":179166,"y":181342},{"x":10,"y":-5}],"type":"coastline"},{"arc":[{"x":179176,"y":181337},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":179181,"y":181336},{"x":13,"y":4}],"type":"coastline"},{"arc":[{"x":179194,"y":181340},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":179199,"y":181342},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":179208,"y":181342},{"x":21,"y":3}],"type":"coastline"},{"arc":[{"x":179229,"y":181345},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":179232,"y":181343},{"x":38,"y":-20}],"type":"coastline"},{"arc":[{"x":179270,"y":181323},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":179274,"y":181322},{"x":31,"y":1}],"type":"coastline"},{"arc":[{"x":179305,"y":181323},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":179314,"y":181324},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":179315,"y":181324},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":179323,"y":181325},{"x":4,"y":1}],"type":"admin"},{"arc":[{"x":179327,"y":181326},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":179340,"y":181328},{"x":6,"y":2}],"type":"admin"},{"arc":[{"x":179346,"y":181330},{"x":20,"y":6}],"type":"coastline"},{"arc":[{"x":179366,"y":181336},{"x":3,"y":1}],"type":"admin"},{"arc":[{"x":179369,"y":181337},{"x":16,"y":11}],"type":"coastline"},{"arc":[{"x":179385,"y":181348},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":179386,"y":181349},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":179395,"y":181353},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":179398,"y":181354},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":179400,"y":181355},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":179406,"y":181356},{"x":21,"y":-7}],"type":"coastline"},{"arc":[{"x":179427,"y":181349},{"x":18,"y":-15}],"type":"coastline"},{"arc":[{"x":179445,"y":181334},{"x":13,"y":-24}],"type":"coastline"},{"arc":[{"x":179458,"y":181310},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":179461,"y":181305},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":179469,"y":181304},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":179471,"y":181303},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":179479,"y":181304},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":179483,"y":181301},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":179492,"y":181300},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":179496,"y":181299},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":179500,"y":181297},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":179502,"y":181296},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":179507,"y":181294},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":179509,"y":181293},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":179510,"y":181293},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":179512,"y":181287},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179513,"y":181286},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":179517,"y":181281},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":179521,"y":181282},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":179522,"y":181283},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":179522,"y":181285},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":179522,"y":181287},{"x":14,"y":30}],"type":"coastline"},{"arc":[{"x":179536,"y":181317},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":179538,"y":181318},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":179538,"y":181320},{"x":21,"y":2}],"type":"coastline"},{"arc":[{"x":179559,"y":181322},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":179563,"y":181322},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":179566,"y":181322},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":179568,"y":181322},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":179572,"y":181320},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":179575,"y":181319},{"x":5,"y":1}],"type":"admin"},{"arc":[{"x":179580,"y":181320},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":179588,"y":181316},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":179589,"y":181315},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":179596,"y":181315},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":179599,"y":181314},{"x":17,"y":-6}],"type":"coastline"},{"arc":[{"x":179616,"y":181308},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":179618,"y":181307},{"x":12,"y":-3}],"type":"coastline"},{"arc":[{"x":179630,"y":181304},{"x":16,"y":0}],"type":"coastline"},{"arc":[{"x":179646,"y":181304},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":179651,"y":181304},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":179658,"y":181306},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":179666,"y":181307},{"x":10,"y":3}],"type":"coastline"},{"arc":[{"x":179676,"y":181310},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":179678,"y":181310},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":179682,"y":181308},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":179690,"y":181308},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":179694,"y":181308},{"x":14,"y":0}],"type":"coastline"},{"arc":[{"x":179708,"y":181308},{"x":11,"y":7}],"type":"coastline"},{"arc":[{"x":179719,"y":181315},{"x":4,"y":3}],"type":"admin"},{"arc":[{"x":179723,"y":181318},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":179726,"y":181321},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":179736,"y":181322},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":179741,"y":181322},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":179743,"y":181323},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":179754,"y":181326},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":179757,"y":181329},{"x":1,"y":1}],"type":"admin"},{"arc":[{"x":179758,"y":181330},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":179761,"y":181334},{"x":2,"y":3}],"type":"admin"},{"arc":[{"x":179763,"y":181337},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":179757,"y":181357},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":179754,"y":181366},{"x":0,"y":19}],"type":"coastline"},{"arc":[{"x":179754,"y":181385},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":179758,"y":181393},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":179778,"y":181403},{"x":24,"y":25}],"type":"coastline"},{"arc":[{"x":179801,"y":181442},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":179803,"y":181450},{"x":6,"y":18}],"type":"coastline"},{"arc":[{"x":179809,"y":181468},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":179819,"y":181483},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":179817,"y":181486},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":179814,"y":181493},{"x":2,"y":12}],"type":"coastline"},{"arc":[{"x":179816,"y":181508},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":179816,"y":181515},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":179814,"y":181517},{"x":-13,"y":24}],"type":"coastline"},{"arc":[{"x":179801,"y":181541},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":179808,"y":181551},{"x":9,"y":14}],"type":"coastline"},{"arc":[{"x":179817,"y":181565},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":179819,"y":181578},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":179817,"y":181586},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":179814,"y":181598},{"x":0,"y":12}],"type":"coastline"},{"arc":[{"x":179814,"y":181610},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":179812,"y":181622},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":179804,"y":181632},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":179805,"y":181639},{"x":8,"y":9}],"type":"coastline"},{"arc":[{"x":179813,"y":181648},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":179820,"y":181656},{"x":11,"y":6}],"type":"coastline"},{"arc":[{"x":179831,"y":181662},{"x":10,"y":5}],"type":"coastline"},{"arc":[{"x":179841,"y":181667},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":179847,"y":181678},{"x":5,"y":17}],"type":"coastline"},{"arc":[{"x":179852,"y":181698},{"x":4,"y":27}],"type":"coastline"},{"arc":[{"x":179856,"y":181725},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":179856,"y":181736},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":179855,"y":181744},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":179860,"y":181756},{"x":2,"y":18}],"type":"coastline"},{"arc":[{"x":179861,"y":181794},{"x":-2,"y":20}],"type":"coastline"},{"arc":[{"x":179859,"y":181817},{"x":9,"y":12}],"type":"coastline"},{"arc":[{"x":179868,"y":181829},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":179876,"y":181836},{"x":3,"y":27}],"type":"coastline"},{"arc":[{"x":179875,"y":181865},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":179869,"y":181867},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":179861,"y":181870},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":179857,"y":181880},{"x":1,"y":20}],"type":"coastline"},{"arc":[{"x":179858,"y":181900},{"x":-1,"y":34}],"type":"coastline"},{"arc":[{"x":179860,"y":181955},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":179860,"y":181962},{"x":-2,"y":17}],"type":"coastline"},{"arc":[{"x":179858,"y":181979},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":179861,"y":181985},{"x":20,"y":14}],"type":"coastline"},{"arc":[{"x":179882,"y":181999},{"x":10,"y":7}],"type":"coastline"},{"arc":[{"x":179894,"y":182008},{"x":10,"y":10}],"type":"coastline"},{"arc":[{"x":179904,"y":182018},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":179903,"y":182031},{"x":7,"y":15}],"type":"coastline"},{"arc":[{"x":179908,"y":182053},{"x":-7,"y":13}],"type":"coastline"},{"arc":[{"x":179899,"y":182072},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":179892,"y":182083},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":179890,"y":182088},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":179887,"y":182097},{"x":-7,"y":19}],"type":"coastline"},{"arc":[{"x":179879,"y":182124},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":179884,"y":182129},{"x":10,"y":10}],"type":"coastline"},{"arc":[{"x":179894,"y":182139},{"x":8,"y":5}],"type":"coastline"},{"arc":[{"x":179902,"y":182144},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":179914,"y":182153},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":179920,"y":182165},{"x":14,"y":17}],"type":"coastline"},{"arc":[{"x":179934,"y":182182},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":179936,"y":182190},{"x":9,"y":27}],"type":"coastline"},{"arc":[{"x":179946,"y":182217},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":179949,"y":182225},{"x":6,"y":39}],"type":"coastline"},{"arc":[{"x":179955,"y":182264},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":179954,"y":182273},{"x":-7,"y":10}],"type":"coastline"},{"arc":[{"x":175461,"y":185250},{"x":-71,"y":65},{"x":-144,"y":22},{"x":-55,"y":-32}],"type":"area"},{"arc":[{"x":175191,"y":185305},{"x":-28,"y":38},{"x":-25,"y":-33},{"x":-53,"y":-1},{"x":-39,"y":47},{"x":-62,"y":-68},{"x":-91,"y":63},{"x":-57,"y":9},{"x":-81,"y":-29},{"x":-72,"y":-82},{"x":-111,"y":35}],"type":"admin"},{"arc":[{"x":174572,"y":185284},{"x":-103,"y":9},{"x":-50,"y":-29},{"x":-13,"y":38},{"x":-99,"y":-23},{"x":-79,"y":47},{"x":-38,"y":-45},{"x":-60,"y":-2},{"x":-49,"y":44},{"x":-97,"y":-61},{"x":-9,"y":-223},{"x":52,"y":-92},{"x":-42,"y":-118},{"x":136,"y":-335},{"x":0,"y":-29},{"x":-64,"y":-20},{"x":-37,"y":-83},{"x":-28,"y":2},{"x":17,"y":73},{"x":-82,"y":74},{"x":7,"y":38},{"x":-134,"y":122},{"x":-13,"y":86},{"x":-82,"y":-85},{"x":18,"y":-79},{"x":88,"y":-126},{"x":44,"y":-271},{"x":41,"y":-40},{"x":-89,"y":-188},{"x":140,"y":-41},{"x":98,"y":-111},{"x":38,"y":-185}],"type":"admin"},{"arc":[{"x":174083,"y":183631},{"x":126,"y":-47},{"x":29,"y":-45},{"x":190,"y":-11},{"x":73,"y":-53},{"x":72,"y":79},{"x":62,"y":-13},{"x":50,"y":66},{"x":133,"y":-6},{"x":83,"y":-58},{"x":44,"y":17},{"x":57,"y":-58},{"x":45,"y":11},{"x":53,"y":82},{"x":58,"y":-8},{"x":86,"y":-239},{"x":74,"y":-68},{"x":-27,"y":-135},{"x":-42,"y":-28},{"x":46,"y":-179},{"x":25,"y":-40},{"x":145,"y":-50}],"type":"admin"},{"arc":[{"x":177166,"y":185986},{"x":-134,"y":0},{"x":-15,"y":41},{"x":-16,"y":-36},{"x":4,"y":54},{"x":-19,"y":-65},{"x":-287,"y":-54},{"x":-208,"y":-9}],"type":"coastline"},{"arc":[{"x":176491,"y":185917},{"x":19,"y":-264},{"x":-28,"y":-52},{"x":-41,"y":8},{"x":-8,"y":-63},{"x":152,"y":-19},{"x":-23,"y":-65},{"x":23,"y":-6},{"x":-1,"y":-59},{"x":-58,"y":-70},{"x":-59,"y":-159}],"type":"area"},{"arc":[{"x":176491,"y":185917},{"x":-338,"y":-3},{"x":-580,"y":76},{"x":-10,"y":22},{"x":-7,"y":-20},{"x":-40,"y":3},{"x":-53,"y":10},{"x":2,"y":21},{"x":-21,"y":-16},{"x":-89,"y":20},{"x":4,"y":33},{"x":-15,"y":-21},{"x":-32,"y":19},{"x":46,"y":22},{"x":-99,"y":-3}],"type":"coastline"},{"arc":[{"x":175259,"y":186080},{"x":-53,"y":-114},{"x":76,"y":-55},{"x":-5,"y":-142},{"x":84,"y":-9},{"x":-170,"y":-455}],"type":"admin"},{"arc":[{"x":181196,"y":187573},{"x":-29,"y":29},{"x":6,"y":-36},{"x":23,"y":7}],"type":"coastline"},{"arc":[{"x":181211,"y":187613},{"x":-23,"y":90},{"x":-18,"y":-32},{"x":41,"y":-58}],"type":"coastline"},{"arc":[{"x":181227,"y":187520},{"x":6,"y":16},{"x":-36,"y":10},{"x":4,"y":-33},{"x":26,"y":7}],"type":"coastline"},{"arc":[{"x":181344,"y":187591},{"x":-15,"y":46},{"x":5,"y":-17},{"x":-18,"y":-6},{"x":11,"y":29},{"x":-15,"y":-18},{"x":16,"y":-50},{"x":14,"y":0},{"x":-2,"y":-8},{"x":4,"y":24}],"type":"coastline"},{"arc":[{"x":182185,"y":187938},{"x":-26,"y":24},{"x":23,"y":32}],"type":"admin"},{"arc":[{"x":181378,"y":188098},{"x":-13,"y":-60},{"x":94,"y":-149},{"x":-78,"y":18},{"x":-49,"y":87},{"x":-8,"y":-94},{"x":-64,"y":16},{"x":-31,"y":-37},{"x":30,"y":-28},{"x":28,"y":12},{"x":26,"y":-73},{"x":17,"y":-6},{"x":-2,"y":41},{"x":32,"y":-12},{"x":6,"y":-85},{"x":36,"y":-27},{"x":-14,"y":-53},{"x":-50,"y":-14},{"x":24,"y":0},{"x":6,"y":-46},{"x":-15,"y":-27},{"x":-89,"y":-39},{"x":-22,"y":-94},{"x":-185,"y":7},{"x":12,"y":24},{"x":-38,"y":22},{"x":-20,"y":-16},{"x":26,"y":-60},{"x":-29,"y":1}],"type":"coastline"},{"arc":[{"x":181008,"y":187406},{"x":59,"y":-102},{"x":52,"y":2},{"x":176,"y":-67},{"x":-72,"y":-121},{"x":59,"y":-149}],"type":"area"},{"arc":[{"x":181282,"y":186969},{"x":81,"y":83},{"x":87,"y":9},{"x":172,"y":112},{"x":48,"y":2},{"x":76,"y":101},{"x":61,"y":-16},{"x":25,"y":43},{"x":35,"y":-16},{"x":173,"y":91},{"x":9,"y":40},{"x":61,"y":8},{"x":2,"y":23},{"x":13,"y":-34},{"x":32,"y":2}],"type":"area"},{"arc":[{"x":180457,"y":187163},{"x":15,"y":55},{"x":59,"y":48},{"x":-49,"y":43},{"x":58,"y":-15},{"x":17,"y":36},{"x":-23,"y":6},{"x":22,"y":23},{"x":-26,"y":40},{"x":112,"y":87},{"x":-29,"y":99},{"x":-59,"y":33},{"x":-55,"y":-7},{"x":-40,"y":35},{"x":5,"y":-18},{"x":-22,"y":5},{"x":-10,"y":29},{"x":28,"y":-9},{"x":-85,"y":69},{"x":-97,"y":-54},{"x":38,"y":-76},{"x":-43,"y":-84},{"x":-78,"y":-60},{"x":-53,"y":2},{"x":-8,"y":-42},{"x":-10,"y":22},{"x":-1,"y":-78},{"x":-52,"y":-43},{"x":31,"y":10},{"x":-27,"y":-78}],"type":"coastline"},{"arc":[{"x":180722,"y":187568},{"x":-31,"y":7},{"x":14,"y":-33},{"x":-41,"y":-36},{"x":40,"y":-24},{"x":18,"y":86}],"type":"coastline"},{"arc":[{"x":181008,"y":187406},{"x":5,"y":-79},{"x":-38,"y":79},{"x":1,"y":-24},{"x":-25,"y":8},{"x":27,"y":-24},{"x":-24,"y":7},{"x":-18,"y":-27},{"x":32,"y":2},{"x":-30,"y":-42},{"x":37,"y":-14},{"x":-10,"y":-32},{"x":26,"y":14},{"x":4,"y":-53},{"x":-39,"y":15},{"x":-34,"y":-54},{"x":-52,"y":-13}],"type":"coastline"},{"arc":[{"x":181299,"y":186589},{"x":8,"y":82},{"x":-123,"y":73},{"x":46,"y":28},{"x":-37,"y":50},{"x":9,"y":44},{"x":-40,"y":34},{"x":120,"y":69}],"type":"area"},{"arc":[{"x":182459,"y":186382},{"x":91,"y":0},{"x":71,"y":-114},{"x":39,"y":2},{"x":66,"y":62},{"x":45,"y":-67}],"type":"area"},{"arc":[{"x":182825,"y":184603},{"x":14,"y":149},{"x":95,"y":172},{"x":69,"y":319},{"x":-73,"y":151},{"x":-3,"y":137},{"x":48,"y":77},{"x":83,"y":-18},{"x":10,"y":70}],"type":"area"},{"arc":[{"x":182326,"y":182859},{"x":6,"y":4}],"type":"admin"},{"arc":[{"x":182332,"y":182863},{"x":72,"y":8},{"x":71,"y":244},{"x":102,"y":59},{"x":60,"y":101},{"x":34,"y":27},{"x":65,"y":-11},{"x":60,"y":24},{"x":165,"y":251},{"x":25,"y":22},{"x":65,"y":-4},{"x":80,"y":69},{"x":47,"y":274},{"x":73,"y":151},{"x":74,"y":23},{"x":32,"y":-44},{"x":94,"y":116},{"x":23,"y":-19},{"x":83,"y":61},{"x":72,"y":103},{"x":5,"y":54},{"x":42,"y":32},{"x":-37,"y":106},{"x":14,"y":102},{"x":54,"y":147},{"x":43,"y":-4},{"x":39,"y":141},{"x":-72,"y":73},{"x":41,"y":53},{"x":14,"y":85},{"x":48,"y":-36},{"x":4,"y":45},{"x":-29,"y":24},{"x":26,"y":54},{"x":-73,"y":26},{"x":-20,"y":-22},{"x":-73,"y":51},{"x":9,"y":-30},{"x":-88,"y":29},{"x":-43,"y":180},{"x":-50,"y":-8},{"x":-34,"y":23},{"x":-130,"y":191}],"type":"area"},{"arc":[{"x":182332,"y":182863},{"x":41,"y":-122},{"x":60,"y":-20},{"x":84,"y":17},{"x":114,"y":-54},{"x":44,"y":16},{"x":80,"y":-100},{"x":76,"y":-212},{"x":84,"y":-69},{"x":59,"y":18},{"x":60,"y":-59},{"x":59,"y":71},{"x":62,"y":-26},{"x":68,"y":43},{"x":28,"y":-37},{"x":-14,"y":-61},{"x":52,"y":-76},{"x":133,"y":-9},{"x":55,"y":107},{"x":125,"y":55},{"x":61,"y":-36},{"x":101,"y":127},{"x":150,"y":-80},{"x":80,"y":11},{"x":48,"y":-44},{"x":47,"y":20},{"x":45,"y":-117},{"x":64,"y":-1},{"x":26,"y":40},{"x":32,"y":-1},{"x":77,"y":-102},{"x":83,"y":-24},{"x":53,"y":-69},{"x":68,"y":-9},{"x":61,"y":-52},{"x":195,"y":95}],"type":"admin"},{"arc":[{"x":184793,"y":182103},{"x":-32,"y":83},{"x":11,"y":85},{"x":-124,"y":68},{"x":13,"y":68},{"x":-44,"y":37},{"x":-23,"y":86},{"x":74,"y":138},{"x":114,"y":48},{"x":83,"y":2},{"x":63,"y":35},{"x":18,"y":42},{"x":29,"y":-15},{"x":70,"y":26},{"x":83,"y":64},{"x":22,"y":-12},{"x":42,"y":25},{"x":46,"y":-7},{"x":29,"y":32},{"x":54,"y":-4}],"type":"admin"},{"arc":[{"x":183152,"y":188617},{"x":-50,"y":-50},{"x":-36,"y":-185},{"x":-34,"y":-30},{"x":86,"y":-140},{"x":41,"y":3},{"x":112,"y":-53},{"x":20,"y":-103},{"x":83,"y":-64},{"x":-33,"y":-51},{"x":21,"y":8},{"x":-6,"y":-123},{"x":-31,"y":-8},{"x":13,"y":-46},{"x":27,"y":11},{"x":130,"y":-315},{"x":49,"y":45},{"x":-41,"y":65},{"x":56,"y":1},{"x":-20,"y":161},{"x":41,"y":0},{"x":1,"y":22},{"x":26,"y":-12}],"type":"area"},{"arc":[{"x":181533,"y":193058},{"x":-52,"y":-3},{"x":-31,"y":-55},{"x":25,"y":26},{"x":24,"y":-13},{"x":34,"y":45}],"type":"coastline"},{"arc":[{"x":181666,"y":192918},{"x":-28,"y":29},{"x":29,"y":14},{"x":-36,"y":-2},{"x":-27,"y":30},{"x":-25,"y":-63},{"x":20,"y":-40},{"x":48,"y":17},{"x":-15,"y":30},{"x":34,"y":-15}],"type":"coastline"},{"arc":[{"x":181692,"y":192471},{"x":-23,"y":16},{"x":-6,"y":-20},{"x":29,"y":4}],"type":"coastline"},{"arc":[{"x":181712,"y":192522},{"x":-51,"y":-13},{"x":28,"y":-12},{"x":23,"y":25}],"type":"coastline"},{"arc":[{"x":181942,"y":192925},{"x":-20,"y":24},{"x":-8,"y":-43},{"x":28,"y":19}],"type":"coastline"},{"arc":[{"x":182463,"y":192146},{"x":-76,"y":86},{"x":-47,"y":6},{"x":-27,"y":-22},{"x":10,"y":81},{"x":-54,"y":-32},{"x":-81,"y":58},{"x":-37,"y":-45},{"x":-41,"y":-5},{"x":-9,"y":-39},{"x":14,"y":-25},{"x":-5,"y":22},{"x":20,"y":-14},{"x":16,"y":26},{"x":12,"y":-21},{"x":-28,"y":-26},{"x":46,"y":-43},{"x":75,"y":0},{"x":23,"y":-28},{"x":4,"y":20},{"x":15,"y":-14},{"x":57,"y":30},{"x":10,"y":-29},{"x":55,"y":10},{"x":8,"y":-23},{"x":40,"y":27}],"type":"coastline"},{"arc":[{"x":182646,"y":191920},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":182644,"y":191933},{"x":-25,"y":9},{"x":-111,"y":-91},{"x":16,"y":-84},{"x":-31,"y":-53},{"x":-51,"y":2},{"x":-39,"y":96},{"x":24,"y":68},{"x":-37,"y":10},{"x":12,"y":87},{"x":-38,"y":-15},{"x":-9,"y":-42},{"x":-22,"y":6},{"x":12,"y":-20},{"x":-41,"y":-2},{"x":-6,"y":29},{"x":-47,"y":3},{"x":29,"y":45},{"x":-54,"y":11},{"x":34,"y":62},{"x":50,"y":-2},{"x":-6,"y":31},{"x":-27,"y":-10},{"x":-11,"y":19},{"x":-16,"y":-35},{"x":-57,"y":0},{"x":29,"y":-15},{"x":-40,"y":-71},{"x":8,"y":-53},{"x":-87,"y":-15},{"x":40,"y":-1},{"x":-1,"y":-46},{"x":37,"y":-11},{"x":-82,"y":-54},{"x":22,"y":-49},{"x":25,"y":5},{"x":-27,"y":-41},{"x":34,"y":-13},{"x":-25,"y":-71},{"x":46,"y":-52},{"x":53,"y":-15},{"x":-40,"y":-81},{"x":26,"y":-46},{"x":-33,"y":-10},{"x":-22,"y":6},{"x":-1,"y":68},{"x":-86,"y":50},{"x":-37,"y":60},{"x":-41,"y":8},{"x":-58,"y":-29},{"x":25,"y":86},{"x":-73,"y":36},{"x":-56,"y":-48},{"x":-24,"y":43},{"x":-98,"y":-20},{"x":27,"y":-4},{"x":-15,"y":-25},{"x":-19,"y":20},{"x":-82,"y":-65},{"x":-44,"y":50},{"x":-5,"y":-17},{"x":-11,"y":43},{"x":65,"y":29},{"x":-5,"y":59},{"x":13,"y":-10},{"x":-3,"y":17},{"x":23,"y":13},{"x":5,"y":-21},{"x":4,"y":10},{"x":-12,"y":16},{"x":39,"y":7},{"x":19,"y":66},{"x":81,"y":23},{"x":-9,"y":38},{"x":59,"y":52},{"x":-31,"y":31},{"x":-38,"y":-1},{"x":-90,"y":-38},{"x":-2,"y":30},{"x":-8,"y":-17},{"x":-24,"y":24},{"x":48,"y":14},{"x":-89,"y":3}],"type":"coastline"},{"arc":[{"x":184835,"y":191847},{"x":-22,"y":18},{"x":-15,"y":-37},{"x":37,"y":19}],"type":"coastline"},{"arc":[{"x":185428,"y":192543},{"x":-14,"y":-21},{"x":31,"y":31},{"x":-17,"y":-10}],"type":"coastline"},{"arc":[{"x":186048,"y":192277},{"x":5,"y":33},{"x":-31,"y":16},{"x":30,"y":29},{"x":-66,"y":29},{"x":-8,"y":-47},{"x":-41,"y":-14},{"x":-4,"y":24},{"x":32,"y":12},{"x":-40,"y":22},{"x":16,"y":64},{"x":-59,"y":17},{"x":2,"y":-35},{"x":-32,"y":14},{"x":30,"y":59},{"x":38,"y":10},{"x":-20,"y":63},{"x":31,"y":64},{"x":-80,"y":2},{"x":-36,"y":-45},{"x":-15,"y":41},{"x":-44,"y":14},{"x":-23,"y":-84},{"x":-17,"y":20},{"x":-3,"y":-23},{"x":-41,"y":18},{"x":22,"y":-18},{"x":-19,"y":-14},{"x":-60,"y":20},{"x":-45,"y":80},{"x":-72,"y":-7},{"x":-25,"y":-31},{"x":-70,"y":14},{"x":-31,"y":-46},{"x":-51,"y":21},{"x":-18,"y":-19},{"x":68,"y":-58},{"x":73,"y":51},{"x":97,"y":-56},{"x":30,"y":-90},{"x":-16,"y":14},{"x":-21,"y":-51},{"x":13,"y":-39},{"x":-51,"y":-16},{"x":59,"y":-24},{"x":8,"y":24},{"x":69,"y":-41},{"x":-8,"y":-35},{"x":29,"y":5},{"x":-16,"y":-62},{"x":-14,"y":-14},{"x":-80,"y":44},{"x":-2,"y":-56},{"x":-42,"y":37},{"x":-42,"y":-44},{"x":-28,"y":14},{"x":-23,"y":-43},{"x":-36,"y":-4},{"x":-9,"y":24},{"x":-39,"y":-36},{"x":-27,"y":6},{"x":-50,"y":-74},{"x":73,"y":-29},{"x":-17,"y":-59},{"x":72,"y":-14},{"x":-71,"y":-24},{"x":-2,"y":-74},{"x":-118,"y":75},{"x":-81,"y":-25},{"x":-8,"y":-17},{"x":38,"y":-6},{"x":-9,"y":-43},{"x":6,"y":18},{"x":22,"y":-17},{"x":-44,"y":-70},{"x":43,"y":-10},{"x":27,"y":-61},{"x":-19,"y":-19},{"x":-25,"y":27},{"x":0,"y":-41},{"x":-72,"y":-57},{"x":35,"y":17},{"x":10,"y":-24},{"x":-28,"y":-17},{"x":-13,"y":18},{"x":-10,"y":-43},{"x":-51,"y":14},{"x":50,"y":-15},{"x":-3,"y":-81},{"x":8,"y":53},{"x":49,"y":-62},{"x":-9,"y":-38},{"x":-28,"y":22},{"x":25,"y":-67},{"x":-60,"y":28},{"x":-80,"y":-11},{"x":-62,"y":42},{"x":-142,"y":-94},{"x":-38,"y":21},{"x":12,"y":93},{"x":-23,"y":48},{"x":-37,"y":14},{"x":105,"y":63},{"x":-42,"y":72},{"x":11,"y":62},{"x":-50,"y":75},{"x":42,"y":45},{"x":-36,"y":36},{"x":41,"y":55},{"x":-47,"y":-4},{"x":3,"y":69},{"x":-36,"y":11},{"x":-13,"y":-22},{"x":-11,"y":28},{"x":28,"y":34},{"x":-40,"y":16},{"x":51,"y":85},{"x":-35,"y":3},{"x":-1,"y":110},{"x":-88,"y":-11}],"type":"coastline"},{"arc":[{"x":204410,"y":176148},{"x":-28,"y":-26},{"x":176,"y":149},{"x":-148,"y":-123}],"type":"coastline"},{"arc":[{"x":206613,"y":178067},{"x":-41,"y":103},{"x":-79,"y":47},{"x":-39,"y":-2},{"x":4,"y":73},{"x":-77,"y":56},{"x":-67,"y":107},{"x":-74,"y":37},{"x":-183,"y":-33},{"x":-131,"y":13},{"x":-88,"y":71},{"x":-127,"y":-8},{"x":-25,"y":34},{"x":-45,"y":1},{"x":-4,"y":45},{"x":31,"y":-4},{"x":16,"y":41},{"x":-42,"y":-8},{"x":15,"y":29},{"x":-18,"y":-19},{"x":-39,"y":7},{"x":10,"y":16},{"x":-98,"y":-10},{"x":11,"y":29},{"x":54,"y":3},{"x":-27,"y":19},{"x":-137,"y":-26},{"x":-22,"y":14},{"x":-42,"y":-68},{"x":-41,"y":-1},{"x":-48,"y":55},{"x":0,"y":67},{"x":-47,"y":9},{"x":-8,"y":-29},{"x":-47,"y":-17},{"x":-47,"y":22},{"x":-16,"y":51},{"x":-81,"y":59},{"x":18,"y":39},{"x":-65,"y":129},{"x":21,"y":15},{"x":-68,"y":28},{"x":56,"y":196},{"x":-38,"y":49}],"type":"admin"},{"arc":[{"x":204938,"y":179306},{"x":-73,"y":-26},{"x":-146,"y":97},{"x":-120,"y":-42},{"x":-45,"y":-59},{"x":-12,"y":137},{"x":-69,"y":87},{"x":3,"y":48},{"x":-34,"y":4},{"x":-56,"y":-45},{"x":3,"y":-57},{"x":-37,"y":-46},{"x":15,"y":-119},{"x":-124,"y":-30},{"x":-42,"y":-54},{"x":15,"y":-51},{"x":-36,"y":-69},{"x":-225,"y":-9},{"x":-70,"y":49},{"x":-153,"y":-40},{"x":-110,"y":-64},{"x":-89,"y":23},{"x":-56,"y":-34},{"x":-110,"y":8},{"x":-75,"y":-51},{"x":-184,"y":106},{"x":-54,"y":-55},{"x":-46,"y":-10},{"x":-45,"y":90},{"x":-62,"y":-8},{"x":-22,"y":-32},{"x":-84,"y":-4},{"x":-13,"y":31}],"type":"area"},{"arc":[{"x":202782,"y":179081},{"x":-35,"y":-45},{"x":-64,"y":5},{"x":-37,"y":-103},{"x":-35,"y":17},{"x":-35,"y":-27},{"x":-40,"y":32},{"x":-56,"y":-61}],"type":"admin"},{"arc":[{"x":202480,"y":178899},{"x":24,"y":-67},{"x":138,"y":-141},{"x":115,"y":-20},{"x":15,"y":-83},{"x":-35,"y":-69},{"x":0,"y":-106},{"x":162,"y":36},{"x":25,"y":-92},{"x":132,"y":-19},{"x":91,"y":-87},{"x":67,"y":31},{"x":18,"y":-22},{"x":18,"y":26},{"x":48,"y":-2},{"x":51,"y":61},{"x":27,"y":18},{"x":56,"y":-11},{"x":33,"y":46},{"x":45,"y":0},{"x":38,"y":-91},{"x":-22,"y":-49},{"x":19,"y":-128},{"x":-48,"y":-73},{"x":0,"y":-108},{"x":52,"y":-117},{"x":-45,"y":-76},{"x":7,"y":-49},{"x":87,"y":-101},{"x":88,"y":-31},{"x":30,"y":-60},{"x":-19,"y":-14},{"x":36,"y":-5},{"x":-16,"y":-17},{"x":56,"y":-64},{"x":-9,"y":-110},{"x":105,"y":-145},{"x":-98,"y":-160},{"x":0,"y":-51},{"x":56,"y":-65},{"x":-108,"y":-40},{"x":-64,"y":-66},{"x":-49,"y":0},{"x":-25,"y":-41},{"x":-71,"y":-17},{"x":0,"y":-23},{"x":-51,"y":27},{"x":10,"y":-128},{"x":-20,"y":-2},{"x":31,"y":-56},{"x":-54,"y":-17},{"x":37,"y":-352}],"type":"admin"},{"arc":[{"x":203463,"y":176169},{"x":692,"y":207},{"x":30,"y":-5},{"x":16,"y":-85},{"x":212,"y":47},{"x":27,"y":-107},{"x":-40,"y":175},{"x":137,"y":29},{"x":8,"y":-45},{"x":37,"y":7},{"x":-13,"y":52},{"x":-33,"y":-5},{"x":25,"y":38},{"x":-71,"y":3},{"x":64,"y":26},{"x":76,"y":-25},{"x":-8,"y":235},{"x":38,"y":-146},{"x":-7,"y":-101},{"x":14,"y":-40},{"x":-117,"y":-149},{"x":91,"y":101},{"x":27,"y":47},{"x":-2,"y":33},{"x":51,"y":41},{"x":508,"y":112}],"type":"coastline"},{"arc":[{"x":205225,"y":176614},{"x":-28,"y":47},{"x":11,"y":104},{"x":100,"y":33},{"x":52,"y":77},{"x":-60,"y":62},{"x":-6,"y":50},{"x":-4,"y":-55},{"x":-14,"y":27},{"x":27,"y":183},{"x":-64,"y":-18},{"x":-16,"y":110},{"x":-125,"y":35},{"x":5,"y":46},{"x":62,"y":-1},{"x":-31,"y":94},{"x":-61,"y":1},{"x":0,"y":33},{"x":-66,"y":6},{"x":118,"y":70},{"x":62,"y":146},{"x":25,"y":172},{"x":97,"y":1},{"x":134,"y":49},{"x":78,"y":-46},{"x":77,"y":76},{"x":129,"y":-90},{"x":53,"y":35},{"x":95,"y":-16},{"x":106,"y":62},{"x":63,"y":-50},{"x":107,"y":-12},{"x":146,"y":113},{"x":114,"y":51},{"x":126,"y":19},{"x":64,"y":-29},{"x":12,"y":68}],"type":"admin"},{"arc":[{"x":194078,"y":181512},{"x":-54,"y":18},{"x":-18,"y":80},{"x":-46,"y":12},{"x":-51,"y":75},{"x":-109,"y":68},{"x":-47,"y":122},{"x":-62,"y":56},{"x":-19,"y":93},{"x":40,"y":0},{"x":24,"y":-70},{"x":80,"y":-30},{"x":12,"y":96},{"x":-108,"y":74},{"x":164,"y":47},{"x":47,"y":-2},{"x":15,"y":-34},{"x":38,"y":73},{"x":9,"y":161},{"x":57,"y":41},{"x":-38,"y":213},{"x":-32,"y":47},{"x":16,"y":38},{"x":9,"y":-39},{"x":11,"y":80},{"x":40,"y":44},{"x":-28,"y":51},{"x":-65,"y":11},{"x":-22,"y":57},{"x":-38,"y":-22},{"x":37,"y":98},{"x":77,"y":18},{"x":-6,"y":42},{"x":70,"y":84},{"x":27,"y":94},{"x":42,"y":29}],"type":"admin"},{"arc":[{"x":191864,"y":184378},{"x":-29,"y":-58},{"x":-54,"y":-12},{"x":-47,"y":-71},{"x":-33,"y":-152},{"x":50,"y":-103},{"x":-36,"y":-26},{"x":2,"y":-37},{"x":-79,"y":-46},{"x":-49,"y":-196},{"x":18,"y":-74},{"x":112,"y":-127},{"x":63,"y":-9},{"x":86,"y":-125},{"x":4,"y":-33},{"x":-41,"y":-40},{"x":9,"y":-149},{"x":-25,"y":-66},{"x":-51,"y":14},{"x":-78,"y":-26},{"x":18,"y":-112},{"x":-107,"y":-50},{"x":-4,"y":-36},{"x":-26,"y":78},{"x":-41,"y":-3},{"x":-79,"y":101},{"x":-242,"y":85},{"x":-44,"y":-10},{"x":-13,"y":-28},{"x":-90,"y":69},{"x":22,"y":83},{"x":92,"y":106},{"x":-62,"y":49},{"x":3,"y":93},{"x":-66,"y":38},{"x":-16,"y":45},{"x":-87,"y":7},{"x":-85,"y":-57},{"x":-60,"y":29},{"x":-89,"y":2},{"x":-95,"y":62},{"x":-219,"y":-88}],"type":"admin"},{"arc":[{"x":190396,"y":183505},{"x":31,"y":-119},{"x":60,"y":-80},{"x":-21,"y":-35},{"x":16,"y":-86},{"x":93,"y":-64},{"x":10,"y":-97},{"x":-30,"y":-71},{"x":202,"y":-70},{"x":40,"y":-108},{"x":110,"y":17},{"x":20,"y":31},{"x":47,"y":9},{"x":35,"y":-56},{"x":101,"y":-20},{"x":49,"y":64},{"x":51,"y":-1},{"x":43,"y":-14},{"x":55,"y":-69},{"x":139,"y":-22},{"x":18,"y":21},{"x":89,"y":-76},{"x":-6,"y":-64},{"x":126,"y":-249},{"x":-81,"y":-229},{"x":36,"y":-28},{"x":-6,"y":-23},{"x":-57,"y":0},{"x":-57,"y":57},{"x":-74,"y":-4},{"x":102,"y":-55},{"x":-9,"y":-21},{"x":-78,"y":51},{"x":38,"y":-41},{"x":-30,"y":-32},{"x":-49,"y":8},{"x":-1,"y":-24},{"x":75,"y":-117},{"x":48,"y":-3},{"x":19,"y":-27},{"x":139,"y":-8},{"x":35,"y":70},{"x":57,"y":-32},{"x":106,"y":-168},{"x":-2,"y":-191},{"x":94,"y":-242},{"x":6,"y":-215},{"x":-22,"y":-13}],"type":"area"},{"arc":[{"x":191963,"y":181059},{"x":41,"y":-35},{"x":77,"y":-2},{"x":-6,"y":-122},{"x":64,"y":-41},{"x":1,"y":-43},{"x":56,"y":-6},{"x":17,"y":29},{"x":47,"y":-30},{"x":34,"y":41},{"x":51,"y":-80},{"x":12,"y":-97},{"x":53,"y":19},{"x":57,"y":-86},{"x":96,"y":-20},{"x":-1,"y":-18},{"x":-57,"y":-5},{"x":27,"y":-21},{"x":-23,"y":-4},{"x":-2,"y":-77},{"x":22,"y":-60},{"x":-21,"y":-21},{"x":34,"y":-60},{"x":-14,"y":-117},{"x":-133,"y":-166}],"type":"admin"},{"arc":[{"x":192405,"y":180033},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":192482,"y":179990},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":192505,"y":179942},{"x":5,"y":-11}],"type":"coastline"},{"arc":[{"x":192559,"y":179862},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":192572,"y":179860},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":192579,"y":179859},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":192656,"y":179875},{"x":13,"y":0}],"type":"coastline"},{"arc":[{"x":192711,"y":179919},{"x":10,"y":8}],"type":"coastline"},{"arc":[{"x":192916,"y":179966},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":192924,"y":179977},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":193078,"y":180099},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":193110,"y":180063},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":193113,"y":180056},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":193156,"y":179992},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":193242,"y":179989},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":193247,"y":179991},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":193266,"y":179978},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":193325,"y":179978},{"x":12,"y":4}],"type":"coastline"},{"arc":[{"x":193369,"y":179973},{"x":-2,"y":-12}],"type":"coastline"},{"arc":[{"x":193372,"y":179945},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":193352,"y":179920},{"x":-8,"y":-10}],"type":"coastline"},{"arc":[{"x":193339,"y":179905},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":193337,"y":179892},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":193338,"y":179862},{"x":6,"y":-19}],"type":"coastline"},{"arc":[{"x":193507,"y":179860},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":193519,"y":179861},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":193522,"y":179860},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":193536,"y":179849},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":193549,"y":179841},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":193610,"y":179752},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":193611,"y":179754},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":193633,"y":179764},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":193647,"y":179699},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":193625,"y":179615},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":193630,"y":179602},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":193620,"y":179591},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":193613,"y":179571},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":193618,"y":179570},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":193634,"y":179560},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":193640,"y":179556},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":193649,"y":179554},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":193654,"y":179554},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":193665,"y":179552},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":193690,"y":179548},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":193707,"y":179523},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":193695,"y":179481},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":193695,"y":179472},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":193702,"y":179469},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":193711,"y":179469},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":193712,"y":179466},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":193711,"y":179443},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":193719,"y":179427},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":193713,"y":179407},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":193719,"y":179400},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":193716,"y":179389},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":193751,"y":179360},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":193725,"y":179341},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":193700,"y":179319},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":193722,"y":179236},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":193744,"y":179235},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":193776,"y":179238},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":193811,"y":179269},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":193865,"y":179220},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":193887,"y":179211},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":193911,"y":179218},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":193948,"y":179190},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":193964,"y":179178},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":193993,"y":179168},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":194013,"y":179170},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":194021,"y":179172},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":194023,"y":179181},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":194009,"y":179198},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":193988,"y":179222},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":193986,"y":179279},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":193982,"y":179286},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":193970,"y":179312},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":193953,"y":179354},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":193970,"y":179380},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":193959,"y":179400},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":193954,"y":179404},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":193946,"y":179408},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":193947,"y":179420},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":193958,"y":179433},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":193963,"y":179438},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":193985,"y":179448},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":193990,"y":179457},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":193992,"y":179464},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":193987,"y":179481},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":193948,"y":179498},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":193955,"y":179512},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":193961,"y":179507},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":193975,"y":179499},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":193976,"y":179513},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":194002,"y":179504},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":194002,"y":179496},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":194012,"y":179505},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":194019,"y":179519},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":194014,"y":179541},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":193972,"y":179553},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":193961,"y":179561},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":193973,"y":179568},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":193989,"y":179562},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":194005,"y":179564},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":194027,"y":179603},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":194025,"y":179613},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":194030,"y":179651},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":194024,"y":179669},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":194018,"y":179677},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":194020,"y":179680},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":194027,"y":179699},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":194026,"y":179704},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":194031,"y":179711},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":194067,"y":179763},{"x":-5,"y":30},{"x":-85,"y":47},{"x":14,"y":90},{"x":53,"y":71},{"x":126,"y":35},{"x":61,"y":103},{"x":7,"y":74},{"x":-72,"y":12},{"x":-61,"y":44},{"x":-17,"y":198},{"x":64,"y":0},{"x":67,"y":-57},{"x":59,"y":26},{"x":-32,"y":226},{"x":40,"y":66},{"x":1,"y":106},{"x":37,"y":50},{"x":48,"y":16},{"x":38,"y":154},{"x":-48,"y":46},{"x":35,"y":140},{"x":-88,"y":-9},{"x":2,"y":48},{"x":-157,"y":-51},{"x":-301,"y":-10},{"x":-2,"y":84},{"x":100,"y":51},{"x":36,"y":-18},{"x":-11,"y":91},{"x":115,"y":59},{"x":-13,"y":27}],"type":"area"},{"arc":[{"x":208017,"y":180516},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":208011,"y":180527},{"x":-16,"y":0}],"type":"coastline"},{"arc":[{"x":207995,"y":180527},{"x":-16,"y":16}],"type":"coastline"},{"arc":[{"x":207979,"y":180543},{"x":-23,"y":8}],"type":"coastline"},{"arc":[{"x":207949,"y":180556},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":207936,"y":180553},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":207932,"y":180553},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":207926,"y":180564},{"x":-4,"y":24}],"type":"coastline"},{"arc":[{"x":207922,"y":180590},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":207922,"y":180601},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":207913,"y":180606},{"x":-23,"y":4}],"type":"coastline"},{"arc":[{"x":207890,"y":180610},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":207890,"y":180618},{"x":5,"y":16}],"type":"coastline"},{"arc":[{"x":207895,"y":180637},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":207890,"y":180642},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":207885,"y":180651},{"x":0,"y":12}],"type":"coastline"},{"arc":[{"x":207889,"y":180674},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":207890,"y":180674},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":207900,"y":180692},{"x":9,"y":22}],"type":"coastline"},{"arc":[{"x":207909,"y":180714},{"x":24,"y":34}],"type":"coastline"},{"arc":[{"x":207933,"y":180748},{"x":11,"y":12}],"type":"coastline"},{"arc":[{"x":207944,"y":180760},{"x":12,"y":19}],"type":"coastline"},{"arc":[{"x":207967,"y":180805},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":207971,"y":180815},{"x":6,"y":30}],"type":"coastline"},{"arc":[{"x":207982,"y":180857},{"x":4,"y":11}],"type":"coastline"},{"arc":[{"x":207986,"y":180868},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":207985,"y":180872},{"x":-11,"y":19}],"type":"coastline"},{"arc":[{"x":207974,"y":180904},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":207960,"y":180920},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":207960,"y":180931},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":207960,"y":180937},{"x":-8,"y":20}],"type":"coastline"},{"arc":[{"x":207946,"y":180964},{"x":-15,"y":9}],"type":"coastline"},{"arc":[{"x":207931,"y":180973},{"x":-16,"y":-9}],"type":"coastline"},{"arc":[{"x":207915,"y":180964},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":207905,"y":180962},{"x":-16,"y":-10}],"type":"coastline"},{"arc":[{"x":207886,"y":180951},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":207874,"y":180952},{"x":-13,"y":-14}],"type":"coastline"},{"arc":[{"x":207854,"y":180933},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":207853,"y":180933},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":207848,"y":180933},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":207841,"y":180933},{"x":-19,"y":0}],"type":"coastline"},{"arc":[{"x":207814,"y":180934},{"x":-21,"y":5}],"type":"coastline"},{"arc":[{"x":207793,"y":180939},{"x":-9,"y":15}],"type":"coastline"},{"arc":[{"x":207778,"y":180963},{"x":-9,"y":8}],"type":"coastline"},{"arc":[{"x":207761,"y":180973},{"x":-42,"y":-2}],"type":"coastline"},{"arc":[{"x":207719,"y":180971},{"x":-12,"y":-2}],"type":"coastline"},{"arc":[{"x":207707,"y":180969},{"x":-22,"y":10}],"type":"coastline"},{"arc":[{"x":207685,"y":180979},{"x":-17,"y":0}],"type":"coastline"},{"arc":[{"x":207668,"y":180979},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":207661,"y":180978},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":207650,"y":180975},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":207628,"y":180985},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":207620,"y":180991},{"x":-10,"y":4}],"type":"coastline"},{"arc":[{"x":207606,"y":181004},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":207588,"y":181001},{"x":-10,"y":-3}],"type":"coastline"},{"arc":[{"x":207574,"y":181001},{"x":-1,"y":20}],"type":"coastline"},{"arc":[{"x":207573,"y":181021},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":207578,"y":181035},{"x":15,"y":15}],"type":"coastline"},{"arc":[{"x":207593,"y":181050},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":207601,"y":181055},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":207606,"y":181072},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":207609,"y":181080},{"x":11,"y":9}],"type":"coastline"},{"arc":[{"x":207620,"y":181089},{"x":5,"y":9}],"type":"coastline"},{"arc":[{"x":207625,"y":181102},{"x":-3,"y":11}],"type":"coastline"},{"arc":[{"x":207622,"y":181113},{"x":-5,"y":18}],"type":"coastline"},{"arc":[{"x":207617,"y":181131},{"x":12,"y":13}],"type":"coastline"},{"arc":[{"x":207629,"y":181144},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":207632,"y":181154},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":207634,"y":181159},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":207636,"y":181170},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":207637,"y":181176},{"x":8,"y":14}],"type":"coastline"},{"arc":[{"x":207645,"y":181191},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":207647,"y":181193},{"x":6,"y":15}],"type":"coastline"},{"arc":[{"x":207651,"y":181211},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":207650,"y":181216},{"x":-1,"y":13}],"type":"coastline"},{"arc":[{"x":207649,"y":181229},{"x":1,"y":14}],"type":"coastline"},{"arc":[{"x":207655,"y":181254},{"x":-12,"y":9}],"type":"coastline"},{"arc":[{"x":207635,"y":181268},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":207627,"y":181269},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":207624,"y":181269},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":207624,"y":181275},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":207623,"y":181279},{"x":-3,"y":17}],"type":"coastline"},{"arc":[{"x":207620,"y":181296},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":207617,"y":181308},{"x":1,"y":29}],"type":"coastline"},{"arc":[{"x":207618,"y":181337},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":207617,"y":181343},{"x":0,"y":24}],"type":"coastline"},{"arc":[{"x":207617,"y":181367},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":207613,"y":181373},{"x":-1,"y":18}],"type":"coastline"},{"arc":[{"x":207612,"y":181391},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":207607,"y":181397},{"x":-8,"y":19}],"type":"coastline"},{"arc":[{"x":207599,"y":181416},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":207592,"y":181427},{"x":-19,"y":0}],"type":"coastline"},{"arc":[{"x":207564,"y":181432},{"x":-15,"y":14}],"type":"coastline"},{"arc":[{"x":207549,"y":181446},{"x":-9,"y":8}],"type":"coastline"},{"arc":[{"x":207540,"y":181454},{"x":-11,"y":6}],"type":"coastline"},{"arc":[{"x":207525,"y":181460},{"x":-14,"y":-3}],"type":"coastline"},{"arc":[{"x":207506,"y":181455},{"x":-17,"y":-3}],"type":"coastline"},{"arc":[{"x":207489,"y":181452},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":207484,"y":181449},{"x":-8,"y":-13}],"type":"coastline"},{"arc":[{"x":207476,"y":181436},{"x":-5,"y":-9}],"type":"coastline"},{"arc":[{"x":207471,"y":181427},{"x":-7,"y":20}],"type":"coastline"},{"arc":[{"x":207464,"y":181447},{"x":-10,"y":28}],"type":"coastline"},{"arc":[{"x":207446,"y":181486},{"x":-8,"y":12}],"type":"coastline"},{"arc":[{"x":207438,"y":181498},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":207434,"y":181505},{"x":-8,"y":18}],"type":"coastline"},{"arc":[{"x":207426,"y":181523},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":207422,"y":181529},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":207421,"y":181534},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":207421,"y":181537},{"x":-5,"y":21}],"type":"coastline"},{"arc":[{"x":207416,"y":181558},{"x":-11,"y":19}],"type":"coastline"},{"arc":[{"x":207403,"y":181586},{"x":-3,"y":18}],"type":"coastline"},{"arc":[{"x":207399,"y":181605},{"x":-10,"y":12}],"type":"coastline"},{"arc":[{"x":207387,"y":181619},{"x":-10,"y":14}],"type":"coastline"},{"arc":[{"x":207377,"y":181633},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":207373,"y":181637},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":207362,"y":181639},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":207354,"y":181640},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":207348,"y":181644},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":207346,"y":181645},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":207344,"y":181645},{"x":-13,"y":17}],"type":"coastline"},{"arc":[{"x":207322,"y":181676},{"x":-6,"y":13}],"type":"coastline"},{"arc":[{"x":207316,"y":181689},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":207313,"y":181697},{"x":-11,"y":10}],"type":"coastline"},{"arc":[{"x":207302,"y":181707},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":207302,"y":181708},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":207302,"y":181727},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":207307,"y":181735},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":207310,"y":181741},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":207311,"y":181747},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":207310,"y":181752},{"x":-8,"y":13}],"type":"coastline"},{"arc":[{"x":207302,"y":181765},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":207303,"y":181768},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":207306,"y":181771},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":207306,"y":181774},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":207308,"y":181778},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":207311,"y":181779},{"x":7,"y":13}],"type":"coastline"},{"arc":[{"x":207318,"y":181792},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":207319,"y":181794},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":207327,"y":181829},{"x":2,"y":28}],"type":"coastline"},{"arc":[{"x":207332,"y":181865},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":207330,"y":181872},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":207330,"y":181878},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":207331,"y":181881},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":207331,"y":181884},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":207331,"y":181893},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":207332,"y":181898},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":207337,"y":181908},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":207337,"y":181910},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":207330,"y":181924},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":207326,"y":181930},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":207318,"y":181931},{"x":-17,"y":0}],"type":"coastline"},{"arc":[{"x":207301,"y":181931},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":207296,"y":181936},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":207293,"y":181938},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":207286,"y":181937},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":207281,"y":181940},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":207279,"y":181940},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":207270,"y":181937},{"x":-10,"y":-3}],"type":"coastline"},{"arc":[{"x":207260,"y":181934},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":207257,"y":181934},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":207250,"y":181932},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":207242,"y":181928},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":207235,"y":181925},{"x":-14,"y":2}],"type":"coastline"},{"arc":[{"x":207221,"y":181927},{"x":-22,"y":3}],"type":"coastline"},{"arc":[{"x":207198,"y":181930},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":207195,"y":181921},{"x":-2,"y":-13}],"type":"coastline"},{"arc":[{"x":207188,"y":181889},{"x":2,"y":-16}],"type":"coastline"},{"arc":[{"x":207190,"y":181873},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":207184,"y":181873},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":207170,"y":181874},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":207161,"y":181871},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":207153,"y":181870},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":207151,"y":181870},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":207141,"y":181875},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":207133,"y":181877},{"x":-13,"y":4}],"type":"coastline"},{"arc":[{"x":207120,"y":181881},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":207114,"y":181881},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":207105,"y":181881},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":207099,"y":181879},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":207096,"y":181877},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":207091,"y":181876},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":207079,"y":181867},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":207076,"y":181866},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":207070,"y":181870},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":207071,"y":181879},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":207072,"y":181882},{"x":1,"y":14}],"type":"coastline"},{"arc":[{"x":207073,"y":181896},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":207075,"y":181908},{"x":3,"y":14}],"type":"coastline"},{"arc":[{"x":207084,"y":181932},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":207084,"y":181939},{"x":-1,"y":15}],"type":"coastline"},{"arc":[{"x":207081,"y":181958},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":207074,"y":181967},{"x":-8,"y":12}],"type":"coastline"},{"arc":[{"x":207066,"y":181979},{"x":-5,"y":14}],"type":"coastline"},{"arc":[{"x":207057,"y":181994},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":207049,"y":181997},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":207045,"y":182004},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":207040,"y":182007},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":207030,"y":182009},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":207019,"y":182010},{"x":-15,"y":2}],"type":"coastline"},{"arc":[{"x":206999,"y":182016},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":206997,"y":182020},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":206994,"y":182026},{"x":-12,"y":8}],"type":"coastline"},{"arc":[{"x":206982,"y":182034},{"x":-7,"y":13}],"type":"coastline"},{"arc":[{"x":206977,"y":182053},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":206977,"y":182054},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":206982,"y":182065},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":206981,"y":182068},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":206974,"y":182079},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":206975,"y":182086},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":206979,"y":182092},{"x":8,"y":14}],"type":"coastline"},{"arc":[{"x":206990,"y":182111},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":206991,"y":182115},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":206983,"y":182120},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":206975,"y":182125},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":206968,"y":182139},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":206966,"y":182140},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":206955,"y":182143},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":206951,"y":182147},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":206950,"y":182159},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":206941,"y":182185},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":206937,"y":182191},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":206934,"y":182194},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":206930,"y":182204},{"x":-18,"y":17}],"type":"coastline"},{"arc":[{"x":206907,"y":182224},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":206905,"y":182226},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":206904,"y":182230},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":206905,"y":182238},{"x":6,"y":11}],"type":"coastline"},{"arc":[{"x":206911,"y":182249},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":206912,"y":182253},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":206911,"y":182265},{"x":8,"y":21}],"type":"coastline"},{"arc":[{"x":206919,"y":182286},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":206917,"y":182294},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":206921,"y":182307},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":206922,"y":182311},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":206928,"y":182320},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":206938,"y":182327},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":206946,"y":182333},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":206951,"y":182338},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":206952,"y":182333},{"x":9,"y":-11}],"type":"coastline"},{"arc":[{"x":206961,"y":182322},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":206966,"y":182318},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":206973,"y":182315},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":206979,"y":182310},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":206982,"y":182305},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":206987,"y":182301},{"x":16,"y":6}],"type":"coastline"},{"arc":[{"x":207003,"y":182307},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":207014,"y":182305},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":207025,"y":182303},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":207033,"y":182298},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":207041,"y":182292},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":207044,"y":182290},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":207046,"y":182285},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":207047,"y":182283},{"x":12,"y":-11}],"type":"coastline"},{"arc":[{"x":207062,"y":182271},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":207067,"y":182267},{"x":2,"y":-14}],"type":"coastline"},{"arc":[{"x":207073,"y":182248},{"x":14,"y":-14}],"type":"coastline"},{"arc":[{"x":207090,"y":182233},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":207094,"y":182231},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":207107,"y":182229},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":207117,"y":182222},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":207122,"y":182214},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":207130,"y":182204},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":207140,"y":182204},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":207147,"y":182205},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":207154,"y":182202},{"x":18,"y":-10}],"type":"coastline"},{"arc":[{"x":207172,"y":182192},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":207178,"y":182191},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":207186,"y":182183},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":207188,"y":182178},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":207192,"y":182172},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":207202,"y":182174},{"x":8,"y":11}],"type":"coastline"},{"arc":[{"x":207210,"y":182185},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":207213,"y":182188},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":207217,"y":182189},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":207224,"y":182189},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":207227,"y":182190},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":207235,"y":182199},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":207241,"y":182203},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":207247,"y":182207},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":207252,"y":182211},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":207257,"y":182214},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":207266,"y":182218},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":207266,"y":182225},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":207266,"y":182230},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":207267,"y":182236},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":207268,"y":182241},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":207270,"y":182251},{"x":10,"y":10}],"type":"coastline"},{"arc":[{"x":207280,"y":182261},{"x":-14,"y":22}],"type":"coastline"},{"arc":[{"x":207266,"y":182283},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":207266,"y":182292},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":207267,"y":182299},{"x":4,"y":19}],"type":"coastline"},{"arc":[{"x":207271,"y":182318},{"x":0,"y":13}],"type":"coastline"},{"arc":[{"x":207270,"y":182338},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":207270,"y":182349},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":207271,"y":182355},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":207271,"y":182360},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":207272,"y":182367},{"x":-1,"y":16}],"type":"coastline"},{"arc":[{"x":207271,"y":182383},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":207281,"y":182393},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":207292,"y":182397},{"x":18,"y":15}],"type":"coastline"},{"arc":[{"x":207310,"y":182412},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":207312,"y":182416},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":207311,"y":182420},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":207307,"y":182427},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":207306,"y":182435},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":207308,"y":182440},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":207314,"y":182449},{"x":-6,"y":58}],"type":"coastline"},{"arc":[{"x":207308,"y":182507},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":207308,"y":182512},{"x":6,"y":16}],"type":"coastline"},{"arc":[{"x":207317,"y":182531},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":207323,"y":182539},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":207332,"y":182543},{"x":15,"y":4}],"type":"coastline"},{"arc":[{"x":207347,"y":182547},{"x":10,"y":3}],"type":"coastline"},{"arc":[{"x":207362,"y":182552},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":207367,"y":182553},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":207393,"y":182550},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":207397,"y":182550},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":207395,"y":182560},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":207392,"y":182570},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":207390,"y":182580},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":207388,"y":182586},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":207386,"y":182594},{"x":-7,"y":16}],"type":"coastline"},{"arc":[{"x":207378,"y":182612},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":207375,"y":182616},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":207370,"y":182620},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":207366,"y":182628},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":207362,"y":182637},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":207358,"y":182647},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":207349,"y":182656},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":207341,"y":182664},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":207334,"y":182678},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":207325,"y":182688},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":207319,"y":182693},{"x":-12,"y":2}],"type":"coastline"},{"arc":[{"x":207307,"y":182695},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":207301,"y":182695},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":207292,"y":182695},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":207290,"y":182696},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":207286,"y":182699},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":207284,"y":182705},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":207278,"y":182712},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":207274,"y":182713},{"x":-8,"y":10}],"type":"coastline"},{"arc":[{"x":207266,"y":182724},{"x":-2,"y":15}],"type":"coastline"},{"arc":[{"x":207264,"y":182739},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":207264,"y":182740},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":207263,"y":182742},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":207262,"y":182744},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":207257,"y":182746},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":207255,"y":182749},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":207254,"y":182759},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":207244,"y":182768},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":207242,"y":182774},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":207240,"y":182782},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":207241,"y":182792},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":207245,"y":182802},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":207245,"y":182805},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":207245,"y":182813},{"x":-5,"y":18}],"type":"coastline"},{"arc":[{"x":207240,"y":182831},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":207237,"y":182847},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":207239,"y":182864},{"x":5,"y":22}],"type":"coastline"},{"arc":[{"x":207244,"y":182886},{"x":7,"y":20}],"type":"coastline"},{"arc":[{"x":207248,"y":182908},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":207245,"y":182913},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":207245,"y":182920},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":207236,"y":182926},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":207213,"y":182919},{"x":-6,"y":11}],"type":"coastline"},{"arc":[{"x":207207,"y":182930},{"x":-14,"y":25}],"type":"coastline"},{"arc":[{"x":207193,"y":182955},{"x":-15,"y":21}],"type":"coastline"},{"arc":[{"x":207178,"y":182976},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":207174,"y":182980},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":207170,"y":182983},{"x":-5,"y":13}],"type":"coastline"},{"arc":[{"x":207165,"y":182996},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":207159,"y":182998},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":207145,"y":183000},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":207144,"y":183001},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":207136,"y":183004},{"x":-20,"y":1}],"type":"coastline"},{"arc":[{"x":207110,"y":183005},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":207089,"y":183006},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":207076,"y":183008},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":207067,"y":183014},{"x":-4,"y":12}],"type":"coastline"},{"arc":[{"x":207063,"y":183026},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":207057,"y":183032},{"x":-10,"y":-5}],"type":"coastline"},{"arc":[{"x":207047,"y":183027},{"x":-16,"y":-4}],"type":"coastline"},{"arc":[{"x":207031,"y":183023},{"x":-11,"y":-5}],"type":"coastline"},{"arc":[{"x":207017,"y":183009},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":207009,"y":183000},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":206998,"y":182994},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":206992,"y":182992},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":206985,"y":182996},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":206980,"y":183000},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":206977,"y":183002},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":206972,"y":183014},{"x":10,"y":13}],"type":"coastline"},{"arc":[{"x":206982,"y":183027},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":206987,"y":183037},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":206989,"y":183046},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":206993,"y":183056},{"x":4,"y":11}],"type":"coastline"},{"arc":[{"x":206997,"y":183067},{"x":9,"y":11}],"type":"coastline"},{"arc":[{"x":207006,"y":183078},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":207005,"y":183083},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":207002,"y":183087},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":207001,"y":183089},{"x":-8,"y":9}],"type":"coastline"},{"arc":[{"x":206993,"y":183098},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":206986,"y":183108},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":206980,"y":183120},{"x":6,"y":28}],"type":"coastline"},{"arc":[{"x":206986,"y":183148},{"x":6,"y":11}],"type":"coastline"},{"arc":[{"x":206988,"y":183173},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":206988,"y":183180},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":206986,"y":183192},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":206983,"y":183200},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":206986,"y":183211},{"x":14,"y":20}],"type":"coastline"},{"arc":[{"x":207000,"y":183231},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":206999,"y":183242},{"x":3,"y":17}],"type":"coastline"},{"arc":[{"x":207003,"y":183264},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":207006,"y":183272},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":207005,"y":183280},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":206997,"y":183291},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":207002,"y":183296},{"x":15,"y":11}],"type":"coastline"},{"arc":[{"x":207017,"y":183307},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":207028,"y":183321},{"x":13,"y":3}],"type":"coastline"},{"arc":[{"x":207046,"y":183327},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":207048,"y":183328},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":207055,"y":183336},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":207084,"y":183338},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":207087,"y":183341},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":207087,"y":183347},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":207088,"y":183359},{"x":2,"y":26}],"type":"coastline"},{"arc":[{"x":207090,"y":183385},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":207088,"y":183404},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":207085,"y":183411},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":207092,"y":183418},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":207095,"y":183430},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":207098,"y":183438},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":207103,"y":183440},{"x":-1,"y":5}],"type":"admin"},{"arc":[{"x":207102,"y":183445},{"x":-11,"y":9}],"type":"coastline"},{"arc":[{"x":207091,"y":183454},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":207088,"y":183455},{"x":-16,"y":-4}],"type":"coastline"},{"arc":[{"x":207072,"y":183451},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":207066,"y":183450},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":207058,"y":183448},{"x":-4,"y":0}],"type":"admin"},{"arc":[{"x":207054,"y":183448},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":207047,"y":183447},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":207046,"y":183447},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":207043,"y":183446},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":207039,"y":183444},{"x":-26,"y":-2}],"type":"coastline"},{"arc":[{"x":207013,"y":183442},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":207010,"y":183441},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":207001,"y":183438},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":206994,"y":183439},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":206991,"y":183440},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":206985,"y":183443},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":206982,"y":183444},{"x":-23,"y":-3}],"type":"coastline"},{"arc":[{"x":206959,"y":183441},{"x":-6,"y":-3}],"type":"admin"},{"arc":[{"x":206953,"y":183438},{"x":-10,"y":-3}],"type":"coastline"},{"arc":[{"x":206943,"y":183435},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":206941,"y":183436},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":206933,"y":183435},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":206928,"y":183438},{"x":-5,"y":2}],"type":"admin"},{"arc":[{"x":206923,"y":183440},{"x":-23,"y":1}],"type":"coastline"},{"arc":[{"x":206900,"y":183441},{"x":-2,"y":2}],"type":"admin"},{"arc":[{"x":206898,"y":183443},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":206885,"y":183444},{"x":-5,"y":1}],"type":"admin"},{"arc":[{"x":206880,"y":183445},{"x":-12,"y":-1}],"type":"coastline"},{"arc":[{"x":206868,"y":183444},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":206866,"y":183444},{"x":-9,"y":3}],"type":"coastline"},{"arc":[{"x":206857,"y":183447},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":206853,"y":183453},{"x":-8,"y":2}],"type":"admin"},{"arc":[{"x":206845,"y":183455},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":206836,"y":183456},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":206835,"y":183456},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":206828,"y":183461},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":206827,"y":183461},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":206825,"y":183458},{"x":-6,"y":-2}],"type":"admin"},{"arc":[{"x":206819,"y":183456},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":206812,"y":183455},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":206802,"y":183453},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":206800,"y":183453},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":206794,"y":183456},{"x":-14,"y":0}],"type":"coastline"},{"arc":[{"x":206780,"y":183456},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":206775,"y":183453},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":206770,"y":183453},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":206765,"y":183459},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":206764,"y":183461},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":206759,"y":183465},{"x":-5,"y":1}],"type":"admin"},{"arc":[{"x":206754,"y":183466},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":206750,"y":183469},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":206746,"y":183474},{"x":-3,"y":4}],"type":"admin"},{"arc":[{"x":206743,"y":183478},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":206740,"y":183483},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":206738,"y":183490},{"x":1,"y":3}],"type":"admin"},{"arc":[{"x":206739,"y":183493},{"x":-9,"y":7}],"type":"coastline"},{"arc":[{"x":206730,"y":183500},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":206724,"y":183505},{"x":-17,"y":6}],"type":"coastline"},{"arc":[{"x":206707,"y":183511},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":206704,"y":183512},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":206696,"y":183512},{"x":-5,"y":-3}],"type":"admin"},{"arc":[{"x":206691,"y":183509},{"x":-17,"y":2}],"type":"coastline"},{"arc":[{"x":206674,"y":183511},{"x":-7,"y":0}],"type":"admin"},{"arc":[{"x":206667,"y":183511},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":206661,"y":183511},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":206657,"y":183513},{"x":-7,"y":1}],"type":"admin"},{"arc":[{"x":206650,"y":183514},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":206644,"y":183513},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":206641,"y":183511},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":206635,"y":183507},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":206631,"y":183508},{"x":-7,"y":2}],"type":"admin"},{"arc":[{"x":206624,"y":183510},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":206616,"y":183510},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":206603,"y":183512},{"x":-3,"y":1}],"type":"admin"},{"arc":[{"x":206600,"y":183513},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":206595,"y":183517},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":206592,"y":183527},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":206589,"y":183537},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":206583,"y":183546},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":206580,"y":183553},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":206580,"y":183560},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":206581,"y":183568},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":206581,"y":183577},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":206581,"y":183579},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":206580,"y":183583},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":206579,"y":183584},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":206573,"y":183596},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":206569,"y":183604},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":206568,"y":183606},{"x":-2,"y":3}],"type":"admin"},{"arc":[{"x":206566,"y":183609},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":206564,"y":183614},{"x":-6,"y":1}],"type":"admin"},{"arc":[{"x":206558,"y":183615},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":206549,"y":183619},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":206541,"y":183625},{"x":-2,"y":2}],"type":"admin"},{"arc":[{"x":206539,"y":183627},{"x":-6,"y":15}],"type":"coastline"},{"arc":[{"x":206533,"y":183642},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":206530,"y":183645},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":206524,"y":183646},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":206519,"y":183651},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":206514,"y":183652},{"x":-12,"y":7}],"type":"admin"},{"arc":[{"x":206502,"y":183659},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":206492,"y":183660},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":206491,"y":183659},{"x":-22,"y":9}],"type":"coastline"},{"arc":[{"x":206469,"y":183668},{"x":-9,"y":22}],"type":"coastline"},{"arc":[{"x":206460,"y":183690},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":206459,"y":183691},{"x":-11,"y":13}],"type":"coastline"},{"arc":[{"x":206448,"y":183704},{"x":-8,"y":12}],"type":"coastline"},{"arc":[{"x":206440,"y":183716},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":206438,"y":183719},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":206435,"y":183719},{"x":-18,"y":1}],"type":"coastline"},{"arc":[{"x":206417,"y":183720},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":206417,"y":183721},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":206414,"y":183727},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":206414,"y":183728},{"x":-14,"y":6}],"type":"coastline"},{"arc":[{"x":206400,"y":183734},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":206395,"y":183736},{"x":-4,"y":5}],"type":"admin"},{"arc":[{"x":206391,"y":183741},{"x":-18,"y":13}],"type":"coastline"},{"arc":[{"x":206373,"y":183754},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":206366,"y":183755},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":206361,"y":183755},{"x":-3,"y":-1}],"type":"admin"},{"arc":[{"x":206358,"y":183754},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":206358,"y":183750},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":206359,"y":183746},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":206364,"y":183739},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":206365,"y":183733},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":206365,"y":183732},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":206359,"y":183730},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":206351,"y":183730},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":206347,"y":183727},{"x":-25,"y":-11}],"type":"coastline"},{"arc":[{"x":206322,"y":183716},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":206320,"y":183714},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":206313,"y":183708},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":206308,"y":183714},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":206304,"y":183717},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":206303,"y":183721},{"x":-1,"y":3}],"type":"admin"},{"arc":[{"x":206302,"y":183724},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":206299,"y":183734},{"x":-5,"y":3}],"type":"admin"},{"arc":[{"x":206294,"y":183737},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":206293,"y":183741},{"x":0,"y":3}],"type":"admin"},{"arc":[{"x":206293,"y":183744},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":206294,"y":183749},{"x":1,"y":2}],"type":"admin"},{"arc":[{"x":206295,"y":183751},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":206294,"y":183757},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":206296,"y":183767},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":206299,"y":183776},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":206301,"y":183781},{"x":0,"y":2}],"type":"admin"},{"arc":[{"x":206301,"y":183783},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":206296,"y":183787},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":206295,"y":183788},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":206291,"y":183794},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":206281,"y":183794},{"x":-26,"y":9}],"type":"coastline"},{"arc":[{"x":206255,"y":183803},{"x":-2,"y":3}],"type":"admin"},{"arc":[{"x":206253,"y":183806},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":206248,"y":183808},{"x":-18,"y":-1}],"type":"coastline"},{"arc":[{"x":206230,"y":183807},{"x":-10,"y":4}],"type":"admin"},{"arc":[{"x":206220,"y":183811},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":206208,"y":183812},{"x":-6,"y":-1}],"type":"admin"},{"arc":[{"x":206202,"y":183811},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":206200,"y":183810},{"x":-17,"y":9}],"type":"coastline"},{"arc":[{"x":206183,"y":183819},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":206181,"y":183826},{"x":0,"y":3}],"type":"admin"},{"arc":[{"x":206181,"y":183829},{"x":0,"y":19}],"type":"coastline"},{"arc":[{"x":206181,"y":183848},{"x":-13,"y":4}],"type":"coastline"},{"arc":[{"x":206168,"y":183852},{"x":-19,"y":7}],"type":"coastline"},{"arc":[{"x":206149,"y":183859},{"x":-2,"y":3}],"type":"admin"},{"arc":[{"x":206147,"y":183862},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":206145,"y":183868},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":206144,"y":183876},{"x":-7,"y":1}],"type":"admin"},{"arc":[{"x":206137,"y":183877},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":206133,"y":183873},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":206125,"y":183867},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":206123,"y":183863},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":206121,"y":183862},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":206114,"y":183858},{"x":-6,"y":-8}],"type":"admin"},{"arc":[{"x":206108,"y":183850},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":206105,"y":183846},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":206103,"y":183844},{"x":-4,"y":-1}],"type":"admin"},{"arc":[{"x":206099,"y":183843},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":206097,"y":183843},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":206094,"y":183844},{"x":-10,"y":6}],"type":"coastline"},{"arc":[{"x":206084,"y":183850},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":206080,"y":183859},{"x":-2,"y":3}],"type":"admin"},{"arc":[{"x":206078,"y":183862},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":206075,"y":183868},{"x":0,"y":10}],"type":"admin"},{"arc":[{"x":206075,"y":183878},{"x":-2,"y":14}],"type":"coastline"},{"arc":[{"x":206073,"y":183892},{"x":-1,"y":16}],"type":"coastline"},{"arc":[{"x":206072,"y":183908},{"x":-6,"y":8}],"type":"coastline"},{"arc":[{"x":206066,"y":183916},{"x":-2,"y":5}],"type":"admin"},{"arc":[{"x":206064,"y":183921},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":206057,"y":183921},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":206050,"y":183912},{"x":-2,"y":-9}],"type":"admin"},{"arc":[{"x":206048,"y":183903},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":206047,"y":183899},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":206045,"y":183899},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":206038,"y":183899},{"x":-6,"y":0}],"type":"admin"},{"arc":[{"x":206032,"y":183899},{"x":-20,"y":4}],"type":"coastline"},{"arc":[{"x":206012,"y":183903},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":206010,"y":183902},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":206007,"y":183897},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":206003,"y":183898},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":205992,"y":183898},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":205986,"y":183894},{"x":-5,"y":-5}],"type":"admin"},{"arc":[{"x":205981,"y":183889},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":205983,"y":183883},{"x":-9,"y":-14}],"type":"coastline"},{"arc":[{"x":205974,"y":183869},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":205977,"y":183862},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":205974,"y":183853},{"x":-1,"y":-6}],"type":"admin"},{"arc":[{"x":205973,"y":183847},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":205966,"y":183843},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":205962,"y":183840},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":205959,"y":183832},{"x":-5,"y":-2}],"type":"admin"},{"arc":[{"x":205954,"y":183830},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":205949,"y":183822},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":205946,"y":183816},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":205939,"y":183808},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":205930,"y":183806},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":205926,"y":183806},{"x":-12,"y":6}],"type":"coastline"},{"arc":[{"x":205914,"y":183812},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":205905,"y":183813},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":205901,"y":183814},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":205898,"y":183818},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":205890,"y":183821},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":205882,"y":183827},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":205881,"y":183828},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":205874,"y":183830},{"x":-14,"y":-5}],"type":"coastline"},{"arc":[{"x":205860,"y":183825},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":205853,"y":183820},{"x":-4,"y":-5}],"type":"admin"},{"arc":[{"x":205849,"y":183815},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":205848,"y":183815},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":205846,"y":183816},{"x":-17,"y":17}],"type":"coastline"},{"arc":[{"x":205829,"y":183833},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":205823,"y":183832},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":205812,"y":183831},{"x":-18,"y":-1}],"type":"coastline"},{"arc":[{"x":205794,"y":183830},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":205781,"y":183831},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":205780,"y":183833},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":205779,"y":183837},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":205778,"y":183838},{"x":-11,"y":18}],"type":"coastline"},{"arc":[{"x":205767,"y":183856},{"x":-3,"y":6}],"type":"admin"},{"arc":[{"x":205764,"y":183862},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":205761,"y":183867},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":205754,"y":183876},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":205753,"y":183878},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":205753,"y":183881},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":205756,"y":183891},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":205751,"y":183895},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":205741,"y":183897},{"x":-4,"y":4}],"type":"admin"},{"arc":[{"x":205737,"y":183901},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":205735,"y":183902},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":205728,"y":183897},{"x":-5,"y":-7}],"type":"admin"},{"arc":[{"x":205723,"y":183890},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":205721,"y":183883},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":205720,"y":183882},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205717,"y":183882},{"x":-3,"y":4}],"type":"admin"},{"arc":[{"x":205714,"y":183886},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":205710,"y":183888},{"x":-38,"y":15}],"type":"coastline"},{"arc":[{"x":205672,"y":183903},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":205663,"y":183907},{"x":-12,"y":9}],"type":"coastline"},{"arc":[{"x":205651,"y":183916},{"x":-23,"y":3}],"type":"coastline"},{"arc":[{"x":205628,"y":183919},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":205626,"y":183920},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":205620,"y":183925},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":205620,"y":183930},{"x":-3,"y":13}],"type":"admin"},{"arc":[{"x":205617,"y":183943},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":205608,"y":183947},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":205598,"y":183946},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":205591,"y":183945},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":205582,"y":183943},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":205577,"y":183941},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":205572,"y":183945},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":205570,"y":183946},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":205565,"y":183948},{"x":-31,"y":5}],"type":"coastline"},{"arc":[{"x":205534,"y":183953},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":205535,"y":183948},{"x":-7,"y":-16}],"type":"coastline"},{"arc":[{"x":205528,"y":183932},{"x":-2,"y":-4}],"type":"area"},{"arc":[{"x":205526,"y":183928},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":205520,"y":183923},{"x":-37,"y":-11}],"type":"coastline"},{"arc":[{"x":205483,"y":183912},{"x":-7,"y":-6}],"type":"area"},{"arc":[{"x":205476,"y":183906},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":205467,"y":183906},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205464,"y":183906},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":205455,"y":183905},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":205453,"y":183904},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":205447,"y":183900},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":205443,"y":183898},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":205440,"y":183897},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":205433,"y":183894},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":205430,"y":183893},{"x":-11,"y":-6}],"type":"coastline"},{"arc":[{"x":205419,"y":183887},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":205418,"y":183886},{"x":-9,"y":7}],"type":"coastline"},{"arc":[{"x":205409,"y":183893},{"x":-3,"y":5}],"type":"area"},{"arc":[{"x":205406,"y":183898},{"x":-6,"y":10}],"type":"coastline"},{"arc":[{"x":205400,"y":183908},{"x":-18,"y":15}],"type":"coastline"},{"arc":[{"x":205382,"y":183923},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":205380,"y":183923},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":205377,"y":183921},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":205369,"y":183921},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":205364,"y":183922},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":205359,"y":183923},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":205355,"y":183927},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":205354,"y":183929},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":205347,"y":183935},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":205346,"y":183938},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":205341,"y":183939},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":205332,"y":183945},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":205330,"y":183948},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":205322,"y":183952},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":205314,"y":183956},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":205304,"y":183954},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":205297,"y":183953},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":205292,"y":183948},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":205290,"y":183945},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":205284,"y":183945},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":205274,"y":183947},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":205270,"y":183948},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":205259,"y":183948},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":205258,"y":183946},{"x":-27,"y":-23}],"type":"coastline"},{"arc":[{"x":205231,"y":183923},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":205224,"y":183923},{"x":-18,"y":-3}],"type":"coastline"},{"arc":[{"x":205206,"y":183920},{"x":-14,"y":-3}],"type":"coastline"},{"arc":[{"x":205192,"y":183917},{"x":-13,"y":0}],"type":"coastline"},{"arc":[{"x":205179,"y":183917},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":205176,"y":183917},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":205165,"y":183918},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":205161,"y":183919},{"x":-10,"y":7}],"type":"area"},{"arc":[{"x":205151,"y":183926},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":205148,"y":183929},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":205144,"y":183932},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":205141,"y":183934},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":205132,"y":183939},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":205128,"y":183943},{"x":-2,"y":5}],"type":"area"},{"arc":[{"x":205126,"y":183948},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":205125,"y":183949},{"x":-3,"y":14}],"type":"coastline"},{"arc":[{"x":205122,"y":183963},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":205121,"y":183964},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":205119,"y":183966},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":205116,"y":183966},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":205107,"y":183967},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":205106,"y":183967},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":205103,"y":183966},{"x":-6,"y":-2}],"type":"area"},{"arc":[{"x":205097,"y":183964},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":205091,"y":183961},{"x":-9,"y":-8}],"type":"coastline"},{"arc":[{"x":205082,"y":183953},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":205081,"y":183951},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":205080,"y":183947},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":205079,"y":183944},{"x":-3,"y":-13}],"type":"coastline"},{"arc":[{"x":205076,"y":183931},{"x":-2,"y":-13}],"type":"area"},{"arc":[{"x":205074,"y":183918},{"x":-3,"y":-12}],"type":"coastline"},{"arc":[{"x":205071,"y":183906},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":205063,"y":183913},{"x":-2,"y":5}],"type":"area"},{"arc":[{"x":205061,"y":183918},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":205056,"y":183922},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":205049,"y":183927},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":205043,"y":183934},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":205043,"y":183936},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":205035,"y":183940},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":205029,"y":183947},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":205026,"y":183954},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":205022,"y":183958},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":205017,"y":183959},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":205014,"y":183957},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":205009,"y":183954},{"x":-6,"y":1}],"type":"area"},{"arc":[{"x":205003,"y":183955},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205000,"y":183955},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":204991,"y":183953},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":204979,"y":183954},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":204976,"y":183954},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":204967,"y":183949},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":204967,"y":183948},{"x":-13,"y":-5}],"type":"coastline"},{"arc":[{"x":204954,"y":183943},{"x":-10,"y":5}],"type":"area"},{"arc":[{"x":204944,"y":183948},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":204937,"y":183954},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":204930,"y":183956},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":204928,"y":183955},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":204921,"y":183948},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":204917,"y":183947},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":204911,"y":183944},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":204908,"y":183943},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":204905,"y":183944},{"x":-4,"y":6}],"type":"area"},{"arc":[{"x":204901,"y":183950},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":204896,"y":183952},{"x":-21,"y":0}],"type":"coastline"},{"arc":[{"x":204875,"y":183952},{"x":-13,"y":0}],"type":"coastline"},{"arc":[{"x":204862,"y":183952},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":204855,"y":183948},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":204848,"y":183945},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":204840,"y":183948},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":204838,"y":183949},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":204833,"y":183948},{"x":-39,"y":0}],"type":"coastline"},{"arc":[{"x":204794,"y":183948},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":204793,"y":183950},{"x":-2,"y":25}],"type":"coastline"},{"arc":[{"x":204791,"y":183975},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":204791,"y":183979},{"x":-7,"y":-1}],"type":"area"},{"arc":[{"x":204784,"y":183978},{"x":-26,"y":-12}],"type":"coastline"},{"arc":[{"x":204758,"y":183966},{"x":-14,"y":-13}],"type":"coastline"},{"arc":[{"x":204744,"y":183953},{"x":-3,"y":-5}],"type":"area"},{"arc":[{"x":204741,"y":183948},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":204735,"y":183940},{"x":-9,"y":-23}],"type":"coastline"},{"arc":[{"x":204726,"y":183917},{"x":0,"y":-64}],"type":"coastline"},{"arc":[{"x":204726,"y":183853},{"x":5,"y":-24}],"type":"coastline"},{"arc":[{"x":204731,"y":183829},{"x":-9,"y":-29}],"type":"coastline"},{"arc":[{"x":204722,"y":183800},{"x":-15,"y":-1}],"type":"coastline"},{"arc":[{"x":204707,"y":183799},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":204698,"y":183797},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":204687,"y":183796},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":204682,"y":183797},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":204676,"y":183799},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":204673,"y":183800},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":204672,"y":183802},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":204668,"y":183810},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":204666,"y":183811},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":204665,"y":183816},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":204663,"y":183822},{"x":-5,"y":15}],"type":"coastline"},{"arc":[{"x":204658,"y":183837},{"x":-34,"y":-3}],"type":"coastline"},{"arc":[{"x":204624,"y":183834},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":204623,"y":183835},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":204621,"y":183837},{"x":-5,"y":5}],"type":"area"},{"arc":[{"x":204616,"y":183842},{"x":-22,"y":14}],"type":"coastline"},{"arc":[{"x":204594,"y":183856},{"x":-3,"y":6}],"type":"area"},{"arc":[{"x":204591,"y":183862},{"x":-10,"y":15}],"type":"coastline"},{"arc":[{"x":204581,"y":183877},{"x":-8,"y":-1}],"type":"area"},{"arc":[{"x":204573,"y":183876},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":204563,"y":183879},{"x":-3,"y":11}],"type":"coastline"},{"arc":[{"x":204560,"y":183890},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":204552,"y":183895},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":204551,"y":183895},{"x":-19,"y":1}],"type":"coastline"},{"arc":[{"x":204532,"y":183896},{"x":-5,"y":3}],"type":"area"},{"arc":[{"x":204527,"y":183899},{"x":-7,"y":12}],"type":"coastline"},{"arc":[{"x":204520,"y":183911},{"x":-2,"y":4}],"type":"area"},{"arc":[{"x":204518,"y":183915},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":204515,"y":183920},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":204512,"y":183924},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":204505,"y":183927},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":204502,"y":183926},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":204497,"y":183924},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":204490,"y":183920},{"x":-10,"y":9}],"type":"coastline"},{"arc":[{"x":204480,"y":183929},{"x":-4,"y":6}],"type":"area"},{"arc":[{"x":204476,"y":183935},{"x":-56,"y":27}],"type":"coastline"},{"arc":[{"x":204420,"y":183962},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":204417,"y":183964},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":204410,"y":183968},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":204405,"y":183968},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":204404,"y":183969},{"x":-10,"y":6}],"type":"coastline"},{"arc":[{"x":204394,"y":183975},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":204384,"y":183975},{"x":-15,"y":3}],"type":"coastline"},{"arc":[{"x":204369,"y":183978},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":204363,"y":183980},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":204356,"y":183982},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":204353,"y":183983},{"x":-16,"y":7}],"type":"coastline"},{"arc":[{"x":204337,"y":183990},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":204334,"y":183991},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":204325,"y":183990},{"x":-21,"y":1}],"type":"coastline"},{"arc":[{"x":204304,"y":183991},{"x":-17,"y":1}],"type":"coastline"},{"arc":[{"x":204287,"y":183992},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":204284,"y":183988},{"x":0,"y":-6}],"type":"area"},{"arc":[{"x":204284,"y":183982},{"x":-5,"y":-15}],"type":"coastline"},{"arc":[{"x":204279,"y":183967},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":204277,"y":183964},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":204274,"y":183956},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":204277,"y":183952},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":204280,"y":183948},{"x":3,"y":-18}],"type":"coastline"},{"arc":[{"x":204283,"y":183930},{"x":5,"y":-5}],"type":"area"},{"arc":[{"x":204288,"y":183925},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":204293,"y":183919},{"x":6,"y":-8}],"type":"area"},{"arc":[{"x":204299,"y":183911},{"x":5,"y":-16}],"type":"coastline"},{"arc":[{"x":204304,"y":183895},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":204304,"y":183894},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":204304,"y":183891},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":204304,"y":183888},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":204304,"y":183884},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":204306,"y":183880},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":204309,"y":183877},{"x":4,"y":-5}],"type":"area"},{"arc":[{"x":204313,"y":183872},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":204317,"y":183864},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":204320,"y":183863},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":204327,"y":183862},{"x":12,"y":-11}],"type":"coastline"},{"arc":[{"x":204339,"y":183851},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":204341,"y":183841},{"x":-1,"y":-10}],"type":"area"},{"arc":[{"x":204340,"y":183831},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":204337,"y":183822},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":204334,"y":183818},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":204333,"y":183817},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":204330,"y":183811},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":204329,"y":183810},{"x":-3,"y":-21}],"type":"coastline"},{"arc":[{"x":204326,"y":183789},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":204326,"y":183787},{"x":2,"y":-11}],"type":"coastline"},{"arc":[{"x":204328,"y":183776},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":204332,"y":183766},{"x":2,"y":-13}],"type":"coastline"},{"arc":[{"x":204334,"y":183753},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":204336,"y":183743},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":204337,"y":183741},{"x":4,"y":-7}],"type":"area"},{"arc":[{"x":204341,"y":183734},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":204341,"y":183728},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":204341,"y":183714},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":204337,"y":183707},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":204337,"y":183704},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":204336,"y":183701},{"x":-11,"y":-1}],"type":"area"},{"arc":[{"x":204325,"y":183700},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":204319,"y":183700},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":204307,"y":183700},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":204304,"y":183699},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":204303,"y":183699},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":204298,"y":183699},{"x":-19,"y":1}],"type":"coastline"},{"arc":[{"x":204279,"y":183700},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":204275,"y":183698},{"x":-12,"y":-8}],"type":"coastline"},{"arc":[{"x":204263,"y":183690},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":204261,"y":183689},{"x":-9,"y":0}],"type":"area"},{"arc":[{"x":204252,"y":183689},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":204243,"y":183690},{"x":-16,"y":1}],"type":"coastline"},{"arc":[{"x":204227,"y":183691},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":204225,"y":183690},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":204221,"y":183687},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":204214,"y":183682},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":204207,"y":183685},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":204205,"y":183685},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":204196,"y":183684},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":204188,"y":183683},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":204178,"y":183682},{"x":-5,"y":2}],"type":"area"},{"arc":[{"x":204173,"y":183684},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":204169,"y":183685},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":204166,"y":183685},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":204158,"y":183684},{"x":-6,"y":-2}],"type":"area"},{"arc":[{"x":204152,"y":183682},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":204145,"y":183682},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":204140,"y":183680},{"x":-13,"y":3}],"type":"coastline"},{"arc":[{"x":204127,"y":183683},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":204117,"y":183686},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":204106,"y":183687},{"x":-4,"y":2}],"type":"area"},{"arc":[{"x":204102,"y":183689},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":204102,"y":183690},{"x":-10,"y":8}],"type":"coastline"},{"arc":[{"x":204092,"y":183698},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":204084,"y":183704},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":204082,"y":183704},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":204077,"y":183706},{"x":-15,"y":2}],"type":"coastline"},{"arc":[{"x":204062,"y":183708},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":204057,"y":183710},{"x":-22,"y":15}],"type":"coastline"},{"arc":[{"x":204035,"y":183725},{"x":-12,"y":3}],"type":"area"},{"arc":[{"x":204023,"y":183728},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":204009,"y":183729},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":204007,"y":183729},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":204004,"y":183730},{"x":-16,"y":2}],"type":"coastline"},{"arc":[{"x":203988,"y":183732},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":203977,"y":183731},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":203968,"y":183729},{"x":-10,"y":-3}],"type":"coastline"},{"arc":[{"x":203958,"y":183726},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":203957,"y":183725},{"x":-37,"y":8}],"type":"coastline"},{"arc":[{"x":203920,"y":183733},{"x":-9,"y":13}],"type":"coastline"},{"arc":[{"x":203911,"y":183746},{"x":-1,"y":11}],"type":"area"},{"arc":[{"x":203910,"y":183757},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":203917,"y":183766},{"x":9,"y":10}],"type":"coastline"},{"arc":[{"x":203926,"y":183776},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":203926,"y":183784},{"x":-3,"y":7}],"type":"area"},{"arc":[{"x":203923,"y":183791},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":203915,"y":183797},{"x":-10,"y":8}],"type":"coastline"},{"arc":[{"x":203905,"y":183805},{"x":-5,"y":9}],"type":"area"},{"arc":[{"x":203900,"y":183814},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":203889,"y":183811},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":203885,"y":183809},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":203877,"y":183812},{"x":-14,"y":8}],"type":"coastline"},{"arc":[{"x":203863,"y":183820},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":203856,"y":183820},{"x":-16,"y":18}],"type":"area"},{"arc":[{"x":203840,"y":183838},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":203839,"y":183849},{"x":5,"y":4}],"type":"area"},{"arc":[{"x":203844,"y":183853},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":203844,"y":183858},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":203843,"y":183862},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":203842,"y":183868},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":203841,"y":183876},{"x":0,"y":15}],"type":"coastline"},{"arc":[{"x":203841,"y":183891},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":203841,"y":183898},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":203843,"y":183899},{"x":19,"y":32}],"type":"coastline"},{"arc":[{"x":203862,"y":183931},{"x":-7,"y":10}],"type":"coastline"},{"arc":[{"x":203855,"y":183941},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":203856,"y":183948},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":203854,"y":183949},{"x":-15,"y":0}],"type":"coastline"},{"arc":[{"x":203839,"y":183949},{"x":-13,"y":11}],"type":"coastline"},{"arc":[{"x":203826,"y":183960},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":203821,"y":183970},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":203822,"y":183983},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":203817,"y":183995},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":203818,"y":184003},{"x":1,"y":6}],"type":"area"},{"arc":[{"x":203819,"y":184009},{"x":1,"y":12}],"type":"coastline"},{"arc":[{"x":203820,"y":184021},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":203815,"y":184030},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":203815,"y":184036},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":203816,"y":184043},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":203818,"y":184047},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":203822,"y":184055},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":203824,"y":184061},{"x":1,"y":14}],"type":"area"},{"arc":[{"x":203825,"y":184075},{"x":-9,"y":17}],"type":"coastline"},{"arc":[{"x":203816,"y":184092},{"x":-1,"y":4}],"type":"area"},{"arc":[{"x":203815,"y":184096},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":203814,"y":184098},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":203809,"y":184106},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":203807,"y":184110},{"x":-1,"y":6}],"type":"area"},{"arc":[{"x":203806,"y":184116},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":203806,"y":184121},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":203805,"y":184127},{"x":-10,"y":16}],"type":"coastline"},{"arc":[{"x":203795,"y":184143},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":203790,"y":184145},{"x":-13,"y":-8}],"type":"area"},{"arc":[{"x":203777,"y":184137},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":203768,"y":184138},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":203758,"y":184137},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":203751,"y":184138},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":203744,"y":184140},{"x":-17,"y":-5}],"type":"coastline"},{"arc":[{"x":203727,"y":184135},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":203719,"y":184129},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":203715,"y":184121},{"x":-1,"y":-4}],"type":"area"},{"arc":[{"x":203714,"y":184117},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":203713,"y":184115},{"x":-24,"y":-8}],"type":"area"},{"arc":[{"x":203689,"y":184107},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":203682,"y":184100},{"x":-4,"y":-4}],"type":"area"},{"arc":[{"x":203678,"y":184096},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":203672,"y":184093},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":203669,"y":184092},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":203667,"y":184091},{"x":-12,"y":6}],"type":"coastline"},{"arc":[{"x":203655,"y":184097},{"x":-22,"y":-19}],"type":"coastline"},{"arc":[{"x":203633,"y":184078},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":203626,"y":184071},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":203622,"y":184068},{"x":-16,"y":4}],"type":"coastline"},{"arc":[{"x":203606,"y":184072},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":203604,"y":184072},{"x":-27,"y":-6}],"type":"coastline"},{"arc":[{"x":203577,"y":184066},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":203566,"y":184065},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":203566,"y":184064},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":203559,"y":184063},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":203557,"y":184060},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":203552,"y":184050},{"x":-2,"y":-5}],"type":"area"},{"arc":[{"x":203550,"y":184045},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":203549,"y":184036},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":203548,"y":184034},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":203547,"y":184026},{"x":-7,"y":-16}],"type":"area"},{"arc":[{"x":203540,"y":184010},{"x":-4,"y":-21}],"type":"coastline"},{"arc":[{"x":203536,"y":183989},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":203534,"y":183987},{"x":-13,"y":-10}],"type":"coastline"},{"arc":[{"x":203521,"y":183977},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":203522,"y":183966},{"x":2,"y":-18}],"type":"coastline"},{"arc":[{"x":203524,"y":183948},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":203524,"y":183946},{"x":-3,"y":-10}],"type":"area"},{"arc":[{"x":203521,"y":183936},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":203520,"y":183926},{"x":-12,"y":-6}],"type":"coastline"},{"arc":[{"x":203508,"y":183920},{"x":-13,"y":-10}],"type":"coastline"},{"arc":[{"x":203495,"y":183910},{"x":-9,"y":2}],"type":"area"},{"arc":[{"x":203486,"y":183912},{"x":-25,"y":6}],"type":"coastline"},{"arc":[{"x":203461,"y":183918},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":203456,"y":183920},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":203454,"y":183921},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":203446,"y":183920},{"x":-17,"y":-3}],"type":"coastline"},{"arc":[{"x":203429,"y":183917},{"x":-15,"y":10}],"type":"area"},{"arc":[{"x":203414,"y":183927},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":203410,"y":183929},{"x":-7,"y":1}],"type":"area"},{"arc":[{"x":203403,"y":183930},{"x":-16,"y":5}],"type":"coastline"},{"arc":[{"x":203387,"y":183935},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":203385,"y":183931},{"x":-23,"y":-30}],"type":"coastline"},{"arc":[{"x":203362,"y":183901},{"x":-46,"y":-4}],"type":"coastline"},{"arc":[{"x":203316,"y":183897},{"x":0,"y":-4}],"type":"area"},{"arc":[{"x":203316,"y":183893},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":203312,"y":183885},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":203305,"y":183880},{"x":-11,"y":-18}],"type":"coastline"},{"arc":[{"x":203294,"y":183862},{"x":-19,"y":-5}],"type":"area"},{"arc":[{"x":203275,"y":183857},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":203265,"y":183856},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":203262,"y":183857},{"x":-12,"y":4}],"type":"coastline"},{"arc":[{"x":203250,"y":183861},{"x":-13,"y":4}],"type":"coastline"},{"arc":[{"x":203237,"y":183865},{"x":-15,"y":-3}],"type":"coastline"},{"arc":[{"x":203222,"y":183862},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":203217,"y":183858},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":203216,"y":183856},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":203207,"y":183853},{"x":-14,"y":-5}],"type":"coastline"},{"arc":[{"x":203193,"y":183848},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":203190,"y":183848},{"x":-17,"y":7}],"type":"coastline"},{"arc":[{"x":203173,"y":183855},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":203169,"y":183856},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":203164,"y":183857},{"x":-19,"y":-4}],"type":"coastline"},{"arc":[{"x":203145,"y":183853},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":203144,"y":183853},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":203135,"y":183851},{"x":-15,"y":0}],"type":"coastline"},{"arc":[{"x":203120,"y":183851},{"x":-8,"y":0}],"type":"area"},{"arc":[{"x":203112,"y":183851},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":203101,"y":183848},{"x":-5,"y":-1}],"type":"area"},{"arc":[{"x":203096,"y":183847},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":203088,"y":183849},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":203085,"y":183851},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":203081,"y":183856},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":203077,"y":183862},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":203072,"y":183864},{"x":-6,"y":0}],"type":"area"},{"arc":[{"x":203066,"y":183864},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":203059,"y":183862},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":203050,"y":183860},{"x":-5,"y":0}],"type":"area"},{"arc":[{"x":203045,"y":183860},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":203039,"y":183862},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":203036,"y":183862},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":203032,"y":183860},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":203031,"y":183859},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":203024,"y":183855},{"x":-16,"y":-8}],"type":"area"},{"arc":[{"x":203008,"y":183847},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":203001,"y":183845},{"x":-5,"y":0}],"type":"area"},{"arc":[{"x":202996,"y":183845},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":202988,"y":183843},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":202985,"y":183842},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":202978,"y":183840},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":202975,"y":183840},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":202965,"y":183842},{"x":-9,"y":2}],"type":"area"},{"arc":[{"x":202956,"y":183844},{"x":-18,"y":5}],"type":"coastline"},{"arc":[{"x":202938,"y":183849},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":202934,"y":183850},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":202925,"y":183854},{"x":-12,"y":7}],"type":"coastline"},{"arc":[{"x":202913,"y":183861},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":202911,"y":183862},{"x":-3,"y":2}],"type":"area"},{"arc":[{"x":202908,"y":183864},{"x":-12,"y":5}],"type":"coastline"},{"arc":[{"x":202896,"y":183869},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":202892,"y":183868},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":202891,"y":183866},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":202885,"y":183862},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":202881,"y":183862},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":202874,"y":183863},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":202869,"y":183863},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":202868,"y":183862},{"x":-2,"y":-4}],"type":"area"},{"arc":[{"x":202866,"y":183858},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":202865,"y":183852},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":202864,"y":183845},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":202862,"y":183841},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":202860,"y":183839},{"x":-16,"y":0}],"type":"coastline"},{"arc":[{"x":202844,"y":183839},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":202841,"y":183838},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":202838,"y":183829},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":202835,"y":183825},{"x":-7,"y":-6}],"type":"area"},{"arc":[{"x":202828,"y":183819},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":202827,"y":183818},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":202826,"y":183817},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":202821,"y":183810},{"x":-14,"y":-2}],"type":"coastline"},{"arc":[{"x":202807,"y":183808},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":202799,"y":183807},{"x":-8,"y":-2}],"type":"area"},{"arc":[{"x":202791,"y":183805},{"x":-23,"y":3}],"type":"coastline"},{"arc":[{"x":202768,"y":183808},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":202767,"y":183808},{"x":-21,"y":-3}],"type":"coastline"},{"arc":[{"x":202746,"y":183805},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":202742,"y":183805},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":202739,"y":183798},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":202738,"y":183795},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":202736,"y":183794},{"x":-13,"y":-3}],"type":"coastline"},{"arc":[{"x":202723,"y":183791},{"x":-17,"y":-15}],"type":"coastline"},{"arc":[{"x":202706,"y":183776},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":202700,"y":183773},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":202698,"y":183770},{"x":-7,"y":-10}],"type":"coastline"},{"arc":[{"x":202691,"y":183760},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":202689,"y":183758},{"x":-22,"y":-5}],"type":"coastline"},{"arc":[{"x":202667,"y":183753},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":202660,"y":183752},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":202650,"y":183751},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":202648,"y":183752},{"x":-12,"y":-1}],"type":"coastline"},{"arc":[{"x":202636,"y":183751},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":202633,"y":183749},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":202627,"y":183744},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":202624,"y":183742},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":202617,"y":183738},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":202617,"y":183737},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":202615,"y":183734},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":202607,"y":183728},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":202602,"y":183723},{"x":-16,"y":-19}],"type":"coastline"},{"arc":[{"x":202586,"y":183704},{"x":-6,"y":-10}],"type":"coastline"},{"arc":[{"x":202580,"y":183694},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":202572,"y":183692},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":202569,"y":183690},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":202566,"y":183688},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":202560,"y":183683},{"x":-2,"y":-4}],"type":"area"},{"arc":[{"x":202558,"y":183679},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":202554,"y":183674},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":202551,"y":183672},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":202541,"y":183672},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":202539,"y":183672},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":202531,"y":183673},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":202524,"y":183676},{"x":-9,"y":2}],"type":"area"},{"arc":[{"x":202515,"y":183678},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":202512,"y":183676},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":202507,"y":183673},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":202506,"y":183673},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":202500,"y":183665},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":202499,"y":183664},{"x":-8,"y":-9}],"type":"coastline"},{"arc":[{"x":202491,"y":183655},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":202492,"y":183654},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":202498,"y":183648},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":202503,"y":183648},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":202506,"y":183649},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":202512,"y":183648},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":202513,"y":183647},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":202514,"y":183644},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":202514,"y":183638},{"x":15,"y":-12}],"type":"coastline"},{"arc":[{"x":202529,"y":183626},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":202530,"y":183626},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":202535,"y":183624},{"x":5,"y":-2}],"type":"area"},{"arc":[{"x":202540,"y":183622},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":202546,"y":183619},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":202548,"y":183619},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":202550,"y":183620},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":202554,"y":183620},{"x":7,"y":-4}],"type":"area"},{"arc":[{"x":202561,"y":183616},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":202564,"y":183613},{"x":7,"y":-2}],"type":"area"},{"arc":[{"x":202571,"y":183611},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":202578,"y":183609},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":202582,"y":183604},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":202586,"y":183599},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":202590,"y":183594},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":202591,"y":183592},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":202598,"y":183592},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":202602,"y":183590},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":202606,"y":183590},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":202609,"y":183591},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":202616,"y":183593},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":202617,"y":183593},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":202619,"y":183592},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":202622,"y":183587},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202622,"y":183586},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":202624,"y":183583},{"x":19,"y":3}],"type":"area"},{"arc":[{"x":202643,"y":183586},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":202652,"y":183587},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":202657,"y":183594},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":202659,"y":183595},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":202671,"y":183594},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":202675,"y":183596},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":202676,"y":183598},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":202679,"y":183604},{"x":2,"y":5}],"type":"area"},{"arc":[{"x":202681,"y":183609},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":202683,"y":183612},{"x":5,"y":0}],"type":"area"},{"arc":[{"x":202688,"y":183612},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":202696,"y":183610},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":202700,"y":183606},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202700,"y":183605},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":202700,"y":183601},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":202702,"y":183594},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":202704,"y":183590},{"x":7,"y":-3}],"type":"area"},{"arc":[{"x":202711,"y":183587},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":202712,"y":183587},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":202716,"y":183587},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":202717,"y":183589},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":202722,"y":183593},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":202723,"y":183593},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":202726,"y":183593},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":202728,"y":183593},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":202734,"y":183590},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202734,"y":183589},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":202734,"y":183584},{"x":3,"y":-12}],"type":"coastline"},{"arc":[{"x":202737,"y":183572},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":202739,"y":183573},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":202748,"y":183578},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":202753,"y":183581},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":202764,"y":183583},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":202765,"y":183584},{"x":7,"y":-10}],"type":"coastline"},{"arc":[{"x":202772,"y":183574},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":202773,"y":183571},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":202775,"y":183570},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":202779,"y":183563},{"x":9,"y":-3}],"type":"coastline"},{"arc":[{"x":202788,"y":183560},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":202791,"y":183559},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":202795,"y":183554},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":202794,"y":183546},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":202793,"y":183545},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":202800,"y":183539},{"x":8,"y":-4}],"type":"area"},{"arc":[{"x":202808,"y":183535},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":202808,"y":183521},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":202809,"y":183517},{"x":6,"y":-10}],"type":"coastline"},{"arc":[{"x":202815,"y":183507},{"x":0,"y":-6}],"type":"area"},{"arc":[{"x":202815,"y":183501},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":202817,"y":183496},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":202818,"y":183494},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":202824,"y":183489},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":202827,"y":183479},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":202828,"y":183479},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":202832,"y":183478},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":202833,"y":183478},{"x":15,"y":0}],"type":"coastline"},{"arc":[{"x":202848,"y":183478},{"x":6,"y":0}],"type":"area"},{"arc":[{"x":202854,"y":183478},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":202863,"y":183482},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":202870,"y":183482},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":202874,"y":183478},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":202871,"y":183476},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":202869,"y":183473},{"x":-7,"y":-15}],"type":"coastline"},{"arc":[{"x":202862,"y":183458},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":202861,"y":183458},{"x":-14,"y":0}],"type":"coastline"},{"arc":[{"x":202847,"y":183458},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":202842,"y":183451},{"x":-5,"y":-2}],"type":"area"},{"arc":[{"x":202837,"y":183449},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":202834,"y":183446},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":202833,"y":183444},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":202828,"y":183443},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":202827,"y":183444},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":202824,"y":183443},{"x":-3,"y":-6}],"type":"area"},{"arc":[{"x":202821,"y":183437},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":202815,"y":183431},{"x":-3,"y":-3}],"type":"area"},{"arc":[{"x":202812,"y":183428},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":202812,"y":183425},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":202813,"y":183420},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":202816,"y":183417},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":202815,"y":183406},{"x":2,"y":-5}],"type":"area"},{"arc":[{"x":202817,"y":183401},{"x":11,"y":-9}],"type":"coastline"},{"arc":[{"x":202828,"y":183392},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202828,"y":183391},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":202834,"y":183386},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":202835,"y":183384},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":202833,"y":183376},{"x":-2,"y":-6}],"type":"area"},{"arc":[{"x":202831,"y":183370},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":202828,"y":183364},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":202827,"y":183362},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202827,"y":183361},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":202823,"y":183352},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":202823,"y":183346},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202823,"y":183345},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":202826,"y":183337},{"x":15,"y":-6}],"type":"coastline"},{"arc":[{"x":202841,"y":183331},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":202845,"y":183329},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":202846,"y":183329},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":202851,"y":183327},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":202854,"y":183323},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":202857,"y":183319},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":202860,"y":183318},{"x":4,"y":0}],"type":"area"},{"arc":[{"x":202864,"y":183318},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":202870,"y":183311},{"x":-5,"y":-15}],"type":"coastline"},{"arc":[{"x":202865,"y":183296},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":202864,"y":183291},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":202865,"y":183285},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":202867,"y":183284},{"x":23,"y":3}],"type":"coastline"},{"arc":[{"x":202890,"y":183287},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":202903,"y":183285},{"x":4,"y":3}],"type":"area"},{"arc":[{"x":202907,"y":183288},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":202912,"y":183292},{"x":16,"y":2}],"type":"coastline"},{"arc":[{"x":202928,"y":183294},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":202931,"y":183291},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":202934,"y":183287},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":202939,"y":183282},{"x":9,"y":-8}],"type":"coastline"},{"arc":[{"x":202948,"y":183274},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202948,"y":183273},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":202947,"y":183260},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":202948,"y":183254},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202948,"y":183253},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":202950,"y":183250},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":202950,"y":183249},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":202952,"y":183244},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":202955,"y":183241},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":202956,"y":183241},{"x":0,"y":-17}],"type":"coastline"},{"arc":[{"x":202956,"y":183224},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":202957,"y":183221},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":202962,"y":183215},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":202965,"y":183212},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":202965,"y":183210},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":202968,"y":183200},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":202971,"y":183198},{"x":11,"y":-18}],"type":"coastline"},{"arc":[{"x":202982,"y":183180},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":202984,"y":183176},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":202987,"y":183166},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":202985,"y":183159},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":202982,"y":183153},{"x":-1,"y":-9}],"type":"area"},{"arc":[{"x":202981,"y":183144},{"x":-11,"y":-26}],"type":"coastline"},{"arc":[{"x":202970,"y":183118},{"x":-2,"y":-6}],"type":"area"},{"arc":[{"x":202968,"y":183112},{"x":-8,"y":-14}],"type":"coastline"},{"arc":[{"x":202960,"y":183098},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":202958,"y":183096},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":202956,"y":183085},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":202955,"y":183075},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":202955,"y":183070},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":202955,"y":183065},{"x":4,"y":-3}],"type":"area"},{"arc":[{"x":202959,"y":183062},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":202971,"y":183061},{"x":30,"y":-8}],"type":"coastline"},{"arc":[{"x":203001,"y":183053},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":203007,"y":183053},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":203010,"y":183054},{"x":21,"y":-11}],"type":"coastline"},{"arc":[{"x":203031,"y":183043},{"x":-2,"y":-27}],"type":"coastline"},{"arc":[{"x":203029,"y":183016},{"x":-7,"y":-6}],"type":"area"},{"arc":[{"x":203022,"y":183010},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":203020,"y":183004},{"x":-4,"y":-15}],"type":"coastline"},{"arc":[{"x":203016,"y":182989},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":203013,"y":182983},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":203012,"y":182982},{"x":-8,"y":-9}],"type":"coastline"},{"arc":[{"x":203004,"y":182973},{"x":-10,"y":-11}],"type":"coastline"},{"arc":[{"x":202994,"y":182962},{"x":-3,"y":-18}],"type":"coastline"},{"arc":[{"x":202991,"y":182944},{"x":-1,"y":-4}],"type":"area"},{"arc":[{"x":202990,"y":182940},{"x":-10,"y":-12}],"type":"coastline"},{"arc":[{"x":202980,"y":182928},{"x":-4,"y":-8}],"type":"area"},{"arc":[{"x":202976,"y":182920},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":202973,"y":182916},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":202966,"y":182914},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":202960,"y":182905},{"x":-6,"y":-10}],"type":"coastline"},{"arc":[{"x":202954,"y":182895},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":202952,"y":182892},{"x":-10,"y":-14}],"type":"coastline"},{"arc":[{"x":202942,"y":182878},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":202935,"y":182877},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":202934,"y":182877},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":202933,"y":182877},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":202925,"y":182873},{"x":-8,"y":-12}],"type":"coastline"},{"arc":[{"x":202917,"y":182861},{"x":-12,"y":-12}],"type":"coastline"},{"arc":[{"x":202905,"y":182849},{"x":-6,"y":-11}],"type":"coastline"},{"arc":[{"x":202899,"y":182838},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":202896,"y":182829},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":202896,"y":182822},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":202897,"y":182812},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":202897,"y":182809},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":202898,"y":182806},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":202901,"y":182802},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":202907,"y":182790},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":202914,"y":182782},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":202925,"y":182779},{"x":8,"y":-8}],"type":"area"},{"arc":[{"x":202933,"y":182771},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":202934,"y":182771},{"x":12,"y":-22}],"type":"coastline"},{"arc":[{"x":202946,"y":182749},{"x":3,"y":-3}],"type":"area"},{"arc":[{"x":202949,"y":182746},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":202951,"y":182742},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":202955,"y":182736},{"x":4,"y":-3}],"type":"area"},{"arc":[{"x":202959,"y":182733},{"x":9,"y":-7}],"type":"coastline"},{"arc":[{"x":202968,"y":182726},{"x":14,"y":-6}],"type":"coastline"},{"arc":[{"x":202982,"y":182720},{"x":0,"y":-17}],"type":"coastline"},{"arc":[{"x":202982,"y":182703},{"x":2,"y":-47}],"type":"coastline"},{"arc":[{"x":202984,"y":182656},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":202992,"y":182653},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":203000,"y":182656},{"x":27,"y":16}],"type":"coastline"},{"arc":[{"x":203027,"y":182672},{"x":11,"y":2}],"type":"area"},{"arc":[{"x":203038,"y":182674},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":203039,"y":182673},{"x":14,"y":-11}],"type":"coastline"},{"arc":[{"x":203053,"y":182662},{"x":16,"y":0}],"type":"coastline"},{"arc":[{"x":203069,"y":182662},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":203075,"y":182668},{"x":18,"y":3}],"type":"coastline"},{"arc":[{"x":203093,"y":182671},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":203096,"y":182671},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":203106,"y":182668},{"x":16,"y":-12}],"type":"coastline"},{"arc":[{"x":203122,"y":182656},{"x":14,"y":-8}],"type":"coastline"},{"arc":[{"x":203136,"y":182648},{"x":5,"y":-3}],"type":"area"},{"arc":[{"x":203141,"y":182645},{"x":46,"y":5}],"type":"coastline"},{"arc":[{"x":203187,"y":182650},{"x":17,"y":-1}],"type":"area"},{"arc":[{"x":203204,"y":182649},{"x":35,"y":7}],"type":"coastline"},{"arc":[{"x":203239,"y":182656},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":203245,"y":182657},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":203250,"y":182659},{"x":28,"y":9}],"type":"coastline"},{"arc":[{"x":203278,"y":182668},{"x":18,"y":7}],"type":"coastline"},{"arc":[{"x":203296,"y":182675},{"x":9,"y":9}],"type":"coastline"},{"arc":[{"x":203305,"y":182684},{"x":18,"y":-9}],"type":"coastline"},{"arc":[{"x":203323,"y":182675},{"x":24,"y":-8}],"type":"coastline"},{"arc":[{"x":203347,"y":182667},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":203352,"y":182669},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":203362,"y":182670},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":203369,"y":182668},{"x":11,"y":1}],"type":"area"},{"arc":[{"x":203380,"y":182669},{"x":19,"y":1}],"type":"coastline"},{"arc":[{"x":203399,"y":182670},{"x":25,"y":-4}],"type":"area"},{"arc":[{"x":203424,"y":182666},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":203425,"y":182664},{"x":0,"y":-5}],"type":"area"},{"arc":[{"x":203425,"y":182659},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":203424,"y":182651},{"x":5,"y":-14}],"type":"coastline"},{"arc":[{"x":203429,"y":182637},{"x":3,"y":-5}],"type":"area"},{"arc":[{"x":203432,"y":182632},{"x":17,"y":-14}],"type":"coastline"},{"arc":[{"x":203449,"y":182618},{"x":12,"y":-9}],"type":"coastline"},{"arc":[{"x":203461,"y":182609},{"x":7,"y":-5}],"type":"area"},{"arc":[{"x":203468,"y":182604},{"x":13,"y":-12}],"type":"coastline"},{"arc":[{"x":203481,"y":182592},{"x":17,"y":-26}],"type":"coastline"},{"arc":[{"x":203498,"y":182566},{"x":11,"y":-7}],"type":"coastline"},{"arc":[{"x":203509,"y":182559},{"x":9,"y":-3}],"type":"coastline"},{"arc":[{"x":203518,"y":182556},{"x":7,"y":-17}],"type":"coastline"},{"arc":[{"x":203525,"y":182539},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":203526,"y":182539},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":203528,"y":182532},{"x":1,"y":-7}],"type":"area"},{"arc":[{"x":203529,"y":182525},{"x":1,"y":-14}],"type":"coastline"},{"arc":[{"x":203530,"y":182511},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":203531,"y":182509},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":203532,"y":182506},{"x":3,"y":-16}],"type":"area"},{"arc":[{"x":203535,"y":182490},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":203531,"y":182483},{"x":-3,"y":-5}],"type":"area"},{"arc":[{"x":203528,"y":182478},{"x":-2,"y":-14}],"type":"coastline"},{"arc":[{"x":203526,"y":182464},{"x":1,"y":-3}],"type":"area"},{"arc":[{"x":203527,"y":182461},{"x":2,"y":-25}],"type":"coastline"},{"arc":[{"x":203529,"y":182436},{"x":21,"y":-39}],"type":"coastline"},{"arc":[{"x":203550,"y":182397},{"x":-3,"y":-27}],"type":"coastline"},{"arc":[{"x":203547,"y":182370},{"x":10,"y":-21}],"type":"coastline"},{"arc":[{"x":203557,"y":182349},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":203557,"y":182342},{"x":9,"y":-34}],"type":"coastline"},{"arc":[{"x":203566,"y":182308},{"x":2,"y":-10}],"type":"area"},{"arc":[{"x":203568,"y":182298},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":203573,"y":182289},{"x":1,"y":-8}],"type":"area"},{"arc":[{"x":203574,"y":182281},{"x":12,"y":-41}],"type":"coastline"},{"arc":[{"x":203586,"y":182240},{"x":-2,"y":-15}],"type":"coastline"},{"arc":[{"x":203584,"y":182225},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":203583,"y":182223},{"x":-4,"y":-7}],"type":"area"},{"arc":[{"x":203579,"y":182216},{"x":7,"y":-19}],"type":"coastline"},{"arc":[{"x":203586,"y":182197},{"x":-2,"y":-19}],"type":"coastline"},{"arc":[{"x":203584,"y":182178},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":203584,"y":182176},{"x":20,"y":-8}],"type":"coastline"},{"arc":[{"x":203604,"y":182168},{"x":29,"y":-19}],"type":"coastline"},{"arc":[{"x":203633,"y":182149},{"x":5,"y":-2}],"type":"area"},{"arc":[{"x":203638,"y":182147},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":203645,"y":182147},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":203648,"y":182146},{"x":13,"y":-6}],"type":"coastline"},{"arc":[{"x":203661,"y":182140},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":203663,"y":182139},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":203665,"y":182137},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":203669,"y":182134},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":203677,"y":182131},{"x":1,"y":-12}],"type":"area"},{"arc":[{"x":203678,"y":182119},{"x":10,"y":-29}],"type":"coastline"},{"arc":[{"x":203688,"y":182090},{"x":0,"y":-19}],"type":"area"},{"arc":[{"x":203688,"y":182071},{"x":15,"y":1}],"type":"coastline"},{"arc":[{"x":203703,"y":182072},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":203706,"y":182072},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":203715,"y":182070},{"x":12,"y":-1}],"type":"area"},{"arc":[{"x":203727,"y":182069},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":203736,"y":182068},{"x":18,"y":-2}],"type":"coastline"},{"arc":[{"x":203754,"y":182066},{"x":7,"y":0}],"type":"area"},{"arc":[{"x":203761,"y":182066},{"x":16,"y":1}],"type":"coastline"},{"arc":[{"x":203777,"y":182067},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":203780,"y":182068},{"x":12,"y":5}],"type":"area"},{"arc":[{"x":203792,"y":182073},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":203801,"y":182076},{"x":18,"y":11}],"type":"coastline"},{"arc":[{"x":203819,"y":182087},{"x":4,"y":0}],"type":"area"},{"arc":[{"x":203823,"y":182087},{"x":11,"y":-4}],"type":"coastline"},{"arc":[{"x":203834,"y":182083},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":203838,"y":182080},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":203847,"y":182079},{"x":8,"y":-8}],"type":"coastline"},{"arc":[{"x":203855,"y":182071},{"x":2,"y":-8}],"type":"area"},{"arc":[{"x":203857,"y":182063},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":203859,"y":182053},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":203862,"y":182047},{"x":18,"y":-9}],"type":"coastline"},{"arc":[{"x":203880,"y":182038},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":203886,"y":182033},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":203890,"y":182028},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":203896,"y":182019},{"x":-9,"y":-14}],"type":"coastline"},{"arc":[{"x":203887,"y":182005},{"x":-4,"y":-9}],"type":"area"},{"arc":[{"x":203883,"y":181996},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":203883,"y":181985},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":203877,"y":181984},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":203870,"y":181979},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":203868,"y":181979},{"x":-17,"y":-12}],"type":"coastline"},{"arc":[{"x":203851,"y":181967},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":203846,"y":181963},{"x":-5,"y":-9}],"type":"area"},{"arc":[{"x":203841,"y":181954},{"x":-33,"y":-12}],"type":"coastline"},{"arc":[{"x":203808,"y":181942},{"x":-14,"y":-10}],"type":"coastline"},{"arc":[{"x":203794,"y":181932},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":203795,"y":181926},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":203794,"y":181917},{"x":-2,"y":-5}],"type":"area"},{"arc":[{"x":203792,"y":181912},{"x":-9,"y":-24}],"type":"coastline"},{"arc":[{"x":203783,"y":181888},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":203779,"y":181887},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":203777,"y":181887},{"x":-4,"y":-14}],"type":"coastline"},{"arc":[{"x":203773,"y":181873},{"x":-9,"y":-14}],"type":"area"},{"arc":[{"x":203764,"y":181859},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":203757,"y":181856},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":203756,"y":181854},{"x":-13,"y":-22}],"type":"coastline"},{"arc":[{"x":203743,"y":181832},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":203743,"y":181829},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":203745,"y":181821},{"x":15,"y":-5}],"type":"coastline"},{"arc":[{"x":203760,"y":181816},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":203765,"y":181812},{"x":12,"y":-10}],"type":"coastline"},{"arc":[{"x":203777,"y":181802},{"x":11,"y":-6}],"type":"coastline"},{"arc":[{"x":203788,"y":181796},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":203788,"y":181794},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":203788,"y":181785},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":203789,"y":181781},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":203797,"y":181775},{"x":11,"y":-8}],"type":"coastline"},{"arc":[{"x":203808,"y":181767},{"x":-7,"y":-22}],"type":"coastline"},{"arc":[{"x":203801,"y":181745},{"x":3,"y":-6}],"type":"area"},{"arc":[{"x":203804,"y":181739},{"x":17,"y":-15}],"type":"coastline"},{"arc":[{"x":203821,"y":181724},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":203827,"y":181715},{"x":7,"y":-7}],"type":"area"},{"arc":[{"x":203834,"y":181708},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":203836,"y":181703},{"x":2,"y":-31}],"type":"coastline"},{"arc":[{"x":203838,"y":181672},{"x":-6,"y":-27}],"type":"coastline"},{"arc":[{"x":203832,"y":181645},{"x":-1,"y":-4}],"type":"area"},{"arc":[{"x":203831,"y":181641},{"x":-3,"y":-19}],"type":"coastline"},{"arc":[{"x":203828,"y":181622},{"x":-6,"y":-16}],"type":"coastline"},{"arc":[{"x":203822,"y":181606},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":203825,"y":181602},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":203825,"y":181592},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":203824,"y":181586},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":203828,"y":181582},{"x":20,"y":-5}],"type":"coastline"},{"arc":[{"x":203848,"y":181577},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":203850,"y":181578},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":203853,"y":181583},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":203854,"y":181585},{"x":7,"y":15}],"type":"coastline"},{"arc":[{"x":203861,"y":181600},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":203865,"y":181603},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":203871,"y":181606},{"x":7,"y":0}],"type":"area"},{"arc":[{"x":203878,"y":181606},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":203883,"y":181607},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":203886,"y":181614},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":203887,"y":181616},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":203892,"y":181622},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":203898,"y":181624},{"x":10,"y":14}],"type":"coastline"},{"arc":[{"x":203908,"y":181638},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":203915,"y":181642},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":203924,"y":181643},{"x":25,"y":2}],"type":"coastline"},{"arc":[{"x":203949,"y":181645},{"x":18,"y":-23}],"type":"coastline"},{"arc":[{"x":203967,"y":181622},{"x":-3,"y":-9}],"type":"area"},{"arc":[{"x":203964,"y":181613},{"x":3,"y":-13}],"type":"coastline"},{"arc":[{"x":203967,"y":181600},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":203968,"y":181600},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":203979,"y":181597},{"x":4,"y":-6}],"type":"area"},{"arc":[{"x":203983,"y":181591},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":203985,"y":181586},{"x":1,"y":-8}],"type":"area"},{"arc":[{"x":203986,"y":181578},{"x":-2,"y":-13}],"type":"coastline"},{"arc":[{"x":203984,"y":181565},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":203981,"y":181562},{"x":3,"y":-3}],"type":"area"},{"arc":[{"x":203984,"y":181559},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":203987,"y":181556},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":203987,"y":181548},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":203987,"y":181540},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":203987,"y":181539},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":203988,"y":181539},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":203993,"y":181536},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":203996,"y":181532},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":203998,"y":181523},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":204000,"y":181519},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":204003,"y":181515},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":204006,"y":181516},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":204012,"y":181518},{"x":24,"y":14}],"type":"coastline"},{"arc":[{"x":204036,"y":181532},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":204042,"y":181533},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":204047,"y":181532},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":204057,"y":181533},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":204059,"y":181536},{"x":8,"y":15}],"type":"coastline"},{"arc":[{"x":204067,"y":181551},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":204067,"y":181552},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":204069,"y":181560},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":204074,"y":181565},{"x":3,"y":4}],"type":"area"},{"arc":[{"x":204077,"y":181569},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":204082,"y":181571},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":204085,"y":181570},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":204090,"y":181569},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":204094,"y":181570},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":204104,"y":181567},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":204109,"y":181562},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":204110,"y":181560},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":204112,"y":181555},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":204113,"y":181553},{"x":12,"y":-5}],"type":"coastline"},{"arc":[{"x":204125,"y":181548},{"x":6,"y":-3}],"type":"area"},{"arc":[{"x":204131,"y":181545},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":204132,"y":181535},{"x":4,"y":-8}],"type":"area"},{"arc":[{"x":204136,"y":181527},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":204135,"y":181522},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":204134,"y":181517},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":204134,"y":181506},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":204135,"y":181505},{"x":17,"y":-16}],"type":"coastline"},{"arc":[{"x":204152,"y":181489},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":204158,"y":181493},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":204159,"y":181493},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":204165,"y":181488},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":204168,"y":181486},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":204174,"y":181487},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":204188,"y":181486},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":204192,"y":181481},{"x":7,"y":-10}],"type":"coastline"},{"arc":[{"x":204199,"y":181471},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":204200,"y":181470},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":204201,"y":181469},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":204206,"y":181468},{"x":4,"y":-1}],"type":"area"},{"arc":[{"x":204210,"y":181467},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":204217,"y":181466},{"x":17,"y":-10}],"type":"coastline"},{"arc":[{"x":204234,"y":181456},{"x":9,"y":6}],"type":"coastline"},{"arc":[{"x":204243,"y":181462},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":204253,"y":181463},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":204257,"y":181460},{"x":9,"y":-11}],"type":"coastline"},{"arc":[{"x":204266,"y":181449},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":204269,"y":181447},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":204276,"y":181441},{"x":16,"y":-13}],"type":"coastline"},{"arc":[{"x":204292,"y":181428},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":204293,"y":181427},{"x":8,"y":-10}],"type":"coastline"},{"arc":[{"x":204301,"y":181417},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":204302,"y":181414},{"x":10,"y":-7}],"type":"coastline"},{"arc":[{"x":204312,"y":181407},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":204315,"y":181407},{"x":12,"y":5}],"type":"coastline"},{"arc":[{"x":204327,"y":181412},{"x":6,"y":1}],"type":"area"},{"arc":[{"x":204333,"y":181413},{"x":13,"y":2}],"type":"coastline"},{"arc":[{"x":204346,"y":181415},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":204351,"y":181414},{"x":10,"y":-1}],"type":"area"},{"arc":[{"x":204361,"y":181413},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":204361,"y":181416},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":204361,"y":181418},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":204362,"y":181427},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":204363,"y":181438},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":204366,"y":181444},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":204372,"y":181449},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":204376,"y":181452},{"x":4,"y":2}],"type":"area"},{"arc":[{"x":204380,"y":181454},{"x":13,"y":1}],"type":"coastline"},{"arc":[{"x":204393,"y":181455},{"x":11,"y":0}],"type":"area"},{"arc":[{"x":204404,"y":181455},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":204410,"y":181464},{"x":1,"y":5}],"type":"area"},{"arc":[{"x":204411,"y":181469},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":204413,"y":181473},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":204419,"y":181476},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":204421,"y":181478},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":204426,"y":181484},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":204427,"y":181485},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":204434,"y":181489},{"x":5,"y":-2}],"type":"area"},{"arc":[{"x":204439,"y":181487},{"x":15,"y":-6}],"type":"coastline"},{"arc":[{"x":204454,"y":181481},{"x":18,"y":-2}],"type":"coastline"},{"arc":[{"x":204472,"y":181479},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":204473,"y":181478},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":204480,"y":181476},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":204486,"y":181476},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":204491,"y":181477},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":204492,"y":181475},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":204497,"y":181471},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":204508,"y":181468},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":204515,"y":181467},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":204517,"y":181467},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":204527,"y":181469},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":204530,"y":181467},{"x":12,"y":4}],"type":"coastline"},{"arc":[{"x":204542,"y":181471},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":204552,"y":181475},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":204553,"y":181474},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":204560,"y":181472},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":204563,"y":181470},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":204571,"y":181469},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":204574,"y":181471},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":204583,"y":181469},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":204584,"y":181467},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":204586,"y":181458},{"x":2,"y":-13}],"type":"coastline"},{"arc":[{"x":204588,"y":181445},{"x":2,"y":-12}],"type":"coastline"},{"arc":[{"x":204590,"y":181433},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":204593,"y":181427},{"x":22,"y":-15}],"type":"coastline"},{"arc":[{"x":204615,"y":181412},{"x":5,"y":1}],"type":"area"},{"arc":[{"x":204620,"y":181413},{"x":9,"y":-19}],"type":"coastline"},{"arc":[{"x":204629,"y":181394},{"x":6,"y":-10}],"type":"area"},{"arc":[{"x":204635,"y":181384},{"x":6,"y":-24}],"type":"coastline"},{"arc":[{"x":204641,"y":181360},{"x":0,"y":-5}],"type":"area"},{"arc":[{"x":204641,"y":181355},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":204646,"y":181345},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":204652,"y":181338},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":204655,"y":181338},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":204665,"y":181335},{"x":4,"y":-11}],"type":"coastline"},{"arc":[{"x":204669,"y":181324},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":204670,"y":181321},{"x":11,"y":-5}],"type":"coastline"},{"arc":[{"x":204681,"y":181316},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":204686,"y":181311},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":204690,"y":181304},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":204692,"y":181300},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":204700,"y":181296},{"x":5,"y":8}],"type":"area"},{"arc":[{"x":204705,"y":181304},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":204707,"y":181305},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":204709,"y":181304},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":204721,"y":181303},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":204729,"y":181304},{"x":26,"y":-3}],"type":"coastline"},{"arc":[{"x":204755,"y":181301},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":204762,"y":181303},{"x":13,"y":0}],"type":"coastline"},{"arc":[{"x":204775,"y":181303},{"x":3,"y":2}],"type":"area"},{"arc":[{"x":204778,"y":181305},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":204786,"y":181309},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":204793,"y":181312},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":204803,"y":181316},{"x":4,"y":2}],"type":"area"},{"arc":[{"x":204807,"y":181318},{"x":9,"y":6}],"type":"coastline"},{"arc":[{"x":204816,"y":181324},{"x":9,"y":6}],"type":"coastline"},{"arc":[{"x":204825,"y":181330},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":204832,"y":181334},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":204833,"y":181334},{"x":21,"y":-2}],"type":"coastline"},{"arc":[{"x":204854,"y":181332},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":204857,"y":181333},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":204863,"y":181329},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":204871,"y":181324},{"x":8,"y":6}],"type":"area"},{"arc":[{"x":204879,"y":181330},{"x":25,"y":-3}],"type":"coastline"},{"arc":[{"x":204904,"y":181327},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":204909,"y":181327},{"x":16,"y":1}],"type":"area"},{"arc":[{"x":204925,"y":181328},{"x":9,"y":-3}],"type":"coastline"},{"arc":[{"x":204934,"y":181325},{"x":3,"y":-10}],"type":"area"},{"arc":[{"x":204937,"y":181315},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":204938,"y":181312},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":204937,"y":181309},{"x":-7,"y":-15}],"type":"coastline"},{"arc":[{"x":204930,"y":181294},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":204928,"y":181290},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":204924,"y":181283},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":204924,"y":181281},{"x":2,"y":-5}],"type":"area"},{"arc":[{"x":204926,"y":181276},{"x":4,"y":-11}],"type":"coastline"},{"arc":[{"x":204930,"y":181265},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":204932,"y":181263},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":204936,"y":181259},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":204941,"y":181249},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":204942,"y":181245},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":204941,"y":181238},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":204941,"y":181236},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":204941,"y":181231},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":204940,"y":181222},{"x":-3,"y":-11}],"type":"coastline"},{"arc":[{"x":204937,"y":181211},{"x":5,"y":-11}],"type":"coastline"},{"arc":[{"x":204942,"y":181200},{"x":14,"y":-9}],"type":"coastline"},{"arc":[{"x":204956,"y":181191},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":204958,"y":181189},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":204966,"y":181184},{"x":5,"y":-5}],"type":"area"},{"arc":[{"x":204971,"y":181179},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":204972,"y":181171},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":204979,"y":181160},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":204978,"y":181152},{"x":0,"y":-5}],"type":"area"},{"arc":[{"x":204978,"y":181147},{"x":3,"y":-18}],"type":"coastline"},{"arc":[{"x":204981,"y":181129},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":204988,"y":181124},{"x":17,"y":-1}],"type":"coastline"},{"arc":[{"x":205005,"y":181123},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":205012,"y":181118},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":205011,"y":181111},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":205013,"y":181105},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":205014,"y":181096},{"x":3,"y":-15}],"type":"coastline"},{"arc":[{"x":205017,"y":181081},{"x":4,"y":0}],"type":"area"},{"arc":[{"x":205021,"y":181081},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":205026,"y":181082},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":205030,"y":181084},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":205031,"y":181084},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":205036,"y":181086},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":205038,"y":181087},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":205043,"y":181090},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":205043,"y":181091},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":205047,"y":181089},{"x":12,"y":3}],"type":"coastline"},{"arc":[{"x":205059,"y":181092},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":205060,"y":181097},{"x":7,"y":5}],"type":"area"},{"arc":[{"x":205067,"y":181102},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":205075,"y":181102},{"x":11,"y":-4}],"type":"coastline"},{"arc":[{"x":205086,"y":181098},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":205089,"y":181096},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":205092,"y":181093},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":205092,"y":181089},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":205091,"y":181083},{"x":-2,"y":-4}],"type":"area"},{"arc":[{"x":205089,"y":181079},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":205096,"y":181075},{"x":10,"y":2}],"type":"area"},{"arc":[{"x":205106,"y":181077},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":205110,"y":181077},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":205115,"y":181073},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":205117,"y":181071},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":205125,"y":181069},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":205126,"y":181064},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":205128,"y":181057},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":205131,"y":181047},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":205134,"y":181046},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":205137,"y":181036},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":205134,"y":181027},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":205135,"y":181019},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":205135,"y":181016},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":205134,"y":181013},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":205133,"y":181003},{"x":-3,"y":-5}],"type":"area"},{"arc":[{"x":205130,"y":180998},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":205128,"y":180987},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":205129,"y":180985},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":205130,"y":180977},{"x":1,"y":-3}],"type":"area"},{"arc":[{"x":205131,"y":180974},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":205133,"y":180971},{"x":4,"y":-5}],"type":"area"},{"arc":[{"x":205137,"y":180966},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":205132,"y":180956},{"x":-8,"y":-6}],"type":"area"},{"arc":[{"x":205124,"y":180950},{"x":-3,"y":-15}],"type":"coastline"},{"arc":[{"x":205121,"y":180935},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":205119,"y":180930},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":205115,"y":180920},{"x":-8,"y":-17}],"type":"coastline"},{"arc":[{"x":205107,"y":180903},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":205112,"y":180901},{"x":3,"y":-9}],"type":"area"},{"arc":[{"x":205115,"y":180892},{"x":-8,"y":-8}],"type":"coastline"},{"arc":[{"x":205107,"y":180884},{"x":-2,"y":-5}],"type":"area"},{"arc":[{"x":205105,"y":180879},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":205102,"y":180875},{"x":-9,"y":-26}],"type":"coastline"},{"arc":[{"x":205093,"y":180849},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":205092,"y":180847},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":205092,"y":180846},{"x":0,"y":-4}],"type":"area"},{"arc":[{"x":205092,"y":180842},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":205096,"y":180837},{"x":-1,"y":-5}],"type":"area"},{"arc":[{"x":205095,"y":180832},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":205096,"y":180820},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":205095,"y":180817},{"x":0,"y":-12}],"type":"coastline"},{"arc":[{"x":205095,"y":180805},{"x":4,"y":-7}],"type":"area"},{"arc":[{"x":205099,"y":180798},{"x":14,"y":-18}],"type":"coastline"},{"arc":[{"x":205113,"y":180780},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":205114,"y":180771},{"x":2,"y":-11}],"type":"coastline"},{"arc":[{"x":205116,"y":180760},{"x":0,"y":-5}],"type":"area"},{"arc":[{"x":205116,"y":180755},{"x":2,"y":-11}],"type":"coastline"},{"arc":[{"x":205118,"y":180744},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":205123,"y":180746},{"x":11,"y":5}],"type":"coastline"},{"arc":[{"x":205134,"y":180751},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":205132,"y":180743},{"x":3,"y":-5}],"type":"area"},{"arc":[{"x":205135,"y":180738},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205138,"y":180738},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":205134,"y":180728},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":205134,"y":180727},{"x":-5,"y":-12}],"type":"coastline"},{"arc":[{"x":205129,"y":180715},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":205139,"y":180715},{"x":5,"y":0}],"type":"area"},{"arc":[{"x":205144,"y":180715},{"x":19,"y":0}],"type":"coastline"},{"arc":[{"x":205163,"y":180715},{"x":6,"y":-1}],"type":"area"},{"arc":[{"x":205169,"y":180714},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":205179,"y":180714},{"x":14,"y":2}],"type":"area"},{"arc":[{"x":205193,"y":180716},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":205203,"y":180717},{"x":-4,"y":-19}],"type":"coastline"},{"arc":[{"x":205199,"y":180698},{"x":-17,"y":-24}],"type":"coastline"},{"arc":[{"x":205182,"y":180674},{"x":-8,"y":-12}],"type":"coastline"},{"arc":[{"x":205174,"y":180662},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":205174,"y":180659},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":205176,"y":180657},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":205181,"y":180663},{"x":8,"y":9}],"type":"area"},{"arc":[{"x":205189,"y":180672},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":205191,"y":180674},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":205193,"y":180674},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":205200,"y":180668},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":205208,"y":180665},{"x":8,"y":9}],"type":"coastline"},{"arc":[{"x":205216,"y":180674},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":205218,"y":180676},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":205223,"y":180679},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":205226,"y":180684},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":205230,"y":180689},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":205239,"y":180692},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":205242,"y":180696},{"x":8,"y":2}],"type":"area"},{"arc":[{"x":205250,"y":180698},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":205259,"y":180698},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":205260,"y":180699},{"x":10,"y":10}],"type":"coastline"},{"arc":[{"x":205270,"y":180709},{"x":11,"y":12}],"type":"coastline"},{"arc":[{"x":205281,"y":180721},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":205283,"y":180724},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":205290,"y":180731},{"x":7,"y":6}],"type":"area"},{"arc":[{"x":205297,"y":180737},{"x":8,"y":7}],"type":"coastline"},{"arc":[{"x":205305,"y":180744},{"x":10,"y":11}],"type":"coastline"},{"arc":[{"x":205315,"y":180755},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":205326,"y":180753},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":205333,"y":180754},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205336,"y":180754},{"x":14,"y":1}],"type":"coastline"},{"arc":[{"x":205350,"y":180755},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":205357,"y":180747},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":205353,"y":180738},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":205355,"y":180737},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":205358,"y":180727},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":205359,"y":180726},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":205361,"y":180725},{"x":8,"y":-8}],"type":"area"},{"arc":[{"x":205369,"y":180717},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":205374,"y":180714},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":205376,"y":180713},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":205383,"y":180710},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":205387,"y":180701},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":205388,"y":180697},{"x":3,"y":-12}],"type":"coastline"},{"arc":[{"x":205391,"y":180685},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":205398,"y":180681},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":205401,"y":180680},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":205411,"y":180677},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":205413,"y":180672},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":205414,"y":180668},{"x":-5,"y":-11}],"type":"coastline"},{"arc":[{"x":205409,"y":180657},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":205419,"y":180655},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":205420,"y":180646},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":205423,"y":180641},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":205436,"y":180639},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":205447,"y":180643},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":205446,"y":180634},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":205449,"y":180625},{"x":10,"y":-7}],"type":"coastline"},{"arc":[{"x":205459,"y":180618},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":205461,"y":180616},{"x":14,"y":-10}],"type":"coastline"},{"arc":[{"x":205475,"y":180606},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":205487,"y":180606},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":205490,"y":180603},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":205495,"y":180595},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":205496,"y":180595},{"x":18,"y":3}],"type":"coastline"},{"arc":[{"x":205514,"y":180598},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":205521,"y":180606},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":205524,"y":180604},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":205533,"y":180598},{"x":10,"y":-10}],"type":"coastline"},{"arc":[{"x":205543,"y":180588},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":205547,"y":180587},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":205548,"y":180586},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":205550,"y":180583},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":205553,"y":180579},{"x":9,"y":-6}],"type":"area"},{"arc":[{"x":205562,"y":180573},{"x":1,"y":-15}],"type":"coastline"},{"arc":[{"x":205563,"y":180558},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":205566,"y":180552},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":205568,"y":180551},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":205570,"y":180552},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":205571,"y":180552},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":205577,"y":180554},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":205579,"y":180553},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205582,"y":180553},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":205588,"y":180553},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":205591,"y":180551},{"x":5,"y":-2}],"type":"area"},{"arc":[{"x":205596,"y":180549},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":205599,"y":180539},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":205599,"y":180536},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":205602,"y":180534},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":205610,"y":180527},{"x":5,"y":-4}],"type":"area"},{"arc":[{"x":205615,"y":180523},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":205617,"y":180526},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":205624,"y":180529},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":205626,"y":180528},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":205631,"y":180520},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":205641,"y":180520},{"x":25,"y":-3}],"type":"coastline"},{"arc":[{"x":205666,"y":180517},{"x":3,"y":2}],"type":"area"},{"arc":[{"x":205669,"y":180519},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":205676,"y":180512},{"x":10,"y":-4}],"type":"coastline"},{"arc":[{"x":205686,"y":180508},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":205692,"y":180502},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":205696,"y":180495},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":205697,"y":180491},{"x":9,"y":-5}],"type":"area"},{"arc":[{"x":205706,"y":180486},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":205714,"y":180484},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":205717,"y":180478},{"x":7,"y":-8}],"type":"coastline"},{"arc":[{"x":205724,"y":180470},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":205725,"y":180470},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":205734,"y":180469},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":205745,"y":180473},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":205746,"y":180474},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":205750,"y":180471},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":205748,"y":180466},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":205746,"y":180457},{"x":3,"y":-15}],"type":"coastline"},{"arc":[{"x":205749,"y":180442},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":205751,"y":180440},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":205753,"y":180439},{"x":10,"y":-11}],"type":"coastline"},{"arc":[{"x":205763,"y":180428},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":205772,"y":180427},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":205774,"y":180427},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":205781,"y":180423},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":205782,"y":180422},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":205784,"y":180420},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":205792,"y":180414},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":205796,"y":180422},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":205803,"y":180422},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":205806,"y":180423},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":205807,"y":180422},{"x":4,"y":-2}],"type":"area"},{"arc":[{"x":205811,"y":180420},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":205815,"y":180421},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205818,"y":180421},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":205820,"y":180423},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":205824,"y":180422},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205827,"y":180422},{"x":4,"y":1}],"type":"area"},{"arc":[{"x":205831,"y":180423},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":205834,"y":180421},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":205836,"y":180419},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":205839,"y":180420},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":205842,"y":180421},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":205845,"y":180423},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":205850,"y":180426},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":205853,"y":180417},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":205859,"y":180413},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":205861,"y":180408},{"x":4,"y":-4}],"type":"area"},{"arc":[{"x":205865,"y":180404},{"x":6,"y":-8}],"type":"coastline"},{"arc":[{"x":205871,"y":180396},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":205873,"y":180394},{"x":19,"y":-3}],"type":"coastline"},{"arc":[{"x":205892,"y":180391},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":205894,"y":180389},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":205894,"y":180388},{"x":3,"y":-11}],"type":"coastline"},{"arc":[{"x":205897,"y":180377},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":205899,"y":180377},{"x":10,"y":7}],"type":"coastline"},{"arc":[{"x":205909,"y":180384},{"x":8,"y":1}],"type":"area"},{"arc":[{"x":205917,"y":180385},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":205920,"y":180383},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":205920,"y":180382},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":205921,"y":180373},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":205924,"y":180364},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":205926,"y":180360},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":205926,"y":180355},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":205930,"y":180352},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":205937,"y":180348},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":205943,"y":180351},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":205944,"y":180351},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":205948,"y":180354},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":205953,"y":180357},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":205956,"y":180356},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":205961,"y":180359},{"x":3,"y":4}],"type":"area"},{"arc":[{"x":205964,"y":180363},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":205970,"y":180362},{"x":9,"y":-7}],"type":"area"},{"arc":[{"x":205979,"y":180355},{"x":8,"y":-13}],"type":"coastline"},{"arc":[{"x":205987,"y":180342},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":205990,"y":180338},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":205992,"y":180340},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":205995,"y":180347},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":206002,"y":180356},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":206005,"y":180359},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":206008,"y":180359},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":206009,"y":180352},{"x":0,"y":-7}],"type":"area"},{"arc":[{"x":206009,"y":180345},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":206014,"y":180344},{"x":18,"y":2}],"type":"coastline"},{"arc":[{"x":206032,"y":180346},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":206036,"y":180340},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":206037,"y":180337},{"x":6,"y":0}],"type":"area"},{"arc":[{"x":206043,"y":180337},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":206054,"y":180341},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":206062,"y":180344},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":206066,"y":180341},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":206073,"y":180337},{"x":26,"y":0}],"type":"coastline"},{"arc":[{"x":206099,"y":180337},{"x":5,"y":-7}],"type":"area"},{"arc":[{"x":206104,"y":180330},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":206110,"y":180330},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":206112,"y":180329},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":206115,"y":180330},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":206120,"y":180329},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":206123,"y":180328},{"x":6,"y":1}],"type":"area"},{"arc":[{"x":206129,"y":180329},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":206131,"y":180330},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":206132,"y":180331},{"x":16,"y":6}],"type":"coastline"},{"arc":[{"x":206148,"y":180337},{"x":6,"y":2}],"type":"area"},{"arc":[{"x":206154,"y":180339},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":206165,"y":180342},{"x":11,"y":-8}],"type":"coastline"},{"arc":[{"x":206176,"y":180334},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":206180,"y":180334},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":206186,"y":180339},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":206188,"y":180338},{"x":12,"y":1}],"type":"coastline"},{"arc":[{"x":206200,"y":180339},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":206202,"y":180340},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":206203,"y":180340},{"x":7,"y":1}],"type":"area"},{"arc":[{"x":206210,"y":180341},{"x":19,"y":-6}],"type":"coastline"},{"arc":[{"x":206229,"y":180335},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":206231,"y":180334},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":206231,"y":180332},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":206236,"y":180320},{"x":5,"y":-1}],"type":"area"},{"arc":[{"x":206241,"y":180319},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":206245,"y":180316},{"x":5,"y":-7}],"type":"area"},{"arc":[{"x":206250,"y":180309},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":206251,"y":180301},{"x":3,"y":-1}],"type":"area"},{"arc":[{"x":206254,"y":180300},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":206252,"y":180295},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":206248,"y":180290},{"x":32,"y":-46}],"type":"coastline"},{"arc":[{"x":206280,"y":180244},{"x":9,"y":9}],"type":"coastline"},{"arc":[{"x":206289,"y":180253},{"x":14,"y":0}],"type":"area"},{"arc":[{"x":206303,"y":180253},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":206309,"y":180251},{"x":4,"y":1}],"type":"area"},{"arc":[{"x":206313,"y":180252},{"x":13,"y":-5}],"type":"coastline"},{"arc":[{"x":206326,"y":180247},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":206329,"y":180243},{"x":5,"y":-15}],"type":"coastline"},{"arc":[{"x":206334,"y":180228},{"x":-6,"y":-26}],"type":"coastline"},{"arc":[{"x":206328,"y":180202},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":206328,"y":180191},{"x":4,"y":-26}],"type":"coastline"},{"arc":[{"x":206332,"y":180165},{"x":5,"y":-5}],"type":"area"},{"arc":[{"x":206337,"y":180160},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":206340,"y":180157},{"x":9,"y":-7}],"type":"coastline"},{"arc":[{"x":206349,"y":180150},{"x":16,"y":-20}],"type":"coastline"},{"arc":[{"x":206365,"y":180130},{"x":-2,"y":-12}],"type":"coastline"},{"arc":[{"x":206363,"y":180118},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":206364,"y":180114},{"x":18,"y":-13}],"type":"coastline"},{"arc":[{"x":206382,"y":180101},{"x":11,"y":-7}],"type":"coastline"},{"arc":[{"x":206393,"y":180094},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":206402,"y":180099},{"x":14,"y":6}],"type":"coastline"},{"arc":[{"x":206416,"y":180105},{"x":10,"y":5}],"type":"coastline"},{"arc":[{"x":206426,"y":180110},{"x":11,"y":-6}],"type":"coastline"},{"arc":[{"x":206437,"y":180104},{"x":30,"y":16}],"type":"coastline"},{"arc":[{"x":206467,"y":180120},{"x":18,"y":10}],"type":"coastline"},{"arc":[{"x":206485,"y":180130},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":206496,"y":180132},{"x":8,"y":0}],"type":"admin"},{"arc":[{"x":206504,"y":180132},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":206514,"y":180134},{"x":17,"y":-10}],"type":"coastline"},{"arc":[{"x":206531,"y":180124},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":206540,"y":180118},{"x":25,"y":-19}],"type":"coastline"},{"arc":[{"x":206565,"y":180099},{"x":20,"y":-26}],"type":"coastline"},{"arc":[{"x":206585,"y":180073},{"x":21,"y":-1}],"type":"coastline"},{"arc":[{"x":206606,"y":180072},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":206606,"y":180071},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":206612,"y":180059},{"x":6,"y":-14}],"type":"admin"},{"arc":[{"x":206618,"y":180045},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":206624,"y":180042},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":206629,"y":180040},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":206633,"y":180038},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":206632,"y":180025},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":206628,"y":180018},{"x":-3,"y":-5}],"type":"admin"},{"arc":[{"x":206625,"y":180013},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":206625,"y":180005},{"x":2,"y":-8}],"type":"admin"},{"arc":[{"x":206627,"y":179997},{"x":8,"y":-12}],"type":"coastline"},{"arc":[{"x":206635,"y":179985},{"x":19,"y":-18}],"type":"coastline"},{"arc":[{"x":206654,"y":179967},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":206657,"y":179964},{"x":6,"y":-8}],"type":"coastline"},{"arc":[{"x":206663,"y":179956},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":206665,"y":179952},{"x":18,"y":-5}],"type":"coastline"},{"arc":[{"x":206683,"y":179947},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":206688,"y":179944},{"x":15,"y":-1}],"type":"admin"},{"arc":[{"x":206703,"y":179943},{"x":29,"y":-2}],"type":"coastline"},{"arc":[{"x":206732,"y":179941},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":206736,"y":179937},{"x":4,"y":-10}],"type":"admin"},{"arc":[{"x":206740,"y":179927},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":206746,"y":179923},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":206750,"y":179921},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":206755,"y":179913},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":206757,"y":179912},{"x":10,"y":-4}],"type":"coastline"},{"arc":[{"x":206767,"y":179908},{"x":13,"y":-4}],"type":"admin"},{"arc":[{"x":206780,"y":179904},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":206785,"y":179901},{"x":14,"y":2}],"type":"coastline"},{"arc":[{"x":206799,"y":179903},{"x":13,"y":8}],"type":"coastline"},{"arc":[{"x":206812,"y":179911},{"x":9,"y":-1}],"type":"admin"},{"arc":[{"x":206821,"y":179910},{"x":28,"y":3}],"type":"coastline"},{"arc":[{"x":206849,"y":179913},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":206857,"y":179910},{"x":7,"y":-2}],"type":"admin"},{"arc":[{"x":206864,"y":179908},{"x":11,"y":-4}],"type":"coastline"},{"arc":[{"x":206875,"y":179904},{"x":7,"y":-3}],"type":"admin"},{"arc":[{"x":206882,"y":179901},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":206887,"y":179899},{"x":15,"y":-3}],"type":"coastline"},{"arc":[{"x":206902,"y":179896},{"x":19,"y":1}],"type":"coastline"},{"arc":[{"x":206921,"y":179897},{"x":6,"y":2}],"type":"admin"},{"arc":[{"x":206927,"y":179899},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":206932,"y":179902},{"x":3,"y":1}],"type":"admin"},{"arc":[{"x":206935,"y":179903},{"x":17,"y":-1}],"type":"coastline"},{"arc":[{"x":206952,"y":179902},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":206955,"y":179899},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":206965,"y":179896},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":206968,"y":179899},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":206981,"y":179897},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":206984,"y":179900},{"x":2,"y":3}],"type":"admin"},{"arc":[{"x":206986,"y":179903},{"x":25,"y":27}],"type":"coastline"},{"arc":[{"x":207011,"y":179930},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":207023,"y":179929},{"x":7,"y":2}],"type":"admin"},{"arc":[{"x":207030,"y":179931},{"x":10,"y":6}],"type":"coastline"},{"arc":[{"x":207040,"y":179937},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":207042,"y":179936},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":207046,"y":179935},{"x":15,"y":-1}],"type":"coastline"},{"arc":[{"x":207061,"y":179934},{"x":19,"y":-2}],"type":"coastline"},{"arc":[{"x":207080,"y":179932},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":207089,"y":179932},{"x":17,"y":-10}],"type":"coastline"},{"arc":[{"x":207106,"y":179922},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":207112,"y":179920},{"x":19,"y":2}],"type":"coastline"},{"arc":[{"x":207131,"y":179922},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":207138,"y":179919},{"x":10,"y":-12}],"type":"coastline"},{"arc":[{"x":207148,"y":179907},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":207151,"y":179906},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":207155,"y":179906},{"x":41,"y":-7}],"type":"coastline"},{"arc":[{"x":207196,"y":179899},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":207199,"y":179901},{"x":5,"y":2}],"type":"admin"},{"arc":[{"x":207204,"y":179903},{"x":16,"y":18}],"type":"coastline"},{"arc":[{"x":207220,"y":179921},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":207225,"y":179927},{"x":7,"y":-5}],"type":"admin"},{"arc":[{"x":207232,"y":179922},{"x":25,"y":8}],"type":"coastline"},{"arc":[{"x":207257,"y":179930},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":207263,"y":179926},{"x":4,"y":-18}],"type":"admin"},{"arc":[{"x":207267,"y":179908},{"x":12,"y":-6}],"type":"coastline"},{"arc":[{"x":207279,"y":179902},{"x":27,"y":6}],"type":"admin"},{"arc":[{"x":207306,"y":179908},{"x":25,"y":2}],"type":"coastline"},{"arc":[{"x":207331,"y":179910},{"x":13,"y":5}],"type":"coastline"},{"arc":[{"x":207344,"y":179915},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":207355,"y":179919},{"x":7,"y":4}],"type":"admin"},{"arc":[{"x":207362,"y":179923},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":207373,"y":179920},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":207378,"y":179920},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":207387,"y":179922},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":207397,"y":179919},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":207405,"y":179916},{"x":20,"y":3}],"type":"coastline"},{"arc":[{"x":207425,"y":179919},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":207439,"y":179918},{"x":19,"y":26}],"type":"coastline"},{"arc":[{"x":207459,"y":179956},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":207468,"y":179959},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":207475,"y":179960},{"x":13,"y":14}],"type":"coastline"},{"arc":[{"x":207488,"y":179974},{"x":21,"y":-2}],"type":"coastline"},{"arc":[{"x":207509,"y":179972},{"x":20,"y":11}],"type":"coastline"},{"arc":[{"x":207532,"y":179985},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":207540,"y":179985},{"x":33,"y":-5}],"type":"coastline"},{"arc":[{"x":207573,"y":179980},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":207580,"y":179984},{"x":12,"y":11}],"type":"coastline"},{"arc":[{"x":207592,"y":179995},{"x":9,"y":12}],"type":"coastline"},{"arc":[{"x":207601,"y":180007},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":207605,"y":180007},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":207622,"y":180000},{"x":22,"y":1}],"type":"coastline"},{"arc":[{"x":207650,"y":180003},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":207660,"y":180007},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":207679,"y":180004},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":207684,"y":180002},{"x":29,"y":-2}],"type":"coastline"},{"arc":[{"x":207713,"y":180000},{"x":7,"y":32}],"type":"coastline"},{"arc":[{"x":207720,"y":180032},{"x":5,"y":12}],"type":"coastline"},{"arc":[{"x":207725,"y":180044},{"x":46,"y":6}],"type":"coastline"},{"arc":[{"x":207784,"y":180051},{"x":11,"y":-3}],"type":"coastline"},{"arc":[{"x":207795,"y":180048},{"x":11,"y":18}],"type":"coastline"},{"arc":[{"x":207806,"y":180066},{"x":2,"y":12}],"type":"coastline"},{"arc":[{"x":207808,"y":180078},{"x":27,"y":29}],"type":"coastline"},{"arc":[{"x":207835,"y":180107},{"x":15,"y":3}],"type":"coastline"},{"arc":[{"x":207855,"y":180111},{"x":11,"y":10}],"type":"coastline"},{"arc":[{"x":207866,"y":180121},{"x":13,"y":15}],"type":"coastline"},{"arc":[{"x":207884,"y":180141},{"x":6,"y":15}],"type":"coastline"},{"arc":[{"x":207890,"y":180156},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":207891,"y":180158},{"x":42,"y":43}],"type":"coastline"},{"arc":[{"x":207933,"y":180201},{"x":-7,"y":35}],"type":"coastline"},{"arc":[{"x":207921,"y":180241},{"x":-13,"y":39}],"type":"coastline"},{"arc":[{"x":207908,"y":180283},{"x":-1,"y":14}],"type":"coastline"},{"arc":[{"x":207907,"y":180297},{"x":-2,"y":16}],"type":"coastline"},{"arc":[{"x":207906,"y":180323},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":207908,"y":180351},{"x":22,"y":18}],"type":"coastline"},{"arc":[{"x":207930,"y":180369},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":207933,"y":180373},{"x":7,"y":17}],"type":"coastline"},{"arc":[{"x":207940,"y":180390},{"x":9,"y":6}],"type":"coastline"},{"arc":[{"x":207962,"y":180400},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":207968,"y":180401},{"x":23,"y":9}],"type":"coastline"},{"arc":[{"x":207995,"y":180412},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":208001,"y":180416},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":208004,"y":180417},{"x":19,"y":10}],"type":"coastline"},{"arc":[{"x":208023,"y":180427},{"x":7,"y":12}],"type":"coastline"},{"arc":[{"x":208041,"y":180451},{"x":2,"y":10}],"type":"coastline"},{"arc":[{"x":208043,"y":180463},{"x":-17,"y":17}],"type":"coastline"},{"arc":[{"x":208026,"y":180480},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":208022,"y":180485},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":208021,"y":180493},{"x":-7,"y":9}],"type":"coastline"},{"arc":[{"x":208014,"y":180502},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":202084,"y":173330},{"x":-41,"y":32},{"x":19,"y":-50},{"x":22,"y":18}],"type":"coastline"},{"arc":[{"x":200493,"y":175043},{"x":21,"y":-18},{"x":-23,"y":-20},{"x":23,"y":20},{"x":31,"y":-23},{"x":-95,"y":-68},{"x":5,"y":-21},{"x":-27,"y":87},{"x":27,"y":19},{"x":-74,"y":-39},{"x":23,"y":-9},{"x":-15,"y":-76},{"x":-37,"y":48},{"x":23,"y":17},{"x":-40,"y":13},{"x":6,"y":-104},{"x":-45,"y":25},{"x":21,"y":85},{"x":-39,"y":-74},{"x":-36,"y":13},{"x":46,"y":147},{"x":-25,"y":-73},{"x":-75,"y":26},{"x":-37,"y":-120},{"x":63,"y":-22},{"x":-66,"y":-9},{"x":-5,"y":18},{"x":2,"y":-108},{"x":52,"y":5},{"x":23,"y":-88},{"x":-66,"y":-86},{"x":-37,"y":-4},{"x":0,"y":19},{"x":-28,"y":-22},{"x":-15,"y":-66},{"x":14,"y":-61},{"x":88,"y":-87},{"x":29,"y":-77},{"x":-8,"y":-30},{"x":-33,"y":7},{"x":-30,"y":-39},{"x":44,"y":-28},{"x":-13,"y":-51},{"x":-17,"y":-10},{"x":15,"y":29},{"x":-20,"y":0},{"x":-19,"y":-25},{"x":16,"y":41},{"x":-32,"y":-17},{"x":-13,"y":33},{"x":23,"y":-97},{"x":-23,"y":-2},{"x":-8,"y":-27},{"x":13,"y":17},{"x":9,"y":-22},{"x":41,"y":8},{"x":-5,"y":22},{"x":23,"y":-28},{"x":-30,"y":-102},{"x":-52,"y":-19},{"x":16,"y":-14},{"x":-34,"y":-34},{"x":13,"y":-12},{"x":11,"y":25},{"x":8,"y":-36},{"x":51,"y":20},{"x":7,"y":-31},{"x":-20,"y":4},{"x":37,"y":-60},{"x":35,"y":-43},{"x":36,"y":8},{"x":7,"y":-30},{"x":68,"y":7},{"x":16,"y":-32},{"x":69,"y":-16},{"x":22,"y":27},{"x":39,"y":-41},{"x":16,"y":19},{"x":66,"y":-27},{"x":133,"y":7},{"x":60,"y":-65},{"x":-33,"y":-35},{"x":33,"y":-55},{"x":-14,"y":-24},{"x":50,"y":11},{"x":12,"y":-29},{"x":16,"y":20},{"x":43,"y":-58},{"x":25,"y":15},{"x":6,"y":-27},{"x":24,"y":6},{"x":5,"y":-32},{"x":40,"y":28},{"x":20,"y":-57},{"x":40,"y":19},{"x":64,"y":-38},{"x":42,"y":24},{"x":33,"y":-46},{"x":61,"y":82},{"x":-13,"y":96},{"x":112,"y":22},{"x":69,"y":-62},{"x":5,"y":-36},{"x":-20,"y":-11},{"x":4,"y":28},{"x":-22,"y":-27},{"x":14,"y":36},{"x":-32,"y":-61},{"x":55,"y":-29},{"x":5,"y":-39},{"x":62,"y":13},{"x":51,"y":-28},{"x":17,"y":24},{"x":24,"y":-21},{"x":35,"y":15},{"x":45,"y":-79},{"x":58,"y":15},{"x":5,"y":24},{"x":56,"y":-42},{"x":68,"y":24},{"x":13,"y":-34},{"x":8,"y":49},{"x":36,"y":-26},{"x":101,"y":68},{"x":-95,"y":87},{"x":19,"y":-30},{"x":-166,"y":89},{"x":-76,"y":77},{"x":-7,"y":49},{"x":35,"y":65},{"x":-69,"y":80},{"x":-45,"y":244},{"x":-30,"y":58},{"x":-2,"y":-19},{"x":-26,"y":14},{"x":-31,"y":120},{"x":-52,"y":45},{"x":23,"y":-20},{"x":-27,"y":2},{"x":-5,"y":28},{"x":-1,"y":-29},{"x":-26,"y":11},{"x":-40,"y":79},{"x":-14,"y":74},{"x":40,"y":169},{"x":174,"y":335},{"x":296,"y":339},{"x":351,"y":285},{"x":39,"y":21},{"x":24,"y":-37},{"x":-23,"y":37},{"x":32,"y":24},{"x":1,"y":-58},{"x":0,"y":61},{"x":132,"y":93},{"x":407,"y":225}],"type":"coastline"},{"arc":[{"x":202803,"y":175887},{"x":-38,"y":124},{"x":-25,"y":-18},{"x":-22,"y":33},{"x":17,"y":-64},{"x":-32,"y":45},{"x":-12,"y":-52},{"x":-45,"y":23},{"x":-39,"y":82}],"type":"admin"},{"arc":[{"x":202607,"y":176060},{"x":-186,"y":-91},{"x":-73,"y":-9},{"x":-85,"y":-188},{"x":-89,"y":-40},{"x":-159,"y":61},{"x":-79,"y":77},{"x":-180,"y":-106},{"x":-398,"y":-114},{"x":-74,"y":39},{"x":-318,"y":518}],"type":"admin"},{"arc":[{"x":200966,"y":176207},{"x":-86,"y":-136},{"x":-151,"y":-2},{"x":-142,"y":-96},{"x":-167,"y":140},{"x":-5,"y":60},{"x":-21,"y":4},{"x":-33,"y":-57}],"type":"area"},{"arc":[{"x":200361,"y":176120},{"x":124,"y":-181},{"x":-29,"y":-47},{"x":31,"y":32},{"x":-15,"y":-29},{"x":20,"y":16},{"x":11,"y":-31},{"x":-29,"y":-19},{"x":29,"y":18},{"x":44,"y":-64},{"x":89,"y":-261},{"x":5,"y":-181},{"x":-41,"y":-41},{"x":-37,"y":-343},{"x":-70,"y":54}],"type":"coastline"},{"arc":[{"x":190396,"y":183505},{"x":-116,"y":63},{"x":-228,"y":-51},{"x":-25,"y":70},{"x":-91,"y":47},{"x":-77,"y":115},{"x":-56,"y":12},{"x":-151,"y":8},{"x":-83,"y":-52},{"x":-27,"y":50},{"x":-90,"y":-70},{"x":-20,"y":25},{"x":-48,"y":-2},{"x":-7,"y":65},{"x":-82,"y":98},{"x":-125,"y":-31},{"x":-33,"y":14},{"x":-303,"y":306},{"x":-137,"y":93}],"type":"admin"},{"arc":[{"x":187824,"y":182109},{"x":23,"y":4},{"x":118,"y":-99},{"x":-37,"y":-123},{"x":26,"y":-13},{"x":11,"y":-93},{"x":-73,"y":-128},{"x":56,"y":-94}],"type":"admin"},{"arc":[{"x":187948,"y":181563},{"x":40,"y":-21}],"type":"admin"},{"arc":[{"x":187988,"y":181542},{"x":54,"y":0},{"x":72,"y":-83},{"x":56,"y":-19},{"x":-25,"y":-30},{"x":3,"y":-82},{"x":58,"y":-98},{"x":183,"y":-39},{"x":48,"y":-71},{"x":100,"y":-20}],"type":"admin"},{"arc":[{"x":188537,"y":181100},{"x":88,"y":43},{"x":80,"y":0},{"x":56,"y":-40},{"x":112,"y":13},{"x":13,"y":-49},{"x":81,"y":0},{"x":30,"y":-88},{"x":125,"y":-60},{"x":7,"y":-118},{"x":-30,"y":-73},{"x":51,"y":-30},{"x":-35,"y":-165},{"x":40,"y":-80},{"x":0,"y":-111},{"x":122,"y":-56},{"x":69,"y":-70},{"x":131,"y":-34},{"x":77,"y":15},{"x":-27,"y":-77},{"x":25,"y":-109},{"x":62,"y":-128},{"x":52,"y":-28}],"type":"admin"},{"arc":[{"x":189708,"y":179868},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":189757,"y":179924},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":189789,"y":179969},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":189795,"y":179976},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":189798,"y":179984},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":189823,"y":179991},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":189843,"y":179984},{"x":15,"y":-3}],"type":"coastline"},{"arc":[{"x":189870,"y":179977},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":189913,"y":179927},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":189964,"y":179891},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":190008,"y":179900},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":190055,"y":179922},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":190065,"y":179929},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":190087,"y":179949},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":190169,"y":180003},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":190280,"y":179987},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":190284,"y":179987},{"x":-17,"y":43},{"x":33,"y":83},{"x":108,"y":25},{"x":1,"y":91},{"x":60,"y":7},{"x":18,"y":27},{"x":25,"y":168},{"x":43,"y":81},{"x":99,"y":81},{"x":102,"y":36},{"x":21,"y":35},{"x":142,"y":-5},{"x":41,"y":39},{"x":-10,"y":90},{"x":39,"y":5},{"x":86,"y":79},{"x":73,"y":-7},{"x":186,"y":74},{"x":35,"y":43},{"x":-73,"y":83},{"x":150,"y":145},{"x":192,"y":-106},{"x":133,"y":-29},{"x":21,"y":-39},{"x":66,"y":18},{"x":37,"y":-28},{"x":19,"y":30},{"x":36,"y":-25},{"x":-22,"y":37},{"x":35,"y":-9}],"type":"admin"},{"arc":[{"x":201365,"y":185219},{"x":209,"y":-355},{"x":-32,"y":-106},{"x":-49,"y":-22},{"x":15,"y":-90},{"x":-84,"y":-115},{"x":13,"y":-110},{"x":-35,"y":-75},{"x":20,"y":-67},{"x":72,"y":-2},{"x":55,"y":-75},{"x":91,"y":57},{"x":45,"y":-12},{"x":44,"y":-46},{"x":0,"y":-41},{"x":108,"y":-65},{"x":40,"y":-73}],"type":"area"},{"arc":[{"x":201877,"y":184022},{"x":122,"y":4},{"x":32,"y":-86},{"x":63,"y":-33},{"x":16,"y":-57},{"x":53,"y":-23},{"x":36,"y":-67},{"x":36,"y":0},{"x":48,"y":-65},{"x":208,"y":-35}],"type":"area"},{"arc":[{"x":202491,"y":183660},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":202500,"y":183665},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":202507,"y":183673},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":202512,"y":183676},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":202524,"y":183676},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":202531,"y":183673},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":202541,"y":183672},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":202551,"y":183672},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":202554,"y":183674},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":202560,"y":183683},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":202566,"y":183688},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":202572,"y":183692},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":202580,"y":183694},{"x":6,"y":10}],"type":"coastline"},{"arc":[{"x":202586,"y":183704},{"x":16,"y":19}],"type":"coastline"},{"arc":[{"x":202602,"y":183723},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":202607,"y":183728},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":202615,"y":183734},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":202617,"y":183737},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":202617,"y":183738},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":202624,"y":183742},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":202627,"y":183744},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":202636,"y":183751},{"x":12,"y":1}],"type":"coastline"},{"arc":[{"x":202650,"y":183751},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":202660,"y":183752},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":202667,"y":183753},{"x":22,"y":5}],"type":"coastline"},{"arc":[{"x":202691,"y":183760},{"x":7,"y":10}],"type":"coastline"},{"arc":[{"x":202700,"y":183773},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":202706,"y":183776},{"x":17,"y":15}],"type":"coastline"},{"arc":[{"x":202723,"y":183791},{"x":13,"y":3}],"type":"coastline"},{"arc":[{"x":202736,"y":183794},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":202739,"y":183798},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":202742,"y":183805},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":202746,"y":183805},{"x":21,"y":3}],"type":"coastline"},{"arc":[{"x":202768,"y":183808},{"x":23,"y":-3}],"type":"coastline"},{"arc":[{"x":202799,"y":183807},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":202807,"y":183808},{"x":14,"y":2}],"type":"coastline"},{"arc":[{"x":202821,"y":183810},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":202827,"y":183818},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":202835,"y":183825},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":202838,"y":183829},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":202841,"y":183838},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":202844,"y":183839},{"x":16,"y":0}],"type":"coastline"},{"arc":[{"x":202862,"y":183841},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":202864,"y":183845},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":202865,"y":183852},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":202868,"y":183862},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":202869,"y":183863},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":202874,"y":183863},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":202881,"y":183862},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":202885,"y":183862},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":202892,"y":183868},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":202896,"y":183869},{"x":12,"y":-5}],"type":"coastline"},{"arc":[{"x":202911,"y":183862},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":202913,"y":183861},{"x":12,"y":-7}],"type":"coastline"},{"arc":[{"x":202925,"y":183854},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":202938,"y":183849},{"x":18,"y":-5}],"type":"coastline"},{"arc":[{"x":202965,"y":183842},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":202975,"y":183840},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":202978,"y":183840},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":202985,"y":183842},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":202988,"y":183843},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":203001,"y":183845},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":203024,"y":183855},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":203032,"y":183860},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":203036,"y":183862},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":203039,"y":183862},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":203050,"y":183860},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":203059,"y":183862},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":203072,"y":183864},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":203077,"y":183862},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":203081,"y":183856},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":203085,"y":183851},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":203088,"y":183849},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":203101,"y":183848},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":203120,"y":183851},{"x":15,"y":0}],"type":"coastline"},{"arc":[{"x":203135,"y":183851},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":203145,"y":183853},{"x":19,"y":4}],"type":"coastline"},{"arc":[{"x":203164,"y":183857},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":203173,"y":183855},{"x":17,"y":-7}],"type":"coastline"},{"arc":[{"x":203193,"y":183848},{"x":14,"y":5}],"type":"coastline"},{"arc":[{"x":203207,"y":183853},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":203217,"y":183858},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":203222,"y":183862},{"x":15,"y":3}],"type":"coastline"},{"arc":[{"x":203237,"y":183865},{"x":13,"y":-4}],"type":"coastline"},{"arc":[{"x":203250,"y":183861},{"x":12,"y":-4}],"type":"coastline"},{"arc":[{"x":203265,"y":183856},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":203294,"y":183862},{"x":11,"y":18}],"type":"coastline"},{"arc":[{"x":203305,"y":183880},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":203312,"y":183885},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":203316,"y":183897},{"x":46,"y":4}],"type":"coastline"},{"arc":[{"x":203362,"y":183901},{"x":23,"y":30}],"type":"coastline"},{"arc":[{"x":203385,"y":183931},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":203387,"y":183935},{"x":16,"y":-5}],"type":"coastline"},{"arc":[{"x":203410,"y":183929},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":203429,"y":183917},{"x":17,"y":3}],"type":"coastline"},{"arc":[{"x":203446,"y":183920},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":203456,"y":183920},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":203461,"y":183918},{"x":25,"y":-6}],"type":"coastline"},{"arc":[{"x":203495,"y":183910},{"x":13,"y":10}],"type":"coastline"},{"arc":[{"x":203508,"y":183920},{"x":12,"y":6}],"type":"coastline"},{"arc":[{"x":203520,"y":183926},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":203524,"y":183946},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":203524,"y":183948},{"x":-2,"y":18}],"type":"coastline"},{"arc":[{"x":203522,"y":183966},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":203521,"y":183977},{"x":13,"y":10}],"type":"coastline"},{"arc":[{"x":203536,"y":183989},{"x":4,"y":21}],"type":"coastline"},{"arc":[{"x":203547,"y":184026},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":203548,"y":184034},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":203549,"y":184036},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":203552,"y":184050},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":203559,"y":184063},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":203566,"y":184064},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":203566,"y":184065},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":203577,"y":184066},{"x":27,"y":6}],"type":"coastline"},{"arc":[{"x":203606,"y":184072},{"x":16,"y":-4}],"type":"coastline"},{"arc":[{"x":203622,"y":184068},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":203626,"y":184071},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":203633,"y":184078},{"x":22,"y":19}],"type":"coastline"},{"arc":[{"x":203655,"y":184097},{"x":12,"y":-6}],"type":"coastline"},{"arc":[{"x":203669,"y":184092},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":203672,"y":184093},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":203682,"y":184100},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":203713,"y":184115},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":203715,"y":184121},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":203719,"y":184129},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":203727,"y":184135},{"x":17,"y":5}],"type":"coastline"},{"arc":[{"x":203744,"y":184140},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":203751,"y":184138},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":203758,"y":184137},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":203768,"y":184138},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":203790,"y":184145},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":203795,"y":184143},{"x":10,"y":-16}],"type":"coastline"},{"arc":[{"x":203805,"y":184127},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":203806,"y":184121},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":203807,"y":184110},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":203809,"y":184106},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":203814,"y":184098},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":203816,"y":184092},{"x":9,"y":-17}],"type":"coastline"},{"arc":[{"x":203824,"y":184061},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":203822,"y":184055},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":203818,"y":184047},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":203815,"y":184036},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":203815,"y":184030},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":203820,"y":184021},{"x":-1,"y":-12}],"type":"coastline"},{"arc":[{"x":203818,"y":184003},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":203817,"y":183995},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":203822,"y":183983},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":203821,"y":183970},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":203826,"y":183960},{"x":13,"y":-11}],"type":"coastline"},{"arc":[{"x":203839,"y":183949},{"x":15,"y":0}],"type":"coastline"},{"arc":[{"x":203856,"y":183948},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":203855,"y":183941},{"x":7,"y":-10}],"type":"coastline"},{"arc":[{"x":203862,"y":183931},{"x":-19,"y":-32}],"type":"coastline"},{"arc":[{"x":203841,"y":183898},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":203841,"y":183891},{"x":0,"y":-15}],"type":"coastline"},{"arc":[{"x":203841,"y":183876},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":203842,"y":183868},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":203844,"y":183858},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":203839,"y":183849},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":203856,"y":183820},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":203863,"y":183820},{"x":14,"y":-8}],"type":"coastline"},{"arc":[{"x":203877,"y":183812},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":203889,"y":183811},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":203905,"y":183805},{"x":10,"y":-8}],"type":"coastline"},{"arc":[{"x":203915,"y":183797},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":203926,"y":183784},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":203926,"y":183776},{"x":-9,"y":-10}],"type":"coastline"},{"arc":[{"x":203917,"y":183766},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":203911,"y":183746},{"x":9,"y":-13}],"type":"coastline"},{"arc":[{"x":203920,"y":183733},{"x":37,"y":-8}],"type":"coastline"},{"arc":[{"x":203958,"y":183726},{"x":10,"y":3}],"type":"coastline"},{"arc":[{"x":203968,"y":183729},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":203977,"y":183731},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":203988,"y":183732},{"x":16,"y":-2}],"type":"coastline"},{"arc":[{"x":204004,"y":183730},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":204009,"y":183729},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":204035,"y":183725},{"x":22,"y":-15}],"type":"coastline"},{"arc":[{"x":204057,"y":183710},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":204062,"y":183708},{"x":15,"y":-2}],"type":"coastline"},{"arc":[{"x":204077,"y":183706},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":204084,"y":183704},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":204092,"y":183698},{"x":10,"y":-8}],"type":"coastline"},{"arc":[{"x":204102,"y":183690},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":204106,"y":183687},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":204117,"y":183686},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":204127,"y":183683},{"x":13,"y":-3}],"type":"coastline"},{"arc":[{"x":204140,"y":183680},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":204145,"y":183682},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":204158,"y":183684},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":204166,"y":183685},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":204169,"y":183685},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":204178,"y":183682},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":204188,"y":183683},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":204196,"y":183684},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":204207,"y":183685},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":204214,"y":183682},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":204221,"y":183687},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":204227,"y":183691},{"x":16,"y":-1}],"type":"coastline"},{"arc":[{"x":204243,"y":183690},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":204261,"y":183689},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":204263,"y":183690},{"x":12,"y":8}],"type":"coastline"},{"arc":[{"x":204275,"y":183698},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":204279,"y":183700},{"x":19,"y":-1}],"type":"coastline"},{"arc":[{"x":204298,"y":183699},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":204303,"y":183699},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":204307,"y":183700},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":204319,"y":183700},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":204336,"y":183701},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":204337,"y":183707},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":204341,"y":183714},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":204341,"y":183728},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":204337,"y":183741},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":204336,"y":183743},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":204334,"y":183753},{"x":-2,"y":13}],"type":"coastline"},{"arc":[{"x":204332,"y":183766},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":204328,"y":183776},{"x":-2,"y":11}],"type":"coastline"},{"arc":[{"x":204326,"y":183789},{"x":3,"y":21}],"type":"coastline"},{"arc":[{"x":204330,"y":183811},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":204334,"y":183818},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":204337,"y":183822},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":204341,"y":183841},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":204339,"y":183851},{"x":-12,"y":11}],"type":"coastline"},{"arc":[{"x":204327,"y":183862},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":204317,"y":183864},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":204309,"y":183877},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":204306,"y":183880},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":204304,"y":183884},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":204304,"y":183888},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":204304,"y":183894},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":204304,"y":183895},{"x":-5,"y":16}],"type":"coastline"},{"arc":[{"x":204293,"y":183919},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":204283,"y":183930},{"x":-3,"y":18}],"type":"coastline"},{"arc":[{"x":204277,"y":183952},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":204274,"y":183956},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":204279,"y":183967},{"x":5,"y":15}],"type":"coastline"},{"arc":[{"x":204284,"y":183988},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":204287,"y":183992},{"x":17,"y":-1}],"type":"coastline"},{"arc":[{"x":204304,"y":183991},{"x":21,"y":-1}],"type":"coastline"},{"arc":[{"x":204325,"y":183990},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":204337,"y":183990},{"x":16,"y":-7}],"type":"coastline"},{"arc":[{"x":204356,"y":183982},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":204363,"y":183980},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":204369,"y":183978},{"x":15,"y":-3}],"type":"coastline"},{"arc":[{"x":204384,"y":183975},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":204394,"y":183975},{"x":10,"y":-6}],"type":"coastline"},{"arc":[{"x":204405,"y":183968},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":204410,"y":183968},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":204420,"y":183962},{"x":56,"y":-27}],"type":"coastline"},{"arc":[{"x":204480,"y":183929},{"x":10,"y":-9}],"type":"coastline"},{"arc":[{"x":204490,"y":183920},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":204497,"y":183924},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":204505,"y":183927},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":204512,"y":183924},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":204515,"y":183920},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":204520,"y":183911},{"x":7,"y":-12}],"type":"coastline"},{"arc":[{"x":204532,"y":183896},{"x":19,"y":-1}],"type":"coastline"},{"arc":[{"x":204552,"y":183895},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":204560,"y":183890},{"x":3,"y":-11}],"type":"coastline"},{"arc":[{"x":204563,"y":183879},{"x":10,"y":-3}],"type":"coastline"},{"arc":[{"x":204581,"y":183877},{"x":10,"y":-15}],"type":"coastline"},{"arc":[{"x":204594,"y":183856},{"x":22,"y":-14}],"type":"coastline"},{"arc":[{"x":204621,"y":183837},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":204624,"y":183834},{"x":34,"y":3}],"type":"coastline"},{"arc":[{"x":204658,"y":183837},{"x":5,"y":-15}],"type":"coastline"},{"arc":[{"x":204665,"y":183816},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":204668,"y":183810},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":204672,"y":183802},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":204676,"y":183799},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":204682,"y":183797},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":204687,"y":183796},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":204698,"y":183797},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":204707,"y":183799},{"x":15,"y":1}],"type":"coastline"},{"arc":[{"x":204722,"y":183800},{"x":9,"y":29}],"type":"coastline"},{"arc":[{"x":204731,"y":183829},{"x":-5,"y":24}],"type":"coastline"},{"arc":[{"x":204726,"y":183853},{"x":0,"y":64}],"type":"coastline"},{"arc":[{"x":204726,"y":183917},{"x":9,"y":23}],"type":"coastline"},{"arc":[{"x":204735,"y":183940},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":204744,"y":183953},{"x":14,"y":13}],"type":"coastline"},{"arc":[{"x":204758,"y":183966},{"x":26,"y":12}],"type":"coastline"},{"arc":[{"x":204791,"y":183979},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":204791,"y":183975},{"x":2,"y":-25}],"type":"coastline"},{"arc":[{"x":204794,"y":183948},{"x":39,"y":0}],"type":"coastline"},{"arc":[{"x":204833,"y":183948},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":204840,"y":183948},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":204848,"y":183945},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":204855,"y":183948},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":204862,"y":183952},{"x":13,"y":0}],"type":"coastline"},{"arc":[{"x":204875,"y":183952},{"x":21,"y":0}],"type":"coastline"},{"arc":[{"x":204896,"y":183952},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":204905,"y":183944},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":204908,"y":183943},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":204911,"y":183944},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":204917,"y":183947},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":204921,"y":183948},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":204930,"y":183956},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":204937,"y":183954},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":204954,"y":183943},{"x":13,"y":5}],"type":"coastline"},{"arc":[{"x":204967,"y":183949},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":204979,"y":183954},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":204991,"y":183953},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":205000,"y":183955},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205009,"y":183954},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":205017,"y":183959},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":205022,"y":183958},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":205026,"y":183954},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":205029,"y":183947},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":205035,"y":183940},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":205043,"y":183936},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":205043,"y":183934},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":205049,"y":183927},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":205056,"y":183922},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":205063,"y":183913},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":205071,"y":183906},{"x":3,"y":12}],"type":"coastline"},{"arc":[{"x":205076,"y":183931},{"x":3,"y":13}],"type":"coastline"},{"arc":[{"x":205080,"y":183947},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":205081,"y":183951},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":205082,"y":183953},{"x":9,"y":8}],"type":"coastline"},{"arc":[{"x":205091,"y":183961},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":205103,"y":183966},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":205106,"y":183967},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":205107,"y":183967},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":205119,"y":183966},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":205121,"y":183964},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":205122,"y":183963},{"x":3,"y":-14}],"type":"coastline"},{"arc":[{"x":205125,"y":183949},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":205128,"y":183943},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":205132,"y":183939},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":205144,"y":183932},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":205148,"y":183929},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":205161,"y":183919},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":205165,"y":183918},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":205179,"y":183917},{"x":13,"y":0}],"type":"coastline"},{"arc":[{"x":205192,"y":183917},{"x":14,"y":3}],"type":"coastline"},{"arc":[{"x":205206,"y":183920},{"x":18,"y":3}],"type":"coastline"},{"arc":[{"x":205224,"y":183923},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":205231,"y":183923},{"x":27,"y":23}],"type":"coastline"},{"arc":[{"x":205259,"y":183948},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":205270,"y":183948},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":205274,"y":183947},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":205284,"y":183945},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":205290,"y":183945},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":205292,"y":183948},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":205297,"y":183953},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":205304,"y":183954},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":205314,"y":183956},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":205322,"y":183952},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":205330,"y":183948},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":205332,"y":183945},{"x":9,"y":-6}],"type":"coastline"},{"arc":[{"x":205341,"y":183939},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":205347,"y":183935},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":205355,"y":183927},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":205359,"y":183923},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":205364,"y":183922},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":205369,"y":183921},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":205380,"y":183923},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":205382,"y":183923},{"x":18,"y":-15}],"type":"coastline"},{"arc":[{"x":205400,"y":183908},{"x":6,"y":-10}],"type":"coastline"},{"arc":[{"x":205409,"y":183893},{"x":9,"y":-7}],"type":"coastline"},{"arc":[{"x":205419,"y":183887},{"x":11,"y":6}],"type":"coastline"},{"arc":[{"x":205433,"y":183894},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":205443,"y":183898},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":205447,"y":183900},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":205455,"y":183905},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":205464,"y":183906},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205467,"y":183906},{"x":9,"y":0}],"type":"coastline"},{"arc":[{"x":205483,"y":183912},{"x":37,"y":11}],"type":"coastline"},{"arc":[{"x":205520,"y":183923},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":205528,"y":183932},{"x":7,"y":16}],"type":"coastline"},{"arc":[{"x":205535,"y":183948},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":205534,"y":183953},{"x":-83,"y":209},{"x":22,"y":55},{"x":119,"y":-14},{"x":-23,"y":48},{"x":-98,"y":46},{"x":5,"y":87},{"x":143,"y":2},{"x":-61,"y":27},{"x":84,"y":35},{"x":70,"y":-43},{"x":25,"y":35},{"x":97,"y":33},{"x":58,"y":-36},{"x":75,"y":23},{"x":-1,"y":61},{"x":-98,"y":-20},{"x":-5,"y":37},{"x":119,"y":113},{"x":114,"y":-74},{"x":33,"y":36},{"x":64,"y":-13},{"x":37,"y":36},{"x":85,"y":12},{"x":16,"y":-79},{"x":-35,"y":-26},{"x":70,"y":1},{"x":24,"y":13},{"x":-28,"y":17},{"x":14,"y":48},{"x":37,"y":5},{"x":-17,"y":46},{"x":33,"y":94},{"x":75,"y":72},{"x":59,"y":-7},{"x":43,"y":45},{"x":87,"y":31},{"x":56,"y":62},{"x":235,"y":-56},{"x":93,"y":86},{"x":129,"y":16},{"x":53,"y":48},{"x":6,"y":93},{"x":-47,"y":46},{"x":-154,"y":59},{"x":-44,"y":122},{"x":41,"y":93},{"x":-25,"y":28},{"x":12,"y":138},{"x":84,"y":105},{"x":-23,"y":49},{"x":20,"y":145},{"x":15,"y":30},{"x":51,"y":7},{"x":13,"y":55}],"type":"admin"},{"arc":[{"x":200865,"y":176618},{"x":-180,"y":181},{"x":-17,"y":604},{"x":-235,"y":150},{"x":-37,"y":78},{"x":-80,"y":17},{"x":-39,"y":60},{"x":1,"y":66},{"x":-83,"y":26},{"x":-14,"y":29},{"x":35,"y":100},{"x":-57,"y":69},{"x":41,"y":46},{"x":-119,"y":96},{"x":9,"y":36},{"x":-47,"y":38},{"x":-10,"y":151},{"x":72,"y":132}],"type":"admin"},{"arc":[{"x":199405,"y":176804},{"x":296,"y":-133},{"x":266,"y":-172},{"x":394,"y":-379}],"type":"coastline"},{"arc":[{"x":200966,"y":176207},{"x":-101,"y":411}],"type":"admin"},{"arc":[{"x":195145,"y":183671},{"x":117,"y":-50},{"x":25,"y":-33},{"x":32,"y":-133},{"x":91,"y":-54},{"x":3,"y":-53},{"x":71,"y":-64},{"x":-10,"y":-107},{"x":57,"y":-57},{"x":-37,"y":-216},{"x":-45,"y":-81},{"x":25,"y":-38},{"x":-52,"y":-53},{"x":-28,"y":-159},{"x":-68,"y":-25},{"x":-3,"y":-85},{"x":-26,"y":-11},{"x":14,"y":-100},{"x":20,"y":10},{"x":10,"y":-35},{"x":11,"y":26},{"x":28,"y":-15},{"x":-36,"y":-95},{"x":-33,"y":-27},{"x":-29,"y":26},{"x":-35,"y":-15},{"x":-52,"y":-141},{"x":-38,"y":133},{"x":-52,"y":-43},{"x":-12,"y":21},{"x":-67,"y":-21},{"x":-104,"y":56},{"x":33,"y":-98},{"x":-1,"y":-46},{"x":-31,"y":8},{"x":9,"y":-21},{"x":-29,"y":-9},{"x":26,"y":-57},{"x":-46,"y":1},{"x":-38,"y":-99},{"x":-45,"y":-13},{"x":8,"y":-53},{"x":-52,"y":3},{"x":1,"y":-92},{"x":-67,"y":-24},{"x":-18,"y":38},{"x":-38,"y":-4},{"x":-45,"y":63},{"x":-32,"y":0},{"x":1,"y":-23},{"x":-103,"y":-37},{"x":32,"y":-106},{"x":-19,"y":-8},{"x":-114,"y":71},{"x":-93,"y":7},{"x":-27,"y":-25},{"x":12,"y":-34},{"x":99,"y":-85},{"x":-90,"y":-46},{"x":58,"y":-61},{"x":-48,"y":-21},{"x":-38,"y":41},{"x":-72,"y":-24},{"x":-45,"y":49},{"x":-32,"y":-15}],"type":"admin"},{"arc":[{"x":194121,"y":179733},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":194143,"y":179736},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":194163,"y":179720},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":194166,"y":179692},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":194171,"y":179682},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":194172,"y":179659},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":194180,"y":179652},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":194170,"y":179635},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":194167,"y":179631},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":194172,"y":179627},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":194180,"y":179623},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":194180,"y":179614},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":194182,"y":179611},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":194169,"y":179594},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":194182,"y":179557},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":194199,"y":179520},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":194207,"y":179488},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":194223,"y":179466},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":194283,"y":179447},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":194282,"y":179455},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":194296,"y":179486},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":194332,"y":179554},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":194331,"y":179560},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":194329,"y":179569},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":194352,"y":179584},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":194411,"y":179592},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":194477,"y":179611},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":194493,"y":179622},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":194519,"y":179580},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":194527,"y":179574},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":194530,"y":179564},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":194556,"y":179440},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":194585,"y":179405},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":194584,"y":179390},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":194581,"y":179386},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":194588,"y":179361},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":194594,"y":179344},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":194595,"y":179328},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":194614,"y":179314},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":194657,"y":179293},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":194662,"y":179281},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":194724,"y":179240},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":194773,"y":179253},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":194799,"y":179230},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":194809,"y":179233},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":194811,"y":179237},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":194814,"y":179239},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":194859,"y":179252},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":194880,"y":179240},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":194898,"y":179239},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":198383,"y":181586},{"x":-74,"y":-22},{"x":-79,"y":32},{"x":-58,"y":-8},{"x":-38,"y":30},{"x":-80,"y":7},{"x":-59,"y":48},{"x":-82,"y":-99},{"x":-267,"y":-37},{"x":-114,"y":-128},{"x":-33,"y":0},{"x":-74,"y":-61},{"x":-190,"y":-51},{"x":-67,"y":22},{"x":-19,"y":-22},{"x":-51,"y":7},{"x":-85,"y":-54},{"x":-96,"y":74},{"x":-86,"y":-15},{"x":-50,"y":70},{"x":10,"y":36},{"x":-44,"y":33},{"x":5,"y":96},{"x":-77,"y":23},{"x":-39,"y":58},{"x":-101,"y":-15},{"x":-53,"y":38},{"x":-58,"y":-30},{"x":-73,"y":33},{"x":-12,"y":60},{"x":-40,"y":-16},{"x":-39,"y":128},{"x":24,"y":80},{"x":-86,"y":23},{"x":15,"y":50},{"x":73,"y":68},{"x":77,"y":-8},{"x":94,"y":129},{"x":166,"y":6},{"x":-6,"y":69},{"x":-132,"y":213},{"x":23,"y":29},{"x":-33,"y":110},{"x":167,"y":78},{"x":-114,"y":255},{"x":-74,"y":52},{"x":-22,"y":54},{"x":127,"y":129},{"x":-2,"y":90},{"x":45,"y":63},{"x":-62,"y":108},{"x":-7,"y":128},{"x":147,"y":91},{"x":-73,"y":70},{"x":-31,"y":63},{"x":22,"y":78},{"x":-90,"y":121},{"x":-123,"y":31}],"type":"area"},{"arc":[{"x":206363,"y":180118},{"x":2,"y":12}],"type":"coastline"},{"arc":[{"x":206365,"y":180130},{"x":-16,"y":20}],"type":"coastline"},{"arc":[{"x":206349,"y":180150},{"x":-9,"y":7}],"type":"coastline"},{"arc":[{"x":206340,"y":180157},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":206332,"y":180165},{"x":-4,"y":26}],"type":"coastline"},{"arc":[{"x":206328,"y":180191},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":206328,"y":180202},{"x":6,"y":26}],"type":"coastline"},{"arc":[{"x":206334,"y":180228},{"x":-5,"y":15}],"type":"coastline"},{"arc":[{"x":206329,"y":180243},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":206326,"y":180247},{"x":-13,"y":5}],"type":"coastline"},{"arc":[{"x":206309,"y":180251},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":206289,"y":180253},{"x":-9,"y":-9}],"type":"coastline"},{"arc":[{"x":206280,"y":180244},{"x":-32,"y":46}],"type":"coastline"},{"arc":[{"x":206248,"y":180290},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":206252,"y":180295},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":206251,"y":180301},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":206245,"y":180316},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":206236,"y":180320},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":206231,"y":180332},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":206229,"y":180335},{"x":-19,"y":6}],"type":"coastline"},{"arc":[{"x":206203,"y":180340},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":206200,"y":180339},{"x":-12,"y":-1}],"type":"coastline"},{"arc":[{"x":206186,"y":180339},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":206180,"y":180334},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":206176,"y":180334},{"x":-11,"y":8}],"type":"coastline"},{"arc":[{"x":206165,"y":180342},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":206148,"y":180337},{"x":-16,"y":-6}],"type":"coastline"},{"arc":[{"x":206131,"y":180330},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":206123,"y":180328},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":206120,"y":180329},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":206115,"y":180330},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":206112,"y":180329},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":206110,"y":180330},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":206099,"y":180337},{"x":-26,"y":0}],"type":"coastline"},{"arc":[{"x":206073,"y":180337},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":206066,"y":180341},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":206062,"y":180344},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":206054,"y":180341},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":206037,"y":180337},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":206036,"y":180340},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":206032,"y":180346},{"x":-18,"y":-2}],"type":"coastline"},{"arc":[{"x":206014,"y":180344},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":206009,"y":180352},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":206005,"y":180359},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":206002,"y":180356},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":205995,"y":180347},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":205992,"y":180340},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":205987,"y":180342},{"x":-8,"y":13}],"type":"coastline"},{"arc":[{"x":205970,"y":180362},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":205961,"y":180359},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":205956,"y":180356},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":205948,"y":180354},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":205943,"y":180351},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":205937,"y":180348},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":205930,"y":180352},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":205926,"y":180355},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":205924,"y":180364},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":205921,"y":180373},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":205920,"y":180383},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":205909,"y":180384},{"x":-10,"y":-7}],"type":"coastline"},{"arc":[{"x":205897,"y":180377},{"x":-3,"y":11}],"type":"coastline"},{"arc":[{"x":205894,"y":180389},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":205892,"y":180391},{"x":-19,"y":3}],"type":"coastline"},{"arc":[{"x":205873,"y":180394},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":205871,"y":180396},{"x":-6,"y":8}],"type":"coastline"},{"arc":[{"x":205861,"y":180408},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":205859,"y":180413},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":205853,"y":180417},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":205845,"y":180423},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":205839,"y":180420},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":205834,"y":180421},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":205827,"y":180422},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205824,"y":180422},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":205818,"y":180421},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205815,"y":180421},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":205807,"y":180422},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":205806,"y":180423},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":205803,"y":180422},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":205796,"y":180422},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":205792,"y":180414},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":205782,"y":180422},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":205781,"y":180423},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":205772,"y":180427},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":205763,"y":180428},{"x":-10,"y":11}],"type":"coastline"},{"arc":[{"x":205753,"y":180439},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":205749,"y":180442},{"x":-3,"y":15}],"type":"coastline"},{"arc":[{"x":205746,"y":180457},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":205748,"y":180466},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":205750,"y":180471},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":205745,"y":180473},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":205734,"y":180469},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":205724,"y":180470},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":205717,"y":180478},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":205714,"y":180484},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":205697,"y":180491},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":205696,"y":180495},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":205692,"y":180502},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":205686,"y":180508},{"x":-10,"y":4}],"type":"coastline"},{"arc":[{"x":205676,"y":180512},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":205666,"y":180517},{"x":-25,"y":3}],"type":"coastline"},{"arc":[{"x":205641,"y":180520},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":205631,"y":180520},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":205624,"y":180529},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":205617,"y":180526},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":205610,"y":180527},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":205602,"y":180534},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":205599,"y":180536},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":205599,"y":180539},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":205591,"y":180551},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":205588,"y":180553},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":205582,"y":180553},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205577,"y":180554},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":205570,"y":180552},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":205566,"y":180552},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":205563,"y":180558},{"x":-1,"y":15}],"type":"coastline"},{"arc":[{"x":205553,"y":180579},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":205550,"y":180583},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":205547,"y":180587},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":205543,"y":180588},{"x":-10,"y":10}],"type":"coastline"},{"arc":[{"x":205533,"y":180598},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":205521,"y":180606},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":205514,"y":180598},{"x":-18,"y":-3}],"type":"coastline"},{"arc":[{"x":205495,"y":180595},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":205490,"y":180603},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":205487,"y":180606},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":205475,"y":180606},{"x":-14,"y":10}],"type":"coastline"},{"arc":[{"x":205461,"y":180616},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":205459,"y":180618},{"x":-10,"y":7}],"type":"coastline"},{"arc":[{"x":205449,"y":180625},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":205446,"y":180634},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":205447,"y":180643},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":205436,"y":180639},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":205423,"y":180641},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":205420,"y":180646},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":205419,"y":180655},{"x":-10,"y":2}],"type":"coastline"},{"arc":[{"x":205409,"y":180657},{"x":5,"y":11}],"type":"coastline"},{"arc":[{"x":205414,"y":180668},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":205413,"y":180672},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":205411,"y":180677},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":205401,"y":180680},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":205398,"y":180681},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":205391,"y":180685},{"x":-3,"y":12}],"type":"coastline"},{"arc":[{"x":205387,"y":180701},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":205383,"y":180710},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":205374,"y":180714},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":205361,"y":180725},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":205359,"y":180726},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":205358,"y":180727},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":205353,"y":180738},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":205357,"y":180747},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":205350,"y":180755},{"x":-14,"y":-1}],"type":"coastline"},{"arc":[{"x":205336,"y":180754},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205333,"y":180754},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":205326,"y":180753},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":205315,"y":180755},{"x":-10,"y":-11}],"type":"coastline"},{"arc":[{"x":205305,"y":180744},{"x":-8,"y":-7}],"type":"coastline"},{"arc":[{"x":205290,"y":180731},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":205283,"y":180724},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":205281,"y":180721},{"x":-11,"y":-12}],"type":"coastline"},{"arc":[{"x":205270,"y":180709},{"x":-10,"y":-10}],"type":"coastline"},{"arc":[{"x":205259,"y":180698},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":205242,"y":180696},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":205239,"y":180692},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":205230,"y":180689},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":205226,"y":180684},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":205218,"y":180676},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":205216,"y":180674},{"x":-8,"y":-9}],"type":"coastline"},{"arc":[{"x":205208,"y":180665},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":205200,"y":180668},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":205193,"y":180674},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":205191,"y":180674},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":205181,"y":180663},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":205176,"y":180657},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":205174,"y":180662},{"x":8,"y":12}],"type":"coastline"},{"arc":[{"x":205182,"y":180674},{"x":17,"y":24}],"type":"coastline"},{"arc":[{"x":205199,"y":180698},{"x":4,"y":19}],"type":"coastline"},{"arc":[{"x":205203,"y":180717},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":205179,"y":180714},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":205163,"y":180715},{"x":-19,"y":0}],"type":"coastline"},{"arc":[{"x":205139,"y":180715},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":205129,"y":180715},{"x":5,"y":12}],"type":"coastline"},{"arc":[{"x":205134,"y":180728},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":205138,"y":180738},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":205132,"y":180743},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":205134,"y":180751},{"x":-11,"y":-5}],"type":"coastline"},{"arc":[{"x":205118,"y":180744},{"x":-2,"y":11}],"type":"coastline"},{"arc":[{"x":205116,"y":180760},{"x":-2,"y":11}],"type":"coastline"},{"arc":[{"x":205114,"y":180771},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":205113,"y":180780},{"x":-14,"y":18}],"type":"coastline"},{"arc":[{"x":205095,"y":180805},{"x":0,"y":12}],"type":"coastline"},{"arc":[{"x":205095,"y":180817},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":205096,"y":180820},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":205096,"y":180837},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":205092,"y":180846},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":205092,"y":180847},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":205093,"y":180849},{"x":9,"y":26}],"type":"coastline"},{"arc":[{"x":205102,"y":180875},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":205107,"y":180884},{"x":8,"y":8}],"type":"coastline"},{"arc":[{"x":205112,"y":180901},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":205107,"y":180903},{"x":8,"y":17}],"type":"coastline"},{"arc":[{"x":205115,"y":180920},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":205119,"y":180930},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":205121,"y":180935},{"x":3,"y":15}],"type":"coastline"},{"arc":[{"x":205132,"y":180956},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":205133,"y":180971},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":205130,"y":180977},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":205128,"y":180987},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":205133,"y":181003},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":205134,"y":181013},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":205135,"y":181019},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":205134,"y":181027},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":205137,"y":181036},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":205131,"y":181047},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":205128,"y":181057},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":205126,"y":181064},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":205125,"y":181069},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":205115,"y":181073},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":205110,"y":181077},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":205096,"y":181075},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":205091,"y":181083},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":205092,"y":181089},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":205092,"y":181093},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":205089,"y":181096},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":205086,"y":181098},{"x":-11,"y":4}],"type":"coastline"},{"arc":[{"x":205075,"y":181102},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":205060,"y":181097},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":205059,"y":181092},{"x":-12,"y":-3}],"type":"coastline"},{"arc":[{"x":205047,"y":181089},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":205043,"y":181091},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":205043,"y":181090},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":205036,"y":181086},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":205030,"y":181084},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":205026,"y":181082},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":205017,"y":181081},{"x":-3,"y":15}],"type":"coastline"},{"arc":[{"x":205014,"y":181096},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":205013,"y":181105},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":205011,"y":181111},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":205012,"y":181118},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":205005,"y":181123},{"x":-17,"y":1}],"type":"coastline"},{"arc":[{"x":204988,"y":181124},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":204981,"y":181129},{"x":-3,"y":18}],"type":"coastline"},{"arc":[{"x":204978,"y":181152},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":204979,"y":181160},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":204972,"y":181171},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":204966,"y":181184},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":204958,"y":181189},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":204956,"y":181191},{"x":-14,"y":9}],"type":"coastline"},{"arc":[{"x":204942,"y":181200},{"x":-5,"y":11}],"type":"coastline"},{"arc":[{"x":204937,"y":181211},{"x":3,"y":11}],"type":"coastline"},{"arc":[{"x":204940,"y":181222},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":204941,"y":181231},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":204941,"y":181238},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":204942,"y":181245},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":204941,"y":181249},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":204936,"y":181259},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":204930,"y":181265},{"x":-4,"y":11}],"type":"coastline"},{"arc":[{"x":204924,"y":181281},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":204924,"y":181283},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":204928,"y":181290},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":204930,"y":181294},{"x":7,"y":15}],"type":"coastline"},{"arc":[{"x":204938,"y":181312},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":204934,"y":181325},{"x":-9,"y":3}],"type":"coastline"},{"arc":[{"x":204909,"y":181327},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":204904,"y":181327},{"x":-25,"y":3}],"type":"coastline"},{"arc":[{"x":204871,"y":181324},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":204863,"y":181329},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":204854,"y":181332},{"x":-21,"y":2}],"type":"coastline"},{"arc":[{"x":204832,"y":181334},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":204825,"y":181330},{"x":-9,"y":-6}],"type":"coastline"},{"arc":[{"x":204816,"y":181324},{"x":-9,"y":-6}],"type":"coastline"},{"arc":[{"x":204803,"y":181316},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":204793,"y":181312},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":204786,"y":181309},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":204775,"y":181303},{"x":-13,"y":0}],"type":"coastline"},{"arc":[{"x":204762,"y":181303},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":204755,"y":181301},{"x":-26,"y":3}],"type":"coastline"},{"arc":[{"x":204729,"y":181304},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":204721,"y":181303},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":204707,"y":181305},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":204700,"y":181296},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":204692,"y":181300},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":204690,"y":181304},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":204686,"y":181311},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":204681,"y":181316},{"x":-11,"y":5}],"type":"coastline"},{"arc":[{"x":204670,"y":181321},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":204669,"y":181324},{"x":-4,"y":11}],"type":"coastline"},{"arc":[{"x":204665,"y":181335},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":204652,"y":181338},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":204646,"y":181345},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":204641,"y":181360},{"x":-6,"y":24}],"type":"coastline"},{"arc":[{"x":204629,"y":181394},{"x":-9,"y":19}],"type":"coastline"},{"arc":[{"x":204615,"y":181412},{"x":-22,"y":15}],"type":"coastline"},{"arc":[{"x":204593,"y":181427},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":204590,"y":181433},{"x":-2,"y":12}],"type":"coastline"},{"arc":[{"x":204588,"y":181445},{"x":-2,"y":13}],"type":"coastline"},{"arc":[{"x":204586,"y":181458},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":204583,"y":181469},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":204574,"y":181471},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":204571,"y":181469},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":204560,"y":181472},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":204553,"y":181474},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":204552,"y":181475},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":204542,"y":181471},{"x":-12,"y":-4}],"type":"coastline"},{"arc":[{"x":204527,"y":181469},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":204515,"y":181467},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":204508,"y":181468},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":204497,"y":181471},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":204491,"y":181477},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":204486,"y":181476},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":204480,"y":181476},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":204472,"y":181479},{"x":-18,"y":2}],"type":"coastline"},{"arc":[{"x":204454,"y":181481},{"x":-15,"y":6}],"type":"coastline"},{"arc":[{"x":204434,"y":181489},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":204426,"y":181484},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":204421,"y":181478},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":204419,"y":181476},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":204413,"y":181473},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":204410,"y":181464},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":204393,"y":181455},{"x":-13,"y":-1}],"type":"coastline"},{"arc":[{"x":204376,"y":181452},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":204372,"y":181449},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":204366,"y":181444},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":204363,"y":181438},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":204362,"y":181427},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":204361,"y":181418},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":204361,"y":181416},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":204351,"y":181414},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":204346,"y":181415},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":204327,"y":181412},{"x":-12,"y":-5}],"type":"coastline"},{"arc":[{"x":204312,"y":181407},{"x":-10,"y":7}],"type":"coastline"},{"arc":[{"x":204302,"y":181414},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":204301,"y":181417},{"x":-8,"y":10}],"type":"coastline"},{"arc":[{"x":204292,"y":181428},{"x":-16,"y":13}],"type":"coastline"},{"arc":[{"x":204276,"y":181441},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":204269,"y":181447},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":204266,"y":181449},{"x":-9,"y":11}],"type":"coastline"},{"arc":[{"x":204257,"y":181460},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":204253,"y":181463},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":204243,"y":181462},{"x":-9,"y":-6}],"type":"coastline"},{"arc":[{"x":204234,"y":181456},{"x":-17,"y":10}],"type":"coastline"},{"arc":[{"x":204217,"y":181466},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":204206,"y":181468},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":204200,"y":181470},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":204199,"y":181471},{"x":-7,"y":10}],"type":"coastline"},{"arc":[{"x":204192,"y":181481},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":204188,"y":181486},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":204174,"y":181487},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":204165,"y":181488},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":204158,"y":181493},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":204152,"y":181489},{"x":-17,"y":16}],"type":"coastline"},{"arc":[{"x":204134,"y":181506},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":204134,"y":181517},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":204135,"y":181522},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":204132,"y":181535},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":204125,"y":181548},{"x":-12,"y":5}],"type":"coastline"},{"arc":[{"x":204112,"y":181555},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":204110,"y":181560},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":204109,"y":181562},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":204104,"y":181567},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":204094,"y":181570},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":204090,"y":181569},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":204085,"y":181570},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":204082,"y":181571},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":204074,"y":181565},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":204069,"y":181560},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":204067,"y":181551},{"x":-8,"y":-15}],"type":"coastline"},{"arc":[{"x":204059,"y":181536},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":204057,"y":181533},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":204047,"y":181532},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":204042,"y":181533},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":204036,"y":181532},{"x":-24,"y":-14}],"type":"coastline"},{"arc":[{"x":204012,"y":181518},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":204006,"y":181516},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":204003,"y":181515},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":203998,"y":181523},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":203996,"y":181532},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":203993,"y":181536},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":203988,"y":181539},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":203987,"y":181540},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":203987,"y":181548},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":203987,"y":181556},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":203981,"y":181562},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":203984,"y":181565},{"x":2,"y":13}],"type":"coastline"},{"arc":[{"x":203985,"y":181586},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":203979,"y":181597},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":203967,"y":181600},{"x":-3,"y":13}],"type":"coastline"},{"arc":[{"x":203967,"y":181622},{"x":-18,"y":23}],"type":"coastline"},{"arc":[{"x":203949,"y":181645},{"x":-25,"y":-2}],"type":"coastline"},{"arc":[{"x":203924,"y":181643},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":203915,"y":181642},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":203908,"y":181638},{"x":-10,"y":-14}],"type":"coastline"},{"arc":[{"x":203898,"y":181624},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":203892,"y":181622},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":203886,"y":181614},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":203883,"y":181607},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":203871,"y":181606},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":203865,"y":181603},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":203861,"y":181600},{"x":-7,"y":-15}],"type":"coastline"},{"arc":[{"x":203853,"y":181583},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":203850,"y":181578},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":203848,"y":181577},{"x":-20,"y":5}],"type":"coastline"},{"arc":[{"x":203828,"y":181582},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":203824,"y":181586},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":203825,"y":181592},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":203822,"y":181606},{"x":6,"y":16}],"type":"coastline"},{"arc":[{"x":203828,"y":181622},{"x":3,"y":19}],"type":"coastline"},{"arc":[{"x":203832,"y":181645},{"x":6,"y":27}],"type":"coastline"},{"arc":[{"x":203838,"y":181672},{"x":-2,"y":31}],"type":"coastline"},{"arc":[{"x":203836,"y":181703},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":203827,"y":181715},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":203821,"y":181724},{"x":-17,"y":15}],"type":"coastline"},{"arc":[{"x":203801,"y":181745},{"x":7,"y":22}],"type":"coastline"},{"arc":[{"x":203808,"y":181767},{"x":-11,"y":8}],"type":"coastline"},{"arc":[{"x":203797,"y":181775},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":203788,"y":181785},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":203788,"y":181796},{"x":-11,"y":6}],"type":"coastline"},{"arc":[{"x":203777,"y":181802},{"x":-12,"y":10}],"type":"coastline"},{"arc":[{"x":203765,"y":181812},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":203760,"y":181816},{"x":-15,"y":5}],"type":"coastline"},{"arc":[{"x":203745,"y":181821},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":203743,"y":181832},{"x":13,"y":22}],"type":"coastline"},{"arc":[{"x":203757,"y":181856},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":203773,"y":181873},{"x":4,"y":14}],"type":"coastline"},{"arc":[{"x":203777,"y":181887},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":203783,"y":181888},{"x":9,"y":24}],"type":"coastline"},{"arc":[{"x":203794,"y":181917},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":203795,"y":181926},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":203794,"y":181932},{"x":14,"y":10}],"type":"coastline"},{"arc":[{"x":203808,"y":181942},{"x":33,"y":12}],"type":"coastline"},{"arc":[{"x":203846,"y":181963},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":203851,"y":181967},{"x":17,"y":12}],"type":"coastline"},{"arc":[{"x":203870,"y":181979},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":203877,"y":181984},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":203883,"y":181985},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":203887,"y":182005},{"x":9,"y":14}],"type":"coastline"},{"arc":[{"x":203896,"y":182019},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":203890,"y":182028},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":203886,"y":182033},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":203880,"y":182038},{"x":-18,"y":9}],"type":"coastline"},{"arc":[{"x":203862,"y":182047},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":203859,"y":182053},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":203855,"y":182071},{"x":-8,"y":8}],"type":"coastline"},{"arc":[{"x":203847,"y":182079},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":203838,"y":182080},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":203834,"y":182083},{"x":-11,"y":4}],"type":"coastline"},{"arc":[{"x":203819,"y":182087},{"x":-18,"y":-11}],"type":"coastline"},{"arc":[{"x":203801,"y":182076},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":203780,"y":182068},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":203777,"y":182067},{"x":-16,"y":-1}],"type":"coastline"},{"arc":[{"x":203754,"y":182066},{"x":-18,"y":2}],"type":"coastline"},{"arc":[{"x":203736,"y":182068},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":203715,"y":182070},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":203703,"y":182072},{"x":-15,"y":-1}],"type":"coastline"},{"arc":[{"x":203688,"y":182090},{"x":-10,"y":29}],"type":"coastline"},{"arc":[{"x":203677,"y":182131},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":203669,"y":182134},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":203663,"y":182139},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":203661,"y":182140},{"x":-13,"y":6}],"type":"coastline"},{"arc":[{"x":203645,"y":182147},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":203633,"y":182149},{"x":-29,"y":19}],"type":"coastline"},{"arc":[{"x":203604,"y":182168},{"x":-20,"y":8}],"type":"coastline"},{"arc":[{"x":203584,"y":182178},{"x":2,"y":19}],"type":"coastline"},{"arc":[{"x":203586,"y":182197},{"x":-7,"y":19}],"type":"coastline"},{"arc":[{"x":203583,"y":182223},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":203584,"y":182225},{"x":2,"y":15}],"type":"coastline"},{"arc":[{"x":203586,"y":182240},{"x":-12,"y":41}],"type":"coastline"},{"arc":[{"x":203573,"y":182289},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":203566,"y":182308},{"x":-9,"y":34}],"type":"coastline"},{"arc":[{"x":203557,"y":182342},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":203557,"y":182349},{"x":-10,"y":21}],"type":"coastline"},{"arc":[{"x":203547,"y":182370},{"x":3,"y":27}],"type":"coastline"},{"arc":[{"x":203550,"y":182397},{"x":-21,"y":39}],"type":"coastline"},{"arc":[{"x":203529,"y":182436},{"x":-2,"y":25}],"type":"coastline"},{"arc":[{"x":203526,"y":182464},{"x":2,"y":14}],"type":"coastline"},{"arc":[{"x":203531,"y":182483},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":203532,"y":182506},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":203530,"y":182511},{"x":-1,"y":14}],"type":"coastline"},{"arc":[{"x":203528,"y":182532},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":203525,"y":182539},{"x":-7,"y":17}],"type":"coastline"},{"arc":[{"x":203518,"y":182556},{"x":-9,"y":3}],"type":"coastline"},{"arc":[{"x":203509,"y":182559},{"x":-11,"y":7}],"type":"coastline"},{"arc":[{"x":203498,"y":182566},{"x":-17,"y":26}],"type":"coastline"},{"arc":[{"x":203481,"y":182592},{"x":-13,"y":12}],"type":"coastline"},{"arc":[{"x":203461,"y":182609},{"x":-12,"y":9}],"type":"coastline"},{"arc":[{"x":203449,"y":182618},{"x":-17,"y":14}],"type":"coastline"},{"arc":[{"x":203429,"y":182637},{"x":-5,"y":14}],"type":"coastline"},{"arc":[{"x":203424,"y":182651},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":203425,"y":182664},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":203399,"y":182670},{"x":-19,"y":-1}],"type":"coastline"},{"arc":[{"x":203369,"y":182668},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":203362,"y":182670},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":203347,"y":182667},{"x":-24,"y":8}],"type":"coastline"},{"arc":[{"x":203323,"y":182675},{"x":-18,"y":9}],"type":"coastline"},{"arc":[{"x":203305,"y":182684},{"x":-9,"y":-9}],"type":"coastline"},{"arc":[{"x":203296,"y":182675},{"x":-18,"y":-7}],"type":"coastline"},{"arc":[{"x":203278,"y":182668},{"x":-28,"y":-9}],"type":"coastline"},{"arc":[{"x":203245,"y":182657},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":203239,"y":182656},{"x":-35,"y":-7}],"type":"coastline"},{"arc":[{"x":203187,"y":182650},{"x":-46,"y":-5}],"type":"coastline"},{"arc":[{"x":203136,"y":182648},{"x":-14,"y":8}],"type":"coastline"},{"arc":[{"x":203122,"y":182656},{"x":-16,"y":12}],"type":"coastline"},{"arc":[{"x":203106,"y":182668},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":203093,"y":182671},{"x":-18,"y":-3}],"type":"coastline"},{"arc":[{"x":203075,"y":182668},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":203069,"y":182662},{"x":-16,"y":0}],"type":"coastline"},{"arc":[{"x":203053,"y":182662},{"x":-14,"y":11}],"type":"coastline"},{"arc":[{"x":203039,"y":182673},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":203027,"y":182672},{"x":-27,"y":-16}],"type":"coastline"},{"arc":[{"x":203000,"y":182656},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":202992,"y":182653},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":202984,"y":182656},{"x":-2,"y":47}],"type":"coastline"},{"arc":[{"x":202982,"y":182703},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":202982,"y":182720},{"x":-14,"y":6}],"type":"coastline"},{"arc":[{"x":202968,"y":182726},{"x":-9,"y":7}],"type":"coastline"},{"arc":[{"x":202955,"y":182736},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":202951,"y":182742},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":202946,"y":182749},{"x":-12,"y":22}],"type":"coastline"},{"arc":[{"x":202934,"y":182771},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":202925,"y":182779},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":202914,"y":182782},{"x":-7,"y":8}],"type":"coastline"},{"arc":[{"x":202907,"y":182790},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":202898,"y":182806},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":202897,"y":182809},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":202897,"y":182812},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":202896,"y":182822},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":202896,"y":182829},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":202899,"y":182838},{"x":6,"y":11}],"type":"coastline"},{"arc":[{"x":202905,"y":182849},{"x":12,"y":12}],"type":"coastline"},{"arc":[{"x":202917,"y":182861},{"x":8,"y":12}],"type":"coastline"},{"arc":[{"x":202925,"y":182873},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":202933,"y":182877},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":202935,"y":182877},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":202942,"y":182878},{"x":10,"y":14}],"type":"coastline"},{"arc":[{"x":202954,"y":182895},{"x":6,"y":10}],"type":"coastline"},{"arc":[{"x":202960,"y":182905},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":202966,"y":182914},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":202973,"y":182916},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":202980,"y":182928},{"x":10,"y":12}],"type":"coastline"},{"arc":[{"x":202991,"y":182944},{"x":3,"y":18}],"type":"coastline"},{"arc":[{"x":202994,"y":182962},{"x":10,"y":11}],"type":"coastline"},{"arc":[{"x":203004,"y":182973},{"x":8,"y":9}],"type":"coastline"},{"arc":[{"x":203013,"y":182983},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":203016,"y":182989},{"x":4,"y":15}],"type":"coastline"},{"arc":[{"x":203020,"y":183004},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":203029,"y":183016},{"x":2,"y":27}],"type":"coastline"},{"arc":[{"x":203031,"y":183043},{"x":-21,"y":11}],"type":"coastline"},{"arc":[{"x":203007,"y":183053},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":203001,"y":183053},{"x":-30,"y":8}],"type":"coastline"},{"arc":[{"x":202971,"y":183061},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":202955,"y":183065},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":202955,"y":183070},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":202955,"y":183075},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":202956,"y":183085},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":202960,"y":183098},{"x":8,"y":14}],"type":"coastline"},{"arc":[{"x":202970,"y":183118},{"x":11,"y":26}],"type":"coastline"},{"arc":[{"x":202982,"y":183153},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":202985,"y":183159},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":202987,"y":183166},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":202984,"y":183176},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":202982,"y":183180},{"x":-11,"y":18}],"type":"coastline"},{"arc":[{"x":202968,"y":183200},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":202965,"y":183210},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":202965,"y":183212},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":202962,"y":183215},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":202957,"y":183221},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":202956,"y":183224},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":202956,"y":183241},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":202955,"y":183241},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":202952,"y":183244},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":202950,"y":183250},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":202948,"y":183254},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":202947,"y":183260},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":202948,"y":183274},{"x":-9,"y":8}],"type":"coastline"},{"arc":[{"x":202939,"y":183282},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":202931,"y":183291},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":202928,"y":183294},{"x":-16,"y":-2}],"type":"coastline"},{"arc":[{"x":202912,"y":183292},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":202903,"y":183285},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":202890,"y":183287},{"x":-23,"y":-3}],"type":"coastline"},{"arc":[{"x":202867,"y":183284},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":202865,"y":183285},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":202864,"y":183291},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":202865,"y":183296},{"x":5,"y":15}],"type":"coastline"},{"arc":[{"x":202870,"y":183311},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":202860,"y":183318},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":202857,"y":183319},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":202851,"y":183327},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":202845,"y":183329},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":202841,"y":183331},{"x":-15,"y":6}],"type":"coastline"},{"arc":[{"x":202826,"y":183337},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":202823,"y":183346},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":202823,"y":183352},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":202827,"y":183362},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":202828,"y":183364},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":202833,"y":183376},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":202834,"y":183386},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":202828,"y":183392},{"x":-11,"y":9}],"type":"coastline"},{"arc":[{"x":202815,"y":183406},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":202816,"y":183417},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":202813,"y":183420},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":202812,"y":183425},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":202815,"y":183431},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":202824,"y":183443},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":202827,"y":183444},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":202828,"y":183443},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":202834,"y":183446},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":202842,"y":183451},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":202847,"y":183458},{"x":14,"y":0}],"type":"coastline"},{"arc":[{"x":202862,"y":183458},{"x":7,"y":15}],"type":"coastline"},{"arc":[{"x":202869,"y":183473},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":202871,"y":183476},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":202874,"y":183478},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":202870,"y":183482},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":202863,"y":183482},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":202848,"y":183478},{"x":-15,"y":0}],"type":"coastline"},{"arc":[{"x":202832,"y":183478},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":202827,"y":183479},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":202824,"y":183489},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":202817,"y":183496},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":202815,"y":183507},{"x":-6,"y":10}],"type":"coastline"},{"arc":[{"x":202808,"y":183521},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":202800,"y":183539},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":202794,"y":183546},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":202795,"y":183554},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":202791,"y":183559},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":202788,"y":183560},{"x":-9,"y":3}],"type":"coastline"},{"arc":[{"x":202779,"y":183563},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":202773,"y":183571},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":202772,"y":183574},{"x":-7,"y":10}],"type":"coastline"},{"arc":[{"x":202764,"y":183583},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":202748,"y":183578},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":202737,"y":183572},{"x":-3,"y":12}],"type":"coastline"},{"arc":[{"x":202734,"y":183584},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":202734,"y":183590},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":202726,"y":183593},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":202723,"y":183593},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":202722,"y":183593},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":202716,"y":183587},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":202712,"y":183587},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":202704,"y":183590},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":202702,"y":183594},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":202700,"y":183601},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":202700,"y":183606},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":202696,"y":183610},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":202683,"y":183612},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":202679,"y":183604},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":202675,"y":183596},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":202671,"y":183594},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":202657,"y":183594},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":202652,"y":183587},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":202624,"y":183583},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":202622,"y":183587},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":202619,"y":183592},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":202616,"y":183593},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":202606,"y":183590},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":202602,"y":183590},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":202598,"y":183592},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":202590,"y":183594},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":202586,"y":183599},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":202582,"y":183604},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":202578,"y":183609},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":202564,"y":183613},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":202554,"y":183620},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":202550,"y":183620},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":202546,"y":183619},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":202535,"y":183624},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":202529,"y":183626},{"x":-15,"y":12}],"type":"coastline"},{"arc":[{"x":202514,"y":183638},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":202514,"y":183644},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":202513,"y":183647},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":202512,"y":183648},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":202503,"y":183648},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":202498,"y":183648},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":202491,"y":183655},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":201877,"y":184022},{"x":-43,"y":-99},{"x":11,"y":-82},{"x":-98,"y":-2},{"x":-69,"y":-154},{"x":-108,"y":-56},{"x":-50,"y":17},{"x":-54,"y":-44},{"x":-27,"y":-178},{"x":-58,"y":-13},{"x":-27,"y":51},{"x":-39,"y":-50},{"x":-3,"y":-58},{"x":-133,"y":-83},{"x":-49,"y":-1},{"x":-98,"y":-133},{"x":2,"y":-116},{"x":-63,"y":-14},{"x":-9,"y":-43},{"x":-51,"y":-8},{"x":-62,"y":69},{"x":-44,"y":-27},{"x":-28,"y":25},{"x":-48,"y":-23},{"x":-29,"y":29},{"x":-38,"y":-39},{"x":-49,"y":18},{"x":-30,"y":-46},{"x":-27,"y":7},{"x":-12,"y":-30},{"x":-54,"y":-12},{"x":-15,"y":-69},{"x":-41,"y":-9},{"x":-19,"y":-55},{"x":-26,"y":0},{"x":52,"y":-96},{"x":-22,"y":-102},{"x":127,"y":-120},{"x":4,"y":-40},{"x":-13,"y":-93},{"x":-124,"y":-129},{"x":-40,"y":-99},{"x":28,"y":-82},{"x":-147,"y":-41},{"x":-31,"y":-31},{"x":-70,"y":51},{"x":-31,"y":-8},{"x":-63,"y":-87},{"x":-37,"y":13},{"x":-38,"y":-22},{"x":-44,"y":-138},{"x":-81,"y":-48},{"x":-32,"y":20},{"x":-41,"y":-17},{"x":-54,"y":39},{"x":-126,"y":16},{"x":-11,"y":20},{"x":-103,"y":-31},{"x":-59,"y":-111},{"x":-18,"y":-156},{"x":-111,"y":-83}],"type":"area"},{"arc":[{"x":199790,"y":180596},{"x":53,"y":-4},{"x":70,"y":-91},{"x":47,"y":-21},{"x":179,"y":2},{"x":89,"y":-34},{"x":25,"y":-37},{"x":51,"y":34},{"x":77,"y":-77},{"x":75,"y":-11},{"x":70,"y":-55},{"x":180,"y":49},{"x":88,"y":-35},{"x":15,"y":-31},{"x":102,"y":18},{"x":69,"y":-135},{"x":122,"y":26},{"x":28,"y":-50},{"x":51,"y":-18},{"x":117,"y":52},{"x":36,"y":-44},{"x":65,"y":16},{"x":114,"y":-54},{"x":93,"y":59},{"x":35,"y":97},{"x":57,"y":25},{"x":47,"y":62},{"x":138,"y":-39},{"x":100,"y":-123},{"x":61,"y":-32},{"x":62,"y":6},{"x":35,"y":-62},{"x":52,"y":26},{"x":77,"y":104},{"x":95,"y":50},{"x":46,"y":-9},{"x":25,"y":23},{"x":-11,"y":32},{"x":75,"y":60},{"x":37,"y":-12},{"x":7,"y":-32},{"x":46,"y":20},{"x":13,"y":-34},{"x":55,"y":6},{"x":39,"y":46},{"x":175,"y":-72},{"x":94,"y":-4},{"x":31,"y":43},{"x":28,"y":-47},{"x":10,"y":-239},{"x":-26,"y":-77},{"x":-51,"y":-17},{"x":-45,"y":-127},{"x":121,"y":-83},{"x":-13,"y":-22},{"x":-71,"y":-1},{"x":-37,"y":-95},{"x":18,"y":-66},{"x":-163,"y":-123},{"x":-16,"y":-194},{"x":43,"y":-124},{"x":-13,"y":-40}],"type":"admin"},{"arc":[{"x":204938,"y":179306},{"x":150,"y":119},{"x":-14,"y":208},{"x":49,"y":29},{"x":103,"y":6},{"x":62,"y":50},{"x":37,"y":75},{"x":71,"y":-8},{"x":33,"y":12},{"x":-3,"y":29},{"x":116,"y":12},{"x":157,"y":-49},{"x":69,"y":32},{"x":56,"y":-5},{"x":37,"y":82},{"x":102,"y":-4},{"x":44,"y":40},{"x":69,"y":-13},{"x":153,"y":117},{"x":141,"y":66}],"type":"admin"},{"arc":[{"x":206370,"y":180104},{"x":-6,"y":10}],"type":"coastline"},{"arc":[{"x":192949,"y":176481},{"x":-7,"y":-29}],"type":"coastline"},{"arc":[{"x":192882,"y":176380},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":192874,"y":176378},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":192840,"y":176387},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":192830,"y":176414},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":192811,"y":176446},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":192704,"y":176492},{"x":-14,"y":3}],"type":"coastline"},{"arc":[{"x":192676,"y":176536},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":192635,"y":176556},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":192623,"y":176571},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":192608,"y":176577},{"x":-4,"y":15}],"type":"coastline"},{"arc":[{"x":192422,"y":176800},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":192372,"y":176784},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":192373,"y":176789},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":192374,"y":176801},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":192360,"y":176813},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":192334,"y":176841},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":192312,"y":176869},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":192264,"y":176883},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":192251,"y":176887},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":192250,"y":176905},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":192221,"y":176925},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":192215,"y":176949},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":192181,"y":176996},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":192141,"y":177027},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":192100,"y":177052},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":192093,"y":177056},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":192081,"y":177053},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":192011,"y":177037},{"x":-12,"y":-2}],"type":"coastline"},{"arc":[{"x":191999,"y":177035},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":191992,"y":177033},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":191973,"y":177028},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":191955,"y":177024},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":191918,"y":177014},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":191912,"y":177012},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":191770,"y":177001},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":191691,"y":177006},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":191645,"y":176993},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":191642,"y":176991},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":191611,"y":176950},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":191494,"y":176910},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":191433,"y":176894},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":191428,"y":176900},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":191407,"y":176918},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":191277,"y":177086},{"x":-4,"y":18}],"type":"coastline"},{"arc":[{"x":191229,"y":177115},{"x":-28,"y":2}],"type":"coastline"},{"arc":[{"x":191044,"y":177134},{"x":-26,"y":-1}],"type":"coastline"},{"arc":[{"x":190915,"y":177098},{"x":-133,"y":-566},{"x":-91,"y":-104},{"x":-130,"y":-33},{"x":147,"y":-480},{"x":-55,"y":-25},{"x":76,"y":-409},{"x":-7,"y":-377}],"type":"admin"},{"arc":[{"x":190722,"y":175104},{"x":39,"y":26},{"x":-3,"y":61},{"x":25,"y":12},{"x":26,"y":-21},{"x":21,"y":39},{"x":80,"y":43},{"x":76,"y":-38},{"x":77,"y":20},{"x":137,"y":120},{"x":321,"y":103},{"x":202,"y":1},{"x":35,"y":-23},{"x":12,"y":-57},{"x":0,"y":38},{"x":6,"y":-41},{"x":20,"y":3},{"x":6,"y":-32},{"x":-13,"y":27},{"x":-26,"y":-5},{"x":24,"y":-36},{"x":59,"y":14},{"x":74,"y":-22},{"x":-21,"y":28},{"x":21,"y":-22},{"x":19,"y":41},{"x":48,"y":-3},{"x":74,"y":69},{"x":123,"y":34},{"x":47,"y":43},{"x":80,"y":23},{"x":30,"y":-16},{"x":-7,"y":19},{"x":44,"y":21},{"x":58,"y":-25},{"x":8,"y":-29},{"x":12,"y":31},{"x":-2,"y":-24},{"x":50,"y":-6},{"x":-60,"y":-23},{"x":269,"y":84},{"x":172,"y":154},{"x":11,"y":200},{"x":22,"y":65},{"x":51,"y":16},{"x":-30,"y":0},{"x":4,"y":21},{"x":-16,"y":-19},{"x":7,"y":31},{"x":48,"y":-23},{"x":-36,"y":25},{"x":14,"y":51},{"x":227,"y":145}],"type":"coastline"},{"arc":[{"x":193169,"y":176280},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":193155,"y":176301},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":193151,"y":176304},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":193134,"y":176326},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":193132,"y":176327},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":193061,"y":176350},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":192992,"y":176391},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":192988,"y":176395},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":205534,"y":183953},{"x":31,"y":-5}],"type":"coastline"},{"arc":[{"x":205565,"y":183948},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":205570,"y":183946},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":205572,"y":183945},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":205577,"y":183941},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":205582,"y":183943},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":205591,"y":183945},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":205598,"y":183946},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":205608,"y":183947},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":205620,"y":183930},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":205620,"y":183925},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":205628,"y":183919},{"x":23,"y":-3}],"type":"coastline"},{"arc":[{"x":205651,"y":183916},{"x":12,"y":-9}],"type":"coastline"},{"arc":[{"x":205663,"y":183907},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":205672,"y":183903},{"x":38,"y":-15}],"type":"coastline"},{"arc":[{"x":205710,"y":183888},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":205717,"y":183882},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":205721,"y":183883},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":205728,"y":183897},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":205735,"y":183902},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":205741,"y":183897},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":205751,"y":183895},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":205756,"y":183891},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":205753,"y":183881},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":205754,"y":183876},{"x":7,"y":-9}],"type":"coastline"},{"arc":[{"x":205761,"y":183867},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":205767,"y":183856},{"x":11,"y":-18}],"type":"coastline"},{"arc":[{"x":205779,"y":183837},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":205781,"y":183831},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":205794,"y":183830},{"x":18,"y":1}],"type":"coastline"},{"arc":[{"x":205812,"y":183831},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":205823,"y":183832},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":205829,"y":183833},{"x":17,"y":-17}],"type":"coastline"},{"arc":[{"x":205846,"y":183816},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":205848,"y":183815},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":205853,"y":183820},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":205860,"y":183825},{"x":14,"y":5}],"type":"coastline"},{"arc":[{"x":205874,"y":183830},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":205882,"y":183827},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":205890,"y":183821},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":205898,"y":183818},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":205901,"y":183814},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":205905,"y":183813},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":205914,"y":183812},{"x":12,"y":-6}],"type":"coastline"},{"arc":[{"x":205926,"y":183806},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":205930,"y":183806},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":205939,"y":183808},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":205946,"y":183816},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":205949,"y":183822},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":205959,"y":183832},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":205966,"y":183843},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":205974,"y":183853},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":205977,"y":183862},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":205974,"y":183869},{"x":9,"y":14}],"type":"coastline"},{"arc":[{"x":205983,"y":183883},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":205986,"y":183894},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":205992,"y":183898},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":206003,"y":183898},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":206007,"y":183897},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":206012,"y":183903},{"x":20,"y":-4}],"type":"coastline"},{"arc":[{"x":206038,"y":183899},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":206047,"y":183899},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":206050,"y":183912},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":206057,"y":183921},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":206066,"y":183916},{"x":6,"y":-8}],"type":"coastline"},{"arc":[{"x":206072,"y":183908},{"x":1,"y":-16}],"type":"coastline"},{"arc":[{"x":206073,"y":183892},{"x":2,"y":-14}],"type":"coastline"},{"arc":[{"x":206075,"y":183868},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":206080,"y":183859},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":206084,"y":183850},{"x":10,"y":-6}],"type":"coastline"},{"arc":[{"x":206094,"y":183844},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":206097,"y":183843},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":206103,"y":183844},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":206105,"y":183846},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":206114,"y":183858},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":206123,"y":183863},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":206125,"y":183867},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":206133,"y":183873},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":206144,"y":183876},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":206145,"y":183868},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":206149,"y":183859},{"x":19,"y":-7}],"type":"coastline"},{"arc":[{"x":206168,"y":183852},{"x":13,"y":-4}],"type":"coastline"},{"arc":[{"x":206181,"y":183848},{"x":0,"y":-19}],"type":"coastline"},{"arc":[{"x":206181,"y":183826},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":206183,"y":183819},{"x":17,"y":-9}],"type":"coastline"},{"arc":[{"x":206200,"y":183810},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":206208,"y":183812},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":206230,"y":183807},{"x":18,"y":1}],"type":"coastline"},{"arc":[{"x":206248,"y":183808},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":206255,"y":183803},{"x":26,"y":-9}],"type":"coastline"},{"arc":[{"x":206281,"y":183794},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":206291,"y":183794},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":206296,"y":183787},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":206301,"y":183781},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":206299,"y":183776},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":206296,"y":183767},{"x":-2,"y":-10}],"type":"coastline"},{"arc":[{"x":206294,"y":183757},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":206294,"y":183749},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":206293,"y":183741},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":206299,"y":183734},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":206303,"y":183721},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":206304,"y":183717},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":206308,"y":183714},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":206313,"y":183708},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":206322,"y":183716},{"x":25,"y":11}],"type":"coastline"},{"arc":[{"x":206347,"y":183727},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":206351,"y":183730},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":206359,"y":183730},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":206365,"y":183733},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":206364,"y":183739},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":206359,"y":183746},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":206358,"y":183750},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":206361,"y":183755},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":206366,"y":183755},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":206373,"y":183754},{"x":18,"y":-13}],"type":"coastline"},{"arc":[{"x":206395,"y":183736},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":206400,"y":183734},{"x":14,"y":-6}],"type":"coastline"},{"arc":[{"x":206414,"y":183727},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":206417,"y":183720},{"x":18,"y":-1}],"type":"coastline"},{"arc":[{"x":206438,"y":183719},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":206440,"y":183716},{"x":8,"y":-12}],"type":"coastline"},{"arc":[{"x":206448,"y":183704},{"x":11,"y":-13}],"type":"coastline"},{"arc":[{"x":206459,"y":183691},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":206460,"y":183690},{"x":9,"y":-22}],"type":"coastline"},{"arc":[{"x":206469,"y":183668},{"x":22,"y":-9}],"type":"coastline"},{"arc":[{"x":206492,"y":183660},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":206514,"y":183652},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":206519,"y":183651},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":206524,"y":183646},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":206530,"y":183645},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":206533,"y":183642},{"x":6,"y":-15}],"type":"coastline"},{"arc":[{"x":206541,"y":183625},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":206549,"y":183619},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":206564,"y":183614},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":206568,"y":183606},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":206569,"y":183604},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":206573,"y":183596},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":206580,"y":183583},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":206581,"y":183577},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":206581,"y":183568},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":206580,"y":183560},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":206580,"y":183553},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":206583,"y":183546},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":206589,"y":183537},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":206592,"y":183527},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":206595,"y":183517},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":206603,"y":183512},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":206616,"y":183510},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":206631,"y":183508},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":206635,"y":183507},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":206644,"y":183513},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":206657,"y":183513},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":206661,"y":183511},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":206674,"y":183511},{"x":17,"y":-2}],"type":"coastline"},{"arc":[{"x":206696,"y":183512},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":206707,"y":183511},{"x":17,"y":-6}],"type":"coastline"},{"arc":[{"x":206724,"y":183505},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":206730,"y":183500},{"x":9,"y":-7}],"type":"coastline"},{"arc":[{"x":206738,"y":183490},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":206740,"y":183483},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":206746,"y":183474},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":206750,"y":183469},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":206759,"y":183465},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":206765,"y":183459},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":206770,"y":183453},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":206775,"y":183453},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":206780,"y":183456},{"x":14,"y":0}],"type":"coastline"},{"arc":[{"x":206794,"y":183456},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":206802,"y":183453},{"x":10,"y":2}],"type":"coastline"},{"arc":[{"x":206812,"y":183455},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":206825,"y":183458},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":206828,"y":183461},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":206835,"y":183456},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":206836,"y":183456},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":206853,"y":183453},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":206857,"y":183447},{"x":9,"y":-3}],"type":"coastline"},{"arc":[{"x":206868,"y":183444},{"x":12,"y":1}],"type":"coastline"},{"arc":[{"x":206885,"y":183444},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":206900,"y":183441},{"x":23,"y":-1}],"type":"coastline"},{"arc":[{"x":206928,"y":183438},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":206933,"y":183435},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":206941,"y":183436},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":206943,"y":183435},{"x":10,"y":3}],"type":"coastline"},{"arc":[{"x":206959,"y":183441},{"x":23,"y":3}],"type":"coastline"},{"arc":[{"x":206985,"y":183443},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":206994,"y":183439},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":207001,"y":183438},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":207013,"y":183442},{"x":26,"y":2}],"type":"coastline"},{"arc":[{"x":207043,"y":183446},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":207047,"y":183447},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":207058,"y":183448},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":207066,"y":183450},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":207072,"y":183451},{"x":16,"y":4}],"type":"coastline"},{"arc":[{"x":207091,"y":183454},{"x":11,"y":-9}],"type":"coastline"},{"arc":[{"x":199766,"y":179517},{"x":59,"y":54},{"x":123,"y":50},{"x":167,"y":-15},{"x":67,"y":-70},{"x":174,"y":58},{"x":33,"y":-49},{"x":80,"y":-25},{"x":92,"y":-2},{"x":68,"y":37},{"x":32,"y":-41},{"x":105,"y":-35},{"x":97,"y":31},{"x":104,"y":-42},{"x":-23,"y":-55},{"x":43,"y":-32},{"x":-15,"y":-86},{"x":46,"y":-8},{"x":72,"y":-86},{"x":52,"y":11},{"x":101,"y":-58},{"x":117,"y":-139},{"x":141,"y":50},{"x":159,"y":-19},{"x":109,"y":-171},{"x":119,"y":24},{"x":88,"y":-13}],"type":"area"},{"arc":[{"x":201976,"y":178886},{"x":32,"y":22},{"x":21,"y":-14},{"x":64,"y":80},{"x":61,"y":-25},{"x":87,"y":38},{"x":41,"y":-54},{"x":101,"y":19},{"x":65,"y":-57},{"x":32,"y":4}],"type":"area"},{"arc":[{"x":207439,"y":179918},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":207425,"y":179919},{"x":-20,"y":-3}],"type":"coastline"},{"arc":[{"x":207405,"y":179916},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":207397,"y":179919},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":207387,"y":179922},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":207378,"y":179920},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":207373,"y":179920},{"x":-11,"y":3}],"type":"coastline"},{"arc":[{"x":207355,"y":179919},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":207344,"y":179915},{"x":-13,"y":-5}],"type":"coastline"},{"arc":[{"x":207331,"y":179910},{"x":-25,"y":-2}],"type":"coastline"},{"arc":[{"x":207279,"y":179902},{"x":-12,"y":6}],"type":"coastline"},{"arc":[{"x":207263,"y":179926},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":207257,"y":179930},{"x":-25,"y":-8}],"type":"coastline"},{"arc":[{"x":207225,"y":179927},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":207220,"y":179921},{"x":-16,"y":-18}],"type":"coastline"},{"arc":[{"x":207199,"y":179901},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":207196,"y":179899},{"x":-41,"y":7}],"type":"coastline"},{"arc":[{"x":207155,"y":179906},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":207151,"y":179906},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":207148,"y":179907},{"x":-10,"y":12}],"type":"coastline"},{"arc":[{"x":207138,"y":179919},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":207131,"y":179922},{"x":-19,"y":-2}],"type":"coastline"},{"arc":[{"x":207112,"y":179920},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":207106,"y":179922},{"x":-17,"y":10}],"type":"coastline"},{"arc":[{"x":207089,"y":179932},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":207080,"y":179932},{"x":-19,"y":2}],"type":"coastline"},{"arc":[{"x":207061,"y":179934},{"x":-15,"y":1}],"type":"coastline"},{"arc":[{"x":207046,"y":179935},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":207040,"y":179937},{"x":-10,"y":-6}],"type":"coastline"},{"arc":[{"x":207023,"y":179929},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":207011,"y":179930},{"x":-25,"y":-27}],"type":"coastline"},{"arc":[{"x":206984,"y":179900},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":206981,"y":179897},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":206968,"y":179899},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":206965,"y":179896},{"x":-10,"y":3}],"type":"coastline"},{"arc":[{"x":206952,"y":179902},{"x":-17,"y":1}],"type":"coastline"},{"arc":[{"x":206932,"y":179902},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":206921,"y":179897},{"x":-19,"y":-1}],"type":"coastline"},{"arc":[{"x":206902,"y":179896},{"x":-15,"y":3}],"type":"coastline"},{"arc":[{"x":206887,"y":179899},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":206875,"y":179904},{"x":-11,"y":4}],"type":"coastline"},{"arc":[{"x":206857,"y":179910},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":206849,"y":179913},{"x":-28,"y":-3}],"type":"coastline"},{"arc":[{"x":206812,"y":179911},{"x":-13,"y":-8}],"type":"coastline"},{"arc":[{"x":206799,"y":179903},{"x":-14,"y":-2}],"type":"coastline"},{"arc":[{"x":206785,"y":179901},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":206767,"y":179908},{"x":-10,"y":4}],"type":"coastline"},{"arc":[{"x":206755,"y":179913},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":206750,"y":179921},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":206746,"y":179923},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":206736,"y":179937},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":206732,"y":179941},{"x":-29,"y":2}],"type":"coastline"},{"arc":[{"x":206688,"y":179944},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":206683,"y":179947},{"x":-18,"y":5}],"type":"coastline"},{"arc":[{"x":206663,"y":179956},{"x":-6,"y":8}],"type":"coastline"},{"arc":[{"x":206654,"y":179967},{"x":-19,"y":18}],"type":"coastline"},{"arc":[{"x":206635,"y":179985},{"x":-8,"y":12}],"type":"coastline"},{"arc":[{"x":206625,"y":180005},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":206628,"y":180018},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":206632,"y":180025},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":206629,"y":180040},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":206624,"y":180042},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":206612,"y":180059},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":206606,"y":180072},{"x":-21,"y":1}],"type":"coastline"},{"arc":[{"x":206585,"y":180073},{"x":-20,"y":26}],"type":"coastline"},{"arc":[{"x":206565,"y":180099},{"x":-25,"y":19}],"type":"coastline"},{"arc":[{"x":206540,"y":180118},{"x":-9,"y":6}],"type":"coastline"},{"arc":[{"x":206531,"y":180124},{"x":-17,"y":10}],"type":"coastline"},{"arc":[{"x":206514,"y":180134},{"x":-10,"y":-2}],"type":"coastline"},{"arc":[{"x":206496,"y":180132},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":206485,"y":180130},{"x":-18,"y":-10}],"type":"coastline"},{"arc":[{"x":206467,"y":180120},{"x":-30,"y":-16}],"type":"coastline"},{"arc":[{"x":206437,"y":180104},{"x":-11,"y":6}],"type":"coastline"},{"arc":[{"x":206426,"y":180110},{"x":-10,"y":-5}],"type":"coastline"},{"arc":[{"x":206416,"y":180105},{"x":-14,"y":-6}],"type":"coastline"},{"arc":[{"x":206402,"y":180099},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":206393,"y":180094},{"x":-11,"y":7}],"type":"coastline"},{"arc":[{"x":206382,"y":180101},{"x":-12,"y":3}],"type":"coastline"},{"arc":[{"x":206613,"y":178067},{"x":134,"y":80},{"x":79,"y":-97},{"x":126,"y":14},{"x":31,"y":-50},{"x":-33,"y":-118},{"x":61,"y":-117},{"x":-10,"y":-90},{"x":-39,"y":-51},{"x":70,"y":-68},{"x":112,"y":-6},{"x":31,"y":-78},{"x":65,"y":29},{"x":124,"y":3},{"x":31,"y":47}],"type":"area"},{"arc":[{"x":201976,"y":178886},{"x":-45,"y":-79},{"x":43,"y":-118},{"x":52,"y":-48},{"x":17,"y":-146},{"x":-32,"y":-35},{"x":-23,"y":-123},{"x":-35,"y":-9},{"x":-20,"y":-51},{"x":13,"y":-32},{"x":67,"y":-27},{"x":3,"y":-127},{"x":-153,"y":-145},{"x":-12,"y":-130},{"x":-57,"y":-45},{"x":-50,"y":-6},{"x":0,"y":-57},{"x":-38,"y":-53},{"x":-32,"y":27},{"x":-19,"y":-21},{"x":-32,"y":67},{"x":-18,"y":-24}],"type":"area"},{"arc":[{"x":201605,"y":177704},{"x":-7,"y":-126},{"x":-41,"y":-8},{"x":26,"y":-71},{"x":-24,"y":-124},{"x":73,"y":-94},{"x":70,"y":-17},{"x":11,"y":-102}],"type":"area"},{"arc":[{"x":201713,"y":177162},{"x":674,"y":27},{"x":271,"y":-127},{"x":318,"y":-576},{"x":85,"y":-39},{"x":10,"y":-118},{"x":-12,"y":-29},{"x":-174,"y":-37},{"x":-48,"y":-59},{"x":-49,"y":48},{"x":-46,"y":-2},{"x":-75,"y":-137},{"x":-60,"y":-53}],"type":"area"},{"arc":[{"x":202803,"y":175887},{"x":660,"y":282}],"type":"coastline"},{"arc":[{"x":205225,"y":176614},{"x":682,"y":93},{"x":448,"y":3},{"x":93,"y":-52},{"x":33,"y":-54},{"x":125,"y":-28},{"x":30,"y":-43},{"x":-11,"y":-48},{"x":47,"y":-24},{"x":-6,"y":-17},{"x":-34,"y":20},{"x":40,"y":-24},{"x":11,"y":7},{"x":63,"y":-169},{"x":73,"y":-45},{"x":55,"y":16},{"x":47,"y":-22},{"x":29,"y":-71},{"x":-42,"y":24},{"x":169,"y":-181},{"x":24,"y":-94},{"x":128,"y":-31},{"x":68,"y":-80}],"type":"coastline"},{"arc":[{"x":201033,"y":177061},{"x":-13,"y":-13},{"x":-33,"y":52},{"x":6,"y":-73},{"x":-128,"y":-409}],"type":"area"},{"arc":[{"x":200865,"y":176618},{"x":258,"y":290}],"type":"area"},{"arc":[{"x":201123,"y":176908},{"x":-48,"y":58},{"x":-6,"y":71},{"x":-33,"y":-3},{"x":-3,"y":27}],"type":"area"},{"arc":[{"x":200147,"y":178685},{"x":182,"y":10},{"x":40,"y":-62},{"x":28,"y":-260},{"x":63,"y":-16},{"x":78,"y":-81},{"x":-32,"y":-64},{"x":-10,"y":-202},{"x":59,"y":-19},{"x":65,"y":14},{"x":31,"y":-26},{"x":26,"y":-105},{"x":67,"y":-16},{"x":4,"y":-37},{"x":77,"y":8},{"x":39,"y":-144},{"x":61,"y":-2},{"x":42,"y":-121},{"x":-36,"y":-59},{"x":33,"y":-89},{"x":-21,"y":-19},{"x":93,"y":-329}],"type":"area"},{"arc":[{"x":201036,"y":177066},{"x":38,"y":26},{"x":-3,"y":53},{"x":51,"y":92},{"x":-4,"y":98},{"x":44,"y":9},{"x":-12,"y":25},{"x":-51,"y":9},{"x":56,"y":42},{"x":9,"y":156},{"x":37,"y":-30},{"x":38,"y":25},{"x":24,"y":-11},{"x":-74,"y":-61},{"x":-1,"y":-84},{"x":76,"y":-11},{"x":29,"y":57},{"x":66,"y":-75},{"x":112,"y":47},{"x":-122,"y":171},{"x":14,"y":38},{"x":65,"y":1},{"x":53,"y":48},{"x":87,"y":-13},{"x":37,"y":26}],"type":"area"},{"arc":[{"x":201036,"y":177066},{"x":-3,"y":-5}],"type":"area"},{"arc":[{"x":201123,"y":176908},{"x":76,"y":74},{"x":210,"y":102},{"x":304,"y":78}],"type":"area"},{"arc":[{"x":190340,"y":179985},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":190355,"y":179978},{"x":12,"y":-11}],"type":"coastline"},{"arc":[{"x":190418,"y":179928},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":190441,"y":179916},{"x":12,"y":-8}],"type":"coastline"},{"arc":[{"x":190496,"y":179870},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":190498,"y":179865},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":190490,"y":179779},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":190505,"y":179751},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":190508,"y":179734},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":190546,"y":179726},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":190556,"y":179728},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":190592,"y":179715},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":190597,"y":179715},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":190612,"y":179719},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":190618,"y":179709},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":190629,"y":179705},{"x":10,"y":-5}],"type":"coastline"},{"arc":[{"x":190667,"y":179680},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":190762,"y":179621},{"x":11,"y":-8}],"type":"coastline"},{"arc":[{"x":190773,"y":179596},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":190775,"y":179595},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":190845,"y":179592},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":190860,"y":179594},{"x":10,"y":-2}],"type":"coastline"},{"arc":[{"x":190874,"y":179594},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":190887,"y":179594},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":190913,"y":179587},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":190934,"y":179562},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":190949,"y":179552},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":190985,"y":179518},{"x":14,"y":-2}],"type":"coastline"},{"arc":[{"x":191041,"y":179484},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":191071,"y":179454},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":191118,"y":179382},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":191228,"y":179352},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":191343,"y":179310},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":191351,"y":179304},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":191393,"y":179283},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":191418,"y":179221},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":191520,"y":179123},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":191570,"y":179112},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":191591,"y":179106},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":191606,"y":179118},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":191613,"y":179116},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":191646,"y":179096},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":191681,"y":179054},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":191715,"y":178985},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":191691,"y":178969},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":191687,"y":178955},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":191683,"y":178951},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":191676,"y":178924},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":191694,"y":178902},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":191701,"y":178898},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":191714,"y":178895},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":191738,"y":178866},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":191840,"y":178824},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":191887,"y":178825},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":191908,"y":178814},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":191923,"y":178800},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":191963,"y":178788},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":191967,"y":178783},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":192017,"y":178738},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":192034,"y":178758},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":192045,"y":178763},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":192049,"y":178761},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":192082,"y":178755},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":192098,"y":178756},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":192108,"y":178769},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":192115,"y":178779},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":192124,"y":178827},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":192098,"y":178842},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":192080,"y":178865},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":192090,"y":178894},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":192094,"y":178899},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":192073,"y":178948},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":192070,"y":178960},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":192070,"y":178966},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":192123,"y":179064},{"x":15,"y":-5}],"type":"coastline"},{"arc":[{"x":192230,"y":179162},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":192249,"y":179248},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":192265,"y":179273},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":192274,"y":179326},{"x":-2,"y":11}],"type":"coastline"},{"arc":[{"x":192297,"y":179383},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":192319,"y":179494},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":192317,"y":179554},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":192330,"y":179590},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":192351,"y":179612},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":192349,"y":179684},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":192353,"y":179727},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":192338,"y":179839},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":192338,"y":179853},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":192332,"y":179954},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":192336,"y":179992},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":179764,"y":181338},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":179761,"y":181334},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":179757,"y":181329},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":179754,"y":181326},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":179741,"y":181322},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":179736,"y":181322},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":179726,"y":181321},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":179719,"y":181315},{"x":-11,"y":-7}],"type":"coastline"},{"arc":[{"x":179708,"y":181308},{"x":-14,"y":0}],"type":"coastline"},{"arc":[{"x":179690,"y":181308},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":179682,"y":181308},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":179676,"y":181310},{"x":-10,"y":-3}],"type":"coastline"},{"arc":[{"x":179666,"y":181307},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":179658,"y":181306},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":179651,"y":181304},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":179646,"y":181304},{"x":-16,"y":0}],"type":"coastline"},{"arc":[{"x":179630,"y":181304},{"x":-12,"y":3}],"type":"coastline"},{"arc":[{"x":179616,"y":181308},{"x":-17,"y":6}],"type":"coastline"},{"arc":[{"x":179596,"y":181315},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":179588,"y":181316},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":179575,"y":181319},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":179572,"y":181320},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":179566,"y":181322},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":179559,"y":181322},{"x":-21,"y":-2}],"type":"coastline"},{"arc":[{"x":179538,"y":181318},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":179536,"y":181317},{"x":-14,"y":-30}],"type":"coastline"},{"arc":[{"x":179522,"y":181287},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":179522,"y":181285},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":179521,"y":181282},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":179517,"y":181281},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":179512,"y":181287},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":179510,"y":181293},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":179509,"y":181293},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":179507,"y":181294},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":179500,"y":181297},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":179496,"y":181299},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179492,"y":181300},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":179483,"y":181301},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":179479,"y":181304},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":179469,"y":181304},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":179461,"y":181305},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":179458,"y":181310},{"x":-13,"y":24}],"type":"coastline"},{"arc":[{"x":179445,"y":181334},{"x":-18,"y":15}],"type":"coastline"},{"arc":[{"x":179427,"y":181349},{"x":-21,"y":7}],"type":"coastline"},{"arc":[{"x":179406,"y":181356},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":179398,"y":181354},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":179395,"y":181353},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":179385,"y":181348},{"x":-16,"y":-11}],"type":"coastline"},{"arc":[{"x":179366,"y":181336},{"x":-20,"y":-6}],"type":"coastline"},{"arc":[{"x":179340,"y":181328},{"x":-13,"y":-2}],"type":"coastline"},{"arc":[{"x":179323,"y":181325},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":179314,"y":181324},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":179305,"y":181323},{"x":-31,"y":-1}],"type":"coastline"},{"arc":[{"x":179270,"y":181323},{"x":-38,"y":20}],"type":"coastline"},{"arc":[{"x":179229,"y":181345},{"x":-21,"y":-3}],"type":"coastline"},{"arc":[{"x":179208,"y":181342},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":179199,"y":181342},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":179194,"y":181340},{"x":-13,"y":-4}],"type":"coastline"},{"arc":[{"x":179181,"y":181336},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":179176,"y":181337},{"x":-10,"y":5}],"type":"coastline"},{"arc":[{"x":179162,"y":181347},{"x":-16,"y":10}],"type":"coastline"},{"arc":[{"x":179146,"y":181357},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":179145,"y":181360},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":179144,"y":181363},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":179142,"y":181366},{"x":-19,"y":13}],"type":"coastline"},{"arc":[{"x":179123,"y":181379},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":179119,"y":181383},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":179116,"y":181385},{"x":-13,"y":3}],"type":"coastline"},{"arc":[{"x":179103,"y":181388},{"x":-15,"y":5}],"type":"coastline"},{"arc":[{"x":179084,"y":181397},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":179080,"y":181398},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":179077,"y":181397},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":179071,"y":181396},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":179060,"y":181398},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":179047,"y":181395},{"x":-9,"y":9}],"type":"coastline"},{"arc":[{"x":179038,"y":181404},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":179032,"y":181405},{"x":-19,"y":-9}],"type":"coastline"},{"arc":[{"x":179011,"y":181396},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":179004,"y":181393},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":179001,"y":181391},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":178998,"y":181391},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":178995,"y":181391},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":178979,"y":181393},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":178977,"y":181394},{"x":-15,"y":6}],"type":"coastline"},{"arc":[{"x":178962,"y":181400},{"x":-13,"y":0}],"type":"coastline"},{"arc":[{"x":178937,"y":181401},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":178922,"y":181410},{"x":-18,"y":5}],"type":"coastline"},{"arc":[{"x":178900,"y":181415},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":178883,"y":181416},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":178873,"y":181416},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":178862,"y":181413},{"x":-10,"y":-8}],"type":"coastline"},{"arc":[{"x":178852,"y":181405},{"x":-10,"y":-9}],"type":"coastline"},{"arc":[{"x":178842,"y":181396},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":178837,"y":181391},{"x":-6,"y":-7}],"type":"coastline"},{"arc":[{"x":178820,"y":181376},{"x":-11,"y":-6}],"type":"coastline"},{"arc":[{"x":178809,"y":181370},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":178801,"y":181367},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":178795,"y":181363},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":178792,"y":181357},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":178786,"y":181352},{"x":-19,"y":-11}],"type":"coastline"},{"arc":[{"x":178758,"y":181333},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":178754,"y":181328},{"x":-17,"y":-13}],"type":"coastline"},{"arc":[{"x":178737,"y":181315},{"x":-10,"y":-8}],"type":"coastline"},{"arc":[{"x":178727,"y":181307},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":178719,"y":181307},{"x":-17,"y":-1}],"type":"coastline"},{"arc":[{"x":178702,"y":181306},{"x":-21,"y":-1}],"type":"coastline"},{"arc":[{"x":178681,"y":181305},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":178674,"y":181303},{"x":-16,"y":-2}],"type":"coastline"},{"arc":[{"x":178658,"y":181301},{"x":-59,"y":-18}],"type":"coastline"},{"arc":[{"x":178599,"y":181283},{"x":-15,"y":3}],"type":"coastline"},{"arc":[{"x":178570,"y":181287},{"x":-19,"y":-19}],"type":"coastline"},{"arc":[{"x":178551,"y":181268},{"x":-8,"y":-38}],"type":"coastline"},{"arc":[{"x":178543,"y":181230},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":178524,"y":181211},{"x":-8,"y":-20}],"type":"coastline"},{"arc":[{"x":178516,"y":181191},{"x":-15,"y":-27}],"type":"coastline"},{"arc":[{"x":178501,"y":181164},{"x":-4,"y":-11}],"type":"coastline"},{"arc":[{"x":178491,"y":181135},{"x":-16,"y":-15}],"type":"coastline"},{"arc":[{"x":178475,"y":181120},{"x":-25,"y":-8}],"type":"coastline"},{"arc":[{"x":178433,"y":181105},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":178428,"y":181100},{"x":-32,"y":-31}],"type":"coastline"},{"arc":[{"x":178389,"y":181063},{"x":4,"y":-66},{"x":82,"y":-39},{"x":17,"y":-44},{"x":-47,"y":-119},{"x":61,"y":-238},{"x":26,"y":-5},{"x":34,"y":-78},{"x":50,"y":9},{"x":26,"y":-39},{"x":-65,"y":-226},{"x":87,"y":-121},{"x":64,"y":-311},{"x":44,"y":-108},{"x":85,"y":36},{"x":13,"y":-20},{"x":38,"y":9},{"x":68,"y":-88},{"x":-66,"y":-51},{"x":9,"y":-50},{"x":-35,"y":-5},{"x":9,"y":-31},{"x":-63,"y":-54},{"x":113,"y":-59},{"x":3,"y":-51},{"x":57,"y":5},{"x":-167,"y":-81},{"x":-77,"y":-120},{"x":74,"y":-81},{"x":111,"y":-42},{"x":89,"y":36},{"x":30,"y":-48},{"x":55,"y":-23},{"x":43,"y":45},{"x":60,"y":-22},{"x":15,"y":-44},{"x":-39,"y":-47},{"x":59,"y":-49},{"x":-24,"y":-38},{"x":37,"y":-76},{"x":-32,"y":-96},{"x":84,"y":-106},{"x":90,"y":-43},{"x":-22,"y":-113}],"type":"area"},{"arc":[{"x":179389,"y":178371},{"x":9,"y":-56}],"type":"area"},{"arc":[{"x":179398,"y":178315},{"x":26,"y":-7},{"x":43,"y":64},{"x":22,"y":-3},{"x":-7,"y":25},{"x":52,"y":13},{"x":42,"y":153},{"x":-46,"y":50},{"x":37,"y":58},{"x":42,"y":-36},{"x":129,"y":67},{"x":-7,"y":-79},{"x":36,"y":-27},{"x":128,"y":71},{"x":55,"y":-67},{"x":39,"y":4},{"x":21,"y":-25},{"x":19,"y":15},{"x":21,"y":102},{"x":-64,"y":119},{"x":31,"y":91},{"x":-45,"y":153},{"x":45,"y":20},{"x":18,"y":131},{"x":51,"y":106},{"x":100,"y":26},{"x":23,"y":-31},{"x":53,"y":3},{"x":65,"y":88},{"x":115,"y":34},{"x":13,"y":-32},{"x":70,"y":-11}],"type":"admin"},{"arc":[{"x":180525,"y":179390},{"x":37,"y":76},{"x":2,"y":90},{"x":42,"y":36},{"x":185,"y":33},{"x":6,"y":-24},{"x":49,"y":13},{"x":13,"y":64},{"x":34,"y":2}],"type":"admin"},{"arc":[{"x":180893,"y":179680},{"x":-49,"y":129},{"x":-71,"y":0},{"x":-5,"y":55},{"x":-61,"y":-9},{"x":-20,"y":27},{"x":-14,"y":155},{"x":-61,"y":147},{"x":-113,"y":489},{"x":34,"y":-37},{"x":65,"y":53},{"x":22,"y":-17},{"x":2,"y":35},{"x":-96,"y":69},{"x":82,"y":73},{"x":9,"y":63},{"x":61,"y":82},{"x":59,"y":-5},{"x":121,"y":80},{"x":-23,"y":247},{"x":39,"y":110},{"x":36,"y":16},{"x":51,"y":238},{"x":65,"y":96}],"type":"area"},{"arc":[{"x":181026,"y":181776},{"x":-29,"y":70}],"type":"area"},{"arc":[{"x":175529,"y":179214},{"x":-144,"y":-26},{"x":-195,"y":63},{"x":-59,"y":-61},{"x":-84,"y":1},{"x":-65,"y":52},{"x":-99,"y":1},{"x":-55,"y":-47},{"x":-185,"y":19},{"x":-70,"y":-47},{"x":-40,"y":25},{"x":-56,"y":-32},{"x":-135,"y":71},{"x":-34,"y":97},{"x":-92,"y":94},{"x":14,"y":41},{"x":-90,"y":77},{"x":-121,"y":-172},{"x":-76,"y":2},{"x":-58,"y":-57},{"x":-36,"y":14},{"x":-38,"y":-20},{"x":-34,"y":-106},{"x":-77,"y":-32},{"x":-61,"y":-78},{"x":-45,"y":-5},{"x":-79,"y":-109},{"x":-151,"y":-74}],"type":"admin"},{"arc":[{"x":173364,"y":178905},{"x":-9,"y":-177},{"x":41,"y":-131},{"x":-18,"y":-27},{"x":66,"y":-54},{"x":41,"y":-286}],"type":"admin"},{"arc":[{"x":173485,"y":178230},{"x":9,"y":-107},{"x":-51,"y":-161},{"x":-185,"y":-55},{"x":5,"y":-73},{"x":-59,"y":-95},{"x":49,"y":-231},{"x":257,"y":-159},{"x":-24,"y":-66},{"x":22,"y":-116},{"x":124,"y":-43},{"x":44,"y":-63},{"x":-4,"y":-56},{"x":54,"y":11},{"x":54,"y":-32},{"x":-6,"y":-33},{"x":-75,"y":-38},{"x":-64,"y":-75},{"x":13,"y":-61},{"x":-46,"y":-99},{"x":-42,"y":-27},{"x":-2,"y":-65},{"x":28,"y":-29},{"x":-58,"y":-84},{"x":25,"y":-36},{"x":-34,"y":-62}],"type":"admin"},{"arc":[{"x":173519,"y":176375},{"x":95,"y":-150},{"x":93,"y":10},{"x":27,"y":-57},{"x":99,"y":-63},{"x":63,"y":15},{"x":116,"y":-98},{"x":103,"y":29},{"x":114,"y":-44},{"x":19,"y":-83},{"x":68,"y":-93},{"x":82,"y":-37}],"type":"admin"},{"arc":[{"x":174398,"y":175804},{"x":52,"y":20},{"x":145,"y":-44},{"x":115,"y":6},{"x":48,"y":27},{"x":56,"y":-18},{"x":70,"y":24},{"x":104,"y":111}],"type":"admin"},{"arc":[{"x":174988,"y":175930},{"x":34,"y":91},{"x":76,"y":39},{"x":27,"y":175},{"x":42,"y":35},{"x":85,"y":-28},{"x":-15,"y":115},{"x":53,"y":72},{"x":-17,"y":73},{"x":43,"y":79},{"x":97,"y":25},{"x":80,"y":78},{"x":69,"y":125},{"x":75,"y":-19},{"x":30,"y":14},{"x":48,"y":-27},{"x":104,"y":29},{"x":25,"y":49},{"x":-40,"y":134},{"x":101,"y":60},{"x":5,"y":-62},{"x":96,"y":4},{"x":124,"y":100},{"x":85,"y":129},{"x":55,"y":4},{"x":-27,"y":59},{"x":27,"y":13},{"x":-18,"y":30},{"x":31,"y":81},{"x":-33,"y":18},{"x":0,"y":70},{"x":-35,"y":-5},{"x":-27,"y":33},{"x":68,"y":40},{"x":5,"y":42}],"type":"admin"},{"arc":[{"x":176261,"y":177605},{"x":-21,"y":71},{"x":135,"y":52},{"x":40,"y":54},{"x":-34,"y":36},{"x":-115,"y":-56},{"x":-20,"y":15},{"x":-56,"y":-23},{"x":-58,"y":-45},{"x":7,"y":67},{"x":108,"y":103},{"x":49,"y":-5},{"x":11,"y":107},{"x":-83,"y":-32},{"x":-47,"y":11},{"x":24,"y":52},{"x":-48,"y":-7},{"x":-46,"y":44},{"x":-5,"y":60},{"x":-104,"y":21},{"x":-9,"y":36},{"x":-16,"y":-20},{"x":-21,"y":29},{"x":-34,"y":-27},{"x":-61,"y":24},{"x":-75,"y":-7},{"x":13,"y":44},{"x":-45,"y":95},{"x":45,"y":39},{"x":-11,"y":98},{"x":-26,"y":-66},{"x":-33,"y":13},{"x":-24,"y":-33},{"x":-77,"y":67},{"x":-86,"y":-29},{"x":-133,"y":81},{"x":-104,"y":-28},{"x":-24,"y":105},{"x":24,"y":28},{"x":-31,"y":14},{"x":-11,"y":55},{"x":102,"y":131},{"x":35,"y":11},{"x":20,"y":-29},{"x":28,"y":5},{"x":77,"y":75},{"x":29,"y":77},{"x":-38,"y":83},{"x":45,"y":41},{"x":38,"y":128},{"x":-66,"y":44}],"type":"admin"},{"arc":[{"x":185668,"y":179010},{"x":-7,"y":17},{"x":-22,"y":-15},{"x":29,"y":-2}],"type":"admin"},{"arc":[{"x":187948,"y":181563},{"x":-232,"y":-98},{"x":-141,"y":26},{"x":-84,"y":-18},{"x":-52,"y":-102},{"x":-169,"y":-168},{"x":-41,"y":-93},{"x":-57,"y":-34},{"x":-66,"y":23},{"x":-31,"y":-75},{"x":-112,"y":-59},{"x":-20,"y":-73},{"x":-213,"y":-112},{"x":-94,"y":69},{"x":-128,"y":-22},{"x":-87,"y":-48},{"x":-14,"y":-53},{"x":-123,"y":-76},{"x":-150,"y":-162},{"x":-49,"y":-10}],"type":"admin"},{"arc":[{"x":186085,"y":180478},{"x":-70,"y":-45},{"x":15,"y":-158},{"x":-30,"y":-74},{"x":-141,"y":-57},{"x":-67,"y":-73},{"x":-76,"y":-237},{"x":-70,"y":-48},{"x":-27,"y":-90},{"x":-75,"y":-8},{"x":-57,"y":-86},{"x":-61,"y":-20},{"x":62,"y":-136},{"x":-74,"y":-87},{"x":23,"y":-143},{"x":-30,"y":-65}],"type":"admin"},{"arc":[{"x":185407,"y":179151},{"x":97,"y":-38},{"x":9,"y":64},{"x":103,"y":-30},{"x":15,"y":-47},{"x":22,"y":95},{"x":22,"y":-5},{"x":-14,"y":-119},{"x":49,"y":-81},{"x":-33,"y":-36},{"x":50,"y":-127},{"x":-60,"y":-188},{"x":-80,"y":-70},{"x":35,"y":-69}],"type":"admin"},{"arc":[{"x":185622,"y":178500},{"x":24,"y":-34},{"x":66,"y":-16},{"x":39,"y":92},{"x":26,"y":-22},{"x":40,"y":40},{"x":81,"y":-12},{"x":21,"y":39},{"x":8,"y":-19},{"x":45,"y":36},{"x":84,"y":-30},{"x":-5,"y":-61},{"x":99,"y":-2},{"x":24,"y":92},{"x":82,"y":80}],"type":"admin"},{"arc":[{"x":186256,"y":178683},{"x":37,"y":44},{"x":-38,"y":84},{"x":51,"y":23},{"x":17,"y":82},{"x":-50,"y":86},{"x":44,"y":83},{"x":30,"y":-17},{"x":-1,"y":79},{"x":56,"y":88},{"x":47,"y":-34},{"x":45,"y":87},{"x":-9,"y":-20},{"x":81,"y":-36},{"x":-18,"y":-38},{"x":26,"y":-19},{"x":-49,"y":-55},{"x":2,"y":-42},{"x":41,"y":85},{"x":50,"y":0},{"x":16,"y":57},{"x":79,"y":21},{"x":-15,"y":19},{"x":53,"y":89},{"x":24,"y":1},{"x":25,"y":76},{"x":1,"y":-36},{"x":35,"y":54},{"x":63,"y":-20},{"x":31,"y":125},{"x":63,"y":34},{"x":14,"y":-28},{"x":-1,"y":140},{"x":40,"y":-34},{"x":-11,"y":30},{"x":88,"y":-5},{"x":2,"y":-106},{"x":67,"y":-4},{"x":-3,"y":-100},{"x":23,"y":-2}],"type":"admin"},{"arc":[{"x":187212,"y":179474},{"x":43,"y":-3},{"x":1,"y":46},{"x":56,"y":-24}],"type":"admin"},{"arc":[{"x":187312,"y":179493},{"x":-23,"y":81},{"x":16,"y":53},{"x":-37,"y":74},{"x":40,"y":-13},{"x":-18,"y":53},{"x":45,"y":75},{"x":-87,"y":293},{"x":27,"y":148},{"x":-31,"y":102},{"x":94,"y":180},{"x":66,"y":23},{"x":27,"y":60},{"x":101,"y":15},{"x":-30,"y":90},{"x":36,"y":72},{"x":-29,"y":66},{"x":74,"y":122},{"x":103,"y":47},{"x":74,"y":105},{"x":47,"y":127},{"x":49,"y":20},{"x":138,"y":194},{"x":-6,"y":62}],"type":"admin"},{"arc":[{"x":185746,"y":179031},{"x":-26,"y":-1},{"x":13,"y":47},{"x":13,"y":-46}],"type":"admin"},{"arc":[{"x":180989,"y":178714},{"x":-42,"y":-13},{"x":25,"y":-34},{"x":17,"y":47}],"type":"admin"},{"arc":[{"x":183317,"y":178604},{"x":-2,"y":24},{"x":-63,"y":9},{"x":-61,"y":71},{"x":-47,"y":86},{"x":5,"y":76},{"x":-40,"y":32},{"x":-112,"y":35},{"x":-61,"y":-8},{"x":-45,"y":48},{"x":-86,"y":23},{"x":-24,"y":-19},{"x":-134,"y":17},{"x":-82,"y":45},{"x":-19,"y":40}],"type":"area"},{"arc":[{"x":182546,"y":179083},{"x":-50,"y":19},{"x":-44,"y":73},{"x":-89,"y":-17},{"x":-84,"y":-76},{"x":-118,"y":10},{"x":-139,"y":60},{"x":-55,"y":-7},{"x":-24,"y":51},{"x":-118,"y":63},{"x":-61,"y":-34},{"x":26,"y":159},{"x":-47,"y":11},{"x":2,"y":34},{"x":-47,"y":0},{"x":-6,"y":27},{"x":-128,"y":-7},{"x":-67,"y":116},{"x":-77,"y":56},{"x":-31,"y":137},{"x":-68,"y":23}],"type":"admin"},{"arc":[{"x":181321,"y":179781},{"x":-129,"y":-45},{"x":-75,"y":-86},{"x":-68,"y":-25},{"x":-69,"y":34},{"x":-38,"y":-34}],"type":"area"},{"arc":[{"x":180942,"y":179625},{"x":68,"y":-5},{"x":45,"y":-135},{"x":-115,"y":-13},{"x":-21,"y":-23},{"x":22,"y":-24},{"x":-39,"y":-46},{"x":40,"y":-129},{"x":54,"y":-15},{"x":65,"y":33},{"x":61,"y":-42},{"x":0,"y":-43},{"x":-64,"y":-18}],"type":"admin"},{"arc":[{"x":181058,"y":179165},{"x":-9,"y":-7}],"type":"coastline"},{"arc":[{"x":181049,"y":179158},{"x":-25,"y":-23},{"x":28,"y":-25},{"x":-56,"y":-77},{"x":-8,"y":-111},{"x":-87,"y":-166}],"type":"admin"},{"arc":[{"x":180901,"y":178756},{"x":45,"y":-15},{"x":22,"y":25},{"x":120,"y":21},{"x":128,"y":-61},{"x":31,"y":-65},{"x":92,"y":-40},{"x":93,"y":47},{"x":-38,"y":45},{"x":88,"y":-6},{"x":62,"y":-106},{"x":-23,"y":-177},{"x":60,"y":-86},{"x":49,"y":-11}],"type":"admin"},{"arc":[{"x":181630,"y":178327},{"x":14,"y":54},{"x":37,"y":18},{"x":-27,"y":80},{"x":23,"y":97},{"x":33,"y":-1},{"x":5,"y":-50},{"x":60,"y":-76},{"x":283,"y":81},{"x":35,"y":-43},{"x":-20,"y":-54},{"x":47,"y":-9},{"x":36,"y":-54},{"x":97,"y":8},{"x":155,"y":-64},{"x":124,"y":25},{"x":60,"y":64},{"x":178,"y":-105},{"x":1,"y":-26},{"x":29,"y":8},{"x":90,"y":-60},{"x":141,"y":-181},{"x":46,"y":-24}],"type":"admin"},{"arc":[{"x":183077,"y":178015},{"x":46,"y":-2},{"x":61,"y":74},{"x":112,"y":48},{"x":-15,"y":46},{"x":69,"y":117},{"x":-41,"y":17},{"x":-8,"y":37},{"x":16,"y":252}],"type":"admin"},{"arc":[{"x":181404,"y":178909},{"x":2,"y":44},{"x":-54,"y":-39},{"x":48,"y":13},{"x":-1,"y":-25},{"x":-30,"y":-2},{"x":16,"y":-31},{"x":-40,"y":29},{"x":-22,"y":-29},{"x":9,"y":110},{"x":43,"y":6},{"x":4,"y":-31},{"x":75,"y":8},{"x":-50,"y":-53}],"type":"admin"},{"arc":[{"x":181319,"y":178826},{"x":10,"y":23},{"x":42,"y":-34},{"x":5,"y":-49},{"x":-57,"y":60}],"type":"admin"},{"arc":[{"x":181313,"y":178794},{"x":31,"y":-23},{"x":-54,"y":27},{"x":-25,"y":56},{"x":48,"y":-60}],"type":"admin"},{"arc":[{"x":181364,"y":178764},{"x":25,"y":-42},{"x":-42,"y":27},{"x":17,"y":15}],"type":"admin"},{"arc":[{"x":177283,"y":179317},{"x":41,"y":-84},{"x":163,"y":-78},{"x":42,"y":-88},{"x":75,"y":-51},{"x":12,"y":-149}],"type":"admin"},{"arc":[{"x":177616,"y":178867},{"x":68,"y":43},{"x":84,"y":1},{"x":57,"y":-264},{"x":84,"y":-27},{"x":60,"y":10},{"x":105,"y":-203},{"x":-13,"y":-27},{"x":47,"y":20},{"x":97,"y":-74},{"x":72,"y":1},{"x":-3,"y":45},{"x":35,"y":-3},{"x":-57,"y":77},{"x":36,"y":15},{"x":20,"y":104},{"x":68,"y":39},{"x":106,"y":-80},{"x":75,"y":35},{"x":60,"y":-19},{"x":39,"y":25},{"x":57,"y":-83},{"x":160,"y":43},{"x":41,"y":-60},{"x":40,"y":15},{"x":18,"y":-45},{"x":257,"y":-7},{"x":160,"y":-77}],"type":"area"},{"arc":[{"x":183775,"y":180626},{"x":2,"y":44},{"x":-39,"y":41},{"x":-113,"y":2},{"x":-67,"y":58},{"x":35,"y":34},{"x":81,"y":-7},{"x":-33,"y":91},{"x":34,"y":65},{"x":-264,"y":22},{"x":-208,"y":-76},{"x":-50,"y":43},{"x":-45,"y":2},{"x":-66,"y":96},{"x":-45,"y":16},{"x":32,"y":61},{"x":-92,"y":106},{"x":-77,"y":25},{"x":-76,"y":-36},{"x":-46,"y":10}],"type":"area"},{"arc":[{"x":182738,"y":181223},{"x":-4,"y":-142},{"x":-44,"y":-47},{"x":-118,"y":-42},{"x":-66,"y":-122},{"x":21,"y":-60},{"x":-39,"y":-11},{"x":11,"y":-321},{"x":15,"y":-72},{"x":33,"y":0},{"x":-21,"y":-234},{"x":43,"y":-5},{"x":-37,"y":-21},{"x":-3,"y":-40},{"x":41,"y":-29},{"x":-7,"y":-36},{"x":-37,"y":-27},{"x":-67,"y":2},{"x":27,"y":-32},{"x":-48,"y":-7},{"x":-42,"y":54},{"x":88,"y":92},{"x":-9,"y":34},{"x":-42,"y":12},{"x":-98,"y":-141}],"type":"area"},{"arc":[{"x":182335,"y":180028},{"x":27,"y":-6},{"x":-24,"y":-24},{"x":27,"y":-105},{"x":-30,"y":-39},{"x":38,"y":-75},{"x":20,"y":-163},{"x":42,"y":-39},{"x":33,"y":10},{"x":-22,"y":-63},{"x":57,"y":-68},{"x":56,"y":-184},{"x":-13,"y":-189}],"type":"admin"},{"arc":[{"x":183317,"y":178604},{"x":9,"y":26},{"x":151,"y":72},{"x":68,"y":186},{"x":66,"y":2},{"x":32,"y":26},{"x":53,"y":-9},{"x":69,"y":38}],"type":"admin"},{"arc":[{"x":183765,"y":178945},{"x":19,"y":54}],"type":"admin"},{"arc":[{"x":183784,"y":178999},{"x":32,"y":128},{"x":-46,"y":64},{"x":-22,"y":140},{"x":134,"y":143},{"x":-37,"y":51},{"x":54,"y":76},{"x":-34,"y":55},{"x":33,"y":43},{"x":-82,"y":50},{"x":-46,"y":72},{"x":-71,"y":26},{"x":-79,"y":202},{"x":-67,"y":-4},{"x":49,"y":63},{"x":-54,"y":83},{"x":11,"y":54},{"x":-110,"y":31},{"x":43,"y":9},{"x":-27,"y":80},{"x":227,"y":63},{"x":94,"y":50},{"x":-49,"y":46},{"x":38,"y":102}],"type":"admin"},{"arc":[{"x":179690,"y":175590},{"x":-157,"y":161},{"x":-44,"y":124},{"x":-46,"y":5},{"x":-50,"y":-40},{"x":-26,"y":46},{"x":-153,"y":-47},{"x":-64,"y":205},{"x":-65,"y":-27},{"x":-65,"y":50},{"x":-25,"y":60},{"x":-20,"y":-15},{"x":-61,"y":29},{"x":-9,"y":47},{"x":-59,"y":32}],"type":"admin"},{"arc":[{"x":178846,"y":176220},{"x":2,"y":154},{"x":-71,"y":246},{"x":-191,"y":252},{"x":-52,"y":120},{"x":-124,"y":-17},{"x":-106,"y":184},{"x":-7,"y":85},{"x":-62,"y":58},{"x":-33,"y":-3},{"x":30,"y":37},{"x":-29,"y":48},{"x":102,"y":42},{"x":19,"y":36},{"x":-118,"y":127}],"type":"admin"},{"arc":[{"x":178206,"y":177589},{"x":-47,"y":-55},{"x":-50,"y":24},{"x":-83,"y":-8},{"x":-29,"y":26},{"x":-132,"y":-84},{"x":-34,"y":19},{"x":-25,"y":-61},{"x":-86,"y":3},{"x":-89,"y":-84},{"x":-58,"y":0},{"x":-176,"y":-187}],"type":"area"},{"arc":[{"x":177397,"y":177182},{"x":13,"y":-63},{"x":-105,"y":-52},{"x":-1,"y":-33},{"x":-78,"y":9},{"x":-25,"y":-17},{"x":7,"y":-123},{"x":-25,"y":4},{"x":-86,"y":-117},{"x":13,"y":-31}],"type":"admin"},{"arc":[{"x":177110,"y":176759},{"x":31,"y":-16},{"x":-11,"y":-33},{"x":18,"y":15},{"x":95,"y":-58},{"x":214,"y":34},{"x":18,"y":-103},{"x":100,"y":15},{"x":27,"y":-43},{"x":7,"y":-84},{"x":123,"y":-195},{"x":-45,"y":-89},{"x":-16,"y":-292},{"x":102,"y":-62},{"x":63,"y":-99},{"x":9,"y":-21},{"x":-44,"y":-28},{"x":53,"y":-40},{"x":-4,"y":-72},{"x":-34,"y":-29},{"x":17,"y":-69},{"x":82,"y":-31},{"x":14,"y":-56}],"type":"admin"},{"arc":[{"x":177929,"y":175403},{"x":69,"y":-35},{"x":114,"y":-9},{"x":134,"y":-74},{"x":58,"y":1},{"x":39,"y":46},{"x":106,"y":49},{"x":61,"y":-38},{"x":21,"y":-80},{"x":39,"y":-31},{"x":53,"y":25},{"x":86,"y":-55},{"x":96,"y":12},{"x":26,"y":-18},{"x":151,"y":43},{"x":116,"y":-55},{"x":168,"y":146},{"x":47,"y":79},{"x":70,"y":7},{"x":40,"y":30},{"x":122,"y":-6},{"x":134,"y":99},{"x":11,"y":51}],"type":"admin"},{"arc":[{"x":180893,"y":179680},{"x":49,"y":-55}],"type":"admin"},{"arc":[{"x":181321,"y":179781},{"x":97,"y":38},{"x":22,"y":78},{"x":59,"y":4},{"x":42,"y":-49},{"x":96,"y":47}],"type":"admin"},{"arc":[{"x":181637,"y":179899},{"x":-49,"y":165},{"x":66,"y":184},{"x":-65,"y":67},{"x":-17,"y":297},{"x":18,"y":33},{"x":31,"y":-2},{"x":6,"y":117},{"x":40,"y":20},{"x":23,"y":59},{"x":-6,"y":126},{"x":-87,"y":-49},{"x":-44,"y":107},{"x":-86,"y":69},{"x":-10,"y":77},{"x":-213,"y":151},{"x":-14,"y":83},{"x":-81,"y":81},{"x":-34,"y":83},{"x":-72,"y":47},{"x":20,"y":89},{"x":-37,"y":73}],"type":"area"},{"arc":[{"x":181637,"y":179899},{"x":43,"y":12},{"x":-14,"y":18},{"x":39,"y":51},{"x":77,"y":-1},{"x":18,"y":-49},{"x":136,"y":14},{"x":-40,"y":-57},{"x":22,"y":-53},{"x":31,"y":8},{"x":13,"y":161},{"x":37,"y":23},{"x":78,"y":-69},{"x":61,"y":-6},{"x":26,"y":22},{"x":83,"y":-27},{"x":57,"y":95},{"x":31,"y":-13}],"type":"admin"},{"arc":[{"x":182738,"y":181223},{"x":-66,"y":48},{"x":-11,"y":77},{"x":64,"y":128},{"x":-39,"y":308},{"x":-39,"y":34},{"x":-65,"y":-25},{"x":-35,"y":50},{"x":-46,"y":3},{"x":-142,"y":83},{"x":44,"y":101},{"x":-34,"y":68},{"x":17,"y":89},{"x":-88,"y":42},{"x":-30,"y":86},{"x":47,"y":81},{"x":-20,"y":35},{"x":-67,"y":24},{"x":-10,"y":52},{"x":-72,"y":6}],"type":"area"},{"arc":[{"x":183775,"y":180626},{"x":84,"y":-1},{"x":20,"y":-38},{"x":0,"y":29},{"x":23,"y":-28},{"x":124,"y":23},{"x":-22,"y":-58},{"x":35,"y":-32},{"x":-11,"y":-95},{"x":137,"y":-89},{"x":-21,"y":34},{"x":24,"y":19},{"x":84,"y":-6},{"x":20,"y":-56},{"x":57,"y":46},{"x":64,"y":-36},{"x":76,"y":51},{"x":44,"y":1},{"x":24,"y":-40},{"x":-25,"y":-43},{"x":152,"y":-66},{"x":20,"y":-66},{"x":-30,"y":-25},{"x":43,"y":-117},{"x":38,"y":54},{"x":65,"y":23},{"x":-15,"y":-121},{"x":-38,"y":-46},{"x":54,"y":-128},{"x":-45,"y":-29},{"x":28,"y":-38},{"x":-18,"y":-33}],"type":"admin"},{"arc":[{"x":184766,"y":179715},{"x":53,"y":30},{"x":153,"y":17},{"x":181,"y":-76},{"x":47,"y":44},{"x":-40,"y":86},{"x":8,"y":54},{"x":50,"y":136},{"x":74,"y":85},{"x":-58,"y":229},{"x":122,"y":92},{"x":22,"y":80},{"x":51,"y":14},{"x":31,"y":46},{"x":32,"y":178},{"x":-66,"y":59},{"x":1,"y":39},{"x":57,"y":19},{"x":66,"y":114},{"x":48,"y":23},{"x":27,"y":46},{"x":-16,"y":32},{"x":79,"y":88},{"x":12,"y":55}],"type":"admin"},{"arc":[{"x":185700,"y":181205},{"x":-110,"y":17},{"x":-56,"y":38},{"x":-73,"y":-8},{"x":12,"y":78},{"x":-77,"y":-5},{"x":-32,"y":33},{"x":12,"y":92},{"x":-51,"y":81},{"x":72,"y":40},{"x":10,"y":74},{"x":-97,"y":96},{"x":3,"y":74},{"x":42,"y":19},{"x":0,"y":43},{"x":-76,"y":57},{"x":-34,"y":95},{"x":-136,"y":72},{"x":-46,"y":8},{"x":-31,"y":-22},{"x":-93,"y":43},{"x":-64,"y":-64},{"x":-20,"y":29},{"x":-62,"y":8}],"type":"admin"},{"arc":[{"x":177616,"y":178867},{"x":-92,"y":-181},{"x":-91,"y":-83},{"x":-97,"y":-11},{"x":-69,"y":-85},{"x":-53,"y":6},{"x":-50,"y":123},{"x":-45,"y":12},{"x":-38,"y":-158},{"x":-33,"y":-27},{"x":45,"y":-141},{"x":-111,"y":-129},{"x":-82,"y":-25},{"x":-31,"y":-77},{"x":-51,"y":-16},{"x":17,"y":-102},{"x":42,"y":-6},{"x":-17,"y":-60},{"x":37,"y":-65},{"x":-31,"y":-42}],"type":"admin"},{"arc":[{"x":176866,"y":177800},{"x":-4,"y":-14}],"type":"coastline"},{"arc":[{"x":176862,"y":177786},{"x":0,"y":-29}],"type":"admin"},{"arc":[{"x":176862,"y":177757},{"x":53,"y":-64},{"x":-25,"y":-11},{"x":-38,"y":47},{"x":-15,"y":-19},{"x":25,"y":-42},{"x":65,"y":-24},{"x":-33,"y":-69},{"x":52,"y":5},{"x":5,"y":-22},{"x":37,"y":49},{"x":43,"y":-16},{"x":-43,"y":-26},{"x":-8,"y":-76},{"x":46,"y":-5},{"x":20,"y":42},{"x":-20,"y":12},{"x":53,"y":9},{"x":34,"y":-18},{"x":-25,"y":-88},{"x":62,"y":45},{"x":16,"y":-48},{"x":40,"y":-14},{"x":1,"y":-34},{"x":-40,"y":9},{"x":10,"y":-58},{"x":-27,"y":-40},{"x":11,"y":-41},{"x":-3,"y":35},{"x":46,"y":2},{"x":-9,"y":-67},{"x":56,"y":-16},{"x":22,"y":-37},{"x":99,"y":26},{"x":25,"y":-21}],"type":"admin"},{"arc":[{"x":178206,"y":177589},{"x":1,"y":55},{"x":84,"y":39},{"x":14,"y":106},{"x":124,"y":-29},{"x":71,"y":64},{"x":89,"y":18},{"x":90,"y":55},{"x":48,"y":65},{"x":81,"y":-14},{"x":62,"y":53},{"x":109,"y":34},{"x":11,"y":55},{"x":70,"y":-3},{"x":109,"y":69},{"x":174,"y":41},{"x":47,"y":45}],"type":"admin"},{"arc":[{"x":179390,"y":178242},{"x":-15,"y":54},{"x":23,"y":19}],"type":"admin"},{"arc":[{"x":176971,"y":177637},{"x":-26,"y":-5},{"x":0,"y":23},{"x":26,"y":-18}],"type":"admin"},{"arc":[{"x":176946,"y":177881},{"x":-3,"y":-49},{"x":-44,"y":3},{"x":47,"y":46}],"type":"admin"},{"arc":[{"x":179390,"y":178242},{"x":212,"y":-33},{"x":51,"y":-98},{"x":-10,"y":-73}],"type":"admin"},{"arc":[{"x":179643,"y":178038},{"x":116,"y":32},{"x":58,"y":-26},{"x":306,"y":146},{"x":79,"y":97},{"x":-17,"y":34},{"x":44,"y":-15},{"x":73,"y":35},{"x":-58,"y":76},{"x":34,"y":56},{"x":119,"y":-49},{"x":43,"y":37},{"x":68,"y":-53},{"x":57,"y":0},{"x":156,"y":102}],"type":"area"},{"arc":[{"x":180721,"y":178510},{"x":14,"y":53}],"type":"area"},{"arc":[{"x":180735,"y":178563},{"x":-46,"y":53},{"x":-78,"y":30},{"x":-41,"y":81},{"x":-122,"y":82},{"x":66,"y":256},{"x":72,"y":142},{"x":19,"y":138},{"x":-89,"y":20},{"x":9,"y":25}],"type":"area"},{"arc":[{"x":180735,"y":178563},{"x":71,"y":51},{"x":-67,"y":99},{"x":162,"y":43}],"type":"area"},{"arc":[{"x":181049,"y":179158},{"x":9,"y":7}],"type":"coastline"},{"arc":[{"x":183313,"y":176822},{"x":-186,"y":34},{"x":-12,"y":-36},{"x":-81,"y":19},{"x":-66,"y":-25},{"x":-16,"y":38},{"x":-62,"y":32},{"x":-38,"y":89},{"x":17,"y":60},{"x":29,"y":8},{"x":3,"y":63},{"x":55,"y":36},{"x":6,"y":83},{"x":73,"y":49},{"x":23,"y":77},{"x":-49,"y":102},{"x":-180,"y":174},{"x":-10,"y":92},{"x":42,"y":44},{"x":50,"y":-36},{"x":41,"y":20},{"x":59,"y":177},{"x":66,"y":93}],"type":"area"},{"arc":[{"x":181630,"y":178327},{"x":27,"y":-82},{"x":-17,"y":-74},{"x":36,"y":-40},{"x":-19,"y":-124},{"x":26,"y":-70},{"x":48,"y":-33},{"x":-62,"y":-83},{"x":13,"y":-120},{"x":-28,"y":-43},{"x":70,"y":-113},{"x":-8,"y":-169},{"x":-172,"y":-228},{"x":-102,"y":-2},{"x":-50,"y":-50},{"x":66,"y":-141},{"x":69,"y":-28},{"x":94,"y":-109},{"x":74,"y":-125},{"x":-12,"y":-37},{"x":-42,"y":-21},{"x":-9,"y":-43},{"x":-138,"y":-12},{"x":-31,"y":-29},{"x":-32,"y":13},{"x":-50,"y":-57},{"x":-75,"y":66},{"x":-57,"y":-31},{"x":-48,"y":27},{"x":-182,"y":-48},{"x":-202,"y":31},{"x":-64,"y":-123},{"x":35,"y":-52},{"x":-41,"y":-7},{"x":-18,"y":-39},{"x":-94,"y":-15},{"x":-87,"y":-151},{"x":8,"y":-115},{"x":-42,"y":11},{"x":-50,"y":-78},{"x":-90,"y":-36},{"x":-90,"y":5},{"x":-116,"y":-61},{"x":-137,"y":-7}],"type":"area"},{"arc":[{"x":180031,"y":175884},{"x":-86,"y":-204},{"x":-47,"y":-40}],"type":"area"},{"arc":[{"x":179898,"y":175640},{"x":123,"y":-104},{"x":41,"y":-119}],"type":"admin"},{"arc":[{"x":180062,"y":175417},{"x":28,"y":-19},{"x":191,"y":9},{"x":99,"y":-107},{"x":32,"y":-95},{"x":168,"y":-47}],"type":"admin"},{"arc":[{"x":183491,"y":176723},{"x":-178,"y":99}],"type":"admin"},{"arc":[{"x":179643,"y":178038},{"x":29,"y":-101},{"x":27,"y":-4},{"x":-31,"y":79},{"x":148,"y":-108},{"x":-35,"y":-40},{"x":43,"y":-97},{"x":-115,"y":-132},{"x":43,"y":-88},{"x":-128,"y":-163},{"x":38,"y":-36},{"x":74,"y":-2},{"x":138,"y":-121},{"x":102,"y":-33},{"x":-106,"y":-180},{"x":-203,"y":-121},{"x":40,"y":-136},{"x":-49,"y":-71},{"x":-10,"y":-102},{"x":-187,"y":-57},{"x":-67,"y":-83},{"x":-218,"y":-50},{"x":-83,"y":-55},{"x":-88,"y":60},{"x":-51,"y":-14},{"x":-28,"y":-57},{"x":-47,"y":-13},{"x":14,"y":-49},{"x":-47,"y":-44}],"type":"admin"},{"arc":[{"x":179690,"y":175590},{"x":95,"y":-2},{"x":86,"y":61},{"x":27,"y":-9}],"type":"admin"},{"arc":[{"x":180031,"y":175884},{"x":-58,"y":129},{"x":46,"y":141},{"x":198,"y":93},{"x":78,"y":185},{"x":87,"y":65},{"x":9,"y":40},{"x":52,"y":-7},{"x":71,"y":68},{"x":33,"y":-11},{"x":3,"y":68},{"x":-46,"y":33},{"x":-85,"y":8},{"x":-64,"y":58},{"x":96,"y":155},{"x":106,"y":32},{"x":8,"y":49},{"x":56,"y":19},{"x":19,"y":37},{"x":23,"y":121},{"x":-54,"y":34},{"x":-48,"y":81},{"x":24,"y":57},{"x":116,"y":27},{"x":115,"y":105},{"x":63,"y":-3},{"x":3,"y":59},{"x":130,"y":50},{"x":-27,"y":76},{"x":70,"y":184},{"x":-20,"y":97},{"x":128,"y":93},{"x":-55,"y":77},{"x":-12,"y":116},{"x":38,"y":34},{"x":-50,"y":6},{"x":-50,"y":48},{"x":11,"y":196},{"x":-53,"y":0},{"x":-46,"y":-127},{"x":-100,"y":22},{"x":-160,"y":-66},{"x":-11,"y":27},{"x":57,"y":109},{"x":-11,"y":41}],"type":"area"},{"arc":[{"x":183784,"y":178999},{"x":41,"y":13},{"x":18,"y":75},{"x":63,"y":18},{"x":65,"y":92},{"x":235,"y":108},{"x":38,"y":130},{"x":110,"y":145},{"x":324,"y":-32},{"x":29,"y":97},{"x":59,"y":70}],"type":"area"},{"arc":[{"x":187312,"y":179493},{"x":91,"y":-3},{"x":58,"y":-42},{"x":41,"y":87},{"x":88,"y":-140},{"x":59,"y":-34},{"x":96,"y":41},{"x":95,"y":-4},{"x":-19,"y":-46},{"x":61,"y":92},{"x":48,"y":22},{"x":62,"y":-10},{"x":73,"y":55},{"x":33,"y":2},{"x":10,"y":-37},{"x":99,"y":-48},{"x":181,"y":33},{"x":83,"y":110},{"x":150,"y":119},{"x":65,"y":140},{"x":-18,"y":176},{"x":108,"y":141},{"x":5,"y":112},{"x":-101,"y":159},{"x":20,"y":101},{"x":-106,"y":103},{"x":26,"y":59},{"x":-45,"y":84},{"x":-74,"y":5},{"x":-23,"y":51},{"x":-76,"y":18},{"x":-23,"y":42},{"x":88,"y":88},{"x":70,"y":131}],"type":"area"},{"arc":[{"x":187532,"y":179600},{"x":-27,"y":-18},{"x":51,"y":28},{"x":-24,"y":-10}],"type":"area"},{"arc":[{"x":185700,"y":181205},{"x":131,"y":-93},{"x":58,"y":9},{"x":34,"y":-23},{"x":-17,"y":-101},{"x":46,"y":-42},{"x":-20,"y":-92},{"x":33,"y":-56},{"x":-15,"y":-160},{"x":55,"y":-108},{"x":80,"y":-61}],"type":"area"},{"arc":[{"x":183765,"y":178945},{"x":143,"y":20},{"x":66,"y":-52},{"x":58,"y":-11},{"x":58,"y":24},{"x":55,"y":121},{"x":104,"y":41},{"x":173,"y":-52},{"x":71,"y":-147},{"x":91,"y":-24},{"x":75,"y":59},{"x":2,"y":44},{"x":102,"y":55},{"x":60,"y":92},{"x":146,"y":-98},{"x":73,"y":58},{"x":97,"y":-34},{"x":118,"y":135},{"x":32,"y":-21},{"x":-18,"y":-17},{"x":75,"y":-31},{"x":50,"y":-5},{"x":11,"y":49}],"type":"area"},{"arc":[{"x":189992,"y":178464},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":189987,"y":178523},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":189878,"y":178564},{"x":-16,"y":-1}],"type":"coastline"},{"arc":[{"x":189666,"y":178548},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":189661,"y":178606},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":189642,"y":178645},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":189595,"y":178926},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":189616,"y":178988},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":189612,"y":179080},{"x":12,"y":10}],"type":"coastline"},{"arc":[{"x":189632,"y":179100},{"x":14,"y":11}],"type":"coastline"},{"arc":[{"x":189647,"y":179114},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":189612,"y":179318},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":189600,"y":179350},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":189542,"y":179459},{"x":-10,"y":6}],"type":"coastline"},{"arc":[{"x":189471,"y":179492},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":189457,"y":179507},{"x":2,"y":17}],"type":"coastline"},{"arc":[{"x":189415,"y":179598},{"x":-7,"y":30}],"type":"coastline"},{"arc":[{"x":189596,"y":179744},{"x":23,"y":3}],"type":"coastline"},{"arc":[{"x":189619,"y":179747},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":189664,"y":179842},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":187212,"y":179474},{"x":-12,"y":-105},{"x":-49,"y":51},{"x":21,"y":-80},{"x":-49,"y":-21},{"x":-12,"y":-45},{"x":5,"y":-127},{"x":93,"y":38},{"x":18,"y":-33},{"x":-31,"y":-214},{"x":-37,"y":-50},{"x":55,"y":-5},{"x":116,"y":-76},{"x":50,"y":-70},{"x":154,"y":-88},{"x":44,"y":-63},{"x":-27,"y":-58},{"x":51,"y":-144},{"x":-29,"y":-46},{"x":22,"y":-68},{"x":-42,"y":-199},{"x":83,"y":-174},{"x":-12,"y":-197}],"type":"area"},{"arc":[{"x":189858,"y":178085},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":189879,"y":178194},{"x":-2,"y":13}],"type":"coastline"},{"arc":[{"x":189947,"y":178257},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":189951,"y":178261},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":190000,"y":178402},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":190002,"y":178426},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":190000,"y":178434},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":183313,"y":176822},{"x":-66,"y":80},{"x":10,"y":112},{"x":57,"y":29},{"x":92,"y":169},{"x":74,"y":51},{"x":65,"y":-15},{"x":63,"y":65},{"x":14,"y":145},{"x":58,"y":20},{"x":72,"y":-13},{"x":67,"y":100},{"x":66,"y":22},{"x":2,"y":77},{"x":64,"y":-50},{"x":74,"y":-5},{"x":155,"y":-71},{"x":31,"y":25},{"x":49,"y":-10},{"x":16,"y":27},{"x":31,"y":-6},{"x":17,"y":32},{"x":41,"y":-6}],"type":"admin"},{"arc":[{"x":184365,"y":177600},{"x":22,"y":88},{"x":-35,"y":40},{"x":-10,"y":127},{"x":61,"y":50},{"x":91,"y":158},{"x":64,"y":-33},{"x":15,"y":140},{"x":-33,"y":113},{"x":89,"y":66},{"x":50,"y":-4},{"x":15,"y":36},{"x":125,"y":18},{"x":-13,"y":51},{"x":45,"y":56},{"x":34,"y":-47},{"x":25,"y":9},{"x":-25,"y":12},{"x":51,"y":-12},{"x":122,"y":41},{"x":74,"y":-91},{"x":320,"y":19},{"x":99,"y":73},{"x":71,"y":-10}],"type":"area"},{"arc":[{"x":186256,"y":178683},{"x":31,"y":-53},{"x":79,"y":-50},{"x":179,"y":-2},{"x":16,"y":-50},{"x":68,"y":-21},{"x":-20,"y":-169},{"x":88,"y":-50},{"x":-10,"y":-54},{"x":53,"y":-6},{"x":-22,"y":-113},{"x":22,"y":-22},{"x":24,"y":12},{"x":13,"y":90},{"x":37,"y":20},{"x":36,"y":-75},{"x":-52,"y":-64},{"x":-4,"y":-60},{"x":-76,"y":-65},{"x":85,"y":-89},{"x":5,"y":-62},{"x":151,"y":-136}],"type":"area"},{"arc":[{"x":184365,"y":177600},{"x":43,"y":-25},{"x":40,"y":-133},{"x":72,"y":-42},{"x":19,"y":-108},{"x":57,"y":-12},{"x":-4,"y":-85},{"x":90,"y":-27},{"x":-2,"y":-59},{"x":90,"y":-7},{"x":139,"y":-81},{"x":8,"y":-40},{"x":-29,"y":-30},{"x":32,"y":-50},{"x":119,"y":-16},{"x":66,"y":-53},{"x":-3,"y":-32},{"x":63,"y":-17},{"x":54,"y":110},{"x":103,"y":-21},{"x":63,"y":22},{"x":44,"y":-40},{"x":93,"y":112},{"x":236,"y":68},{"x":58,"y":-102},{"x":125,"y":-36},{"x":40,"y":22},{"x":55,"y":-51},{"x":14,"y":-62},{"x":63,"y":47},{"x":205,"y":-103},{"x":87,"y":36}],"type":"admin"},{"arc":[{"x":176277,"y":179347},{"x":-29,"y":-41},{"x":-96,"y":-49},{"x":-112,"y":12},{"x":-16,"y":39},{"x":-51,"y":19},{"x":-68,"y":-28},{"x":-73,"y":58},{"x":-28,"y":-29},{"x":-72,"y":12},{"x":-172,"y":-74},{"x":-31,"y":-52}],"type":"admin"},{"arc":[{"x":176261,"y":177605},{"x":49,"y":-7},{"x":98,"y":67},{"x":27,"y":-17},{"x":127,"y":90},{"x":82,"y":120},{"x":102,"y":-34},{"x":55,"y":32},{"x":-12,"y":-92},{"x":73,"y":-7}],"type":"area"},{"arc":[{"x":176862,"y":177786},{"x":4,"y":14}],"type":"coastline"},{"arc":[{"x":174988,"y":175930},{"x":125,"y":-107},{"x":135,"y":-5},{"x":42,"y":-33},{"x":62,"y":13},{"x":33,"y":99},{"x":192,"y":-53},{"x":36,"y":14},{"x":54,"y":-170},{"x":98,"y":-44},{"x":71,"y":23},{"x":49,"y":79},{"x":43,"y":-2},{"x":8,"y":25},{"x":-29,"y":59},{"x":5,"y":133},{"x":146,"y":-3},{"x":82,"y":47},{"x":60,"y":79},{"x":22,"y":-25},{"x":150,"y":23},{"x":36,"y":-18},{"x":110,"y":63},{"x":38,"y":-3},{"x":30,"y":82},{"x":72,"y":0},{"x":25,"y":65},{"x":-26,"y":76},{"x":50,"y":117},{"x":-23,"y":116},{"x":66,"y":113},{"x":115,"y":53},{"x":27,"y":78},{"x":218,"y":-65}],"type":"admin"},{"arc":[{"x":177929,"y":175403},{"x":-99,"y":-100},{"x":-132,"y":2},{"x":-28,"y":-26},{"x":-114,"y":76},{"x":-11,"y":64},{"x":-138,"y":108},{"x":-160,"y":-27},{"x":-69,"y":104},{"x":-116,"y":-6},{"x":-118,"y":48},{"x":-217,"y":7},{"x":-9,"y":-37},{"x":-74,"y":-23},{"x":-2,"y":-65},{"x":-78,"y":-88},{"x":-97,"y":13},{"x":-32,"y":-38},{"x":-80,"y":-14},{"x":-61,"y":-177},{"x":23,"y":-117},{"x":-32,"y":-101},{"x":22,"y":-39},{"x":-71,"y":-3},{"x":-108,"y":-52},{"x":-33,"y":27},{"x":-36,"y":-35},{"x":-51,"y":115},{"x":-62,"y":-81},{"x":-162,"y":5},{"x":-32,"y":-60},{"x":-61,"y":3},{"x":-50,"y":-28},{"x":4,"y":-94},{"x":-52,"y":-31},{"x":24,"y":-84},{"x":-62,"y":1},{"x":-98,"y":-144},{"x":-116,"y":-61},{"x":-58,"y":56},{"x":-102,"y":1},{"x":-76,"y":-222},{"x":-57,"y":-37},{"x":-12,"y":-88},{"x":-124,"y":-21},{"x":-22,"y":-73},{"x":-109,"y":-104},{"x":22,"y":-74},{"x":-192,"y":-76},{"x":-62,"y":-78},{"x":-118,"y":-50}],"type":"area"},{"arc":[{"x":174431,"y":173679},{"x":140,"y":-129},{"x":69,"y":-35},{"x":87,"y":-3},{"x":23,"y":-95},{"x":-92,"y":-95},{"x":-23,"y":-170}],"type":"admin"},{"arc":[{"x":174635,"y":173152},{"x":61,"y":-21},{"x":149,"y":-224},{"x":104,"y":-4},{"x":68,"y":-85},{"x":37,"y":-104},{"x":52,"y":-7},{"x":121,"y":-87}],"type":"admin"},{"arc":[{"x":175227,"y":172620},{"x":83,"y":26},{"x":108,"y":-56},{"x":46,"y":22},{"x":75,"y":-37}],"type":"admin"},{"arc":[{"x":175539,"y":172575},{"x":151,"y":70},{"x":56,"y":79},{"x":83,"y":0},{"x":68,"y":37},{"x":73,"y":-30},{"x":129,"y":53},{"x":55,"y":-21},{"x":38,"y":-54},{"x":122,"y":66},{"x":75,"y":-52},{"x":79,"y":58},{"x":44,"y":-13},{"x":22,"y":111},{"x":49,"y":9},{"x":30,"y":-28},{"x":146,"y":19},{"x":82,"y":-22},{"x":92,"y":46},{"x":84,"y":-21},{"x":61,"y":79},{"x":8,"y":129},{"x":32,"y":54},{"x":81,"y":21},{"x":37,"y":86},{"x":58,"y":24},{"x":101,"y":-67},{"x":72,"y":59},{"x":55,"y":-1},{"x":23,"y":-212},{"x":48,"y":28},{"x":107,"y":-16},{"x":240,"y":105},{"x":98,"y":116},{"x":38,"y":-33},{"x":199,"y":-24},{"x":178,"y":40},{"x":82,"y":-17},{"x":54,"y":-61}],"type":"admin"},{"arc":[{"x":178589,"y":173192},{"x":90,"y":9},{"x":67,"y":-34},{"x":79,"y":54},{"x":52,"y":1},{"x":42,"y":89},{"x":121,"y":22},{"x":52,"y":44},{"x":48,"y":-41},{"x":47,"y":151},{"x":-28,"y":55},{"x":18,"y":32},{"x":-62,"y":93},{"x":13,"y":86},{"x":-113,"y":165},{"x":11,"y":49},{"x":63,"y":45},{"x":-10,"y":125},{"x":-74,"y":106},{"x":73,"y":43},{"x":58,"y":105},{"x":49,"y":16},{"x":7,"y":49},{"x":57,"y":42},{"x":16,"y":86},{"x":136,"y":200},{"x":13,"y":86},{"x":82,"y":137},{"x":52,"y":39},{"x":162,"y":47},{"x":52,"y":74},{"x":121,"y":8},{"x":179,"y":242}],"type":"admin"},{"arc":[{"x":174398,"y":175804},{"x":15,"y":-49},{"x":-23,"y":-48},{"x":-64,"y":22},{"x":-17,"y":-28},{"x":-96,"y":-26},{"x":24,"y":-180},{"x":-66,"y":-89},{"x":11,"y":-101},{"x":-25,"y":-25},{"x":14,"y":-74},{"x":38,"y":-34},{"x":52,"y":2},{"x":-7,"y":-39},{"x":80,"y":-64},{"x":43,"y":-90},{"x":-152,"y":-205},{"x":11,"y":-56},{"x":-44,"y":-60},{"x":1,"y":-52},{"x":-111,"y":-120},{"x":28,"y":-60},{"x":123,"y":-8},{"x":34,"y":-90},{"x":179,"y":-122},{"x":-67,"y":-206},{"x":-58,"y":-78},{"x":-23,"y":-146},{"x":91,"y":-47},{"x":42,"y":-52}],"type":"admin"},{"arc":[{"x":187065,"y":175049},{"x":-33,"y":55}],"type":"area"},{"arc":[{"x":189037,"y":174800},{"x":851,"y":279},{"x":179,"y":35},{"x":10,"y":-52},{"x":23,"y":-10},{"x":-32,"y":59},{"x":29,"y":-3},{"x":9,"y":29},{"x":10,"y":-26},{"x":-30,"y":-24},{"x":8,"y":-17},{"x":25,"y":37},{"x":3,"y":-64},{"x":-2,"y":64},{"x":38,"y":-24},{"x":52,"y":54},{"x":55,"y":-19},{"x":178,"y":87},{"x":116,"y":-18},{"x":9,"y":-44},{"x":48,"y":2},{"x":32,"y":-45},{"x":74,"y":4}],"type":"coastline"},{"arc":[{"x":190660,"y":177088},{"x":-54,"y":6}],"type":"coastline"},{"arc":[{"x":190591,"y":177099},{"x":-27,"y":9}],"type":"coastline"},{"arc":[{"x":175326,"y":181458},{"x":-115,"y":-180},{"x":-83,"y":45},{"x":-109,"y":-81},{"x":-7,"y":-35},{"x":-44,"y":-10},{"x":-33,"y":30},{"x":-74,"y":-30},{"x":-219,"y":264},{"x":-33,"y":-24},{"x":27,"y":-85},{"x":-40,"y":-19},{"x":-44,"y":-7},{"x":-137,"y":73},{"x":3,"y":26},{"x":-38,"y":20},{"x":6,"y":95}],"type":"admin"},{"arc":[{"x":174386,"y":181540},{"x":-75,"y":-39},{"x":-76,"y":13},{"x":9,"y":-69},{"x":-24,"y":40},{"x":-21,"y":-6},{"x":-23,"y":105},{"x":48,"y":51},{"x":-25,"y":76},{"x":-62,"y":41},{"x":-6,"y":76},{"x":-41,"y":-12},{"x":3,"y":21},{"x":-55,"y":-40},{"x":-26,"y":7},{"x":-38,"y":109},{"x":-55,"y":-48},{"x":-54,"y":-11},{"x":-50,"y":23},{"x":-37,"y":-28},{"x":-55,"y":12},{"x":-48,"y":53},{"x":-102,"y":-9},{"x":-24,"y":57},{"x":16,"y":98},{"x":87,"y":98},{"x":-60,"y":39},{"x":-9,"y":53},{"x":41,"y":15},{"x":-41,"y":22},{"x":25,"y":24},{"x":-16,"y":22},{"x":-31,"y":-17},{"x":-21,"y":29},{"x":-147,"y":-102},{"x":-55,"y":-10},{"x":-66,"y":-99},{"x":-338,"y":-72},{"x":-49,"y":35}],"type":"area"},{"arc":[{"x":172885,"y":182097},{"x":-60,"y":25},{"x":-38,"y":-19},{"x":-8,"y":-61},{"x":-69,"y":-11},{"x":-62,"y":80},{"x":-52,"y":8},{"x":-3,"y":30},{"x":-27,"y":-35},{"x":-68,"y":41},{"x":-44,"y":-32},{"x":-24,"y":88},{"x":24,"y":53},{"x":-46,"y":1},{"x":-46,"y":-36},{"x":-94,"y":111},{"x":-94,"y":-80},{"x":-19,"y":-66}],"type":"admin"},{"arc":[{"x":172155,"y":182194},{"x":0,"y":-67},{"x":-98,"y":10},{"x":4,"y":-100},{"x":-35,"y":-16},{"x":-25,"y":-80},{"x":-35,"y":1},{"x":-9,"y":-24},{"x":7,"y":-41},{"x":95,"y":35},{"x":54,"y":-16},{"x":-77,"y":-89},{"x":-2,"y":-51},{"x":-76,"y":-31},{"x":8,"y":31},{"x":-24,"y":8},{"x":-81,"y":-43},{"x":-44,"y":-73},{"x":51,"y":-53},{"x":47,"y":58},{"x":85,"y":1},{"x":-29,"y":-51},{"x":35,"y":-10},{"x":3,"y":-60},{"x":-55,"y":-19},{"x":-21,"y":35},{"x":-9,"y":-22},{"x":36,"y":-83},{"x":75,"y":-36},{"x":5,"y":32},{"x":66,"y":46},{"x":19,"y":3},{"x":-14,"y":-38},{"x":35,"y":26},{"x":10,"y":-23},{"x":2,"y":-69},{"x":-41,"y":2},{"x":-15,"y":-168},{"x":31,"y":-190},{"x":-58,"y":-85},{"x":6,"y":-104},{"x":-32,"y":-99},{"x":25,"y":-87},{"x":46,"y":-42},{"x":-11,"y":-153},{"x":50,"y":-101},{"x":-54,"y":-315},{"x":42,"y":-140},{"x":-73,"y":-281},{"x":13,"y":-95},{"x":-47,"y":-33},{"x":-24,"y":-68},{"x":22,"y":-72}],"type":"area"},{"arc":[{"x":172038,"y":179354},{"x":163,"y":20},{"x":94,"y":-48},{"x":32,"y":-152},{"x":147,"y":-187},{"x":38,"y":-149},{"x":144,"y":12},{"x":70,"y":50},{"x":104,"y":-4},{"x":46,"y":-53},{"x":52,"y":-11},{"x":172,"y":0},{"x":60,"y":19},{"x":61,"y":126},{"x":54,"y":-39},{"x":57,"y":2},{"x":32,"y":-35}],"type":"admin"},{"arc":[{"x":171245,"y":175703},{"x":-5,"y":10}],"type":"admin"},{"arc":[{"x":171240,"y":175713},{"x":-4,"y":15}],"type":"coastline"},{"arc":[{"x":171236,"y":175728},{"x":-41,"y":-1},{"x":3,"y":67},{"x":-56,"y":33},{"x":-23,"y":140},{"x":-30,"y":-24},{"x":-9,"y":44},{"x":-96,"y":20},{"x":-23,"y":34},{"x":10,"y":47},{"x":-60,"y":192},{"x":49,"y":22},{"x":-151,"y":157},{"x":23,"y":86},{"x":-43,"y":74},{"x":-95,"y":-26},{"x":-10,"y":32}],"type":"admin"},{"arc":[{"x":170684,"y":176625},{"x":-23,"y":10},{"x":-44,"y":-30},{"x":-14,"y":46},{"x":-67,"y":-45},{"x":20,"y":96},{"x":-56,"y":8},{"x":-9,"y":-32},{"x":-49,"y":8},{"x":-32,"y":30},{"x":-64,"y":6},{"x":-57,"y":55},{"x":-425,"y":847}],"type":"admin"},{"arc":[{"x":168005,"y":176581},{"x":55,"y":-35},{"x":46,"y":-109},{"x":-45,"y":-90},{"x":13,"y":-87},{"x":37,"y":-40},{"x":-31,"y":-43},{"x":53,"y":-25},{"x":48,"y":-185},{"x":-126,"y":-78},{"x":-36,"y":-136},{"x":13,"y":-153},{"x":10,"y":36},{"x":51,"y":-4},{"x":12,"y":-62},{"x":99,"y":-13},{"x":24,"y":-35},{"x":101,"y":10},{"x":3,"y":90},{"x":78,"y":-19},{"x":-40,"y":-143},{"x":-113,"y":-188},{"x":164,"y":-28},{"x":68,"y":-84}],"type":"admin"},{"arc":[{"x":168489,"y":175160},{"x":81,"y":100},{"x":50,"y":-3},{"x":51,"y":37},{"x":47,"y":135},{"x":37,"y":8},{"x":64,"y":83},{"x":59,"y":138},{"x":93,"y":30},{"x":119,"y":-54},{"x":73,"y":-94},{"x":21,"y":17},{"x":184,"y":-24},{"x":164,"y":-57},{"x":92,"y":29},{"x":126,"y":-40},{"x":-23,"y":-66},{"x":51,"y":-53},{"x":-12,"y":-166},{"x":-43,"y":-14},{"x":-11,"y":32},{"x":-34,"y":-9},{"x":12,"y":-40},{"x":-40,"y":-14},{"x":96,"y":-106},{"x":158,"y":-5},{"x":119,"y":-93},{"x":71,"y":-20},{"x":125,"y":-117},{"x":108,"y":-4},{"x":61,"y":61},{"x":98,"y":9},{"x":70,"y":42},{"x":77,"y":-43}],"type":"admin"},{"arc":[{"x":170633,"y":174859},{"x":-8,"y":216},{"x":37,"y":60},{"x":124,"y":-5}],"type":"admin"},{"arc":[{"x":170786,"y":175130},{"x":6,"y":19},{"x":46,"y":-4},{"x":9,"y":26},{"x":-25,"y":277},{"x":55,"y":-1},{"x":-3,"y":28},{"x":22,"y":-26},{"x":99,"y":36},{"x":29,"y":-112},{"x":96,"y":25},{"x":44,"y":-38},{"x":22,"y":35},{"x":46,"y":-18},{"x":16,"y":82},{"x":40,"y":3},{"x":9,"y":26}],"type":"admin"},{"arc":[{"x":171297,"y":175488},{"x":-52,"y":215}],"type":"area"},{"arc":[{"x":162850,"y":185757},{"x":-90,"y":-180},{"x":38,"y":37},{"x":78,"y":213},{"x":-26,"y":-70}],"type":"coastline"},{"arc":[{"x":162891,"y":185499},{"x":-8,"y":-16},{"x":32,"y":118},{"x":-24,"y":-102}],"type":"coastline"},{"arc":[{"x":163037,"y":185769},{"x":16,"y":15},{"x":39,"y":-25},{"x":-39,"y":28},{"x":-16,"y":-18}],"type":"coastline"},{"arc":[{"x":163142,"y":185851},{"x":-38,"y":-115},{"x":-113,"y":-73},{"x":-150,"y":-28},{"x":150,"y":27},{"x":115,"y":74},{"x":36,"y":115}],"type":"coastline"},{"arc":[{"x":167427,"y":185524},{"x":-73,"y":-57},{"x":-101,"y":1},{"x":-48,"y":-51},{"x":-66,"y":27},{"x":-17,"y":51},{"x":-158,"y":36}],"type":"admin"},{"arc":[{"x":166964,"y":185531},{"x":-94,"y":-49},{"x":-16,"y":-52},{"x":-48,"y":-13},{"x":-19,"y":45},{"x":-71,"y":31},{"x":5,"y":262},{"x":-97,"y":45},{"x":-82,"y":131},{"x":-51,"y":-5},{"x":17,"y":95},{"x":-41,"y":2},{"x":-29,"y":37},{"x":-167,"y":281},{"x":42,"y":128},{"x":-64,"y":203},{"x":-7,"y":124}],"type":"admin"},{"arc":[{"x":166242,"y":186796},{"x":-161,"y":-13},{"x":-89,"y":32},{"x":-109,"y":-17},{"x":-100,"y":47},{"x":47,"y":-27},{"x":-23,"y":-28},{"x":-59,"y":59},{"x":-8,"y":-43},{"x":-109,"y":-26},{"x":-192,"y":-5},{"x":-38,"y":23},{"x":-28,"y":-23},{"x":-75,"y":22},{"x":21,"y":-17},{"x":-24,"y":4},{"x":-40,"y":-47},{"x":-6,"y":22},{"x":-21,"y":-18},{"x":-11,"y":17},{"x":22,"y":-35},{"x":-59,"y":-52},{"x":-363,"y":-110},{"x":-292,"y":-43},{"x":-324,"y":-8},{"x":-136,"y":30},{"x":-14,"y":58},{"x":-27,"y":-17},{"x":40,"y":25},{"x":-64,"y":-26},{"x":-138,"y":36},{"x":-96,"y":-128},{"x":-135,"y":-38},{"x":-52,"y":27},{"x":-12,"y":-40},{"x":-32,"y":3},{"x":2,"y":-74},{"x":-29,"y":11},{"x":-30,"y":-23},{"x":34,"y":42},{"x":-31,"y":-21},{"x":-67,"y":-83},{"x":25,"y":9},{"x":-14,"y":-30},{"x":-57,"y":-2},{"x":0,"y":32},{"x":-18,"y":-16},{"x":-3,"y":-93},{"x":-61,"y":-80},{"x":-113,"y":-88},{"x":-26,"y":14},{"x":-47,"y":-22},{"x":-13,"y":-67},{"x":27,"y":-33},{"x":-27,"y":-68},{"x":27,"y":64},{"x":36,"y":-47},{"x":14,"y":31},{"x":-23,"y":12},{"x":27,"y":18},{"x":29,"y":-73},{"x":-1,"y":42},{"x":33,"y":-40},{"x":-57,"y":-43},{"x":27,"y":6},{"x":19,"y":-28},{"x":-42,"y":-13},{"x":23,"y":-40},{"x":-52,"y":-30},{"x":43,"y":6},{"x":-9,"y":-25},{"x":-62,"y":-22},{"x":36,"y":-22},{"x":-16,"y":-42},{"x":-51,"y":35},{"x":-30,"y":-43},{"x":33,"y":-25},{"x":-20,"y":-28},{"x":-50,"y":38},{"x":-17,"y":-23},{"x":69,"y":-48},{"x":-19,"y":-25},{"x":-55,"y":11},{"x":-13,"y":-58},{"x":-33,"y":51},{"x":-18,"y":-17},{"x":35,"y":-55},{"x":-42,"y":-54},{"x":-70,"y":34},{"x":21,"y":-23},{"x":-24,"y":-22},{"x":24,"y":21},{"x":36,"y":-34},{"x":-28,"y":6},{"x":15,"y":-17},{"x":-15,"y":-14},{"x":-19,"y":39},{"x":-2,"y":-18},{"x":43,"y":-51},{"x":-87,"y":-107},{"x":-21,"y":15},{"x":-39,"y":-38},{"x":23,"y":-17},{"x":-13,"y":-45},{"x":12,"y":17},{"x":21,"y":-10},{"x":-22,"y":0},{"x":16,"y":-23},{"x":-21,"y":-22},{"x":35,"y":-38},{"x":-55,"y":-119},{"x":-178,"y":-164},{"x":-159,"y":-79},{"x":-118,"y":-34},{"x":-101,"y":0},{"x":-33,"y":23},{"x":-27,"y":-27},{"x":21,"y":31},{"x":-23,"y":11}],"type":"coastline"},{"arc":[{"x":162140,"y":184656},{"x":-41,"y":-76},{"x":75,"y":3},{"x":65,"y":-89},{"x":-12,"y":-44},{"x":29,"y":-15},{"x":-44,"y":0},{"x":32,"y":-52},{"x":-58,"y":46},{"x":-17,"y":-55},{"x":43,"y":12},{"x":29,"y":-18},{"x":-55,"y":-15},{"x":46,"y":5},{"x":-29,"y":-17},{"x":32,"y":-34},{"x":43,"y":24},{"x":26,"y":-20},{"x":0,"y":-22},{"x":-18,"y":21},{"x":-47,"y":-17},{"x":51,"y":-131},{"x":54,"y":-50},{"x":-50,"y":-69},{"x":36,"y":-50},{"x":-5,"y":-54},{"x":-38,"y":-9},{"x":22,"y":-93},{"x":202,"y":-198},{"x":-7,"y":-63},{"x":66,"y":-92},{"x":47,"y":-248},{"x":50,"y":-12},{"x":-45,"y":-194},{"x":67,"y":-85},{"x":6,"y":-129},{"x":67,"y":-12},{"x":53,"y":-74},{"x":127,"y":-61},{"x":47,"y":-88},{"x":73,"y":18},{"x":47,"y":-21},{"x":26,"y":21},{"x":18,"y":-54},{"x":73,"y":-33}],"type":"admin"},{"arc":[{"x":163226,"y":182512},{"x":74,"y":-2},{"x":29,"y":-33},{"x":151,"y":-3},{"x":109,"y":-119},{"x":78,"y":-10},{"x":54,"y":-40},{"x":71,"y":39},{"x":32,"y":71}],"type":"admin"},{"arc":[{"x":163824,"y":182415},{"x":121,"y":139},{"x":-10,"y":33},{"x":50,"y":63},{"x":61,"y":37},{"x":71,"y":-47},{"x":-37,"y":141},{"x":30,"y":54},{"x":67,"y":37},{"x":178,"y":-3},{"x":24,"y":37},{"x":70,"y":3},{"x":25,"y":34},{"x":28,"y":-32},{"x":39,"y":3},{"x":50,"y":93},{"x":31,"y":-1},{"x":13,"y":93},{"x":150,"y":-29},{"x":37,"y":31},{"x":12,"y":114},{"x":32,"y":32},{"x":41,"y":1},{"x":24,"y":-53},{"x":12,"y":34},{"x":61,"y":-25},{"x":-6,"y":51},{"x":27,"y":-27},{"x":29,"y":21},{"x":-23,"y":48},{"x":27,"y":30},{"x":141,"y":-31},{"x":47,"y":-52},{"x":66,"y":8},{"x":60,"y":-48},{"x":31,"y":30},{"x":-3,"y":-33},{"x":37,"y":-22},{"x":-10,"y":-45},{"x":42,"y":-35},{"x":56,"y":-16},{"x":83,"y":16},{"x":131,"y":-82},{"x":141,"y":-27},{"x":0,"y":-27},{"x":-109,"y":-20},{"x":-43,"y":-40},{"x":123,"y":-31},{"x":17,"y":-94},{"x":50,"y":9}],"type":"admin"},{"arc":[{"x":165918,"y":182787},{"x":36,"y":13},{"x":87,"y":-55},{"x":51,"y":11},{"x":15,"y":-44},{"x":76,"y":-45},{"x":96,"y":67},{"x":78,"y":0},{"x":22,"y":-26},{"x":121,"y":20},{"x":19,"y":71}],"type":"admin"},{"arc":[{"x":166519,"y":182799},{"x":-23,"y":39},{"x":105,"y":106},{"x":-6,"y":41},{"x":70,"y":95},{"x":7,"y":64},{"x":107,"y":74},{"x":30,"y":91},{"x":-36,"y":50},{"x":97,"y":143},{"x":143,"y":37},{"x":111,"y":-26},{"x":85,"y":38},{"x":103,"y":-11},{"x":118,"y":86},{"x":123,"y":-49}],"type":"admin"},{"arc":[{"x":167553,"y":183577},{"x":24,"y":47},{"x":42,"y":15},{"x":84,"y":-4},{"x":14,"y":-46},{"x":187,"y":55},{"x":-10,"y":80},{"x":62,"y":107},{"x":6,"y":99}],"type":"area"},{"arc":[{"x":167962,"y":183930},{"x":-26,"y":48},{"x":-47,"y":-25},{"x":-45,"y":64},{"x":-3,"y":-31},{"x":-24,"y":-1},{"x":-39,"y":62},{"x":-80,"y":51},{"x":-23,"y":45},{"x":45,"y":56},{"x":-37,"y":38},{"x":-4,"y":69},{"x":48,"y":20},{"x":-28,"y":48},{"x":-28,"y":-17},{"x":-21,"y":19},{"x":25,"y":118},{"x":-109,"y":21},{"x":-43,"y":137},{"x":-63,"y":29},{"x":2,"y":-49},{"x":-61,"y":-42},{"x":-69,"y":25},{"x":-30,"y":-21},{"x":-111,"y":140},{"x":-90,"y":39},{"x":36,"y":25},{"x":-24,"y":81},{"x":24,"y":132},{"x":77,"y":43},{"x":19,"y":57},{"x":-46,"y":87},{"x":-5,"y":79},{"x":212,"y":62},{"x":33,"y":185}],"type":"admin"},{"arc":[{"x":166714,"y":179341},{"x":-35,"y":109},{"x":-50,"y":0},{"x":-13,"y":44},{"x":-30,"y":-2},{"x":8,"y":27},{"x":-26,"y":-32},{"x":-13,"y":19},{"x":-85,"y":-2},{"x":-35,"y":68},{"x":-128,"y":-87}],"type":"admin"},{"arc":[{"x":166307,"y":179485},{"x":36,"y":-49},{"x":10,"y":-97},{"x":-43,"y":-199},{"x":15,"y":-63},{"x":-59,"y":-35},{"x":22,"y":-14},{"x":-12,"y":-93},{"x":-43,"y":-2},{"x":-27,"y":-52},{"x":-109,"y":238},{"x":-51,"y":34},{"x":-6,"y":160},{"x":-18,"y":7},{"x":-30,"y":-44},{"x":-49,"y":71},{"x":-40,"y":-17},{"x":24,"y":-50},{"x":-95,"y":-28},{"x":-48,"y":-46},{"x":-60,"y":109},{"x":-54,"y":35},{"x":30,"y":43},{"x":-13,"y":87},{"x":-77,"y":-5},{"x":-65,"y":32},{"x":-30,"y":-20},{"x":20,"y":39},{"x":-90,"y":182},{"x":26,"y":1},{"x":25,"y":58},{"x":-45,"y":50},{"x":22,"y":132}],"type":"admin"},{"arc":[{"x":165473,"y":179949},{"x":-70,"y":218},{"x":28,"y":39},{"x":17,"y":-9},{"x":17,"y":83}],"type":"admin"},{"arc":[{"x":165465,"y":180280},{"x":54,"y":175},{"x":-55,"y":37},{"x":-9,"y":137},{"x":-59,"y":52}],"type":"admin"},{"arc":[{"x":165396,"y":180681},{"x":-7,"y":38},{"x":-106,"y":-7},{"x":-111,"y":-147},{"x":-57,"y":-46},{"x":-32,"y":5},{"x":-29,"y":-44},{"x":5,"y":-65},{"x":-70,"y":-44},{"x":-20,"y":-57},{"x":-32,"y":-5}],"type":"admin"},{"arc":[{"x":164937,"y":180309},{"x":-53,"y":-25},{"x":15,"y":-74},{"x":-35,"y":-31},{"x":-4,"y":-60},{"x":-115,"y":11},{"x":-33,"y":73},{"x":11,"y":-123},{"x":-58,"y":-4},{"x":-121,"y":41},{"x":-41,"y":-33},{"x":71,"y":-96},{"x":-9,"y":-119},{"x":-109,"y":-153},{"x":-64,"y":46},{"x":-93,"y":-74},{"x":-132,"y":21},{"x":-40,"y":-91},{"x":47,"y":-111},{"x":-78,"y":-210},{"x":-68,"y":-64},{"x":-109,"y":-14},{"x":8,"y":-43},{"x":43,"y":-4},{"x":65,"y":-121}],"type":"admin"},{"arc":[{"x":164035,"y":179051},{"x":211,"y":-25},{"x":-28,"y":-88},{"x":2,"y":-163},{"x":-67,"y":-48},{"x":69,"y":-175},{"x":159,"y":-77},{"x":21,"y":29},{"x":120,"y":14},{"x":114,"y":-95},{"x":45,"y":41},{"x":61,"y":-12},{"x":53,"y":-92},{"x":-3,"y":-70},{"x":34,"y":-34},{"x":-18,"y":-18},{"x":102,"y":-69},{"x":28,"y":-79},{"x":69,"y":-56},{"x":43,"y":46},{"x":40,"y":-83},{"x":22,"y":14}],"type":"admin"},{"arc":[{"x":165112,"y":178011},{"x":42,"y":60},{"x":-36,"y":20},{"x":-31,"y":79},{"x":33,"y":-12},{"x":28,"y":36},{"x":61,"y":-52},{"x":50,"y":42},{"x":-19,"y":51},{"x":53,"y":105},{"x":11,"y":-45},{"x":17,"y":19},{"x":54,"y":-34},{"x":3,"y":79},{"x":54,"y":13},{"x":46,"y":54},{"x":49,"y":-33},{"x":5,"y":-89},{"x":28,"y":-10},{"x":35,"y":90},{"x":-26,"y":26},{"x":75,"y":64},{"x":8,"y":57},{"x":54,"y":-4},{"x":10,"y":39},{"x":72,"y":-1},{"x":153,"y":66},{"x":97,"y":-12},{"x":8,"y":-77},{"x":92,"y":-178},{"x":116,"y":25},{"x":77,"y":-152},{"x":84,"y":-40},{"x":52,"y":-109},{"x":128,"y":-101},{"x":6,"y":-23},{"x":-41,"y":-30},{"x":-74,"y":6},{"x":-44,"y":-40},{"x":214,"y":-84},{"x":90,"y":-107},{"x":97,"y":-66},{"x":89,"y":-148},{"x":59,"y":-14}],"type":"admin"},{"arc":[{"x":167285,"y":181983},{"x":-35,"y":-139},{"x":-29,"y":-27},{"x":-53,"y":5}],"type":"admin"},{"arc":[{"x":167168,"y":181822},{"x":-101,"y":-87},{"x":11,"y":-98},{"x":-39,"y":-106},{"x":41,"y":-48},{"x":-307,"y":-9},{"x":-19,"y":-82},{"x":31,"y":-69},{"x":-23,"y":-190},{"x":56,"y":-58},{"x":-27,"y":-103},{"x":18,"y":-116},{"x":42,"y":-32},{"x":118,"y":3},{"x":27,"y":-97},{"x":-17,"y":-42},{"x":72,"y":-167},{"x":-26,"y":-52}],"type":"admin"},{"arc":[{"x":167025,"y":180469},{"x":-15,"y":-51},{"x":46,"y":-206},{"x":43,"y":-30},{"x":29,"y":108},{"x":125,"y":101},{"x":43,"y":-2},{"x":22,"y":-60},{"x":54,"y":7},{"x":-21,"y":-99},{"x":93,"y":-81},{"x":-29,"y":-39},{"x":53,"y":-87},{"x":-21,"y":-80},{"x":-192,"y":-4},{"x":19,"y":-55},{"x":-30,"y":-25},{"x":-142,"y":-17},{"x":11,"y":-71},{"x":-48,"y":25},{"x":-33,"y":-70}],"type":"admin"},{"arc":[{"x":171240,"y":175713},{"x":-4,"y":15}],"type":"coastline"},{"arc":[{"x":173519,"y":176375},{"x":-141,"y":19},{"x":-40,"y":-23},{"x":-39,"y":34},{"x":-119,"y":-32},{"x":-75,"y":65},{"x":-46,"y":-13},{"x":-52,"y":-68},{"x":-19,"y":-153},{"x":-136,"y":-17},{"x":-15,"y":-50},{"x":-106,"y":-25},{"x":6,"y":-85},{"x":-107,"y":-97},{"x":-88,"y":-27},{"x":4,"y":-76},{"x":-74,"y":-125},{"x":-94,"y":-21},{"x":-142,"y":-90},{"x":-33,"y":-51},{"x":-105,"y":-20},{"x":22,"y":35},{"x":-43,"y":52},{"x":85,"y":162},{"x":-11,"y":65},{"x":30,"y":69},{"x":-19,"y":110},{"x":-112,"y":89},{"x":-136,"y":234},{"x":-29,"y":119},{"x":-45,"y":-3},{"x":-47,"y":-48},{"x":-215,"y":33}],"type":"admin"},{"arc":[{"x":171578,"y":176437},{"x":-2,"y":-56},{"x":48,"y":-76},{"x":-19,"y":-132},{"x":-23,"y":-24},{"x":-87,"y":-12},{"x":-4,"y":-92},{"x":-97,"y":-60},{"x":-37,"y":-108},{"x":-67,"y":-38},{"x":18,"y":-28},{"x":-63,"y":-62},{"x":0,"y":-46}],"type":"admin"},{"arc":[{"x":171297,"y":175488},{"x":29,"y":-33},{"x":52,"y":18},{"x":12,"y":-70},{"x":33,"y":-3},{"x":-30,"y":-38},{"x":-18,"y":30},{"x":1,"y":-72},{"x":53,"y":-96},{"x":-55,"y":-20},{"x":-29,"y":-50},{"x":-39,"y":12},{"x":-19,"y":-153}],"type":"admin"},{"arc":[{"x":171287,"y":175013},{"x":67,"y":13},{"x":60,"y":-40},{"x":-36,"y":-54},{"x":60,"y":-43},{"x":-28,"y":-36},{"x":8,"y":-63},{"x":22,"y":-33},{"x":30,"y":33},{"x":44,"y":-7},{"x":66,"y":-82},{"x":-32,"y":-53},{"x":78,"y":-75},{"x":43,"y":-135},{"x":-43,"y":-33},{"x":-46,"y":18},{"x":-11,"y":-104},{"x":56,"y":15},{"x":48,"y":63},{"x":125,"y":-18},{"x":34,"y":-35},{"x":7,"y":-103},{"x":34,"y":102},{"x":-66,"y":139},{"x":89,"y":12},{"x":90,"y":-65},{"x":-37,"y":-161},{"x":-54,"y":-62},{"x":-115,"y":-11},{"x":-84,"y":-44},{"x":-40,"y":42},{"x":-176,"y":8},{"x":-26,"y":63},{"x":-32,"y":-8},{"x":-31,"y":-192},{"x":81,"y":-11},{"x":-42,"y":-72},{"x":70,"y":-66},{"x":-47,"y":-32},{"x":38,"y":-26},{"x":-73,"y":-122},{"x":9,"y":-58},{"x":-68,"y":-48},{"x":4,"y":-24},{"x":90,"y":-42},{"x":-46,"y":-28}],"type":"admin"},{"arc":[{"x":171407,"y":173535},{"x":-55,"y":-30},{"x":30,"y":-55},{"x":82,"y":-14},{"x":44,"y":26},{"x":187,"y":-117},{"x":0,"y":-90},{"x":-108,"y":-40},{"x":40,"y":-179},{"x":144,"y":103},{"x":25,"y":-115},{"x":25,"y":38},{"x":22,"y":-11},{"x":46,"y":33},{"x":51,"y":92},{"x":13,"y":176},{"x":68,"y":-19},{"x":59,"y":49},{"x":47,"y":1},{"x":89,"y":93},{"x":41,"y":-28},{"x":20,"y":24},{"x":54,"y":-3},{"x":98,"y":-81},{"x":30,"y":72},{"x":112,"y":-45},{"x":122,"y":-3},{"x":169,"y":89},{"x":234,"y":24},{"x":109,"y":54},{"x":31,"y":53},{"x":38,"y":12},{"x":57,"y":-23},{"x":168,"y":115},{"x":144,"y":-43},{"x":75,"y":5},{"x":73,"y":-38},{"x":107,"y":68},{"x":30,"y":95},{"x":66,"y":-26},{"x":56,"y":-63},{"x":60,"y":5},{"x":86,"y":-96}],"type":"admin"},{"arc":[{"x":174196,"y":173643},{"x":43,"y":109},{"x":26,"y":28},{"x":33,"y":-8},{"x":97,"y":-49},{"x":36,"y":-68},{"x":111,"y":-92},{"x":94,"y":-51},{"x":74,"y":-8},{"x":19,"y":-47},{"x":-83,"y":-127},{"x":-13,"y":-167}],"type":"admin"},{"arc":[{"x":174633,"y":173163},{"x":2,"y":-11}],"type":"admin"},{"arc":[{"x":174458,"y":186515},{"x":0,"y":-24},{"x":2,"y":41},{"x":-2,"y":-17}],"type":"coastline"},{"arc":[{"x":173052,"y":186910},{"x":-8,"y":-63},{"x":152,"y":-173},{"x":19,"y":-96},{"x":108,"y":-185},{"x":7,"y":-72},{"x":-25,"y":-62},{"x":29,"y":-34},{"x":11,"y":-119},{"x":-103,"y":-97},{"x":97,"y":-112},{"x":-67,"y":-139},{"x":24,"y":-114},{"x":68,"y":-76},{"x":6,"y":-79},{"x":-70,"y":-67},{"x":-35,"y":-150},{"x":-61,"y":-55},{"x":3,"y":-81}],"type":"area"},{"arc":[{"x":173207,"y":185136},{"x":172,"y":-130},{"x":5,"y":-80},{"x":102,"y":-209},{"x":40,"y":-288},{"x":29,"y":-30},{"x":-28,"y":-69},{"x":-99,"y":-78},{"x":24,"y":-72},{"x":-49,"y":-156},{"x":29,"y":-41}],"type":"admin"},{"arc":[{"x":173432,"y":183983},{"x":68,"y":78},{"x":140,"y":-3},{"x":-5,"y":-49},{"x":-81,"y":-84},{"x":-24,"y":-210},{"x":54,"y":-26},{"x":80,"y":-160},{"x":108,"y":-26},{"x":13,"y":-41},{"x":95,"y":4},{"x":133,"y":161},{"x":70,"y":4}],"type":"area"},{"arc":[{"x":174572,"y":185284},{"x":22,"y":352},{"x":-34,"y":212},{"x":-65,"y":136},{"x":35,"y":66},{"x":-8,"y":208},{"x":44,"y":111}],"type":"admin"},{"arc":[{"x":174566,"y":186369},{"x":-25,"y":2},{"x":-12,"y":-43},{"x":-91,"y":44},{"x":-11,"y":31},{"x":108,"y":9},{"x":71,"y":43},{"x":-72,"y":-40},{"x":-95,"y":-6},{"x":-42,"y":75},{"x":44,"y":23},{"x":-53,"y":30},{"x":58,"y":-5},{"x":-59,"y":6},{"x":-21,"y":56},{"x":29,"y":2},{"x":8,"y":-37},{"x":110,"y":-10},{"x":-102,"y":20},{"x":-15,"y":30},{"x":-46,"y":13},{"x":-18,"y":48},{"x":-390,"y":-4},{"x":-239,"y":22},{"x":-80,"y":29},{"x":-48,"y":91},{"x":-55,"y":-2},{"x":-104,"y":46},{"x":-8,"y":34},{"x":-213,"y":43},{"x":-143,"y":-9}],"type":"coastline"},{"arc":[{"x":170844,"y":183548},{"x":-57,"y":-27}],"type":"admin"},{"arc":[{"x":170787,"y":183521},{"x":-60,"y":-18}],"type":"admin"},{"arc":[{"x":170727,"y":183503},{"x":-54,"y":-125},{"x":50,"y":-137},{"x":-32,"y":-101},{"x":-105,"y":-61},{"x":-26,"y":-133},{"x":-64,"y":-70},{"x":28,"y":-27},{"x":4,"y":-130},{"x":-68,"y":-32},{"x":6,"y":-87},{"x":-47,"y":-13},{"x":-4,"y":-66},{"x":-42,"y":-31},{"x":-6,"y":-117},{"x":-54,"y":-63},{"x":-31,"y":0},{"x":-18,"y":-86}],"type":"area"},{"arc":[{"x":170264,"y":182224},{"x":42,"y":-4},{"x":28,"y":-42},{"x":-17,"y":-43},{"x":74,"y":-47},{"x":-37,"y":-63},{"x":12,"y":-31},{"x":-140,"y":-80},{"x":22,"y":-47},{"x":59,"y":-27},{"x":-15,"y":-36}],"type":"admin"},{"arc":[{"x":170292,"y":181804},{"x":134,"y":-109},{"x":-2,"y":-24},{"x":-40,"y":24},{"x":14,"y":-31},{"x":79,"y":-2},{"x":27,"y":25},{"x":35,"y":-5},{"x":4,"y":-24},{"x":20,"y":14},{"x":-13,"y":-85},{"x":37,"y":-10},{"x":6,"y":-34},{"x":-21,"y":-35},{"x":-48,"y":-14},{"x":92,"y":-75},{"x":-5,"y":-138},{"x":31,"y":-29},{"x":67,"y":6},{"x":44,"y":-50},{"x":-6,"y":-166},{"x":45,"y":3},{"x":140,"y":-78},{"x":-203,"y":-190}],"type":"area"},{"arc":[{"x":170729,"y":180777},{"x":40,"y":-91},{"x":103,"y":1},{"x":10,"y":-59},{"x":113,"y":-34},{"x":-10,"y":-27},{"x":43,"y":-39},{"x":16,"y":-66},{"x":-39,"y":-63},{"x":27,"y":-66},{"x":-59,"y":-65},{"x":-18,"y":-105},{"x":39,"y":-52},{"x":47,"y":-15},{"x":59,"y":20},{"x":81,"y":-39},{"x":170,"y":-166},{"x":57,"y":29},{"x":-28,"y":99},{"x":63,"y":-11},{"x":50,"y":-52},{"x":-1,"y":32},{"x":38,"y":19},{"x":104,"y":-12},{"x":51,"y":-137},{"x":-26,"y":-43},{"x":31,"y":-35},{"x":-16,"y":-116},{"x":43,"y":-23},{"x":21,"y":-158},{"x":35,"y":-61}],"type":"admin"},{"arc":[{"x":171839,"y":179396},{"x":199,"y":-42}],"type":"admin"},{"arc":[{"x":172155,"y":182194},{"x":-113,"y":123},{"x":-36,"y":14},{"x":-77,"y":-21},{"x":-104,"y":128},{"x":-91,"y":30},{"x":-39,"y":44},{"x":-13,"y":109},{"x":-63,"y":84},{"x":33,"y":51},{"x":-8,"y":92},{"x":-53,"y":123},{"x":-124,"y":50},{"x":-67,"y":-26},{"x":-18,"y":59},{"x":-59,"y":20},{"x":-71,"y":-102},{"x":-76,"y":27},{"x":-3,"y":120},{"x":79,"y":71},{"x":16,"y":91},{"x":51,"y":-8},{"x":29,"y":60},{"x":4,"y":106},{"x":-38,"y":28},{"x":17,"y":33},{"x":-81,"y":35},{"x":-88,"y":-14},{"x":-83,"y":-72},{"x":-36,"y":21},{"x":-41,"y":-43},{"x":-96,"y":108},{"x":-62,"y":13}],"type":"admin"},{"arc":[{"x":171193,"y":180120},{"x":30,"y":11},{"x":88,"y":-33},{"x":-85,"y":-10},{"x":-33,"y":32}],"type":"admin"},{"arc":[{"x":169762,"y":185093},{"x":-81,"y":101},{"x":-64,"y":-6},{"x":-8,"y":-21},{"x":-96,"y":12},{"x":-52,"y":68},{"x":-143,"y":14},{"x":-37,"y":-16},{"x":-30,"y":34}],"type":"admin"},{"arc":[{"x":169251,"y":185279},{"x":-129,"y":85},{"x":-73,"y":-40},{"x":-21,"y":20},{"x":-113,"y":-20},{"x":-99,"y":18}],"type":"admin"},{"arc":[{"x":168816,"y":185342},{"x":-45,"y":-84},{"x":-53,"y":-16},{"x":-43,"y":41},{"x":-59,"y":-39},{"x":42,"y":-53},{"x":28,"y":-154},{"x":49,"y":-39},{"x":22,"y":-111},{"x":-26,"y":-47},{"x":21,"y":-164},{"x":-55,"y":-54},{"x":23,"y":-24},{"x":33,"y":9},{"x":30,"y":-63},{"x":-18,"y":-47},{"x":53,"y":-82},{"x":-47,"y":-63},{"x":118,"y":-89},{"x":10,"y":-129},{"x":94,"y":-25},{"x":45,"y":-125},{"x":-53,"y":-23},{"x":-40,"y":-116},{"x":-51,"y":-25},{"x":-54,"y":33},{"x":-65,"y":-71},{"x":-63,"y":-17},{"x":-55,"y":-76},{"x":-63,"y":-10},{"x":-49,"y":80},{"x":-90,"y":-55},{"x":-46,"y":4},{"x":-24,"y":34},{"x":-85,"y":22},{"x":-8,"y":54},{"x":-99,"y":40},{"x":-30,"y":-9},{"x":-15,"y":33},{"x":-127,"y":10},{"x":-59,"y":38}],"type":"admin"},{"arc":[{"x":167553,"y":183577},{"x":16,"y":-193},{"x":-18,"y":-36},{"x":-57,"y":-8},{"x":-73,"y":-54},{"x":-28,"y":-96},{"x":21,"y":-50},{"x":142,"y":-102},{"x":56,"y":28},{"x":95,"y":3},{"x":56,"y":-39},{"x":238,"y":129},{"x":104,"y":-35},{"x":33,"y":-38},{"x":16,"y":25},{"x":67,"y":-25},{"x":52,"y":-254},{"x":73,"y":-93},{"x":-35,"y":-112},{"x":74,"y":-70},{"x":2,"y":-76},{"x":166,"y":-126},{"x":-10,"y":-113}],"type":"admin"},{"arc":[{"x":168857,"y":181819},{"x":37,"y":-38},{"x":49,"y":0},{"x":48,"y":52},{"x":208,"y":-149},{"x":28,"y":73},{"x":-28,"y":56},{"x":161,"y":-25},{"x":9,"y":61},{"x":104,"y":-18},{"x":66,"y":71},{"x":31,"y":1},{"x":54,"y":-64},{"x":-14,"y":-63},{"x":101,"y":-111},{"x":24,"y":57},{"x":61,"y":-23},{"x":10,"y":63},{"x":40,"y":-45},{"x":26,"y":17},{"x":-160,"y":122},{"x":62,"y":0},{"x":-19,"y":73},{"x":-7,"y":-27},{"x":-43,"y":11},{"x":33,"y":52},{"x":-20,"y":25},{"x":54,"y":70},{"x":23,"y":-50},{"x":-44,"y":-42},{"x":57,"y":-121},{"x":47,"y":34},{"x":27,"y":-16},{"x":16,"y":44},{"x":21,"y":-56},{"x":40,"y":-11},{"x":-18,"y":24},{"x":32,"y":0},{"x":-48,"y":65},{"x":27,"y":20},{"x":-22,"y":84},{"x":-130,"y":39},{"x":26,"y":54},{"x":132,"y":79},{"x":-20,"y":52},{"x":46,"y":-18},{"x":68,"y":30},{"x":23,"y":-44},{"x":9,"y":48},{"x":62,"y":15},{"x":22,"y":-33},{"x":71,"y":-5},{"x":-1,"y":-30},{"x":26,"y":2}],"type":"admin"},{"arc":[{"x":170727,"y":183503},{"x":-104,"y":100},{"x":-6,"y":40},{"x":-44,"y":5},{"x":9,"y":61},{"x":-42,"y":37},{"x":-256,"y":-143},{"x":-12,"y":112},{"x":-118,"y":277},{"x":-31,"y":14},{"x":2,"y":112},{"x":-71,"y":66},{"x":8,"y":63},{"x":-45,"y":63},{"x":3,"y":64},{"x":-36,"y":-22},{"x":-91,"y":78},{"x":44,"y":86},{"x":-28,"y":84},{"x":-61,"y":44},{"x":51,"y":74},{"x":-6,"y":99},{"x":-17,"y":47},{"x":-60,"y":4},{"x":17,"y":41},{"x":-45,"y":16},{"x":56,"y":149},{"x":-82,"y":19}],"type":"admin"},{"arc":[{"x":173052,"y":186910},{"x":-409,"y":-3},{"x":-37,"y":27},{"x":8,"y":37},{"x":-17,"y":-33},{"x":5,"y":34},{"x":-26,"y":-41},{"x":-123,"y":14},{"x":-37,"y":25},{"x":19,"y":85},{"x":3,"y":69},{"x":-105,"y":92},{"x":104,"y":-93},{"x":-18,"y":-134},{"x":-35,"y":8},{"x":3,"y":10},{"x":-63,"y":15},{"x":1,"y":72},{"x":33,"y":39},{"x":-34,"y":-37},{"x":-21,"y":-98},{"x":-53,"y":-8},{"x":-205,"y":55},{"x":-265,"y":-22},{"x":-235,"y":54},{"x":-229,"y":-25},{"x":-294,"y":14},{"x":-603,"y":83}],"type":"coastline"},{"arc":[{"x":170419,"y":187149},{"x":-42,"y":-218},{"x":22,"y":-36},{"x":-52,"y":-79},{"x":2,"y":-87},{"x":111,"y":-183},{"x":20,"y":-178},{"x":79,"y":-146},{"x":6,"y":-66},{"x":45,"y":-14},{"x":31,"y":-57},{"x":-46,"y":-143},{"x":-116,"y":-50},{"x":-2,"y":-36},{"x":46,"y":-34},{"x":-18,"y":-112},{"x":67,"y":-93},{"x":-24,"y":-65},{"x":28,"y":-28},{"x":44,"y":18},{"x":66,"y":-43},{"x":90,"y":21},{"x":51,"y":-29},{"x":81,"y":-115},{"x":-12,"y":-41},{"x":45,"y":-121},{"x":45,"y":-34},{"x":140,"y":-5},{"x":22,"y":-46},{"x":24,"y":25},{"x":50,"y":-38},{"x":70,"y":54},{"x":97,"y":-43},{"x":40,"y":33},{"x":-2,"y":-85},{"x":55,"y":-81},{"x":63,"y":33},{"x":89,"y":-50},{"x":64,"y":-100}],"type":"admin"},{"arc":[{"x":171698,"y":184877},{"x":44,"y":44},{"x":-42,"y":60},{"x":191,"y":86},{"x":90,"y":-56},{"x":101,"y":8},{"x":-13,"y":-28},{"x":145,"y":-52},{"x":180,"y":45},{"x":32,"y":-107},{"x":34,"y":-13},{"x":76,"y":62},{"x":174,"y":-16},{"x":56,"y":68},{"x":25,"y":-19},{"x":9,"y":-95},{"x":44,"y":-34},{"x":90,"y":97},{"x":25,"y":120},{"x":72,"y":50},{"x":25,"y":71},{"x":151,"y":-32}],"type":"admin"},{"arc":[{"x":173432,"y":183983},{"x":-22,"y":-245},{"x":-83,"y":-69},{"x":-11,"y":-134},{"x":-54,"y":-72},{"x":-86,"y":-32},{"x":-44,"y":16},{"x":-74,"y":-75},{"x":-41,"y":25},{"x":-43,"y":-47},{"x":-53,"y":11},{"x":-35,"y":-68},{"x":-84,"y":2}],"type":"admin"},{"arc":[{"x":172802,"y":183295},{"x":151,"y":-188},{"x":-81,"y":-171},{"x":27,"y":-5},{"x":56,"y":-161},{"x":-79,"y":-60},{"x":-2,"y":-34},{"x":-38,"y":-10},{"x":-17,"y":-50},{"x":-39,"y":-27},{"x":-28,"y":35},{"x":-57,"y":-72},{"x":-55,"y":-25},{"x":37,"y":-71},{"x":85,"y":-8},{"x":-11,"y":-34},{"x":82,"y":-80},{"x":119,"y":-33},{"x":4,"y":-107},{"x":-71,"y":-97}],"type":"admin"},{"arc":[{"x":174386,"y":181540},{"x":20,"y":190},{"x":94,"y":74},{"x":-5,"y":39},{"x":-46,"y":6},{"x":33,"y":71},{"x":-69,"y":68},{"x":62,"y":8},{"x":4,"y":44},{"x":34,"y":22},{"x":59,"y":-6},{"x":-33,"y":130},{"x":73,"y":94},{"x":39,"y":14},{"x":115,"y":-23}],"type":"admin"},{"arc":[{"x":174766,"y":182271},{"x":6,"y":145},{"x":50,"y":9},{"x":2,"y":19},{"x":84,"y":-16},{"x":49,"y":35},{"x":-81,"y":14},{"x":-28,"y":89},{"x":18,"y":25},{"x":103,"y":-9},{"x":101,"y":-64},{"x":43,"y":42},{"x":28,"y":-12},{"x":35,"y":59},{"x":108,"y":-28},{"x":120,"y":60}],"type":"admin"},{"arc":[{"x":170292,"y":181804},{"x":-42,"y":-50},{"x":-74,"y":-12},{"x":0,"y":-40},{"x":-67,"y":13},{"x":-65,"y":-34},{"x":-15,"y":-158},{"x":31,"y":-79},{"x":-49,"y":-50}],"type":"admin"},{"arc":[{"x":170330,"y":179742},{"x":27,"y":200},{"x":19,"y":31},{"x":38,"y":2},{"x":-8,"y":35},{"x":40,"y":40},{"x":-4,"y":75},{"x":-36,"y":50},{"x":52,"y":198},{"x":47,"y":65},{"x":100,"y":-13},{"x":3,"y":52},{"x":54,"y":-50},{"x":25,"y":8},{"x":-64,"y":121},{"x":31,"y":53},{"x":-5,"y":122},{"x":80,"y":46}],"type":"admin"},{"arc":[{"x":175305,"y":181496},{"x":-86,"y":-4},{"x":-125,"y":145},{"x":-52,"y":151},{"x":9,"y":47},{"x":-52,"y":60},{"x":-29,"y":131},{"x":-151,"y":61},{"x":6,"y":58},{"x":-15,"y":45},{"x":-41,"y":5},{"x":21,"y":49},{"x":-24,"y":27}],"type":"area"},{"arc":[{"x":172802,"y":183295},{"x":-35,"y":-7},{"x":10,"y":-73},{"x":-30,"y":-44},{"x":-74,"y":-50},{"x":-43,"y":1},{"x":-53,"y":10},{"x":-9,"y":45},{"x":51,"y":59},{"x":-89,"y":36},{"x":-57,"y":78},{"x":-162,"y":-49},{"x":-30,"y":37},{"x":-64,"y":-13},{"x":-38,"y":41},{"x":-142,"y":-22},{"x":-153,"y":22},{"x":-90,"y":57},{"x":-64,"y":116},{"x":-42,"y":5},{"x":-97,"y":116},{"x":0,"y":96},{"x":-62,"y":122}],"type":"admin"},{"arc":[{"x":171529,"y":183878},{"x":-96,"y":83},{"x":-90,"y":-23},{"x":-179,"y":-114},{"x":37,"y":-109},{"x":-23,"y":-47},{"x":-35,"y":20},{"x":-42,"y":-22},{"x":-77,"y":9},{"x":-20,"y":-44},{"x":-160,"y":-83}],"type":"admin"},{"arc":[{"x":167025,"y":180469},{"x":-152,"y":29},{"x":-82,"y":55},{"x":-40,"y":-4},{"x":-16,"y":-32}],"type":"admin"},{"arc":[{"x":166735,"y":180517},{"x":15,"y":-88},{"x":-40,"y":-185},{"x":80,"y":-124},{"x":-104,"y":-98},{"x":57,"y":-129},{"x":-31,"y":-14},{"x":-22,"y":19},{"x":-8,"y":-70},{"x":-34,"y":1},{"x":16,"y":-35},{"x":-47,"y":33},{"x":73,"y":-98},{"x":38,"y":5},{"x":13,"y":-26},{"x":19,"y":22},{"x":52,"y":-4},{"x":20,"y":-49},{"x":55,"y":-21}],"type":"admin"},{"arc":[{"x":166474,"y":176268},{"x":-190,"y":-135},{"x":-84,"y":-95},{"x":-57,"y":-10},{"x":-73,"y":46},{"x":-39,"y":-18},{"x":-77,"y":24},{"x":-96,"y":-29}],"type":"admin"},{"arc":[{"x":165858,"y":176051},{"x":23,"y":-76},{"x":-32,"y":-104},{"x":15,"y":-103},{"x":-77,"y":-185},{"x":18,"y":-89},{"x":66,"y":-51},{"x":-104,"y":-259},{"x":15,"y":-114}],"type":"admin"},{"arc":[{"x":165782,"y":175070},{"x":138,"y":-115},{"x":90,"y":8},{"x":41,"y":-44},{"x":-14,"y":-95},{"x":102,"y":-97},{"x":83,"y":26},{"x":105,"y":168},{"x":78,"y":12},{"x":51,"y":-3},{"x":90,"y":-89},{"x":233,"y":-107},{"x":-47,"y":-110},{"x":43,"y":-6},{"x":76,"y":-138},{"x":103,"y":-12},{"x":19,"y":-83},{"x":-48,"y":-42},{"x":-25,"y":-142},{"x":-46,"y":-13},{"x":58,"y":-212},{"x":-13,"y":-76},{"x":165,"y":9},{"x":32,"y":-200},{"x":-20,"y":-63},{"x":63,"y":-146},{"x":-3,"y":-93}],"type":"area"},{"arc":[{"x":167136,"y":173407},{"x":94,"y":46},{"x":80,"y":-22},{"x":-3,"y":30},{"x":77,"y":47},{"x":-9,"y":36},{"x":76,"y":125},{"x":75,"y":37},{"x":1,"y":22},{"x":29,"y":-12},{"x":2,"y":68},{"x":53,"y":26}],"type":"admin"},{"arc":[{"x":167611,"y":173810},{"x":-24,"y":90},{"x":-73,"y":87},{"x":25,"y":42},{"x":-60,"y":132},{"x":37,"y":79},{"x":81,"y":73},{"x":160,"y":-11},{"x":70,"y":119},{"x":-14,"y":82},{"x":77,"y":53},{"x":-13,"y":37},{"x":51,"y":45},{"x":16,"y":77},{"x":36,"y":-31},{"x":57,"y":-1},{"x":75,"y":74},{"x":77,"y":-42},{"x":84,"y":7},{"x":35,"y":63},{"x":-46,"y":58},{"x":39,"y":77},{"x":136,"y":4},{"x":30,"y":33},{"x":-20,"y":50},{"x":46,"y":93},{"x":-4,"y":60}],"type":"admin"},{"arc":[{"x":165414,"y":169985},{"x":-123,"y":88},{"x":-14,"y":45},{"x":-227,"y":-15},{"x":-88,"y":-40},{"x":-145,"y":196},{"x":-11,"y":140},{"x":-186,"y":44},{"x":-66,"y":-12},{"x":-18,"y":32},{"x":-73,"y":11},{"x":-41,"y":-6},{"x":-20,"y":-46},{"x":-130,"y":188},{"x":-42,"y":32},{"x":-48,"y":-17},{"x":-57,"y":90},{"x":-64,"y":39},{"x":-111,"y":-9},{"x":-53,"y":-41},{"x":-82,"y":26},{"x":-44,"y":-31},{"x":-94,"y":-2},{"x":-130,"y":124},{"x":-12,"y":47}],"type":"area"},{"arc":[{"x":163535,"y":170868},{"x":-196,"y":-29},{"x":-83,"y":-114},{"x":-1,"y":-45},{"x":-35,"y":-8},{"x":-37,"y":-67},{"x":-73,"y":6},{"x":-87,"y":-53},{"x":-42,"y":4},{"x":-22,"y":-104},{"x":45,"y":-85},{"x":-15,"y":-42},{"x":-78,"y":-89},{"x":-121,"y":-63}],"type":"admin"},{"arc":[{"x":162790,"y":170179},{"x":7,"y":-103},{"x":89,"y":-107},{"x":-21,"y":-167},{"x":-47,"y":-76},{"x":68,"y":6},{"x":116,"y":-79},{"x":-38,"y":-95},{"x":16,"y":-297},{"x":112,"y":-104},{"x":-6,"y":-85},{"x":-39,"y":-46},{"x":55,"y":-98},{"x":72,"y":-64},{"x":-111,"y":-116},{"x":-39,"y":-145},{"x":62,"y":-20},{"x":2,"y":-44},{"x":38,"y":3},{"x":-5,"y":-45},{"x":39,"y":-6},{"x":6,"y":20}],"type":"admin"},{"arc":[{"x":163166,"y":168511},{"x":13,"y":100},{"x":24,"y":-9},{"x":56,"y":35},{"x":26,"y":-23},{"x":75,"y":47},{"x":-1,"y":36},{"x":70,"y":-14},{"x":32,"y":29},{"x":26,"y":-35},{"x":64,"y":-3},{"x":33,"y":52},{"x":88,"y":-57},{"x":39,"y":61},{"x":65,"y":26},{"x":201,"y":-48},{"x":133,"y":-79},{"x":112,"y":53},{"x":88,"y":1},{"x":43,"y":48},{"x":69,"y":-4},{"x":45,"y":70},{"x":54,"y":7},{"x":27,"y":-31},{"x":159,"y":-28},{"x":108,"y":-78},{"x":130,"y":20},{"x":106,"y":-103},{"x":54,"y":19},{"x":110,"y":-53},{"x":150,"y":-2},{"x":174,"y":86},{"x":225,"y":22},{"x":73,"y":40},{"x":64,"y":2},{"x":22,"y":31},{"x":67,"y":-28},{"x":15,"y":37},{"x":18,"y":-77},{"x":43,"y":9},{"x":9,"y":-42},{"x":138,"y":14},{"x":36,"y":-39},{"x":35,"y":4},{"x":12,"y":-34}],"type":"admin"},{"arc":[{"x":166296,"y":168573},{"x":123,"y":81},{"x":3,"y":45},{"x":65,"y":33},{"x":-14,"y":41},{"x":-112,"y":44},{"x":-151,"y":-2},{"x":-66,"y":57},{"x":-12,"y":48},{"x":-141,"y":89},{"x":-27,"y":62},{"x":53,"y":140},{"x":-15,"y":88},{"x":101,"y":258},{"x":-19,"y":79},{"x":-66,"y":29},{"x":-80,"y":-9},{"x":-33,"y":-77},{"x":-35,"y":-19},{"x":-418,"y":102},{"x":-81,"y":157},{"x":43,"y":166}],"type":"area"},{"arc":[{"x":169737,"y":170223},{"x":-192,"y":52},{"x":-158,"y":-127},{"x":-154,"y":10},{"x":-29,"y":-81},{"x":-71,"y":-66},{"x":-23,"y":34},{"x":-108,"y":11},{"x":-200,"y":-67},{"x":-51,"y":-111},{"x":-149,"y":107},{"x":-196,"y":73},{"x":19,"y":59},{"x":43,"y":27},{"x":-3,"y":36},{"x":59,"y":30},{"x":-10,"y":30},{"x":-157,"y":78},{"x":-56,"y":-26},{"x":-12,"y":123},{"x":-23,"y":24},{"x":-47,"y":-17},{"x":-3,"y":131},{"x":-37,"y":15},{"x":-43,"y":-19},{"x":13,"y":191},{"x":159,"y":152},{"x":-14,"y":93},{"x":14,"y":36},{"x":47,"y":18},{"x":-7,"y":42},{"x":34,"y":-8},{"x":98,"y":61},{"x":-9,"y":51},{"x":43,"y":2},{"x":79,"y":74},{"x":-41,"y":107},{"x":78,"y":0},{"x":14,"y":28},{"x":59,"y":11},{"x":11,"y":44}],"type":"admin"},{"arc":[{"x":168714,"y":171451},{"x":-62,"y":45},{"x":-38,"y":-16},{"x":-60,"y":39},{"x":-42,"y":217},{"x":-42,"y":40},{"x":8,"y":68},{"x":-82,"y":-82},{"x":-79,"y":104},{"x":-33,"y":1},{"x":-6,"y":-45},{"x":-104,"y":-76},{"x":-19,"y":64},{"x":-97,"y":96},{"x":8,"y":54},{"x":-58,"y":17},{"x":22,"y":58},{"x":-27,"y":28},{"x":-121,"y":-31},{"x":-72,"y":18}],"type":"admin"},{"arc":[{"x":167810,"y":172050},{"x":-29,"y":-82},{"x":-79,"y":-78},{"x":34,"y":-51},{"x":46,"y":-15},{"x":-4,"y":-51},{"x":46,"y":-70},{"x":-92,"y":5},{"x":-4,"y":-26},{"x":42,"y":-57},{"x":74,"y":8},{"x":23,"y":-87},{"x":-42,"y":-9},{"x":-48,"y":-67},{"x":-59,"y":-9},{"x":-60,"y":-136},{"x":-90,"y":8},{"x":-29,"y":-35},{"x":42,"y":-93},{"x":-20,"y":-101},{"x":47,"y":-84},{"x":-75,"y":-14},{"x":-100,"y":67},{"x":-138,"y":23},{"x":-96,"y":104},{"x":-107,"y":-52},{"x":-24,"y":-36},{"x":-238,"y":-40},{"x":-122,"y":60},{"x":-8,"y":53},{"x":-63,"y":5},{"x":-67,"y":-100},{"x":-87,"y":-14},{"x":-2,"y":-31},{"x":-87,"y":-36},{"x":-6,"y":-34},{"x":-179,"y":-15},{"x":-1,"y":-38},{"x":-76,"y":-82},{"x":-130,"y":20},{"x":-26,"y":-33},{"x":-64,"y":10},{"x":-23,"y":-110},{"x":-35,"y":1},{"x":-48,"y":-100},{"x":-131,"y":-32},{"x":-16,"y":-52},{"x":-56,"y":-33},{"x":-16,"y":-65},{"x":44,"y":-116},{"x":-156,"y":-126},{"x":-37,"y":-205},{"x":-24,"y":-14}],"type":"area"},{"arc":[{"x":166296,"y":168573},{"x":131,"y":-127},{"x":63,"y":9},{"x":20,"y":-53},{"x":56,"y":-8},{"x":2,"y":-31},{"x":-119,"y":-44},{"x":-53,"y":-52},{"x":-22,"y":-122},{"x":134,"y":-22},{"x":64,"y":-75},{"x":80,"y":-27},{"x":111,"y":-123},{"x":138,"y":-80},{"x":52,"y":0},{"x":210,"y":102},{"x":4,"y":32},{"x":344,"y":288},{"x":30,"y":68},{"x":240,"y":56},{"x":48,"y":-20},{"x":139,"y":88},{"x":179,"y":-66},{"x":19,"y":41},{"x":96,"y":65},{"x":4,"y":57},{"x":186,"y":-1},{"x":182,"y":46},{"x":78,"y":-32},{"x":18,"y":-36},{"x":97,"y":1},{"x":10,"y":-46},{"x":27,"y":10},{"x":31,"y":-57},{"x":-15,"y":-108},{"x":52,"y":-45},{"x":126,"y":-33},{"x":58,"y":-76}],"type":"admin"},{"arc":[{"x":169116,"y":168152},{"x":77,"y":116},{"x":153,"y":-9},{"x":165,"y":78},{"x":52,"y":74},{"x":38,"y":11},{"x":-53,"y":133},{"x":95,"y":155}],"type":"admin"},{"arc":[{"x":169643,"y":168710},{"x":-19,"y":53},{"x":-49,"y":23},{"x":78,"y":210},{"x":-41,"y":53},{"x":113,"y":215},{"x":-40,"y":65},{"x":46,"y":46},{"x":38,"y":113},{"x":-50,"y":43},{"x":-7,"y":50},{"x":31,"y":108},{"x":98,"y":59},{"x":-10,"y":44},{"x":34,"y":69},{"x":-77,"y":117},{"x":-2,"y":116},{"x":-49,"y":129}],"type":"admin"},{"arc":[{"x":167810,"y":172050},{"x":-54,"y":13},{"x":-12,"y":28},{"x":-31,"y":-22},{"x":-56,"y":26},{"x":-99,"y":-2},{"x":-165,"y":196},{"x":-36,"y":2},{"x":-64,"y":-51},{"x":-113,"y":18},{"x":-53,"y":-30},{"x":-12,"y":-43},{"x":-84,"y":6},{"x":-93,"y":59},{"x":-33,"y":-40},{"x":-49,"y":26},{"x":-118,"y":-20},{"x":-185,"y":112},{"x":-22,"y":95},{"x":18,"y":-8},{"x":-5,"y":26},{"x":44,"y":30},{"x":29,"y":-31},{"x":19,"y":91},{"x":80,"y":-17},{"x":33,"y":34},{"x":58,"y":5},{"x":-8,"y":123},{"x":58,"y":8},{"x":-39,"y":98},{"x":3,"y":92},{"x":139,"y":50},{"x":10,"y":43},{"x":-39,"y":32},{"x":32,"y":40},{"x":73,"y":24},{"x":46,"y":186},{"x":-31,"y":73},{"x":77,"y":51},{"x":8,"y":34}],"type":"admin"},{"arc":[{"x":165782,"y":175070},{"x":-115,"y":-92},{"x":-13,"y":-58},{"x":29,"y":-43},{"x":-80,"y":-90},{"x":7,"y":-74},{"x":-89,"y":-36},{"x":-61,"y":-96},{"x":-37,"y":-4},{"x":-26,"y":-36},{"x":-73,"y":11},{"x":-35,"y":53},{"x":-145,"y":-32},{"x":-148,"y":40}],"type":"admin"},{"arc":[{"x":164996,"y":174613},{"x":-4,"y":-131},{"x":74,"y":-222},{"x":-24,"y":-103},{"x":40,"y":-32},{"x":-105,"y":-43},{"x":-45,"y":-58},{"x":-54,"y":-21},{"x":-22,"y":-89},{"x":-49,"y":-28},{"x":31,"y":-124},{"x":-51,"y":-72},{"x":29,"y":-141},{"x":-33,"y":-13},{"x":1,"y":-72},{"x":-115,"y":-109},{"x":41,"y":-87},{"x":-73,"y":-158},{"x":11,"y":-38},{"x":-120,"y":-19},{"x":-105,"y":-68},{"x":27,"y":-91},{"x":-57,"y":-40},{"x":-19,"y":-86},{"x":-49,"y":-51},{"x":14,"y":-136},{"x":-54,"y":-26},{"x":-38,"y":25},{"x":-137,"y":-91},{"x":-18,"y":-56},{"x":29,"y":-89},{"x":-54,"y":-71},{"x":47,"y":-83},{"x":-5,"y":-59},{"x":-127,"y":-26},{"x":-37,"y":-32},{"x":-66,"y":-123},{"x":0,"y":-80},{"x":-56,"y":-24},{"x":15,"y":-68},{"x":-165,"y":-131},{"x":11,"y":-121},{"x":-150,"y":-202},{"x":-21,"y":-102},{"x":95,"y":-103},{"x":-73,"y":-251}],"type":"admin"},{"arc":[{"x":173485,"y":178230},{"x":-241,"y":-8},{"x":-136,"y":-108},{"x":-231,"y":-1},{"x":8,"y":-37},{"x":-182,"y":-124},{"x":-190,"y":-33},{"x":-57,"y":58},{"x":-59,"y":-15},{"x":-65,"y":-69},{"x":-4,"y":-82},{"x":-81,"y":-57},{"x":-66,"y":-182},{"x":-49,"y":2},{"x":-43,"y":-38},{"x":19,"y":-36},{"x":-23,"y":-52},{"x":-413,"y":-260},{"x":-74,"y":3}],"type":"area"},{"arc":[{"x":171598,"y":177191},{"x":79,"y":-125},{"x":23,"y":-144},{"x":-42,"y":-235},{"x":-28,"y":6},{"x":-65,"y":-44},{"x":27,"y":-55},{"x":-50,"y":-103},{"x":36,"y":-54}],"type":"area"},{"arc":[{"x":171407,"y":173535},{"x":-40,"y":3},{"x":-26,"y":61},{"x":-51,"y":30},{"x":-143,"y":-46}],"type":"area"},{"arc":[{"x":171147,"y":173583},{"x":-22,"y":-38},{"x":77,"y":-159},{"x":-6,"y":-39},{"x":-73,"y":14},{"x":-88,"y":-58},{"x":-77,"y":37},{"x":-45,"y":-57},{"x":-255,"y":-93},{"x":-141,"y":27},{"x":-87,"y":-81},{"x":96,"y":-54},{"x":-33,"y":-36},{"x":-159,"y":-40},{"x":-18,"y":-187},{"x":46,"y":-23},{"x":-9,"y":-81},{"x":37,"y":-50},{"x":-43,"y":-215},{"x":48,"y":-148},{"x":-20,"y":-37}],"type":"area"},{"arc":[{"x":170375,"y":172265},{"x":34,"y":-103}],"type":"area"},{"arc":[{"x":170409,"y":172162},{"x":191,"y":57},{"x":25,"y":-123},{"x":60,"y":-23},{"x":55,"y":-65},{"x":59,"y":8},{"x":30,"y":-54},{"x":57,"y":47},{"x":155,"y":-28},{"x":95,"y":50},{"x":114,"y":-20},{"x":7,"y":-23},{"x":108,"y":-42},{"x":113,"y":8},{"x":56,"y":-56},{"x":9,"y":-56},{"x":90,"y":-57},{"x":50,"y":-5},{"x":63,"y":42},{"x":40,"y":-44},{"x":90,"y":-19},{"x":63,"y":16},{"x":91,"y":79},{"x":101,"y":-62},{"x":61,"y":142},{"x":-9,"y":57},{"x":116,"y":168},{"x":63,"y":40},{"x":-18,"y":81},{"x":105,"y":88},{"x":65,"y":-5},{"x":63,"y":51},{"x":57,"y":85},{"x":-6,"y":99},{"x":52,"y":10},{"x":98,"y":-69},{"x":128,"y":27},{"x":78,"y":89},{"x":43,"y":-10},{"x":17,"y":68},{"x":81,"y":47},{"x":19,"y":69},{"x":110,"y":27},{"x":41,"y":54},{"x":50,"y":15},{"x":127,"y":-10},{"x":26,"y":91},{"x":79,"y":21},{"x":84,"y":92},{"x":69,"y":28},{"x":123,"y":168},{"x":139,"y":89},{"x":37,"y":86},{"x":132,"y":84},{"x":35,"y":69}],"type":"admin"},{"arc":[{"x":171598,"y":177191},{"x":-77,"y":5},{"x":-54,"y":-71},{"x":-36,"y":-152},{"x":-168,"y":-83},{"x":-37,"y":1},{"x":-23,"y":65},{"x":-82,"y":-25},{"x":-76,"y":19},{"x":-8,"y":-93},{"x":-108,"y":-37},{"x":-29,"y":18},{"x":-23,"y":93},{"x":-33,"y":12},{"x":-5,"y":53},{"x":-87,"y":-20},{"x":-3,"y":-128},{"x":-51,"y":-44},{"x":-25,"y":-99},{"x":11,"y":-80}],"type":"area"},{"arc":[{"x":171287,"y":175013},{"x":-124,"y":7},{"x":-23,"y":-28},{"x":-15,"y":45},{"x":-31,"y":1},{"x":-72,"y":-30},{"x":-99,"y":-4},{"x":-137,"y":126}],"type":"area"},{"arc":[{"x":170633,"y":174859},{"x":19,"y":-180},{"x":-57,"y":-149},{"x":43,"y":-158},{"x":-37,"y":-82},{"x":-177,"y":-190},{"x":27,"y":-62}],"type":"area"},{"arc":[{"x":170451,"y":174038},{"x":75,"y":-22},{"x":102,"y":27},{"x":46,"y":-16},{"x":132,"y":-198},{"x":55,"y":10},{"x":40,"y":63},{"x":136,"y":1},{"x":33,"y":-133},{"x":62,"y":-31},{"x":-44,"y":-61},{"x":59,"y":-95}],"type":"area"},{"arc":[{"x":170451,"y":174038},{"x":-46,"y":-26},{"x":-71,"y":2},{"x":-134,"y":60},{"x":-103,"y":-65},{"x":-161,"y":2},{"x":1,"y":-42},{"x":-90,"y":-96},{"x":-68,"y":-27},{"x":33,"y":-106},{"x":-10,"y":20},{"x":-86,"y":-5},{"x":-46,"y":50},{"x":-142,"y":-16},{"x":-71,"y":39},{"x":-115,"y":143},{"x":-92,"y":-61},{"x":-59,"y":39},{"x":-68,"y":-6},{"x":-92,"y":43},{"x":-88,"y":-30},{"x":-117,"y":-105},{"x":-92,"y":-2},{"x":-17,"y":41},{"x":-103,"y":-40},{"x":-143,"y":-194},{"x":3,"y":-78},{"x":54,"y":-32},{"x":-13,"y":-36}],"type":"area"},{"arc":[{"x":168515,"y":173510},{"x":-108,"y":-161},{"x":-20,"y":-103},{"x":-60,"y":-57},{"x":-10,"y":-61},{"x":31,"y":-78},{"x":-26,"y":-21},{"x":16,"y":-60},{"x":85,"y":-47},{"x":52,"y":-89},{"x":67,"y":-26},{"x":48,"y":-67}],"type":"area"},{"arc":[{"x":168590,"y":172740},{"x":54,"y":114},{"x":177,"y":89},{"x":35,"y":70},{"x":179,"y":-132},{"x":148,"y":62},{"x":27,"y":-35},{"x":73,"y":23},{"x":77,"y":-15},{"x":20,"y":23},{"x":61,"y":-5},{"x":-5,"y":42},{"x":36,"y":38},{"x":84,"y":-9},{"x":19,"y":62},{"x":161,"y":140},{"x":67,"y":-52},{"x":54,"y":9},{"x":61,"y":-24},{"x":36,"y":128},{"x":-62,"y":3},{"x":2,"y":79},{"x":24,"y":120},{"x":41,"y":34},{"x":81,"y":-64},{"x":56,"y":-109},{"x":28,"y":6},{"x":58,"y":-40},{"x":40,"y":-250},{"x":-34,"y":-104},{"x":62,"y":-16},{"x":21,"y":-81},{"x":-14,"y":-60},{"x":-32,"y":-11},{"x":32,"y":-52},{"x":-44,"y":-82},{"x":-2,"y":-158},{"x":-44,"y":-151}],"type":"area"},{"arc":[{"x":170167,"y":172332},{"x":75,"y":-73},{"x":61,"y":19},{"x":72,"y":-13}],"type":"area"},{"arc":[{"x":168590,"y":172740},{"x":-27,"y":-237},{"x":89,"y":-110},{"x":3,"y":-45},{"x":109,"y":78},{"x":61,"y":-114}],"type":"area"},{"arc":[{"x":168825,"y":172312},{"x":82,"y":-53},{"x":9,"y":40},{"x":104,"y":-30},{"x":45,"y":-44},{"x":40,"y":18},{"x":101,"y":-17},{"x":54,"y":-50},{"x":40,"y":96},{"x":102,"y":65},{"x":57,"y":103},{"x":210,"y":39},{"x":46,"y":-13},{"x":-47,"y":-50},{"x":8,"y":-55},{"x":59,"y":-32},{"x":69,"y":-119},{"x":53,"y":33},{"x":38,"y":-29},{"x":53,"y":47},{"x":70,"y":9},{"x":65,"y":84},{"x":59,"y":5},{"x":25,"y":-27}],"type":"area"},{"arc":[{"x":168825,"y":172312},{"x":8,"y":-245},{"x":-34,"y":-28},{"x":2,"y":-38},{"x":33,"y":-52},{"x":-7,"y":-65},{"x":60,"y":-43},{"x":20,"y":-76},{"x":-16,"y":9},{"x":-25,"y":-64},{"x":-7,"y":-137},{"x":-145,"y":-122}],"type":"area"},{"arc":[{"x":169737,"y":170223},{"x":79,"y":91},{"x":114,"y":-18},{"x":108,"y":55},{"x":36,"y":-30},{"x":76,"y":9},{"x":55,"y":64},{"x":65,"y":-35},{"x":41,"y":6},{"x":63,"y":31},{"x":15,"y":141},{"x":42,"y":14},{"x":-19,"y":102},{"x":59,"y":187},{"x":-120,"y":92},{"x":-73,"y":104},{"x":97,"y":100},{"x":29,"y":113},{"x":-50,"y":175},{"x":75,"y":101},{"x":-27,"y":49},{"x":-4,"y":154},{"x":-34,"y":20},{"x":-97,"y":204},{"x":142,"y":210}],"type":"admin"},{"arc":[{"x":168515,"y":173510},{"x":-45,"y":-14},{"x":-59,"y":28},{"x":-67,"y":-23},{"x":-92,"y":96},{"x":-53,"y":4},{"x":-72,"y":56},{"x":-43,"y":60},{"x":-150,"y":9},{"x":-104,"y":59},{"x":-42,"y":-23},{"x":-21,"y":40},{"x":-50,"y":-8},{"x":-22,"y":36},{"x":-53,"y":-37},{"x":-31,"y":17}],"type":"area"},{"arc":[{"x":165112,"y":178011},{"x":153,"y":-138},{"x":-36,"y":-29},{"x":6,"y":-66},{"x":48,"y":-24},{"x":28,"y":-70},{"x":181,"y":-222},{"x":-36,"y":-89},{"x":76,"y":-244},{"x":-26,"y":-62},{"x":76,"y":-106},{"x":67,"y":-37},{"x":34,"y":-73},{"x":2,"y":-104},{"x":47,"y":-54},{"x":-47,"y":-68},{"x":104,"y":-511}],"type":"admin"},{"arc":[{"x":165789,"y":176114},{"x":11,"y":-47},{"x":58,"y":-16}],"type":"admin"},{"arc":[{"x":166307,"y":179485},{"x":-26,"y":70},{"x":-68,"y":15},{"x":-23,"y":32},{"x":-79,"y":178},{"x":-103,"y":19},{"x":-115,"y":-19},{"x":-25,"y":23},{"x":22,"y":-39},{"x":-49,"y":-22},{"x":7,"y":32},{"x":-72,"y":45},{"x":16,"y":42},{"x":-49,"y":71}],"type":"area"},{"arc":[{"x":165743,"y":179932},{"x":-77,"y":23},{"x":-12,"y":-21},{"x":-68,"y":2},{"x":-32,"y":31},{"x":-60,"y":1},{"x":-2,"y":-43},{"x":-19,"y":24}],"type":"area"},{"arc":[{"x":166046,"y":180628},{"x":-87,"y":4},{"x":-31,"y":-49},{"x":15,"y":-101},{"x":-166,"y":-97},{"x":-92,"y":-111},{"x":-172,"y":-21},{"x":-48,"y":27}],"type":"admin"},{"arc":[{"x":165743,"y":179932},{"x":42,"y":51},{"x":155,"y":51},{"x":9,"y":26},{"x":-35,"y":15},{"x":38,"y":5},{"x":-2,"y":23},{"x":-31,"y":6},{"x":-2,"y":41},{"x":54,"y":20},{"x":47,"y":120},{"x":83,"y":9},{"x":62,"y":59},{"x":-7,"y":94},{"x":32,"y":31},{"x":-43,"y":14},{"x":-17,"y":65},{"x":-4,"y":-26},{"x":-57,"y":8},{"x":-21,"y":84}],"type":"area"},{"arc":[{"x":166735,"y":180517},{"x":-62,"y":90},{"x":-18,"y":-30},{"x":-99,"y":13},{"x":-12,"y":-40},{"x":-50,"y":-20},{"x":-83,"y":66},{"x":-67,"y":-18},{"x":-115,"y":85}],"type":"admin"},{"arc":[{"x":166229,"y":180663},{"x":-132,"y":24},{"x":-51,"y":-59}],"type":"admin"},{"arc":[{"x":164370,"y":181095},{"x":-44,"y":60},{"x":-85,"y":11},{"x":-108,"y":55}],"type":"area"},{"arc":[{"x":164133,"y":181221},{"x":-37,"y":-21},{"x":11,"y":-71},{"x":-34,"y":-7},{"x":-24,"y":-45},{"x":6,"y":-76},{"x":-43,"y":-43},{"x":-7,"y":-58},{"x":-47,"y":-28},{"x":-12,"y":43},{"x":-16,"y":-32},{"x":28,"y":-65},{"x":39,"y":-26},{"x":106,"y":-11},{"x":19,"y":-45},{"x":-87,"y":-61},{"x":-58,"y":7},{"x":-15,"y":43},{"x":-34,"y":10},{"x":-6,"y":-55},{"x":-20,"y":61},{"x":-24,"y":-53},{"x":27,"y":-17},{"x":-53,"y":-33},{"x":-158,"y":12},{"x":-111,"y":71},{"x":-23,"y":-6},{"x":5,"y":-84},{"x":-108,"y":6},{"x":-11,"y":-42},{"x":91,"y":-63},{"x":-16,"y":-32},{"x":35,"y":-70},{"x":94,"y":-90},{"x":-127,"y":-80},{"x":-97,"y":-3},{"x":-9,"y":-52},{"x":-85,"y":-86},{"x":-4,"y":-69},{"x":-79,"y":-74},{"x":-45,"y":-162},{"x":22,"y":-59},{"x":78,"y":-35},{"x":18,"y":-57},{"x":-42,"y":-71},{"x":1,"y":-127},{"x":-113,"y":-18}],"type":"area"},{"arc":[{"x":163168,"y":179447},{"x":-69,"y":-63}],"type":"area"},{"arc":[{"x":163099,"y":179384},{"x":-64,"y":-109},{"x":40,"y":-91}],"type":"admin"},{"arc":[{"x":163075,"y":179184},{"x":53,"y":-26},{"x":76,"y":-193}],"type":"admin"},{"arc":[{"x":163204,"y":178965},{"x":33,"y":-25},{"x":75,"y":6},{"x":141,"y":123},{"x":44,"y":-8},{"x":93,"y":-89},{"x":63,"y":5},{"x":55,"y":70},{"x":67,"y":-8},{"x":35,"y":-64},{"x":35,"y":4},{"x":30,"y":-37},{"x":48,"y":-6},{"x":62,"y":60},{"x":63,"y":-12},{"x":-13,"y":67}],"type":"admin"},{"arc":[{"x":164937,"y":180309},{"x":10,"y":18},{"x":-105,"y":85},{"x":-55,"y":-2},{"x":-8,"y":21},{"x":38,"y":33},{"x":24,"y":-27},{"x":34,"y":12},{"x":12,"y":66},{"x":45,"y":-5},{"x":-5,"y":34},{"x":9,"y":-21},{"x":72,"y":35},{"x":12,"y":46},{"x":-27,"y":45},{"x":-94,"y":-16},{"x":-22,"y":-42},{"x":-150,"y":42},{"x":-53,"y":-30},{"x":-9,"y":30},{"x":-33,"y":-7},{"x":-49,"y":48},{"x":19,"y":66},{"x":-31,"y":38},{"x":-90,"y":23},{"x":29,"y":45},{"x":-56,"y":78},{"x":-91,"y":-87},{"x":-159,"y":10},{"x":3,"y":24},{"x":116,"y":56},{"x":47,"y":168}],"type":"admin"},{"arc":[{"x":161940,"y":181913},{"x":-46,"y":3},{"x":-48,"y":-97},{"x":-161,"y":-53},{"x":-4,"y":-98},{"x":-63,"y":-31},{"x":2,"y":-139},{"x":-111,"y":13},{"x":-74,"y":-90},{"x":-86,"y":-20},{"x":-67,"y":-154}],"type":"admin"},{"arc":[{"x":161282,"y":181247},{"x":70,"y":-19},{"x":17,"y":-49},{"x":45,"y":-5},{"x":12,"y":-35},{"x":74,"y":-32},{"x":3,"y":-30},{"x":157,"y":-91},{"x":-57,"y":-78},{"x":45,"y":-34},{"x":0,"y":-48},{"x":145,"y":-82},{"x":-22,"y":-50},{"x":26,"y":-29},{"x":1,"y":-151},{"x":70,"y":-162},{"x":115,"y":-3},{"x":180,"y":-88},{"x":74,"y":2},{"x":52,"y":40},{"x":166,"y":-75},{"x":27,"y":-144},{"x":-18,"y":-51},{"x":78,"y":-203},{"x":29,"y":-29},{"x":176,"y":-19},{"x":73,"y":-48},{"x":78,"y":-101},{"x":95,"y":-48},{"x":80,"y":-107},{"x":26,"y":-94}],"type":"admin"},{"arc":[{"x":163168,"y":179447},{"x":-54,"y":154},{"x":-141,"y":235},{"x":-76,"y":73},{"x":-191,"y":59},{"x":-39,"y":48},{"x":-52,"y":83},{"x":48,"y":125},{"x":-7,"y":65},{"x":-105,"y":48},{"x":-64,"y":139},{"x":37,"y":23},{"x":-10,"y":14},{"x":-40,"y":-20},{"x":-21,"y":47},{"x":67,"y":56},{"x":32,"y":121},{"x":34,"y":23},{"x":43,"y":-6},{"x":-3,"y":-35},{"x":296,"y":33},{"x":130,"y":-23},{"x":-46,"y":185},{"x":-142,"y":118},{"x":-128,"y":33},{"x":-68,"y":62},{"x":-151,"y":41},{"x":4,"y":89},{"x":-41,"y":52},{"x":-77,"y":-19},{"x":14,"y":73},{"x":-27,"y":80},{"x":-116,"y":12},{"x":-39,"y":65},{"x":33,"y":117},{"x":-71,"y":56},{"x":-115,"y":-16},{"x":-4,"y":70},{"x":-49,"y":9},{"x":2,"y":35},{"x":-54,"y":8},{"x":-51,"y":65},{"x":14,"y":69}],"type":"area"},{"arc":[{"x":163126,"y":182326},{"x":-29,"y":-9},{"x":-48,"y":35},{"x":-233,"y":-59},{"x":-5,"y":71},{"x":-102,"y":93},{"x":-136,"y":-10},{"x":-7,"y":28},{"x":-85,"y":34},{"x":-80,"y":77},{"x":-91,"y":-14}],"type":"admin"},{"arc":[{"x":162310,"y":182572},{"x":26,"y":-32},{"x":-88,"y":-63},{"x":14,"y":-76},{"x":-62,"y":-30},{"x":-13,"y":-52}],"type":"admin"},{"arc":[{"x":162187,"y":182319},{"x":4,"y":-71},{"x":-43,"y":-38},{"x":17,"y":-27},{"x":-40,"y":-77},{"x":8,"y":-91},{"x":-86,"y":-30},{"x":-47,"y":-74},{"x":-60,"y":2}],"type":"admin"},{"arc":[{"x":164133,"y":181221},{"x":-27,"y":45},{"x":-54,"y":-23},{"x":-28,"y":103},{"x":-133,"y":21},{"x":-84,"y":-59},{"x":-76,"y":-144},{"x":-70,"y":-4},{"x":-58,"y":-47},{"x":-36,"y":115},{"x":-113,"y":103},{"x":-71,"y":283},{"x":-128,"y":244},{"x":11,"y":97},{"x":-32,"y":60},{"x":36,"y":28},{"x":-2,"y":101},{"x":-53,"y":115},{"x":-44,"y":11},{"x":-45,"y":56}],"type":"area"},{"arc":[{"x":163226,"y":182512},{"x":-32,"y":-40},{"x":-2,"y":-69},{"x":-45,"y":-7},{"x":-21,"y":-70}],"type":"admin"},{"arc":[{"x":164370,"y":181095},{"x":24,"y":18},{"x":70,"y":-81},{"x":59,"y":10},{"x":50,"y":-60},{"x":97,"y":-6},{"x":14,"y":31},{"x":42,"y":4},{"x":39,"y":-68},{"x":122,"y":78},{"x":-15,"y":56},{"x":52,"y":65},{"x":-31,"y":109},{"x":19,"y":37}],"type":"admin"},{"arc":[{"x":164912,"y":181288},{"x":1,"y":74},{"x":-25,"y":22},{"x":37,"y":36},{"x":-14,"y":98},{"x":81,"y":27},{"x":9,"y":54}],"type":"admin"},{"arc":[{"x":165001,"y":181599},{"x":-45,"y":18},{"x":-25,"y":144},{"x":-29,"y":5},{"x":-19,"y":-28},{"x":-44,"y":22},{"x":-29,"y":52},{"x":-49,"y":12},{"x":-8,"y":58},{"x":-57,"y":22},{"x":40,"y":140},{"x":-123,"y":103},{"x":-7,"y":60},{"x":-177,"y":24},{"x":-80,"y":-44},{"x":-68,"y":36},{"x":-57,"y":-2},{"x":-40,"y":40},{"x":-236,"y":-14},{"x":-124,"y":168}],"type":"admin"},{"arc":[{"x":166366,"y":181583},{"x":-66,"y":26},{"x":-16,"y":56},{"x":-137,"y":82},{"x":-16,"y":44},{"x":26,"y":95},{"x":-50,"y":-13},{"x":-70,"y":75},{"x":-6,"y":-42},{"x":-31,"y":8},{"x":-47,"y":38},{"x":-19,"y":72}],"type":"area"},{"arc":[{"x":165934,"y":182024},{"x":-47,"y":-16},{"x":-85,"y":19},{"x":-93,"y":-133},{"x":-83,"y":0},{"x":-57,"y":55},{"x":-124,"y":-82},{"x":-115,"y":-182},{"x":-1,"y":-129},{"x":-165,"y":93},{"x":-22,"y":52},{"x":-141,"y":-102}],"type":"area"},{"arc":[{"x":164912,"y":181288},{"x":74,"y":-31},{"x":95,"y":15},{"x":90,"y":-44},{"x":113,"y":10},{"x":48,"y":-23},{"x":-52,"y":-55},{"x":5,"y":-96},{"x":45,"y":-113},{"x":87,"y":-75},{"x":23,"y":-53},{"x":-9,"y":-131},{"x":-35,"y":-11}],"type":"area"},{"arc":[{"x":166229,"y":180663},{"x":-36,"y":84},{"x":113,"y":35},{"x":1,"y":119},{"x":61,"y":23},{"x":27,"y":201},{"x":-53,"y":69},{"x":98,"y":4},{"x":51,"y":144},{"x":-16,"y":62},{"x":-114,"y":119},{"x":5,"y":60}],"type":"area"},{"arc":[{"x":167168,"y":181822},{"x":-65,"y":-4},{"x":-162,"y":-76},{"x":-61,"y":10},{"x":-60,"y":-41},{"x":-96,"y":57},{"x":-51,"y":-40},{"x":-51,"y":2},{"x":-174,"y":-118},{"x":-52,"y":16},{"x":-30,"y":-45}],"type":"area"},{"arc":[{"x":167377,"y":182220},{"x":-62,"y":-4},{"x":-65,"y":163},{"x":-55,"y":38},{"x":-23,"y":-15},{"x":-63,"y":24},{"x":-10,"y":78},{"x":57,"y":73},{"x":-63,"y":104},{"x":-152,"y":-5},{"x":-38,"y":-35},{"x":-45,"y":15},{"x":-39,"y":-31},{"x":-95,"y":62},{"x":-40,"y":-14},{"x":-43,"y":37},{"x":-7,"y":56},{"x":-115,"y":33}],"type":"area"},{"arc":[{"x":165918,"y":182787},{"x":0,"y":-194},{"x":-30,"y":-19},{"x":4,"y":-43},{"x":29,"y":-44},{"x":103,"y":-33},{"x":-18,"y":-60},{"x":44,"y":-94},{"x":-77,"y":-29},{"x":-49,"y":-59},{"x":10,"y":-188}],"type":"area"},{"arc":[{"x":166969,"y":186926},{"x":-6,"y":81},{"x":-70,"y":0},{"x":-3,"y":25},{"x":0,"y":-70},{"x":-4,"y":46},{"x":0,"y":-46},{"x":-45,"y":-4},{"x":-22,"y":51},{"x":111,"y":80},{"x":-113,"y":-66},{"x":1,"y":-104},{"x":-81,"y":-2},{"x":-174,"y":-77},{"x":-321,"y":-44}],"type":"coastline"},{"arc":[{"x":166964,"y":185531},{"x":-20,"y":101},{"x":122,"y":189},{"x":-77,"y":159},{"x":35,"y":74},{"x":-44,"y":62},{"x":54,"y":48},{"x":-11,"y":65},{"x":-35,"y":19},{"x":9,"y":40},{"x":-23,"y":-8},{"x":-15,"y":24},{"x":39,"y":24},{"x":-38,"y":77},{"x":28,"y":30},{"x":-10,"y":95},{"x":23,"y":27},{"x":-32,"y":200},{"x":38,"y":43},{"x":-32,"y":22},{"x":-6,"y":104}],"type":"area"},{"arc":[{"x":167922,"y":187082},{"x":-34,"y":11},{"x":71,"y":10},{"x":-47,"y":25},{"x":-24,"y":-33},{"x":0,"y":24},{"x":67,"y":72},{"x":-70,"y":-73},{"x":-1,"y":-65},{"x":-214,"y":-8},{"x":-473,"y":-112},{"x":-228,"y":-7}],"type":"coastline"},{"arc":[{"x":167427,"y":185524},{"x":4,"y":64},{"x":82,"y":18},{"x":29,"y":34},{"x":83,"y":-13},{"x":92,"y":189},{"x":87,"y":-20},{"x":14,"y":-41},{"x":44,"y":23},{"x":134,"y":-9},{"x":118,"y":40},{"x":23,"y":83},{"x":54,"y":40}],"type":"area"},{"arc":[{"x":168191,"y":185932},{"x":-33,"y":67},{"x":-2,"y":156},{"x":-100,"y":13},{"x":-14,"y":52},{"x":-47,"y":18},{"x":14,"y":39},{"x":-34,"y":50},{"x":-8,"y":106},{"x":-35,"y":32},{"x":-47,"y":175},{"x":-93,"y":101},{"x":-33,"y":112},{"x":46,"y":9},{"x":60,"y":-41},{"x":37,"y":20},{"x":5,"y":111},{"x":31,"y":29},{"x":-16,"y":101}],"type":"area"},{"arc":[{"x":168640,"y":187160},{"x":-99,"y":8},{"x":-17,"y":28},{"x":-94,"y":-60},{"x":-157,"y":-12},{"x":-64,"y":-48},{"x":-40,"y":33},{"x":29,"y":-36},{"x":-31,"y":26},{"x":-17,"y":-27},{"x":-2,"y":27},{"x":-6,"y":-32},{"x":-113,"y":-13},{"x":-28,"y":10},{"x":-14,"y":61},{"x":-31,"y":40},{"x":41,"y":-90},{"x":-75,"y":7}],"type":"coastline"},{"arc":[{"x":168191,"y":185932},{"x":88,"y":-94},{"x":53,"y":27},{"x":53,"y":-7},{"x":-14,"y":-24},{"x":40,"y":-52},{"x":65,"y":-16},{"x":49,"y":73},{"x":92,"y":-1},{"x":30,"y":21}],"type":"area"},{"arc":[{"x":168647,"y":185859},{"x":-4,"y":133},{"x":31,"y":-5},{"x":42,"y":52},{"x":9,"y":51},{"x":-23,"y":12},{"x":72,"y":165},{"x":-42,"y":17},{"x":-13,"y":355},{"x":-66,"y":72},{"x":18,"y":175},{"x":-26,"y":68},{"x":44,"y":47},{"x":-49,"y":159}],"type":"area"},{"arc":[{"x":168816,"y":185342},{"x":-36,"y":14},{"x":-38,"y":114},{"x":34,"y":57},{"x":-86,"y":108},{"x":-11,"y":184},{"x":-32,"y":40}],"type":"area"},{"arc":[{"x":169320,"y":187152},{"x":-37,"y":-1},{"x":-1,"y":19},{"x":-51,"y":0},{"x":44,"y":65},{"x":-46,"y":-60},{"x":-9,"y":-33},{"x":-410,"y":2},{"x":-54,"y":33},{"x":-116,"y":-17}],"type":"coastline"},{"arc":[{"x":169251,"y":185279},{"x":-14,"y":43},{"x":26,"y":27},{"x":-36,"y":79},{"x":28,"y":51},{"x":43,"y":9},{"x":66,"y":70},{"x":-14,"y":52},{"x":50,"y":89}],"type":"area"},{"arc":[{"x":169400,"y":185699},{"x":-87,"y":29},{"x":3,"y":57},{"x":-35,"y":45},{"x":22,"y":113},{"x":-40,"y":252},{"x":-44,"y":46},{"x":-32,"y":138},{"x":34,"y":335},{"x":53,"y":7},{"x":42,"y":78},{"x":94,"y":42},{"x":-96,"y":139},{"x":6,"y":172}],"type":"area"},{"arc":[{"x":169820,"y":187175},{"x":-161,"y":6},{"x":-4,"y":16},{"x":-286,"y":-49},{"x":-5,"y":20},{"x":-52,"y":4},{"x":-33,"y":42},{"x":33,"y":-43},{"x":51,"y":-5},{"x":-43,"y":-14}],"type":"coastline"},{"arc":[{"x":169400,"y":185699},{"x":137,"y":-11},{"x":64,"y":101},{"x":1,"y":117},{"x":-40,"y":28},{"x":-37,"y":92},{"x":55,"y":244},{"x":81,"y":64},{"x":101,"y":22},{"x":35,"y":94},{"x":38,"y":-17},{"x":11,"y":129},{"x":107,"y":162},{"x":-9,"y":165},{"x":-37,"y":12},{"x":25,"y":31},{"x":-66,"y":56},{"x":-9,"y":63},{"x":-104,"y":67},{"x":10,"y":18},{"x":33,"y":-14},{"x":24,"y":53}],"type":"area"},{"arc":[{"x":170419,"y":187149},{"x":-131,"y":42},{"x":-240,"y":22},{"x":-5,"y":46},{"x":1,"y":-42},{"x":-33,"y":1},{"x":22,"y":22},{"x":-22,"y":14},{"x":-30,"y":-39},{"x":8,"y":51},{"x":-19,"y":-63},{"x":-150,"y":-28}],"type":"coastline"},{"arc":[{"x":169762,"y":185093},{"x":89,"y":51},{"x":135,"y":-13},{"x":66,"y":-34},{"x":202,"y":-12},{"x":-36,"y":105},{"x":16,"y":47},{"x":47,"y":22},{"x":187,"y":-14},{"x":112,"y":-53},{"x":190,"y":-2},{"x":-57,"y":-100},{"x":45,"y":-82},{"x":-62,"y":-91},{"x":13,"y":-130},{"x":-47,"y":-47},{"x":32,"y":-69},{"x":-53,"y":-54},{"x":90,"y":-78},{"x":2,"y":-186},{"x":66,"y":-75},{"x":-32,"y":-82},{"x":-66,"y":26},{"x":-42,"y":-17},{"x":134,"y":-464},{"x":-6,"y":-220}],"type":"area"},{"arc":[{"x":171529,"y":183878},{"x":-8,"y":113},{"x":35,"y":144},{"x":-21,"y":108},{"x":-46,"y":38},{"x":-20,"y":133},{"x":35,"y":122},{"x":-77,"y":117},{"x":32,"y":43},{"x":-2,"y":61},{"x":37,"y":-4},{"x":70,"y":114},{"x":134,"y":10}],"type":"area"},{"arc":[{"x":175259,"y":186080},{"x":-211,"y":23},{"x":-44,"y":44},{"x":-8,"y":-24},{"x":-16,"y":27},{"x":-26,"y":-16},{"x":26,"y":22},{"x":-113,"y":10},{"x":-152,"y":71},{"x":62,"y":35},{"x":35,"y":131},{"x":-19,"y":55},{"x":0,"y":-123},{"x":-38,"y":11},{"x":-14,"y":-78},{"x":-115,"y":32},{"x":15,"y":57},{"x":-30,"y":8},{"x":-26,"y":-58},{"x":-29,"y":8},{"x":15,"y":14},{"x":-3,"y":74},{"x":-2,"y":-34}],"type":"coastline"},{"arc":[{"x":157097,"y":180737},{"x":-47,"y":37},{"x":-27,"y":-17},{"x":-56,"y":76},{"x":-62,"y":28},{"x":38,"y":44},{"x":-17,"y":23},{"x":46,"y":-1},{"x":13,"y":160},{"x":-120,"y":64},{"x":-74,"y":-3},{"x":-25,"y":52},{"x":-54,"y":-29},{"x":-53,"y":45},{"x":-25,"y":-40},{"x":28,"y":-36},{"x":-16,"y":-15},{"x":-138,"y":70},{"x":-33,"y":44},{"x":-15,"y":-14},{"x":-145,"y":134},{"x":107,"y":96}],"type":"area"},{"arc":[{"x":156422,"y":181455},{"x":-48,"y":-19},{"x":-46,"y":16},{"x":-30,"y":51},{"x":-97,"y":-40},{"x":-42,"y":27},{"x":-42,"y":-31},{"x":-15,"y":52},{"x":-96,"y":36},{"x":87,"y":59},{"x":10,"y":44},{"x":-100,"y":81},{"x":-80,"y":116},{"x":-109,"y":322},{"x":-38,"y":-4},{"x":19,"y":30},{"x":-93,"y":75},{"x":-78,"y":147},{"x":-99,"y":102}],"type":"area"},{"arc":[{"x":155525,"y":182519},{"x":-17,"y":-54},{"x":-101,"y":-66},{"x":3,"y":-40},{"x":-64,"y":-44},{"x":-31,"y":-61},{"x":-86,"y":-21},{"x":13,"y":-68},{"x":60,"y":-26},{"x":0,"y":-58},{"x":-175,"y":-140}],"type":"admin"},{"arc":[{"x":155127,"y":181941},{"x":17,"y":-100},{"x":-59,"y":-70},{"x":-5,"y":-57},{"x":38,"y":4},{"x":-45,"y":-12},{"x":11,"y":-54},{"x":49,"y":-56},{"x":98,"y":-44},{"x":106,"y":-4},{"x":-18,"y":-27},{"x":26,"y":-64},{"x":-32,"y":-27},{"x":28,"y":-50},{"x":-71,"y":-14},{"x":-18,"y":-39},{"x":13,"y":-61},{"x":44,"y":-6},{"x":29,"y":-39},{"x":-56,"y":-38},{"x":40,"y":-156},{"x":-59,"y":3},{"x":-6,"y":-184},{"x":195,"y":-63},{"x":81,"y":-90},{"x":95,"y":13},{"x":10,"y":-46},{"x":-164,"y":-63},{"x":-13,"y":15},{"x":-27,"y":-25},{"x":48,"y":-47},{"x":-94,"y":-100},{"x":-72,"y":23},{"x":-45,"y":75},{"x":-30,"y":3},{"x":-22,"y":-48},{"x":8,"y":-221}],"type":"admin"},{"arc":[{"x":155227,"y":180272},{"x":138,"y":-260},{"x":109,"y":-47},{"x":40,"y":-66},{"x":24,"y":-1},{"x":-37,"y":42},{"x":37,"y":18},{"x":29,"y":-55},{"x":54,"y":-7},{"x":84,"y":18},{"x":27,"y":33},{"x":39,"y":-8},{"x":69,"y":56},{"x":167,"y":-68},{"x":101,"y":-143},{"x":126,"y":-5},{"x":41,"y":94},{"x":-21,"y":149},{"x":65,"y":92},{"x":59,"y":14},{"x":80,"y":-57},{"x":109,"y":-3},{"x":31,"y":-90},{"x":97,"y":-40}],"type":"area"},{"arc":[{"x":156695,"y":179938},{"x":43,"y":97},{"x":-7,"y":124},{"x":-40,"y":18},{"x":92,"y":100},{"x":-107,"y":11},{"x":-14,"y":32},{"x":90,"y":50},{"x":-8,"y":42},{"x":49,"y":1},{"x":7,"y":86},{"x":55,"y":75},{"x":71,"y":-35},{"x":46,"y":-96},{"x":169,"y":-47},{"x":-30,"y":136},{"x":-58,"y":25},{"x":-33,"y":80},{"x":-88,"y":54},{"x":55,"y":18},{"x":7,"y":-38},{"x":67,"y":10},{"x":36,"y":56}],"type":"admin"},{"arc":[{"x":157421,"y":182967},{"x":-64,"y":36},{"x":61,"y":-39},{"x":109,"y":8},{"x":-106,"y":-5}],"type":"coastline"},{"arc":[{"x":160029,"y":183860},{"x":-234,"y":-23},{"x":-157,"y":24},{"x":-6,"y":-29},{"x":-80,"y":-56},{"x":-8,"y":-67},{"x":-50,"y":-7},{"x":-10,"y":-23},{"x":13,"y":34},{"x":-22,"y":-18},{"x":2,"y":-40},{"x":-101,"y":-49},{"x":-253,"y":-25},{"x":-78,"y":-98},{"x":-220,"y":-89},{"x":-36,"y":-52},{"x":-181,"y":-55},{"x":-37,"y":13},{"x":-21,"y":-22},{"x":18,"y":4},{"x":-3,"y":11},{"x":17,"y":6},{"x":12,"y":-15},{"x":-3,"y":-15},{"x":-27,"y":4},{"x":7,"y":-28},{"x":-23,"y":14},{"x":13,"y":-27},{"x":-46,"y":-30},{"x":-272,"y":-94},{"x":-130,"y":28},{"x":16,"y":-24},{"x":-24,"y":13},{"x":11,"y":-34},{"x":-50,"y":-40},{"x":-206,"y":-50},{"x":-71,"y":7},{"x":-26,"y":-25},{"x":-54,"y":17},{"x":-78,"y":-39},{"x":-15,"y":15},{"x":-41,"y":-15},{"x":41,"y":13},{"x":15,"y":-18},{"x":-48,"y":-5},{"x":9,"y":-26},{"x":-61,"y":24},{"x":13,"y":-40},{"x":-34,"y":-3},{"x":23,"y":-21},{"x":-59,"y":-46},{"x":-27,"y":40},{"x":-26,"y":-9},{"x":13,"y":-83},{"x":-39,"y":-14},{"x":-32,"y":125},{"x":20,"y":50},{"x":-42,"y":-93},{"x":37,"y":-32},{"x":-18,"y":-23}],"type":"coastline"},{"arc":[{"x":157360,"y":182800},{"x":11,"y":-120},{"x":87,"y":-116},{"x":58,"y":-5},{"x":-5,"y":-88},{"x":28,"y":-52},{"x":-20,"y":-112}],"type":"admin"},{"arc":[{"x":157519,"y":182307},{"x":5,"y":-67}],"type":"area"},{"arc":[{"x":157524,"y":182240},{"x":50,"y":24},{"x":60,"y":-41},{"x":-7,"y":35},{"x":29,"y":34},{"x":35,"y":-2},{"x":-11,"y":103},{"x":88,"y":-11},{"x":-6,"y":31},{"x":55,"y":17},{"x":-14,"y":34},{"x":-50,"y":19},{"x":24,"y":91},{"x":61,"y":-20},{"x":24,"y":102},{"x":26,"y":-9},{"x":24,"y":25},{"x":145,"y":-52},{"x":24,"y":-47},{"x":59,"y":-21},{"x":129,"y":25},{"x":60,"y":-65},{"x":77,"y":-8},{"x":13,"y":-31},{"x":108,"y":10},{"x":-4,"y":-51},{"x":88,"y":19},{"x":68,"y":-23},{"x":73,"y":41},{"x":41,"y":-12},{"x":50,"y":51},{"x":42,"y":-7},{"x":59,"y":34},{"x":59,"y":-58},{"x":120,"y":52},{"x":6,"y":-77},{"x":36,"y":-46},{"x":-35,"y":-103},{"x":7,"y":-86},{"x":-36,"y":-42},{"x":25,"y":-45},{"x":-103,"y":-66},{"x":84,"y":-50},{"x":86,"y":-5},{"x":25,"y":-44},{"x":156,"y":-97},{"x":33,"y":-66},{"x":103,"y":4},{"x":-19,"y":100},{"x":10,"y":35},{"x":65,"y":35},{"x":-19,"y":70},{"x":145,"y":-1},{"x":20,"y":92},{"x":55,"y":-27},{"x":9,"y":20},{"x":80,"y":8},{"x":32,"y":-67},{"x":15,"y":21},{"x":87,"y":-63},{"x":98,"y":-20},{"x":50,"y":55},{"x":100,"y":-19},{"x":56,"y":143}],"type":"area"},{"arc":[{"x":160294,"y":182188},{"x":13,"y":33},{"x":-44,"y":33},{"x":-33,"y":97},{"x":-49,"y":27},{"x":-16,"y":268},{"x":-43,"y":79},{"x":84,"y":42},{"x":44,"y":101},{"x":-6,"y":32},{"x":-68,"y":40},{"x":8,"y":55},{"x":-54,"y":27},{"x":69,"y":153},{"x":-31,"y":53},{"x":27,"y":78},{"x":-89,"y":106},{"x":17,"y":65},{"x":-44,"y":109},{"x":29,"y":107},{"x":-79,"y":167}],"type":"area"},{"arc":[{"x":153439,"y":178277},{"x":-66,"y":8},{"x":-51,"y":177},{"x":-49,"y":62},{"x":-175,"y":66},{"x":-43,"y":-7},{"x":-153,"y":-128},{"x":-47,"y":276},{"x":-31,"y":33},{"x":-13,"y":239},{"x":-32,"y":94},{"x":-35,"y":-10},{"x":-42,"y":97},{"x":12,"y":74},{"x":-53,"y":65},{"x":28,"y":13},{"x":20,"y":-19},{"x":-6,"y":34},{"x":-26,"y":-6},{"x":-17,"y":32},{"x":-36,"y":-5},{"x":36,"y":-3},{"x":-15,"y":-18},{"x":-49,"y":42},{"x":-30,"y":-47},{"x":-104,"y":-26},{"x":-4,"y":-46},{"x":47,"y":-27},{"x":-24,"y":-86},{"x":-34,"y":-24},{"x":-31,"y":25},{"x":-36,"y":-9},{"x":-27,"y":55},{"x":-427,"y":-44}],"type":"area"},{"arc":[{"x":151926,"y":179164},{"x":39,"y":-209},{"x":-2,"y":-318},{"x":-37,"y":-33},{"x":-45,"y":23},{"x":-57,"y":-86},{"x":-41,"y":-17},{"x":4,"y":-95},{"x":-131,"y":-25},{"x":120,"y":-163},{"x":-57,"y":-36},{"x":-3,"y":23},{"x":-56,"y":-10},{"x":-45,"y":25},{"x":-23,"y":-55},{"x":-119,"y":-2},{"x":62,"y":-41},{"x":-83,"y":-53}],"type":"admin"},{"arc":[{"x":151452,"y":178092},{"x":167,"y":-148}],"type":"area"},{"arc":[{"x":151619,"y":177944},{"x":222,"y":-63},{"x":-4,"y":56},{"x":76,"y":33},{"x":23,"y":57},{"x":77,"y":56},{"x":46,"y":56},{"x":-23,"y":71},{"x":62,"y":7},{"x":-1,"y":25},{"x":98,"y":-117},{"x":9,"y":-59},{"x":169,"y":18},{"x":52,"y":-72},{"x":22,"y":19},{"x":10,"y":-24},{"x":34,"y":7},{"x":13,"y":57},{"x":87,"y":17},{"x":18,"y":32},{"x":92,"y":-114},{"x":5,"y":-123},{"x":158,"y":-140},{"x":63,"y":24},{"x":13,"y":-27},{"x":43,"y":4},{"x":16,"y":27},{"x":2,"y":41},{"x":-24,"y":-7},{"x":-55,"y":69},{"x":31,"y":72},{"x":22,"y":-50},{"x":88,"y":-48},{"x":21,"y":60},{"x":158,"y":7},{"x":81,"y":-49},{"x":19,"y":-57},{"x":42,"y":-12},{"x":100,"y":75}],"type":"area"},{"arc":[{"x":153484,"y":177872},{"x":-52,"y":80},{"x":52,"y":124},{"x":-61,"y":119},{"x":16,"y":82}],"type":"area"},{"arc":[{"x":153965,"y":174942},{"x":-91,"y":-3},{"x":-99,"y":99},{"x":-82,"y":28},{"x":-57,"y":-27},{"x":-1,"y":-29},{"x":-122,"y":16},{"x":23,"y":-59},{"x":83,"y":-23},{"x":-44,"y":-36},{"x":-175,"y":37},{"x":-103,"y":-37},{"x":-68,"y":41},{"x":-35,"y":-10},{"x":-10,"y":31},{"x":-57,"y":-4}],"type":"admin"},{"arc":[{"x":153127,"y":174966},{"x":11,"y":-36},{"x":-31,"y":-39},{"x":52,"y":-38},{"x":7,"y":-101},{"x":60,"y":-52},{"x":1,"y":-36},{"x":-18,"y":-15},{"x":-46,"y":34},{"x":43,"y":1},{"x":-34,"y":24},{"x":-45,"y":-33},{"x":-74,"y":13}],"type":"area"},{"arc":[{"x":153053,"y":174688},{"x":-57,"y":-160},{"x":24,"y":-79},{"x":138,"y":7},{"x":23,"y":-38},{"x":56,"y":-10},{"x":-15,"y":-153},{"x":-31,"y":-25},{"x":25,"y":-30},{"x":-8,"y":-60},{"x":-51,"y":-17},{"x":-86,"y":73},{"x":-112,"y":-16},{"x":13,"y":-127},{"x":45,"y":-60},{"x":-125,"y":-7},{"x":-31,"y":-25}],"type":"admin"},{"arc":[{"x":152861,"y":173961},{"x":74,"y":-131},{"x":3,"y":-261},{"x":47,"y":-114}],"type":"admin"},{"arc":[{"x":152985,"y":173455},{"x":116,"y":-73}],"type":"admin"},{"arc":[{"x":153101,"y":173382},{"x":152,"y":-75},{"x":194,"y":-48},{"x":229,"y":32},{"x":61,"y":-61},{"x":55,"y":-4}],"type":"admin"},{"arc":[{"x":153792,"y":173226},{"x":30,"y":9}],"type":"admin"},{"arc":[{"x":153822,"y":173235},{"x":57,"y":44},{"x":-1,"y":57},{"x":-33,"y":1},{"x":-26,"y":80},{"x":67,"y":20},{"x":43,"y":-15},{"x":-11,"y":93},{"x":24,"y":32},{"x":-49,"y":11},{"x":-23,"y":77},{"x":-54,"y":0},{"x":120,"y":214},{"x":103,"y":122},{"x":108,"y":266}],"type":"admin"},{"arc":[{"x":154147,"y":174237},{"x":151,"y":371}],"type":"admin"},{"arc":[{"x":154298,"y":174608},{"x":-62,"y":7},{"x":-193,"y":-68},{"x":-181,"y":68},{"x":-55,"y":89},{"x":210,"y":-26},{"x":30,"y":124},{"x":39,"y":25},{"x":-3,"y":19},{"x":-84,"y":15},{"x":-34,"y":81}],"type":"area"},{"arc":[{"x":154720,"y":179596},{"x":-106,"y":120},{"x":-19,"y":-187},{"x":-118,"y":-16},{"x":21,"y":-31},{"x":-8,"y":-129},{"x":-31,"y":14},{"x":-62,"y":-48},{"x":-251,"y":-53},{"x":-57,"y":32},{"x":-35,"y":102},{"x":-127,"y":157},{"x":-10,"y":119},{"x":-104,"y":21},{"x":-22,"y":51},{"x":-100,"y":85},{"x":25,"y":90},{"x":-61,"y":87},{"x":-44,"y":8},{"x":-8,"y":-34},{"x":44,"y":-112},{"x":-56,"y":-141},{"x":23,"y":-88},{"x":-64,"y":-9},{"x":-25,"y":20},{"x":-8,"y":68},{"x":-46,"y":-7},{"x":16,"y":-26},{"x":-32,"y":-46},{"x":-99,"y":-16},{"x":-118,"y":28},{"x":-110,"y":212},{"x":-209,"y":160}],"type":"area"},{"arc":[{"x":152919,"y":180027},{"x":-41,"y":-152},{"x":-29,"y":-16},{"x":107,"y":-290},{"x":-28,"y":-50},{"x":39,"y":-326},{"x":-20,"y":-196},{"x":162,"y":128},{"x":72,"y":94},{"x":88,"y":42},{"x":69,"y":-18},{"x":-25,"y":32},{"x":36,"y":69},{"x":104,"y":-55},{"x":24,"y":-89},{"x":49,"y":25},{"x":52,"y":-62},{"x":-34,"y":-13},{"x":20,"y":-14},{"x":-29,"y":-26},{"x":-22,"y":6},{"x":7,"y":-40},{"x":89,"y":34},{"x":62,"y":-113},{"x":56,"y":-22},{"x":29,"y":-46},{"x":67,"y":8},{"x":42,"y":-38},{"x":54,"y":-278},{"x":-85,"y":6},{"x":-105,"y":144},{"x":-28,"y":-12},{"x":-4,"y":-140},{"x":-83,"y":-24},{"x":-47,"y":-144},{"x":-101,"y":-101},{"x":-27,"y":-73}],"type":"area"},{"arc":[{"x":153484,"y":177872},{"x":61,"y":-7},{"x":117,"y":-89},{"x":40,"y":27},{"x":78,"y":-34},{"x":24,"y":23},{"x":139,"y":-81},{"x":80,"y":8},{"x":64,"y":-70},{"x":46,"y":24},{"x":16,"y":-68},{"x":44,"y":-12}],"type":"area"},{"arc":[{"x":154193,"y":177593},{"x":154,"y":170},{"x":-5,"y":61},{"x":50,"y":-2},{"x":32,"y":-33},{"x":99,"y":57},{"x":116,"y":-7},{"x":94,"y":112},{"x":169,"y":77},{"x":81,"y":-26},{"x":56,"y":-62},{"x":99,"y":-7},{"x":44,"y":67},{"x":84,"y":51},{"x":67,"y":168},{"x":-5,"y":100}],"type":"area"},{"arc":[{"x":155328,"y":178319},{"x":-44,"y":125},{"x":56,"y":98},{"x":-50,"y":40},{"x":-10,"y":64},{"x":-84,"y":36},{"x":-78,"y":71},{"x":-108,"y":15},{"x":-111,"y":97},{"x":-50,"y":50},{"x":12,"y":111},{"x":-145,"y":91},{"x":-18,"y":74},{"x":-42,"y":33},{"x":33,"y":74},{"x":-27,"y":167},{"x":58,"y":131}],"type":"area"},{"arc":[{"x":155044,"y":175449},{"x":-77,"y":-26},{"x":-11,"y":-33},{"x":-7,"y":47},{"x":-46,"y":-2},{"x":-30,"y":52},{"x":-69,"y":18},{"x":-75,"y":-57},{"x":-51,"y":6},{"x":-73,"y":-35},{"x":-36,"y":-58},{"x":-101,"y":-65},{"x":-178,"y":169},{"x":-56,"y":12}],"type":"area"},{"arc":[{"x":154234,"y":175477},{"x":-16,"y":-83},{"x":-61,"y":27},{"x":-19,"y":-26},{"x":-47,"y":5},{"x":46,"y":-65},{"x":-8,"y":-39},{"x":-146,"y":26},{"x":-32,"y":-58},{"x":50,"y":-88},{"x":67,"y":-52},{"x":-82,"y":-70},{"x":66,"y":-85},{"x":-46,"y":5},{"x":7,"y":-23},{"x":-48,"y":-9}],"type":"admin"},{"arc":[{"x":154298,"y":174608},{"x":116,"y":59},{"x":199,"y":44},{"x":143,"y":104},{"x":223,"y":-65},{"x":227,"y":141},{"x":-9,"y":93},{"x":61,"y":69},{"x":-22,"y":56},{"x":86,"y":53},{"x":32,"y":-6},{"x":-2,"y":63},{"x":-30,"y":19},{"x":-124,"y":-40},{"x":-13,"y":186},{"x":-44,"y":25},{"x":-26,"y":-50},{"x":-29,"y":0},{"x":-23,"y":33},{"x":17,"y":25},{"x":-36,"y":32}],"type":"admin"},{"arc":[{"x":150589,"y":178244},{"x":-26,"y":21},{"x":-1,"y":-26},{"x":27,"y":5}],"type":"area"},{"arc":[{"x":151010,"y":177638},{"x":-191,"y":13},{"x":-76,"y":44},{"x":25,"y":61},{"x":-94,"y":28},{"x":-133,"y":222},{"x":105,"y":74},{"x":59,"y":-1},{"x":-180,"y":167},{"x":-120,"y":16},{"x":189,"y":97},{"x":120,"y":25},{"x":-33,"y":66},{"x":142,"y":12},{"x":-215,"y":340},{"x":4,"y":156},{"x":-96,"y":128},{"x":-38,"y":12}],"type":"area"},{"arc":[{"x":150478,"y":179098},{"x":-91,"y":53},{"x":-32,"y":-81},{"x":-205,"y":-62},{"x":-65,"y":13}],"type":"area"},{"arc":[{"x":150085,"y":179021},{"x":-53,"y":-124},{"x":-34,"y":-6},{"x":-130,"y":-209},{"x":-65,"y":-1},{"x":-35,"y":-58},{"x":-36,"y":13},{"x":-19,"y":-46},{"x":35,"y":-31},{"x":-13,"y":-38},{"x":-16,"y":-15},{"x":-40,"y":31}],"type":"admin"},{"arc":[{"x":149679,"y":178537},{"x":-29,"y":-56},{"x":203,"y":-118},{"x":-23,"y":-32},{"x":29,"y":-43},{"x":-42,"y":-87},{"x":18,"y":-51},{"x":-98,"y":-31},{"x":-4,"y":-161},{"x":28,"y":-61},{"x":-20,"y":-54},{"x":32,"y":-74}],"type":"admin"},{"arc":[{"x":149773,"y":177769},{"x":37,"y":37},{"x":78,"y":-6},{"x":-48,"y":47},{"x":73,"y":103},{"x":-3,"y":84},{"x":29,"y":-21},{"x":12,"y":34},{"x":15,"y":-52},{"x":72,"y":28},{"x":7,"y":-30},{"x":77,"y":-18},{"x":7,"y":-50},{"x":122,"y":-150},{"x":85,"y":3},{"x":-5,"y":28},{"x":49,"y":20},{"x":28,"y":-26},{"x":48,"y":22},{"x":150,"y":-187}],"type":"area"},{"arc":[{"x":150606,"y":177635},{"x":142,"y":-206},{"x":183,"y":-71},{"x":120,"y":12}],"type":"area"},{"arc":[{"x":151051,"y":177370},{"x":-116,"y":37},{"x":-79,"y":-16},{"x":-154,"y":115},{"x":-103,"y":212},{"x":63,"y":-65},{"x":72,"y":-5},{"x":83,"y":-62},{"x":165,"y":18},{"x":92,"y":-47},{"x":36,"y":7},{"x":35,"y":-53},{"x":136,"y":-95},{"x":82,"y":25},{"x":-7,"y":31},{"x":-92,"y":-2},{"x":-190,"y":153},{"x":-64,"y":15}],"type":"area"},{"arc":[{"x":153790,"y":176829},{"x":-57,"y":16},{"x":44,"y":-61},{"x":-37,"y":-1},{"x":-49,"y":-129},{"x":-27,"y":34},{"x":-30,"y":-35},{"x":-55,"y":43},{"x":-30,"y":-29},{"x":-16,"y":40},{"x":-46,"y":-26},{"x":11,"y":-51},{"x":-45,"y":-40},{"x":-9,"y":-59},{"x":-137,"y":-8},{"x":-67,"y":-49},{"x":-47,"y":35},{"x":-124,"y":-21},{"x":-87,"y":-56}],"type":"area"},{"arc":[{"x":152982,"y":176432},{"x":18,"y":-57},{"x":-51,"y":-34},{"x":34,"y":9},{"x":92,"y":-202},{"x":-1,"y":-103},{"x":54,"y":-15},{"x":-36,"y":-73},{"x":-77,"y":0},{"x":-18,"y":-34},{"x":7,"y":-101},{"x":-37,"y":-19},{"x":36,"y":-46},{"x":-31,"y":-7},{"x":-32,"y":-88},{"x":104,"y":-15},{"x":66,"y":-38}],"type":"area"},{"arc":[{"x":153110,"y":175609},{"x":109,"y":8},{"x":40,"y":40},{"x":2,"y":-67},{"x":39,"y":-25},{"x":100,"y":60},{"x":8,"y":51},{"x":-45,"y":84},{"x":-54,"y":-14},{"x":-48,"y":-70},{"x":-79,"y":17},{"x":12,"y":93},{"x":41,"y":17},{"x":-26,"y":35},{"x":169,"y":39},{"x":103,"y":-104},{"x":182,"y":29},{"x":75,"y":-23},{"x":2,"y":-126},{"x":167,"y":-79},{"x":123,"y":17},{"x":151,"y":-116}],"type":"admin"},{"arc":[{"x":154181,"y":175475},{"x":27,"y":154},{"x":24,"y":-33},{"x":24,"y":13},{"x":37,"y":54},{"x":-8,"y":37},{"x":58,"y":3},{"x":28,"y":93},{"x":-16,"y":29},{"x":-166,"y":35},{"x":-39,"y":81},{"x":15,"y":57},{"x":80,"y":-5},{"x":12,"y":-20},{"x":17,"y":17},{"x":-149,"y":36},{"x":5,"y":30},{"x":-55,"y":61},{"x":142,"y":25},{"x":-40,"y":1},{"x":-3,"y":91},{"x":50,"y":20},{"x":-2,"y":49},{"x":-51,"y":39},{"x":-8,"y":76},{"x":123,"y":17},{"x":-196,"y":6},{"x":-11,"y":41},{"x":-70,"y":-4},{"x":-13,"y":25},{"x":-37,"y":-24},{"x":-52,"y":20},{"x":-23,"y":-32},{"x":-25,"y":46},{"x":20,"y":66},{"x":-37,"y":28},{"x":44,"y":67},{"x":-110,"y":50},{"x":38,"y":81},{"x":-24,"y":24}],"type":"area"},{"arc":[{"x":152982,"y":176432},{"x":-51,"y":17},{"x":-43,"y":-40},{"x":-31,"y":4},{"x":-62,"y":70},{"x":-93,"y":-9},{"x":-59,"y":-48},{"x":-86,"y":55},{"x":12,"y":36},{"x":-46,"y":29},{"x":-55,"y":-19},{"x":-63,"y":-93},{"x":-116,"y":63},{"x":-53,"y":7},{"x":-6,"y":-38},{"x":-27,"y":2},{"x":-30,"y":104},{"x":-69,"y":-60},{"x":-35,"y":34},{"x":-8,"y":-36},{"x":-14,"y":48},{"x":-32,"y":4},{"x":26,"y":50},{"x":-200,"y":117}],"type":"area"},{"arc":[{"x":151841,"y":176729},{"x":-111,"y":2},{"x":-36,"y":24},{"x":-49,"y":-36},{"x":-41,"y":-145},{"x":-28,"y":16},{"x":-25,"y":-50},{"x":-47,"y":-23},{"x":16,"y":-27},{"x":-32,"y":-22},{"x":23,"y":-19},{"x":-44,"y":-25},{"x":-4,"y":-34},{"x":-43,"y":12},{"x":2,"y":-39},{"x":-91,"y":67},{"x":12,"y":47},{"x":-66,"y":-5},{"x":13,"y":-82},{"x":-67,"y":-76},{"x":19,"y":-45},{"x":27,"y":21},{"x":7,"y":-34},{"x":72,"y":-14},{"x":-40,"y":-76},{"x":-110,"y":43},{"x":-46,"y":-38},{"x":-130,"y":20},{"x":-42,"y":-35}],"type":"area"},{"arc":[{"x":150980,"y":176156},{"x":-35,"y":-80},{"x":35,"y":-69},{"x":16,"y":-159},{"x":-46,"y":-64},{"x":-27,"y":17},{"x":-25,"y":-36},{"x":-33,"y":5}],"type":"area"},{"arc":[{"x":150865,"y":175770},{"x":26,"y":-107}],"type":"admin"},{"arc":[{"x":150891,"y":175663},{"x":256,"y":-14},{"x":60,"y":-31},{"x":60,"y":12},{"x":130,"y":-42},{"x":61,"y":7},{"x":28,"y":41},{"x":54,"y":-15},{"x":28,"y":134},{"x":70,"y":95},{"x":-43,"y":42},{"x":5,"y":35},{"x":57,"y":0},{"x":36,"y":-31},{"x":24,"y":80},{"x":89,"y":32},{"x":36,"y":-58},{"x":37,"y":-11},{"x":31,"y":-40},{"x":-9,"y":66},{"x":-12,"y":-22},{"x":-34,"y":11},{"x":-16,"y":52},{"x":22,"y":15},{"x":39,"y":-18},{"x":14,"y":27},{"x":72,"y":-58},{"x":-62,"y":-74},{"x":20,"y":-24},{"x":39,"y":36},{"x":158,"y":-125},{"x":72,"y":-6},{"x":4,"y":38},{"x":176,"y":-2},{"x":29,"y":-41},{"x":-19,"y":-32},{"x":152,"y":-137},{"x":19,"y":-50},{"x":99,"y":-69},{"x":12,"y":-86},{"x":39,"y":26},{"x":34,"y":-54},{"x":39,"y":0}],"type":"area"},{"arc":[{"x":152797,"y":175372},{"x":61,"y":37},{"x":26,"y":-40},{"x":24,"y":13},{"x":23,"y":-25},{"x":-15,"y":45},{"x":81,"y":-49},{"x":-30,"y":39},{"x":42,"y":54},{"x":-62,"y":143},{"x":87,"y":-32},{"x":-13,"y":22},{"x":37,"y":33},{"x":52,"y":-3}],"type":"admin"},{"arc":[{"x":157524,"y":182240},{"x":14,"y":-32},{"x":67,"y":-18},{"x":42,"y":-43},{"x":-4,"y":-86},{"x":-52,"y":-72},{"x":41,"y":-61},{"x":8,"y":-88},{"x":-28,"y":-109},{"x":-144,"y":-86},{"x":100,"y":-42},{"x":-9,"y":-27},{"x":-34,"y":1},{"x":-14,"y":-66},{"x":206,"y":-305}],"type":"area"},{"arc":[{"x":157717,"y":181206},{"x":130,"y":-18},{"x":51,"y":-92},{"x":154,"y":-58},{"x":17,"y":20},{"x":69,"y":-26},{"x":-27,"y":75},{"x":7,"y":26},{"x":43,"y":1},{"x":4,"y":-69},{"x":49,"y":-55},{"x":37,"y":26},{"x":44,"y":-39},{"x":52,"y":-2},{"x":-13,"y":-38},{"x":105,"y":-51},{"x":2,"y":89},{"x":38,"y":9},{"x":69,"y":-57},{"x":118,"y":-21},{"x":20,"y":-44},{"x":54,"y":9},{"x":53,"y":-29},{"x":94,"y":49},{"x":32,"y":-6},{"x":9,"y":39},{"x":100,"y":11},{"x":105,"y":-112},{"x":82,"y":-14},{"x":47,"y":-91},{"x":94,"y":26},{"x":112,"y":85},{"x":-13,"y":46},{"x":92,"y":52},{"x":-1,"y":26},{"x":-52,"y":6},{"x":30,"y":67},{"x":86,"y":34},{"x":21,"y":50},{"x":77,"y":5},{"x":41,"y":-67},{"x":64,"y":-34},{"x":151,"y":125},{"x":81,"y":-40},{"x":9,"y":-68},{"x":55,"y":-30},{"x":21,"y":29},{"x":25,"y":-30},{"x":14,"y":12}],"type":"area"},{"arc":[{"x":160169,"y":181032},{"x":64,"y":-21},{"x":19,"y":-32},{"x":54,"y":4},{"x":-28,"y":-81},{"x":64,"y":-34},{"x":92,"y":0},{"x":-4,"y":-82},{"x":70,"y":-8},{"x":1,"y":-32},{"x":27,"y":-1},{"x":62,"y":137},{"x":-101,"y":135},{"x":21,"y":58},{"x":22,"y":30},{"x":65,"y":-10},{"x":27,"y":20},{"x":29,"y":-25},{"x":89,"y":-11},{"x":-8,"y":40},{"x":75,"y":72},{"x":-102,"y":104},{"x":29,"y":15},{"x":72,"y":-46},{"x":75,"y":47},{"x":182,"y":-48},{"x":95,"y":3},{"x":108,"y":-34},{"x":14,"y":15}],"type":"admin"},{"arc":[{"x":162187,"y":182319},{"x":-42,"y":25},{"x":-35,"y":-12},{"x":-61,"y":-58},{"x":-30,"y":8},{"x":-13,"y":-56},{"x":-50,"y":3},{"x":-25,"y":-33},{"x":-34,"y":48},{"x":-129,"y":1},{"x":-43,"y":-56},{"x":-177,"y":-107},{"x":-52,"y":26},{"x":-53,"y":-71},{"x":-94,"y":-4},{"x":-81,"y":31},{"x":-31,"y":-19},{"x":-24,"y":44},{"x":-24,"y":-43},{"x":-119,"y":-54},{"x":-31,"y":5},{"x":-13,"y":52},{"x":-105,"y":47},{"x":-13,"y":38},{"x":32,"y":28},{"x":-59,"y":64},{"x":-99,"y":-38},{"x":-58,"y":34},{"x":-30,"y":-30},{"x":-136,"y":71},{"x":-60,"y":-59},{"x":-71,"y":30},{"x":-133,"y":-46}],"type":"area"},{"arc":[{"x":162310,"y":182572},{"x":-70,"y":104},{"x":-104,"y":-6},{"x":-49,"y":37},{"x":-33,"y":-10},{"x":-69,"y":80},{"x":-25,"y":131},{"x":-36,"y":12},{"x":-37,"y":68},{"x":-40,"y":-4},{"x":-29,"y":33},{"x":11,"y":57},{"x":-175,"y":100},{"x":-7,"y":35},{"x":-116,"y":41},{"x":-51,"y":191},{"x":-23,"y":-9},{"x":-51,"y":50},{"x":-40,"y":-23},{"x":-15,"y":-73},{"x":-33,"y":-6},{"x":-10,"y":-32},{"x":-51,"y":-39},{"x":-55,"y":0},{"x":-29,"y":-142},{"x":-97,"y":-4},{"x":-23,"y":-57},{"x":-20,"y":5},{"x":-4,"y":173},{"x":-90,"y":112},{"x":-81,"y":21},{"x":-11,"y":134},{"x":-55,"y":-14},{"x":-32,"y":33},{"x":38,"y":148},{"x":-38,"y":86},{"x":12,"y":206},{"x":-34,"y":22}],"type":"area"},{"arc":[{"x":160738,"y":184032},{"x":-226,"y":-49},{"x":-132,"y":9},{"x":-28,"y":-23},{"x":-33,"y":24},{"x":-10,"y":-37},{"x":-280,"y":-96}],"type":"coastline"},{"arc":[{"x":161695,"y":184597},{"x":-23,"y":-22},{"x":42,"y":74},{"x":-19,"y":-52}],"type":"coastline"},{"arc":[{"x":162140,"y":184656},{"x":-1,"y":51},{"x":-24,"y":-59},{"x":-17,"y":16},{"x":25,"y":43},{"x":-25,"y":-27},{"x":-62,"y":31},{"x":-21,"y":-23},{"x":-37,"y":19},{"x":-65,"y":-13},{"x":-26,"y":54},{"x":-46,"y":2},{"x":2,"y":16},{"x":-45,"y":-18},{"x":-21,"y":33},{"x":-48,"y":-61},{"x":-10,"y":-74},{"x":10,"y":-43},{"x":26,"y":56},{"x":6,"y":-79},{"x":-50,"y":1},{"x":15,"y":-37},{"x":-54,"y":17},{"x":38,"y":-21},{"x":-6,"y":-50},{"x":-84,"y":-92},{"x":-233,"y":-111},{"x":-73,"y":-6},{"x":-9,"y":-30},{"x":-115,"y":-61},{"x":-452,"y":-158}],"type":"coastline"},{"arc":[{"x":155227,"y":180272},{"x":-22,"y":-13},{"x":20,"y":-44},{"x":-74,"y":-74},{"x":-101,"y":23},{"x":-21,"y":-40},{"x":-80,"y":2},{"x":-158,"y":-57},{"x":-113,"y":-76},{"x":-49,"y":5}],"type":"admin"},{"arc":[{"x":154629,"y":179998},{"x":60,"y":-71},{"x":-17,"y":-33},{"x":46,"y":-92},{"x":-16,"y":-32},{"x":56,"y":25},{"x":14,"y":-21},{"x":-33,"y":-21},{"x":20,"y":-39},{"x":-29,"y":4},{"x":89,"y":-35},{"x":-80,"y":-46},{"x":-19,"y":-41}],"type":"area"},{"arc":[{"x":155328,"y":178319},{"x":54,"y":25},{"x":123,"y":-62},{"x":28,"y":-39},{"x":-12,"y":-85},{"x":68,"y":-27},{"x":104,"y":23},{"x":37,"y":37},{"x":91,"y":-2},{"x":24,"y":118},{"x":85,"y":10},{"x":53,"y":-27},{"x":151,"y":139},{"x":93,"y":-54},{"x":78,"y":-8}],"type":"area"},{"arc":[{"x":156305,"y":178367},{"x":69,"y":39},{"x":12,"y":38},{"x":203,"y":110},{"x":153,"y":-13}],"type":"admin"},{"arc":[{"x":156742,"y":178541},{"x":38,"y":170},{"x":-53,"y":12},{"x":-17,"y":32},{"x":112,"y":102},{"x":-99,"y":56},{"x":-6,"y":165},{"x":49,"y":41},{"x":29,"y":296},{"x":70,"y":87},{"x":16,"y":8},{"x":30,"y":-46},{"x":38,"y":48},{"x":-67,"y":35},{"x":7,"y":91},{"x":-76,"y":44},{"x":29,"y":57},{"x":-18,"y":69},{"x":-75,"y":37},{"x":-54,"y":93}],"type":"admin"},{"arc":[{"x":149773,"y":177769},{"x":-47,"y":-20},{"x":-95,"y":18}],"type":"admin"},{"arc":[{"x":149631,"y":177767},{"x":165,"y":-355},{"x":0,"y":-55},{"x":-91,"y":-143},{"x":53,"y":-73},{"x":97,"y":-66},{"x":53,"y":-158},{"x":99,"y":-143}],"type":"admin"},{"arc":[{"x":150007,"y":176774},{"x":126,"y":-147},{"x":-12,"y":-225}],"type":"admin"},{"arc":[{"x":150121,"y":176402},{"x":118,"y":49},{"x":14,"y":33},{"x":112,"y":19},{"x":9,"y":86},{"x":31,"y":30},{"x":67,"y":26},{"x":56,"y":-12},{"x":65,"y":51},{"x":-3,"y":-55},{"x":96,"y":30}],"type":"area"},{"arc":[{"x":150686,"y":176659},{"x":-81,"y":72},{"x":-92,"y":30},{"x":-116,"y":157},{"x":79,"y":104},{"x":-16,"y":93},{"x":97,"y":129},{"x":10,"y":113},{"x":-45,"y":0},{"x":36,"y":30},{"x":-22,"y":78},{"x":46,"y":44},{"x":-39,"y":87},{"x":63,"y":39}],"type":"area"},{"arc":[{"x":151452,"y":178092},{"x":-168,"y":177},{"x":-78,"y":40},{"x":-115,"y":-3},{"x":-97,"y":104},{"x":4,"y":41},{"x":-39,"y":16},{"x":-26,"y":92},{"x":-68,"y":15},{"x":8,"y":39},{"x":190,"y":99},{"x":-33,"y":57},{"x":-68,"y":41},{"x":132,"y":230},{"x":-9,"y":36},{"x":-84,"y":39}],"type":"admin"},{"arc":[{"x":151001,"y":179115},{"x":-20,"y":43},{"x":-202,"y":59},{"x":-13,"y":-24},{"x":-91,"y":62},{"x":-126,"y":19},{"x":-47,"y":-97},{"x":11,"y":-42},{"x":-35,"y":-37}],"type":"area"},{"arc":[{"x":151010,"y":177638},{"x":21,"y":52},{"x":-54,"y":77},{"x":100,"y":40},{"x":9,"y":80},{"x":30,"y":26},{"x":159,"y":-86},{"x":63,"y":43},{"x":4,"y":84},{"x":167,"y":-52},{"x":110,"y":42}],"type":"area"},{"arc":[{"x":154234,"y":177077},{"x":-116,"y":-19},{"x":33,"y":248},{"x":-23,"y":161},{"x":29,"y":-13},{"x":30,"y":22},{"x":6,"y":117}],"type":"area"},{"arc":[{"x":151051,"y":177370},{"x":190,"y":-70},{"x":120,"y":-142},{"x":71,"y":-34},{"x":-34,"y":-53},{"x":4,"y":-65},{"x":-44,"y":-26},{"x":52,"y":-52},{"x":108,"y":-10},{"x":67,"y":34},{"x":-34,"y":56},{"x":124,"y":-45},{"x":109,"y":-70},{"x":-29,"y":-50},{"x":40,"y":-56},{"x":28,"y":-1},{"x":18,"y":-57}],"type":"area"},{"arc":[{"x":153790,"y":176829},{"x":12,"y":87},{"x":46,"y":52},{"x":127,"y":-52},{"x":9,"y":31},{"x":-41,"y":11},{"x":23,"y":116},{"x":217,"y":-103},{"x":4,"y":28},{"x":73,"y":22},{"x":1,"y":44},{"x":-27,"y":12}],"type":"area"},{"arc":[{"x":155542,"y":182622},{"x":-8,"y":59},{"x":1,"y":-77},{"x":7,"y":18}],"type":"coastline"},{"arc":[{"x":157075,"y":182061},{"x":-146,"y":18},{"x":-2,"y":82},{"x":-109,"y":23},{"x":-56,"y":186},{"x":32,"y":110},{"x":-40,"y":7},{"x":-2,"y":43},{"x":-28,"y":-6},{"x":-59,"y":45},{"x":33,"y":42},{"x":-62,"y":129},{"x":35,"y":20}],"type":"admin"},{"arc":[{"x":156671,"y":182760},{"x":-11,"y":140},{"x":-2,"y":-57},{"x":-60,"y":-1},{"x":-3,"y":-56},{"x":-80,"y":0},{"x":42,"y":-1},{"x":0,"y":-38},{"x":-59,"y":-2},{"x":-34,"y":39},{"x":45,"y":2},{"x":-45,"y":-1},{"x":0,"y":32},{"x":-39,"y":-24},{"x":34,"y":-1},{"x":0,"y":-36},{"x":-67,"y":0},{"x":-1,"y":54},{"x":77,"y":42},{"x":-85,"y":-43},{"x":1,"y":-25},{"x":-68,"y":-7},{"x":-156,"y":45},{"x":-31,"y":19},{"x":12,"y":47},{"x":-23,"y":-10},{"x":18,"y":23},{"x":18,"y":-13},{"x":-7,"y":23},{"x":-63,"y":33},{"x":-47,"y":-5},{"x":-221,"y":-65},{"x":-41,"y":-70},{"x":-43,"y":-12},{"x":33,"y":2},{"x":-24,"y":-26},{"x":-7,"y":18},{"x":3,"y":-29},{"x":-136,"y":-20},{"x":10,"y":-18},{"x":-72,"y":-24},{"x":27,"y":-15},{"x":39,"y":30},{"x":6,"y":-14},{"x":-67,"y":-33},{"x":45,"y":-42},{"x":-68,"y":-24}],"type":"coastline"},{"arc":[{"x":155521,"y":182597},{"x":4,"y":-78}],"type":"admin"},{"arc":[{"x":156422,"y":181455},{"x":91,"y":73},{"x":-20,"y":40},{"x":42,"y":45},{"x":39,"y":-9},{"x":20,"y":33},{"x":-22,"y":95},{"x":124,"y":-7},{"x":-27,"y":38},{"x":10,"y":52},{"x":100,"y":-13},{"x":43,"y":-33},{"x":98,"y":7},{"x":42,"y":28},{"x":39,"y":122},{"x":125,"y":5},{"x":-94,"y":86},{"x":12,"y":45},{"x":28,"y":-18},{"x":3,"y":17}],"type":"area"},{"arc":[{"x":150514,"y":183809},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":150513,"y":183807},{"x":178,"y":13},{"x":-177,"y":-11}],"type":"coastline"},{"arc":[{"x":152303,"y":182766},{"x":-59,"y":50},{"x":-119,"y":28},{"x":-18,"y":28},{"x":-626,"y":252},{"x":-8,"y":26},{"x":-176,"y":53},{"x":-50,"y":45},{"x":-7,"y":-17},{"x":-70,"y":26},{"x":-14,"y":35},{"x":-16,"y":-18},{"x":-174,"y":80},{"x":18,"y":53},{"x":-18,"y":-35},{"x":-77,"y":48},{"x":35,"y":49},{"x":-20,"y":-20},{"x":-29,"y":38},{"x":-3,"y":-28},{"x":-18,"y":7},{"x":17,"y":37},{"x":45,"y":-13},{"x":-49,"y":19},{"x":7,"y":113},{"x":-83,"y":77},{"x":48,"y":-53},{"x":-24,"y":-113},{"x":-263,"y":120},{"x":-74,"y":47},{"x":11,"y":26},{"x":-23,"y":-37},{"x":19,"y":2},{"x":-8,"y":-16},{"x":-34,"y":-7}],"type":"coastline"},{"arc":[{"x":150443,"y":183668},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":150441,"y":183665},{"x":-19,"y":-37}],"type":"coastline"},{"arc":[{"x":150422,"y":183628},{"x":-52,"y":-399}],"type":"area"},{"arc":[{"x":150370,"y":183229},{"x":-12,"y":-20}],"type":"coastline"},{"arc":[{"x":150358,"y":183209},{"x":26,"y":-250},{"x":68,"y":-92}],"type":"area"},{"arc":[{"x":150452,"y":182867},{"x":60,"y":36},{"x":95,"y":-103},{"x":125,"y":-49},{"x":65,"y":-55},{"x":27,"y":-118},{"x":34,"y":-22},{"x":75,"y":-13},{"x":51,"y":54},{"x":64,"y":19},{"x":199,"y":-141},{"x":79,"y":-104},{"x":92,"y":-61}],"type":"area"},{"arc":[{"x":151418,"y":182310},{"x":102,"y":11},{"x":202,"y":-23},{"x":46,"y":-30},{"x":127,"y":4},{"x":65,"y":-93},{"x":86,"y":0}],"type":"area"},{"arc":[{"x":152046,"y":182179},{"x":12,"y":117},{"x":62,"y":39},{"x":2,"y":74},{"x":51,"y":37},{"x":-13,"y":82},{"x":79,"y":20},{"x":41,"y":73},{"x":23,"y":145}],"type":"area"},{"arc":[{"x":150452,"y":182867},{"x":-62,"y":-35},{"x":-75,"y":-1},{"x":-91,"y":-164},{"x":-105,"y":13},{"x":-79,"y":-36}],"type":"area"},{"arc":[{"x":150040,"y":182644},{"x":38,"y":-110},{"x":25,"y":14},{"x":29,"y":-17},{"x":-16,"y":-29},{"x":112,"y":-56},{"x":128,"y":-171},{"x":150,"y":-292},{"x":237,"y":-245}],"type":"admin"},{"arc":[{"x":150743,"y":181738},{"x":-10,"y":-134},{"x":152,"y":-134}],"type":"area"},{"arc":[{"x":150885,"y":181470},{"x":119,"y":302},{"x":294,"y":-49},{"x":8,"y":195},{"x":-71,"y":9},{"x":-46,"y":50},{"x":-46,"y":-7},{"x":-8,"y":47},{"x":81,"y":20},{"x":36,"y":-13},{"x":68,"y":31},{"x":57,"y":64},{"x":41,"y":191}],"type":"area"},{"arc":[{"x":150980,"y":176156},{"x":-107,"y":75},{"x":-187,"y":428}],"type":"area"},{"arc":[{"x":150121,"y":176402},{"x":166,"y":-183},{"x":55,"y":-131},{"x":111,"y":-133}],"type":"admin"},{"arc":[{"x":150453,"y":175955},{"x":60,"y":-137},{"x":74,"y":-53},{"x":55,"y":-20},{"x":144,"y":67},{"x":79,"y":-42}],"type":"admin"},{"arc":[{"x":157717,"y":181206},{"x":29,"y":-67},{"x":-21,"y":-42},{"x":31,"y":-22},{"x":35,"y":-109},{"x":-35,"y":-120},{"x":29,"y":-75},{"x":-54,"y":-76},{"x":-49,"y":37},{"x":-85,"y":-2},{"x":-42,"y":-44},{"x":20,"y":-55},{"x":-101,"y":-99}],"type":"area"},{"arc":[{"x":157474,"y":180532},{"x":111,"y":-59},{"x":27,"y":-62},{"x":250,"y":-99},{"x":60,"y":-74},{"x":27,"y":20},{"x":197,"y":-260},{"x":75,"y":-186},{"x":-31,"y":-78},{"x":-21,"y":13},{"x":-116,"y":-35},{"x":-18,"y":-86},{"x":20,"y":-76},{"x":-122,"y":-4},{"x":-24,"y":-28},{"x":60,"y":-64},{"x":-55,"y":7},{"x":-72,"y":-112},{"x":126,"y":-138},{"x":-68,"y":-31},{"x":-25,"y":-96}],"type":"admin"},{"arc":[{"x":157875,"y":179084},{"x":194,"y":-76},{"x":133,"y":-2},{"x":84,"y":47},{"x":101,"y":-80},{"x":22,"y":33},{"x":37,"y":0},{"x":86,"y":-46},{"x":99,"y":32},{"x":32,"y":-24},{"x":48,"y":5},{"x":140,"y":55},{"x":141,"y":-7},{"x":181,"y":-90},{"x":-14,"y":-52}],"type":"admin"},{"arc":[{"x":159159,"y":178879},{"x":133,"y":-10},{"x":30,"y":94},{"x":112,"y":-39},{"x":68,"y":19},{"x":143,"y":-120},{"x":41,"y":35},{"x":54,"y":-10},{"x":57,"y":-105}],"type":"admin"},{"arc":[{"x":159797,"y":178743},{"x":40,"y":0},{"x":1,"y":36},{"x":77,"y":-16},{"x":11,"y":-35},{"x":34,"y":3},{"x":157,"y":110},{"x":-25,"y":133},{"x":59,"y":29},{"x":0,"y":222},{"x":58,"y":31},{"x":8,"y":98},{"x":63,"y":52},{"x":3,"y":67}],"type":"admin"},{"arc":[{"x":160283,"y":179473},{"x":20,"y":35},{"x":-58,"y":82},{"x":55,"y":64},{"x":3,"y":64},{"x":48,"y":-15},{"x":70,"y":35},{"x":-29,"y":51},{"x":38,"y":66},{"x":-34,"y":-24},{"x":-81,"y":50},{"x":-33,"y":-8},{"x":18,"y":74},{"x":-24,"y":26},{"x":-55,"y":-75},{"x":-35,"y":90},{"x":11,"y":49},{"x":-83,"y":58},{"x":12,"y":72},{"x":-140,"y":157},{"x":-29,"y":92},{"x":-55,"y":11},{"x":32,"y":30},{"x":-11,"y":39},{"x":40,"y":85},{"x":41,"y":21},{"x":-51,"y":-1},{"x":-4,"y":33},{"x":-59,"y":-10},{"x":-37,"y":31},{"x":59,"y":37},{"x":29,"y":70},{"x":50,"y":-23},{"x":-44,"y":94},{"x":43,"y":1},{"x":-58,"y":33},{"x":101,"y":42},{"x":50,"y":-20},{"x":32,"y":56},{"x":36,"y":3},{"x":18,"y":84}],"type":"admin"},{"arc":[{"x":157519,"y":182307},{"x":-32,"y":-15},{"x":-81,"y":-154},{"x":-107,"y":-21},{"x":-21,"y":-64},{"x":-59,"y":25},{"x":-57,"y":-49},{"x":-87,"y":32}],"type":"admin"},{"arc":[{"x":157097,"y":180737},{"x":66,"y":-37},{"x":-8,"y":-30},{"x":179,"y":17},{"x":55,"y":-28},{"x":39,"y":-67},{"x":-58,"y":-68},{"x":30,"y":-71},{"x":40,"y":78},{"x":34,"y":1}],"type":"admin"},{"arc":[{"x":156013,"y":176881},{"x":-155,"y":-9},{"x":-39,"y":99},{"x":-45,"y":-2},{"x":-26,"y":-24},{"x":63,"y":-134},{"x":-285,"y":166},{"x":-95,"y":22},{"x":-7,"y":-26},{"x":-158,"y":37},{"x":-61,"y":-27},{"x":-114,"y":5},{"x":-36,"y":-43},{"x":-71,"y":31},{"x":-135,"y":-16},{"x":-99,"y":16},{"x":-12,"y":35},{"x":59,"y":68},{"x":-41,"y":70},{"x":-57,"y":-57},{"x":-64,"y":42},{"x":-90,"y":-29},{"x":-30,"y":31},{"x":-51,"y":-40},{"x":-32,"y":13},{"x":-53,"y":-26},{"x":-145,"y":-6}],"type":"area"},{"arc":[{"x":154181,"y":175475},{"x":53,"y":2}],"type":"admin"},{"arc":[{"x":155044,"y":175449},{"x":32,"y":81},{"x":85,"y":41},{"x":26,"y":-1},{"x":2,"y":-45},{"x":315,"y":28}],"type":"admin"},{"arc":[{"x":155504,"y":175553},{"x":82,"y":97},{"x":25,"y":132},{"x":24,"y":1},{"x":48,"y":113},{"x":23,"y":189},{"x":209,"y":8},{"x":140,"y":86},{"x":-111,"y":58},{"x":-32,"y":111},{"x":30,"y":19},{"x":-20,"y":108},{"x":31,"y":18},{"x":78,"y":-36},{"x":-47,"y":109},{"x":56,"y":42},{"x":-34,"y":3},{"x":45,"y":204},{"x":-38,"y":66}],"type":"admin"},{"arc":[{"x":152478,"y":174792},{"x":-72,"y":-19},{"x":52,"y":-18},{"x":20,"y":37}],"type":"admin"},{"arc":[{"x":152698,"y":174775},{"x":-9,"y":-26},{"x":31,"y":7},{"x":-22,"y":19}],"type":"admin"},{"arc":[{"x":153127,"y":174966},{"x":-41,"y":180},{"x":-289,"y":226}],"type":"admin"},{"arc":[{"x":150891,"y":175663},{"x":13,"y":-111},{"x":87,"y":-156},{"x":112,"y":-123},{"x":54,"y":-37},{"x":242,"y":-62},{"x":234,"y":-194},{"x":110,"y":-168},{"x":246,"y":-219}],"type":"admin"},{"arc":[{"x":151989,"y":174593},{"x":60,"y":109},{"x":-17,"y":44},{"x":34,"y":87},{"x":68,"y":21},{"x":17,"y":36},{"x":-33,"y":18},{"x":14,"y":41},{"x":73,"y":-59},{"x":39,"y":-89},{"x":151,"y":-21},{"x":106,"y":50},{"x":205,"y":-14},{"x":26,"y":50},{"x":39,"y":-3},{"x":5,"y":-30},{"x":96,"y":6},{"x":22,"y":60},{"x":25,"y":-14},{"x":7,"y":-111},{"x":72,"y":-42},{"x":63,"y":-2},{"x":-8,"y":-42}],"type":"admin"},{"arc":[{"x":152406,"y":174801},{"x":-39,"y":1},{"x":15,"y":34},{"x":24,"y":-35}],"type":"admin"},{"arc":[{"x":150743,"y":181738},{"x":-181,"y":-119},{"x":-167,"y":-44},{"x":9,"y":-59},{"x":-42,"y":-27},{"x":-173,"y":38},{"x":-119,"y":124},{"x":56,"y":-197},{"x":210,"y":-262},{"x":-146,"y":-103},{"x":-41,"y":-141}],"type":"admin"},{"arc":[{"x":150149,"y":180948},{"x":-64,"y":-123},{"x":32,"y":-255},{"x":-78,"y":-200}],"type":"admin"},{"arc":[{"x":150039,"y":180370},{"x":140,"y":-54},{"x":23,"y":-42},{"x":-116,"y":-127},{"x":-19,"y":-39},{"x":45,"y":-28},{"x":-41,"y":17},{"x":-115,"y":-213},{"x":118,"y":-28},{"x":-13,"y":-35},{"x":-203,"y":-40},{"x":-15,"y":-49},{"x":-73,"y":-16},{"x":-5,"y":-28},{"x":75,"y":12},{"x":-38,"y":-190},{"x":90,"y":21},{"x":9,"y":-164},{"x":74,"y":6},{"x":-32,"y":-122},{"x":59,"y":-22},{"x":-21,"y":-105},{"x":104,"y":-103}],"type":"admin"},{"arc":[{"x":151001,"y":179115},{"x":36,"y":46},{"x":-32,"y":83},{"x":40,"y":184}],"type":"admin"},{"arc":[{"x":151045,"y":179428},{"x":-46,"y":70},{"x":48,"y":39},{"x":41,"y":-5},{"x":-12,"y":23},{"x":-67,"y":-4},{"x":-21,"y":-34},{"x":-58,"y":89},{"x":107,"y":61},{"x":95,"y":110},{"x":87,"y":45},{"x":26,"y":-19},{"x":85,"y":64},{"x":-86,"y":295},{"x":-90,"y":-12},{"x":-16,"y":68},{"x":39,"y":164},{"x":40,"y":81},{"x":343,"y":223}],"type":"admin"},{"arc":[{"x":151560,"y":180686},{"x":-397,"y":454},{"x":-211,"y":131},{"x":-67,"y":199}],"type":"area"},{"arc":[{"x":152919,"y":180027},{"x":-3,"y":216}],"type":"area"},{"arc":[{"x":152916,"y":180243},{"x":-207,"y":200},{"x":-200,"y":53},{"x":-198,"y":141},{"x":-351,"y":-87},{"x":-221,"y":-4}],"type":"area"},{"arc":[{"x":151739,"y":180546},{"x":92,"y":-386},{"x":53,"y":-497},{"x":-57,"y":-126},{"x":85,"y":-294}],"type":"admin"},{"arc":[{"x":151912,"y":179243},{"x":14,"y":-79}],"type":"admin"},{"arc":[{"x":156504,"y":177944},{"x":-203,"y":126},{"x":27,"y":94},{"x":-36,"y":135},{"x":13,"y":68}],"type":"admin"},{"arc":[{"x":156013,"y":176881},{"x":5,"y":69},{"x":83,"y":161},{"x":85,"y":56},{"x":101,"y":-41},{"x":88,"y":14}],"type":"admin"},{"arc":[{"x":156375,"y":177140},{"x":-2,"y":151},{"x":-68,"y":71},{"x":42,"y":44},{"x":-58,"y":96},{"x":12,"y":99},{"x":108,"y":-20},{"x":57,"y":55},{"x":49,"y":179},{"x":-37,"y":95},{"x":26,"y":34}],"type":"admin"},{"arc":[{"x":149261,"y":184339},{"x":-9,"y":-15},{"x":25,"y":42},{"x":-16,"y":-27}],"type":"coastline"},{"arc":[{"x":150422,"y":183628},{"x":-58,"y":-1},{"x":-122,"y":-176},{"x":60,"y":-120},{"x":36,"y":17},{"x":23,"y":-43},{"x":-38,"y":-17},{"x":47,"y":-59}],"type":"coastline"},{"arc":[{"x":150387,"y":183647},{"x":-16,"y":-11},{"x":32,"y":-6},{"x":30,"y":50},{"x":-46,"y":-33}],"type":"coastline"},{"arc":[{"x":150443,"y":183668},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":148034,"y":185261},{"x":-53,"y":-41},{"x":-16,"y":-81},{"x":4,"y":-201},{"x":25,"y":-56},{"x":552,"y":-761},{"x":182,"y":-155},{"x":177,"y":-62}],"type":"admin"},{"arc":[{"x":148905,"y":183904},{"x":201,"y":-79},{"x":165,"y":-165},{"x":112,"y":-220},{"x":56,"y":-290}],"type":"admin"},{"arc":[{"x":149439,"y":183150},{"x":43,"y":-177},{"x":414,"y":-198},{"x":144,"y":-131}],"type":"admin"},{"arc":[{"x":150358,"y":183209},{"x":-21,"y":-12},{"x":-15,"y":18},{"x":-89,"y":164},{"x":-82,"y":38},{"x":-4,"y":-23},{"x":1,"y":22},{"x":-186,"y":11},{"x":-24,"y":40},{"x":-178,"y":87},{"x":26,"y":43},{"x":229,"y":-128},{"x":139,"y":-14},{"x":171,"y":235},{"x":-52,"y":26},{"x":14,"y":32},{"x":21,"y":-10},{"x":32,"y":58},{"x":173,"y":11}],"type":"coastline"},{"arc":[{"x":150514,"y":183809},{"x":-176,"y":-12},{"x":-20,"y":-40},{"x":-25,"y":5},{"x":-632,"y":367},{"x":5,"y":-21},{"x":-50,"y":1},{"x":-198,"y":109},{"x":-555,"y":343},{"x":-4,"y":31},{"x":-115,"y":42},{"x":-76,"y":77},{"x":-134,"y":63},{"x":-18,"y":36},{"x":-84,"y":27},{"x":-12,"y":35},{"x":-43,"y":4},{"x":-234,"y":211},{"x":44,"y":68},{"x":15,"y":-11},{"x":-15,"y":12},{"x":-15,"y":-17},{"x":-35,"y":47},{"x":-10,"y":-19},{"x":37,"y":-30},{"x":-31,"y":-35},{"x":3,"y":39},{"x":-22,"y":-23},{"x":1,"y":38},{"x":-29,"y":-21},{"x":-29,"y":31},{"x":25,"y":24},{"x":27,"y":-14},{"x":-42,"y":27},{"x":8,"y":25},{"x":33,"y":6},{"x":28,"y":-29},{"x":51,"y":-14},{"x":25,"y":10},{"x":-76,"y":5},{"x":-27,"y":29},{"x":-35,"y":-6},{"x":-15,"y":-12},{"x":-25,"y":44}],"type":"coastline"},{"arc":[{"x":151560,"y":180686},{"x":179,"y":-140}],"type":"admin"},{"arc":[{"x":152916,"y":180243},{"x":134,"y":-35},{"x":108,"y":6},{"x":51,"y":-22},{"x":44,"y":16},{"x":-36,"y":102},{"x":33,"y":57},{"x":-27,"y":70},{"x":15,"y":96},{"x":-107,"y":76},{"x":-135,"y":53},{"x":68,"y":72},{"x":6,"y":62},{"x":137,"y":137},{"x":158,"y":33}],"type":"area"},{"arc":[{"x":153365,"y":180966},{"x":4,"y":25},{"x":-73,"y":49},{"x":-25,"y":125},{"x":-71,"y":-16},{"x":-14,"y":-25},{"x":-6,"y":42},{"x":-75,"y":-26},{"x":-72,"y":-67},{"x":-6,"y":42},{"x":-37,"y":-34},{"x":-19,"y":30},{"x":-43,"y":-9},{"x":-90,"y":113},{"x":28,"y":188},{"x":-44,"y":136},{"x":49,"y":-4},{"x":47,"y":30},{"x":-33,"y":22},{"x":58,"y":108},{"x":-61,"y":69},{"x":-53,"y":-5},{"x":-30,"y":68},{"x":32,"y":42},{"x":-124,"y":75},{"x":-79,"y":-36},{"x":-48,"y":53},{"x":-49,"y":5},{"x":-45,"y":-45},{"x":-119,"y":116},{"x":-58,"y":-12},{"x":-172,"y":49},{"x":-35,"y":69},{"x":-56,"y":36}],"type":"area"},{"arc":[{"x":154502,"y":182238},{"x":-29,"y":20},{"x":-12,"y":-18},{"x":-102,"y":26},{"x":-108,"y":-7},{"x":-6,"y":19},{"x":-12,"y":-18},{"x":-83,"y":5},{"x":-11,"y":26},{"x":-68,"y":-19},{"x":-48,"y":35},{"x":-25,"y":-21},{"x":-88,"y":39},{"x":-22,"y":-19},{"x":-91,"y":36},{"x":-521,"y":99},{"x":-557,"y":161},{"x":-416,"y":164}],"type":"coastline"},{"arc":[{"x":153365,"y":180966},{"x":235,"y":75},{"x":22,"y":62},{"x":112,"y":-21},{"x":98,"y":-58},{"x":69,"y":-95},{"x":41,"y":-136},{"x":105,"y":-54}],"type":"area"},{"arc":[{"x":154047,"y":180739},{"x":57,"y":57},{"x":19,"y":-24},{"x":31,"y":34},{"x":45,"y":-4},{"x":-47,"y":122},{"x":135,"y":88},{"x":-65,"y":32},{"x":-47,"y":-25},{"x":15,"y":32},{"x":-30,"y":26},{"x":45,"y":41},{"x":66,"y":2},{"x":-29,"y":47},{"x":29,"y":130},{"x":-18,"y":96},{"x":78,"y":-3},{"x":-16,"y":41},{"x":50,"y":58},{"x":12,"y":95},{"x":39,"y":6},{"x":17,"y":-35},{"x":26,"y":18},{"x":75,"y":-14},{"x":86,"y":26},{"x":137,"y":-2},{"x":29,"y":271}],"type":"admin"},{"arc":[{"x":154786,"y":181854},{"x":-150,"y":38},{"x":-34,"y":110},{"x":44,"y":1},{"x":-51,"y":2},{"x":-23,"y":35},{"x":40,"y":26},{"x":-17,"y":-24},{"x":44,"y":-16},{"x":7,"y":24},{"x":-46,"y":24},{"x":31,"y":33},{"x":-54,"y":-34},{"x":-10,"y":30},{"x":28,"y":7},{"x":-41,"y":8},{"x":6,"y":93},{"x":-57,"y":7},{"x":-1,"y":20}],"type":"admin"},{"arc":[{"x":154629,"y":179998},{"x":73,"y":136},{"x":-54,"y":9},{"x":-39,"y":39},{"x":15,"y":22},{"x":-114,"y":223},{"x":-48,"y":-2},{"x":-7,"y":64},{"x":-21,"y":-42},{"x":-133,"y":-20},{"x":-61,"y":137},{"x":-96,"y":55},{"x":-97,"y":120}],"type":"admin"},{"arc":[{"x":155127,"y":181941},{"x":-36,"y":21},{"x":-61,"y":-9},{"x":-244,"y":-99}],"type":"area"},{"arc":[{"x":155521,"y":182597},{"x":-11,"y":40},{"x":-18,"y":-36},{"x":-159,"y":-8},{"x":-156,"y":-89},{"x":-7,"y":-45},{"x":-22,"y":-24},{"x":-56,"y":-1},{"x":-20,"y":13},{"x":18,"y":-15},{"x":76,"y":4},{"x":31,"y":63},{"x":-1,"y":-60},{"x":-24,"y":-3},{"x":24,"y":-14},{"x":-37,"y":-30},{"x":17,"y":-31},{"x":-17,"y":-16},{"x":-40,"y":16},{"x":17,"y":-26},{"x":-56,"y":58},{"x":16,"y":-37},{"x":-87,"y":-71},{"x":6,"y":-24},{"x":-78,"y":-21},{"x":-11,"y":26},{"x":6,"y":-38},{"x":-430,"y":10}],"type":"coastline"},{"arc":[{"x":156742,"y":178541},{"x":67,"y":-7},{"x":106,"y":50},{"x":96,"y":-37},{"x":35,"y":49},{"x":70,"y":0},{"x":61,"y":59},{"x":48,"y":-10},{"x":101,"y":47},{"x":18,"y":51},{"x":70,"y":58},{"x":37,"y":-6},{"x":29,"y":33},{"x":79,"y":15},{"x":59,"y":-18},{"x":33,"y":65},{"x":-25,"y":56},{"x":62,"y":13},{"x":2,"y":68},{"x":91,"y":-17},{"x":32,"y":132},{"x":62,"y":-58}],"type":"admin"},{"arc":[{"x":157360,"y":182800},{"x":-13,"y":20},{"x":-54,"y":-45},{"x":-94,"y":-19},{"x":-46,"y":70},{"x":30,"y":-62},{"x":-33,"y":1},{"x":5,"y":44},{"x":-35,"y":-54},{"x":-135,"y":-13},{"x":-116,"y":35},{"x":-23,"y":-29},{"x":-8,"y":5},{"x":17,"y":60},{"x":-4,"y":183},{"x":0,"y":-58},{"x":-130,"y":-1},{"x":2,"y":-178},{"x":-61,"y":-18},{"x":9,"y":19}],"type":"coastline"},{"arc":[{"x":160283,"y":179473},{"x":70,"y":-52},{"x":91,"y":6},{"x":110,"y":-45},{"x":179,"y":-219},{"x":147,"y":-75},{"x":56,"y":3},{"x":41,"y":61},{"x":88,"y":-77},{"x":35,"y":39},{"x":81,"y":-37}],"type":"admin"},{"arc":[{"x":161181,"y":179077},{"x":29,"y":100},{"x":57,"y":29},{"x":52,"y":-19},{"x":61,"y":27},{"x":138,"y":-40},{"x":37,"y":36},{"x":58,"y":7},{"x":231,"y":-46},{"x":57,"y":-78},{"x":92,"y":14},{"x":56,"y":-54},{"x":103,"y":29},{"x":115,"y":-2},{"x":48,"y":27},{"x":55,"y":-30},{"x":177,"y":4},{"x":218,"y":-57},{"x":105,"y":14},{"x":53,"y":-18},{"x":106,"y":53},{"x":46,"y":111}],"type":"admin"},{"arc":[{"x":151045,"y":179428},{"x":63,"y":-42},{"x":0,"y":-29},{"x":108,"y":-44},{"x":65,"y":43},{"x":154,"y":-53},{"x":85,"y":12},{"x":29,"y":-51},{"x":66,"y":7},{"x":39,"y":-45},{"x":258,"y":17}],"type":"area"},{"arc":[{"x":150039,"y":180370},{"x":-9,"y":-32}],"type":"admin"},{"arc":[{"x":150030,"y":180338},{"x":-66,"y":-172},{"x":-66,"y":-63},{"x":-111,"y":-49},{"x":-154,"y":-160},{"x":-77,"y":-131},{"x":-3,"y":-137},{"x":85,"y":-182}],"type":"admin"},{"arc":[{"x":149638,"y":179444},{"x":34,"y":-85},{"x":-18,"y":-78},{"x":-232,"y":-342},{"x":2,"y":-105},{"x":95,"y":-173}],"type":"admin"},{"arc":[{"x":149519,"y":178661},{"x":72,"y":37},{"x":83,"y":2},{"x":18,"y":-24},{"x":-38,"y":-62},{"x":55,"y":-22},{"x":-30,"y":-55}],"type":"admin"},{"arc":[{"x":152861,"y":173961},{"x":-194,"y":165},{"x":-85,"y":122}],"type":"area"},{"arc":[{"x":152582,"y":174248},{"x":-89,"y":-104},{"x":-79,"y":-6}],"type":"admin"},{"arc":[{"x":152414,"y":174138},{"x":-36,"y":-39},{"x":-72,"y":-5},{"x":-23,"y":-45},{"x":84,"y":-215},{"x":-6,"y":-159},{"x":45,"y":-32},{"x":220,"y":-13}],"type":"admin"},{"arc":[{"x":152626,"y":173630},{"x":83,"y":-17},{"x":165,"y":-128},{"x":111,"y":-30}],"type":"admin"},{"arc":[{"x":151989,"y":174593},{"x":132,"y":-109},{"x":330,"y":-100},{"x":131,"y":-136}],"type":"admin"},{"arc":[{"x":149519,"y":178661},{"x":-16,"y":-108},{"x":-109,"y":-162},{"x":-84,"y":-204}],"type":"admin"},{"arc":[{"x":149310,"y":178187},{"x":-36,"y":-126},{"x":39,"y":-94}],"type":"admin"},{"arc":[{"x":149313,"y":177967},{"x":191,"y":-143},{"x":127,"y":-57}],"type":"admin"},{"arc":[{"x":160394,"y":175489},{"x":-172,"y":182},{"x":-331,"y":244},{"x":-152,"y":69},{"x":-159,"y":-28},{"x":-216,"y":35}],"type":"area"},{"arc":[{"x":159364,"y":175991},{"x":-224,"y":77},{"x":-74,"y":72},{"x":-113,"y":10},{"x":18,"y":222},{"x":-54,"y":-27},{"x":-38,"y":39}],"type":"admin"},{"arc":[{"x":158879,"y":176384},{"x":-473,"y":97},{"x":-90,"y":-31},{"x":0,"y":-25},{"x":-78,"y":10},{"x":-186,"y":107},{"x":-41,"y":9},{"x":-32,"y":-36},{"x":-75,"y":47},{"x":-71,"y":-1},{"x":-71,"y":-44},{"x":-147,"y":15},{"x":-1,"y":-33},{"x":65,"y":-54},{"x":-43,"y":3},{"x":-51,"y":54},{"x":-34,"y":-45}],"type":"admin"},{"arc":[{"x":157551,"y":176457},{"x":74,"y":-35},{"x":30,"y":-169},{"x":-55,"y":-133},{"x":-36,"y":-1},{"x":9,"y":-49},{"x":-103,"y":38},{"x":-112,"y":-35},{"x":-123,"y":-3}],"type":"area"},{"arc":[{"x":157235,"y":176070},{"x":75,"y":-152},{"x":75,"y":-12},{"x":21,"y":-127},{"x":-31,"y":4},{"x":5,"y":-60},{"x":96,"y":-185},{"x":-45,"y":-2},{"x":34,"y":-33},{"x":-25,"y":17},{"x":-21,"y":-39},{"x":-95,"y":0},{"x":-39,"y":-87},{"x":-49,"y":-14},{"x":9,"y":-30},{"x":-34,"y":-4},{"x":-35,"y":-67},{"x":-24,"y":2},{"x":-3,"y":-131}],"type":"admin"},{"arc":[{"x":157149,"y":175150},{"x":56,"y":-5},{"x":14,"y":-64},{"x":35,"y":-8},{"x":24,"y":27},{"x":9,"y":-109},{"x":145,"y":-173}],"type":"area"},{"arc":[{"x":157432,"y":174818},{"x":-8,"y":-24},{"x":50,"y":26},{"x":53,"y":-16},{"x":-2,"y":-44},{"x":27,"y":-22},{"x":49,"y":18},{"x":25,"y":-58},{"x":108,"y":4},{"x":-16,"y":-43},{"x":-77,"y":-17},{"x":78,"y":0},{"x":14,"y":-37}],"type":"admin"},{"arc":[{"x":157733,"y":174605},{"x":65,"y":-42},{"x":7,"y":38},{"x":27,"y":-9},{"x":-7,"y":82},{"x":71,"y":10},{"x":20,"y":29},{"x":88,"y":5},{"x":100,"y":-120},{"x":73,"y":-23},{"x":99,"y":79},{"x":69,"y":-10},{"x":-46,"y":-137},{"x":101,"y":-98},{"x":78,"y":15},{"x":-4,"y":-53},{"x":33,"y":-35},{"x":117,"y":-12},{"x":29,"y":77},{"x":-37,"y":43},{"x":69,"y":19},{"x":40,"y":-79},{"x":71,"y":-20},{"x":-56,"y":-58},{"x":116,"y":-200},{"x":-20,"y":-44},{"x":-39,"y":5},{"x":2,"y":-78},{"x":90,"y":-39},{"x":-3,"y":-53},{"x":46,"y":-47},{"x":8,"y":15},{"x":11,"y":-28},{"x":115,"y":-41}],"type":"area"},{"arc":[{"x":159066,"y":173796},{"x":42,"y":63},{"x":88,"y":57},{"x":13,"y":165},{"x":79,"y":-27},{"x":27,"y":22},{"x":20,"y":96},{"x":61,"y":50},{"x":-17,"y":84},{"x":105,"y":38},{"x":172,"y":-28},{"x":227,"y":-104},{"x":328,"y":45},{"x":-44,"y":43},{"x":5,"y":49},{"x":69,"y":89},{"x":62,"y":17},{"x":-24,"y":49},{"x":38,"y":20},{"x":7,"y":40},{"x":-35,"y":28},{"x":-46,"y":-11},{"x":19,"y":48},{"x":-31,"y":-18},{"x":-32,"y":16},{"x":4,"y":45},{"x":98,"y":31},{"x":-96,"y":-19},{"x":-32,"y":92},{"x":23,"y":33},{"x":163,"y":2},{"x":-3,"y":33},{"x":77,"y":86}],"type":"area"},{"arc":[{"x":160433,"y":174930},{"x":70,"y":78},{"x":-95,"y":215},{"x":25,"y":69},{"x":-39,"y":197}],"type":"admin"},{"arc":[{"x":154830,"y":171660},{"x":-34,"y":-20},{"x":72,"y":-93},{"x":-49,"y":-52},{"x":4,"y":-57},{"x":-37,"y":-23},{"x":36,"y":-99},{"x":-64,"y":-32}],"type":"admin"},{"arc":[{"x":154758,"y":171284},{"x":-29,"y":-80},{"x":27,"y":-49},{"x":-58,"y":-70},{"x":64,"y":-74},{"x":-8,"y":-23},{"x":-63,"y":6},{"x":10,"y":-85},{"x":67,"y":-55},{"x":30,"y":103},{"x":101,"y":-79},{"x":26,"y":-39},{"x":-11,"y":-139}],"type":"admin"},{"arc":[{"x":154914,"y":170700},{"x":67,"y":-1},{"x":37,"y":-45},{"x":-5,"y":-28},{"x":-53,"y":-8},{"x":46,"y":-55},{"x":71,"y":11},{"x":34,"y":-49},{"x":28,"y":25},{"x":22,"y":-61},{"x":101,"y":-78},{"x":13,"y":18},{"x":36,"y":-18},{"x":21,"y":26},{"x":14,"y":-25},{"x":43,"y":-1},{"x":15,"y":35},{"x":-59,"y":27},{"x":37,"y":15},{"x":-13,"y":35},{"x":100,"y":-39},{"x":55,"y":-50},{"x":141,"y":-253},{"x":93,"y":-56},{"x":139,"y":-183}],"type":"admin"},{"arc":[{"x":155897,"y":169942},{"x":56,"y":-40},{"x":25,"y":17},{"x":88,"y":-19},{"x":74,"y":-54},{"x":156,"y":90},{"x":34,"y":59},{"x":178,"y":31},{"x":127,"y":138},{"x":126,"y":28},{"x":31,"y":83},{"x":113,"y":41}],"type":"admin"},{"arc":[{"x":156905,"y":170316},{"x":-8,"y":160},{"x":-83,"y":39},{"x":-28,"y":40},{"x":7,"y":99},{"x":94,"y":88},{"x":4,"y":45},{"x":-67,"y":68},{"x":-81,"y":29},{"x":7,"y":44},{"x":-32,"y":37},{"x":-49,"y":8},{"x":-59,"y":84},{"x":-126,"y":13},{"x":-72,"y":65},{"x":-76,"y":9},{"x":-135,"y":172},{"x":-155,"y":20},{"x":-35,"y":31},{"x":-68,"y":-9},{"x":-58,"y":53},{"x":-89,"y":-29},{"x":-24,"y":-33},{"x":-176,"y":-8},{"x":-6,"y":41},{"x":-98,"y":51},{"x":-12,"y":43},{"x":28,"y":39},{"x":-9,"y":64},{"x":41,"y":45},{"x":-25,"y":91},{"x":32,"y":60},{"x":-87,"y":9},{"x":-66,"y":-40},{"x":-132,"y":-21},{"x":-131,"y":14},{"x":44,"y":-124},{"x":-47,"y":-78},{"x":-76,"y":-14},{"x":-65,"y":-68},{"x":-60,"y":112},{"x":-97,"y":95}],"type":"area"},{"arc":[{"x":157232,"y":172375},{"x":-23,"y":-37},{"x":-62,"y":-20},{"x":-115,"y":84},{"x":9,"y":41},{"x":133,"y":27}],"type":"area"},{"arc":[{"x":157174,"y":172470},{"x":-16,"y":31},{"x":-55,"y":15},{"x":45,"y":52},{"x":98,"y":-22},{"x":207,"y":87},{"x":-33,"y":125},{"x":31,"y":11},{"x":1,"y":112},{"x":34,"y":23},{"x":50,"y":132},{"x":-60,"y":164},{"x":-48,"y":24},{"x":-29,"y":71},{"x":23,"y":46},{"x":-56,"y":163},{"x":62,"y":61},{"x":-23,"y":146},{"x":-70,"y":140},{"x":-96,"y":29},{"x":-61,"y":58}],"type":"area"},{"arc":[{"x":157178,"y":173938},{"x":-184,"y":52},{"x":-55,"y":58},{"x":-81,"y":-4},{"x":-259,"y":174},{"x":-28,"y":65},{"x":-249,"y":70},{"x":41,"y":28},{"x":-28,"y":43},{"x":61,"y":6},{"x":-22,"y":79},{"x":-23,"y":4}],"type":"admin"},{"arc":[{"x":156351,"y":174513},{"x":-65,"y":-108},{"x":-102,"y":-50}],"type":"area"},{"arc":[{"x":156184,"y":174355},{"x":-150,"y":-8},{"x":-11,"y":-176},{"x":-72,"y":-59},{"x":-39,"y":2},{"x":-2,"y":-63},{"x":-180,"y":-24},{"x":35,"y":-91},{"x":-113,"y":-32},{"x":-14,"y":-38},{"x":32,"y":-57},{"x":-79,"y":17},{"x":-75,"y":-33},{"x":-120,"y":39},{"x":3,"y":-91},{"x":44,"y":-43},{"x":-81,"y":-33},{"x":-151,"y":30},{"x":-33,"y":-92},{"x":-160,"y":10},{"x":-47,"y":76},{"x":-209,"y":-114},{"x":-123,"y":46},{"x":-102,"y":-94},{"x":48,"y":-21},{"x":18,"y":-56},{"x":-13,"y":-21},{"x":-62,"y":8},{"x":17,"y":-86},{"x":-98,"y":-30},{"x":-11,"y":27},{"x":-81,"y":-1},{"x":-47,"y":-42},{"x":10,"y":-35},{"x":-121,"y":-49},{"x":-106,"y":82}],"type":"area"},{"arc":[{"x":154091,"y":173303},{"x":-36,"y":30},{"x":-92,"y":-8},{"x":63,"y":-87},{"x":-33,"y":-50},{"x":-171,"y":47}],"type":"admin"},{"arc":[{"x":153792,"y":173226},{"x":52,"y":-26},{"x":-38,"y":-35},{"x":8,"y":-49},{"x":97,"y":-32},{"x":-26,"y":-102}],"type":"admin"},{"arc":[{"x":153885,"y":172982},{"x":31,"y":-1},{"x":53,"y":59},{"x":123,"y":-48},{"x":-28,"y":-65},{"x":45,"y":23},{"x":48,"y":-17},{"x":25,"y":36},{"x":13,"y":-93},{"x":29,"y":13},{"x":39,"y":-19},{"x":45,"y":-83},{"x":-64,"y":-41},{"x":84,"y":5},{"x":158,"y":-116},{"x":153,"y":124},{"x":-33,"y":-60},{"x":88,"y":-42},{"x":39,"y":-165}],"type":"admin"},{"arc":[{"x":154733,"y":172492},{"x":27,"y":-32},{"x":94,"y":4},{"x":36,"y":-46},{"x":93,"y":102},{"x":94,"y":20},{"x":19,"y":42},{"x":134,"y":12},{"x":79,"y":68},{"x":86,"y":18},{"x":-29,"y":-152},{"x":40,"y":-35},{"x":187,"y":13},{"x":70,"y":-68},{"x":154,"y":15},{"x":94,"y":-54},{"x":49,"y":23},{"x":39,"y":75},{"x":42,"y":-11},{"x":9,"y":100},{"x":37,"y":47},{"x":80,"y":-7},{"x":114,"y":37},{"x":252,"y":133},{"x":58,"y":-92},{"x":96,"y":6},{"x":33,"y":-33},{"x":55,"y":12},{"x":30,"y":-35},{"x":76,"y":-13},{"x":-10,"y":-59},{"x":33,"y":-41},{"x":53,"y":-47},{"x":36,"y":35},{"x":-40,"y":-73},{"x":70,"y":-19},{"x":0,"y":-37},{"x":125,"y":-88},{"x":13,"y":-40},{"x":-26,"y":-16},{"x":34,"y":-58},{"x":69,"y":-24},{"x":-8,"y":-41},{"x":206,"y":-128},{"x":19,"y":-36},{"x":90,"y":-26}],"type":"area"},{"arc":[{"x":157545,"y":171943},{"x":6,"y":105},{"x":-51,"y":133},{"x":-58,"y":66},{"x":-210,"y":128}],"type":"area"},{"arc":[{"x":157232,"y":172375},{"x":-58,"y":95}],"type":"area"},{"arc":[{"x":154733,"y":172492},{"x":-76,"y":-87},{"x":7,"y":-194}],"type":"admin"},{"arc":[{"x":154664,"y":172211},{"x":-19,"y":-295},{"x":85,"y":-79},{"x":35,"y":24},{"x":36,"y":-28},{"x":-15,"y":-33},{"x":32,"y":-15},{"x":-63,"y":-47},{"x":16,"y":-44},{"x":37,"y":6},{"x":22,"y":-40}],"type":"admin"},{"arc":[{"x":156905,"y":170316},{"x":68,"y":61},{"x":91,"y":-39},{"x":45,"y":63},{"x":-61,"y":61},{"x":29,"y":54},{"x":-22,"y":55},{"x":50,"y":-16},{"x":56,"y":71},{"x":113,"y":16},{"x":-43,"y":-73},{"x":132,"y":-14},{"x":34,"y":-39},{"x":74,"y":23},{"x":1,"y":-69},{"x":38,"y":13},{"x":14,"y":-49},{"x":36,"y":2},{"x":61,"y":10},{"x":51,"y":50},{"x":34,"y":-23},{"x":53,"y":89},{"x":233,"y":130},{"x":27,"y":-87},{"x":28,"y":35},{"x":38,"y":-17},{"x":148,"y":29},{"x":24,"y":47},{"x":-36,"y":78}],"type":"admin"},{"arc":[{"x":158221,"y":170777},{"x":44,"y":100},{"x":130,"y":48},{"x":41,"y":89},{"x":81,"y":-1},{"x":64,"y":90}],"type":"admin"},{"arc":[{"x":158581,"y":171103},{"x":-78,"y":118},{"x":3,"y":57},{"x":-101,"y":143},{"x":-97,"y":-10},{"x":-19,"y":80},{"x":-28,"y":-16},{"x":-145,"y":65},{"x":-41,"y":58},{"x":-269,"y":54},{"x":-52,"y":45},{"x":-5,"y":43},{"x":-112,"y":54},{"x":-92,"y":149}],"type":"area"},{"arc":[{"x":157733,"y":174605},{"x":-53,"y":-38},{"x":-68,"y":-148},{"x":48,"y":-29},{"x":31,"y":-101},{"x":-71,"y":52},{"x":-48,"y":-33},{"x":-97,"y":12},{"x":-48,"y":-51},{"x":84,"y":-58},{"x":-40,"y":-89},{"x":31,"y":1},{"x":-49,"y":-2},{"x":-28,"y":-59},{"x":-113,"y":19},{"x":-86,"y":-36},{"x":8,"y":-31},{"x":-39,"y":-11},{"x":13,"y":-29},{"x":-30,"y":29},{"x":-20,"y":-21},{"x":20,"y":-44}],"type":"admin"},{"arc":[{"x":158581,"y":171103},{"x":63,"y":6},{"x":92,"y":-97},{"x":52,"y":9},{"x":106,"y":-34},{"x":45,"y":-63}],"type":"admin"},{"arc":[{"x":158939,"y":170924},{"x":79,"y":-13},{"x":42,"y":102},{"x":-20,"y":48},{"x":50,"y":-9},{"x":-13,"y":74},{"x":90,"y":24},{"x":-11,"y":43},{"x":97,"y":174},{"x":48,"y":2},{"x":191,"y":-136},{"x":148,"y":25},{"x":80,"y":104},{"x":156,"y":81},{"x":26,"y":93},{"x":65,"y":24},{"x":81,"y":-45},{"x":80,"y":26},{"x":46,"y":-30},{"x":49,"y":8},{"x":15,"y":170},{"x":75,"y":86},{"x":-48,"y":86},{"x":41,"y":47},{"x":-120,"y":144},{"x":-94,"y":-26},{"x":-264,"y":15},{"x":-8,"y":28},{"x":-105,"y":28},{"x":-43,"y":90},{"x":-104,"y":72},{"x":-48,"y":95},{"x":-33,"y":2},{"x":2,"y":95},{"x":-74,"y":71},{"x":-104,"y":228},{"x":173,"y":147},{"x":80,"y":-58},{"x":3,"y":-95},{"x":145,"y":77},{"x":-74,"y":138},{"x":28,"y":57},{"x":-14,"y":77},{"x":-81,"y":66},{"x":80,"y":140},{"x":0,"y":132},{"x":-146,"y":33},{"x":-49,"y":-25},{"x":-77,"y":130},{"x":-25,"y":-18},{"x":-16,"y":17},{"x":-64,"y":-80},{"x":-90,"y":14},{"x":-45,"y":-18},{"x":-60,"y":40},{"x":-14,"y":95},{"x":49,"y":114},{"x":-48,"y":63}],"type":"area"},{"arc":[{"x":164996,"y":174613},{"x":-53,"y":12},{"x":-220,"y":-96},{"x":-115,"y":-106},{"x":-60,"y":2},{"x":-42,"y":-36},{"x":-91,"y":-170},{"x":24,"y":-124},{"x":-35,"y":-139},{"x":-139,"y":-38},{"x":-116,"y":40},{"x":-41,"y":-40},{"x":-155,"y":2},{"x":-50,"y":-43},{"x":-55,"y":-10},{"x":-74,"y":-94},{"x":-106,"y":66},{"x":-83,"y":-36},{"x":-143,"y":32},{"x":-120,"y":-89},{"x":5,"y":-44},{"x":-25,"y":-11},{"x":-24,"y":137},{"x":-81,"y":-35},{"x":-63,"y":38},{"x":-220,"y":262},{"x":-225,"y":-27},{"x":-18,"y":73}],"type":"area"},{"arc":[{"x":162671,"y":174139},{"x":-102,"y":-58},{"x":-236,"y":22},{"x":-36,"y":-15},{"x":-42,"y":21},{"x":-170,"y":-20},{"x":-110,"y":-160},{"x":-1,"y":-38},{"x":-37,"y":-20},{"x":-8,"y":-85},{"x":-58,"y":9},{"x":-60,"y":-62},{"x":-5,"y":-94},{"x":-134,"y":40},{"x":-105,"y":-49},{"x":-54,"y":23},{"x":-64,"y":-29},{"x":-17,"y":34},{"x":-90,"y":-1},{"x":-19,"y":43},{"x":-326,"y":11},{"x":-24,"y":23},{"x":0,"y":182},{"x":-104,"y":102},{"x":-111,"y":201},{"x":-26,"y":100},{"x":-117,"y":190},{"x":-53,"y":278},{"x":-129,"y":143}],"type":"admin"},{"arc":[{"x":158939,"y":170924},{"x":-2,"y":-79},{"x":-35,"y":-51},{"x":37,"y":-18},{"x":13,"y":-58},{"x":-74,"y":-96},{"x":-8,"y":-86},{"x":90,"y":-159},{"x":9,"y":-90},{"x":-51,"y":29},{"x":-34,"y":-89},{"x":125,"y":-116},{"x":39,"y":-356},{"x":57,"y":-53},{"x":80,"y":-15},{"x":15,"y":-155},{"x":80,"y":-26}],"type":"admin"},{"arc":[{"x":159280,"y":169506},{"x":115,"y":24},{"x":104,"y":-41},{"x":24,"y":21},{"x":57,"y":-19},{"x":84,"y":41},{"x":24,"y":40},{"x":112,"y":4},{"x":49,"y":45},{"x":48,"y":-26},{"x":39,"y":26},{"x":90,"y":-24},{"x":94,"y":122},{"x":92,"y":78},{"x":35,"y":-9},{"x":46,"y":59},{"x":41,"y":-15},{"x":37,"y":53},{"x":63,"y":22},{"x":74,"y":-23},{"x":143,"y":35},{"x":57,"y":45},{"x":54,"y":-171},{"x":123,"y":-7},{"x":41,"y":-46},{"x":73,"y":38},{"x":55,"y":-15}],"type":"admin"},{"arc":[{"x":161054,"y":169763},{"x":20,"y":71},{"x":71,"y":25},{"x":38,"y":54},{"x":13,"y":77},{"x":77,"y":6},{"x":14,"y":26},{"x":105,"y":-26},{"x":50,"y":21},{"x":12,"y":114},{"x":56,"y":52},{"x":58,"y":-27},{"x":46,"y":29},{"x":115,"y":133},{"x":48,"y":-14},{"x":45,"y":-70},{"x":-21,"y":-79},{"x":38,"y":-46},{"x":30,"y":-125},{"x":41,"y":-83},{"x":77,"y":-27},{"x":21,"y":-113},{"x":47,"y":-45},{"x":74,"y":74},{"x":173,"y":26},{"x":71,"y":-21},{"x":-47,"y":50},{"x":43,"y":15},{"x":9,"y":81},{"x":19,"y":-17},{"x":43,"y":35},{"x":82,"y":-14},{"x":106,"y":91},{"x":69,"y":152},{"x":43,"y":15},{"x":50,"y":-24}],"type":"admin"},{"arc":[{"x":155849,"y":175546},{"x":-81,"y":-53},{"x":-102,"y":75},{"x":-132,"y":-45},{"x":-30,"y":30}],"type":"area"},{"arc":[{"x":154147,"y":174237},{"x":92,"y":25},{"x":89,"y":-44},{"x":156,"y":32},{"x":-7,"y":-82},{"x":29,"y":-13},{"x":-192,"y":-38},{"x":-1,"y":-86},{"x":46,"y":-1},{"x":39,"y":-60},{"x":-33,"y":-29},{"x":22,"y":-176},{"x":21,"y":-25},{"x":51,"y":2},{"x":41,"y":82},{"x":33,"y":-5},{"x":-1,"y":-23},{"x":33,"y":15},{"x":0,"y":-45},{"x":-51,"y":-14},{"x":28,"y":-24},{"x":-15,"y":-36},{"x":42,"y":31},{"x":25,"y":-39},{"x":-70,"y":-69},{"x":-50,"y":39},{"x":-46,"y":-33},{"x":-26,"y":17},{"x":-77,"y":-114},{"x":25,"y":101},{"x":-49,"y":-139},{"x":-51,"y":-58},{"x":-34,"y":26},{"x":-42,"y":-40},{"x":-56,"y":2},{"x":10,"y":-36},{"x":67,"y":-13},{"x":-6,"y":-37},{"x":-98,"y":-27}],"type":"admin"},{"arc":[{"x":156184,"y":174355},{"x":-22,"y":66},{"x":-82,"y":5},{"x":-35,"y":78},{"x":-94,"y":-20},{"x":56,"y":52},{"x":-1,"y":48},{"x":-83,"y":222},{"x":-37,"y":25},{"x":-129,"y":-14},{"x":11,"y":25},{"x":-52,"y":-16},{"x":-12,"y":25},{"x":111,"y":118},{"x":-64,"y":51},{"x":71,"y":82},{"x":-64,"y":5},{"x":40,"y":11},{"x":-75,"y":11},{"x":0,"y":19},{"x":-24,"y":-12},{"x":-1,"y":140},{"x":72,"y":27},{"x":19,"y":61},{"x":29,"y":-3},{"x":-11,"y":-57},{"x":73,"y":13},{"x":-30,"y":137},{"x":-85,"y":14},{"x":84,"y":78}],"type":"area"},{"arc":[{"x":157498,"y":177198},{"x":-150,"y":-26},{"x":-76,"y":17},{"x":-47,"y":-36},{"x":-62,"y":21},{"x":-105,"y":-22},{"x":-57,"y":34},{"x":-181,"y":-83},{"x":-21,"y":68},{"x":-100,"y":-42},{"x":-98,"y":47},{"x":-112,"y":-72},{"x":-114,"y":36}],"type":"admin"},{"arc":[{"x":155849,"y":175546},{"x":48,"y":53},{"x":1,"y":-22},{"x":118,"y":38},{"x":12,"y":-41},{"x":45,"y":39},{"x":186,"y":36}],"type":"area"},{"arc":[{"x":156259,"y":175649},{"x":120,"y":55},{"x":-29,"y":36},{"x":359,"y":41},{"x":313,"y":143},{"x":-15,"y":55},{"x":67,"y":62},{"x":161,"y":29}],"type":"admin"},{"arc":[{"x":157551,"y":176457},{"x":-85,"y":34},{"x":-8,"y":336},{"x":132,"y":46},{"x":-30,"y":10},{"x":9,"y":31},{"x":139,"y":23},{"x":8,"y":26}],"type":"admin"},{"arc":[{"x":157716,"y":176963},{"x":-73,"y":34},{"x":-81,"y":-4},{"x":-24,"y":-3},{"x":5,"y":-48},{"x":-85,"y":-10},{"x":-21,"y":99},{"x":107,"y":11},{"x":27,"y":64},{"x":-73,"y":92}],"type":"admin"},{"arc":[{"x":161181,"y":179077},{"x":59,"y":-98},{"x":50,"y":-2},{"x":91,"y":-93},{"x":86,"y":-43},{"x":56,"y":3},{"x":78,"y":-36},{"x":60,"y":28},{"x":40,"y":-19},{"x":44,"y":34},{"x":120,"y":-12},{"x":18,"y":-70},{"x":-20,"y":-17},{"x":67,"y":-55},{"x":-62,"y":-126},{"x":-55,"y":-5},{"x":-116,"y":-68},{"x":13,"y":-46},{"x":-22,"y":-17},{"x":-113,"y":-9},{"x":64,"y":-39},{"x":9,"y":-42},{"x":53,"y":5},{"x":36,"y":-96},{"x":-73,"y":-42},{"x":-60,"y":11},{"x":-37,"y":-60},{"x":-103,"y":-20},{"x":-64,"y":-48},{"x":-5,"y":-72},{"x":-95,"y":-44},{"x":-106,"y":-110},{"x":0,"y":-221},{"x":72,"y":-52},{"x":93,"y":-235},{"x":-17,"y":-74},{"x":-40,"y":-20},{"x":-32,"y":-5},{"x":-32,"y":51},{"x":-40,"y":-19},{"x":17,"y":-23},{"x":-29,"y":-19},{"x":31,"y":-40},{"x":-31,"y":-18},{"x":3,"y":-42},{"x":23,"y":-28},{"x":-26,"y":-8},{"x":17,"y":-31},{"x":-26,"y":-39},{"x":48,"y":-112},{"x":-161,"y":0}],"type":"admin"},{"arc":[{"x":161064,"y":176934},{"x":-15,"y":-80},{"x":-66,"y":-9},{"x":59,"y":-119},{"x":25,"y":-4},{"x":19,"y":-52},{"x":60,"y":7},{"x":29,"y":-20},{"x":9,"y":-107},{"x":37,"y":-17},{"x":16,"y":-48},{"x":72,"y":-24},{"x":58,"y":-79},{"x":51,"y":-2}],"type":"area"},{"arc":[{"x":161418,"y":176380},{"x":88,"y":-56},{"x":19,"y":14},{"x":78,"y":-24},{"x":52,"y":-177},{"x":220,"y":-238},{"x":19,"y":-63},{"x":145,"y":-72},{"x":66,"y":-62},{"x":180,"y":-60}],"type":"area"},{"arc":[{"x":162285,"y":175642},{"x":89,"y":216},{"x":-402,"y":245},{"x":-30,"y":-52},{"x":-45,"y":26},{"x":-28,"y":29},{"x":-14,"y":167},{"x":129,"y":145},{"x":89,"y":-43},{"x":135,"y":36},{"x":27,"y":134},{"x":134,"y":-29},{"x":-17,"y":46},{"x":64,"y":98},{"x":37,"y":-12},{"x":62,"y":-87},{"x":22,"y":15},{"x":47,"y":-62},{"x":43,"y":-7},{"x":66,"y":117},{"x":21,"y":-12},{"x":7,"y":137},{"x":33,"y":37},{"x":26,"y":-17},{"x":25,"y":78},{"x":40,"y":-65},{"x":34,"y":14},{"x":12,"y":52},{"x":30,"y":-58},{"x":88,"y":71},{"x":21,"y":-11},{"x":11,"y":34},{"x":33,"y":-7},{"x":3,"y":35},{"x":-131,"y":102},{"x":62,"y":17},{"x":-2,"y":37},{"x":57,"y":0},{"x":-126,"y":114},{"x":-8,"y":105},{"x":34,"y":41},{"x":-17,"y":85},{"x":45,"y":15},{"x":-29,"y":18},{"x":20,"y":23},{"x":56,"y":48},{"x":104,"y":7},{"x":-49,"y":48}],"type":"area"},{"arc":[{"x":163093,"y":177572},{"x":-44,"y":38},{"x":-53,"y":-3},{"x":-96,"y":104},{"x":-57,"y":13},{"x":58,"y":81},{"x":45,"y":0},{"x":40,"y":79},{"x":22,"y":-41},{"x":98,"y":14},{"x":30,"y":80},{"x":-75,"y":84},{"x":21,"y":82},{"x":53,"y":-2},{"x":10,"y":21},{"x":65,"y":-27},{"x":22,"y":51},{"x":33,"y":211},{"x":-37,"y":12},{"x":-21,"y":98},{"x":35,"y":104},{"x":-60,"y":202},{"x":-49,"y":51},{"x":13,"y":40},{"x":38,"y":13},{"x":20,"y":88}],"type":"admin"},{"arc":[{"x":161418,"y":176380},{"x":-28,"y":-95},{"x":-89,"y":-39},{"x":-49,"y":8},{"x":-95,"y":-59},{"x":-52,"y":50},{"x":-101,"y":40},{"x":-39,"y":-25},{"x":-20,"y":-80},{"x":-30,"y":10},{"x":-54,"y":-56},{"x":-47,"y":63},{"x":-26,"y":-87},{"x":-59,"y":-52},{"x":-75,"y":84},{"x":-55,"y":-40},{"x":-107,"y":-18},{"x":-29,"y":-267}],"type":"area"},{"arc":[{"x":160463,"y":175817},{"x":85,"y":-224},{"x":55,"y":-21},{"x":81,"y":21},{"x":54,"y":-52},{"x":43,"y":3},{"x":-13,"y":-21},{"x":54,"y":-57},{"x":139,"y":-12},{"x":56,"y":-153},{"x":83,"y":-19},{"x":-11,"y":-73},{"x":135,"y":-113},{"x":30,"y":0},{"x":-10,"y":33},{"x":31,"y":-13},{"x":80,"y":28},{"x":15,"y":51},{"x":119,"y":-34},{"x":-1,"y":-48},{"x":72,"y":-32},{"x":33,"y":-50},{"x":65,"y":-1},{"x":87,"y":-109},{"x":74,"y":-23},{"x":93,"y":13},{"x":19,"y":-27},{"x":-23,"y":-50},{"x":55,"y":-19},{"x":5,"y":-105},{"x":121,"y":-42},{"x":46,"y":-72},{"x":60,"y":-19},{"x":87,"y":-99},{"x":78,"y":-42},{"x":50,"y":16},{"x":45,"y":-47},{"x":39,"y":14},{"x":72,"y":-102},{"x":73,"y":-17},{"x":47,"y":-56},{"x":48,"y":21}],"type":"admin"},{"arc":[{"x":162734,"y":174265},{"x":-16,"y":16},{"x":16,"y":54},{"x":43,"y":27},{"x":-8,"y":51},{"x":110,"y":74},{"x":46,"y":127},{"x":50,"y":36},{"x":27,"y":116},{"x":-69,"y":94},{"x":-172,"y":46},{"x":-82,"y":129},{"x":-24,"y":95},{"x":-70,"y":52},{"x":-93,"y":162},{"x":-52,"y":174},{"x":-97,"y":30},{"x":-22,"y":81},{"x":-36,"y":13}],"type":"area"},{"arc":[{"x":165789,"y":176114},{"x":-100,"y":-171},{"x":-6,"y":-118},{"x":-168,"y":-62},{"x":-12,"y":-24},{"x":-263,"y":19},{"x":15,"y":128},{"x":-87,"y":85},{"x":-96,"y":-4},{"x":-156,"y":-99},{"x":-123,"y":41},{"x":-228,"y":10},{"x":-43,"y":85},{"x":-29,"y":4},{"x":13,"y":59},{"x":-43,"y":99},{"x":22,"y":70},{"x":-86,"y":69},{"x":31,"y":21},{"x":-13,"y":71},{"x":-78,"y":5},{"x":14,"y":55},{"x":-86,"y":47},{"x":-18,"y":37},{"x":-29,"y":-2},{"x":-20,"y":49},{"x":-101,"y":76},{"x":-99,"y":36},{"x":-12,"y":50},{"x":-51,"y":43},{"x":-121,"y":-9},{"x":-203,"y":371},{"x":22,"y":28},{"x":-92,"y":24},{"x":-10,"y":61},{"x":-45,"y":48},{"x":38,"y":-22},{"x":61,"y":62},{"x":144,"y":-74},{"x":79,"y":64},{"x":-208,"y":150},{"x":54,"y":71},{"x":-36,"y":16},{"x":-7,"y":89},{"x":49,"y":4},{"x":86,"y":61},{"x":5,"y":75},{"x":-48,"y":98},{"x":-21,"y":0},{"x":-14,"y":-66},{"x":-138,"y":39},{"x":-62,"y":-38},{"x":-35,"y":-32},{"x":51,"y":-88},{"x":-99,"y":-83},{"x":-134,"y":63},{"x":-81,"y":-53},{"x":-40,"y":28},{"x":1,"y":-88},{"x":-40,"y":-20}],"type":"admin"},{"arc":[{"x":162734,"y":174265},{"x":7,"y":-64},{"x":-70,"y":-62}],"type":"admin"},{"arc":[{"x":161064,"y":176934},{"x":18,"y":33},{"x":-74,"y":116},{"x":43,"y":66},{"x":-94,"y":104},{"x":24,"y":33},{"x":-79,"y":40},{"x":-70,"y":-63},{"x":-144,"y":46}],"type":"admin"},{"arc":[{"x":160688,"y":177309},{"x":-52,"y":-116},{"x":15,"y":-55},{"x":-140,"y":72},{"x":-138,"y":-53},{"x":-75,"y":-146},{"x":-83,"y":37},{"x":-329,"y":-284},{"x":-45,"y":-4}],"type":"area"},{"arc":[{"x":159841,"y":176760},{"x":-75,"y":-86},{"x":-64,"y":-42},{"x":-48,"y":0},{"x":-1,"y":-123},{"x":130,"y":-160},{"x":-18,"y":-62},{"x":-47,"y":14},{"x":-22,"y":-23},{"x":24,"y":-76},{"x":-45,"y":4},{"x":-43,"y":-92},{"x":-104,"y":49},{"x":-31,"y":-45},{"x":-54,"y":29},{"x":-2,"y":-105},{"x":-62,"y":4},{"x":-15,"y":-55}],"type":"admin"},{"arc":[{"x":160394,"y":175489},{"x":-23,"y":38},{"x":5,"y":271},{"x":87,"y":19}],"type":"admin"},{"arc":[{"x":160688,"y":177309},{"x":-172,"y":108},{"x":-3,"y":107},{"x":-55,"y":48},{"x":13,"y":80},{"x":-47,"y":43},{"x":-36,"y":-34},{"x":7,"y":25},{"x":-61,"y":21},{"x":-36,"y":49},{"x":131,"y":125},{"x":8,"y":50},{"x":-34,"y":36},{"x":28,"y":24},{"x":-95,"y":56},{"x":-26,"y":50},{"x":-186,"y":15},{"x":-144,"y":95},{"x":-62,"y":-26},{"x":-20,"y":21},{"x":-12,"y":93},{"x":-37,"y":39},{"x":48,"y":45},{"x":-22,"y":147},{"x":37,"y":56},{"x":-41,"y":44},{"x":-68,"y":16},{"x":-6,"y":101}],"type":"admin"},{"arc":[{"x":159159,"y":178879},{"x":-28,"y":-60},{"x":-114,"y":-16},{"x":9,"y":-101},{"x":-36,"y":-31},{"x":-35,"y":-130},{"x":-38,"y":28},{"x":-56,"y":-13},{"x":-45,"y":-95},{"x":-121,"y":68},{"x":7,"y":-76},{"x":46,"y":-21},{"x":-4,"y":-92},{"x":55,"y":-70},{"x":126,"y":-65},{"x":74,"y":7},{"x":-33,"y":-204},{"x":54,"y":-36},{"x":-33,"y":1},{"x":16,"y":-13},{"x":-34,"y":-39},{"x":30,"y":-30}],"type":"admin"},{"arc":[{"x":158999,"y":177891},{"x":100,"y":24},{"x":91,"y":-130},{"x":-59,"y":-20},{"x":-7,"y":-27},{"x":29,"y":-15},{"x":7,"y":-174},{"x":-41,"y":-55},{"x":-33,"y":32},{"x":-56,"y":-20},{"x":-155,"y":-178}],"type":"admin"},{"arc":[{"x":158875,"y":177328},{"x":253,"y":-58},{"x":2,"y":-80},{"x":-42,"y":-88},{"x":104,"y":-3},{"x":118,"y":-43},{"x":38,"y":67},{"x":89,"y":-4},{"x":114,"y":-58},{"x":103,"y":6},{"x":2,"y":-53},{"x":-54,"y":-3},{"x":-5,"y":-50},{"x":95,"y":-30},{"x":149,"y":-171}],"type":"admin"},{"arc":[{"x":157149,"y":175150},{"x":-39,"y":-70},{"x":-51,"y":-14},{"x":-73,"y":4},{"x":52,"y":46},{"x":-76,"y":5},{"x":6,"y":-26},{"x":-63,"y":-21},{"x":-100,"y":21},{"x":-305,"y":-43},{"x":-21,"y":22},{"x":24,"y":25},{"x":-3,"y":107},{"x":-26,"y":23},{"x":84,"y":15},{"x":4,"y":83},{"x":-19,"y":33},{"x":-104,"y":-18},{"x":-18,"y":56},{"x":-46,"y":-19},{"x":-2,"y":139},{"x":-83,"y":10},{"x":-5,"y":24},{"x":62,"y":7},{"x":-16,"y":67},{"x":44,"y":35},{"x":-35,"y":-1},{"x":13,"y":18},{"x":-56,"y":-36},{"x":-38,"y":7}],"type":"admin"},{"arc":[{"x":156351,"y":174513},{"x":-62,"y":94},{"x":31,"y":-7},{"x":6,"y":56},{"x":80,"y":3},{"x":-18,"y":25},{"x":21,"y":12},{"x":88,"y":-55},{"x":60,"y":37},{"x":63,"y":-14},{"x":-3,"y":71},{"x":74,"y":-60},{"x":23,"y":5},{"x":-23,"y":33},{"x":85,"y":10},{"x":24,"y":-18},{"x":-25,"y":-10},{"x":42,"y":-12},{"x":-11,"y":-34},{"x":44,"y":-10},{"x":17,"y":28},{"x":-47,"y":4},{"x":81,"y":9},{"x":25,"y":87},{"x":15,"y":-31},{"x":110,"y":-2},{"x":2,"y":79},{"x":29,"y":-1},{"x":12,"y":42},{"x":-21,"y":23},{"x":126,"y":-17},{"x":24,"y":20},{"x":32,"y":-49},{"x":53,"y":-9},{"x":6,"y":19},{"x":76,"y":-50},{"x":42,"y":27}],"type":"admin"},{"arc":[{"x":157909,"y":177904},{"x":-36,"y":-20},{"x":-25,"y":59},{"x":41,"y":-1},{"x":-4,"y":68},{"x":-97,"y":-5},{"x":12,"y":-47},{"x":-24,"y":-6},{"x":26,"y":-6},{"x":6,"y":-43},{"x":-68,"y":22},{"x":-17,"y":-34},{"x":-77,"y":2},{"x":-26,"y":130},{"x":-86,"y":-25},{"x":-11,"y":-55},{"x":-47,"y":55},{"x":-18,"y":-18},{"x":-61,"y":31},{"x":-93,"y":-11},{"x":-27,"y":36},{"x":-117,"y":37},{"x":-33,"y":37},{"x":-150,"y":-11},{"x":-200,"y":-110},{"x":-97,"y":-4},{"x":-114,"y":-55},{"x":-62,"y":14}],"type":"area"},{"arc":[{"x":157498,"y":177198},{"x":10,"y":35},{"x":52,"y":26},{"x":68,"y":-38},{"x":78,"y":46},{"x":46,"y":-2},{"x":-7,"y":138},{"x":26,"y":46},{"x":49,"y":17},{"x":9,"y":48},{"x":-30,"y":18},{"x":1,"y":45},{"x":86,"y":11},{"x":-34,"y":22},{"x":-16,"y":154},{"x":81,"y":101},{"x":-8,"y":39}],"type":"area"},{"arc":[{"x":157909,"y":177904},{"x":101,"y":58},{"x":-49,"y":44},{"x":8,"y":63},{"x":26,"y":-25},{"x":17,"y":19},{"x":29,"y":-78},{"x":58,"y":-42},{"x":8,"y":-58},{"x":96,"y":-98},{"x":60,"y":23},{"x":77,"y":-20},{"x":23,"y":32},{"x":46,"y":-37},{"x":17,"y":56},{"x":95,"y":20},{"x":63,"y":-81},{"x":34,"y":1},{"x":29,"y":24},{"x":-38,"y":59},{"x":137,"y":128},{"x":75,"y":-94},{"x":54,"y":16},{"x":43,"y":-24},{"x":2,"y":-81},{"x":55,"y":15},{"x":24,"y":67}],"type":"area"},{"arc":[{"x":157716,"y":176963},{"x":67,"y":52},{"x":110,"y":5},{"x":58,"y":50},{"x":94,"y":-8},{"x":100,"y":43},{"x":-80,"y":57},{"x":-167,"y":-19},{"x":-40,"y":111},{"x":28,"y":23},{"x":153,"y":-60},{"x":91,"y":27},{"x":-6,"y":22},{"x":76,"y":-35},{"x":4,"y":115},{"x":346,"y":-62},{"x":46,"y":7},{"x":67,"y":82},{"x":169,"y":-4},{"x":24,"y":-36}],"type":"area"},{"arc":[{"x":158856,"y":177333},{"x":19,"y":-5}],"type":"area"},{"arc":[{"x":158879,"y":176384},{"x":48,"y":46},{"x":-64,"y":45},{"x":-88,"y":6},{"x":-173,"y":107},{"x":25,"y":149},{"x":44,"y":48},{"x":-42,"y":107},{"x":-79,"y":16},{"x":22,"y":46},{"x":31,"y":-27},{"x":79,"y":-10},{"x":118,"y":28},{"x":73,"y":-43},{"x":36,"y":-75},{"x":11,"y":73},{"x":27,"y":11},{"x":-28,"y":205},{"x":108,"y":-18},{"x":23,"y":47},{"x":-27,"y":43},{"x":-68,"y":14},{"x":3,"y":52},{"x":-40,"y":3},{"x":7,"y":-37},{"x":-38,"y":0},{"x":-47,"y":100},{"x":16,"y":13}],"type":"area"},{"arc":[{"x":158344,"y":168113},{"x":-142,"y":-8},{"x":-57,"y":26},{"x":-75,"y":-53},{"x":-67,"y":-4},{"x":-46,"y":30},{"x":-36,"y":-40},{"x":-153,"y":79},{"x":-245,"y":65},{"x":-35,"y":-9},{"x":-46,"y":43},{"x":-147,"y":53},{"x":-204,"y":-2},{"x":-173,"y":51},{"x":-64,"y":-37},{"x":16,"y":52},{"x":-217,"y":25},{"x":6,"y":51},{"x":-73,"y":20},{"x":-22,"y":32},{"x":-73,"y":-7},{"x":23,"y":-36},{"x":-66,"y":17},{"x":-49,"y":-24},{"x":-24,"y":18}],"type":"area"},{"arc":[{"x":156375,"y":168455},{"x":-34,"y":-47},{"x":6,"y":-47},{"x":-40,"y":-24},{"x":-40,"y":10},{"x":-57,"y":-93},{"x":-197,"y":-42},{"x":12,"y":-35},{"x":-41,"y":-83},{"x":-95,"y":-15},{"x":-5,"y":-37},{"x":-66,"y":4},{"x":-187,"y":-219},{"x":-42,"y":-17},{"x":-53,"y":25},{"x":59,"y":-159},{"x":-13,"y":-44},{"x":-45,"y":0},{"x":-6,"y":-40},{"x":-33,"y":-14},{"x":-2,"y":-57}],"type":"area"},{"arc":[{"x":155496,"y":167521},{"x":-2,"y":-167},{"x":-86,"y":66},{"x":-4,"y":-183},{"x":-74,"y":-8},{"x":-59,"y":38},{"x":9,"y":-85},{"x":49,"y":-92},{"x":40,"y":-16}],"type":"admin"},{"arc":[{"x":155369,"y":167074},{"x":102,"y":-159},{"x":154,"y":-30},{"x":57,"y":-45},{"x":34,"y":10},{"x":12,"y":-83},{"x":44,"y":-7},{"x":-6,"y":-73},{"x":-28,"y":22},{"x":-27,"y":-25},{"x":0,"y":-109},{"x":62,"y":0},{"x":1,"y":40},{"x":37,"y":9},{"x":-1,"y":-49},{"x":60,"y":-4},{"x":39,"y":-65},{"x":50,"y":1},{"x":2,"y":-36},{"x":98,"y":11},{"x":-54,"y":-50},{"x":23,"y":-16},{"x":-23,"y":-40},{"x":37,"y":-30},{"x":24,"y":51},{"x":59,"y":-21},{"x":30,"y":22},{"x":53,"y":-26},{"x":10,"y":-47},{"x":44,"y":27},{"x":-7,"y":77},{"x":46,"y":0},{"x":61,"y":-44},{"x":49,"y":20},{"x":71,"y":-114},{"x":-18,"y":-23},{"x":-56,"y":14},{"x":-13,"y":-68},{"x":17,"y":-27},{"x":52,"y":1},{"x":40,"y":-39},{"x":67,"y":-11}],"type":"area"},{"arc":[{"x":156571,"y":166138},{"x":97,"y":0}],"type":"admin"},{"arc":[{"x":156668,"y":166138},{"x":42,"y":36},{"x":59,"y":-21},{"x":-9,"y":54},{"x":-157,"y":140},{"x":-59,"y":9},{"x":1,"y":41},{"x":42,"y":33},{"x":123,"y":-5},{"x":-93,"y":55},{"x":119,"y":-16},{"x":63,"y":39},{"x":184,"y":36}],"type":"admin"},{"arc":[{"x":156983,"y":166539},{"x":49,"y":84},{"x":170,"y":40},{"x":72,"y":96},{"x":242,"y":142},{"x":290,"y":255},{"x":47,"y":144},{"x":68,"y":37},{"x":105,"y":177},{"x":255,"y":169},{"x":12,"y":109},{"x":80,"y":72}],"type":"area"},{"arc":[{"x":158373,"y":167864},{"x":-2,"y":92},{"x":-42,"y":97},{"x":15,"y":60}],"type":"area"},{"arc":[{"x":154851,"y":167454},{"x":-180,"y":-118},{"x":-99,"y":-109}],"type":"admin"},{"arc":[{"x":154572,"y":167227},{"x":11,"y":-77},{"x":43,"y":-10},{"x":57,"y":66},{"x":89,"y":-94},{"x":62,"y":146}],"type":"area"},{"arc":[{"x":154834,"y":167258},{"x":35,"y":5},{"x":-18,"y":191}],"type":"admin"},{"arc":[{"x":157377,"y":164846},{"x":-40,"y":57},{"x":25,"y":144},{"x":-17,"y":25},{"x":-75,"y":9},{"x":8,"y":62},{"x":-44,"y":33}],"type":"area"},{"arc":[{"x":157234,"y":165176},{"x":-92,"y":-48},{"x":-9,"y":-49},{"x":-75,"y":20},{"x":-6,"y":56},{"x":-110,"y":126},{"x":-8,"y":55},{"x":-158,"y":130},{"x":-74,"y":128},{"x":-37,"y":8},{"x":-22,"y":39},{"x":24,"y":41},{"x":-37,"y":19},{"x":-66,"y":-32},{"x":-84,"y":60},{"x":46,"y":39},{"x":38,"y":-4},{"x":-78,"y":93},{"x":44,"y":35},{"x":-34,"y":31},{"x":59,"y":4},{"x":-18,"y":41},{"x":50,"y":24},{"x":48,"y":-3},{"x":26,"y":-50},{"x":-90,"y":199}],"type":"admin"},{"arc":[{"x":155369,"y":167074},{"x":-48,"y":-40},{"x":-103,"y":-15},{"x":-55,"y":37},{"x":3,"y":29},{"x":-49,"y":4},{"x":-66,"y":65},{"x":-49,"y":-14},{"x":2,"y":-26},{"x":-89,"y":-2}],"type":"admin"},{"arc":[{"x":154915,"y":167112},{"x":34,"y":-208},{"x":-38,"y":-37},{"x":-37,"y":-164},{"x":-163,"y":-10},{"x":-40,"y":-71},{"x":15,"y":-88},{"x":-126,"y":-84},{"x":-7,"y":-98},{"x":-32,"y":-31},{"x":-45,"y":0},{"x":18,"y":43},{"x":-108,"y":30},{"x":-63,"y":-53},{"x":-75,"y":-9},{"x":-45,"y":-46},{"x":-123,"y":19},{"x":15,"y":-39},{"x":-30,"y":-84},{"x":33,"y":-96},{"x":-89,"y":-57},{"x":-20,"y":-89},{"x":-112,"y":-18},{"x":-61,"y":-59},{"x":25,"y":-95},{"x":-63,"y":-145},{"x":8,"y":-100}],"type":"area"},{"arc":[{"x":153786,"y":165523},{"x":136,"y":40},{"x":105,"y":64},{"x":35,"y":102},{"x":28,"y":6},{"x":71,"y":-53},{"x":66,"y":24},{"x":54,"y":-47},{"x":112,"y":-28},{"x":52,"y":2},{"x":18,"y":39},{"x":52,"y":7},{"x":38,"y":-33},{"x":-41,"y":-37},{"x":81,"y":13},{"x":9,"y":-47},{"x":53,"y":-15},{"x":1,"y":-25}],"type":"admin"},{"arc":[{"x":154656,"y":165535},{"x":9,"y":-53},{"x":73,"y":10},{"x":-3,"y":-29},{"x":126,"y":118},{"x":113,"y":14},{"x":49,"y":-23},{"x":57,"y":20}],"type":"area"},{"arc":[{"x":155080,"y":165592},{"x":53,"y":43},{"x":19,"y":-27},{"x":238,"y":-68},{"x":41,"y":-63},{"x":55,"y":-20},{"x":-10,"y":142},{"x":26,"y":8},{"x":58,"y":-142},{"x":27,"y":19},{"x":59,"y":-48},{"x":38,"y":1},{"x":-2,"y":-39},{"x":51,"y":-52},{"x":11,"y":-34},{"x":-47,"y":-75},{"x":195,"y":-298},{"x":109,"y":-253},{"x":-43,"y":-195},{"x":52,"y":-148},{"x":-18,"y":-53},{"x":50,"y":-42},{"x":169,"y":-424},{"x":200,"y":-276},{"x":7,"y":-93},{"x":104,"y":-264},{"x":-86,"y":-80},{"x":1,"y":-85},{"x":92,"y":-193},{"x":-64,"y":-137},{"x":12,"y":-46},{"x":-56,"y":-173}],"type":"area"},{"arc":[{"x":156421,"y":162477},{"x":50,"y":-41}],"type":"admin"},{"arc":[{"x":156471,"y":162436},{"x":152,"y":10},{"x":17,"y":19},{"x":165,"y":-48},{"x":176,"y":131}],"type":"admin"},{"arc":[{"x":156981,"y":162548},{"x":33,"y":35},{"x":-9,"y":36},{"x":113,"y":85},{"x":36,"y":119},{"x":104,"y":58},{"x":-7,"y":106},{"x":67,"y":88},{"x":49,"y":171},{"x":-68,"y":124},{"x":14,"y":424},{"x":-165,"y":-20},{"x":47,"y":73},{"x":61,"y":-9},{"x":42,"y":120},{"x":2,"y":112},{"x":-33,"y":59},{"x":13,"y":114},{"x":-30,"y":79},{"x":27,"y":219},{"x":26,"y":29},{"x":-47,"y":101},{"x":98,"y":51},{"x":23,"y":124}],"type":"admin"},{"arc":[{"x":155897,"y":169942},{"x":-56,"y":-62},{"x":34,"y":-57},{"x":-66,"y":-41},{"x":-7,"y":-43},{"x":26,"y":-97},{"x":101,"y":-53},{"x":3,"y":-57},{"x":73,"y":-32},{"x":38,"y":-144}],"type":"area"},{"arc":[{"x":156043,"y":169356},{"x":61,"y":25},{"x":182,"y":-6},{"x":157,"y":-238},{"x":5,"y":-67},{"x":55,"y":-26},{"x":13,"y":26},{"x":-29,"y":22},{"x":46,"y":-12},{"x":-36,"y":34},{"x":54,"y":-14},{"x":-39,"y":19},{"x":44,"y":-2},{"x":-10,"y":47},{"x":139,"y":-117},{"x":38,"y":85},{"x":54,"y":-18},{"x":120,"y":38},{"x":30,"y":70},{"x":88,"y":4},{"x":68,"y":38},{"x":39,"y":136},{"x":54,"y":44},{"x":53,"y":-20},{"x":97,"y":117},{"x":161,"y":33},{"x":108,"y":251},{"x":86,"y":-16},{"x":90,"y":51},{"x":9,"y":135},{"x":79,"y":27},{"x":-17,"y":69},{"x":66,"y":18},{"x":11,"y":100},{"x":-26,"y":58},{"x":34,"y":63},{"x":92,"y":69},{"x":69,"y":10},{"x":210,"y":201},{"x":4,"y":81},{"x":-81,"y":86}],"type":"area"},{"arc":[{"x":158796,"y":169192},{"x":-26,"y":30},{"x":-31,"y":-21},{"x":-82,"y":10},{"x":-62,"y":71},{"x":-116,"y":25},{"x":-103,"y":106},{"x":-80,"y":-37},{"x":-146,"y":-7},{"x":-25,"y":-71},{"x":-47,"y":-25},{"x":-54,"y":-90},{"x":-93,"y":-59},{"x":-100,"y":-11},{"x":-4,"y":-73},{"x":-53,"y":-32},{"x":-44,"y":26},{"x":-3,"y":73},{"x":-46,"y":75},{"x":-30,"y":-12},{"x":-30,"y":91},{"x":-140,"y":-67},{"x":-23,"y":-46},{"x":29,"y":-13},{"x":16,"y":-96},{"x":-58,"y":-37},{"x":-33,"y":-79},{"x":-71,"y":-36},{"x":-16,"y":-62},{"x":20,"y":-114},{"x":46,"y":-22},{"x":-20,"y":-120},{"x":51,"y":-59},{"x":-142,"y":46},{"x":-10,"y":34},{"x":-43,"y":-37},{"x":-29,"y":4},{"x":-89,"y":110},{"x":-11,"y":70},{"x":-87,"y":47},{"x":-29,"y":63},{"x":-148,"y":2},{"x":-29,"y":-46},{"x":-91,"y":79},{"x":-53,"y":-10},{"x":-18,"y":40},{"x":-105,"y":2},{"x":-48,"y":31},{"x":11,"y":-76},{"x":-76,"y":-112}],"type":"area"},{"arc":[{"x":156425,"y":168757},{"x":-28,"y":-105},{"x":-162,"y":-98},{"x":52,"y":-5},{"x":9,"y":-37},{"x":90,"y":22},{"x":-11,"y":-79}],"type":"area"},{"arc":[{"x":158344,"y":168113},{"x":81,"y":-42},{"x":36,"y":15},{"x":87,"y":271},{"x":-8,"y":72},{"x":70,"y":125},{"x":99,"y":64},{"x":3,"y":134},{"x":45,"y":52},{"x":-31,"y":83},{"x":25,"y":64},{"x":-54,"y":62},{"x":99,"y":179}],"type":"area"},{"arc":[{"x":156425,"y":168757},{"x":-159,"y":-58},{"x":-35,"y":181},{"x":-198,"y":-10},{"x":-38,"y":15},{"x":-1,"y":32},{"x":-64,"y":19}],"type":"area"},{"arc":[{"x":155930,"y":168936},{"x":-106,"y":-14},{"x":8,"y":-47},{"x":-105,"y":19},{"x":-64,"y":-17},{"x":0,"y":-28},{"x":-127,"y":10},{"x":-91,"y":-40},{"x":-63,"y":25},{"x":-15,"y":51},{"x":-67,"y":-18},{"x":-38,"y":14},{"x":-11,"y":-20},{"x":-156,"y":7},{"x":5,"y":-100},{"x":-102,"y":-21},{"x":-189,"y":208},{"x":-58,"y":-5},{"x":6,"y":-36},{"x":-105,"y":0},{"x":-38,"y":-32},{"x":-104,"y":30},{"x":2,"y":88},{"x":-42,"y":27},{"x":-51,"y":-105}],"type":"area"},{"arc":[{"x":154419,"y":168932},{"x":16,"y":-60},{"x":-101,"y":-1},{"x":42,"y":-130},{"x":-17,"y":-108}],"type":"admin"},{"arc":[{"x":154359,"y":168633},{"x":39,"y":-87},{"x":136,"y":-117},{"x":-26,"y":-128},{"x":66,"y":-9},{"x":10,"y":-132},{"x":145,"y":-275}],"type":"admin"},{"arc":[{"x":154729,"y":167885},{"x":47,"y":4},{"x":133,"y":-107},{"x":188,"y":-74},{"x":62,"y":-140},{"x":23,"y":7},{"x":-12,"y":27},{"x":119,"y":-65},{"x":107,"y":10},{"x":100,"y":-26}],"type":"admin"},{"arc":[{"x":154914,"y":170700},{"x":-9,"y":-92},{"x":-64,"y":-47},{"x":-42,"y":-5},{"x":-77,"y":47},{"x":-70,"y":6}],"type":"admin"},{"arc":[{"x":154652,"y":170609},{"x":41,"y":-217},{"x":70,"y":-82},{"x":-87,"y":-75},{"x":-47,"y":54},{"x":-17,"y":-14},{"x":36,"y":-146},{"x":-77,"y":0},{"x":-1,"y":-26},{"x":-109,"y":-36},{"x":-101,"y":29},{"x":-85,"y":-24}],"type":"admin"},{"arc":[{"x":154275,"y":170072},{"x":86,"y":-67},{"x":27,"y":-89},{"x":81,"y":-88},{"x":-22,"y":-57},{"x":37,"y":-29},{"x":-9,"y":-38},{"x":-69,"y":-22},{"x":-28,"y":-59},{"x":-27,"y":8},{"x":-51,"y":-128}],"type":"admin"},{"arc":[{"x":154300,"y":169503},{"x":-32,"y":1},{"x":-6,"y":-31},{"x":4,"y":-145},{"x":60,"y":-144},{"x":17,"y":15},{"x":76,"y":-267}],"type":"admin"},{"arc":[{"x":155930,"y":168936},{"x":4,"y":64},{"x":54,"y":4},{"x":-19,"y":177},{"x":88,"y":154},{"x":-14,"y":21}],"type":"area"},{"arc":[{"x":161316,"y":167365},{"x":-85,"y":-39},{"x":-109,"y":-9},{"x":-80,"y":-102},{"x":-176,"y":-143},{"x":-185,"y":-71},{"x":-204,"y":-31},{"x":-71,"y":26},{"x":-227,"y":-14},{"x":-1,"y":-34},{"x":-39,"y":-9},{"x":-141,"y":24},{"x":-5,"y":58},{"x":-50,"y":-39},{"x":-51,"y":13},{"x":-143,"y":-60},{"x":7,"y":-15},{"x":-86,"y":-9},{"x":-19,"y":-38},{"x":10,"y":55},{"x":134,"y":147},{"x":-12,"y":28},{"x":-50,"y":0},{"x":43,"y":111},{"x":191,"y":38},{"x":-16,"y":91},{"x":41,"y":102},{"x":-4,"y":97},{"x":-57,"y":77},{"x":155,"y":155},{"x":10,"y":133},{"x":118,"y":33},{"x":133,"y":209}],"type":"admin"},{"arc":[{"x":160347,"y":168149},{"x":-2,"y":53},{"x":-58,"y":18},{"x":-43,"y":50},{"x":113,"y":0},{"x":77,"y":52},{"x":35,"y":68},{"x":196,"y":124},{"x":-12,"y":120},{"x":52,"y":94},{"x":-34,"y":43},{"x":18,"y":80},{"x":-43,"y":84},{"x":26,"y":2},{"x":2,"y":40},{"x":245,"y":262},{"x":-15,"y":33},{"x":92,"y":268},{"x":64,"y":15},{"x":33,"y":143},{"x":-39,"y":65}],"type":"admin"},{"arc":[{"x":159280,"y":169506},{"x":-127,"y":-166},{"x":-92,"y":-67},{"x":-265,"y":-81}],"type":"area"},{"arc":[{"x":158373,"y":167864},{"x":99,"y":-79}],"type":"area"},{"arc":[{"x":158472,"y":167785},{"x":120,"y":12},{"x":131,"y":-43},{"x":159,"y":-128},{"x":91,"y":-16},{"x":25,"y":20},{"x":36,"y":-39},{"x":101,"y":0},{"x":106,"y":-116},{"x":168,"y":-66},{"x":26,"y":-8},{"x":18,"y":40},{"x":69,"y":-7},{"x":81,"y":-112},{"x":-27,"y":-86},{"x":9,"y":-149},{"x":-119,"y":-219},{"x":-83,"y":-75},{"x":-159,"y":-51},{"x":-91,"y":-147},{"x":-86,"y":-42},{"x":-64,"y":4},{"x":-117,"y":72},{"x":-107,"y":4},{"x":-73,"y":80}],"type":"admin"},{"arc":[{"x":158686,"y":166713},{"x":-31,"y":-31},{"x":73,"y":-188},{"x":-104,"y":-286},{"x":38,"y":-73},{"x":94,"y":-45},{"x":-6,"y":-26}],"type":"area"},{"arc":[{"x":158750,"y":166064},{"x":77,"y":-66},{"x":123,"y":19},{"x":228,"y":-44},{"x":102,"y":56},{"x":43,"y":-8},{"x":13,"y":-42},{"x":54,"y":6},{"x":33,"y":-24}],"type":"admin"},{"arc":[{"x":159423,"y":165961},{"x":98,"y":60},{"x":-22,"y":69},{"x":52,"y":37},{"x":32,"y":85},{"x":39,"y":5},{"x":-15,"y":47},{"x":26,"y":-15},{"x":38,"y":37},{"x":46,"y":3},{"x":34,"y":67},{"x":15,"y":-23},{"x":16,"y":27},{"x":18,"y":-23},{"x":62,"y":19},{"x":54,"y":71},{"x":49,"y":-42},{"x":64,"y":25},{"x":157,"y":-54},{"x":86,"y":31},{"x":12,"y":-38},{"x":70,"y":-15},{"x":18,"y":-35},{"x":71,"y":49},{"x":40,"y":-4},{"x":24,"y":32},{"x":-21,"y":37},{"x":42,"y":-56},{"x":31,"y":3},{"x":92,"y":96},{"x":61,"y":-82},{"x":126,"y":45},{"x":109,"y":-55},{"x":74,"y":8},{"x":-14,"y":27},{"x":43,"y":101},{"x":64,"y":-17},{"x":43,"y":22},{"x":13,"y":75},{"x":69,"y":21},{"x":43,"y":57},{"x":-24,"y":48},{"x":46,"y":20},{"x":-5,"y":59},{"x":-50,"y":49},{"x":51,"y":44},{"x":-36,"y":66},{"x":43,"y":73},{"x":-7,"y":76},{"x":49,"y":144},{"x":-33,"y":128}],"type":"admin"},{"arc":[{"x":154664,"y":172211},{"x":-201,"y":370},{"x":-43,"y":-40},{"x":33,"y":-57},{"x":-36,"y":-128},{"x":9,"y":-22},{"x":76,"y":-15},{"x":-57,"y":-33},{"x":42,"y":-37},{"x":-65,"y":-2},{"x":-2,"y":-60},{"x":-84,"y":-63},{"x":-3,"y":-56},{"x":-47,"y":-18},{"x":-78,"y":59},{"x":-178,"y":11}],"type":"admin"},{"arc":[{"x":154030,"y":172120},{"x":43,"y":-70},{"x":-68,"y":-134},{"x":16,"y":-160},{"x":47,"y":-81},{"x":-57,"y":-57},{"x":-8,"y":-261},{"x":-75,"y":-63},{"x":17,"y":-228}],"type":"admin"},{"arc":[{"x":153945,"y":171066},{"x":46,"y":-202},{"x":116,"y":37}],"type":"admin"},{"arc":[{"x":154107,"y":170901},{"x":0,"y":104},{"x":-36,"y":-2},{"x":-32,"y":36},{"x":86,"y":41},{"x":-8,"y":74},{"x":45,"y":88},{"x":128,"y":-46},{"x":28,"y":80},{"x":-59,"y":46},{"x":77,"y":-44},{"x":6,"y":-21},{"x":-36,"y":-144},{"x":17,"y":-47},{"x":96,"y":42},{"x":45,"y":64},{"x":34,"y":-2},{"x":19,"y":65},{"x":8,"y":-45},{"x":40,"y":-30},{"x":28,"y":19},{"x":-19,"y":55},{"x":184,"y":50}],"type":"admin"},{"arc":[{"x":158686,"y":166713},{"x":7,"y":60},{"x":-91,"y":65},{"x":-4,"y":50},{"x":55,"y":20},{"x":32,"y":-41},{"x":-3,"y":44},{"x":-37,"y":30},{"x":-54,"y":159},{"x":16,"y":145},{"x":-81,"y":118},{"x":58,"y":119},{"x":-30,"y":121},{"x":13,"y":123},{"x":-95,"y":59}],"type":"admin"},{"arc":[{"x":156983,"y":166539},{"x":46,"y":-8},{"x":63,"y":-138},{"x":-119,"y":20},{"x":-34,"y":-48},{"x":30,"y":-59},{"x":127,"y":-41},{"x":-9,"y":-66},{"x":41,"y":-4},{"x":3,"y":-20},{"x":-35,"y":-127},{"x":93,"y":-240},{"x":76,"y":-101},{"x":-9,"y":-87},{"x":-31,"y":-25},{"x":26,"y":-102},{"x":-37,"y":-113}],"type":"admin"},{"arc":[{"x":157214,"y":165380},{"x":-54,"y":-84},{"x":15,"y":-68},{"x":59,"y":-52}],"type":"admin"},{"arc":[{"x":157377,"y":164846},{"x":1,"y":36},{"x":130,"y":45},{"x":120,"y":81},{"x":74,"y":114},{"x":5,"y":63},{"x":69,"y":80},{"x":-14,"y":47},{"x":122,"y":76},{"x":93,"y":116},{"x":181,"y":43},{"x":20,"y":76},{"x":51,"y":-88},{"x":-49,"y":-75},{"x":64,"y":-108},{"x":-25,"y":-133},{"x":78,"y":-40},{"x":-2,"y":-95},{"x":81,"y":-42}],"type":"admin"},{"arc":[{"x":158376,"y":165042},{"x":18,"y":64},{"x":47,"y":23},{"x":33,"y":-35},{"x":43,"y":29},{"x":35,"y":-66},{"x":90,"y":-17},{"x":46,"y":65},{"x":-36,"y":144},{"x":31,"y":44}],"type":"admin"},{"arc":[{"x":158683,"y":165293},{"x":11,"y":105},{"x":-22,"y":42},{"x":-56,"y":22},{"x":48,"y":33},{"x":15,"y":55},{"x":-71,"y":219},{"x":142,"y":295}],"type":"admin"},{"arc":[{"x":154915,"y":167112},{"x":-81,"y":146}],"type":"admin"},{"arc":[{"x":154572,"y":167227},{"x":-36,"y":36},{"x":-256,"y":-152}],"type":"admin"},{"arc":[{"x":154280,"y":167111},{"x":-312,"y":-163},{"x":-219,"y":-179},{"x":-115,"y":11},{"x":-44,"y":-71},{"x":-41,"y":-13},{"x":-200,"y":20},{"x":-71,"y":56},{"x":-78,"y":-16},{"x":-8,"y":-145},{"x":-42,"y":-15},{"x":-12,"y":-41},{"x":-251,"y":-6},{"x":-17,"y":-92},{"x":42,"y":-75},{"x":50,"y":-13},{"x":-39,"y":-51},{"x":39,"y":-46},{"x":-27,"y":-54},{"x":18,"y":-55},{"x":-16,"y":-11},{"x":-36,"y":28},{"x":-54,"y":-53},{"x":-2,"y":-81},{"x":-117,"y":-81},{"x":20,"y":-95}],"type":"admin"},{"arc":[{"x":152748,"y":165870},{"x":92,"y":-70},{"x":18,"y":-57},{"x":-24,"y":-48}],"type":"admin"},{"arc":[{"x":152834,"y":165695},{"x":65,"y":-9},{"x":41,"y":48},{"x":43,"y":-30},{"x":36,"y":18},{"x":81,"y":-31},{"x":-1,"y":-74},{"x":92,"y":-302},{"x":-4,"y":-75},{"x":-75,"y":-112},{"x":12,"y":-67},{"x":-60,"y":-101},{"x":10,"y":-92},{"x":-32,"y":-41},{"x":98,"y":-56},{"x":45,"y":-58},{"x":-58,"y":-60},{"x":-4,"y":-89},{"x":-52,"y":-122},{"x":24,"y":-178},{"x":-40,"y":-115}],"type":"admin"},{"arc":[{"x":153055,"y":164149},{"x":104,"y":67},{"x":36,"y":75},{"x":69,"y":30}],"type":"admin"},{"arc":[{"x":153264,"y":164321},{"x":27,"y":182},{"x":109,"y":179},{"x":18,"y":90},{"x":-22,"y":146},{"x":157,"y":183},{"x":82,"y":27},{"x":69,"y":70},{"x":82,"y":325}],"type":"admin"},{"arc":[{"x":154656,"y":165535},{"x":-30,"y":-105},{"x":-60,"y":-30},{"x":-10,"y":-94},{"x":-168,"y":-28},{"x":-40,"y":-30},{"x":-27,"y":-71},{"x":76,"y":-12},{"x":-10,"y":-20},{"x":-14,"y":14},{"x":-59,"y":-41},{"x":-37,"y":14},{"x":-150,"y":-48},{"x":-16,"y":-201},{"x":-94,"y":-42},{"x":-46,"y":35},{"x":-130,"y":-33},{"x":-5,"y":-193},{"x":-63,"y":-6},{"x":-36,"y":-75},{"x":-87,"y":-15},{"x":-51,"y":-41},{"x":-60,"y":-70},{"x":-16,"y":-76}],"type":"admin"},{"arc":[{"x":153523,"y":164367},{"x":54,"y":-25},{"x":175,"y":48},{"x":199,"y":-38},{"x":78,"y":27},{"x":33,"y":-13},{"x":43,"y":55},{"x":101,"y":29},{"x":3,"y":27},{"x":76,"y":-13},{"x":-19,"y":-226},{"x":-59,"y":-28},{"x":-78,"y":-187},{"x":-2,"y":-57},{"x":32,"y":-29},{"x":-21,"y":-65},{"x":96,"y":-57},{"x":105,"y":-19},{"x":41,"y":-60},{"x":66,"y":4},{"x":49,"y":-71},{"x":154,"y":-113},{"x":206,"y":12},{"x":79,"y":-143}],"type":"admin"},{"arc":[{"x":154934,"y":163425},{"x":48,"y":3},{"x":117,"y":163},{"x":8,"y":222},{"x":-131,"y":329},{"x":9,"y":38},{"x":-117,"y":185},{"x":-66,"y":44},{"x":-40,"y":232},{"x":145,"y":212},{"x":18,"y":249},{"x":45,"y":16},{"x":42,"y":-26},{"x":39,"y":76},{"x":39,"y":5},{"x":37,"y":41},{"x":34,"y":84},{"x":-57,"y":76},{"x":-8,"y":75},{"x":32,"y":49},{"x":-48,"y":94}],"type":"area"},{"arc":[{"x":154934,"y":163425},{"x":-31,"y":-28},{"x":11,"y":-62},{"x":-48,"y":-125},{"x":20,"y":-63},{"x":-80,"y":-83},{"x":46,"y":-100},{"x":50,"y":-12},{"x":-95,"y":-135},{"x":106,"y":-71},{"x":-69,"y":-87},{"x":51,"y":-89},{"x":111,"y":-31},{"x":60,"y":42},{"x":34,"y":-51}],"type":"admin"},{"arc":[{"x":155100,"y":162530},{"x":52,"y":3},{"x":11,"y":-26},{"x":95,"y":-35},{"x":110,"y":56},{"x":180,"y":-37},{"x":177,"y":4},{"x":58,"y":41},{"x":68,"y":-19},{"x":82,"y":51},{"x":52,"y":-58},{"x":79,"y":-20},{"x":78,"y":27},{"x":126,"y":0},{"x":56,"y":-39},{"x":97,"y":-1}],"type":"admin"},{"arc":[{"x":157214,"y":165380},{"x":-81,"y":80},{"x":-23,"y":122},{"x":-38,"y":40},{"x":-21,"y":105},{"x":-29,"y":13},{"x":20,"y":11},{"x":-24,"y":34},{"x":48,"y":-16},{"x":7,"y":98},{"x":-46,"y":96},{"x":-47,"y":23},{"x":-4,"y":52},{"x":-137,"y":10},{"x":-85,"y":-37},{"x":-27,"y":95},{"x":-59,"y":32}],"type":"area"},{"arc":[{"x":151788,"y":164346},{"x":-51,"y":-7}],"type":"admin"},{"arc":[{"x":151737,"y":164339},{"x":-48,"y":-153},{"x":0,"y":-114},{"x":-52,"y":-120},{"x":95,"y":-108},{"x":24,"y":-72},{"x":-54,"y":-198},{"x":-225,"y":-54},{"x":-39,"y":-46},{"x":-45,"y":-10},{"x":-46,"y":-74},{"x":-27,"y":8},{"x":-76,"y":-54},{"x":-45,"y":-58},{"x":-24,"y":-101},{"x":-96,"y":-44}],"type":"admin"},{"arc":[{"x":151079,"y":163141},{"x":34,"y":-118},{"x":40,"y":-43},{"x":8,"y":-86}],"type":"admin"},{"arc":[{"x":151161,"y":162894},{"x":39,"y":-23},{"x":63,"y":7},{"x":57,"y":-63},{"x":92,"y":-13},{"x":-1,"y":-184},{"x":62,"y":-7},{"x":44,"y":-157},{"x":51,"y":-10},{"x":24,"y":-34},{"x":31,"y":-107}],"type":"admin"},{"arc":[{"x":151623,"y":162303},{"x":271,"y":131},{"x":124,"y":-25},{"x":117,"y":11},{"x":78,"y":-26},{"x":65,"y":-76},{"x":143,"y":-23}],"type":"admin"},{"arc":[{"x":152421,"y":162295},{"x":16,"y":45},{"x":57,"y":23},{"x":21,"y":81},{"x":59,"y":-2},{"x":40,"y":27},{"x":134,"y":-76},{"x":31,"y":50}],"type":"admin"},{"arc":[{"x":152779,"y":162443},{"x":-40,"y":133},{"x":9,"y":86},{"x":136,"y":221},{"x":-39,"y":64},{"x":4,"y":87},{"x":-38,"y":43},{"x":58,"y":134},{"x":-26,"y":38},{"x":15,"y":65},{"x":-27,"y":89},{"x":-62,"y":46},{"x":43,"y":42},{"x":2,"y":47},{"x":85,"y":63},{"x":-3,"y":81},{"x":48,"y":68}],"type":"area"},{"arc":[{"x":152944,"y":163750},{"x":-98,"y":3},{"x":-21,"y":84},{"x":-255,"y":14},{"x":-34,"y":24},{"x":18,"y":73},{"x":-51,"y":92},{"x":-91,"y":8},{"x":-93,"y":53},{"x":-51,"y":68},{"x":-8,"y":64},{"x":-42,"y":5},{"x":-29,"y":-39},{"x":-28,"y":18},{"x":-86,"y":-45},{"x":-67,"y":18},{"x":-52,"y":65},{"x":-99,"y":28},{"x":-69,"y":63}],"type":"area"},{"arc":[{"x":152834,"y":165695},{"x":-231,"y":-31},{"x":-37,"y":-55},{"x":-104,"y":-64},{"x":-82,"y":-145}],"type":"admin"},{"arc":[{"x":152380,"y":165400},{"x":71,"y":-152},{"x":-37,"y":-58},{"x":10,"y":-85},{"x":-180,"y":-390},{"x":-94,"y":-58},{"x":-42,"y":-136},{"x":-135,"y":-32},{"x":-76,"y":-55},{"x":-29,"y":-57},{"x":-80,"y":-31}],"type":"admin"},{"arc":[{"x":152944,"y":163750},{"x":54,"y":15},{"x":79,"y":-91},{"x":218,"y":7}],"type":"area"},{"arc":[{"x":153295,"y":163681},{"x":-151,"y":16},{"x":-124,"y":89},{"x":10,"y":78},{"x":-39,"y":108},{"x":17,"y":108},{"x":38,"y":44},{"x":33,"y":-18},{"x":-24,"y":43}],"type":"area"},{"arc":[{"x":153523,"y":164367},{"x":-71,"y":-5},{"x":-36,"y":-41},{"x":-152,"y":0}],"type":"area"},{"arc":[{"x":153295,"y":163681},{"x":36,"y":-27},{"x":18,"y":28},{"x":59,"y":7},{"x":131,"y":-71},{"x":134,"y":38},{"x":-16,"y":-89},{"x":74,"y":-48},{"x":-40,"y":-120},{"x":40,"y":-20},{"x":76,"y":13},{"x":50,"y":-113},{"x":82,"y":-81},{"x":8,"y":-75},{"x":34,"y":-30},{"x":-52,"y":-177},{"x":-19,"y":-20},{"x":-75,"y":15},{"x":-84,"y":-90},{"x":41,"y":-69},{"x":-31,"y":-38},{"x":18,"y":-69},{"x":48,"y":-38},{"x":-47,"y":-195},{"x":70,"y":-55}],"type":"area"},{"arc":[{"x":153850,"y":162357},{"x":152,"y":-38},{"x":-23,"y":-106},{"x":62,"y":-51},{"x":109,"y":-34},{"x":20,"y":-30},{"x":144,"y":8},{"x":95,"y":-104},{"x":232,"y":37},{"x":147,"y":-58}],"type":"admin"},{"arc":[{"x":154788,"y":161981},{"x":15,"y":70},{"x":76,"y":55},{"x":37,"y":190},{"x":62,"y":69},{"x":-2,"y":72},{"x":53,"y":19},{"x":20,"y":50},{"x":31,"y":-10},{"x":20,"y":34}],"type":"admin"},{"arc":[{"x":152779,"y":162443},{"x":53,"y":-77},{"x":128,"y":-34},{"x":-26,"y":-122},{"x":27,"y":-20},{"x":19,"y":-205},{"x":110,"y":-67},{"x":114,"y":-11},{"x":95,"y":-58},{"x":15,"y":-72},{"x":59,"y":-5},{"x":19,"y":-30}],"type":"admin"},{"arc":[{"x":153392,"y":161742},{"x":136,"y":63},{"x":-21,"y":9},{"x":9,"y":66},{"x":-66,"y":-24},{"x":-89,"y":64},{"x":-10,"y":86},{"x":-40,"y":52},{"x":-2,"y":21},{"x":49,"y":-15},{"x":42,"y":49},{"x":51,"y":184},{"x":-23,"y":52},{"x":51,"y":11},{"x":106,"y":-78},{"x":104,"y":-23},{"x":68,"y":-46},{"x":83,"y":79},{"x":27,"y":45},{"x":-17,"y":20}],"type":"admin"},{"arc":[{"x":160690,"y":163936},{"x":-55,"y":14},{"x":-72,"y":69},{"x":-203,"y":57},{"x":-55,"y":105},{"x":-70,"y":34},{"x":-16,"y":47},{"x":-65,"y":39},{"x":-72,"y":13},{"x":-11,"y":-21},{"x":-185,"y":-35},{"x":-102,"y":27},{"x":-108,"y":-25},{"x":-22,"y":180},{"x":36,"y":123},{"x":-14,"y":103},{"x":42,"y":117},{"x":-11,"y":26},{"x":-54,"y":3},{"x":-73,"y":197}],"type":"area"},{"arc":[{"x":159580,"y":165009},{"x":-86,"y":-50},{"x":-71,"y":14},{"x":-58,"y":-18},{"x":-250,"y":59},{"x":-31,"y":-22},{"x":-35,"y":22},{"x":-35,"y":-10},{"x":-54,"y":45},{"x":6,"y":41},{"x":-39,"y":46},{"x":-244,"y":157}],"type":"area"},{"arc":[{"x":158376,"y":165042},{"x":52,"y":-76},{"x":11,"y":-83},{"x":64,"y":-30},{"x":23,"y":-65},{"x":65,"y":-38},{"x":27,"y":-49},{"x":-26,"y":-99},{"x":48,"y":-145},{"x":-29,"y":-40},{"x":27,"y":-98},{"x":58,"y":-59},{"x":-42,"y":-68},{"x":25,"y":-83},{"x":-40,"y":6},{"x":-54,"y":-36},{"x":47,"y":-80},{"x":-84,"y":-147},{"x":10,"y":-47},{"x":63,"y":-62},{"x":41,"y":-98},{"x":64,"y":-46},{"x":8,"y":-66},{"x":62,"y":-50},{"x":1,"y":-67},{"x":42,"y":-14},{"x":-8,"y":-72},{"x":-69,"y":-57},{"x":-30,"y":-86},{"x":64,"y":-192},{"x":-47,"y":-89},{"x":11,"y":-85},{"x":33,"y":8},{"x":37,"y":-43},{"x":-53,"y":-43},{"x":-31,"y":40},{"x":-135,"y":64},{"x":-70,"y":-26}],"type":"area"},{"arc":[{"x":158541,"y":162821},{"x":-82,"y":-76},{"x":22,"y":-255},{"x":-80,"y":-34},{"x":-65,"y":-157},{"x":71,"y":-130},{"x":99,"y":-19},{"x":59,"y":-133},{"x":71,"y":-73}],"type":"area"},{"arc":[{"x":158636,"y":161944},{"x":64,"y":-28},{"x":139,"y":-8},{"x":6,"y":152},{"x":94,"y":85},{"x":-42,"y":23},{"x":137,"y":123},{"x":196,"y":-64},{"x":122,"y":-114},{"x":58,"y":-125},{"x":-48,"y":-137},{"x":30,"y":-44},{"x":-26,"y":-80},{"x":25,"y":-74},{"x":71,"y":-30},{"x":82,"y":-102},{"x":26,"y":-198},{"x":-64,"y":-120}],"type":"area"},{"arc":[{"x":159506,"y":161203},{"x":51,"y":45},{"x":139,"y":50}],"type":"admin"},{"arc":[{"x":159696,"y":161298},{"x":30,"y":-84},{"x":95,"y":-82},{"x":165,"y":17},{"x":20,"y":-57},{"x":87,"y":170},{"x":-7,"y":65},{"x":85,"y":68},{"x":40,"y":166},{"x":-18,"y":120},{"x":21,"y":35},{"x":-76,"y":96},{"x":169,"y":121},{"x":-6,"y":43},{"x":-82,"y":63},{"x":-16,"y":50},{"x":63,"y":65},{"x":112,"y":48},{"x":-9,"y":89},{"x":55,"y":121}],"type":"admin"},{"arc":[{"x":160424,"y":162412},{"x":42,"y":71},{"x":44,"y":282},{"x":73,"y":88},{"x":27,"y":116}],"type":"admin"},{"arc":[{"x":160610,"y":162969},{"x":-25,"y":94},{"x":34,"y":83},{"x":82,"y":28},{"x":50,"y":63},{"x":121,"y":-5},{"x":63,"y":59},{"x":-81,"y":218},{"x":-143,"y":199},{"x":15,"y":109},{"x":-36,"y":119}],"type":"admin"},{"arc":[{"x":158541,"y":162821},{"x":-23,"y":56},{"x":-63,"y":50},{"x":17,"y":79},{"x":-31,"y":149},{"x":-168,"y":68},{"x":-129,"y":18},{"x":-68,"y":-77},{"x":-49,"y":-13},{"x":-18,"y":-81},{"x":24,"y":-56},{"x":-141,"y":-135},{"x":-6,"y":-50},{"x":-42,"y":-10},{"x":47,"y":-178},{"x":-69,"y":-52},{"x":37,"y":-91},{"x":-65,"y":-57},{"x":-37,"y":9},{"x":-107,"y":-61},{"x":-192,"y":2},{"x":-70,"y":48},{"x":-163,"y":-51},{"x":-60,"y":79},{"x":-87,"y":8},{"x":-97,"y":73}],"type":"area"},{"arc":[{"x":156471,"y":162436},{"x":73,"y":-75},{"x":-10,"y":-162},{"x":52,"y":-29},{"x":28,"y":-62},{"x":21,"y":-209},{"x":-51,"y":-58},{"x":28,"y":-31},{"x":-38,"y":-133}],"type":"admin"},{"arc":[{"x":156574,"y":161677},{"x":144,"y":10},{"x":249,"y":90},{"x":69,"y":1},{"x":-9,"y":-121},{"x":100,"y":20},{"x":183,"y":-17},{"x":143,"y":57},{"x":95,"y":-12},{"x":160,"y":-89},{"x":174,"y":0},{"x":89,"y":-25},{"x":100,"y":97},{"x":-207,"y":135},{"x":83,"y":113},{"x":204,"y":-43},{"x":71,"y":49},{"x":62,"y":-49},{"x":87,"y":-9},{"x":75,"y":-70}],"type":"area"},{"arc":[{"x":158446,"y":161814},{"x":31,"y":-24},{"x":109,"y":27},{"x":50,"y":127}],"type":"area"},{"arc":[{"x":156574,"y":161677},{"x":-23,"y":-165},{"x":-190,"y":-152},{"x":-2,"y":-95},{"x":53,"y":-116}],"type":"admin"},{"arc":[{"x":156412,"y":161149},{"x":91,"y":-135}],"type":"admin"},{"arc":[{"x":156503,"y":161014},{"x":-9,"y":-153},{"x":-58,"y":-34},{"x":-98,"y":2},{"x":45,"y":-115},{"x":4,"y":-188},{"x":37,"y":16},{"x":49,"y":-36}],"type":"admin"},{"arc":[{"x":156473,"y":160506},{"x":109,"y":-7},{"x":-11,"y":-104},{"x":155,"y":-328},{"x":40,"y":-147}],"type":"admin"},{"arc":[{"x":156766,"y":159920},{"x":145,"y":0},{"x":74,"y":25},{"x":14,"y":-49},{"x":41,"y":24},{"x":88,"y":-6},{"x":45,"y":30},{"x":79,"y":-39},{"x":102,"y":13},{"x":36,"y":-37},{"x":81,"y":-2},{"x":214,"y":93},{"x":110,"y":-34},{"x":72,"y":14},{"x":70,"y":78},{"x":61,"y":23},{"x":119,"y":-15}],"type":"admin"},{"arc":[{"x":158117,"y":160038},{"x":23,"y":58},{"x":163,"y":112},{"x":53,"y":-28},{"x":41,"y":26},{"x":64,"y":-3},{"x":61,"y":-82},{"x":50,"y":-1},{"x":122,"y":67},{"x":81,"y":-5},{"x":53,"y":24},{"x":26,"y":131},{"x":74,"y":-25},{"x":64,"y":27}],"type":"admin"},{"arc":[{"x":158992,"y":160339},{"x":0,"y":91},{"x":40,"y":48},{"x":160,"y":58},{"x":92,"y":-25},{"x":44,"y":92},{"x":86,"y":62},{"x":16,"y":84},{"x":-51,"y":92},{"x":89,"y":185},{"x":-20,"y":39},{"x":58,"y":138}],"type":"admin"},{"arc":[{"x":159506,"y":161203},{"x":-144,"y":25},{"x":-32,"y":85},{"x":-50,"y":33},{"x":-53,"y":1},{"x":-50,"y":-46},{"x":-46,"y":-2},{"x":-35,"y":-69},{"x":-113,"y":115},{"x":-90,"y":38},{"x":-48,"y":-13},{"x":-82,"y":186},{"x":-39,"y":22},{"x":-57,"y":-13},{"x":-78,"y":54},{"x":-25,"y":74},{"x":-107,"y":82},{"x":-11,"y":39}],"type":"area"},{"arc":[{"x":159580,"y":165009},{"x":-9,"y":46},{"x":48,"y":134},{"x":-46,"y":134},{"x":73,"y":81},{"x":-62,"y":169},{"x":-48,"y":45},{"x":14,"y":171},{"x":-96,"y":15},{"x":-31,"y":157}],"type":"area"},{"arc":[{"x":160347,"y":168149},{"x":58,"y":-39},{"x":66,"y":14},{"x":29,"y":-26},{"x":46,"y":32},{"x":14,"y":-123},{"x":101,"y":-78},{"x":25,"y":-91},{"x":-57,"y":-86},{"x":60,"y":-60},{"x":113,"y":0},{"x":57,"y":64},{"x":107,"y":-8},{"x":116,"y":39},{"x":125,"y":-78},{"x":76,"y":-105},{"x":151,"y":-53}],"type":"area"},{"arc":[{"x":161434,"y":167551},{"x":54,"y":126},{"x":89,"y":81},{"x":119,"y":-2},{"x":111,"y":166},{"x":45,"y":12},{"x":-17,"y":142},{"x":75,"y":86},{"x":115,"y":-46},{"x":72,"y":18},{"x":119,"y":-311},{"x":-34,"y":-89},{"x":117,"y":-37},{"x":66,"y":53},{"x":32,"y":-3},{"x":105,"y":147},{"x":36,"y":11},{"x":119,"y":-20},{"x":202,"y":49},{"x":149,"y":-30},{"x":98,"y":-72},{"x":79,"y":22},{"x":123,"y":-14},{"x":62,"y":26},{"x":100,"y":111}],"type":"area"},{"arc":[{"x":163470,"y":167977},{"x":-57,"y":61},{"x":13,"y":76},{"x":-66,"y":127},{"x":14,"y":87},{"x":48,"y":48},{"x":5,"y":102},{"x":-184,"y":95},{"x":-77,"y":-62}],"type":"admin"},{"arc":[{"x":161316,"y":167365},{"x":136,"y":113},{"x":-18,"y":73}],"type":"area"},{"arc":[{"x":160690,"y":163936},{"x":39,"y":34},{"x":129,"y":27},{"x":85,"y":125},{"x":-41,"y":107},{"x":135,"y":95},{"x":44,"y":-20},{"x":79,"y":41},{"x":122,"y":0},{"x":29,"y":28},{"x":75,"y":-51},{"x":225,"y":-52},{"x":-29,"y":148},{"x":23,"y":36},{"x":-70,"y":175},{"x":59,"y":84},{"x":29,"y":113},{"x":91,"y":66},{"x":27,"y":278},{"x":67,"y":216},{"x":52,"y":2},{"x":116,"y":-51},{"x":58,"y":-92},{"x":155,"y":66},{"x":89,"y":-54},{"x":43,"y":7},{"x":128,"y":56},{"x":41,"y":76},{"x":82,"y":18}],"type":"admin"},{"arc":[{"x":162572,"y":165414},{"x":20,"y":89},{"x":-27,"y":88},{"x":30,"y":51},{"x":-55,"y":130},{"x":-49,"y":46},{"x":58,"y":83},{"x":169,"y":1},{"x":100,"y":-54},{"x":98,"y":24},{"x":131,"y":-104},{"x":257,"y":-29},{"x":281,"y":41},{"x":69,"y":-12},{"x":30,"y":43},{"x":-30,"y":305},{"x":116,"y":157},{"x":-59,"y":157},{"x":47,"y":173},{"x":96,"y":28},{"x":43,"y":43},{"x":130,"y":199},{"x":2,"y":74},{"x":139,"y":108},{"x":141,"y":-25},{"x":110,"y":29},{"x":64,"y":-12},{"x":177,"y":69}],"type":"admin"},{"arc":[{"x":164660,"y":167116},{"x":-43,"y":148},{"x":-97,"y":42},{"x":-5,"y":78},{"x":-271,"y":93},{"x":-56,"y":117},{"x":-153,"y":77},{"x":-91,"y":210},{"x":-147,"y":89},{"x":-216,"y":-45},{"x":-111,"y":52}],"type":"admin"},{"arc":[{"x":154729,"y":167885},{"x":13,"y":-20}],"type":"admin"},{"arc":[{"x":154742,"y":167865},{"x":52,"y":-57},{"x":-6,"y":-292},{"x":63,"y":-62}],"type":"admin"},{"arc":[{"x":153885,"y":172982},{"x":15,"y":-33},{"x":45,"y":29},{"x":39,"y":-41},{"x":-35,"y":-96},{"x":-24,"y":-19},{"x":-159,"y":23},{"x":-33,"y":-232},{"x":-107,"y":-39},{"x":130,"y":-155}],"type":"admin"},{"arc":[{"x":153756,"y":172419},{"x":116,"y":-100},{"x":55,"y":-127}],"type":"admin"},{"arc":[{"x":153927,"y":172192},{"x":82,"y":37},{"x":21,"y":-109}],"type":"area"},{"arc":[{"x":153927,"y":172192},{"x":-232,"y":-588},{"x":7,"y":-368}],"type":"admin"},{"arc":[{"x":153702,"y":171236},{"x":-5,"y":-21}],"type":"admin"},{"arc":[{"x":153697,"y":171215},{"x":142,"y":-24},{"x":106,"y":-125}],"type":"area"},{"arc":[{"x":153697,"y":171215},{"x":-36,"y":-308},{"x":94,"y":-201}],"type":"admin"},{"arc":[{"x":153755,"y":170706},{"x":149,"y":-159},{"x":34,"y":-97},{"x":68,"y":-5},{"x":17,"y":-22}],"type":"admin"},{"arc":[{"x":154023,"y":170423},{"x":124,"y":5},{"x":80,"y":-83},{"x":53,"y":135},{"x":36,"y":45},{"x":25,"y":-12},{"x":30,"y":22}],"type":"area"},{"arc":[{"x":154371,"y":170535},{"x":-61,"y":62},{"x":-24,"y":-8},{"x":-36,"y":75},{"x":-62,"y":12},{"x":-25,"y":80},{"x":52,"y":8},{"x":-13,"y":55},{"x":-49,"y":-2},{"x":5,"y":70},{"x":-51,"y":14}],"type":"area"},{"arc":[{"x":154652,"y":170609},{"x":-38,"y":-6},{"x":-20,"y":28},{"x":-79,"y":-59},{"x":-144,"y":-37}],"type":"area"},{"arc":[{"x":154023,"y":170423},{"x":69,"y":-84},{"x":74,"y":-193},{"x":109,"y":-74}],"type":"admin"},{"arc":[{"x":150760,"y":170949},{"x":7,"y":75},{"x":-17,"y":35},{"x":-34,"y":-9},{"x":-9,"y":79},{"x":33,"y":40},{"x":-47,"y":23},{"x":3,"y":70},{"x":40,"y":14},{"x":-124,"y":254},{"x":-5,"y":27},{"x":34,"y":-4},{"x":-17,"y":57},{"x":23,"y":21},{"x":-38,"y":30}],"type":"admin"},{"arc":[{"x":150609,"y":171661},{"x":-66,"y":97},{"x":-65,"y":-25}],"type":"area"},{"arc":[{"x":149838,"y":171794},{"x":12,"y":-26},{"x":-62,"y":-39},{"x":-27,"y":41}],"type":"area"},{"arc":[{"x":149761,"y":171770},{"x":-6,"y":-43},{"x":-37,"y":-7},{"x":47,"y":-152},{"x":67,"y":-44},{"x":51,"y":33},{"x":19,"y":-24},{"x":-46,"y":-98},{"x":-88,"y":5},{"x":-32,"y":-61},{"x":-151,"y":-115},{"x":-29,"y":39},{"x":30,"y":-47},{"x":-99,"y":-95},{"x":-66,"y":-206},{"x":13,"y":62},{"x":-54,"y":29},{"x":54,"y":125},{"x":-33,"y":31},{"x":-59,"y":-85},{"x":-76,"y":32}],"type":"area"},{"arc":[{"x":149266,"y":171149},{"x":-56,"y":-95}],"type":"admin"},{"arc":[{"x":149210,"y":171054},{"x":30,"y":-19}],"type":"area"},{"arc":[{"x":149240,"y":171035},{"x":103,"y":-74},{"x":-12,"y":-25},{"x":40,"y":-21},{"x":15,"y":19},{"x":95,"y":-78},{"x":107,"y":74},{"x":80,"y":-42},{"x":49,"y":4},{"x":-80,"y":-82},{"x":104,"y":9},{"x":105,"y":54},{"x":-108,"y":-135},{"x":71,"y":-62},{"x":-39,"y":-90},{"x":37,"y":13},{"x":47,"y":-26},{"x":47,"y":-50},{"x":28,"y":-96},{"x":26,"y":9},{"x":15,"y":-51},{"x":41,"y":-15},{"x":-66,"y":-105}],"type":"area"},{"arc":[{"x":149945,"y":170265},{"x":-28,"y":-35},{"x":187,"y":-58},{"x":3,"y":-116},{"x":19,"y":42},{"x":62,"y":-25},{"x":21,"y":24},{"x":45,"y":-53},{"x":-56,"y":-29},{"x":54,"y":21}],"type":"area"},{"arc":[{"x":150252,"y":170036},{"x":30,"y":12},{"x":0,"y":34},{"x":-63,"y":11},{"x":-40,"y":38},{"x":124,"y":241},{"x":-14,"y":42},{"x":23,"y":46},{"x":71,"y":-44},{"x":126,"y":131},{"x":111,"y":-32},{"x":47,"y":-49},{"x":24,"y":20},{"x":14,"y":-16}],"type":"area"},{"arc":[{"x":150705,"y":170470},{"x":34,"y":31},{"x":39,"y":174},{"x":-15,"y":-53},{"x":-37,"y":80},{"x":-44,"y":-17},{"x":-27,"y":-94},{"x":-84,"y":22},{"x":40,"y":160},{"x":149,"y":176}],"type":"area"},{"arc":[{"x":150482,"y":171694},{"x":-28,"y":14},{"x":63,"y":-22},{"x":-35,"y":8}],"type":"area"},{"arc":[{"x":153755,"y":170706},{"x":-33,"y":-31},{"x":53,"y":-186},{"x":-40,"y":-30},{"x":-63,"y":2},{"x":-25,"y":-40},{"x":-23,"y":64},{"x":-42,"y":-25},{"x":-147,"y":11},{"x":-23,"y":25},{"x":9,"y":115},{"x":-88,"y":2},{"x":-24,"y":33},{"x":-37,"y":-66},{"x":-162,"y":4},{"x":33,"y":-107},{"x":-122,"y":6},{"x":-59,"y":66},{"x":-88,"y":23},{"x":-4,"y":24},{"x":-76,"y":-47},{"x":-6,"y":53},{"x":-85,"y":-53},{"x":-37,"y":28}],"type":"area"},{"arc":[{"x":152666,"y":170577},{"x":-75,"y":67},{"x":-22,"y":-81},{"x":-191,"y":47},{"x":-27,"y":-19},{"x":-28,"y":140}],"type":"area"},{"arc":[{"x":152323,"y":170731},{"x":-39,"y":-13},{"x":-89,"y":-158},{"x":14,"y":-16},{"x":-63,"y":-72}],"type":"admin"},{"arc":[{"x":152146,"y":170472},{"x":26,"y":15},{"x":32,"y":-46},{"x":13,"y":-136},{"x":76,"y":11},{"x":112,"y":65},{"x":49,"y":-16},{"x":12,"y":-65},{"x":127,"y":-141},{"x":-40,"y":-43}],"type":"area"},{"arc":[{"x":152553,"y":170116},{"x":-76,"y":-58},{"x":61,"y":-66},{"x":-1,"y":-174},{"x":44,"y":-137},{"x":-177,"y":-30},{"x":-17,"y":-71},{"x":39,"y":-8},{"x":-12,"y":-40},{"x":64,"y":7},{"x":42,"y":-47},{"x":-109,"y":-61}],"type":"admin"},{"arc":[{"x":152411,"y":169431},{"x":137,"y":-102},{"x":50,"y":12},{"x":63,"y":-114}],"type":"admin"},{"arc":[{"x":152661,"y":169227},{"x":19,"y":-10},{"x":-3,"y":60},{"x":68,"y":55},{"x":271,"y":8},{"x":9,"y":-46},{"x":95,"y":74},{"x":77,"y":-52},{"x":-12,"y":-47},{"x":55,"y":-55},{"x":-15,"y":-37},{"x":72,"y":-70},{"x":15,"y":38},{"x":64,"y":29},{"x":55,"y":101},{"x":51,"y":-31},{"x":34,"y":100},{"x":-47,"y":55},{"x":29,"y":85},{"x":53,"y":-27},{"x":39,"y":43},{"x":-48,"y":56},{"x":135,"y":-40},{"x":69,"y":5},{"x":82,"y":50},{"x":93,"y":-15},{"x":26,"y":31},{"x":72,"y":5},{"x":92,"y":-30},{"x":75,"y":22},{"x":114,"y":-81}],"type":"area"},{"arc":[{"x":153213,"y":170461},{"x":-48,"y":29},{"x":41,"y":-17},{"x":1,"y":28},{"x":6,"y":-40}],"type":"area"},{"arc":[{"x":149750,"y":173891},{"x":-120,"y":93},{"x":-57,"y":89}],"type":"area"},{"arc":[{"x":149573,"y":174073},{"x":-37,"y":-65},{"x":-68,"y":15},{"x":-79,"y":99},{"x":-41,"y":-34},{"x":-90,"y":79},{"x":-33,"y":2},{"x":-9,"y":-23},{"x":-37,"y":14},{"x":0,"y":25},{"x":-17,"y":-26},{"x":-13,"y":47},{"x":-63,"y":28},{"x":4,"y":25},{"x":-43,"y":4},{"x":-89,"y":-213}],"type":"area"},{"arc":[{"x":148958,"y":174050},{"x":-61,"y":-66},{"x":-34,"y":-109},{"x":-44,"y":-1},{"x":-117,"y":105},{"x":-130,"y":-56},{"x":-4,"y":-89},{"x":-45,"y":-10},{"x":-39,"y":-80}],"type":"admin"},{"arc":[{"x":148484,"y":173744},{"x":91,"y":5},{"x":27,"y":-33},{"x":-29,"y":-113},{"x":53,"y":-38},{"x":14,"y":-139},{"x":75,"y":-100}],"type":"admin"},{"arc":[{"x":148715,"y":173326},{"x":29,"y":7},{"x":9,"y":-32},{"x":175,"y":44}],"type":"area"},{"arc":[{"x":148928,"y":173345},{"x":21,"y":31},{"x":26,"y":-7},{"x":3,"y":57},{"x":89,"y":26},{"x":81,"y":-338}],"type":"area"},{"arc":[{"x":153702,"y":171236},{"x":-65,"y":10},{"x":-62,"y":54},{"x":-39,"y":-44},{"x":-35,"y":5},{"x":-3,"y":-96},{"x":-45,"y":-6},{"x":-124,"y":91},{"x":16,"y":11},{"x":-111,"y":3},{"x":-37,"y":165},{"x":-184,"y":22},{"x":1,"y":84}],"type":"area"},{"arc":[{"x":153014,"y":171535},{"x":-74,"y":9},{"x":-7,"y":44},{"x":-66,"y":62},{"x":-113,"y":-48}],"type":"area"},{"arc":[{"x":152754,"y":171602},{"x":91,"y":-232},{"x":-121,"y":-24},{"x":-64,"y":-119},{"x":-16,"y":28},{"x":-25,"y":-19},{"x":-42,"y":75},{"x":-172,"y":-99},{"x":34,"y":-79},{"x":64,"y":-52},{"x":91,"y":41},{"x":-12,"y":-95},{"x":149,"y":-150},{"x":-53,"y":-24},{"x":75,"y":-115},{"x":-3,"y":-68},{"x":-84,"y":-93}],"type":"area"},{"arc":[{"x":152748,"y":165870},{"x":-94,"y":5},{"x":-48,"y":89},{"x":-142,"y":74},{"x":30,"y":44},{"x":4,"y":111}],"type":"admin"},{"arc":[{"x":152498,"y":166193},{"x":-82,"y":-35},{"x":-69,"y":1},{"x":-6,"y":105},{"x":-118,"y":88},{"x":-72,"y":125},{"x":8,"y":52},{"x":51,"y":50},{"x":-25,"y":105},{"x":-139,"y":-8},{"x":-35,"y":38},{"x":60,"y":116},{"x":-18,"y":25},{"x":47,"y":128},{"x":31,"y":23},{"x":-137,"y":98},{"x":29,"y":122},{"x":-51,"y":78},{"x":-107,"y":42},{"x":-60,"y":-8},{"x":-36,"y":59},{"x":-66,"y":-2},{"x":-98,"y":297}],"type":"admin"},{"arc":[{"x":151605,"y":167692},{"x":-50,"y":8},{"x":-123,"y":101},{"x":-60,"y":13},{"x":-136,"y":121}],"type":"admin"},{"arc":[{"x":151236,"y":167935},{"x":-110,"y":-17}],"type":"admin"},{"arc":[{"x":151126,"y":167918},{"x":84,"y":-111},{"x":-11,"y":-58},{"x":80,"y":-333},{"x":-45,"y":-73},{"x":19,"y":-41},{"x":117,"y":-62},{"x":-18,"y":-81},{"x":-149,"y":-84},{"x":-43,"y":-16},{"x":-15,"y":17},{"x":-18,"y":-32},{"x":-5,"y":22},{"x":-224,"y":-56},{"x":-145,"y":65},{"x":-49,"y":-1},{"x":-43,"y":51},{"x":-208,"y":-25},{"x":-109,"y":75}],"type":"admin"},{"arc":[{"x":150344,"y":167175},{"x":-47,"y":19},{"x":-50,"y":84},{"x":-148,"y":-7},{"x":-69,"y":67},{"x":-91,"y":24},{"x":-89,"y":-36},{"x":-74,"y":-69},{"x":-64,"y":3},{"x":-57,"y":-29},{"x":-70,"y":-81}],"type":"area"},{"arc":[{"x":149585,"y":167150},{"x":23,"y":-89},{"x":75,"y":-97},{"x":1,"y":-59},{"x":-44,"y":-47},{"x":26,"y":-108},{"x":48,"y":-38},{"x":18,"y":-84},{"x":233,"y":-267},{"x":13,"y":-110},{"x":-51,"y":-63},{"x":-59,"y":-6},{"x":-71,"y":-60},{"x":-35,"y":-158},{"x":48,"y":-69},{"x":-36,"y":-115},{"x":-55,"y":-27},{"x":-37,"y":-111},{"x":-68,"y":-47},{"x":-20,"y":-49},{"x":-44,"y":15},{"x":-55,"y":-39},{"x":-67,"y":11}],"type":"admin"},{"arc":[{"x":149428,"y":165533},{"x":-75,"y":-179},{"x":48,"y":-162},{"x":-82,"y":-131},{"x":-81,"y":-62},{"x":93,"y":-68},{"x":6,"y":-78},{"x":122,"y":-90},{"x":19,"y":-70}],"type":"admin"},{"arc":[{"x":149478,"y":164693},{"x":-16,"y":-38},{"x":92,"y":-26},{"x":33,"y":-114},{"x":-65,"y":-114},{"x":45,"y":-68},{"x":-44,"y":-147}],"type":"admin"},{"arc":[{"x":149523,"y":164186},{"x":97,"y":-54},{"x":5,"y":-67},{"x":64,"y":-103},{"x":208,"y":-14},{"x":96,"y":-108},{"x":-5,"y":-150},{"x":46,"y":-95},{"x":-14,"y":-76},{"x":54,"y":-106},{"x":-23,"y":-46},{"x":65,"y":-56}],"type":"admin"},{"arc":[{"x":150116,"y":163311},{"x":72,"y":17},{"x":37,"y":-26},{"x":21,"y":43},{"x":99,"y":55},{"x":149,"y":17},{"x":77,"y":-84},{"x":146,"y":-45},{"x":112,"y":-130},{"x":80,"y":-29},{"x":170,"y":12}],"type":"admin"},{"arc":[{"x":151737,"y":164339},{"x":-46,"y":107},{"x":-40,"y":31},{"x":-91,"y":-5},{"x":-62,"y":-32},{"x":-91,"y":25},{"x":-132,"y":-11},{"x":-72,"y":106},{"x":-185,"y":168},{"x":-18,"y":88},{"x":-75,"y":96},{"x":0,"y":129},{"x":29,"y":42},{"x":-110,"y":231},{"x":47,"y":67},{"x":-48,"y":144},{"x":42,"y":82},{"x":46,"y":2},{"x":76,"y":67},{"x":-16,"y":71},{"x":33,"y":56},{"x":-23,"y":40},{"x":52,"y":78},{"x":-53,"y":43},{"x":-3,"y":65},{"x":-34,"y":13},{"x":50,"y":109},{"x":-5,"y":49},{"x":-98,"y":45},{"x":-67,"y":0},{"x":22,"y":155},{"x":110,"y":147},{"x":189,"y":88},{"x":123,"y":-101},{"x":96,"y":106},{"x":74,"y":-28},{"x":46,"y":39},{"x":68,"y":-104},{"x":-4,"y":-28},{"x":-49,"y":-23},{"x":-51,"y":-133},{"x":150,"y":-153},{"x":-3,"y":-69},{"x":86,"y":-193},{"x":44,"y":-9},{"x":73,"y":-146},{"x":125,"y":34},{"x":116,"y":-238},{"x":111,"y":-61},{"x":94,"y":-104},{"x":117,"y":-24}],"type":"admin"},{"arc":[{"x":149210,"y":171054},{"x":-32,"y":21},{"x":47,"y":26},{"x":-310,"y":214},{"x":136,"y":301},{"x":-74,"y":24}],"type":"admin"},{"arc":[{"x":148977,"y":171640},{"x":-43,"y":29},{"x":50,"y":27},{"x":-16,"y":21},{"x":-33,"y":-4},{"x":-46,"y":40},{"x":-62,"y":-39}],"type":"area"},{"arc":[{"x":148827,"y":171714},{"x":-229,"y":-198},{"x":-9,"y":-88},{"x":-40,"y":-15},{"x":-40,"y":-137},{"x":-44,"y":-27}],"type":"admin"},{"arc":[{"x":148465,"y":171249},{"x":37,"y":-10},{"x":-31,"y":-64},{"x":24,"y":-73},{"x":-54,"y":-74},{"x":-19,"y":14},{"x":-24,"y":-58},{"x":0,"y":-101},{"x":-52,"y":-34},{"x":-29,"y":-179}],"type":"admin"},{"arc":[{"x":148317,"y":170670},{"x":32,"y":-22},{"x":-30,"y":-23},{"x":8,"y":-147},{"x":-24,"y":-27},{"x":41,"y":-155},{"x":-14,"y":-42},{"x":-47,"y":-24},{"x":-12,"y":-67}],"type":"admin"},{"arc":[{"x":148271,"y":170163},{"x":51,"y":-1},{"x":-17,"y":-113},{"x":65,"y":-17}],"type":"admin"},{"arc":[{"x":148370,"y":170032},{"x":39,"y":25}],"type":"admin"},{"arc":[{"x":148409,"y":170057},{"x":4,"y":116},{"x":47,"y":31},{"x":53,"y":-6},{"x":11,"y":-69},{"x":41,"y":-26},{"x":163,"y":41},{"x":82,"y":-53},{"x":18,"y":10},{"x":18,"y":147},{"x":78,"y":189},{"x":36,"y":13}],"type":"area"},{"arc":[{"x":148960,"y":170450},{"x":36,"y":54},{"x":-21,"y":-1},{"x":-13,"y":69},{"x":46,"y":18},{"x":-18,"y":84},{"x":48,"y":-35},{"x":83,"y":124},{"x":101,"y":-14},{"x":-77,"y":12},{"x":141,"y":143},{"x":-88,"y":27},{"x":15,"y":55},{"x":-64,"y":28},{"x":28,"y":44},{"x":63,"y":-23}],"type":"area"},{"arc":[{"x":150714,"y":168314},{"x":-132,"y":94},{"x":-5,"y":63},{"x":-71,"y":72},{"x":-38,"y":-12},{"x":-32,"y":29},{"x":-54,"y":2},{"x":-60,"y":116},{"x":-31,"y":-4},{"x":-12,"y":59},{"x":37,"y":12},{"x":-10,"y":90}],"type":"admin"},{"arc":[{"x":150306,"y":168835},{"x":-39,"y":41},{"x":-55,"y":4},{"x":-52,"y":60},{"x":-64,"y":-30},{"x":-72,"y":0},{"x":-17,"y":69}],"type":"admin"},{"arc":[{"x":150007,"y":168979},{"x":-154,"y":34},{"x":-72,"y":-14},{"x":-4,"y":40},{"x":-53,"y":-65},{"x":-46,"y":-13},{"x":-18,"y":62},{"x":-41,"y":9},{"x":25,"y":69},{"x":-47,"y":21},{"x":4,"y":52},{"x":66,"y":125},{"x":-11,"y":79},{"x":66,"y":27},{"x":57,"y":95},{"x":-54,"y":76},{"x":29,"y":116},{"x":-42,"y":95},{"x":38,"y":75},{"x":54,"y":28},{"x":-77,"y":49},{"x":-69,"y":-57},{"x":-23,"y":83},{"x":-36,"y":22}],"type":"area"},{"arc":[{"x":149599,"y":169987},{"x":-115,"y":-98},{"x":2,"y":-45}],"type":"area"},{"arc":[{"x":149486,"y":169844},{"x":32,"y":-30},{"x":-34,"y":-80},{"x":-84,"y":16},{"x":-33,"y":-73},{"x":-286,"y":7},{"x":12,"y":-72},{"x":-80,"y":-8},{"x":54,"y":-61},{"x":2,"y":-56},{"x":-97,"y":-106}],"type":"area"},{"arc":[{"x":148972,"y":169381},{"x":82,"y":-12},{"x":-36,"y":-105},{"x":23,"y":-24},{"x":135,"y":-11},{"x":-13,"y":-60},{"x":52,"y":-48},{"x":-25,"y":-62},{"x":59,"y":-48},{"x":-59,"y":-206},{"x":28,"y":-84},{"x":-20,"y":-98},{"x":49,"y":-39},{"x":-49,"y":-80},{"x":126,"y":-192},{"x":-9,"y":-66},{"x":-58,"y":-30},{"x":-14,"y":-110},{"x":135,"y":-302}],"type":"admin"},{"arc":[{"x":149378,"y":167804},{"x":78,"y":-43},{"x":72,"y":-123},{"x":34,"y":-126},{"x":-9,"y":-244},{"x":32,"y":-118}],"type":"admin"},{"arc":[{"x":150344,"y":167175},{"x":46,"y":147},{"x":69,"y":101},{"x":39,"y":160},{"x":62,"y":60},{"x":-16,"y":35},{"x":37,"y":115},{"x":37,"y":11},{"x":10,"y":47},{"x":126,"y":44},{"x":35,"y":51},{"x":93,"y":14}],"type":"admin"},{"arc":[{"x":150882,"y":167960},{"x":-44,"y":233},{"x":-45,"y":6},{"x":-79,"y":115}],"type":"admin"},{"arc":[{"x":153101,"y":173382},{"x":-122,"y":-204},{"x":-147,"y":20},{"x":7,"y":-67},{"x":-32,"y":-26},{"x":-20,"y":-92},{"x":-79,"y":-35},{"x":-73,"y":55},{"x":-16,"y":-10},{"x":-8,"y":-114},{"x":-36,"y":-19},{"x":2,"y":-69},{"x":-17,"y":7},{"x":18,"y":-40},{"x":-32,"y":-13},{"x":-44,"y":24},{"x":-112,"y":-57},{"x":-23,"y":-15},{"x":11,"y":-40},{"x":-55,"y":-55},{"x":-22,"y":30},{"x":-32,"y":-5},{"x":44,"y":-190},{"x":60,"y":-96},{"x":-187,"y":-124},{"x":10,"y":-41},{"x":57,"y":-41},{"x":-35,"y":-36},{"x":-12,"y":29},{"x":-37,"y":-29},{"x":55,"y":-12},{"x":-56,"y":-47},{"x":5,"y":-172}],"type":"area"},{"arc":[{"x":152173,"y":171898},{"x":94,"y":-67},{"x":24,"y":-43},{"x":-30,"y":-17},{"x":40,"y":-75},{"x":114,"y":49},{"x":40,"y":42},{"x":-8,"y":27},{"x":100,"y":27},{"x":-11,"y":-74},{"x":23,"y":-24},{"x":-27,"y":-28},{"x":150,"y":-115},{"x":43,"y":21},{"x":29,"y":-19}],"type":"area"},{"arc":[{"x":153014,"y":171535},{"x":101,"y":12},{"x":-66,"y":44},{"x":-47,"y":92},{"x":-3,"y":360},{"x":45,"y":-42},{"x":33,"y":1},{"x":-13,"y":35},{"x":69,"y":16},{"x":32,"y":-19},{"x":4,"y":141},{"x":188,"y":31},{"x":-73,"y":198},{"x":88,"y":5},{"x":63,"y":43},{"x":186,"y":-104},{"x":84,"y":2},{"x":51,"y":69}],"type":"area"},{"arc":[{"x":154359,"y":168633},{"x":-81,"y":-10},{"x":-7,"y":32},{"x":-64,"y":18},{"x":-8,"y":-25},{"x":-97,"y":-37},{"x":19,"y":-85},{"x":-31,"y":-14},{"x":8,"y":-37},{"x":23,"y":-25},{"x":23,"y":37},{"x":12,"y":-47},{"x":50,"y":-12},{"x":-42,"y":4},{"x":-11,"y":-56},{"x":-77,"y":-22},{"x":21,"y":-55},{"x":-87,"y":-143},{"x":-110,"y":-36}],"type":"area"},{"arc":[{"x":153900,"y":168120},{"x":-21,"y":-31},{"x":36,"y":-6},{"x":17,"y":-191},{"x":-70,"y":-94},{"x":-78,"y":-25},{"x":5,"y":-33},{"x":-25,"y":-5},{"x":19,"y":-15},{"x":-38,"y":17},{"x":1,"y":44},{"x":-43,"y":-13},{"x":-12,"y":-38},{"x":-118,"y":-41},{"x":4,"y":-26},{"x":-81,"y":47},{"x":-98,"y":-56},{"x":-52,"y":-64},{"x":-145,"y":38},{"x":-18,"y":-50},{"x":-75,"y":-52}],"type":"admin"},{"arc":[{"x":153108,"y":167526},{"x":-5,"y":-48},{"x":40,"y":-63},{"x":-81,"y":-147},{"x":25,"y":-57},{"x":-95,"y":-51},{"x":18,"y":-54},{"x":-27,"y":-37},{"x":-85,"y":-59},{"x":-66,"y":11},{"x":-28,"y":-54}],"type":"admin"},{"arc":[{"x":152804,"y":166967},{"x":-37,"y":-113},{"x":59,"y":-131},{"x":36,"y":-22}],"type":"admin"},{"arc":[{"x":152862,"y":166701},{"x":55,"y":23},{"x":35,"y":-11},{"x":3,"y":32},{"x":121,"y":59},{"x":-8,"y":57},{"x":71,"y":34},{"x":21,"y":-55},{"x":92,"y":-7},{"x":33,"y":-28},{"x":41,"y":23},{"x":-16,"y":74},{"x":85,"y":22},{"x":43,"y":-29},{"x":36,"y":-1},{"x":14,"y":25},{"x":15,"y":-26},{"x":84,"y":39},{"x":12,"y":36},{"x":26,"y":-12},{"x":38,"y":23},{"x":-28,"y":15},{"x":9,"y":45},{"x":70,"y":72},{"x":-1,"y":39},{"x":-31,"y":-24},{"x":49,"y":83},{"x":64,"y":65},{"x":21,"y":-30},{"x":62,"y":1},{"x":11,"y":-20},{"x":-33,"y":121},{"x":-81,"y":47},{"x":28,"y":55},{"x":47,"y":5},{"x":18,"y":-33},{"x":76,"y":39},{"x":46,"y":-25},{"x":75,"y":85}],"type":"admin"},{"arc":[{"x":154065,"y":167519},{"x":-15,"y":21},{"x":184,"y":224},{"x":-1,"y":59},{"x":53,"y":65},{"x":7,"y":-93},{"x":37,"y":-34},{"x":64,"y":11},{"x":35,"y":-50},{"x":122,"y":106},{"x":57,"y":-40},{"x":27,"y":72},{"x":107,"y":5}],"type":"admin"},{"arc":[{"x":153778,"y":167671},{"x":-40,"y":-11},{"x":7,"y":25},{"x":33,"y":-14}],"type":"admin"},{"arc":[{"x":153751,"y":167646},{"x":-11,"y":-47},{"x":-15,"y":19},{"x":26,"y":28}],"type":"admin"},{"arc":[{"x":152146,"y":170472},{"x":-73,"y":-55},{"x":-99,"y":25},{"x":-15,"y":-51},{"x":-17,"y":63},{"x":-12,"y":-31},{"x":-59,"y":33},{"x":-86,"y":-9},{"x":-26,"y":18},{"x":-47,"y":-30},{"x":-14,"y":50},{"x":-133,"y":96},{"x":-12,"y":39},{"x":-125,"y":42},{"x":44,"y":99},{"x":-31,"y":2},{"x":-25,"y":76}],"type":"admin"},{"arc":[{"x":151416,"y":170839},{"x":-47,"y":-34},{"x":-41,"y":9},{"x":-14,"y":-86},{"x":-3,"y":-122},{"x":50,"y":-135},{"x":-31,"y":25},{"x":-89,"y":3},{"x":-1,"y":62}],"type":"admin"},{"arc":[{"x":151240,"y":170561},{"x":-91,"y":-188},{"x":-68,"y":-74},{"x":-29,"y":-113},{"x":21,"y":-90},{"x":-28,"y":-7},{"x":-13,"y":-54}],"type":"area"},{"arc":[{"x":151032,"y":170035},{"x":21,"y":-38},{"x":30,"y":-15},{"x":15,"y":38},{"x":86,"y":-95},{"x":24,"y":13},{"x":23,"y":-22},{"x":69,"y":-109},{"x":15,"y":-100},{"x":64,"y":-51}],"type":"admin"},{"arc":[{"x":151379,"y":169656},{"x":68,"y":-62},{"x":111,"y":3},{"x":29,"y":23},{"x":49,"y":-47},{"x":-10,"y":-21},{"x":161,"y":-15}],"type":"admin"},{"arc":[{"x":151787,"y":169537},{"x":-47,"y":248},{"x":45,"y":22},{"x":-57,"y":110},{"x":70,"y":68},{"x":-15,"y":116},{"x":111,"y":-38},{"x":18,"y":39},{"x":174,"y":-79},{"x":97,"y":-12},{"x":53,"y":21},{"x":90,"y":-26},{"x":125,"y":81},{"x":102,"y":29}],"type":"admin"},{"arc":[{"x":150872,"y":174729},{"x":-50,"y":-41},{"x":-13,"y":-67},{"x":25,"y":-23},{"x":-165,"y":-116},{"x":19,"y":-46},{"x":-95,"y":10},{"x":-69,"y":-37}],"type":"admin"},{"arc":[{"x":150524,"y":174409},{"x":94,"y":-58},{"x":123,"y":-195},{"x":-61,"y":12},{"x":-107,"y":-29},{"x":-43,"y":70},{"x":-48,"y":-40},{"x":-4,"y":-97},{"x":-29,"y":-43},{"x":114,"y":-70},{"x":-50,"y":-71}],"type":"area"},{"arc":[{"x":151206,"y":173432},{"x":120,"y":61}],"type":"area"},{"arc":[{"x":151326,"y":173493},{"x":-85,"y":109},{"x":20,"y":21},{"x":-35,"y":185},{"x":46,"y":-5}],"type":"admin"},{"arc":[{"x":151272,"y":173803},{"x":-12,"y":142},{"x":66,"y":26},{"x":2,"y":91},{"x":47,"y":53},{"x":-50,"y":73},{"x":83,"y":-18},{"x":16,"y":43},{"x":58,"y":3},{"x":33,"y":-38},{"x":80,"y":-20},{"x":136,"y":214},{"x":-47,"y":25},{"x":23,"y":47},{"x":39,"y":-12},{"x":65,"y":24}],"type":"admin"},{"arc":[{"x":151811,"y":174456},{"x":-69,"y":80},{"x":-80,"y":30},{"x":-100,"y":-43},{"x":-257,"y":37},{"x":-77,"y":-28},{"x":-173,"y":128},{"x":-137,"y":-9},{"x":-46,"y":78}],"type":"admin"},{"arc":[{"x":148960,"y":170450},{"x":284,"y":-125},{"x":-6,"y":-144},{"x":54,"y":-17},{"x":11,"y":28},{"x":61,"y":-54},{"x":36,"y":6},{"x":-46,"y":-181},{"x":-91,"y":-8},{"x":6,"y":-78},{"x":217,"y":-33}],"type":"area"},{"arc":[{"x":149599,"y":169987},{"x":93,"y":152},{"x":85,"y":-14},{"x":136,"y":125},{"x":-15,"y":11},{"x":47,"y":4}],"type":"area"},{"arc":[{"x":152173,"y":171898},{"x":-69,"y":41},{"x":-15,"y":-14},{"x":-99,"y":32},{"x":-12,"y":-80},{"x":-47,"y":26},{"x":11,"y":21},{"x":-70,"y":2},{"x":-45,"y":42},{"x":16,"y":12},{"x":-65,"y":30}],"type":"area"},{"arc":[{"x":151778,"y":172010},{"x":-64,"y":-62}],"type":"area"},{"arc":[{"x":151714,"y":171948},{"x":45,"y":-47},{"x":53,"y":-14},{"x":14,"y":-129},{"x":168,"y":-214},{"x":-35,"y":-36},{"x":-50,"y":43},{"x":-42,"y":-56},{"x":-161,"y":113},{"x":-18,"y":-48},{"x":26,"y":-2},{"x":-4,"y":-21},{"x":-39,"y":19},{"x":50,"y":-38},{"x":-66,"y":-66},{"x":47,"y":-56},{"x":7,"y":-172}],"type":"area"},{"arc":[{"x":151709,"y":171224},{"x":80,"y":-51},{"x":81,"y":14},{"x":80,"y":-86},{"x":62,"y":6},{"x":17,"y":-105},{"x":244,"y":-172},{"x":52,"y":-58},{"x":-2,"y":-41}],"type":"admin"},{"arc":[{"x":152661,"y":169227},{"x":-46,"y":-135}],"type":"admin"},{"arc":[{"x":152615,"y":169092},{"x":-28,"y":-47},{"x":73,"y":10},{"x":-51,"y":-92},{"x":2,"y":-135},{"x":68,"y":128},{"x":47,"y":-13},{"x":13,"y":18},{"x":35,"y":-25},{"x":-44,"y":-165},{"x":0,"y":-28},{"x":43,"y":-10},{"x":-30,"y":-303},{"x":29,"y":-76},{"x":173,"y":-22},{"x":54,"y":-150},{"x":-44,"y":-99},{"x":12,"y":-100},{"x":40,"y":26},{"x":56,"y":228},{"x":111,"y":163},{"x":-2,"y":63},{"x":80,"y":56},{"x":53,"y":-66},{"x":-33,"y":-27},{"x":18,"y":-60},{"x":211,"y":-286}],"type":"admin"},{"arc":[{"x":153501,"y":168080},{"x":48,"y":31},{"x":84,"y":151},{"x":140,"y":5},{"x":11,"y":-70},{"x":-32,"y":-43},{"x":153,"y":-5},{"x":-5,"y":-29}],"type":"admin"},{"arc":[{"x":151375,"y":172221},{"x":-77,"y":147},{"x":-61,"y":-18},{"x":-40,"y":19},{"x":-70,"y":78},{"x":-151,"y":84},{"x":-82,"y":136},{"x":-12,"y":86}],"type":"admin"},{"arc":[{"x":150882,"y":172753},{"x":-76,"y":30},{"x":-19,"y":39}],"type":"area"},{"arc":[{"x":150609,"y":171661},{"x":51,"y":92},{"x":53,"y":-49},{"x":73,"y":-16},{"x":-18,"y":-45}],"type":"admin"},{"arc":[{"x":150768,"y":171643},{"x":122,"y":-4},{"x":101,"y":84},{"x":102,"y":-53},{"x":77,"y":16},{"x":-21,"y":206},{"x":45,"y":3},{"x":9,"y":26},{"x":-35,"y":39},{"x":-57,"y":-15},{"x":-16,"y":108},{"x":22,"y":22},{"x":61,"y":-61},{"x":86,"y":27},{"x":61,"y":-45},{"x":17,"y":48},{"x":45,"y":-12},{"x":1,"y":122},{"x":-41,"y":49},{"x":28,"y":18}],"type":"area"},{"arc":[{"x":149620,"y":174797},{"x":-134,"y":-2}],"type":"area"},{"arc":[{"x":149486,"y":174795},{"x":-45,"y":12}],"type":"area"},{"arc":[{"x":149441,"y":174807},{"x":28,"y":-26},{"x":-11,"y":-99},{"x":-148,"y":27},{"x":-126,"y":-8},{"x":-44,"y":-47},{"x":-37,"y":3},{"x":5,"y":-98},{"x":70,"y":-8},{"x":-4,"y":-46},{"x":-88,"y":28},{"x":-64,"y":69},{"x":-24,"y":-57},{"x":-59,"y":-37},{"x":-14,"y":94}],"type":"area"},{"arc":[{"x":148925,"y":174602},{"x":-46,"y":1},{"x":-34,"y":-67},{"x":-2,"y":-128},{"x":-43,"y":-86},{"x":26,"y":-133},{"x":122,"y":-97},{"x":10,"y":-42}],"type":"admin"},{"arc":[{"x":149573,"y":174073},{"x":-85,"y":61},{"x":18,"y":123},{"x":-41,"y":107},{"x":-38,"y":26},{"x":25,"y":26},{"x":-12,"y":40},{"x":44,"y":7},{"x":22,"y":37},{"x":-28,"y":27},{"x":23,"y":-1},{"x":28,"y":66},{"x":23,"y":21},{"x":63,"y":-28},{"x":25,"y":132},{"x":-20,"y":80}],"type":"area"},{"arc":[{"x":150078,"y":174770},{"x":-24,"y":5},{"x":-18,"y":-71},{"x":-49,"y":-27},{"x":-79,"y":119},{"x":-94,"y":-19},{"x":-194,"y":20}],"type":"area"},{"arc":[{"x":150524,"y":174409},{"x":-22,"y":85},{"x":-101,"y":79},{"x":-39,"y":-22},{"x":-63,"y":-114},{"x":-74,"y":7},{"x":-42,"y":146},{"x":-87,"y":54},{"x":-18,"y":126}],"type":"admin"},{"arc":[{"x":148928,"y":173345},{"x":-13,"y":-116},{"x":22,"y":-37},{"x":44,"y":1},{"x":-12,"y":-46},{"x":38,"y":-36},{"x":26,"y":-101},{"x":69,"y":-39}],"type":"area"},{"arc":[{"x":148715,"y":173326},{"x":5,"y":-8}],"type":"admin"},{"arc":[{"x":148720,"y":173318},{"x":25,"y":-73},{"x":-26,"y":-118},{"x":22,"y":-213},{"x":-34,"y":-119}],"type":"admin"},{"arc":[{"x":148707,"y":172795},{"x":51,"y":-24},{"x":12,"y":-36},{"x":132,"y":-47},{"x":-102,"y":-14},{"x":12,"y":-60},{"x":60,"y":2},{"x":-13,"y":-58}],"type":"area"},{"arc":[{"x":148859,"y":172558},{"x":179,"y":-9},{"x":65,"y":-39}],"type":"area"},{"arc":[{"x":148409,"y":170057},{"x":37,"y":0},{"x":35,"y":-40},{"x":-21,"y":-76},{"x":18,"y":29},{"x":74,"y":-60},{"x":26,"y":27},{"x":52,"y":1},{"x":19,"y":-200},{"x":40,"y":-39},{"x":-57,"y":-145},{"x":22,"y":-25}],"type":"admin"},{"arc":[{"x":148654,"y":169529},{"x":74,"y":-84},{"x":187,"y":-75},{"x":57,"y":11}],"type":"admin"},{"arc":[{"x":148859,"y":172558},{"x":-26,"y":-13},{"x":17,"y":-41},{"x":-42,"y":-38},{"x":-111,"y":0},{"x":-54,"y":-103},{"x":-182,"y":-76}],"type":"area"},{"arc":[{"x":148461,"y":172287},{"x":4,"y":-31}],"type":"admin"},{"arc":[{"x":148465,"y":172256},{"x":20,"y":-48},{"x":27,"y":9},{"x":52,"y":-36},{"x":-66,"y":-54},{"x":59,"y":-1},{"x":22,"y":-37},{"x":76,"y":19},{"x":76,"y":-73},{"x":84,"y":31},{"x":32,"y":-28},{"x":36,"y":26},{"x":41,"y":-15},{"x":101,"y":40}],"type":"area"},{"arc":[{"x":149025,"y":172089},{"x":21,"y":51},{"x":59,"y":-18},{"x":27,"y":56},{"x":-38,"y":49},{"x":28,"y":12},{"x":-35,"y":-2},{"x":-10,"y":35},{"x":36,"y":-5},{"x":-10,"y":30},{"x":71,"y":96}],"type":"area"},{"arc":[{"x":149025,"y":172089},{"x":-58,"y":-168},{"x":49,"y":-14},{"x":42,"y":-53}],"type":"area"},{"arc":[{"x":149058,"y":171854},{"x":34,"y":0}],"type":"admin"},{"arc":[{"x":149092,"y":171854},{"x":52,"y":116},{"x":73,"y":61},{"x":2,"y":50},{"x":-33,"y":25},{"x":45,"y":21},{"x":37,"y":-106},{"x":20,"y":59},{"x":167,"y":37},{"x":-70,"y":60},{"x":84,"y":-35},{"x":31,"y":21}],"type":"area"},{"arc":[{"x":148707,"y":172795},{"x":1,"y":-56},{"x":-64,"y":-15},{"x":-50,"y":-73},{"x":-115,"y":-79}],"type":"admin"},{"arc":[{"x":148479,"y":172572},{"x":-86,"y":9},{"x":-79,"y":-33},{"x":-2,"y":-48},{"x":54,"y":-24},{"x":-22,"y":-178},{"x":38,"y":2},{"x":32,"y":63},{"x":22,"y":-78},{"x":25,"y":2}],"type":"admin"},{"arc":[{"x":148465,"y":172256},{"x":-19,"y":-8},{"x":17,"y":-48},{"x":-93,"y":-67},{"x":-71,"y":-126},{"x":-28,"y":10},{"x":-22,"y":-85}],"type":"admin"},{"arc":[{"x":148249,"y":171932},{"x":-26,"y":-10},{"x":-9,"y":-59},{"x":-40,"y":-9},{"x":-29,"y":-84},{"x":17,"y":-26}],"type":"admin"},{"arc":[{"x":148162,"y":171744},{"x":70,"y":24},{"x":176,"y":7},{"x":-109,"y":-323}],"type":"admin"},{"arc":[{"x":148299,"y":171452},{"x":80,"y":67},{"x":23,"y":109},{"x":77,"y":99},{"x":106,"y":8},{"x":42,"y":-67},{"x":66,"y":78},{"x":75,"y":24},{"x":59,"y":-56}],"type":"admin"},{"arc":[{"x":148977,"y":171640},{"x":29,"y":85},{"x":-19,"y":100},{"x":71,"y":29}],"type":"admin"},{"arc":[{"x":151631,"y":172194},{"x":-21,"y":77}],"type":"area"},{"arc":[{"x":151610,"y":172271},{"x":-235,"y":-50}],"type":"admin"},{"arc":[{"x":150768,"y":171643},{"x":76,"y":-120},{"x":62,"y":47},{"x":41,"y":-74},{"x":29,"y":28},{"x":17,"y":-19},{"x":-33,"y":-33},{"x":21,"y":-17},{"x":81,"y":-44},{"x":42,"y":23},{"x":111,"y":-71}],"type":"admin"},{"arc":[{"x":151215,"y":171363},{"x":69,"y":-10},{"x":-8,"y":56},{"x":29,"y":43},{"x":112,"y":76},{"x":9,"y":178},{"x":-21,"y":52},{"x":-74,"y":59},{"x":62,"y":45},{"x":57,"y":-33},{"x":48,"y":65},{"x":45,"y":8},{"x":92,"y":-36},{"x":34,"y":71},{"x":26,"y":-10},{"x":19,"y":21}],"type":"area"},{"arc":[{"x":151778,"y":172010},{"x":-32,"y":14},{"x":-25,"y":-21},{"x":-36,"y":37},{"x":-54,"y":154}],"type":"area"},{"arc":[{"x":152626,"y":173630},{"x":7,"y":-67},{"x":-79,"y":-1},{"x":-39,"y":-27},{"x":32,"y":-51},{"x":-53,"y":-81},{"x":13,"y":-51},{"x":-56,"y":-20},{"x":-36,"y":-53},{"x":-59,"y":22},{"x":6,"y":-31},{"x":-31,"y":-11},{"x":-85,"y":30},{"x":6,"y":103},{"x":-71,"y":55},{"x":-47,"y":-1},{"x":-80,"y":-65}],"type":"area"},{"arc":[{"x":152054,"y":173381},{"x":-85,"y":-38}],"type":"admin"},{"arc":[{"x":151969,"y":173343},{"x":25,"y":-152},{"x":-131,"y":20},{"x":-26,"y":25},{"x":-39,"y":-54}],"type":"admin"},{"arc":[{"x":151798,"y":173182},{"x":35,"y":-56},{"x":-49,"y":-73},{"x":41,"y":5},{"x":58,"y":-128},{"x":-37,"y":-36},{"x":-71,"y":50},{"x":-25,"y":-92},{"x":-43,"y":1},{"x":-2,"y":-34},{"x":69,"y":-56},{"x":39,"y":-169},{"x":40,"y":-31},{"x":-22,"y":-38},{"x":61,"y":-62},{"x":-53,"y":-80},{"x":-68,"y":8},{"x":-40,"y":-31}],"type":"area"},{"arc":[{"x":151731,"y":172360},{"x":-38,"y":-103},{"x":-62,"y":-63}],"type":"area"},{"arc":[{"x":151215,"y":171363},{"x":6,"y":-67},{"x":34,"y":13},{"x":32,"y":-23},{"x":46,"y":36},{"x":81,"y":8},{"x":23,"y":-51}],"type":"admin"},{"arc":[{"x":151437,"y":171279},{"x":62,"y":-11},{"x":66,"y":58},{"x":48,"y":8},{"x":96,"y":-110}],"type":"admin"},{"arc":[{"x":149441,"y":174807},{"x":-348,"y":68},{"x":-56,"y":72},{"x":-12,"y":115},{"x":-48,"y":38},{"x":-97,"y":-22},{"x":-90,"y":-117},{"x":-126,"y":31}],"type":"area"},{"arc":[{"x":148664,"y":174992},{"x":-46,"y":-36},{"x":72,"y":-88}],"type":"admin"},{"arc":[{"x":148690,"y":174868},{"x":54,"y":-91},{"x":-78,"y":-74},{"x":-16,"y":-49},{"x":29,"y":-37},{"x":50,"y":-29},{"x":156,"y":54},{"x":40,"y":-40}],"type":"admin"},{"arc":[{"x":149092,"y":171854},{"x":4,"y":-67},{"x":52,"y":1},{"x":-7,"y":-29},{"x":20,"y":9},{"x":34,"y":-30},{"x":-11,"y":-37},{"x":50,"y":-10},{"x":-9,"y":-34},{"x":40,"y":5},{"x":25,"y":-49},{"x":-21,"y":-30},{"x":84,"y":18},{"x":6,"y":-31}],"type":"admin"},{"arc":[{"x":149359,"y":171570},{"x":75,"y":-2},{"x":46,"y":58},{"x":59,"y":11},{"x":-111,"y":-215},{"x":14,"y":-19},{"x":35,"y":73},{"x":5,"y":-16},{"x":58,"y":15},{"x":53,"y":145},{"x":20,"y":176},{"x":101,"y":3},{"x":47,"y":-29}],"type":"area"},{"arc":[{"x":149580,"y":175410},{"x":-56,"y":8},{"x":-245,"y":-106},{"x":-163,"y":-12}],"type":"admin"},{"arc":[{"x":149116,"y":175300},{"x":-88,"y":-5},{"x":-62,"y":37},{"x":-142,"y":-29},{"x":-92,"y":20},{"x":-66,"y":-26},{"x":-150,"y":57}],"type":"admin"},{"arc":[{"x":148516,"y":175354},{"x":16,"y":-68},{"x":-28,"y":-131},{"x":61,"y":-34},{"x":83,"y":55},{"x":50,"y":-33},{"x":-34,"y":-151}],"type":"admin"},{"arc":[{"x":149486,"y":174795},{"x":66,"y":248},{"x":15,"y":-14},{"x":17,"y":31},{"x":11,"y":85},{"x":-29,"y":48},{"x":21,"y":88},{"x":-25,"y":61},{"x":25,"y":11},{"x":-22,"y":12},{"x":15,"y":45}],"type":"area"},{"arc":[{"x":150882,"y":172753},{"x":287,"y":34},{"x":75,"y":-88},{"x":100,"y":-20},{"x":39,"y":-132},{"x":150,"y":-110},{"x":77,"y":-166}],"type":"admin"},{"arc":[{"x":151731,"y":172360},{"x":-116,"y":224},{"x":57,"y":117},{"x":-11,"y":128},{"x":-264,"y":9},{"x":20,"y":120},{"x":-65,"y":28},{"x":-99,"y":114},{"x":64,"y":116},{"x":-64,"y":51}],"type":"area"},{"arc":[{"x":150705,"y":170470},{"x":38,"y":-42},{"x":-14,"y":-28},{"x":-50,"y":-45},{"x":-22,"y":24},{"x":-38,"y":-37},{"x":-11,"y":-101},{"x":70,"y":-20},{"x":-20,"y":-149},{"x":-14,"y":-29},{"x":-21,"y":18},{"x":-87,"y":-45},{"x":33,"y":-55},{"x":-213,"y":-205}],"type":"area"},{"arc":[{"x":150356,"y":169756},{"x":-100,"y":-119},{"x":-7,"y":-78},{"x":43,"y":-60}],"type":"area"},{"arc":[{"x":150292,"y":169499},{"x":65,"y":-40},{"x":52,"y":43},{"x":34,"y":-6},{"x":12,"y":70},{"x":-73,"y":155},{"x":61,"y":-4},{"x":24,"y":54},{"x":52,"y":-65},{"x":68,"y":71},{"x":13,"y":59},{"x":54,"y":-44},{"x":39,"y":56},{"x":44,"y":-26},{"x":-13,"y":-33},{"x":95,"y":-25},{"x":-15,"y":-36},{"x":51,"y":13},{"x":16,"y":-21}],"type":"admin"},{"arc":[{"x":150871,"y":169720},{"x":32,"y":10},{"x":5,"y":54},{"x":61,"y":36},{"x":4,"y":95},{"x":59,"y":120}],"type":"admin"},{"arc":[{"x":151240,"y":170561},{"x":-17,"y":32},{"x":-118,"y":40},{"x":-7,"y":47},{"x":-40,"y":-11},{"x":-54,"y":80},{"x":9,"y":60},{"x":-80,"y":23},{"x":-19,"y":51},{"x":-48,"y":-11},{"x":-64,"y":41},{"x":-25,"y":-18},{"x":-17,"y":54}],"type":"admin"},{"arc":[{"x":152414,"y":174138},{"x":-261,"y":68},{"x":-105,"y":70}],"type":"admin"},{"arc":[{"x":152048,"y":174276},{"x":-18,"y":-55},{"x":-25,"y":7},{"x":27,"y":37},{"x":-55,"y":-16},{"x":3,"y":-61},{"x":-181,"y":-11},{"x":-54,"y":-52},{"x":62,"y":-31},{"x":-7,"y":-48},{"x":105,"y":-88},{"x":5,"y":26},{"x":33,"y":-22},{"x":-17,"y":-17},{"x":43,"y":-48},{"x":-6,"y":-69},{"x":-22,"y":-16},{"x":-12,"y":43},{"x":5,"y":-36},{"x":-56,"y":17},{"x":-46,"y":-21},{"x":1,"y":-38},{"x":-55,"y":-15},{"x":71,"y":-87},{"x":-12,"y":-39},{"x":106,"y":-33},{"x":-24,"y":-81},{"x":95,"y":-72},{"x":40,"y":-69}],"type":"admin"},{"arc":[{"x":150252,"y":170036},{"x":94,"y":-110},{"x":-52,"y":-117},{"x":18,"y":-51},{"x":44,"y":-2}],"type":"area"},{"arc":[{"x":150007,"y":168979},{"x":34,"y":170},{"x":45,"y":45},{"x":-12,"y":30},{"x":36,"y":80},{"x":105,"y":-4},{"x":-6,"y":57},{"x":45,"y":44},{"x":-5,"y":44},{"x":36,"y":-9},{"x":7,"y":63}],"type":"admin"},{"arc":[{"x":150485,"y":174894},{"x":-97,"y":144},{"x":-225,"y":119}],"type":"admin"},{"arc":[{"x":150163,"y":175157},{"x":-257,"y":157},{"x":-326,"y":96}],"type":"admin"},{"arc":[{"x":150078,"y":174770},{"x":72,"y":117},{"x":17,"y":-61},{"x":60,"y":-20},{"x":-33,"y":-48},{"x":148,"y":10},{"x":9,"y":26},{"x":77,"y":18},{"x":8,"y":-58},{"x":65,"y":-57},{"x":-9,"y":98},{"x":-38,"y":56},{"x":31,"y":43}],"type":"admin"},{"arc":[{"x":149359,"y":171570},{"x":-77,"y":-65},{"x":41,"y":-77},{"x":-28,"y":-37},{"x":92,"y":5},{"x":-38,"y":-73},{"x":15,"y":-108},{"x":-9,"y":-30},{"x":-89,"y":-36}],"type":"admin"},{"arc":[{"x":151798,"y":173182},{"x":-18,"y":-13},{"x":-46,"y":39},{"x":-28,"y":-14},{"x":-74,"y":43},{"x":-25,"y":140},{"x":-65,"y":55},{"x":-31,"y":19},{"x":-46,"y":-15},{"x":-17,"y":-46},{"x":-122,"y":103}],"type":"admin"},{"arc":[{"x":150306,"y":168835},{"x":65,"y":23},{"x":56,"y":-44},{"x":81,"y":41},{"x":63,"y":95},{"x":77,"y":13},{"x":-83,"y":246},{"x":11,"y":43},{"x":47,"y":19},{"x":11,"y":51},{"x":80,"y":33},{"x":7,"y":40},{"x":86,"y":-15},{"x":23,"y":56}],"type":"area"},{"arc":[{"x":150830,"y":169436},{"x":-42,"y":54},{"x":-5,"y":117},{"x":69,"y":51},{"x":-6,"y":53},{"x":25,"y":9}],"type":"area"},{"arc":[{"x":151154,"y":169093},{"x":-78,"y":139},{"x":-246,"y":204}],"type":"area"},{"arc":[{"x":150714,"y":168314},{"x":31,"y":66},{"x":91,"y":12},{"x":107,"y":105},{"x":51,"y":154},{"x":94,"y":67},{"x":-17,"y":38},{"x":25,"y":110},{"x":-26,"y":31},{"x":52,"y":102},{"x":63,"y":12},{"x":-31,"y":82}],"type":"area"},{"arc":[{"x":151787,"y":169537},{"x":41,"y":-14},{"x":47,"y":116},{"x":69,"y":50},{"x":-25,"y":-82},{"x":21,"y":-44},{"x":59,"y":32},{"x":24,"y":-28},{"x":29,"y":28},{"x":32,"y":-39},{"x":22,"y":22},{"x":-27,"y":-38},{"x":-34,"y":-14},{"x":94,"y":-60},{"x":161,"y":74},{"x":59,"y":-86},{"x":52,"y":-23}],"type":"area"},{"arc":[{"x":151379,"y":169656},{"x":-31,"y":-71},{"x":44,"y":-109},{"x":-12,"y":-90}],"type":"area"},{"arc":[{"x":151380,"y":169386},{"x":75,"y":-6},{"x":88,"y":-111},{"x":88,"y":-45},{"x":115,"y":16},{"x":-70,"y":-64}],"type":"area"},{"arc":[{"x":151676,"y":169176},{"x":23,"y":-64},{"x":43,"y":7},{"x":74,"y":82},{"x":74,"y":10},{"x":11,"y":-37},{"x":114,"y":44},{"x":1,"y":52},{"x":45,"y":32},{"x":231,"y":-183},{"x":88,"y":-8},{"x":29,"y":45},{"x":-14,"y":31},{"x":77,"y":40},{"x":41,"y":-48},{"x":4,"y":-87}],"type":"area"},{"arc":[{"x":152517,"y":169092},{"x":98,"y":0}],"type":"admin"},{"arc":[{"x":151676,"y":169176},{"x":-46,"y":-174},{"x":4,"y":-90},{"x":57,"y":-131},{"x":-4,"y":-86},{"x":-45,"y":-51},{"x":-89,"y":-20},{"x":4,"y":-76},{"x":-154,"y":-121},{"x":8,"y":-85},{"x":-83,"y":-42},{"x":33,"y":-93},{"x":-19,"y":-128}],"type":"area"},{"arc":[{"x":151342,"y":168079},{"x":96,"y":6},{"x":103,"y":-50},{"x":57,"y":4},{"x":39,"y":134},{"x":204,"y":220},{"x":73,"y":191},{"x":46,"y":-45},{"x":-21,"y":-52},{"x":74,"y":-43},{"x":121,"y":-287}],"type":"area"},{"arc":[{"x":152134,"y":168157},{"x":62,"y":12},{"x":42,"y":39},{"x":-4,"y":33},{"x":58,"y":6},{"x":49,"y":43},{"x":54,"y":-21},{"x":-35,"y":96},{"x":44,"y":22},{"x":6,"y":41},{"x":-62,"y":32},{"x":31,"y":4},{"x":-5,"y":90},{"x":-58,"y":121},{"x":53,"y":115},{"x":58,"y":20},{"x":88,"y":101},{"x":-94,"y":139},{"x":58,"y":50},{"x":38,"y":-8}],"type":"admin"},{"arc":[{"x":151416,"y":170839},{"x":99,"y":204},{"x":-20,"y":121},{"x":-58,"y":115}],"type":"area"},{"arc":[{"x":151154,"y":169093},{"x":46,"y":-5},{"x":44,"y":29},{"x":-53,"y":68},{"x":6,"y":48},{"x":97,"y":4},{"x":86,"y":149}],"type":"area"},{"arc":[{"x":150882,"y":167960},{"x":200,"y":-96},{"x":44,"y":54}],"type":"area"},{"arc":[{"x":151236,"y":167935},{"x":18,"y":98},{"x":88,"y":46}],"type":"area"},{"arc":[{"x":152804,"y":166967},{"x":-90,"y":42},{"x":-76,"y":-12},{"x":-33,"y":56},{"x":-17,"y":-47},{"x":-98,"y":-13},{"x":-73,"y":82},{"x":-48,"y":104},{"x":1,"y":71},{"x":-46,"y":44},{"x":36,"y":46},{"x":69,"y":-15},{"x":-39,"y":114},{"x":24,"y":114}],"type":"area"},{"arc":[{"x":152414,"y":167553},{"x":-31,"y":126}],"type":"admin"},{"arc":[{"x":152383,"y":167679},{"x":-71,"y":45},{"x":-302,"y":37},{"x":-71,"y":-36},{"x":-96,"y":17},{"x":-41,"y":-32},{"x":-134,"y":25},{"x":-63,"y":-43}],"type":"area"},{"arc":[{"x":152498,"y":166193},{"x":39,"y":275},{"x":49,"y":69},{"x":73,"y":37},{"x":76,"y":3},{"x":127,"y":124}],"type":"area"},{"arc":[{"x":153108,"y":167526},{"x":-51,"y":176},{"x":-28,"y":49},{"x":-56,"y":23}],"type":"area"},{"arc":[{"x":152973,"y":167774},{"x":-56,"y":-5},{"x":1,"y":-25},{"x":39,"y":-13},{"x":-7,"y":-86},{"x":-112,"y":-40},{"x":-27,"y":16},{"x":-55,"y":-84},{"x":-59,"y":20},{"x":-223,"y":-26},{"x":-60,"y":22}],"type":"admin"},{"arc":[{"x":152383,"y":167679},{"x":54,"y":62},{"x":-58,"y":121},{"x":26,"y":53},{"x":-60,"y":-6},{"x":-156,"y":111},{"x":-48,"y":58},{"x":-7,"y":79}],"type":"admin"},{"arc":[{"x":153501,"y":168080},{"x":-42,"y":-6},{"x":-159,"y":84},{"x":-207,"y":-51},{"x":-156,"y":-236},{"x":-1,"y":-54},{"x":37,"y":-43}],"type":"admin"},{"arc":[{"x":154280,"y":167111},{"x":-46,"y":-7},{"x":-39,"y":57},{"x":51,"y":94},{"x":-120,"y":18},{"x":-46,"y":69},{"x":-54,"y":9},{"x":60,"y":69},{"x":-21,"y":99}],"type":"area"},{"arc":[{"x":151969,"y":173343},{"x":-43,"y":10},{"x":-30,"y":-43},{"x":-127,"y":127},{"x":-53,"y":-6},{"x":-115,"y":189},{"x":-4,"y":66},{"x":-169,"y":208},{"x":-45,"y":0},{"x":-47,"y":-66},{"x":-64,"y":-25}],"type":"area"},{"arc":[{"x":152048,"y":174276},{"x":-237,"y":180}],"type":"admin"},{"arc":[{"x":150872,"y":174729},{"x":-190,"y":46},{"x":-197,"y":119}],"type":"admin"},{"arc":[{"x":148034,"y":185261},{"x":-15,"y":27},{"x":56,"y":20},{"x":3,"y":33},{"x":-60,"y":-52},{"x":-5,"y":63},{"x":26,"y":-2},{"x":-70,"y":83},{"x":-17,"y":-11},{"x":23,"y":47},{"x":54,"y":-78},{"x":71,"y":-37},{"x":-67,"y":41},{"x":-43,"y":71},{"x":-130,"y":102},{"x":69,"y":-88},{"x":37,"y":-20},{"x":7,"y":12},{"x":-23,"y":-48},{"x":-68,"y":18},{"x":-1,"y":19},{"x":-12,"y":-17},{"x":19,"y":46},{"x":-35,"y":-65},{"x":17,"y":78},{"x":-23,"y":-79},{"x":-143,"y":36},{"x":-74,"y":-55},{"x":-77,"y":33},{"x":-5,"y":-43},{"x":-46,"y":-22},{"x":-128,"y":32},{"x":33,"y":-50},{"x":-3,"y":-104},{"x":9,"y":54},{"x":30,"y":-48},{"x":0,"y":-30},{"x":-30,"y":19},{"x":34,"y":-49},{"x":-18,"y":-61},{"x":43,"y":71},{"x":39,"y":-30},{"x":-29,"y":-37},{"x":-1,"y":-22},{"x":52,"y":-29},{"x":-53,"y":31},{"x":1,"y":17},{"x":12,"y":-4},{"x":9,"y":15},{"x":33,"y":-17},{"x":-2,"y":-30},{"x":27,"y":29},{"x":55,"y":-16},{"x":-26,"y":-16},{"x":28,"y":5},{"x":24,"y":-58},{"x":-24,"y":2},{"x":24,"y":-8},{"x":-22,"y":-234},{"x":-177,"y":-485}],"type":"coastline"},{"arc":[{"x":147442,"y":184320},{"x":65,"y":-55},{"x":-21,"y":-53},{"x":42,"y":-34},{"x":-22,"y":3},{"x":9,"y":-20},{"x":-25,"y":19},{"x":3,"y":-62},{"x":33,"y":-18},{"x":11,"y":-60},{"x":188,"y":64},{"x":2,"y":42},{"x":36,"y":-18},{"x":7,"y":68},{"x":79,"y":-15},{"x":38,"y":-37},{"x":60,"y":9},{"x":-39,"y":-46},{"x":62,"y":52},{"x":61,"y":5},{"x":7,"y":-19},{"x":-146,"y":-57},{"x":13,"y":-18},{"x":-50,"y":-58},{"x":10,"y":-19},{"x":29,"y":26},{"x":-24,"y":-23},{"x":17,"y":-43},{"x":89,"y":-15},{"x":63,"y":28},{"x":25,"y":-28},{"x":109,"y":42},{"x":50,"y":-52},{"x":-17,"y":-49},{"x":24,"y":-7},{"x":19,"y":-102},{"x":124,"y":-7},{"x":1,"y":-53},{"x":34,"y":-25}],"type":"area"},{"arc":[{"x":148408,"y":183685},{"x":65,"y":49},{"x":54,"y":7},{"x":23,"y":-55},{"x":92,"y":3},{"x":22,"y":-100},{"x":125,"y":26},{"x":116,"y":289}],"type":"admin"},{"arc":[{"x":147118,"y":176077},{"x":11,"y":-54}],"type":"area"},{"arc":[{"x":147129,"y":176023},{"x":96,"y":44}],"type":"coastline"},{"arc":[{"x":147225,"y":176067},{"x":-107,"y":10}],"type":"area"},{"arc":[{"x":148403,"y":176203},{"x":-161,"y":-13},{"x":-45,"y":-37},{"x":-37,"y":3},{"x":-17,"y":36},{"x":-27,"y":-31},{"x":-30,"y":11}],"type":"area"},{"arc":[{"x":148086,"y":176172},{"x":-57,"y":19},{"x":-57,"y":-20},{"x":-58,"y":41},{"x":0,"y":-33},{"x":-33,"y":-19},{"x":30,"y":-99},{"x":-159,"y":-62},{"x":-6,"y":18},{"x":-27,"y":-9},{"x":-51,"y":-89},{"x":42,"y":-46},{"x":-101,"y":-47},{"x":-11,"y":20},{"x":-97,"y":-27},{"x":-13,"y":33},{"x":99,"y":33},{"x":-46,"y":40},{"x":7,"y":58},{"x":-30,"y":52},{"x":-284,"y":37}],"type":"area"},{"arc":[{"x":147234,"y":176072},{"x":-25,"y":-41},{"x":120,"y":-59},{"x":-18,"y":-12},{"x":-128,"y":59},{"x":-56,"y":-35},{"x":-15,"y":-17},{"x":116,"y":-65},{"x":-97,"y":-105},{"x":28,"y":-40},{"x":-77,"y":-30},{"x":45,"y":158},{"x":-44,"y":26},{"x":-38,"y":-179},{"x":-75,"y":-99},{"x":-65,"y":-26}],"type":"coastline"},{"arc":[{"x":146905,"y":175607},{"x":218,"y":-258},{"x":-19,"y":-75}],"type":"area"},{"arc":[{"x":147104,"y":175274},{"x":102,"y":9},{"x":65,"y":209},{"x":176,"y":122},{"x":123,"y":-28},{"x":206,"y":-189},{"x":63,"y":-7},{"x":153,"y":35},{"x":52,"y":-22},{"x":61,"y":-84}],"type":"admin"},{"arc":[{"x":148105,"y":175319},{"x":59,"y":112},{"x":156,"y":51},{"x":-71,"y":177},{"x":-53,"y":-17},{"x":30,"y":102},{"x":-65,"y":8},{"x":-27,"y":-36},{"x":-45,"y":47},{"x":10,"y":41},{"x":-39,"y":24},{"x":42,"y":51},{"x":91,"y":3},{"x":-1,"y":-44},{"x":48,"y":64},{"x":-2,"y":48},{"x":56,"y":-4},{"x":24,"y":-35},{"x":35,"y":21},{"x":19,"y":41},{"x":-25,"y":21},{"x":32,"y":-13},{"x":47,"y":45},{"x":-23,"y":177}],"type":"area"},{"arc":[{"x":147053,"y":176215},{"x":-10,"y":32},{"x":-66,"y":7},{"x":66,"y":-10},{"x":10,"y":-29}],"type":"coastline"},{"arc":[{"x":147101,"y":176163},{"x":17,"y":-86}],"type":"coastline"},{"arc":[{"x":147225,"y":176067},{"x":-15,"y":154},{"x":-46,"y":7},{"x":15,"y":-73},{"x":-34,"y":4},{"x":-14,"y":73},{"x":-44,"y":6},{"x":14,"y":-75}],"type":"coastline"},{"arc":[{"x":148128,"y":176263},{"x":-15,"y":-26},{"x":35,"y":-13},{"x":-20,"y":39}],"type":"area"},{"arc":[{"x":148170,"y":176391},{"x":-61,"y":56},{"x":-40,"y":-31},{"x":-42,"y":17},{"x":-21,"y":-55},{"x":57,"y":-62},{"x":61,"y":-15},{"x":46,"y":90}],"type":"area"},{"arc":[{"x":148532,"y":177378},{"x":-52,"y":-39},{"x":-85,"y":17},{"x":-31,"y":-38},{"x":-13,"y":20},{"x":-5,"y":-16},{"x":-63,"y":10},{"x":-29,"y":47},{"x":-18,"y":-37},{"x":37,"y":-16},{"x":-31,"y":-31},{"x":9,"y":-77},{"x":-90,"y":48},{"x":-14,"y":-31},{"x":-51,"y":-14},{"x":-14,"y":-86},{"x":-35,"y":-16},{"x":-42,"y":-6},{"x":-43,"y":53},{"x":-19,"y":-35},{"x":-41,"y":21},{"x":-171,"y":-49},{"x":-45,"y":91},{"x":-78,"y":-77},{"x":-32,"y":42}],"type":"area"},{"arc":[{"x":147576,"y":177159},{"x":-45,"y":-67},{"x":-66,"y":6},{"x":-6,"y":-27},{"x":-40,"y":52},{"x":-65,"y":-13},{"x":-11,"y":-29},{"x":47,"y":-14},{"x":35,"y":-67},{"x":-66,"y":-38},{"x":19,"y":-60},{"x":42,"y":-6},{"x":2,"y":-77},{"x":-23,"y":-15},{"x":14,"y":-26},{"x":-61,"y":-30},{"x":10,"y":-96},{"x":28,"y":-17},{"x":-22,"y":-40},{"x":43,"y":-52},{"x":-208,"y":-114},{"x":-129,"y":74},{"x":-40,"y":-31}],"type":"area"},{"arc":[{"x":147034,"y":176472},{"x":-23,"y":-166},{"x":97,"y":-13},{"x":10,"y":77},{"x":34,"y":-5},{"x":28,"y":-80},{"x":161,"y":45},{"x":13,"y":-38},{"x":-22,"y":13},{"x":-6,"y":-26},{"x":-16,"y":25},{"x":-74,"y":-28},{"x":27,"y":-159},{"x":-26,"y":-6},{"x":-3,"y":-39}],"type":"coastline"},{"arc":[{"x":148086,"y":176172},{"x":12,"y":65},{"x":35,"y":41},{"x":-65,"y":21},{"x":-32,"y":-24},{"x":24,"y":26},{"x":-62,"y":80},{"x":29,"y":65},{"x":-8,"y":79},{"x":-13,"y":-6},{"x":-54,"y":36},{"x":24,"y":36},{"x":-15,"y":-38},{"x":48,"y":-31},{"x":10,"y":23},{"x":60,"y":-6},{"x":100,"y":110},{"x":39,"y":-54},{"x":21,"y":6},{"x":15,"y":84},{"x":-25,"y":5},{"x":55,"y":61},{"x":-14,"y":-37},{"x":28,"y":-45}],"type":"area"},{"arc":[{"x":148298,"y":176669},{"x":75,"y":98},{"x":-60,"y":97},{"x":121,"y":227},{"x":74,"y":44},{"x":185,"y":22},{"x":37,"y":24},{"x":-101,"y":127},{"x":-97,"y":70}],"type":"area"},{"arc":[{"x":137489,"y":174638},{"x":39,"y":-21},{"x":65,"y":11},{"x":1,"y":23},{"x":13,"y":-32},{"x":52,"y":24},{"x":-4,"y":28},{"x":7,"y":-27},{"x":29,"y":24},{"x":134,"y":-77},{"x":170,"y":-274},{"x":62,"y":-143},{"x":-21,"y":-88},{"x":41,"y":-26},{"x":24,"y":-106},{"x":38,"y":5},{"x":-15,"y":-16},{"x":56,"y":-43},{"x":47,"y":26},{"x":58,"y":-28},{"x":52,"y":25},{"x":-11,"y":37},{"x":-37,"y":7},{"x":23,"y":10},{"x":-20,"y":54},{"x":38,"y":84},{"x":-34,"y":29},{"x":15,"y":85},{"x":-24,"y":-26},{"x":-20,"y":39},{"x":13,"y":111},{"x":36,"y":91},{"x":17,"y":-1},{"x":11,"y":12},{"x":-20,"y":-11},{"x":4,"y":20},{"x":9,"y":-3},{"x":-13,"y":14},{"x":22,"y":35},{"x":-11,"y":26},{"x":27,"y":28},{"x":-29,"y":13},{"x":38,"y":52},{"x":95,"y":37},{"x":25,"y":-44},{"x":14,"y":11},{"x":-21,"y":41},{"x":27,"y":146},{"x":-34,"y":8},{"x":2,"y":27},{"x":-8,"y":-38},{"x":-35,"y":-1},{"x":-1,"y":78},{"x":-13,"y":-11},{"x":25,"y":39},{"x":10,"y":-42},{"x":-7,"y":47},{"x":64,"y":42},{"x":29,"y":-14},{"x":-6,"y":19},{"x":35,"y":8},{"x":5,"y":-17},{"x":41,"y":23},{"x":133,"y":-4},{"x":107,"y":-32},{"x":61,"y":-41},{"x":-21,"y":-53},{"x":34,"y":35},{"x":1,"y":-52},{"x":-32,"y":5},{"x":72,"y":-49},{"x":47,"y":-71}],"type":"coastline"},{"arc":[{"x":139020,"y":174726},{"x":-2,"y":209},{"x":29,"y":85},{"x":47,"y":6},{"x":23,"y":73},{"x":58,"y":20},{"x":58,"y":87},{"x":35,"y":12},{"x":15,"y":-20},{"x":42,"y":47},{"x":-27,"y":16},{"x":-121,"y":-42},{"x":-49,"y":28},{"x":-49,"y":-17},{"x":-21,"y":22},{"x":-81,"y":4},{"x":-82,"y":-29},{"x":18,"y":94},{"x":-51,"y":24},{"x":8,"y":-82},{"x":-143,"y":8},{"x":-42,"y":-32},{"x":39,"y":74},{"x":12,"y":146},{"x":105,"y":9},{"x":-10,"y":158},{"x":101,"y":94},{"x":10,"y":44},{"x":-36,"y":35},{"x":-82,"y":-38},{"x":-107,"y":57},{"x":-24,"y":-16},{"x":-39,"y":55},{"x":-123,"y":-108},{"x":-122,"y":-30},{"x":-57,"y":-196},{"x":-164,"y":-62},{"x":-109,"y":-12},{"x":-50,"y":14},{"x":15,"y":37},{"x":-29,"y":4},{"x":-63,"y":-25},{"x":-63,"y":198},{"x":-28,"y":19},{"x":-173,"y":-86},{"x":22,"y":-164},{"x":-31,"y":-12},{"x":14,"y":-41},{"x":-43,"y":-18},{"x":19,"y":-33},{"x":51,"y":35},{"x":73,"y":-23},{"x":-145,"y":-122},{"x":12,"y":-35},{"x":-57,"y":-133},{"x":39,"y":-75},{"x":-110,"y":-60},{"x":-51,"y":-198},{"x":25,"y":-48},{"x":-17,"y":-45}],"type":"area"},{"arc":[{"x":143511,"y":175505},{"x":-22,"y":49},{"x":-16,"y":-9},{"x":38,"y":-40}],"type":"coastline"},{"arc":[{"x":144207,"y":175921},{"x":-56,"y":15},{"x":-70,"y":-45},{"x":-52,"y":8},{"x":-85,"y":-84},{"x":-5,"y":42},{"x":-52,"y":9},{"x":-80,"y":138},{"x":36,"y":15},{"x":19,"y":75},{"x":37,"y":7},{"x":24,"y":-23},{"x":5,"y":43},{"x":-39,"y":76},{"x":-93,"y":-42},{"x":-28,"y":42},{"x":21,"y":86},{"x":-27,"y":115},{"x":-24,"y":1},{"x":-10,"y":175},{"x":-135,"y":-54},{"x":40,"y":-67},{"x":-44,"y":-82},{"x":-48,"y":33},{"x":-43,"y":94},{"x":-46,"y":-10},{"x":-8,"y":-29},{"x":-128,"y":14},{"x":-51,"y":-40},{"x":-101,"y":52},{"x":-90,"y":-27},{"x":-32,"y":-57},{"x":-18,"y":33},{"x":29,"y":22},{"x":-24,"y":12},{"x":-23,"y":-22},{"x":-8,"y":31},{"x":-36,"y":10},{"x":30,"y":27},{"x":-33,"y":72},{"x":90,"y":72},{"x":25,"y":-8},{"x":2,"y":59},{"x":90,"y":-13},{"x":15,"y":95},{"x":128,"y":27},{"x":-2,"y":72},{"x":120,"y":54},{"x":-30,"y":61},{"x":35,"y":18},{"x":-29,"y":55},{"x":52,"y":49},{"x":34,"y":106},{"x":-8,"y":78},{"x":-30,"y":21},{"x":28,"y":62},{"x":43,"y":11}],"type":"area"},{"arc":[{"x":143522,"y":177405},{"x":-2,"y":12},{"x":-89,"y":-35},{"x":-74,"y":101},{"x":11,"y":46},{"x":41,"y":16},{"x":76,"y":-36},{"x":-13,"y":38},{"x":-131,"y":49},{"x":-120,"y":103},{"x":-30,"y":-25},{"x":-41,"y":49},{"x":-94,"y":12},{"x":-56,"y":58},{"x":-48,"y":-12},{"x":-71,"y":-73},{"x":-77,"y":-20},{"x":-86,"y":-114},{"x":-68,"y":7}],"type":"area"},{"arc":[{"x":142650,"y":177581},{"x":99,"y":-59},{"x":20,"y":-53},{"x":-20,"y":-12},{"x":49,"y":-73},{"x":37,"y":19},{"x":58,"y":-75},{"x":108,"y":-7},{"x":-13,"y":-46},{"x":-22,"y":19},{"x":34,"y":-39},{"x":-16,"y":-62},{"x":68,"y":-111},{"x":43,"y":-23},{"x":16,"y":-57},{"x":-45,"y":-15},{"x":-17,"y":-53},{"x":-33,"y":16},{"x":-8,"y":-48},{"x":-70,"y":19},{"x":-30,"y":-28},{"x":-24,"y":10},{"x":7,"y":-27},{"x":-29,"y":8},{"x":-70,"y":-133},{"x":-5,"y":-78},{"x":-76,"y":-2},{"x":-71,"y":-50},{"x":-62,"y":-9},{"x":31,"y":-47},{"x":217,"y":-100},{"x":-73,"y":2},{"x":-21,"y":-36},{"x":-128,"y":-9},{"x":53,"y":-73},{"x":-27,"y":-25},{"x":28,"y":-34},{"x":-59,"y":-35},{"x":40,"y":-73},{"x":53,"y":-17},{"x":57,"y":-68},{"x":58,"y":-14},{"x":-23,"y":-130},{"x":108,"y":-150},{"x":2,"y":-57},{"x":-25,"y":-18},{"x":26,"y":-2},{"x":10,"y":-32},{"x":-31,"y":6},{"x":46,"y":-67},{"x":-20,"y":-36},{"x":19,"y":-57},{"x":-33,"y":-30},{"x":7,"y":-33},{"x":-40,"y":-11},{"x":27,"y":-59},{"x":123,"y":-16},{"x":182,"y":-102}],"type":"area"},{"arc":[{"x":143185,"y":175289},{"x":0,"y":40},{"x":-54,"y":28},{"x":15,"y":39},{"x":159,"y":-104},{"x":26,"y":51},{"x":-39,"y":20},{"x":28,"y":54},{"x":-50,"y":26},{"x":28,"y":52},{"x":58,"y":-30},{"x":-28,"y":-56},{"x":29,"y":-16},{"x":72,"y":139},{"x":-17,"y":34},{"x":43,"y":-16},{"x":17,"y":23},{"x":-35,"y":4},{"x":4,"y":27},{"x":51,"y":-1},{"x":19,"y":-35},{"x":-2,"y":38},{"x":32,"y":2},{"x":-9,"y":-41},{"x":32,"y":-11},{"x":-24,"y":-67},{"x":-26,"y":11},{"x":39,"y":-26},{"x":113,"y":-33},{"x":15,"y":18},{"x":3,"y":-34},{"x":76,"y":4},{"x":-5,"y":-28},{"x":138,"y":0},{"x":-36,"y":62},{"x":29,"y":-46},{"x":30,"y":0},{"x":-1,"y":-31},{"x":61,"y":3},{"x":15,"y":48},{"x":45,"y":-7},{"x":-21,"y":19},{"x":42,"y":7},{"x":-14,"y":-22},{"x":20,"y":21},{"x":-15,"y":-26},{"x":99,"y":173},{"x":48,"y":7},{"x":-44,"y":0},{"x":19,"y":36},{"x":1,"y":-21},{"x":31,"y":-12},{"x":-24,"y":11},{"x":11,"y":45},{"x":-22,"y":-16},{"x":29,"y":131},{"x":29,"y":17},{"x":10,"y":27},{"x":-22,"y":-26},{"x":-2,"y":37},{"x":29,"y":-7},{"x":-33,"y":90}],"type":"coastline"},{"arc":[{"x":149176,"y":175847},{"x":-32,"y":9},{"x":-46,"y":79},{"x":-145,"y":26},{"x":-101,"y":62},{"x":-16,"y":92},{"x":-67,"y":-1},{"x":-56,"y":119},{"x":110,"y":83},{"x":-14,"y":52},{"x":-31,"y":-32},{"x":-23,"y":28},{"x":35,"y":66},{"x":-48,"y":2}],"type":"area"},{"arc":[{"x":148742,"y":176432},{"x":-35,"y":-39},{"x":-14,"y":52},{"x":-55,"y":21},{"x":-59,"y":-46},{"x":38,"y":-82},{"x":-54,"y":-122},{"x":18,"y":-61},{"x":-20,"y":-29},{"x":-103,"y":2},{"x":2,"y":40},{"x":23,"y":5},{"x":-50,"y":117},{"x":-36,"y":-7},{"x":6,"y":-80}],"type":"area"},{"arc":[{"x":148105,"y":175319},{"x":6,"y":-4}],"type":"admin"},{"arc":[{"x":148111,"y":175315},{"x":100,"y":-70},{"x":119,"y":-40},{"x":61,"y":24},{"x":74,"y":125},{"x":51,"y":0}],"type":"admin"},{"arc":[{"x":149116,"y":175300},{"x":-34,"y":122},{"x":46,"y":-30},{"x":27,"y":88},{"x":43,"y":6},{"x":13,"y":88},{"x":50,"y":32},{"x":56,"y":1},{"x":47,"y":104},{"x":-191,"y":94},{"x":3,"y":42}],"type":"area"},{"arc":[{"x":150453,"y":175955},{"x":-59,"y":-30},{"x":-29,"y":-65},{"x":-21,"y":11},{"x":3,"y":-27},{"x":15,"y":10},{"x":-39,"y":-71},{"x":-94,"y":-66},{"x":-16,"y":-90}],"type":"area"},{"arc":[{"x":150213,"y":175627},{"x":37,"y":-74},{"x":-59,"y":-6},{"x":41,"y":-100},{"x":-45,"y":-22},{"x":-24,"y":-268}],"type":"area"},{"arc":[{"x":144628,"y":180395},{"x":-87,"y":-39},{"x":6,"y":-55},{"x":23,"y":10},{"x":42,"y":-32},{"x":3,"y":-101},{"x":-102,"y":7},{"x":-49,"y":-52},{"x":-11,"y":-58},{"x":-77,"y":-4},{"x":-30,"y":-79},{"x":-115,"y":-11},{"x":13,"y":35},{"x":-24,"y":6},{"x":-12,"y":-61},{"x":-76,"y":12},{"x":-33,"y":78}],"type":"admin"},{"arc":[{"x":144099,"y":180051},{"x":-70,"y":-12},{"x":6,"y":-52},{"x":-34,"y":-5},{"x":37,"y":-21},{"x":-16,"y":-32},{"x":-26,"y":35},{"x":-26,"y":-11},{"x":33,"y":-24},{"x":-25,"y":-20},{"x":13,"y":-32},{"x":-37,"y":58},{"x":-47,"y":-24},{"x":4,"y":-109},{"x":-139,"y":16},{"x":-11,"y":-26}],"type":"admin"},{"arc":[{"x":143761,"y":179792},{"x":2,"y":-32},{"x":-30,"y":-16}],"type":"admin"},{"arc":[{"x":143733,"y":179744},{"x":-19,"y":-26},{"x":33,"y":-15},{"x":-44,"y":-23},{"x":-18,"y":45},{"x":-113,"y":44}],"type":"admin"},{"arc":[{"x":143572,"y":179769},{"x":-22,"y":-18},{"x":14,"y":-71},{"x":-116,"y":-44}],"type":"admin"},{"arc":[{"x":143448,"y":179636},{"x":-35,"y":-105},{"x":27,"y":-134},{"x":-17,"y":-53},{"x":33,"y":-28},{"x":27,"y":12},{"x":59,"y":-22},{"x":42,"y":-1},{"x":44,"y":41},{"x":88,"y":-22},{"x":4,"y":-51},{"x":-52,"y":-37},{"x":-37,"y":-88},{"x":30,"y":-64},{"x":31,"y":20},{"x":43,"y":-15},{"x":-27,"y":-75},{"x":33,"y":1},{"x":88,"y":140},{"x":85,"y":-2},{"x":49,"y":39},{"x":27,"y":-54}],"type":"admin"},{"arc":[{"x":143990,"y":179138},{"x":100,"y":-21},{"x":78,"y":-93},{"x":29,"y":12},{"x":126,"y":-42},{"x":63,"y":26},{"x":39,"y":-41},{"x":27,"y":46},{"x":44,"y":-2},{"x":17,"y":43},{"x":34,"y":9},{"x":82,"y":-47},{"x":64,"y":11},{"x":14,"y":-18}],"type":"admin"},{"arc":[{"x":144707,"y":179021},{"x":55,"y":-10},{"x":17,"y":41},{"x":40,"y":23},{"x":16,"y":-26},{"x":31,"y":53}],"type":"area"},{"arc":[{"x":144857,"y":179265},{"x":15,"y":56},{"x":58,"y":48},{"x":-38,"y":114},{"x":82,"y":236},{"x":-47,"y":32},{"x":27,"y":38},{"x":-14,"y":59},{"x":-33,"y":12},{"x":-41,"y":-68},{"x":-27,"y":30},{"x":-23,"y":102},{"x":-70,"y":112},{"x":150,"y":57},{"x":-40,"y":40},{"x":28,"y":57},{"x":-18,"y":121},{"x":-86,"y":59},{"x":-96,"y":-9},{"x":-56,"y":34}],"type":"area"},{"arc":[{"x":149593,"y":181006},{"x":-49,"y":62},{"x":53,"y":18},{"x":28,"y":44},{"x":-96,"y":82},{"x":-154,"y":51},{"x":3,"y":74},{"x":-93,"y":-4},{"x":36,"y":-42},{"x":-14,"y":-42},{"x":-39,"y":-15},{"x":-53,"y":17},{"x":-4,"y":49},{"x":-38,"y":6},{"x":-106,"y":-139},{"x":-103,"y":-11},{"x":54,"y":113},{"x":-24,"y":21},{"x":-118,"y":-164},{"x":-23,"y":-16},{"x":-29,"y":15}],"type":"area"},{"arc":[{"x":148824,"y":181125},{"x":-47,"y":-77},{"x":-199,"y":-20},{"x":-18,"y":-33},{"x":27,"y":-32},{"x":-29,"y":-33},{"x":-67,"y":32},{"x":-72,"y":-183},{"x":79,"y":-7},{"x":51,"y":-39},{"x":15,"y":-68},{"x":-35,"y":-53},{"x":-113,"y":6}],"type":"admin"},{"arc":[{"x":148416,"y":180618},{"x":-32,"y":-70},{"x":-56,"y":-28},{"x":8,"y":-43},{"x":-22,"y":-1},{"x":-8,"y":63},{"x":-23,"y":-25},{"x":18,"y":28},{"x":-26,"y":45},{"x":-27,"y":-33},{"x":-67,"y":-16},{"x":19,"y":-63},{"x":-56,"y":133},{"x":-102,"y":-15},{"x":-45,"y":28},{"x":-5,"y":-52},{"x":26,"y":-18},{"x":-35,"y":-1},{"x":-4,"y":-50},{"x":34,"y":-33},{"x":-25,"y":-40},{"x":28,"y":-6},{"x":-31,"y":-24},{"x":-3,"y":38},{"x":-53,"y":-10},{"x":-92,"y":44},{"x":-16,"y":52},{"x":2,"y":-28},{"x":-59,"y":-39},{"x":71,"y":-80},{"x":114,"y":-27},{"x":19,"y":-90},{"x":-104,"y":-1}],"type":"admin"},{"arc":[{"x":147864,"y":180256},{"x":11,"y":-54},{"x":95,"y":3},{"x":-1,"y":25},{"x":23,"y":-4},{"x":35,"y":-71},{"x":54,"y":92},{"x":-35,"y":-109},{"x":89,"y":-23},{"x":113,"y":-119},{"x":56,"y":-121},{"x":65,"y":-11},{"x":77,"y":-51},{"x":-32,"y":-73},{"x":-16,"y":16},{"x":-74,"y":-19},{"x":-82,"y":-54},{"x":-70,"y":16},{"x":-99,"y":-112}],"type":"area"},{"arc":[{"x":148073,"y":179587},{"x":-1,"y":-28},{"x":65,"y":-21},{"x":59,"y":-66},{"x":0,"y":-35},{"x":-74,"y":26},{"x":-2,"y":-76},{"x":76,"y":-46},{"x":-36,"y":-57},{"x":2,"y":-109}],"type":"admin"},{"arc":[{"x":148162,"y":179175},{"x":125,"y":-58},{"x":168,"y":20},{"x":119,"y":-107},{"x":164,"y":24}],"type":"area"},{"arc":[{"x":148738,"y":179054},{"x":141,"y":58},{"x":26,"y":-17},{"x":76,"y":112},{"x":48,"y":16},{"x":-26,"y":73},{"x":-41,"y":28},{"x":134,"y":86},{"x":45,"y":-36},{"x":183,"y":-30},{"x":-17,"y":-41},{"x":28,"y":8},{"x":26,"y":-34},{"x":31,"y":72},{"x":91,"y":21},{"x":27,"y":-15},{"x":15,"y":38},{"x":113,"y":51}],"type":"admin"},{"arc":[{"x":150030,"y":180338},{"x":-96,"y":-2},{"x":-67,"y":84},{"x":-57,"y":13},{"x":15,"y":66},{"x":-174,"y":100},{"x":-31,"y":-32},{"x":-34,"y":27},{"x":-58,"y":-32},{"x":-56,"y":5},{"x":23,"y":-10},{"x":-32,"y":-29},{"x":-28,"y":44},{"x":7,"y":-59},{"x":-40,"y":16},{"x":9,"y":91},{"x":163,"y":155},{"x":-2,"y":46},{"x":-79,"y":5},{"x":47,"y":49},{"x":-3,"y":110},{"x":56,"y":21}],"type":"admin"},{"arc":[{"x":147558,"y":179316},{"x":-9,"y":-28},{"x":34,"y":25},{"x":-25,"y":3}],"type":"admin"},{"arc":[{"x":147971,"y":179129},{"x":-107,"y":33},{"x":-37,"y":-43},{"x":15,"y":-37},{"x":-33,"y":-3},{"x":-52,"y":37},{"x":-6,"y":-85},{"x":32,"y":-45},{"x":-64,"y":72},{"x":-73,"y":11},{"x":6,"y":68},{"x":-107,"y":46},{"x":-63,"y":-1},{"x":-16,"y":34},{"x":30,"y":61},{"x":71,"y":50},{"x":-66,"y":65},{"x":45,"y":74}],"type":"admin"},{"arc":[{"x":147546,"y":179466},{"x":-28,"y":-27},{"x":-29,"y":20},{"x":29,"y":43},{"x":-38,"y":-32},{"x":-15,"y":98},{"x":6,"y":-81},{"x":-51,"y":17},{"x":52,"y":-31},{"x":-5,"y":-40},{"x":-116,"y":-11},{"x":-28,"y":-77},{"x":-44,"y":37},{"x":-212,"y":25},{"x":139,"y":-31},{"x":-2,"y":-29},{"x":35,"y":-13},{"x":-28,"y":-29},{"x":-89,"y":54},{"x":11,"y":-24},{"x":-81,"y":-16},{"x":112,"y":12},{"x":79,"y":-61},{"x":-65,"y":-49},{"x":-53,"y":34},{"x":-82,"y":-46},{"x":13,"y":-73},{"x":-44,"y":-28},{"x":-84,"y":127},{"x":7,"y":20},{"x":-43,"y":44},{"x":25,"y":34},{"x":-29,"y":-24},{"x":-64,"y":52},{"x":80,"y":-81},{"x":-12,"y":-11},{"x":68,"y":-96},{"x":-65,"y":-4},{"x":60,"y":-2},{"x":24,"y":-43},{"x":-104,"y":-38},{"x":-40,"y":-62},{"x":-52,"y":0},{"x":1,"y":72},{"x":-45,"y":-37},{"x":37,"y":37},{"x":-9,"y":28},{"x":-38,"y":-29},{"x":-43,"y":18},{"x":-15,"y":-33},{"x":-8,"y":24},{"x":-137,"y":13}],"type":"area"},{"arc":[{"x":146894,"y":178658},{"x":71,"y":-7},{"x":40,"y":22},{"x":103,"y":-71},{"x":65,"y":25},{"x":18,"y":-50},{"x":97,"y":-35},{"x":152,"y":65},{"x":112,"y":-16},{"x":-61,"y":-136},{"x":32,"y":-15},{"x":-117,"y":-137},{"x":-1,"y":-21},{"x":58,"y":-26},{"x":-66,"y":-59},{"x":27,"y":5},{"x":30,"y":-39},{"x":-97,"y":-46},{"x":60,"y":20},{"x":-6,"y":-43},{"x":69,"y":-103},{"x":-57,"y":-6},{"x":0,"y":18},{"x":-44,"y":-33},{"x":-19,"y":49},{"x":-27,"y":11}],"type":"area"},{"arc":[{"x":147438,"y":177866},{"x":23,"y":30},{"x":-3,"y":-26},{"x":47,"y":26},{"x":108,"y":-86},{"x":54,"y":16},{"x":11,"y":-68},{"x":65,"y":138},{"x":46,"y":26},{"x":143,"y":-38},{"x":83,"y":11},{"x":88,"y":89},{"x":21,"y":-123},{"x":29,"y":22},{"x":10,"y":74},{"x":63,"y":66}],"type":"area"},{"arc":[{"x":148226,"y":178023},{"x":-132,"y":173},{"x":-47,"y":213},{"x":224,"y":148},{"x":36,"y":57},{"x":-327,"y":462},{"x":-9,"y":53}],"type":"area"},{"arc":[{"x":145795,"y":180950},{"x":-90,"y":-24},{"x":-49,"y":14},{"x":13,"y":-57},{"x":-38,"y":-28},{"x":11,"y":29},{"x":-53,"y":-14},{"x":13,"y":-63},{"x":-22,"y":-28},{"x":-38,"y":37},{"x":-55,"y":-21},{"x":-6,"y":18},{"x":-16,"y":-33},{"x":-35,"y":28},{"x":-149,"y":-64},{"x":39,"y":-69},{"x":-19,"y":-83},{"x":49,"y":-42},{"x":23,"y":21},{"x":18,"y":-16},{"x":-94,"y":-17},{"x":39,"y":-9},{"x":-32,"y":-10},{"x":0,"y":-51},{"x":-28,"y":-2},{"x":-102,"y":229},{"x":-119,"y":-65}],"type":"admin"},{"arc":[{"x":145055,"y":180630},{"x":-44,"y":-36},{"x":51,"y":-102},{"x":-122,"y":-59},{"x":5,"y":-54},{"x":140,"y":24},{"x":46,"y":-222},{"x":20,"y":-18},{"x":25,"y":14},{"x":22,"y":-36},{"x":126,"y":44},{"x":21,"y":-85},{"x":56,"y":12},{"x":47,"y":-68},{"x":-93,"y":-42},{"x":43,"y":-56},{"x":-19,"y":-28},{"x":62,"y":6},{"x":68,"y":-63},{"x":26,"y":8},{"x":33,"y":-64},{"x":27,"y":-5},{"x":30,"y":34},{"x":33,"y":-9},{"x":-8,"y":-95},{"x":35,"y":-24},{"x":-58,"y":-66},{"x":-8,"y":-51},{"x":86,"y":-95}],"type":"area"},{"arc":[{"x":145861,"y":179420},{"x":-3,"y":56},{"x":165,"y":251},{"x":7,"y":226},{"x":53,"y":-24},{"x":-28,"y":-47},{"x":42,"y":-27},{"x":-21,"y":-29},{"x":24,"y":8},{"x":8,"y":-34},{"x":44,"y":-17},{"x":64,"y":9},{"x":-8,"y":-109},{"x":-77,"y":-68},{"x":93,"y":58},{"x":-2,"y":100},{"x":33,"y":17},{"x":27,"y":76},{"x":13,"y":-49}],"type":"area"},{"arc":[{"x":146295,"y":179817},{"x":19,"y":12},{"x":3,"y":-26}],"type":"area"},{"arc":[{"x":146317,"y":179803},{"x":-61,"y":-97},{"x":27,"y":-19},{"x":22,"y":26},{"x":50,"y":-36},{"x":-26,"y":-28},{"x":18,"y":16},{"x":28,"y":-20},{"x":50,"y":73},{"x":91,"y":-84},{"x":79,"y":91},{"x":-61,"y":94},{"x":68,"y":37}],"type":"area"},{"arc":[{"x":146602,"y":179856},{"x":-88,"y":63},{"x":-8,"y":-28},{"x":-17,"y":28},{"x":-17,"y":-26},{"x":-15,"y":54},{"x":-7,"y":-24},{"x":-27,"y":18},{"x":-3,"y":40},{"x":-56,"y":-108},{"x":-12,"y":33},{"x":-25,"y":-47},{"x":-41,"y":11},{"x":-6,"y":71},{"x":-24,"y":7},{"x":28,"y":5},{"x":-32,"y":22},{"x":57,"y":28},{"x":-36,"y":41},{"x":16,"y":25},{"x":48,"y":11},{"x":-113,"y":106},{"x":20,"y":71},{"x":46,"y":28},{"x":-49,"y":44},{"x":19,"y":82},{"x":-45,"y":43},{"x":-42,"y":-24},{"x":-6,"y":20},{"x":-7,"y":-21},{"x":-54,"y":4},{"x":-91,"y":112},{"x":52,"y":43},{"x":-27,"y":42},{"x":57,"y":50},{"x":-8,"y":24},{"x":-33,"y":-14},{"x":-13,"y":47},{"x":65,"y":55},{"x":31,"y":-5},{"x":22,"y":44},{"x":-366,"y":119}],"type":"area"},{"arc":[{"x":146395,"y":179827},{"x":-32,"y":-42},{"x":-18,"y":29},{"x":22,"y":33},{"x":28,"y":-20}],"type":"area"},{"arc":[{"x":146351,"y":179848},{"x":-22,"y":-24},{"x":-37,"y":27},{"x":23,"y":-7},{"x":26,"y":24},{"x":10,"y":-20}],"type":"area"},{"arc":[{"x":145373,"y":180416},{"x":-58,"y":46},{"x":24,"y":24},{"x":52,"y":-49},{"x":-18,"y":-21}],"type":"admin"},{"arc":[{"x":147442,"y":184320},{"x":-58,"y":-109},{"x":-12,"y":-119},{"x":-58,"y":-93},{"x":-47,"y":-15},{"x":81,"y":24},{"x":18,"y":64},{"x":46,"y":-18},{"x":-36,"y":11},{"x":3,"y":-53},{"x":-15,"y":-1},{"x":5,"y":-15},{"x":-14,"y":-1},{"x":1,"y":-17},{"x":-24,"y":8},{"x":51,"y":-14},{"x":2,"y":-36},{"x":83,"y":-66},{"x":1,"y":-251},{"x":-123,"y":-335},{"x":-223,"y":-370}],"type":"coastline"},{"arc":[{"x":147123,"y":182914},{"x":71,"y":-35},{"x":-37,"y":-98},{"x":81,"y":-28},{"x":96,"y":13},{"x":37,"y":-80},{"x":72,"y":-6},{"x":40,"y":44},{"x":96,"y":-23},{"x":-11,"y":-37},{"x":45,"y":-13},{"x":-49,"y":-48},{"x":49,"y":-35},{"x":-35,"y":-100},{"x":53,"y":-34},{"x":66,"y":124},{"x":-15,"y":88},{"x":177,"y":-3},{"x":36,"y":8},{"x":6,"y":53},{"x":43,"y":-4},{"x":48,"y":-113},{"x":-60,"y":-24},{"x":38,"y":-69},{"x":-43,"y":-16},{"x":30,"y":-65},{"x":-33,"y":-99},{"x":69,"y":-23},{"x":70,"y":74},{"x":104,"y":-65}],"type":"area"},{"arc":[{"x":148167,"y":182300},{"x":139,"y":65},{"x":17,"y":26},{"x":-28,"y":21},{"x":24,"y":0},{"x":79,"y":139},{"x":105,"y":68},{"x":-95,"y":33},{"x":-8,"y":28},{"x":103,"y":71},{"x":-6,"y":89},{"x":90,"y":94},{"x":67,"y":-24}],"type":"area"},{"arc":[{"x":148654,"y":182910},{"x":6,"y":69},{"x":-74,"y":34},{"x":-32,"y":44},{"x":28,"y":79},{"x":-33,"y":63},{"x":56,"y":-7},{"x":20,"y":22},{"x":-208,"y":82},{"x":-125,"y":93},{"x":96,"y":31},{"x":64,"y":97},{"x":42,"y":-19},{"x":-23,"y":16},{"x":47,"y":45},{"x":-20,"y":45},{"x":-90,"y":81}],"type":"admin"},{"arc":[{"x":148806,"y":183227},{"x":-59,"y":11},{"x":-58,"y":-57},{"x":17,"y":-45},{"x":32,"y":72},{"x":25,"y":-18},{"x":43,"y":37}],"type":"admin"},{"arc":[{"x":146868,"y":176655},{"x":64,"y":-61},{"x":17,"y":-59},{"x":-32,"y":-33},{"x":-24,"y":-180},{"x":71,"y":-9},{"x":-4,"y":170},{"x":74,"y":-11}],"type":"coastline"},{"arc":[{"x":147576,"y":177159},{"x":-58,"y":173},{"x":-37,"y":-82},{"x":-53,"y":3},{"x":-28,"y":42}],"type":"area"},{"arc":[{"x":150007,"y":176774},{"x":-154,"y":-114},{"x":96,"y":-40},{"x":-37,"y":-15},{"x":-8,"y":-36},{"x":-26,"y":2},{"x":7,"y":53},{"x":-18,"y":-48},{"x":-60,"y":-23},{"x":9,"y":-74},{"x":-56,"y":-51},{"x":5,"y":-29},{"x":-30,"y":10},{"x":24,"y":-61},{"x":-22,"y":-13},{"x":-32,"y":58},{"x":-49,"y":-37},{"x":-67,"y":29},{"x":-72,"y":153},{"x":-13,"y":183},{"x":-55,"y":65},{"x":37,"y":106},{"x":-103,"y":151},{"x":32,"y":95},{"x":20,"y":-13},{"x":-46,"y":357},{"x":-49,"y":122}],"type":"area"},{"arc":[{"x":149340,"y":177604},{"x":-174,"y":-22},{"x":-10,"y":-68},{"x":-26,"y":-37},{"x":-39,"y":4},{"x":-27,"y":-68}],"type":"area"},{"arc":[{"x":149064,"y":177413},{"x":79,"y":-69},{"x":-21,"y":-99},{"x":64,"y":-212},{"x":-38,"y":-60},{"x":-206,"y":-164},{"x":-221,"y":-48},{"x":-196,"y":-113}],"type":"area"},{"arc":[{"x":148525,"y":176648},{"x":-27,"y":-21},{"x":96,"y":29},{"x":41,"y":51},{"x":86,"y":38},{"x":-45,"y":-117},{"x":16,"y":30},{"x":82,"y":-126},{"x":10,"y":-60},{"x":-42,"y":-40}],"type":"area"},{"arc":[{"x":149176,"y":175847},{"x":-1,"y":30},{"x":27,"y":5},{"x":-34,"y":70},{"x":39,"y":23},{"x":-42,"y":-10},{"x":12,"y":48},{"x":87,"y":-57},{"x":121,"y":5},{"x":51,"y":-49},{"x":-41,"y":-43},{"x":-14,"y":-94},{"x":29,"y":-3},{"x":16,"y":43},{"x":26,"y":-2},{"x":22,"y":111},{"x":75,"y":-63},{"x":5,"y":-128},{"x":-52,"y":-17},{"x":43,"y":-38},{"x":47,"y":25},{"x":27,"y":56},{"x":-26,"y":21},{"x":23,"y":48},{"x":-26,"y":15},{"x":71,"y":43},{"x":-2,"y":53},{"x":13,"y":-37},{"x":-28,"y":-58},{"x":163,"y":2},{"x":24,"y":-97},{"x":17,"y":41},{"x":161,"y":-64},{"x":-22,"y":-108},{"x":-115,"y":102},{"x":-83,"y":-11},{"x":43,"y":-69},{"x":59,"y":2},{"x":32,"y":-70},{"x":55,"y":-15},{"x":18,"y":62},{"x":203,"y":25},{"x":14,"y":-17}],"type":"area"},{"arc":[{"x":141327,"y":179739},{"x":-66,"y":-96},{"x":-74,"y":-8},{"x":-46,"y":23},{"x":6,"y":-58},{"x":-52,"y":-10},{"x":-76,"y":19},{"x":-10,"y":59},{"x":-54,"y":36},{"x":-43,"y":-11},{"x":-96,"y":37},{"x":15,"y":139},{"x":27,"y":17},{"x":-18,"y":152}],"type":"admin"},{"arc":[{"x":140840,"y":180038},{"x":-155,"y":-145},{"x":-95,"y":0},{"x":-10,"y":-29},{"x":-30,"y":-3},{"x":19,"y":24},{"x":-67,"y":-57},{"x":-37,"y":15},{"x":11,"y":-16},{"x":-106,"y":-4},{"x":11,"y":-43},{"x":-33,"y":-32},{"x":18,"y":-36},{"x":-50,"y":-53},{"x":91,"y":26},{"x":21,"y":-32},{"x":0,"y":39},{"x":46,"y":-9},{"x":15,"y":-13},{"x":-2,"y":-14},{"x":-50,"y":5},{"x":59,"y":-4},{"x":26,"y":-123},{"x":-69,"y":-31},{"x":-6,"y":-53},{"x":-40,"y":21},{"x":-27,"y":-24},{"x":-21,"y":36},{"x":-12,"y":-62},{"x":-36,"y":-10},{"x":2,"y":-78},{"x":-32,"y":4},{"x":-18,"y":-39},{"x":21,"y":-14},{"x":28,"y":30},{"x":36,"y":-27},{"x":9,"y":-35},{"x":-48,"y":-23},{"x":24,"y":-15},{"x":-28,"y":-46},{"x":42,"y":3},{"x":10,"y":-53},{"x":-44,"y":-11},{"x":-6,"y":-91},{"x":-45,"y":-8},{"x":-25,"y":32},{"x":-84,"y":-165},{"x":-44,"y":34},{"x":-21,"y":-13},{"x":-28,"y":-254}],"type":"coastline"},{"arc":[{"x":140060,"y":178642},{"x":35,"y":-10},{"x":49,"y":29},{"x":66,"y":-19},{"x":89,"y":52},{"x":20,"y":-65},{"x":80,"y":60},{"x":68,"y":-37},{"x":48,"y":5},{"x":46,"y":-17},{"x":30,"y":-53},{"x":68,"y":13},{"x":107,"y":-58},{"x":-1,"y":-147}],"type":"area"},{"arc":[{"x":140765,"y":178395},{"x":69,"y":8},{"x":17,"y":92},{"x":83,"y":34},{"x":6,"y":52},{"x":-55,"y":70},{"x":44,"y":37},{"x":-8,"y":40},{"x":53,"y":17},{"x":9,"y":33},{"x":-80,"y":63},{"x":-17,"y":71},{"x":145,"y":57},{"x":9,"y":25},{"x":163,"y":-19},{"x":117,"y":17},{"x":29,"y":49},{"x":62,"y":2},{"x":40,"y":98},{"x":42,"y":-11},{"x":3,"y":-34},{"x":65,"y":-41},{"x":25,"y":46},{"x":-9,"y":149},{"x":65,"y":36},{"x":-1,"y":39},{"x":38,"y":33}],"type":"admin"},{"arc":[{"x":141679,"y":179358},{"x":26,"y":60},{"x":-90,"y":35},{"x":31,"y":12},{"x":-19,"y":50},{"x":-57,"y":9},{"x":-45,"y":-30},{"x":-59,"y":129},{"x":-33,"y":5},{"x":-106,"y":111}],"type":"area"},{"arc":[{"x":144707,"y":179021},{"x":11,"y":-90},{"x":-29,"y":-34},{"x":63,"y":-128},{"x":18,"y":-130},{"x":-27,"y":-55},{"x":-57,"y":17},{"x":-29,"y":-34},{"x":11,"y":-32},{"x":-59,"y":-2},{"x":-1,"y":-35},{"x":-38,"y":-10},{"x":-13,"y":-26},{"x":50,"y":-86},{"x":-70,"y":-2},{"x":7,"y":-123},{"x":-105,"y":6},{"x":-51,"y":-41},{"x":-103,"y":163},{"x":-62,"y":5},{"x":-34,"y":-46},{"x":-44,"y":22},{"x":-23,"y":-21},{"x":-53,"y":-98},{"x":-127,"y":95},{"x":-74,"y":-14},{"x":-101,"y":97},{"x":-41,"y":-17},{"x":-138,"y":60},{"x":-30,"y":60}],"type":"admin"},{"arc":[{"x":143558,"y":178522},{"x":-147,"y":70},{"x":-19,"y":-74},{"x":-115,"y":-15},{"x":-37,"y":52},{"x":26,"y":45},{"x":-28,"y":17},{"x":-75,"y":-36},{"x":-27,"y":27},{"x":-142,"y":6},{"x":-26,"y":37},{"x":-51,"y":12},{"x":-90,"y":-12},{"x":-64,"y":84},{"x":-44,"y":-4},{"x":-34,"y":35},{"x":-66,"y":15}],"type":"admin"},{"arc":[{"x":142619,"y":178781},{"x":-161,"y":59},{"x":36,"y":-56},{"x":-78,"y":-84},{"x":39,"y":-20},{"x":-35,"y":-27},{"x":90,"y":-142},{"x":-115,"y":-4},{"x":-66,"y":57},{"x":-77,"y":-15},{"x":-130,"y":-129},{"x":6,"y":-54},{"x":-42,"y":-18},{"x":20,"y":-28},{"x":-18,"y":-28},{"x":-124,"y":-32},{"x":-27,"y":18},{"x":-78,"y":-27},{"x":-67,"y":6},{"x":50,"y":-34},{"x":8,"y":-47},{"x":-33,"y":-96},{"x":-36,"y":6},{"x":27,"y":-41},{"x":-51,"y":24},{"x":15,"y":-47},{"x":-39,"y":4},{"x":-152,"y":-66},{"x":20,"y":-30},{"x":-64,"y":-18}],"type":"admin"},{"arc":[{"x":141537,"y":177912},{"x":78,"y":-47},{"x":8,"y":-46},{"x":68,"y":-21},{"x":7,"y":-52},{"x":48,"y":-30},{"x":75,"y":6},{"x":100,"y":-43},{"x":60,"y":14},{"x":82,"y":-28},{"x":124,"y":31},{"x":83,"y":-62},{"x":14,"y":22},{"x":50,"y":-16},{"x":130,"y":22},{"x":34,"y":52},{"x":83,"y":1},{"x":31,"y":-41},{"x":-45,"y":-108},{"x":69,"y":-67},{"x":33,"y":4},{"x":-19,"y":78}],"type":"area"},{"arc":[{"x":143522,"y":177405},{"x":98,"y":4},{"x":25,"y":-52},{"x":113,"y":54},{"x":72,"y":-35},{"x":56,"y":-6},{"x":7,"y":20},{"x":90,"y":-43},{"x":37,"y":12},{"x":16,"y":-48},{"x":46,"y":-24},{"x":-83,"y":-213},{"x":-28,"y":-284},{"x":69,"y":85},{"x":63,"y":-8},{"x":43,"y":31},{"x":133,"y":-51},{"x":85,"y":-79},{"x":164,"y":-81}],"type":"area"},{"arc":[{"x":144528,"y":176687},{"x":63,"y":-45},{"x":22,"y":15},{"x":57,"y":-35},{"x":22,"y":15},{"x":72,"y":-84},{"x":-9,"y":27},{"x":46,"y":33},{"x":-31,"y":47},{"x":38,"y":-43},{"x":90,"y":62},{"x":-29,"y":41},{"x":32,"y":39},{"x":-32,"y":-18},{"x":-36,"y":53},{"x":17,"y":13},{"x":29,"y":20},{"x":80,"y":-114},{"x":129,"y":90},{"x":-21,"y":64},{"x":-36,"y":22},{"x":52,"y":38},{"x":29,"y":-74},{"x":10,"y":21},{"x":38,"y":-40},{"x":170,"y":136},{"x":-55,"y":79},{"x":44,"y":31},{"x":63,"y":-70},{"x":116,"y":80},{"x":-18,"y":29},{"x":71,"y":59},{"x":63,"y":-40},{"x":-61,"y":43},{"x":20,"y":19},{"x":-25,"y":54},{"x":-120,"y":115},{"x":-42,"y":77},{"x":39,"y":51},{"x":39,"y":-29},{"x":-16,"y":-39},{"x":26,"y":-41},{"x":41,"y":38},{"x":36,"y":-26},{"x":-17,"y":-49},{"x":22,"y":-12},{"x":40,"y":26},{"x":38,"y":101},{"x":-87,"y":162},{"x":32,"y":18}],"type":"coastline"},{"arc":[{"x":145667,"y":177186},{"x":-7,"y":-20},{"x":60,"y":92},{"x":-53,"y":-72}],"type":"coastline"},{"arc":[{"x":148532,"y":177378},{"x":-14,"y":76}],"type":"area"},{"arc":[{"x":148518,"y":177454},{"x":-96,"y":331},{"x":-111,"y":103},{"x":-15,"y":79},{"x":-20,"y":-18},{"x":-1,"y":37},{"x":-49,"y":37}],"type":"area"},{"arc":[{"x":149313,"y":177967},{"x":-63,"y":-146},{"x":63,"y":-101},{"x":-27,"y":-39},{"x":51,"y":-20},{"x":41,"y":18},{"x":-42,"y":-37},{"x":4,"y":-38}],"type":"area"},{"arc":[{"x":139602,"y":177524},{"x":-40,"y":30},{"x":11,"y":-40},{"x":29,"y":10}],"type":"coastline"},{"arc":[{"x":140905,"y":178120},{"x":-53,"y":25},{"x":-48,"y":-17},{"x":-51,"y":49},{"x":12,"y":45},{"x":-58,"y":26},{"x":58,"y":147}],"type":"admin"},{"arc":[{"x":140060,"y":178642},{"x":-59,"y":-116},{"x":130,"y":-75},{"x":-17,"y":39},{"x":33,"y":-29},{"x":18,"y":40},{"x":-7,"y":-30},{"x":63,"y":-36},{"x":-25,"y":-59},{"x":-71,"y":-4},{"x":-25,"y":-37},{"x":27,"y":-14},{"x":-17,"y":-17},{"x":39,"y":-10},{"x":-19,"y":-54},{"x":48,"y":-62},{"x":-37,"y":-64},{"x":31,"y":33},{"x":-18,"y":-60},{"x":-27,"y":24},{"x":21,"y":-71},{"x":-60,"y":-36},{"x":59,"y":-173},{"x":-82,"y":-142},{"x":-139,"y":-138},{"x":-64,"y":-11},{"x":-1,"y":39},{"x":-17,"y":-36},{"x":-44,"y":30},{"x":35,"y":-29},{"x":-43,"y":25},{"x":-28,"y":-33},{"x":23,"y":56},{"x":-44,"y":-108},{"x":-31,"y":19},{"x":-36,"y":-35},{"x":-96,"y":42},{"x":5,"y":-32},{"x":-32,"y":-5},{"x":20,"y":-42},{"x":-38,"y":-37},{"x":12,"y":-59},{"x":-54,"y":3},{"x":-29,"y":-76},{"x":-9,"y":39},{"x":-26,"y":-11},{"x":-22,"y":23},{"x":-27,"y":-61},{"x":29,"y":20},{"x":-4,"y":-35},{"x":-88,"y":-30},{"x":37,"y":-34},{"x":8,"y":-56},{"x":-25,"y":-24},{"x":22,"y":8},{"x":0,"y":-79},{"x":-96,"y":-177}],"type":"coastline"},{"arc":[{"x":139263,"y":176845},{"x":43,"y":-14},{"x":15,"y":-45},{"x":39,"y":0},{"x":37,"y":37},{"x":31,"y":-20},{"x":-12,"y":-32},{"x":129,"y":-14},{"x":95,"y":-43},{"x":21,"y":-61},{"x":72,"y":8},{"x":98,"y":-127},{"x":-41,"y":-120},{"x":104,"y":35},{"x":31,"y":-52},{"x":60,"y":-6},{"x":79,"y":39},{"x":10,"y":-150},{"x":-127,"y":14},{"x":-3,"y":-16},{"x":59,"y":-104},{"x":52,"y":-10},{"x":-31,"y":-35},{"x":11,"y":-104},{"x":57,"y":-14},{"x":31,"y":-60},{"x":56,"y":-27},{"x":-26,"y":-131},{"x":86,"y":-56}],"type":"area"},{"arc":[{"x":140239,"y":175737},{"x":135,"y":8}],"type":"admin"},{"arc":[{"x":140374,"y":175745},{"x":106,"y":1},{"x":-22,"y":66},{"x":89,"y":83},{"x":-12,"y":101},{"x":36,"y":74},{"x":-41,"y":91},{"x":50,"y":219}],"type":"area"},{"arc":[{"x":140580,"y":176380},{"x":-20,"y":122},{"x":32,"y":41},{"x":-34,"y":68},{"x":133,"y":145},{"x":-68,"y":55},{"x":37,"y":88},{"x":-19,"y":59},{"x":21,"y":47},{"x":42,"y":9},{"x":4,"y":80},{"x":106,"y":85},{"x":17,"y":52},{"x":-89,"y":161},{"x":28,"y":52},{"x":89,"y":8},{"x":30,"y":23},{"x":21,"y":47},{"x":-21,"y":105},{"x":138,"y":77},{"x":-31,"y":90},{"x":33,"y":95},{"x":-71,"y":70},{"x":7,"y":49},{"x":-60,"y":38},{"x":0,"y":74}],"type":"area"},{"arc":[{"x":148525,"y":176648},{"x":-37,"y":35},{"x":-2,"y":54},{"x":-113,"y":-116},{"x":-44,"y":-12},{"x":-31,"y":60}],"type":"area"},{"arc":[{"x":141537,"y":177912},{"x":-66,"y":-16},{"x":-176,"y":88},{"x":-58,"y":3},{"x":-12,"y":41},{"x":-86,"y":8},{"x":-20,"y":33},{"x":-36,"y":-12},{"x":-71,"y":48},{"x":-107,"y":15}],"type":"admin"},{"arc":[{"x":140580,"y":176380},{"x":46,"y":-3},{"x":18,"y":53},{"x":137,"y":31},{"x":87,"y":-18},{"x":29,"y":-33},{"x":150,"y":15},{"x":143,"y":-113},{"x":81,"y":-39},{"x":56,"y":14},{"x":37,"y":-49},{"x":75,"y":-21},{"x":57,"y":29},{"x":226,"y":-34},{"x":-9,"y":-38},{"x":-37,"y":31},{"x":-49,"y":-49},{"x":73,"y":-108},{"x":-43,"y":-90},{"x":69,"y":-3},{"x":-1,"y":-29},{"x":64,"y":-5},{"x":27,"y":70},{"x":50,"y":8},{"x":36,"y":-42},{"x":2,"y":-59},{"x":40,"y":-20},{"x":-26,"y":-81},{"x":63,"y":-7},{"x":-14,"y":-38},{"x":88,"y":-162},{"x":123,"y":-67},{"x":80,"y":11},{"x":28,"y":-93},{"x":55,"y":1},{"x":68,"y":-46},{"x":25,"y":-98},{"x":133,"y":-13},{"x":94,"y":-47},{"x":81,"y":-70},{"x":56,"y":-105},{"x":88,"y":0},{"x":11,"y":-44},{"x":62,"y":-6},{"x":-26,"y":0},{"x":7,"y":-28},{"x":93,"y":-62}],"type":"area"},{"arc":[{"x":143033,"y":174923},{"x":15,"y":27},{"x":-48,"y":1},{"x":6,"y":29},{"x":44,"y":-26},{"x":-43,"y":27},{"x":15,"y":18},{"x":123,"y":-80},{"x":114,"y":-130},{"x":104,"y":70},{"x":-106,"y":178},{"x":-72,"y":252}],"type":"coastline"},{"arc":[{"x":143380,"y":175144},{"x":0,"y":90},{"x":0,"y":-127},{"x":0,"y":37}],"type":"coastline"},{"arc":[{"x":142426,"y":174623},{"x":-10,"y":19},{"x":11,"y":-55},{"x":-1,"y":36}],"type":"coastline"},{"arc":[{"x":140374,"y":175745},{"x":24,"y":-143},{"x":-26,"y":-48},{"x":117,"y":-82},{"x":31,"y":6},{"x":1,"y":-38},{"x":58,"y":-10},{"x":2,"y":-57},{"x":39,"y":-23},{"x":-10,"y":-186},{"x":-35,"y":-22},{"x":49,"y":-29},{"x":66,"y":-167},{"x":-119,"y":-374}],"type":"admin"},{"arc":[{"x":140571,"y":174572},{"x":119,"y":10},{"x":4,"y":30},{"x":74,"y":-65},{"x":-8,"y":28},{"x":33,"y":-29},{"x":18,"y":28},{"x":35,"y":-24},{"x":26,"y":24},{"x":82,"y":-18},{"x":62,"y":23},{"x":91,"y":47},{"x":39,"y":63},{"x":37,"y":3},{"x":190,"y":346},{"x":14,"y":-18},{"x":4,"y":58},{"x":108,"y":19},{"x":5,"y":19},{"x":176,"y":-21},{"x":163,"y":-54},{"x":207,"y":-175},{"x":36,"y":24},{"x":43,"y":-28},{"x":18,"y":15},{"x":-38,"y":29},{"x":40,"y":20},{"x":-16,"y":-36},{"x":17,"y":36},{"x":41,"y":9},{"x":101,"y":-66},{"x":123,"y":-193},{"x":-16,"y":-9},{"x":10,"y":-31},{"x":-7,"y":31},{"x":26,"y":-13},{"x":142,"y":-436},{"x":22,"y":234},{"x":19,"y":70},{"x":34,"y":14},{"x":-45,"y":-9},{"x":16,"y":62},{"x":26,"y":-36},{"x":19,"y":19},{"x":0,"y":-25},{"x":10,"y":34},{"x":41,"y":-26},{"x":36,"y":57},{"x":54,"y":-34},{"x":31,"y":13},{"x":-30,"y":-11},{"x":-66,"y":45},{"x":-15,"y":-32},{"x":-19,"y":12},{"x":140,"y":196},{"x":42,"y":-34},{"x":-20,"y":-125},{"x":20,"y":30},{"x":108,"y":-65},{"x":-8,"y":26},{"x":170,"y":139},{"x":-154,"y":99},{"x":32,"y":52}],"type":"coastline"},{"arc":[{"x":146905,"y":175607},{"x":-189,"y":220},{"x":-207,"y":-304},{"x":57,"y":-56},{"x":34,"y":23},{"x":17,"y":-16},{"x":-35,"y":-37},{"x":22,"y":-18},{"x":-28,"y":-28},{"x":-80,"y":99},{"x":-82,"y":-97},{"x":110,"y":-47},{"x":-44,"y":-48},{"x":47,"y":-163},{"x":94,"y":-2},{"x":54,"y":27},{"x":17,"y":-37}],"type":"coastline"},{"arc":[{"x":146692,"y":175123},{"x":89,"y":127},{"x":133,"y":38},{"x":190,"y":-14}],"type":"admin"},{"arc":[{"x":144207,"y":175921},{"x":176,"y":26},{"x":33,"y":120},{"x":-73,"y":21},{"x":-38,"y":-3},{"x":-24,"y":-75},{"x":68,"y":-31},{"x":-6,"y":-22},{"x":-116,"y":32},{"x":67,"y":155},{"x":-37,"y":-23},{"x":29,"y":67},{"x":105,"y":-58},{"x":-6,"y":22},{"x":155,"y":-55},{"x":79,"y":169},{"x":-220,"y":107},{"x":-39,"y":-33},{"x":-28,"y":13},{"x":15,"y":31},{"x":8,"y":-17},{"x":43,"y":65},{"x":159,"y":-96},{"x":29,"y":45},{"x":27,"y":-6},{"x":-105,"y":70},{"x":29,"y":41},{"x":100,"y":-68},{"x":-17,"y":16},{"x":50,"y":74},{"x":48,"y":-29},{"x":-190,"y":208}],"type":"coastline"},{"arc":[{"x":147174,"y":180039},{"x":-65,"y":25},{"x":16,"y":-14},{"x":-58,"y":-80},{"x":-48,"y":-15},{"x":11,"y":75},{"x":-29,"y":79},{"x":-80,"y":8},{"x":43,"y":-72},{"x":-2,"y":-146},{"x":-55,"y":-32},{"x":29,"y":-41},{"x":-113,"y":12},{"x":26,"y":-27},{"x":-28,"y":-8},{"x":10,"y":-40},{"x":-33,"y":-3},{"x":-37,"y":60},{"x":-55,"y":-47},{"x":-104,"y":83}],"type":"area"},{"arc":[{"x":146317,"y":179803},{"x":-22,"y":14}],"type":"area"},{"arc":[{"x":147546,"y":179466},{"x":27,"y":-3},{"x":98,"y":103},{"x":-18,"y":20}],"type":"admin"},{"arc":[{"x":147653,"y":179586},{"x":-21,"y":19},{"x":-40,"y":-34},{"x":23,"y":21},{"x":-36,"y":15},{"x":44,"y":-2},{"x":-1,"y":48},{"x":-83,"y":11},{"x":-28,"y":-19},{"x":44,"y":70},{"x":-41,"y":15},{"x":45,"y":-2},{"x":-3,"y":49},{"x":-89,"y":-13},{"x":-48,"y":-38},{"x":-112,"y":56},{"x":-133,"y":257}],"type":"area"},{"arc":[{"x":149310,"y":178187},{"x":-136,"y":365},{"x":56,"y":103},{"x":25,"y":195},{"x":-113,"y":13},{"x":-65,"y":122},{"x":-79,"y":-81},{"x":1,"y":31},{"x":-64,"y":29},{"x":43,"y":-3},{"x":22,"y":24},{"x":-1,"y":56},{"x":-261,"y":13}],"type":"admin"},{"arc":[{"x":148162,"y":179175},{"x":-115,"y":23},{"x":-50,"y":-21},{"x":-26,"y":-48}],"type":"admin"},{"arc":[{"x":148518,"y":177454},{"x":171,"y":74},{"x":39,"y":73},{"x":77,"y":-41},{"x":-25,"y":-46},{"x":13,"y":-18},{"x":20,"y":18},{"x":18,"y":-36},{"x":21,"y":11},{"x":35,"y":-116},{"x":54,"y":-21},{"x":78,"y":69},{"x":45,"y":-8}],"type":"area"},{"arc":[{"x":148983,"y":179003},{"x":-11,"y":-15},{"x":-11,"y":19},{"x":22,"y":-4}],"type":"admin"},{"arc":[{"x":147864,"y":180256},{"x":-67,"y":-21},{"x":-36,"y":54},{"x":20,"y":65},{"x":-57,"y":-18},{"x":-56,"y":21},{"x":-32,"y":89},{"x":-78,"y":-56},{"x":19,"y":23},{"x":-62,"y":-7},{"x":-36,"y":-92},{"x":24,"y":-40},{"x":-33,"y":39},{"x":-38,"y":-36},{"x":29,"y":41},{"x":-76,"y":66},{"x":-31,"y":-14},{"x":35,"y":31},{"x":-51,"y":34},{"x":3,"y":74},{"x":-35,"y":9},{"x":60,"y":11},{"x":-25,"y":56},{"x":26,"y":49},{"x":-39,"y":9},{"x":-11,"y":-43},{"x":-95,"y":-14}],"type":"admin"},{"arc":[{"x":147222,"y":180586},{"x":-56,"y":-94},{"x":86,"y":-136},{"x":-53,"y":-64},{"x":29,"y":20},{"x":95,"y":-58},{"x":-62,"y":-19},{"x":42,"y":-54},{"x":-52,"y":-93},{"x":-77,"y":-49}],"type":"area"},{"arc":[{"x":147653,"y":179586},{"x":63,"y":-70},{"x":27,"y":15},{"x":2,"y":-26},{"x":100,"y":-26},{"x":10,"y":-48},{"x":112,"y":87},{"x":4,"y":38},{"x":-25,"y":-9},{"x":23,"y":16},{"x":-27,"y":10},{"x":27,"y":84},{"x":-5,"y":-47},{"x":100,"y":-40},{"x":9,"y":17}],"type":"admin"},{"arc":[{"x":139263,"y":176845},{"x":-91,"y":-126},{"x":-112,"y":-80},{"x":-19,"y":-46},{"x":29,"y":45},{"x":-18,"y":-43},{"x":15,"y":11},{"x":4,"y":-23},{"x":-42,"y":-2},{"x":26,"y":-35},{"x":-77,"y":-96},{"x":-239,"y":-202},{"x":-219,"y":-87},{"x":-80,"y":7},{"x":-67,"y":-55},{"x":-60,"y":10},{"x":-3,"y":-24},{"x":-105,"y":-52},{"x":-130,"y":37},{"x":48,"y":-24},{"x":-78,"y":7},{"x":-38,"y":23},{"x":59,"y":-1},{"x":-42,"y":15},{"x":-45,"y":-23},{"x":0,"y":17},{"x":-48,"y":-21},{"x":-23,"y":17},{"x":-3,"y":-22},{"x":-16,"y":19},{"x":-142,"y":-124},{"x":16,"y":31},{"x":-22,"y":-2},{"x":-39,"y":-83},{"x":-53,"y":-20},{"x":14,"y":-42},{"x":-96,"y":0},{"x":-65,"y":-116},{"x":-8,"y":-72},{"x":-32,"y":45},{"x":12,"y":-90},{"x":-38,"y":9},{"x":3,"y":-113},{"x":-31,"y":-1},{"x":-16,"y":-76},{"x":28,"y":-98},{"x":-81,"y":-53},{"x":51,"y":3},{"x":-9,"y":-159},{"x":52,"y":-76},{"x":-55,"y":-202},{"x":25,"y":-58},{"x":-19,"y":-28},{"x":49,"y":-13},{"x":55,"y":-118},{"x":0,"y":2},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":139020,"y":174726},{"x":-14,"y":-86},{"x":81,"y":-149},{"x":75,"y":54},{"x":-62,"y":37},{"x":29,"y":27},{"x":-25,"y":-14},{"x":-14,"y":39},{"x":32,"y":-20},{"x":-30,"y":28},{"x":90,"y":79},{"x":41,"y":-19},{"x":35,"y":13},{"x":15,"y":-46},{"x":126,"y":-26},{"x":47,"y":-60},{"x":45,"y":30},{"x":36,"y":-8},{"x":102,"y":162},{"x":-24,"y":13},{"x":56,"y":12},{"x":2,"y":25},{"x":113,"y":-7},{"x":97,"y":-53}],"type":"coastline"},{"arc":[{"x":139873,"y":174757},{"x":32,"y":27},{"x":-17,"y":88},{"x":62,"y":36},{"x":29,"y":149},{"x":37,"y":43},{"x":-24,"y":113},{"x":63,"y":212},{"x":-9,"y":185},{"x":56,"y":60},{"x":59,"y":-8},{"x":57,"y":25},{"x":21,"y":50}],"type":"admin"},{"arc":[{"x":148241,"y":182144},{"x":-95,"y":78},{"x":21,"y":78}],"type":"area"},{"arc":[{"x":147123,"y":182914},{"x":-17,"y":-26},{"x":-16,"y":19},{"x":16,"y":-20},{"x":-60,"y":-79},{"x":-21,"y":12},{"x":21,"y":-12},{"x":-16,"y":-27},{"x":-276,"y":-283},{"x":5,"y":-30},{"x":-76,"y":-56},{"x":12,"y":-19},{"x":-138,"y":-157}],"type":"coastline"},{"arc":[{"x":146557,"y":182236},{"x":141,"y":-120},{"x":6,"y":-34},{"x":223,"y":-151},{"x":94,"y":115},{"x":27,"y":-2},{"x":-6,"y":-20},{"x":43,"y":-6},{"x":13,"y":-65},{"x":36,"y":4},{"x":87,"y":-73},{"x":-85,"y":-72},{"x":43,"y":-63},{"x":20,"y":39},{"x":64,"y":-16},{"x":28,"y":-106},{"x":78,"y":-36},{"x":77,"y":-17},{"x":99,"y":36},{"x":54,"y":-27},{"x":41,"y":-79},{"x":98,"y":-61}],"type":"admin"},{"arc":[{"x":147738,"y":181482},{"x":62,"y":17},{"x":115,"y":155},{"x":53,"y":-8},{"x":175,"y":52},{"x":78,"y":-29},{"x":16,"y":119},{"x":-91,"y":64},{"x":11,"y":65},{"x":85,"y":31},{"x":-57,"y":61},{"x":16,"y":102},{"x":40,"y":33}],"type":"admin"},{"arc":[{"x":149439,"y":183150},{"x":-119,"y":-33},{"x":-52,"y":36},{"x":-81,"y":1},{"x":-20,"y":34},{"x":-87,"y":-9},{"x":-33,"y":-33},{"x":27,"y":-52},{"x":-160,"y":22},{"x":-43,"y":-15},{"x":-33,"y":-90},{"x":-68,"y":-5},{"x":-30,"y":-101},{"x":-41,"y":-14},{"x":-45,"y":19}],"type":"admin"},{"arc":[{"x":148241,"y":182144},{"x":56,"y":-42},{"x":62,"y":14},{"x":-2,"y":-47},{"x":65,"y":-4},{"x":-18,"y":-48},{"x":37,"y":-100},{"x":54,"y":-39},{"x":-22,"y":-30},{"x":40,"y":-27},{"x":-23,"y":-72},{"x":52,"y":-14},{"x":-13,"y":-64},{"x":70,"y":6},{"x":-4,"y":-50},{"x":19,"y":27},{"x":71,"y":-6},{"x":76,"y":-64},{"x":-58,"y":-117},{"x":-92,"y":-46},{"x":1,"y":-51},{"x":16,"y":-99},{"x":82,"y":23},{"x":114,"y":-169}],"type":"admin"},{"arc":[{"x":149593,"y":181006},{"x":43,"y":-4},{"x":24,"y":-157},{"x":69,"y":32},{"x":63,"y":3},{"x":54,"y":-33},{"x":73,"y":15},{"x":127,"y":42},{"x":54,"y":70},{"x":49,"y":-26}],"type":"admin"},{"arc":[{"x":147222,"y":180586},{"x":-38,"y":78},{"x":-34,"y":15},{"x":3,"y":39},{"x":56,"y":41}],"type":"admin"},{"arc":[{"x":147209,"y":180759},{"x":-21,"y":29},{"x":29,"y":91},{"x":-33,"y":38},{"x":-63,"y":46},{"x":-66,"y":-9},{"x":-105,"y":63},{"x":50,"y":81},{"x":40,"y":12},{"x":-123,"y":211},{"x":22,"y":50},{"x":-61,"y":29},{"x":-120,"y":-128},{"x":-161,"y":212},{"x":72,"y":90},{"x":-50,"y":48},{"x":-18,"y":-14},{"x":-85,"y":34},{"x":8,"y":-60},{"x":-45,"y":-46},{"x":-79,"y":-15},{"x":-66,"y":66},{"x":86,"y":105},{"x":-7,"y":28},{"x":-48,"y":33},{"x":-23,"y":63},{"x":-112,"y":71}],"type":"admin"},{"arc":[{"x":146230,"y":181887},{"x":-331,"y":-317},{"x":-363,"y":-257}],"type":"coastline"},{"arc":[{"x":145536,"y":181313},{"x":148,"y":-143},{"x":4,"y":-36},{"x":61,"y":-35},{"x":32,"y":-79},{"x":42,"y":-18},{"x":-28,"y":-52}],"type":"admin"},{"arc":[{"x":142794,"y":180563},{"x":-5,"y":53},{"x":-26,"y":-19},{"x":32,"y":31},{"x":-208,"y":98},{"x":-108,"y":18},{"x":-186,"y":-92},{"x":-269,"y":-64},{"x":-142,"y":10},{"x":-34,"y":53},{"x":1,"y":-40},{"x":-40,"y":27},{"x":23,"y":-40},{"x":-40,"y":54},{"x":61,"y":9},{"x":-84,"y":-3},{"x":-42,"y":-33},{"x":-79,"y":23},{"x":-106,"y":-65},{"x":-55,"y":9},{"x":-48,"y":-31},{"x":-129,"y":-22},{"x":-33,"y":-31},{"x":-32,"y":3},{"x":22,"y":15},{"x":-54,"y":-16},{"x":-37,"y":17},{"x":-131,"y":-96}],"type":"coastline"},{"arc":[{"x":141045,"y":180431},{"x":69,"y":-75},{"x":-37,"y":-49},{"x":51,"y":-7},{"x":-7,"y":-39},{"x":40,"y":-16},{"x":8,"y":-64},{"x":58,"y":1},{"x":33,"y":44},{"x":30,"y":-30},{"x":82,"y":9},{"x":-8,"y":-56},{"x":-27,"y":-2},{"x":40,"y":-71},{"x":-56,"y":-100},{"x":127,"y":-95},{"x":-76,"y":-36},{"x":22,"y":-47},{"x":-74,"y":-9},{"x":7,"y":-50}],"type":"admin"},{"arc":[{"x":141679,"y":179358},{"x":35,"y":23},{"x":66,"y":-28},{"x":68,"y":57},{"x":73,"y":-73},{"x":71,"y":-21},{"x":38,"y":-49},{"x":-10,"y":-49},{"x":34,"y":-88},{"x":94,"y":-54},{"x":42,"y":16},{"x":16,"y":112},{"x":53,"y":2},{"x":1,"y":32},{"x":98,"y":74},{"x":84,"y":-26},{"x":54,"y":18},{"x":81,"y":-47}],"type":"admin"},{"arc":[{"x":142577,"y":179257},{"x":71,"y":67},{"x":-2,"y":76},{"x":29,"y":39},{"x":182,"y":74},{"x":40,"y":76},{"x":-22,"y":28},{"x":111,"y":124},{"x":-44,"y":200},{"x":40,"y":46}],"type":"admin"},{"arc":[{"x":142982,"y":179987},{"x":7,"y":105},{"x":-51,"y":178},{"x":18,"y":44},{"x":-121,"y":-21},{"x":-62,"y":15},{"x":20,"y":110},{"x":55,"y":41},{"x":-50,"y":52},{"x":-4,"y":52}],"type":"admin"},{"arc":[{"x":145055,"y":180630},{"x":-62,"y":111},{"x":1,"y":85},{"x":-41,"y":-1},{"x":-38,"y":78}],"type":"admin"},{"arc":[{"x":144915,"y":180903},{"x":-336,"y":-151}],"type":"coastline"},{"arc":[{"x":144579,"y":180752},{"x":65,"y":-307},{"x":-16,"y":-50}],"type":"admin"},{"arc":[{"x":147738,"y":181482},{"x":5,"y":-59},{"x":-49,"y":-23},{"x":-19,"y":32},{"x":-181,"y":-123},{"x":-129,"y":-26},{"x":-9,"y":-76},{"x":73,"y":2},{"x":27,"y":-52}],"type":"admin"},{"arc":[{"x":147456,"y":181157},{"x":89,"y":-9},{"x":-1,"y":-42},{"x":88,"y":-20},{"x":-5,"y":-50},{"x":70,"y":-58},{"x":-1,"y":-53},{"x":42,"y":-32},{"x":124,"y":67},{"x":254,"y":-80},{"x":44,"y":-38},{"x":77,"y":-14},{"x":117,"y":19},{"x":42,"y":-39},{"x":6,"y":-62},{"x":-44,"y":-92},{"x":58,"y":-36}],"type":"admin"},{"arc":[{"x":145536,"y":181313},{"x":-106,"y":-54},{"x":-23,"y":23},{"x":-57,"y":8},{"x":56,"y":-20},{"x":-22,"y":-4},{"x":-19,"y":-72},{"x":-35,"y":25},{"x":23,"y":-34},{"x":-55,"y":-46},{"x":-383,"y":-236}],"type":"coastline"},{"arc":[{"x":147456,"y":181157},{"x":-28,"y":-37},{"x":20,"y":-55},{"x":-74,"y":-113},{"x":-41,"y":-20},{"x":-46,"y":-119},{"x":-78,"y":-54}],"type":"area"},{"arc":[{"x":146557,"y":182236},{"x":-243,"y":-263},{"x":-16,"y":16},{"x":13,"y":-14},{"x":-81,"y":-88}],"type":"coastline"},{"arc":[{"x":143459,"y":180505},{"x":-10,"y":22},{"x":-9,"y":-27},{"x":-89,"y":0},{"x":4,"y":20},{"x":-22,"y":-20},{"x":-90,"y":1},{"x":-4,"y":18},{"x":-79,"y":-16},{"x":-14,"y":20},{"x":6,"y":-18},{"x":-56,"y":-1},{"x":-302,"y":59}],"type":"coastline"},{"arc":[{"x":142982,"y":179987},{"x":100,"y":26},{"x":12,"y":-29},{"x":34,"y":-2},{"x":139,"y":49},{"x":-39,"y":17},{"x":54,"y":5},{"x":42,"y":-25},{"x":-5,"y":-52},{"x":23,"y":-4},{"x":61,"y":42},{"x":-20,"y":27},{"x":49,"y":40}],"type":"area"},{"arc":[{"x":143432,"y":180081},{"x":9,"y":68},{"x":60,"y":29},{"x":-10,"y":39},{"x":46,"y":12},{"x":12,"y":99},{"x":-33,"y":56},{"x":48,"y":46},{"x":-13,"y":37},{"x":-53,"y":-16},{"x":-39,"y":54}],"type":"area"},{"arc":[{"x":142577,"y":179257},{"x":26,"y":-33},{"x":-24,"y":-57},{"x":68,"y":-61},{"x":-21,"y":-36},{"x":91,"y":-20}],"type":"area"},{"arc":[{"x":142717,"y":179050},{"x":184,"y":21},{"x":3,"y":45},{"x":266,"y":163},{"x":-27,"y":52},{"x":68,"y":222},{"x":-9,"y":75},{"x":65,"y":31},{"x":143,"y":-53},{"x":11,"y":41},{"x":27,"y":-11}],"type":"area"},{"arc":[{"x":143572,"y":179769},{"x":-58,"y":121},{"x":58,"y":85},{"x":-23,"y":25},{"x":-48,"y":-18},{"x":-69,"y":99}],"type":"area"},{"arc":[{"x":143761,"y":179792},{"x":-52,"y":31},{"x":24,"y":-79}],"type":"area"},{"arc":[{"x":143911,"y":180557},{"x":-235,"y":-43},{"x":-217,"y":-9}],"type":"coastline"},{"arc":[{"x":144099,"y":180051},{"x":11,"y":103},{"x":-48,"y":170},{"x":-84,"y":-7},{"x":-67,"y":240}],"type":"area"},{"arc":[{"x":144579,"y":180752},{"x":-285,"y":-106},{"x":-383,"y":-89}],"type":"coastline"},{"arc":[{"x":143990,"y":179138},{"x":34,"y":-29},{"x":-1,"y":-141},{"x":-106,"y":-167},{"x":-6,"y":-122},{"x":-200,"y":-52},{"x":-15,"y":-39},{"x":49,"y":-18},{"x":-19,"y":-38},{"x":-73,"y":-40},{"x":-95,"y":30}],"type":"area"},{"arc":[{"x":142717,"y":179050},{"x":-9,"y":-29},{"x":45,"y":-24},{"x":-50,"y":-130},{"x":-84,"y":-86}],"type":"area"},{"arc":[{"x":141045,"y":180431},{"x":-61,"y":-5},{"x":-107,"y":-106},{"x":-10,"y":-83},{"x":11,"y":17},{"x":36,"y":-58},{"x":0,"y":-95},{"x":-74,"y":-63}],"type":"coastline"},{"arc":[{"x":140014,"y":174546},{"x":-29,"y":-2},{"x":3,"y":-21},{"x":26,"y":23}],"type":"coastline"},{"arc":[{"x":139873,"y":174757},{"x":8,"y":-96},{"x":22,"y":21},{"x":-15,"y":-54},{"x":55,"y":43},{"x":33,"y":-39},{"x":31,"y":43},{"x":43,"y":-42},{"x":30,"y":41},{"x":36,"y":-12},{"x":4,"y":45},{"x":49,"y":-3},{"x":33,"y":55},{"x":62,"y":-13},{"x":-16,"y":41},{"x":22,"y":4},{"x":-5,"y":-24},{"x":37,"y":11},{"x":-26,"y":-22},{"x":82,"y":8},{"x":93,"y":-70},{"x":76,"y":-19},{"x":43,"y":-119},{"x":1,"y":16}],"type":"coastline"},{"arc":[{"x":147425,"y":174204},{"x":-45,"y":-24},{"x":-46,"y":-101},{"x":-138,"y":-2},{"x":-75,"y":-68},{"x":-33,"y":-97}],"type":"area"},{"arc":[{"x":147088,"y":173912},{"x":19,"y":-115},{"x":128,"y":-121}],"type":"area"},{"arc":[{"x":147235,"y":173676},{"x":97,"y":-3},{"x":174,"y":152}],"type":"area"},{"arc":[{"x":147506,"y":173825},{"x":-41,"y":231},{"x":27,"y":-19},{"x":45,"y":38}],"type":"area"},{"arc":[{"x":147537,"y":174075},{"x":-4,"y":31},{"x":-40,"y":1},{"x":-20,"y":75},{"x":-28,"y":-5},{"x":-20,"y":27}],"type":"area"},{"arc":[{"x":147402,"y":174270},{"x":-69,"y":15}],"type":"area"},{"arc":[{"x":147333,"y":174285},{"x":-62,"y":23},{"x":-132,"y":-57},{"x":-224,"y":26}],"type":"area"},{"arc":[{"x":146915,"y":174277},{"x":-129,"y":-174},{"x":41,"y":-34},{"x":28,"y":34},{"x":14,"y":-12},{"x":-19,"y":-45},{"x":52,"y":0},{"x":-3,"y":35},{"x":40,"y":-36},{"x":-25,"y":-27}],"type":"coastline"},{"arc":[{"x":146914,"y":174018},{"x":49,"y":-67},{"x":110,"y":0},{"x":15,"y":-39}],"type":"area"},{"arc":[{"x":147425,"y":174204},{"x":-23,"y":66}],"type":"area"},{"arc":[{"x":146558,"y":173965},{"x":-1,"y":-21},{"x":-49,"y":2},{"x":0,"y":-42}],"type":"area"},{"arc":[{"x":146508,"y":173904},{"x":121,"y":18},{"x":0,"y":40},{"x":-71,"y":3}],"type":"coastline"},{"arc":[{"x":146577,"y":174202},{"x":-80,"y":-114}],"type":"area"},{"arc":[{"x":146497,"y":174088},{"x":41,"y":-27}],"type":"area"},{"arc":[{"x":146538,"y":174061},{"x":63,"y":87},{"x":43,"y":-24},{"x":-22,"y":-41},{"x":40,"y":59},{"x":-85,"y":60}],"type":"coastline"},{"arc":[{"x":146914,"y":174018},{"x":-136,"y":-57},{"x":-109,"y":14},{"x":-13,"y":-21},{"x":13,"y":13},{"x":26,"y":-50},{"x":-177,"y":-47}],"type":"coastline"},{"arc":[{"x":146518,"y":173870},{"x":-21,"y":-154},{"x":150,"y":-97},{"x":0,"y":-84},{"x":60,"y":-11},{"x":26,"y":25}],"type":"area"},{"arc":[{"x":146733,"y":173549},{"x":61,"y":45},{"x":119,"y":-8},{"x":16,"y":-86},{"x":85,"y":-61},{"x":119,"y":83}],"type":"area"},{"arc":[{"x":147133,"y":173522},{"x":13,"y":30},{"x":59,"y":12},{"x":-1,"y":57},{"x":48,"y":24},{"x":-17,"y":31}],"type":"area"},{"arc":[{"x":147133,"y":173522},{"x":15,"y":-38},{"x":79,"y":19},{"x":46,"y":-76},{"x":45,"y":-17},{"x":9,"y":-58},{"x":-91,"y":-129},{"x":53,"y":-28},{"x":27,"y":11},{"x":10,"y":-29},{"x":42,"y":8}],"type":"area"},{"arc":[{"x":147368,"y":173185},{"x":89,"y":45},{"x":99,"y":0},{"x":53,"y":62},{"x":2,"y":-144},{"x":25,"y":15},{"x":19,"y":-27},{"x":45,"y":-2},{"x":9,"y":-58},{"x":132,"y":40}],"type":"area"},{"arc":[{"x":147841,"y":173116},{"x":-87,"y":73},{"x":6,"y":209},{"x":-121,"y":13},{"x":18,"y":60},{"x":-33,"y":112}],"type":"area"},{"arc":[{"x":147624,"y":173583},{"x":-61,"y":103},{"x":22,"y":35},{"x":-14,"y":75},{"x":-65,"y":29}],"type":"area"},{"arc":[{"x":147912,"y":173896},{"x":-35,"y":84}],"type":"area"},{"arc":[{"x":147877,"y":173980},{"x":-19,"y":20}],"type":"area"},{"arc":[{"x":147858,"y":174000},{"x":-40,"y":22},{"x":-72,"y":-17},{"x":-77,"y":55},{"x":19,"y":-43},{"x":-80,"y":38},{"x":-29,"y":-16},{"x":-11,"y":60},{"x":-31,"y":-24}],"type":"area"},{"arc":[{"x":147624,"y":173583},{"x":32,"y":-52},{"x":38,"y":9},{"x":28,"y":66},{"x":65,"y":-20},{"x":24,"y":38},{"x":-37,"y":57},{"x":15,"y":42},{"x":51,"y":-1},{"x":32,"y":33},{"x":-14,"y":24},{"x":64,"y":33},{"x":-37,"y":47},{"x":27,"y":37}],"type":"area"},{"arc":[{"x":147858,"y":174000},{"x":-41,"y":33},{"x":-37,"y":146},{"x":84,"y":114},{"x":-28,"y":40},{"x":-11,"y":152}],"type":"area"},{"arc":[{"x":147825,"y":174485},{"x":-124,"y":-25},{"x":-133,"y":-106},{"x":-166,"y":-84}],"type":"area"},{"arc":[{"x":147825,"y":174485},{"x":135,"y":49}],"type":"area"},{"arc":[{"x":147960,"y":174534},{"x":59,"y":61}],"type":"area"},{"arc":[{"x":148019,"y":174595},{"x":-306,"y":225}],"type":"area"},{"arc":[{"x":147713,"y":174820},{"x":-45,"y":-93},{"x":-68,"y":67},{"x":-64,"y":-52},{"x":-29,"y":8}],"type":"area"},{"arc":[{"x":147507,"y":174750},{"x":63,"y":-172},{"x":-189,"y":10},{"x":-14,"y":-85},{"x":-43,"y":4},{"x":-20,"y":-25},{"x":49,"y":-165},{"x":-20,"y":-32}],"type":"area"},{"arc":[{"x":146424,"y":174360},{"x":-44,"y":-34},{"x":142,"y":-94},{"x":31,"y":48},{"x":-129,"y":80}],"type":"coastline"},{"arc":[{"x":146460,"y":174110},{"x":37,"y":-22}],"type":"area"},{"arc":[{"x":146577,"y":174202},{"x":-40,"y":27},{"x":-31,"y":-41},{"x":-181,"y":120},{"x":-95,"y":-57},{"x":178,"y":-124},{"x":-10,"y":-21},{"x":10,"y":20},{"x":-4,"y":-21},{"x":12,"y":17},{"x":44,"y":-12}],"type":"coastline"},{"arc":[{"x":146598,"y":174799},{"x":-215,"y":-15},{"x":-21,"y":-32},{"x":47,"y":-32},{"x":-53,"y":-46},{"x":97,"y":51},{"x":20,"y":-13},{"x":-19,"y":-44},{"x":138,"y":-17},{"x":6,"y":148}],"type":"coastline"},{"arc":[{"x":146706,"y":174641},{"x":8,"y":84},{"x":-27,"y":-2},{"x":-9,"y":-79},{"x":-41,"y":5},{"x":-2,"y":-46},{"x":63,"y":-11},{"x":47,"y":62},{"x":-39,"y":-13}],"type":"coastline"},{"arc":[{"x":147507,"y":174750},{"x":-50,"y":95},{"x":-52,"y":32},{"x":-484,"y":-22}],"type":"area"},{"arc":[{"x":146921,"y":174855},{"x":-7,"y":-27}],"type":"coastline"},{"arc":[{"x":146914,"y":174828},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":146913,"y":174828},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":146913,"y":174827},{"x":-11,"y":-1}],"type":"area"},{"arc":[{"x":146902,"y":174826},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":146897,"y":174826},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":146895,"y":174824},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":146891,"y":174824},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":146890,"y":174825},{"x":-12,"y":-3}],"type":"coastline"},{"arc":[{"x":146878,"y":174822},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":146877,"y":174821},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":146876,"y":174821},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":146875,"y":174821},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":146874,"y":174821},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":146873,"y":174821},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":146870,"y":174821},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":146869,"y":174821},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":146868,"y":174821},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":146867,"y":174821},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":146865,"y":174821},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":146863,"y":174820},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":146863,"y":174821},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":146861,"y":174821},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":146859,"y":174820},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":146857,"y":174820},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":146854,"y":174820},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":146853,"y":174820},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":146852,"y":174819},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":146851,"y":174819},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":146849,"y":174819},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":146848,"y":174818},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":146846,"y":174817},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":146846,"y":174816},{"x":-9,"y":-1}],"type":"area"},{"arc":[{"x":146837,"y":174815},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":146830,"y":174815},{"x":-29,"y":-3}],"type":"area"},{"arc":[{"x":146801,"y":174812},{"x":-168,"y":-12},{"x":-25,"y":-191},{"x":-28,"y":-11},{"x":47,"y":6},{"x":15,"y":129},{"x":119,"y":8},{"x":-45,"y":-273},{"x":66,"y":11},{"x":-6,"y":-29},{"x":-106,"y":7},{"x":-6,"y":-58},{"x":-129,"y":8},{"x":-56,"y":-37},{"x":103,"y":-68},{"x":-33,"y":-49},{"x":126,"y":-89},{"x":97,"y":163},{"x":-22,"y":19},{"x":59,"y":15},{"x":38,"y":-39},{"x":-46,"y":7},{"x":-99,"y":-150},{"x":34,"y":-42},{"x":137,"y":169},{"x":42,"y":-29}],"type":"coastline"},{"arc":[{"x":146150,"y":174107},{"x":-41,"y":-66},{"x":26,"y":-44},{"x":-121,"y":0},{"x":-1,"y":-68},{"x":55,"y":0},{"x":-5,"y":-67}],"type":"area"},{"arc":[{"x":146063,"y":173862},{"x":150,"y":-4},{"x":50,"y":28},{"x":164,"y":13},{"x":0,"y":51},{"x":-38,"y":41},{"x":-75,"y":16},{"x":-164,"y":100}],"type":"coastline"},{"arc":[{"x":146460,"y":174110},{"x":-19,"y":-29},{"x":42,"y":-31},{"x":55,"y":11}],"type":"coastline"},{"arc":[{"x":146558,"y":173965},{"x":-116,"y":-2},{"x":2,"y":-63},{"x":64,"y":4}],"type":"coastline"},{"arc":[{"x":146518,"y":173870},{"x":-35,"y":20},{"x":-187,"y":-14},{"x":-58,"y":-32},{"x":-159,"y":-12}],"type":"coastline"},{"arc":[{"x":146079,"y":173832},{"x":-35,"y":-170},{"x":61,"y":4},{"x":27,"y":-24},{"x":0,"y":-74},{"x":-31,"y":-19},{"x":102,"y":-49},{"x":19,"y":-139},{"x":77,"y":-58}],"type":"area"},{"arc":[{"x":146299,"y":173303},{"x":75,"y":4},{"x":106,"y":85},{"x":38,"y":-81},{"x":-2,"y":81},{"x":55,"y":110},{"x":108,"y":-15},{"x":52,"y":46}],"type":"area"},{"arc":[{"x":146731,"y":173533},{"x":2,"y":16}],"type":"area"},{"arc":[{"x":146212,"y":173147},{"x":94,"y":-34},{"x":-20,"y":-90},{"x":36,"y":-57},{"x":80,"y":4},{"x":36,"y":34},{"x":167,"y":-52},{"x":-25,"y":109},{"x":-59,"y":79},{"x":176,"y":69},{"x":168,"y":-22},{"x":147,"y":-95}],"type":"area"},{"arc":[{"x":147012,"y":173092},{"x":-26,"y":124},{"x":-141,"y":92},{"x":-110,"y":131},{"x":-4,"y":94}],"type":"area"},{"arc":[{"x":146299,"y":173303},{"x":70,"y":-118},{"x":-98,"y":8},{"x":-12,"y":-45},{"x":-47,"y":-1}],"type":"area"},{"arc":[{"x":145359,"y":174557},{"x":-155,"y":-147},{"x":24,"y":-27},{"x":92,"y":46},{"x":155,"y":160},{"x":18,"y":34},{"x":-29,"y":30},{"x":-105,"y":-96}],"type":"coastline"},{"arc":[{"x":145887,"y":174014},{"x":-6,"y":100},{"x":-121,"y":-85},{"x":44,"y":-74},{"x":39,"y":-14},{"x":38,"y":5},{"x":6,"y":68}],"type":"coastline"},{"arc":[{"x":146150,"y":174107},{"x":-69,"y":37},{"x":-80,"y":-80},{"x":44,"y":40},{"x":-8,"y":3},{"x":-24,"y":-22},{"x":-21,"y":24},{"x":29,"y":28},{"x":-30,"y":-27},{"x":50,"y":45},{"x":-33,"y":37},{"x":19,"y":27},{"x":-20,"y":-22},{"x":-56,"y":59},{"x":-35,"y":-25},{"x":-2,"y":-191},{"x":50,"y":38},{"x":6,"y":-26},{"x":-56,"y":-56},{"x":-1,"y":-68},{"x":150,"y":-66}],"type":"coastline"},{"arc":[{"x":146079,"y":173832},{"x":-142,"y":57},{"x":-35,"y":-23},{"x":-21,"y":44},{"x":-69,"y":23},{"x":-31,"y":-68},{"x":-55,"y":38},{"x":27,"y":53},{"x":-50,"y":53},{"x":108,"y":75},{"x":20,"y":150},{"x":-399,"y":245},{"x":-87,"y":-147},{"x":41,"y":-109},{"x":44,"y":-25},{"x":-55,"y":-57}],"type":"coastline"},{"arc":[{"x":146079,"y":172887},{"x":43,"y":31},{"x":30,"y":-54},{"x":51,"y":69},{"x":-11,"y":104},{"x":-92,"y":62},{"x":39,"y":51},{"x":73,"y":-3}],"type":"area"},{"arc":[{"x":147243,"y":172256},{"x":-42,"y":119},{"x":-37,"y":32},{"x":-70,"y":2},{"x":-6,"y":75},{"x":35,"y":4},{"x":3,"y":-34},{"x":48,"y":-31},{"x":-47,"y":111},{"x":-48,"y":41},{"x":-42,"y":128},{"x":84,"y":252}],"type":"area"},{"arc":[{"x":147121,"y":172955},{"x":-3,"y":113},{"x":-106,"y":24}],"type":"area"},{"arc":[{"x":146437,"y":172216},{"x":68,"y":-7},{"x":0,"y":30},{"x":38,"y":17},{"x":180,"y":-100},{"x":65,"y":33}],"type":"admin"},{"arc":[{"x":146788,"y":172189},{"x":-5,"y":45},{"x":74,"y":11},{"x":121,"y":-32},{"x":35,"y":-35},{"x":23,"y":36},{"x":46,"y":-13}],"type":"admin"},{"arc":[{"x":147082,"y":172201},{"x":50,"y":-65},{"x":8,"y":50},{"x":71,"y":9},{"x":31,"y":-30},{"x":-2,"y":67},{"x":9,"y":-65},{"x":-6,"y":89}],"type":"admin"},{"arc":[{"x":147121,"y":172955},{"x":49,"y":25}],"type":"area"},{"arc":[{"x":147170,"y":172980},{"x":198,"y":205}],"type":"area"},{"arc":[{"x":147857,"y":173123},{"x":-16,"y":-7}],"type":"area"},{"arc":[{"x":147170,"y":172980},{"x":34,"y":8},{"x":11,"y":-55},{"x":86,"y":-4},{"x":47,"y":74},{"x":42,"y":14},{"x":18,"y":-68},{"x":51,"y":14},{"x":69,"y":-17},{"x":5,"y":-28},{"x":53,"y":1},{"x":-3,"y":-75},{"x":32,"y":-85},{"x":41,"y":-10},{"x":27,"y":-100},{"x":167,"y":-79}],"type":"area"},{"arc":[{"x":147850,"y":172570},{"x":63,"y":27},{"x":4,"y":50},{"x":-114,"y":81},{"x":-14,"y":39},{"x":7,"y":166},{"x":68,"y":55},{"x":29,"y":67},{"x":-36,"y":68}],"type":"area"},{"arc":[{"x":147243,"y":172256},{"x":61,"y":-37},{"x":26,"y":36},{"x":63,"y":-76}],"type":"admin"},{"arc":[{"x":147393,"y":172179},{"x":10,"y":37},{"x":135,"y":54},{"x":82,"y":-92}],"type":"admin"},{"arc":[{"x":147620,"y":172178},{"x":67,"y":-18},{"x":32,"y":20},{"x":-21,"y":68},{"x":52,"y":24},{"x":59,"y":86},{"x":43,"y":118},{"x":-2,"y":94}],"type":"area"},{"arc":[{"x":148039,"y":173552},{"x":-41,"y":5},{"x":-26,"y":47},{"x":63,"y":35},{"x":4,"y":49},{"x":-22,"y":-9},{"x":-33,"y":29},{"x":18,"y":76},{"x":-40,"y":22},{"x":11,"y":26},{"x":-61,"y":64}],"type":"area"},{"arc":[{"x":147857,"y":173123},{"x":102,"y":28}],"type":"area"},{"arc":[{"x":147959,"y":173151},{"x":62,"y":123},{"x":-15,"y":65},{"x":-83,"y":51},{"x":125,"y":68},{"x":-9,"y":94}],"type":"area"},{"arc":[{"x":148484,"y":173744},{"x":-127,"y":-14},{"x":-40,"y":100},{"x":26,"y":136},{"x":-49,"y":-7},{"x":-80,"y":-110},{"x":-31,"y":19},{"x":-20,"y":82}],"type":"area"},{"arc":[{"x":148163,"y":173950},{"x":-21,"y":-4},{"x":7,"y":-69},{"x":-46,"y":-12},{"x":-32,"y":83},{"x":-27,"y":-6},{"x":-29,"y":44},{"x":13,"y":25},{"x":-79,"y":75},{"x":-72,"y":-106}],"type":"area"},{"arc":[{"x":148039,"y":173552},{"x":29,"y":28},{"x":76,"y":5},{"x":105,"y":-77},{"x":64,"y":-92},{"x":213,"y":-34},{"x":-14,"y":-76},{"x":55,"y":-64},{"x":153,"y":76}],"type":"area"},{"arc":[{"x":148163,"y":173950},{"x":-12,"y":276},{"x":-40,"y":64},{"x":-63,"y":-25},{"x":-63,"y":41},{"x":-28,"y":99},{"x":32,"y":99},{"x":-29,"y":30}],"type":"area"},{"arc":[{"x":147959,"y":173151},{"x":24,"y":-17},{"x":40,"y":18},{"x":9,"y":-90},{"x":94,"y":30},{"x":198,"y":-70},{"x":13,"y":-210},{"x":30,"y":-51},{"x":-27,"y":-84},{"x":37,"y":-57},{"x":65,"y":0},{"x":37,"y":-48}],"type":"area"},{"arc":[{"x":147620,"y":172178},{"x":89,"y":-119},{"x":34,"y":-98}],"type":"admin"},{"arc":[{"x":147743,"y":171961},{"x":158,"y":39},{"x":28,"y":-21},{"x":140,"y":-6},{"x":2,"y":21},{"x":46,"y":4},{"x":132,"y":-66}],"type":"admin"},{"arc":[{"x":148690,"y":174868},{"x":-37,"y":-27},{"x":-74,"y":11},{"x":-219,"y":132},{"x":-50,"y":5},{"x":-26,"y":-21},{"x":17,"y":-44},{"x":52,"y":-9},{"x":-6,"y":-61},{"x":-43,"y":-79},{"x":-35,"y":-3},{"x":6,"y":-60},{"x":-76,"y":-19},{"x":4,"y":-42},{"x":51,"y":12},{"x":-3,"y":-27},{"x":-79,"y":-18},{"x":5,"y":-24},{"x":57,"y":-6},{"x":-10,"y":-64},{"x":-64,"y":-1},{"x":-141,"y":72}],"type":"area"},{"arc":[{"x":148111,"y":175315},{"x":-13,"y":-96},{"x":-52,"y":44},{"x":-15,"y":-32},{"x":-52,"y":-14},{"x":8,"y":-31},{"x":-49,"y":-10},{"x":4,"y":-38},{"x":-160,"y":-24},{"x":-79,"y":-45},{"x":-50,"y":24},{"x":-31,"y":-12},{"x":30,"y":-115},{"x":-46,"y":-51},{"x":107,"y":-95}],"type":"area"},{"arc":[{"x":146675,"y":175044},{"x":-25,"y":38},{"x":-31,"y":-13},{"x":27,"y":12},{"x":27,"y":-38},{"x":-32,"y":-57},{"x":34,"y":58}],"type":"coastline"},{"arc":[{"x":146692,"y":174959},{"x":-14,"y":34},{"x":-30,"y":-12},{"x":28,"y":-1},{"x":15,"y":-53},{"x":-1,"y":-27},{"x":-34,"y":-3},{"x":44,"y":2},{"x":13,"y":10},{"x":-21,"y":50}],"type":"coastline"},{"arc":[{"x":146692,"y":175123},{"x":3,"y":-125},{"x":50,"y":-102}],"type":"coastline"},{"arc":[{"x":146745,"y":174896},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":146746,"y":174895},{"x":24,"y":2}],"type":"area"},{"arc":[{"x":146770,"y":174897},{"x":14,"y":0}],"type":"coastline"},{"arc":[{"x":146784,"y":174897},{"x":6,"y":1}],"type":"area"},{"arc":[{"x":146790,"y":174898},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":146802,"y":174898},{"x":25,"y":2}],"type":"coastline"},{"arc":[{"x":146827,"y":174900},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":146830,"y":174900},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":146834,"y":174900},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":146836,"y":174900},{"x":14,"y":1}],"type":"coastline"},{"arc":[{"x":146850,"y":174901},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":146858,"y":174902},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":146866,"y":174902},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":146877,"y":174903},{"x":25,"y":1}],"type":"coastline"},{"arc":[{"x":146902,"y":174904},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":146905,"y":174904},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":146912,"y":174905},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":146919,"y":174905},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":146919,"y":174901},{"x":2,"y":-46}],"type":"area"},{"arc":[{"x":147639,"y":169538},{"x":-10,"y":13}],"type":"area"},{"arc":[{"x":147629,"y":169551},{"x":-103,"y":6},{"x":-38,"y":38},{"x":-70,"y":-8},{"x":-29,"y":44},{"x":-26,"y":372}],"type":"area"},{"arc":[{"x":147363,"y":170003},{"x":-53,"y":42},{"x":-21,"y":-53},{"x":-118,"y":14},{"x":-100,"y":-63},{"x":-35,"y":21},{"x":-72,"y":-156},{"x":-90,"y":18},{"x":-109,"y":100},{"x":-3,"y":101},{"x":-61,"y":-5},{"x":25,"y":41},{"x":-19,"y":169},{"x":69,"y":83},{"x":23,"y":89}],"type":"area"},{"arc":[{"x":146799,"y":170404},{"x":-115,"y":122},{"x":-74,"y":33},{"x":-144,"y":-263},{"x":-159,"y":-111}],"type":"area"},{"arc":[{"x":146307,"y":170185},{"x":-41,"y":-65},{"x":-88,"y":-7},{"x":136,"y":-218},{"x":-46,"y":-47},{"x":86,"y":-180},{"x":-23,"y":-12},{"x":87,"y":-33},{"x":35,"y":22},{"x":48,"y":-35},{"x":-118,"y":-9},{"x":28,"y":-75},{"x":-13,"y":-128},{"x":-31,"y":-23},{"x":42,"y":-81},{"x":-9,"y":-146},{"x":66,"y":-1},{"x":17,"y":-65},{"x":-34,"y":-98},{"x":-67,"y":-34},{"x":-20,"y":-55},{"x":-40,"y":-3}],"type":"area"},{"arc":[{"x":147063,"y":167784},{"x":154,"y":87},{"x":109,"y":14}],"type":"admin"},{"arc":[{"x":147326,"y":167885},{"x":-6,"y":290},{"x":127,"y":7},{"x":20,"y":50},{"x":159,"y":15},{"x":82,"y":112},{"x":-34,"y":49},{"x":-36,"y":239},{"x":-36,"y":47},{"x":28,"y":59},{"x":-35,"y":139},{"x":64,"y":53},{"x":-29,"y":99},{"x":9,"y":110},{"x":-25,"y":18},{"x":30,"y":84},{"x":-30,"y":6},{"x":56,"y":41},{"x":-20,"y":78},{"x":61,"y":35},{"x":-111,"y":84},{"x":39,"y":38}],"type":"area"},{"arc":[{"x":147887,"y":170398},{"x":-36,"y":124}],"type":"area"},{"arc":[{"x":147851,"y":170522},{"x":2,"y":-37},{"x":-94,"y":240}],"type":"area"},{"arc":[{"x":147759,"y":170725},{"x":-142,"y":-22},{"x":52,"y":-24},{"x":-13,"y":-52},{"x":57,"y":-36},{"x":-24,"y":-50},{"x":-13,"y":43},{"x":-28,"y":-26},{"x":-32,"y":33},{"x":-56,"y":7},{"x":-3,"y":36},{"x":-5,"y":-32},{"x":-36,"y":15},{"x":-2,"y":-55}],"type":"area"},{"arc":[{"x":147514,"y":170562},{"x":-21,"y":-49},{"x":-26,"y":10},{"x":16,"y":23},{"x":-34,"y":-14},{"x":-19,"y":44},{"x":-38,"y":-18},{"x":-46,"y":14},{"x":11,"y":-30},{"x":-55,"y":-31},{"x":23,"y":-39},{"x":-74,"y":-42}],"type":"area"},{"arc":[{"x":147251,"y":170430},{"x":108,"y":-335}],"type":"area"},{"arc":[{"x":147359,"y":170095},{"x":26,"y":38},{"x":69,"y":15},{"x":3,"y":28},{"x":158,"y":57},{"x":36,"y":-98},{"x":29,"y":-20},{"x":15,"y":18},{"x":33,"y":-34},{"x":16,"y":-64},{"x":18,"y":25},{"x":31,"y":-17},{"x":-7,"y":-259}],"type":"area"},{"arc":[{"x":147786,"y":169784},{"x":140,"y":-22},{"x":15,"y":63},{"x":29,"y":9}],"type":"area"},{"arc":[{"x":147970,"y":169834},{"x":-7,"y":58},{"x":-40,"y":41},{"x":10,"y":47},{"x":-40,"y":46},{"x":17,"y":28},{"x":-23,"y":24},{"x":31,"y":4},{"x":-26,"y":76},{"x":56,"y":-66},{"x":92,"y":-12},{"x":-77,"y":38},{"x":-70,"y":82},{"x":19,"y":40},{"x":-25,"y":158}],"type":"area"},{"arc":[{"x":147688,"y":171556},{"x":3,"y":37},{"x":-60,"y":-6},{"x":-19,"y":82},{"x":123,"y":185},{"x":8,"y":107}],"type":"area"},{"arc":[{"x":147393,"y":172179},{"x":41,"y":-20},{"x":53,"y":-84},{"x":-51,"y":-45},{"x":119,"y":-229},{"x":-149,"y":5},{"x":21,"y":-85},{"x":-17,"y":-61},{"x":38,"y":-1},{"x":8,"y":-26}],"type":"area"},{"arc":[{"x":147456,"y":171633},{"x":128,"y":-14},{"x":10,"y":-56},{"x":37,"y":3},{"x":2,"y":-23},{"x":55,"y":13}],"type":"area"},{"arc":[{"x":147082,"y":172201},{"x":47,"y":-142},{"x":-15,"y":35},{"x":-39,"y":-8},{"x":-48,"y":46},{"x":-64,"y":-69},{"x":52,"y":-26},{"x":12,"y":-77},{"x":225,"y":-48},{"x":-25,"y":-90},{"x":15,"y":-70},{"x":-20,"y":-26},{"x":-126,"y":-15},{"x":-50,"y":31},{"x":-26,"y":-55},{"x":61,"y":-37},{"x":-21,"y":-43},{"x":28,"y":11},{"x":72,"y":-31},{"x":-11,"y":-28},{"x":32,"y":11},{"x":46,"y":-25},{"x":25,"y":36},{"x":17,"y":-20}],"type":"area"},{"arc":[{"x":147269,"y":171561},{"x":75,"y":-21},{"x":-17,"y":75},{"x":74,"y":-8},{"x":3,"y":29},{"x":52,"y":-3}],"type":"area"},{"arc":[{"x":148654,"y":169529},{"x":-84,"y":-43},{"x":33,"y":-52},{"x":-42,"y":16},{"x":46,"y":-23},{"x":-5,"y":-26},{"x":-16,"y":29},{"x":-62,"y":-2},{"x":-29,"y":36},{"x":-49,"y":-31}],"type":"admin"},{"arc":[{"x":148446,"y":169433},{"x":15,"y":-28},{"x":-34,"y":-95},{"x":64,"y":-120},{"x":-69,"y":-57},{"x":-117,"y":48},{"x":-146,"y":-2}],"type":"area"},{"arc":[{"x":148159,"y":169179},{"x":82,"y":-93},{"x":-4,"y":-317}],"type":"area"},{"arc":[{"x":148237,"y":168769},{"x":75,"y":-77},{"x":5,"y":-115},{"x":89,"y":-181},{"x":-11,"y":-106},{"x":167,"y":-126},{"x":35,"y":-64},{"x":-21,"y":-110},{"x":-117,"y":-191}],"type":"admin"},{"arc":[{"x":148459,"y":167799},{"x":-4,"y":-46},{"x":-59,"y":-8},{"x":0,"y":-34},{"x":72,"y":-61},{"x":-47,"y":-5},{"x":22,"y":-39},{"x":-57,"y":-70}],"type":"area"},{"arc":[{"x":148386,"y":167536},{"x":75,"y":-2},{"x":45,"y":107},{"x":135,"y":-11},{"x":49,"y":34},{"x":66,"y":179},{"x":68,"y":87},{"x":73,"y":-16},{"x":93,"y":33},{"x":85,"y":-22},{"x":46,"y":33},{"x":57,"y":-11},{"x":100,"y":-116},{"x":100,"y":-27}],"type":"admin"},{"arc":[{"x":147411,"y":171175},{"x":-43,"y":-18},{"x":6,"y":18},{"x":-31,"y":6},{"x":-20,"y":70},{"x":-20,"y":-16},{"x":-15,"y":25},{"x":20,"y":53},{"x":-38,"y":-25},{"x":37,"y":56},{"x":-14,"y":89},{"x":50,"y":7},{"x":17,"y":29},{"x":-51,"y":44}],"type":"area"},{"arc":[{"x":147309,"y":171513},{"x":-72,"y":-18},{"x":-25,"y":39},{"x":-28,"y":4},{"x":-4,"y":-27},{"x":-60,"y":45},{"x":-178,"y":-93},{"x":-38,"y":-4},{"x":-22,"y":39},{"x":-94,"y":0}],"type":"area"},{"arc":[{"x":146788,"y":171498},{"x":64,"y":-90},{"x":-27,"y":-103},{"x":30,"y":-28},{"x":15,"y":-138},{"x":-42,"y":-127}],"type":"area"},{"arc":[{"x":146828,"y":171012},{"x":109,"y":-329}],"type":"area"},{"arc":[{"x":146937,"y":170683},{"x":163,"y":-126}],"type":"area"},{"arc":[{"x":147100,"y":170557},{"x":23,"y":20},{"x":-24,"y":100},{"x":35,"y":44},{"x":-26,"y":80},{"x":36,"y":-40},{"x":-11,"y":16},{"x":104,"y":5},{"x":109,"y":35},{"x":27,"y":46}],"type":"area"},{"arc":[{"x":147373,"y":170863},{"x":94,"y":9},{"x":0,"y":28},{"x":-56,"y":8},{"x":-2,"y":32},{"x":-39,"y":10},{"x":-31,"y":-43},{"x":-16,"y":30},{"x":11,"y":111},{"x":37,"y":96},{"x":40,"y":31}],"type":"area"},{"arc":[{"x":147359,"y":170095},{"x":4,"y":-92}],"type":"area"},{"arc":[{"x":147629,"y":169551},{"x":41,"y":66},{"x":39,"y":-3},{"x":30,"y":31},{"x":10,"y":103},{"x":37,"y":36}],"type":"area"},{"arc":[{"x":146788,"y":172189},{"x":58,"y":-136},{"x":-46,"y":-91},{"x":-184,"y":-39}],"type":"area"},{"arc":[{"x":146743,"y":171545},{"x":45,"y":-47}],"type":"area"},{"arc":[{"x":147309,"y":171513},{"x":7,"y":23},{"x":-47,"y":25}],"type":"area"},{"arc":[{"x":146307,"y":170185},{"x":50,"y":226},{"x":-69,"y":77},{"x":-15,"y":32},{"x":34,"y":24},{"x":-44,"y":59},{"x":68,"y":46},{"x":-17,"y":75},{"x":39,"y":34}],"type":"area"},{"arc":[{"x":144968,"y":170949},{"x":49,"y":6},{"x":144,"y":-51},{"x":36,"y":-79}],"type":"admin"},{"arc":[{"x":147411,"y":171175},{"x":61,"y":19},{"x":25,"y":-72},{"x":54,"y":31},{"x":24,"y":-18}],"type":"area"},{"arc":[{"x":147575,"y":171135},{"x":16,"y":100},{"x":45,"y":5},{"x":-12,"y":123},{"x":52,"y":8},{"x":34,"y":151}],"type":"area"},{"arc":[{"x":147710,"y":171522},{"x":-22,"y":34}],"type":"area"},{"arc":[{"x":147892,"y":171491},{"x":-36,"y":-36},{"x":-93,"y":69},{"x":-48,"y":14},{"x":-5,"y":-16}],"type":"area"},{"arc":[{"x":147575,"y":171135},{"x":76,"y":-57},{"x":-72,"y":-18},{"x":3,"y":-19},{"x":27,"y":-49},{"x":55,"y":1},{"x":95,"y":-268}],"type":"area"},{"arc":[{"x":147851,"y":170522},{"x":78,"y":166},{"x":-18,"y":38},{"x":26,"y":50}],"type":"area"},{"arc":[{"x":147937,"y":170776},{"x":90,"y":159},{"x":-53,"y":112},{"x":-59,"y":17},{"x":-9,"y":76},{"x":118,"y":-5}],"type":"area"},{"arc":[{"x":148024,"y":171135},{"x":13,"y":40},{"x":-43,"y":16},{"x":55,"y":72},{"x":-38,"y":59},{"x":-136,"y":18},{"x":126,"y":12},{"x":-46,"y":15},{"x":-5,"y":46},{"x":43,"y":3},{"x":-33,"y":1},{"x":31,"y":23},{"x":-27,"y":-1},{"x":-2,"y":62},{"x":-70,"y":-10}],"type":"area"},{"arc":[{"x":147251,"y":170430},{"x":-151,"y":127}],"type":"area"},{"arc":[{"x":146937,"y":170683},{"x":-10,"y":-29},{"x":-12,"y":14},{"x":-78,"y":-28},{"x":10,"y":-39},{"x":-90,"y":-71},{"x":67,"y":-107},{"x":-25,"y":-19}],"type":"area"},{"arc":[{"x":148465,"y":171249},{"x":-165,"y":46},{"x":-41,"y":-42},{"x":-17,"y":79}],"type":"area"},{"arc":[{"x":148242,"y":171332},{"x":-36,"y":-103},{"x":-79,"y":-14},{"x":-40,"y":-73},{"x":-63,"y":-7}],"type":"area"},{"arc":[{"x":147937,"y":170776},{"x":120,"y":2},{"x":35,"y":-38},{"x":81,"y":-14},{"x":59,"y":-59},{"x":85,"y":3}],"type":"area"},{"arc":[{"x":147373,"y":170863},{"x":108,"y":-111},{"x":1,"y":-152},{"x":32,"y":-38}],"type":"area"},{"arc":[{"x":148100,"y":169656},{"x":-47,"y":-4},{"x":12,"y":34},{"x":-74,"y":67},{"x":16,"y":13},{"x":66,"y":-35},{"x":-27,"y":49}],"type":"admin"},{"arc":[{"x":148046,"y":169780},{"x":-36,"y":3},{"x":-40,"y":51}],"type":"area"},{"arc":[{"x":147639,"y":169538},{"x":180,"y":-28},{"x":71,"y":-87},{"x":175,"y":-65}],"type":"area"},{"arc":[{"x":148065,"y":169358},{"x":41,"y":80},{"x":41,"y":5},{"x":16,"y":29},{"x":-63,"y":184}],"type":"area"},{"arc":[{"x":147887,"y":170398},{"x":55,"y":-34},{"x":131,"y":-5},{"x":13,"y":-34},{"x":101,"y":23},{"x":41,"y":-13},{"x":43,"y":-172}],"type":"area"},{"arc":[{"x":148299,"y":171452},{"x":-57,"y":-120}],"type":"area"},{"arc":[{"x":148162,"y":171744},{"x":-128,"y":-118},{"x":-13,"y":-63},{"x":-42,"y":43},{"x":-87,"y":-115}],"type":"area"},{"arc":[{"x":148046,"y":169780},{"x":112,"y":45},{"x":17,"y":-23},{"x":52,"y":57},{"x":20,"y":-11},{"x":-7,"y":26},{"x":14,"y":-18},{"x":73,"y":56},{"x":83,"y":9},{"x":-38,"y":51},{"x":-32,"y":0},{"x":15,"y":16},{"x":-36,"y":-3},{"x":51,"y":47}],"type":"admin"},{"arc":[{"x":146828,"y":171012},{"x":-32,"y":0},{"x":-29,"y":-52},{"x":-139,"y":29},{"x":-50,"y":-73},{"x":-64,"y":-4}],"type":"area"},{"arc":[{"x":148446,"y":169433},{"x":-74,"y":79},{"x":20,"y":29},{"x":-25,"y":21},{"x":-43,"y":-4},{"x":-19,"y":33},{"x":-14,"y":-17},{"x":-72,"y":11},{"x":-61,"y":36},{"x":-8,"y":39},{"x":-50,"y":-4}],"type":"admin"},{"arc":[{"x":148065,"y":169358},{"x":102,"y":-116},{"x":-8,"y":-63}],"type":"area"},{"arc":[{"x":148459,"y":167799},{"x":-100,"y":164},{"x":-94,"y":26},{"x":-27,"y":126},{"x":-88,"y":118},{"x":-21,"y":78},{"x":-94,"y":26},{"x":-60,"y":115},{"x":-12,"y":176},{"x":-30,"y":23},{"x":-17,"y":130},{"x":-37,"y":50},{"x":16,"y":158},{"x":-27,"y":60},{"x":115,"y":7},{"x":19,"y":-55},{"x":63,"y":14},{"x":66,"y":-32},{"x":41,"y":-163},{"x":49,"y":-62},{"x":16,"y":11}],"type":"admin"},{"arc":[{"x":147326,"y":167885},{"x":17,"y":-19},{"x":45,"y":28},{"x":100,"y":0},{"x":60,"y":-72},{"x":198,"y":20},{"x":9,"y":-18},{"x":237,"y":-14},{"x":44,"y":-80},{"x":119,"y":-73},{"x":17,"y":-90},{"x":45,"y":-2},{"x":38,"y":70},{"x":103,"y":-115}],"type":"admin"},{"arc":[{"x":148358,"y":167520},{"x":28,"y":16}],"type":"admin"},{"arc":[{"x":147115,"y":167471},{"x":240,"y":-263},{"x":17,"y":-88},{"x":-22,"y":-55},{"x":63,"y":-104},{"x":-3,"y":-101},{"x":120,"y":-208},{"x":56,"y":-49},{"x":26,"y":-90},{"x":135,"y":-167},{"x":211,"y":-106}],"type":"admin"},{"arc":[{"x":147958,"y":166240},{"x":20,"y":99},{"x":54,"y":65},{"x":-26,"y":69},{"x":25,"y":50},{"x":167,"y":34},{"x":29,"y":118},{"x":54,"y":35},{"x":20,"y":94},{"x":79,"y":85},{"x":-27,"y":188},{"x":77,"y":35},{"x":40,"y":93},{"x":-177,"y":259},{"x":65,"y":56}],"type":"area"},{"arc":[{"x":147958,"y":166240},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":147961,"y":166236},{"x":146,"y":-70},{"x":1,"y":-49},{"x":64,"y":-82},{"x":100,"y":-32},{"x":76,"y":-58}],"type":"admin"},{"arc":[{"x":148348,"y":165945},{"x":149,"y":31},{"x":55,"y":-19},{"x":43,"y":-83},{"x":47,"y":2},{"x":93,"y":-59},{"x":394,"y":-17},{"x":-23,"y":-73},{"x":91,"y":-97},{"x":78,"y":-60},{"x":86,"y":11},{"x":67,"y":-48}],"type":"admin"},{"arc":[{"x":136069,"y":169846},{"x":-36,"y":67},{"x":26,"y":55},{"x":-108,"y":124},{"x":-6,"y":69},{"x":3,"y":-21},{"x":2,"y":23},{"x":44,"y":-24},{"x":-65,"y":84},{"x":-14,"y":162},{"x":-37,"y":12},{"x":-32,"y":87},{"x":-143,"y":134},{"x":-187,"y":60},{"x":-37,"y":-8},{"x":-154,"y":88},{"x":-105,"y":-56},{"x":-210,"y":60},{"x":-66,"y":-53},{"x":-83,"y":-10},{"x":-89,"y":67},{"x":-95,"y":-58},{"x":-57,"y":3},{"x":11,"y":-56},{"x":41,"y":-15},{"x":-14,"y":-15},{"x":-75,"y":39},{"x":-5,"y":27},{"x":-42,"y":-88},{"x":62,"y":-102},{"x":-27,"y":-103},{"x":16,"y":-137},{"x":224,"y":-296},{"x":20,"y":-150},{"x":107,"y":33},{"x":111,"y":-89},{"x":83,"y":-6},{"x":86,"y":6},{"x":41,"y":43},{"x":87,"y":1},{"x":67,"y":-59},{"x":2,"y":20},{"x":44,"y":-2},{"x":12,"y":-45},{"x":13,"y":39},{"x":36,"y":-25},{"x":120,"y":-13},{"x":50,"y":35},{"x":76,"y":-28},{"x":97,"y":3},{"x":24,"y":32},{"x":68,"y":13},{"x":40,"y":50},{"x":74,"y":23}],"type":"coastline"},{"arc":[{"x":132707,"y":169014},{"x":-51,"y":100},{"x":-70,"y":29},{"x":-143,"y":-116},{"x":-18,"y":-57},{"x":78,"y":-85},{"x":103,"y":-3},{"x":106,"y":81},{"x":-19,"y":41},{"x":35,"y":10},{"x":-21,"y":0}],"type":"coastline"},{"arc":[{"x":130101,"y":168967},{"x":-29,"y":49},{"x":-10,"y":-40},{"x":39,"y":-9}],"type":"coastline"},{"arc":[{"x":130221,"y":168314},{"x":-34,"y":38},{"x":-25,"y":-24},{"x":26,"y":34},{"x":-54,"y":55},{"x":21,"y":11},{"x":-20,"y":26},{"x":-85,"y":-13},{"x":-16,"y":-55},{"x":-27,"y":14},{"x":10,"y":-28},{"x":-52,"y":-17},{"x":12,"y":-101},{"x":44,"y":4},{"x":11,"y":-35},{"x":-71,"y":-29},{"x":0,"y":-54},{"x":16,"y":18},{"x":34,"y":-40},{"x":68,"y":80},{"x":43,"y":-15},{"x":-28,"y":51},{"x":33,"y":-4},{"x":-20,"y":15},{"x":40,"y":27},{"x":46,"y":-28},{"x":28,"y":70}],"type":"coastline"},{"arc":[{"x":130711,"y":168433},{"x":-38,"y":52},{"x":-70,"y":-5},{"x":9,"y":-31},{"x":39,"y":21},{"x":60,"y":-37}],"type":"coastline"},{"arc":[{"x":131417,"y":169001},{"x":-45,"y":86},{"x":-114,"y":49},{"x":-57,"y":-57},{"x":-33,"y":-4},{"x":-53,"y":52},{"x":-15,"y":-23},{"x":-50,"y":6},{"x":-29,"y":-48},{"x":-53,"y":-21},{"x":6,"y":26},{"x":-23,"y":-19},{"x":18,"y":-20},{"x":-72,"y":-42},{"x":-587,"y":-20},{"x":-165,"y":-52},{"x":62,"y":-136},{"x":158,"y":-136},{"x":135,"y":7},{"x":42,"y":-38},{"x":71,"y":18},{"x":35,"y":-36},{"x":-36,"y":61},{"x":38,"y":25},{"x":-12,"y":-33},{"x":24,"y":19},{"x":-10,"y":21},{"x":26,"y":16},{"x":1,"y":-28},{"x":42,"y":49},{"x":203,"y":50},{"x":109,"y":-20},{"x":90,"y":122},{"x":25,"y":-11},{"x":78,"y":34},{"x":6,"y":56},{"x":34,"y":19},{"x":-53,"y":-20},{"x":39,"y":54},{"x":71,"y":19},{"x":94,"y":-25}],"type":"coastline"},{"arc":[{"x":132011,"y":169075},{"x":-50,"y":95},{"x":-52,"y":38},{"x":-2,"y":-79},{"x":104,"y":-54}],"type":"coastline"},{"arc":[{"x":128311,"y":166880},{"x":-24,"y":20},{"x":-6,"y":-39},{"x":30,"y":19}],"type":"coastline"},{"arc":[{"x":128339,"y":166907},{"x":-27,"y":5},{"x":3,"y":-24},{"x":24,"y":19}],"type":"coastline"},{"arc":[{"x":128607,"y":168102},{"x":-43,"y":-3},{"x":35,"y":-29},{"x":8,"y":32}],"type":"coastline"},{"arc":[{"x":128647,"y":168068},{"x":-8,"y":19},{"x":-34,"y":-24},{"x":31,"y":-20},{"x":11,"y":25}],"type":"coastline"},{"arc":[{"x":129042,"y":167595},{"x":-52,"y":58},{"x":-3,"y":75},{"x":-66,"y":119},{"x":-63,"y":34},{"x":-123,"y":9},{"x":-34,"y":39},{"x":-60,"y":-25},{"x":-55,"y":31},{"x":-42,"y":-10},{"x":2,"y":-51},{"x":52,"y":-21},{"x":-45,"y":-114},{"x":-37,"y":-27},{"x":-21,"y":30},{"x":17,"y":-39},{"x":-29,"y":-3},{"x":13,"y":19},{"x":-34,"y":11},{"x":28,"y":24},{"x":-74,"y":-40},{"x":10,"y":-26},{"x":-23,"y":13},{"x":45,"y":-62},{"x":-114,"y":-24},{"x":25,"y":-19},{"x":-51,"y":-12},{"x":28,"y":-9},{"x":-36,"y":-33},{"x":23,"y":-3},{"x":3,"y":-50},{"x":-35,"y":-41},{"x":68,"y":-42},{"x":-20,"y":-24},{"x":23,"y":-34},{"x":-8,"y":24},{"x":60,"y":-20},{"x":66,"y":22},{"x":34,"y":108},{"x":66,"y":3},{"x":26,"y":-56},{"x":13,"y":41},{"x":-24,"y":16},{"x":94,"y":-24},{"x":27,"y":39},{"x":26,"y":-58},{"x":37,"y":-2},{"x":12,"y":76},{"x":46,"y":19},{"x":96,"y":-36},{"x":29,"y":34},{"x":59,"y":3},{"x":21,"y":58}],"type":"coastline"},{"arc":[{"x":127535,"y":171617},{"x":-5,"y":77},{"x":-54,"y":71},{"x":-40,"y":9},{"x":-64,"y":123},{"x":-116,"y":39},{"x":-6,"y":25},{"x":-22,"y":-20},{"x":-87,"y":29},{"x":-30,"y":-34},{"x":-96,"y":-20},{"x":-45,"y":21},{"x":11,"y":63},{"x":-29,"y":-65},{"x":-120,"y":1},{"x":-135,"y":-128},{"x":-71,"y":-177},{"x":-43,"y":3},{"x":-36,"y":-42},{"x":37,"y":-49},{"x":-33,"y":-50},{"x":24,"y":-85},{"x":-45,"y":-107},{"x":38,"y":-95},{"x":53,"y":-50},{"x":-12,"y":-59},{"x":131,"y":-47},{"x":44,"y":6},{"x":0,"y":29},{"x":29,"y":10},{"x":-19,"y":-25},{"x":27,"y":5},{"x":-6,"y":-27},{"x":37,"y":30},{"x":75,"y":-76},{"x":86,"y":93},{"x":40,"y":-16},{"x":115,"y":83},{"x":95,"y":2},{"x":-33,"y":0},{"x":34,"y":66},{"x":118,"y":-59},{"x":74,"y":24},{"x":43,"y":71},{"x":-6,"y":107},{"x":19,"y":-1},{"x":-32,"y":43},{"x":56,"y":83},{"x":-1,"y":119}],"type":"coastline"},{"arc":[{"x":124707,"y":172354},{"x":-110,"y":154},{"x":-267,"y":139},{"x":-120,"y":-38},{"x":-128,"y":-89},{"x":36,"y":-292},{"x":63,"y":-124},{"x":62,"y":-25},{"x":191,"y":-2},{"x":198,"y":127},{"x":25,"y":-22},{"x":-15,"y":26},{"x":33,"y":10},{"x":32,"y":136}],"type":"coastline"},{"arc":[{"x":115033,"y":173204},{"x":-68,"y":42},{"x":-44,"y":76},{"x":-120,"y":42},{"x":-25,"y":-12},{"x":17,"y":-157},{"x":101,"y":-43},{"x":66,"y":-59},{"x":71,"y":17},{"x":-28,"y":24},{"x":30,"y":70}],"type":"coastline"},{"arc":[{"x":115316,"y":173971},{"x":-14,"y":147},{"x":-116,"y":98},{"x":-79,"y":128},{"x":-113,"y":20},{"x":-14,"y":78},{"x":-26,"y":-6},{"x":17,"y":-31},{"x":-30,"y":39},{"x":55,"y":3},{"x":-67,"y":51},{"x":8,"y":33},{"x":-60,"y":42},{"x":-12,"y":-13},{"x":5,"y":45},{"x":-23,"y":-47},{"x":-23,"y":4},{"x":-35,"y":110},{"x":-4,"y":195},{"x":-12,"y":-14},{"x":-135,"y":59},{"x":-80,"y":67},{"x":-97,"y":-32},{"x":-93,"y":52},{"x":-59,"y":-9},{"x":-56,"y":-203},{"x":-62,"y":-16},{"x":-41,"y":-43},{"x":-151,"y":2},{"x":-67,"y":37},{"x":-36,"y":-56},{"x":-19,"y":10},{"x":168,"y":-138},{"x":-2,"y":-93},{"x":70,"y":-86},{"x":-20,"y":-59},{"x":43,"y":-29},{"x":45,"y":-96},{"x":77,"y":-48},{"x":243,"y":-1},{"x":28,"y":-15},{"x":-7,"y":-35},{"x":8,"y":35},{"x":32,"y":-19},{"x":19,"y":35},{"x":-12,"y":-40},{"x":-31,"y":2},{"x":18,"y":-51},{"x":-28,"y":-8},{"x":45,"y":12},{"x":-14,"y":-19},{"x":32,"y":-15},{"x":8,"y":-100},{"x":35,"y":-48},{"x":129,"y":-24},{"x":75,"y":-71},{"x":129,"y":-48},{"x":183,"y":-13},{"x":27,"y":36},{"x":100,"y":39},{"x":39,"y":147}],"type":"coastline"},{"arc":[{"x":106642,"y":173955},{"x":-55,"y":118},{"x":-147,"y":118},{"x":-127,"y":-19},{"x":-58,"y":-114},{"x":51,"y":-111},{"x":12,"y":14},{"x":44,"y":-46},{"x":200,"y":-2},{"x":57,"y":7},{"x":23,"y":35}],"type":"coastline"},{"arc":[{"x":2524,"y":191570},{"x":-40,"y":104},{"x":-121,"y":-4},{"x":-66,"y":-31},{"x":-21,"y":-143},{"x":49,"y":-18},{"x":158,"y":18},{"x":41,"y":74}],"type":"coastline"},{"arc":[{"x":3189,"y":321037},{"x":-205,"y":22},{"x":41,"y":-160},{"x":164,"y":138}],"type":"coastline"},{"arc":[{"x":9629,"y":189766},{"x":-108,"y":-24},{"x":69,"y":-2},{"x":39,"y":26}],"type":"coastline"},{"arc":[{"x":9705,"y":190136},{"x":-24,"y":67},{"x":-138,"y":113},{"x":-265,"y":56},{"x":-103,"y":-104},{"x":-4,"y":-116},{"x":-314,"y":-405},{"x":100,"y":-3},{"x":97,"y":54},{"x":151,"y":33},{"x":140,"y":-18},{"x":40,"y":-35},{"x":-20,"y":-30},{"x":37,"y":0},{"x":250,"y":368},{"x":53,"y":20}],"type":"coastline"},{"arc":[{"x":17755,"y":189729},{"x":-22,"y":45},{"x":-101,"y":43},{"x":-164,"y":9},{"x":-67,"y":-60},{"x":-22,"y":-109},{"x":126,"y":-50},{"x":135,"y":5},{"x":94,"y":64},{"x":21,"y":53}],"type":"coastline"},{"arc":[{"x":31872,"y":199328},{"x":-18,"y":61},{"x":-79,"y":-32},{"x":-45,"y":-140},{"x":112,"y":14},{"x":30,"y":97}],"type":"coastline"},{"arc":[{"x":31873,"y":198733},{"x":-63,"y":66},{"x":-59,"y":-25},{"x":-83,"y":21},{"x":-18,"y":-32},{"x":-47,"y":-11},{"x":60,"y":-62},{"x":30,"y":45},{"x":151,"y":-37},{"x":29,"y":35}],"type":"coastline"},{"arc":[{"x":32014,"y":199516},{"x":-102,"y":96},{"x":-48,"y":-136},{"x":34,"y":-10},{"x":31,"y":27},{"x":25,"y":-20},{"x":60,"y":43}],"type":"coastline"},{"arc":[{"x":32176,"y":198800},{"x":-36,"y":7},{"x":10,"y":-19},{"x":-38,"y":-18},{"x":-13,"y":-118},{"x":45,"y":24},{"x":32,"y":124}],"type":"coastline"},{"arc":[{"x":32232,"y":198824},{"x":-24,"y":27},{"x":-29,"y":-13},{"x":53,"y":-14}],"type":"coastline"},{"arc":[{"x":32456,"y":198486},{"x":-31,"y":30},{"x":-93,"y":19},{"x":-64,"y":-38},{"x":-9,"y":-33},{"x":40,"y":-12},{"x":-33,"y":-26},{"x":52,"y":23},{"x":51,"y":-49},{"x":43,"y":7},{"x":44,"y":79}],"type":"coastline"},{"arc":[{"x":33768,"y":198433},{"x":-189,"y":89},{"x":18,"y":51},{"x":-32,"y":35},{"x":133,"y":-9},{"x":-31,"y":15},{"x":18,"y":46},{"x":-27,"y":26},{"x":44,"y":38},{"x":-69,"y":47},{"x":-13,"y":66},{"x":-30,"y":-15},{"x":19,"y":-34},{"x":-40,"y":-75},{"x":-81,"y":-55},{"x":20,"y":-16},{"x":-108,"y":5},{"x":-19,"y":59},{"x":40,"y":134},{"x":38,"y":34},{"x":-69,"y":-28},{"x":-47,"y":12},{"x":-93,"y":-56},{"x":-163,"y":25},{"x":-64,"y":151},{"x":18,"y":37},{"x":35,"y":0},{"x":-4,"y":71},{"x":-52,"y":-10},{"x":12,"y":-36},{"x":-35,"y":3},{"x":14,"y":-109},{"x":-83,"y":3},{"x":-57,"y":-36},{"x":-92,"y":15},{"x":-26,"y":47},{"x":-71,"y":40},{"x":-179,"y":-4},{"x":-33,"y":28},{"x":-52,"y":-51},{"x":26,"y":-22},{"x":-18,"y":-30},{"x":90,"y":51},{"x":10,"y":-22},{"x":62,"y":4},{"x":14,"y":-25},{"x":26,"y":23},{"x":19,"y":-33},{"x":67,"y":-22},{"x":-8,"y":-96},{"x":121,"y":-12},{"x":-30,"y":-35},{"x":-36,"y":15},{"x":16,"y":-48},{"x":116,"y":-26},{"x":21,"y":13},{"x":30,"y":-44},{"x":49,"y":-23},{"x":15,"y":26},{"x":33,"y":-41},{"x":66,"y":45},{"x":49,"y":0},{"x":26,"y":-26},{"x":-11,"y":-54},{"x":14,"y":23},{"x":104,"y":10},{"x":64,"y":-85},{"x":48,"y":-6},{"x":49,"y":-54},{"x":147,"y":-22},{"x":73,"y":-60},{"x":96,"y":3},{"x":2,"y":30}],"type":"coastline"},{"arc":[{"x":37941,"y":198930},{"x":-92,"y":38},{"x":-27,"y":-1},{"x":25,"y":-24},{"x":-62,"y":13},{"x":53,"y":-26},{"x":69,"y":5},{"x":27,"y":-30},{"x":7,"y":25}],"type":"coastline"},{"arc":[{"x":38596,"y":199626},{"x":-11,"y":63},{"x":-45,"y":15},{"x":-14,"y":-33},{"x":70,"y":-45}],"type":"coastline"},{"arc":[{"x":38722,"y":199129},{"x":-29,"y":9},{"x":26,"y":25},{"x":-1,"y":84},{"x":-26,"y":9},{"x":-2,"y":76},{"x":-38,"y":22},{"x":11,"y":38},{"x":-34,"y":-12},{"x":-116,"y":76},{"x":-49,"y":-20},{"x":-48,"y":17},{"x":-2,"y":52},{"x":-42,"y":30},{"x":-118,"y":-19},{"x":-78,"y":22},{"x":-39,"y":-29},{"x":-72,"y":76},{"x":-42,"y":-22},{"x":-11,"y":17},{"x":-3,"y":-26},{"x":94,"y":-59},{"x":-47,"y":-71},{"x":-42,"y":47},{"x":-57,"y":-5},{"x":-14,"y":-32},{"x":-4,"y":25},{"x":-17,"y":-12},{"x":-19,"y":30},{"x":-23,"y":-20},{"x":-3,"y":34},{"x":-39,"y":12},{"x":5,"y":-103},{"x":49,"y":12},{"x":17,"y":-24},{"x":-30,"y":-43},{"x":15,"y":-26},{"x":-28,"y":-4},{"x":75,"y":-51},{"x":20,"y":-73},{"x":-55,"y":-57},{"x":44,"y":-70},{"x":-56,"y":-13},{"x":65,"y":-18},{"x":64,"y":60},{"x":63,"y":-3},{"x":-9,"y":-34},{"x":80,"y":11},{"x":-26,"y":52},{"x":29,"y":31},{"x":40,"y":-23},{"x":-6,"y":-22},{"x":46,"y":20},{"x":0,"y":-29},{"x":50,"y":-30},{"x":-10,"y":-48},{"x":45,"y":-8},{"x":11,"y":22},{"x":-34,"y":34},{"x":41,"y":69},{"x":-37,"y":96},{"x":24,"y":27},{"x":33,"y":-9},{"x":74,"y":36},{"x":34,"y":-15},{"x":-14,"y":-30},{"x":32,"y":-22},{"x":79,"y":19},{"x":30,"y":-47},{"x":36,"y":39},{"x":-5,"y":-49},{"x":-62,"y":-25},{"x":-11,"y":-41},{"x":-24,"y":-8},{"x":-19,"y":25},{"x":-17,"y":-71},{"x":43,"y":-6},{"x":23,"y":-35},{"x":126,"y":3},{"x":34,"y":107}],"type":"coastline"},{"arc":[{"x":38886,"y":199050},{"x":-34,"y":29},{"x":26,"y":-44},{"x":8,"y":15}],"type":"coastline"},{"arc":[{"x":38922,"y":198872},{"x":-70,"y":39},{"x":-38,"y":-109},{"x":49,"y":43},{"x":57,"y":-27},{"x":2,"y":54}],"type":"coastline"},{"arc":[{"x":39021,"y":198982},{"x":-31,"y":31},{"x":20,"y":-55},{"x":11,"y":24}],"type":"coastline"},{"arc":[{"x":39207,"y":199112},{"x":-7,"y":25},{"x":-37,"y":-2},{"x":-5,"y":23},{"x":-30,"y":-15},{"x":-67,"y":57},{"x":19,"y":70},{"x":-79,"y":-19},{"x":73,"y":120},{"x":-12,"y":31},{"x":-45,"y":-19},{"x":-19,"y":37},{"x":-57,"y":25},{"x":8,"y":31},{"x":-95,"y":-8},{"x":-29,"y":99},{"x":-54,"y":0},{"x":2,"y":-361},{"x":29,"y":21},{"x":26,"y":-14},{"x":21,"y":42},{"x":33,"y":6},{"x":63,"y":-88},{"x":-24,"y":-108},{"x":43,"y":38},{"x":70,"y":-42},{"x":40,"y":67},{"x":42,"y":-43},{"x":91,"y":27}],"type":"coastline"},{"arc":[{"x":39788,"y":199087},{"x":-40,"y":2},{"x":-23,"y":65},{"x":-29,"y":-11},{"x":11,"y":53},{"x":-91,"y":-54},{"x":-100,"y":39},{"x":8,"y":40},{"x":-121,"y":-49},{"x":-18,"y":20},{"x":-97,"y":-72},{"x":-5,"y":-47},{"x":-74,"y":2},{"x":51,"y":-87},{"x":31,"y":12},{"x":-4,"y":50},{"x":59,"y":6},{"x":32,"y":-54},{"x":23,"y":37},{"x":156,"y":-7},{"x":7,"y":39},{"x":55,"y":-1},{"x":22,"y":-32},{"x":76,"y":34},{"x":36,"y":-37},{"x":35,"y":52}],"type":"coastline"},{"arc":[{"x":39873,"y":199184},{"x":-33,"y":-9},{"x":-4,"y":-44},{"x":27,"y":8},{"x":10,"y":45}],"type":"coastline"},{"arc":[{"x":40546,"y":185503},{"x":-37,"y":48},{"x":-39,"y":-43},{"x":25,"y":-35},{"x":51,"y":30}],"type":"coastline"},{"arc":[{"x":43577,"y":199270},{"x":-36,"y":13},{"x":16,"y":-35},{"x":20,"y":22}],"type":"coastline"},{"arc":[{"x":43738,"y":199316},{"x":-75,"y":7},{"x":-62,"y":44},{"x":-26,"y":-15},{"x":10,"y":-32},{"x":60,"y":-4},{"x":46,"y":-77},{"x":47,"y":77}],"type":"coastline"},{"arc":[{"x":45430,"y":198941},{"x":-66,"y":37},{"x":-4,"y":46},{"x":-47,"y":27},{"x":-57,"y":18},{"x":-34,"y":-20},{"x":89,"y":-81},{"x":-60,"y":-23},{"x":50,"y":-35},{"x":45,"y":8},{"x":62,"y":-32},{"x":-16,"y":33},{"x":38,"y":22}],"type":"coastline"},{"arc":[{"x":45791,"y":198755},{"x":-26,"y":21},{"x":-34,"y":-12},{"x":-45,"y":15},{"x":-18,"y":-11},{"x":32,"y":6},{"x":22,"y":-28},{"x":69,"y":9}],"type":"coastline"},{"arc":[{"x":45998,"y":198443},{"x":-40,"y":-11},{"x":19,"y":-24},{"x":21,"y":35}],"type":"coastline"},{"arc":[{"x":46098,"y":198488},{"x":3,"y":17},{"x":-44,"y":-1},{"x":24,"y":35},{"x":-22,"y":26},{"x":41,"y":39},{"x":-66,"y":58},{"x":-130,"y":7},{"x":-27,"y":-19},{"x":18,"y":-86},{"x":77,"y":3},{"x":37,"y":-44},{"x":-42,"y":-37},{"x":72,"y":-48},{"x":-7,"y":-26},{"x":45,"y":14},{"x":21,"y":62}],"type":"coastline"},{"arc":[{"x":46469,"y":198234},{"x":-6,"y":40},{"x":-18,"y":-18},{"x":24,"y":-22}],"type":"coastline"},{"arc":[{"x":46501,"y":198129},{"x":-20,"y":57},{"x":-35,"y":9},{"x":55,"y":-66}],"type":"coastline"},{"arc":[{"x":141435,"y":172357},{"x":-38,"y":20},{"x":18,"y":-43},{"x":20,"y":23}],"type":"coastline"},{"arc":[{"x":142255,"y":173298},{"x":-15,"y":15},{"x":-31,"y":-36},{"x":46,"y":21}],"type":"coastline"},{"arc":[{"x":142502,"y":172853},{"x":-69,"y":52},{"x":-38,"y":-58},{"x":-29,"y":16},{"x":-31,"y":-32},{"x":79,"y":-63},{"x":88,"y":85}],"type":"coastline"},{"arc":[{"x":141054,"y":172986},{"x":25,"y":-38},{"x":70,"y":-13},{"x":51,"y":-50},{"x":66,"y":0},{"x":-43,"y":-73},{"x":-15,"y":-156},{"x":-69,"y":-28},{"x":-29,"y":-92},{"x":-95,"y":-57}],"type":"area"},{"arc":[{"x":141015,"y":172479},{"x":3,"y":-66},{"x":58,"y":-14},{"x":-14,"y":-85},{"x":26,"y":-9},{"x":47,"y":77},{"x":41,"y":-28},{"x":19,"y":34},{"x":13,"y":-22},{"x":9,"y":34},{"x":27,"y":1},{"x":-28,"y":28},{"x":23,"y":10},{"x":8,"y":-31},{"x":24,"y":7},{"x":-33,"y":140},{"x":75,"y":43},{"x":41,"y":-3},{"x":13,"y":-29},{"x":-26,"y":-15},{"x":32,"y":12},{"x":41,"y":-32},{"x":19,"y":-171},{"x":32,"y":-18},{"x":77,"y":17},{"x":37,"y":-53},{"x":55,"y":9},{"x":160,"y":-144},{"x":24,"y":-81}],"type":"coastline"},{"arc":[{"x":141818,"y":172090},{"x":26,"y":218},{"x":33,"y":44},{"x":-4,"y":101},{"x":47,"y":53},{"x":-7,"y":29},{"x":-45,"y":6},{"x":-23,"y":53},{"x":90,"y":144},{"x":28,"y":-31},{"x":67,"y":9},{"x":28,"y":33},{"x":87,"y":-194}],"type":"admin"},{"arc":[{"x":142145,"y":172555},{"x":32,"y":-22},{"x":61,"y":32},{"x":102,"y":-20},{"x":226,"y":-131}],"type":"area"},{"arc":[{"x":142726,"y":172643},{"x":-38,"y":6},{"x":16,"y":38},{"x":15,"y":10},{"x":1,"y":1},{"x":5,"y":4},{"x":3,"y":2},{"x":4,"y":3},{"x":60,"y":31},{"x":-40,"y":84},{"x":13,"y":134},{"x":-76,"y":-7},{"x":-9,"y":-57},{"x":-50,"y":4},{"x":27,"y":-50},{"x":-16,"y":-24},{"x":-35,"y":24},{"x":-39,"y":-31},{"x":1,"y":-35},{"x":-51,"y":1},{"x":-14,"y":-26},{"x":53,"y":-59},{"x":-99,"y":58},{"x":-2,"y":-36},{"x":-39,"y":1},{"x":6,"y":-74},{"x":-34,"y":33},{"x":-35,"y":-15},{"x":17,"y":27},{"x":-26,"y":37},{"x":52,"y":31},{"x":-20,"y":-9},{"x":-3,"y":36},{"x":-60,"y":36},{"x":-6,"y":-16},{"x":-50,"y":19},{"x":0,"y":28},{"x":41,"y":-3},{"x":-33,"y":6},{"x":19,"y":13},{"x":-28,"y":-16},{"x":-28,"y":40},{"x":-8,"y":-18},{"x":-29,"y":71},{"x":25,"y":20},{"x":17,"y":-36},{"x":12,"y":15},{"x":70,"y":-39},{"x":-15,"y":31},{"x":26,"y":-3},{"x":-51,"y":51},{"x":38,"y":9},{"x":31,"y":-35},{"x":21,"y":21},{"x":45,"y":-28},{"x":5,"y":130},{"x":-70,"y":65},{"x":-7,"y":-28},{"x":-29,"y":-1},{"x":-46,"y":79},{"x":-3,"y":-136},{"x":-21,"y":1},{"x":3,"y":22},{"x":-39,"y":11},{"x":10,"y":40},{"x":-58,"y":-18},{"x":-66,"y":104},{"x":-16,"y":-29},{"x":-18,"y":42},{"x":-17,"y":-21},{"x":-12,"y":14},{"x":32,"y":13},{"x":-74,"y":18},{"x":-10,"y":74},{"x":-23,"y":-11},{"x":19,"y":14},{"x":-28,"y":234},{"x":33,"y":120},{"x":-20,"y":10},{"x":-7,"y":-27},{"x":-27,"y":21},{"x":12,"y":19},{"x":10,"y":-19},{"x":-21,"y":64},{"x":-36,"y":15},{"x":-27,"y":57},{"x":-40,"y":8},{"x":-50,"y":-95},{"x":-25,"y":4},{"x":5,"y":-41},{"x":-22,"y":-3},{"x":3,"y":26},{"x":-6,"y":-23},{"x":-65,"y":-10},{"x":-17,"y":-66},{"x":33,"y":3},{"x":-32,"y":-28},{"x":98,"y":-70},{"x":-15,"y":-10},{"x":-127,"y":81},{"x":-22,"y":-25},{"x":0,"y":28},{"x":32,"y":4},{"x":-52,"y":44},{"x":-115,"y":-7},{"x":3,"y":-70},{"x":40,"y":4},{"x":16,"y":-49},{"x":-57,"y":-44},{"x":-43,"y":-1},{"x":20,"y":70},{"x":-59,"y":-49},{"x":12,"y":77},{"x":-25,"y":24},{"x":-63,"y":-1},{"x":-33,"y":-363},{"x":-199,"y":-260}],"type":"coastline"},{"arc":[{"x":143603,"y":169974},{"x":-78,"y":13},{"x":-317,"y":-63},{"x":-27,"y":34},{"x":-126,"y":-15}],"type":"admin"},{"arc":[{"x":143055,"y":169943},{"x":-140,"y":-10},{"x":-19,"y":59},{"x":-43,"y":-40},{"x":-151,"y":-19},{"x":-101,"y":51}],"type":"area"},{"arc":[{"x":142601,"y":169984},{"x":-48,"y":-111},{"x":17,"y":29},{"x":20,"y":0},{"x":-21,"y":-11},{"x":22,"y":-17},{"x":-27,"y":3},{"x":29,"y":-5},{"x":6,"y":-54},{"x":-38,"y":-293}],"type":"coastline"},{"arc":[{"x":142561,"y":169525},{"x":112,"y":-9},{"x":28,"y":51},{"x":65,"y":-102},{"x":-34,"y":-9},{"x":-7,"y":-48},{"x":-33,"y":2},{"x":-42,"y":-137},{"x":27,"y":34},{"x":45,"y":-157},{"x":77,"y":23},{"x":-10,"y":-122},{"x":44,"y":-15},{"x":10,"y":-205},{"x":-47,"y":-39},{"x":-24,"y":-85}],"type":"admin"},{"arc":[{"x":142772,"y":168707},{"x":13,"y":-17}],"type":"admin"},{"arc":[{"x":142785,"y":168690},{"x":79,"y":-49},{"x":-13,"y":-43},{"x":144,"y":-17},{"x":97,"y":129}],"type":"admin"},{"arc":[{"x":143092,"y":168710},{"x":27,"y":165},{"x":209,"y":80},{"x":8,"y":175},{"x":102,"y":-15}],"type":"area"},{"arc":[{"x":143438,"y":169115},{"x":-4,"y":106},{"x":89,"y":23},{"x":-63,"y":12},{"x":-64,"y":96},{"x":-88,"y":33},{"x":-22,"y":53},{"x":103,"y":-28},{"x":72,"y":8},{"x":-55,"y":56},{"x":30,"y":15},{"x":1,"y":67},{"x":41,"y":18},{"x":-58,"y":94},{"x":108,"y":20},{"x":-3,"y":24},{"x":-120,"y":-2},{"x":76,"y":83},{"x":76,"y":16},{"x":31,"y":-26}],"type":"area"},{"arc":[{"x":143588,"y":169783},{"x":133,"y":0},{"x":-114,"y":42},{"x":-4,"y":149}],"type":"area"},{"arc":[{"x":142666,"y":172246},{"x":-2,"y":-61},{"x":-47,"y":-36},{"x":-47,"y":-155},{"x":-45,"y":-11},{"x":-53,"y":-115},{"x":-32,"y":-1},{"x":-40,"y":-48}],"type":"area"},{"arc":[{"x":142400,"y":171819},{"x":57,"y":-6},{"x":69,"y":-122},{"x":-10,"y":-53},{"x":-61,"y":-28},{"x":-27,"y":-64},{"x":58,"y":-248},{"x":-18,"y":-115},{"x":26,"y":23},{"x":-16,"y":-19},{"x":21,"y":9},{"x":4,"y":-30}],"type":"coastline"},{"arc":[{"x":142503,"y":171166},{"x":134,"y":81},{"x":83,"y":6},{"x":102,"y":60},{"x":9,"y":68},{"x":100,"y":76},{"x":23,"y":-9},{"x":-4,"y":-64},{"x":59,"y":21},{"x":53,"y":-32},{"x":-9,"y":-48},{"x":55,"y":-7},{"x":30,"y":-83}],"type":"area"},{"arc":[{"x":142443,"y":171103},{"x":-49,"y":56},{"x":-22,"y":-51},{"x":20,"y":-93},{"x":51,"y":88}],"type":"coastline"},{"arc":[{"x":142503,"y":171166},{"x":-41,"y":-59},{"x":10,"y":-34},{"x":24,"y":5},{"x":-28,"y":-13},{"x":65,"y":-7},{"x":56,"y":-77},{"x":61,"y":-339}],"type":"coastline"},{"arc":[{"x":142650,"y":170642},{"x":160,"y":56},{"x":110,"y":7},{"x":241,"y":-87},{"x":113,"y":58},{"x":-7,"y":-80},{"x":72,"y":-6},{"x":-45,"y":-25},{"x":7,"y":-22},{"x":113,"y":42},{"x":68,"y":-19},{"x":-3,"y":-153},{"x":-93,"y":-112}],"type":"area"},{"arc":[{"x":143386,"y":170301},{"x":91,"y":-56},{"x":71,"y":36},{"x":6,"y":-79},{"x":76,"y":14},{"x":13,"y":-30},{"x":46,"y":16}],"type":"admin"},{"arc":[{"x":143689,"y":170202},{"x":-7,"y":60},{"x":88,"y":59}],"type":"area"},{"arc":[{"x":143770,"y":170321},{"x":102,"y":65},{"x":42,"y":-4},{"x":-35,"y":116},{"x":43,"y":8},{"x":-14,"y":94},{"x":-69,"y":89},{"x":-73,"y":0},{"x":51,"y":155},{"x":15,"y":-24},{"x":60,"y":13},{"x":129,"y":-133},{"x":6,"y":43}],"type":"area"},{"arc":[{"x":144027,"y":170743},{"x":-37,"y":119},{"x":-29,"y":18},{"x":18,"y":52},{"x":58,"y":-18},{"x":4,"y":17},{"x":-69,"y":14},{"x":7,"y":56}],"type":"area"},{"arc":[{"x":142700,"y":168049},{"x":-49,"y":27},{"x":-48,"y":98},{"x":-47,"y":36},{"x":-57,"y":3},{"x":51,"y":7},{"x":42,"y":87},{"x":33,"y":12},{"x":-18,"y":99},{"x":51,"y":103}],"type":"admin"},{"arc":[{"x":142658,"y":168521},{"x":-63,"y":54},{"x":-51,"y":-20},{"x":-127,"y":19},{"x":-24,"y":-28},{"x":-34,"y":23},{"x":-36,"y":-18},{"x":-56,"y":19},{"x":17,"y":-35},{"x":-47,"y":-2}],"type":"admin"},{"arc":[{"x":142237,"y":168533},{"x":-126,"y":-284},{"x":-423,"y":-504},{"x":-48,"y":-72},{"x":4,"y":-44},{"x":-15,"y":17},{"x":-29,"y":-14},{"x":30,"y":37},{"x":-61,"y":-65},{"x":-102,"y":-24},{"x":-215,"y":8},{"x":-118,"y":-46},{"x":-89,"y":-5},{"x":-41,"y":26},{"x":-82,"y":-44},{"x":-48,"y":12}],"type":"coastline"},{"arc":[{"x":140874,"y":167531},{"x":-11,"y":-60},{"x":89,"y":-149},{"x":27,"y":-144}],"type":"admin"},{"arc":[{"x":140979,"y":167178},{"x":32,"y":-97},{"x":48,"y":-28},{"x":34,"y":-129},{"x":51,"y":-18}],"type":"admin"},{"arc":[{"x":141144,"y":166906},{"x":28,"y":50},{"x":151,"y":32},{"x":47,"y":40},{"x":95,"y":138},{"x":26,"y":143},{"x":62,"y":-16},{"x":90,"y":73},{"x":1,"y":-219},{"x":48,"y":-84},{"x":-72,"y":-24},{"x":-48,"y":-62},{"x":103,"y":-114},{"x":-11,"y":-56},{"x":52,"y":-28},{"x":23,"y":-57},{"x":101,"y":104},{"x":17,"y":-42},{"x":194,"y":-50}],"type":"admin"},{"arc":[{"x":142051,"y":166734},{"x":105,"y":603},{"x":18,"y":33},{"x":67,"y":-3},{"x":18,"y":98},{"x":76,"y":-4},{"x":-69,"y":73},{"x":39,"y":-33},{"x":205,"y":-27},{"x":32,"y":21},{"x":89,"y":-31}],"type":"area"},{"arc":[{"x":142631,"y":167464},{"x":16,"y":50},{"x":46,"y":7},{"x":12,"y":71}],"type":"admin"},{"arc":[{"x":142705,"y":167592},{"x":-125,"y":58},{"x":-4,"y":69},{"x":74,"y":87},{"x":-34,"y":19},{"x":130,"y":49},{"x":40,"y":102},{"x":-86,"y":73}],"type":"admin"},{"arc":[{"x":142650,"y":170642},{"x":-10,"y":-151},{"x":-43,"y":-89},{"x":40,"y":-124},{"x":-23,"y":-45},{"x":-31,"y":7},{"x":28,"y":-21},{"x":-44,"y":19},{"x":48,"y":-51},{"x":-14,"y":-203}],"type":"coastline"},{"arc":[{"x":143055,"y":169943},{"x":11,"y":257},{"x":84,"y":15},{"x":57,"y":-29},{"x":69,"y":73},{"x":110,"y":42}],"type":"admin"},{"arc":[{"x":142145,"y":172555},{"x":-36,"y":2},{"x":-9,"y":-37},{"x":29,"y":-73},{"x":-14,"y":-150},{"x":50,"y":-17},{"x":15,"y":87},{"x":58,"y":68},{"x":47,"y":-21},{"x":21,"y":-62},{"x":-8,"y":-145},{"x":-62,"y":-58},{"x":9,"y":-50},{"x":-60,"y":-47},{"x":33,"y":-49}],"type":"admin"},{"arc":[{"x":142218,"y":172003},{"x":28,"y":39},{"x":70,"y":-18},{"x":20,"y":-37},{"x":-32,"y":-108},{"x":57,"y":-13},{"x":-26,"y":-28},{"x":25,"y":-36},{"x":-6,"y":21},{"x":46,"y":-4}],"type":"coastline"},{"arc":[{"x":140356,"y":172418},{"x":-21,"y":147},{"x":-26,"y":36},{"x":-28,"y":-19},{"x":-35,"y":47},{"x":41,"y":-83},{"x":-23,"y":-45},{"x":29,"y":-17},{"x":-1,"y":-62},{"x":18,"y":16},{"x":8,"y":-35},{"x":9,"y":34},{"x":29,"y":-19}],"type":"coastline"},{"arc":[{"x":141054,"y":172986},{"x":-108,"y":-88},{"x":-122,"y":-10},{"x":-42,"y":51},{"x":-91,"y":2},{"x":-63,"y":31},{"x":-5,"y":31},{"x":22,"y":-3},{"x":-36,"y":13},{"x":-12,"y":124},{"x":-26,"y":-7},{"x":-48,"y":34},{"x":-26,"y":-27},{"x":-33,"y":20},{"x":-34,"y":-28},{"x":15,"y":-24},{"x":-26,"y":23},{"x":-29,"y":3},{"x":0,"y":-24},{"x":-16,"y":15},{"x":37,"y":-53},{"x":-36,"y":-30},{"x":42,"y":-9},{"x":2,"y":-25},{"x":23,"y":24},{"x":25,"y":-28},{"x":-26,"y":-45},{"x":-18,"y":34},{"x":-45,"y":-7},{"x":13,"y":-45},{"x":-42,"y":-32},{"x":63,"y":-57},{"x":-4,"y":-30},{"x":-29,"y":19},{"x":-25,"y":-45},{"x":21,"y":-26},{"x":-18,"y":-39},{"x":35,"y":7},{"x":17,"y":-27},{"x":-27,"y":-80},{"x":-34,"y":0},{"x":3,"y":-47},{"x":21,"y":-43},{"x":50,"y":22},{"x":-55,"y":-43},{"x":13,"y":-28},{"x":19,"y":9},{"x":-24,"y":-44},{"x":36,"y":-15},{"x":-30,"y":-28},{"x":79,"y":-49},{"x":-41,"y":35},{"x":45,"y":37},{"x":-19,"y":31},{"x":34,"y":30},{"x":18,"y":-34},{"x":23,"y":19},{"x":-7,"y":-28},{"x":27,"y":2},{"x":-16,"y":-23},{"x":24,"y":-36},{"x":37,"y":-5},{"x":-6,"y":129},{"x":25,"y":-57},{"x":24,"y":6},{"x":-11,"y":51},{"x":22,"y":-37},{"x":-34,"y":-51},{"x":72,"y":-6},{"x":-21,"y":83},{"x":24,"y":5},{"x":-21,"y":75},{"x":22,"y":40},{"x":22,"y":-138},{"x":79,"y":-2},{"x":40,"y":36},{"x":106,"y":-63},{"x":9,"y":64},{"x":20,"y":-40},{"x":58,"y":-6}],"type":"coastline"},{"arc":[{"x":144334,"y":168473},{"x":-79,"y":34},{"x":-64,"y":-3}],"type":"area"},{"arc":[{"x":144191,"y":168504},{"x":-110,"y":3},{"x":-130,"y":78},{"x":-53,"y":-4},{"x":-52,"y":79},{"x":-62,"y":27},{"x":-45,"y":60},{"x":-95,"y":36},{"x":-82,"y":-76},{"x":-116,"y":14},{"x":55,"y":245},{"x":-63,"y":149}],"type":"area"},{"arc":[{"x":143092,"y":168710},{"x":18,"y":-68},{"x":-54,"y":-114},{"x":31,"y":-116},{"x":-25,"y":-49},{"x":59,"y":-59},{"x":46,"y":-8},{"x":17,"y":-49},{"x":-22,"y":-59},{"x":-61,"y":-17},{"x":-10,"y":-91},{"x":-28,"y":-20}],"type":"admin"},{"arc":[{"x":143063,"y":168060},{"x":20,"y":-17},{"x":-93,"y":-70},{"x":69,"y":-64},{"x":97,"y":-36},{"x":-34,"y":-103}],"type":"admin"},{"arc":[{"x":143122,"y":167770},{"x":6,"y":-17},{"x":96,"y":-6},{"x":105,"y":-92},{"x":111,"y":-52},{"x":87,"y":4},{"x":87,"y":84},{"x":72,"y":-36},{"x":41,"y":9},{"x":68,"y":-49},{"x":135,"y":33},{"x":188,"y":-73},{"x":114,"y":0}],"type":"admin"},{"arc":[{"x":144232,"y":167575},{"x":12,"y":138},{"x":112,"y":89}],"type":"admin"},{"arc":[{"x":144356,"y":167802},{"x":-31,"y":138},{"x":-52,"y":23},{"x":46,"y":154},{"x":-22,"y":24},{"x":64,"y":61},{"x":70,"y":17},{"x":17,"y":128},{"x":-54,"y":132},{"x":-60,"y":-6}],"type":"admin"},{"arc":[{"x":144835,"y":169979},{"x":-274,"y":58}],"type":"area"},{"arc":[{"x":144561,"y":170037},{"x":-151,"y":-11},{"x":-122,"y":-81},{"x":-144,"y":48},{"x":-330,"y":-61},{"x":-133,"y":25}],"type":"area"},{"arc":[{"x":143681,"y":169957},{"x":-78,"y":17}],"type":"admin"},{"arc":[{"x":143588,"y":169783},{"x":152,"y":-73},{"x":134,"y":-11},{"x":105,"y":-176},{"x":49,"y":-36},{"x":4,"y":-43},{"x":-52,"y":-5},{"x":-36,"y":-65},{"x":87,"y":-127},{"x":61,"y":-12},{"x":37,"y":-38},{"x":-14,"y":-25},{"x":66,"y":-78},{"x":42,"y":-220},{"x":57,"y":-125},{"x":-12,"y":-123},{"x":-67,"y":-29},{"x":-10,"y":-93}],"type":"area"},{"arc":[{"x":144334,"y":168473},{"x":52,"y":100},{"x":35,"y":-11},{"x":48,"y":91},{"x":-41,"y":77},{"x":38,"y":143},{"x":-25,"y":51},{"x":30,"y":242},{"x":188,"y":36},{"x":49,"y":-84},{"x":323,"y":-152}],"type":"admin"},{"arc":[{"x":145031,"y":168966},{"x":72,"y":23},{"x":-4,"y":72},{"x":102,"y":110},{"x":-2,"y":92},{"x":27,"y":28},{"x":-114,"y":85},{"x":-67,"y":2},{"x":-50,"y":195},{"x":-79,"y":92},{"x":9,"y":43},{"x":75,"y":-9},{"x":2,"y":16},{"x":20,"y":-18},{"x":31,"y":37},{"x":102,"y":-29},{"x":27,"y":74},{"x":56,"y":-37},{"x":48,"y":36}],"type":"admin"},{"arc":[{"x":144027,"y":170743},{"x":224,"y":19},{"x":83,"y":51},{"x":58,"y":-4},{"x":139,"y":-33},{"x":-6,"y":-150}],"type":"area"},{"arc":[{"x":144525,"y":170626},{"x":126,"y":-16}],"type":"area"},{"arc":[{"x":144651,"y":170610},{"x":33,"y":40},{"x":348,"y":-99}],"type":"area"},{"arc":[{"x":144525,"y":170626},{"x":-18,"y":-148},{"x":25,"y":-10},{"x":-91,"y":-70},{"x":-39,"y":15},{"x":-17,"y":-74},{"x":-90,"y":-18},{"x":-12,"y":-45},{"x":-68,"y":46},{"x":-159,"y":33},{"x":-286,"y":-34}],"type":"area"},{"arc":[{"x":143689,"y":170202},{"x":-8,"y":-245}],"type":"admin"},{"arc":[{"x":144561,"y":170037},{"x":45,"y":240},{"x":-65,"y":194},{"x":110,"y":139}],"type":"area"},{"arc":[{"x":143068,"y":167276},{"x":-110,"y":-55},{"x":-48,"y":30},{"x":-13,"y":46},{"x":-241,"y":74},{"x":-25,"y":93}],"type":"admin"},{"arc":[{"x":142051,"y":166734},{"x":125,"y":-113},{"x":-3,"y":-53},{"x":-93,"y":-142},{"x":103,"y":-200},{"x":97,"y":-65}],"type":"admin"},{"arc":[{"x":142280,"y":166161},{"x":262,"y":63},{"x":38,"y":-12},{"x":111,"y":71},{"x":94,"y":22}],"type":"admin"},{"arc":[{"x":142785,"y":166305},{"x":32,"y":135},{"x":56,"y":-15},{"x":67,"y":68},{"x":35,"y":128},{"x":49,"y":2},{"x":31,"y":42},{"x":4,"y":61},{"x":-56,"y":99},{"x":44,"y":229},{"x":-56,"y":49},{"x":62,"y":66},{"x":15,"y":107}],"type":"admin"},{"arc":[{"x":141818,"y":172090},{"x":-1,"y":-5},{"x":-3,"y":-10},{"x":35,"y":33},{"x":54,"y":-43},{"x":44,"y":9},{"x":47,"y":-95},{"x":24,"y":34},{"x":39,"y":-18},{"x":50,"y":22},{"x":80,"y":-23},{"x":24,"y":-42},{"x":7,"y":51}],"type":"coastline"},{"arc":[{"x":142561,"y":169525},{"x":-39,"y":-105},{"x":-40,"y":-3},{"x":28,"y":-13},{"x":-26,"y":-15},{"x":-15,"y":37},{"x":13,"y":-87},{"x":-109,"y":-442}],"type":"coastline"},{"arc":[{"x":142373,"y":168897},{"x":222,"y":-48},{"x":3,"y":-68},{"x":174,"y":-74}],"type":"area"},{"arc":[{"x":142373,"y":168897},{"x":-136,"y":-364}],"type":"coastline"},{"arc":[{"x":142658,"y":168521},{"x":127,"y":169}],"type":"area"},{"arc":[{"x":142700,"y":168049},{"x":75,"y":67},{"x":83,"y":-14},{"x":-6,"y":-31},{"x":50,"y":5},{"x":43,"y":72},{"x":54,"y":-93},{"x":55,"y":-18},{"x":9,"y":23}],"type":"area"},{"arc":[{"x":142705,"y":167592},{"x":167,"y":-77}],"type":"area"},{"arc":[{"x":142872,"y":167515},{"x":26,"y":85},{"x":73,"y":60},{"x":20,"y":101},{"x":45,"y":30},{"x":33,"y":-15},{"x":34,"y":19},{"x":19,"y":-25}],"type":"area"},{"arc":[{"x":142872,"y":167515},{"x":122,"y":-58},{"x":71,"y":-161}],"type":"area"},{"arc":[{"x":143065,"y":167296},{"x":74,"y":15},{"x":97,"y":84},{"x":113,"y":6},{"x":-2,"y":52},{"x":48,"y":-70},{"x":46,"y":-19},{"x":110,"y":-219},{"x":203,"y":5},{"x":37,"y":60},{"x":114,"y":-54},{"x":59,"y":45},{"x":45,"y":1},{"x":44,"y":97},{"x":75,"y":37},{"x":67,"y":97},{"x":45,"y":-2},{"x":17,"y":29},{"x":-25,"y":115}],"type":"area"},{"arc":[{"x":144616,"y":167796},{"x":-116,"y":36},{"x":-144,"y":-30}],"type":"admin"},{"arc":[{"x":143065,"y":167296},{"x":3,"y":-20}],"type":"area"},{"arc":[{"x":142785,"y":166305},{"x":108,"y":-82},{"x":67,"y":4},{"x":44,"y":-25},{"x":54,"y":-3},{"x":92,"y":52},{"x":34,"y":-67},{"x":177,"y":-10},{"x":110,"y":-75},{"x":187,"y":32},{"x":36,"y":-19},{"x":23,"y":-62},{"x":-21,"y":-102},{"x":32,"y":-29},{"x":11,"y":-97},{"x":-42,"y":-54},{"x":-2,"y":-157},{"x":-32,"y":-85},{"x":18,"y":-277}],"type":"admin"},{"arc":[{"x":143681,"y":165249},{"x":136,"y":17},{"x":42,"y":73},{"x":67,"y":16},{"x":11,"y":36},{"x":69,"y":5},{"x":77,"y":-46},{"x":66,"y":12},{"x":141,"y":103}],"type":"admin"},{"arc":[{"x":144290,"y":165465},{"x":168,"y":221},{"x":18,"y":109},{"x":39,"y":43},{"x":-36,"y":56},{"x":126,"y":104},{"x":11,"y":196},{"x":67,"y":70},{"x":-13,"y":65},{"x":27,"y":69},{"x":98,"y":32},{"x":31,"y":69},{"x":99,"y":66},{"x":136,"y":25},{"x":11,"y":57},{"x":-39,"y":87},{"x":24,"y":62}],"type":"admin"},{"arc":[{"x":141144,"y":166906},{"x":13,"y":-25},{"x":-104,"y":-103},{"x":-66,"y":-131},{"x":-128,"y":-100},{"x":-28,"y":-160}],"type":"area"},{"arc":[{"x":140831,"y":166387},{"x":85,"y":-52},{"x":3,"y":-79}],"type":"admin"},{"arc":[{"x":140919,"y":166256},{"x":14,"y":-50},{"x":80,"y":-77}],"type":"admin"},{"arc":[{"x":141013,"y":166129},{"x":114,"y":-88},{"x":26,"y":-56},{"x":58,"y":-12},{"x":75,"y":20},{"x":79,"y":-63},{"x":67,"y":13},{"x":77,"y":-46},{"x":54,"y":4},{"x":29,"y":-35}],"type":"admin"},{"arc":[{"x":141592,"y":165866},{"x":49,"y":27},{"x":110,"y":-45},{"x":198,"y":11},{"x":267,"y":183}],"type":"admin"},{"arc":[{"x":142216,"y":166042},{"x":51,"y":46},{"x":13,"y":73}],"type":"admin"},{"arc":[{"x":140874,"y":167531},{"x":-131,"y":85},{"x":-77,"y":-54},{"x":-11,"y":32},{"x":-116,"y":26},{"x":22,"y":-30},{"x":-24,"y":-12},{"x":-11,"y":57},{"x":-57,"y":34},{"x":6,"y":74},{"x":-39,"y":4},{"x":-33,"y":39},{"x":-16,"y":-107},{"x":46,"y":-23},{"x":3,"y":-49},{"x":55,"y":-74}],"type":"coastline"},{"arc":[{"x":140491,"y":167533},{"x":136,"y":-110},{"x":52,"y":31},{"x":34,"y":-8},{"x":266,"y":-268}],"type":"area"},{"arc":[{"x":140491,"y":167533},{"x":26,"y":-27},{"x":-3,"y":-123},{"x":-114,"y":-116}],"type":"coastline"},{"arc":[{"x":140400,"y":167267},{"x":-15,"y":-225},{"x":61,"y":-145},{"x":-11,"y":-104},{"x":39,"y":-67},{"x":-2,"y":-79},{"x":34,"y":-35},{"x":0,"y":-184}],"type":"admin"},{"arc":[{"x":140506,"y":166428},{"x":13,"y":-21},{"x":52,"y":0},{"x":24,"y":29},{"x":24,"y":-7},{"x":20,"y":-44},{"x":63,"y":33},{"x":129,"y":-31}],"type":"admin"},{"arc":[{"x":145031,"y":168966},{"x":-4,"y":-55},{"x":49,"y":-66},{"x":94,"y":-28},{"x":24,"y":-63},{"x":109,"y":-83},{"x":67,"y":-20},{"x":106,"y":27}],"type":"area"},{"arc":[{"x":167572,"y":165092},{"x":-72,"y":6},{"x":10,"y":-20},{"x":-37,"y":-11},{"x":-22,"y":-78},{"x":-58,"y":-53},{"x":-39,"y":37},{"x":-81,"y":-24},{"x":-135,"y":58},{"x":-59,"y":-49},{"x":-84,"y":-7},{"x":-43,"y":-66},{"x":-185,"y":0},{"x":-14,"y":-62},{"x":-49,"y":-44},{"x":-154,"y":-22},{"x":-67,"y":-54},{"x":0,"y":-64},{"x":-138,"y":-29},{"x":-46,"y":-65},{"x":-46,"y":1},{"x":-101,"y":-140}],"type":"area"},{"arc":[{"x":166152,"y":164406},{"x":41,"y":-22},{"x":106,"y":40},{"x":225,"y":-32}],"type":"area"},{"arc":[{"x":166524,"y":164392},{"x":23,"y":61},{"x":80,"y":26},{"x":69,"y":-54},{"x":72,"y":-3},{"x":3,"y":-47},{"x":83,"y":27},{"x":87,"y":-28},{"x":52,"y":48},{"x":-14,"y":69},{"x":34,"y":59},{"x":80,"y":37},{"x":67,"y":-54},{"x":21,"y":-66},{"x":60,"y":6},{"x":77,"y":-74},{"x":39,"y":7},{"x":18,"y":-65},{"x":66,"y":-26},{"x":2,"y":29},{"x":60,"y":14},{"x":4,"y":73},{"x":35,"y":2},{"x":34,"y":-36},{"x":41,"y":50},{"x":73,"y":10},{"x":38,"y":41},{"x":-20,"y":50},{"x":27,"y":26},{"x":72,"y":-45},{"x":34,"y":71},{"x":-74,"y":69},{"x":61,"y":14},{"x":-42,"y":34},{"x":19,"y":45},{"x":-33,"y":29},{"x":-16,"y":-35},{"x":-23,"y":17},{"x":13,"y":26},{"x":-51,"y":36},{"x":22,"y":82},{"x":-121,"y":43},{"x":19,"y":65},{"x":-43,"y":67}],"type":"area"},{"arc":[{"x":172862,"y":164132},{"x":-75,"y":31},{"x":-117,"y":-26},{"x":-8,"y":-29},{"x":-58,"y":-14},{"x":-58,"y":23},{"x":-49,"y":-14}],"type":"admin"},{"arc":[{"x":172497,"y":164103},{"x":16,"y":-92},{"x":-34,"y":-66},{"x":-36,"y":14},{"x":-25,"y":-36},{"x":-25,"y":17},{"x":-182,"y":-27},{"x":-25,"y":100},{"x":-26,"y":-59},{"x":-72,"y":73},{"x":20,"y":18},{"x":-85,"y":25},{"x":-48,"y":59},{"x":26,"y":49},{"x":57,"y":7},{"x":25,"y":97},{"x":-101,"y":36},{"x":-19,"y":-30},{"x":-151,"y":100},{"x":-40,"y":-43},{"x":14,"y":63},{"x":-45,"y":25},{"x":-22,"y":-58},{"x":-119,"y":-73},{"x":-71,"y":27},{"x":33,"y":12},{"x":-2,"y":26},{"x":-129,"y":0},{"x":146,"y":100},{"x":-24,"y":15},{"x":102,"y":96},{"x":110,"y":304}],"type":"area"},{"arc":[{"x":171765,"y":164882},{"x":-31,"y":23},{"x":-53,"y":-35},{"x":-43,"y":48},{"x":-13,"y":-36},{"x":-65,"y":-2},{"x":-114,"y":-85},{"x":-34,"y":10}],"type":"area"},{"arc":[{"x":171412,"y":164805},{"x":-28,"y":-13},{"x":-181,"y":43},{"x":-104,"y":-53},{"x":-38,"y":34},{"x":-45,"y":-9},{"x":-2,"y":22},{"x":-57,"y":-8},{"x":-22,"y":34},{"x":-39,"y":1},{"x":-23,"y":48},{"x":-30,"y":-19},{"x":-11,"y":44},{"x":-80,"y":-71},{"x":-43,"y":5},{"x":-20,"y":43},{"x":-47,"y":-40},{"x":-81,"y":-3},{"x":-54,"y":40},{"x":-23,"y":-14},{"x":-23,"y":43},{"x":-31,"y":-3},{"x":-38,"y":84},{"x":-32,"y":-67},{"x":-38,"y":10},{"x":-26,"y":-33},{"x":19,"y":68},{"x":-31,"y":96},{"x":64,"y":21},{"x":-31,"y":29},{"x":18,"y":31},{"x":-85,"y":14},{"x":-49,"y":-47},{"x":23,"y":-26},{"x":-46,"y":11},{"x":-33,"y":-29},{"x":-48,"y":158},{"x":5,"y":170},{"x":-67,"y":52},{"x":-172,"y":33},{"x":-19,"y":78},{"x":73,"y":171},{"x":41,"y":12},{"x":73,"y":-51},{"x":55,"y":37},{"x":-78,"y":-102},{"x":16,"y":-55},{"x":52,"y":69},{"x":49,"y":-10},{"x":64,"y":168},{"x":46,"y":23},{"x":15,"y":36},{"x":-50,"y":35},{"x":12,"y":48},{"x":75,"y":-26},{"x":-47,"y":79},{"x":31,"y":3},{"x":45,"y":-47},{"x":95,"y":25},{"x":12,"y":-77},{"x":28,"y":14},{"x":-26,"y":139},{"x":146,"y":44}],"type":"area"},{"arc":[{"x":170571,"y":166117},{"x":53,"y":281},{"x":-116,"y":201},{"x":49,"y":256},{"x":57,"y":35},{"x":-107,"y":95},{"x":23,"y":60},{"x":-88,"y":133},{"x":1,"y":74},{"x":-47,"y":-3},{"x":-15,"y":25},{"x":-68,"y":-13},{"x":-55,"y":-61},{"x":-59,"y":7},{"x":-48,"y":-32},{"x":-89,"y":33},{"x":-111,"y":-105},{"x":-21,"y":-75},{"x":-90,"y":-10},{"x":-235,"y":65},{"x":-285,"y":293},{"x":-215,"y":11}],"type":"area"},{"arc":[{"x":169105,"y":167387},{"x":-1,"y":-288},{"x":-81,"y":-148},{"x":51,"y":-147},{"x":-25,"y":-50},{"x":97,"y":-57},{"x":-7,"y":-69},{"x":-48,"y":-46},{"x":-43,"y":41},{"x":-109,"y":-10},{"x":40,"y":-63},{"x":-27,"y":-142},{"x":-101,"y":-99},{"x":-49,"y":0},{"x":-98,"y":-49},{"x":-85,"y":-209},{"x":14,"y":-58},{"x":90,"y":-89},{"x":52,"y":-115},{"x":-125,"y":-70},{"x":-7,"y":-53},{"x":-31,"y":-15},{"x":-136,"y":17},{"x":-105,"y":80},{"x":-7,"y":-100},{"x":-63,"y":-23},{"x":-35,"y":-75},{"x":-45,"y":-21},{"x":9,"y":-70},{"x":-27,"y":-40},{"x":-89,"y":41},{"x":-54,"y":-9},{"x":-54,"y":46},{"x":-65,"y":-17},{"x":-54,"y":-72},{"x":-84,"y":20},{"x":-82,"y":-18},{"x":-103,"y":-177},{"x":13,"y":-40}],"type":"area"},{"arc":[{"x":167631,"y":165193},{"x":69,"y":40},{"x":87,"y":-94},{"x":-30,"y":-14},{"x":-5,"y":-52},{"x":120,"y":-45},{"x":-9,"y":-101},{"x":37,"y":-25},{"x":5,"y":-70},{"x":68,"y":-35},{"x":-3,"y":-55},{"x":58,"y":5},{"x":4,"y":30},{"x":9,"y":-19},{"x":41,"y":28},{"x":28,"y":-17},{"x":51,"y":62},{"x":64,"y":17},{"x":47,"y":-17},{"x":25,"y":-53},{"x":67,"y":0},{"x":2,"y":-120},{"x":-49,"y":15},{"x":-52,"y":-64},{"x":-63,"y":-217},{"x":-48,"y":-64},{"x":58,"y":-44},{"x":229,"y":-21},{"x":155,"y":-136},{"x":-30,"y":-66},{"x":34,"y":-56},{"x":45,"y":-29},{"x":81,"y":20},{"x":24,"y":-56},{"x":31,"y":29},{"x":-7,"y":-208},{"x":-111,"y":-89},{"x":-244,"y":-74},{"x":-91,"y":62},{"x":-17,"y":-34},{"x":-259,"y":-79},{"x":-80,"y":15},{"x":-18,"y":39},{"x":-43,"y":-51},{"x":-140,"y":31},{"x":-53,"y":-49},{"x":-66,"y":11},{"x":-28,"y":-45},{"x":-30,"y":10},{"x":-20,"y":-22},{"x":-43,"y":62},{"x":-50,"y":2},{"x":-70,"y":-88},{"x":-142,"y":42},{"x":-139,"y":-115},{"x":-171,"y":-70},{"x":-83,"y":-1},{"x":-54,"y":-47}],"type":"area"},{"arc":[{"x":166822,"y":163271},{"x":72,"y":-70},{"x":-16,"y":-119},{"x":42,"y":-14},{"x":-51,"y":-26},{"x":31,"y":-164},{"x":-21,"y":-55},{"x":41,"y":-73}],"type":"area"},{"arc":[{"x":166920,"y":162750},{"x":269,"y":-119},{"x":125,"y":-19},{"x":25,"y":-78},{"x":69,"y":-13},{"x":16,"y":-54},{"x":84,"y":-36},{"x":33,"y":19},{"x":42,"y":-29},{"x":92,"y":29},{"x":25,"y":65},{"x":115,"y":73},{"x":85,"y":-24},{"x":52,"y":70},{"x":75,"y":-20},{"x":58,"y":61},{"x":11,"y":91},{"x":72,"y":2},{"x":37,"y":47},{"x":50,"y":-1},{"x":100,"y":91},{"x":-16,"y":25},{"x":35,"y":73},{"x":94,"y":14},{"x":19,"y":44},{"x":82,"y":18},{"x":83,"y":77},{"x":105,"y":28},{"x":8,"y":24},{"x":94,"y":-52},{"x":67,"y":-136},{"x":76,"y":-21}],"type":"area"},{"arc":[{"x":169002,"y":162999},{"x":66,"y":-3},{"x":2,"y":28},{"x":82,"y":29},{"x":-2,"y":42},{"x":68,"y":6},{"x":25,"y":-73},{"x":63,"y":-49},{"x":84,"y":4},{"x":73,"y":-64}],"type":"admin"},{"arc":[{"x":169463,"y":162919},{"x":49,"y":-3},{"x":19,"y":45},{"x":64,"y":-1},{"x":154,"y":88},{"x":61,"y":10},{"x":139,"y":110},{"x":137,"y":68}],"type":"area"},{"arc":[{"x":170086,"y":163236},{"x":53,"y":67},{"x":-22,"y":104},{"x":88,"y":19},{"x":48,"y":-71},{"x":114,"y":90},{"x":76,"y":0},{"x":7,"y":105},{"x":92,"y":14},{"x":73,"y":110},{"x":110,"y":-99},{"x":40,"y":-9},{"x":36,"y":-117},{"x":88,"y":-16},{"x":44,"y":58},{"x":99,"y":28},{"x":-9,"y":-71},{"x":39,"y":-71},{"x":14,"y":-129},{"x":55,"y":-2},{"x":55,"y":55},{"x":47,"y":-14}],"type":"admin"},{"arc":[{"x":171233,"y":163287},{"x":173,"y":66},{"x":181,"y":159},{"x":308,"y":119},{"x":59,"y":0},{"x":47,"y":28},{"x":18,"y":-26},{"x":-10,"y":40},{"x":30,"y":-7},{"x":28,"y":36},{"x":15,"y":-24},{"x":-31,"y":-32},{"x":46,"y":34},{"x":26,"y":-51},{"x":-7,"y":16},{"x":43,"y":13},{"x":-31,"y":-5},{"x":3,"y":49},{"x":54,"y":39},{"x":683,"y":155}],"type":"coastline"},{"arc":[{"x":171760,"y":164361},{"x":-6,"y":-15},{"x":-12,"y":23},{"x":18,"y":-8}],"type":"area"},{"arc":[{"x":169746,"y":165621},{"x":36,"y":40},{"x":18,"y":-99},{"x":-24,"y":-5},{"x":-30,"y":64}],"type":"area"},{"arc":[{"x":170990,"y":168516},{"x":-50,"y":17},{"x":-69,"y":85},{"x":-142,"y":56},{"x":-31,"y":114},{"x":-118,"y":-32},{"x":-93,"y":48},{"x":-89,"y":-5},{"x":47,"y":147},{"x":-77,"y":21}],"type":"area"},{"arc":[{"x":170368,"y":168967},{"x":-37,"y":20},{"x":8,"y":98},{"x":-123,"y":27},{"x":-65,"y":59},{"x":-96,"y":27},{"x":-13,"y":-154},{"x":-102,"y":-67},{"x":-22,"y":-78},{"x":-80,"y":-103},{"x":-82,"y":-17},{"x":-55,"y":-60},{"x":-58,"y":-9}],"type":"admin"},{"arc":[{"x":169116,"y":168152},{"x":23,"y":-111},{"x":-28,"y":-155},{"x":42,"y":-125},{"x":-195,"y":-168},{"x":-10,"y":-36},{"x":62,"y":-138},{"x":95,"y":-32}],"type":"area"},{"arc":[{"x":170571,"y":166117},{"x":38,"y":-20},{"x":70,"y":16},{"x":51,"y":-90},{"x":-19,"y":-52},{"x":43,"y":-38},{"x":51,"y":-19},{"x":89,"y":57},{"x":61,"y":-59},{"x":57,"y":11},{"x":19,"y":-54},{"x":-27,"y":-42},{"x":-99,"y":-60},{"x":-84,"y":-11},{"x":-60,"y":-115},{"x":88,"y":-2},{"x":28,"y":-36},{"x":-16,"y":-42},{"x":96,"y":-29},{"x":3,"y":-24},{"x":-32,"y":1},{"x":22,"y":-98},{"x":24,"y":13},{"x":89,"y":-46},{"x":-33,"y":-25},{"x":34,"y":-51},{"x":13,"y":-151},{"x":25,"y":15},{"x":79,"y":-55},{"x":19,"y":-67},{"x":39,"y":1},{"x":18,"y":-42},{"x":42,"y":-16},{"x":-3,"y":26},{"x":63,"y":-117},{"x":67,"y":-13},{"x":-14,"y":-78}],"type":"area"},{"arc":[{"x":171765,"y":164882},{"x":38,"y":47},{"x":-6,"y":135},{"x":104,"y":212},{"x":2,"y":141},{"x":58,"y":25},{"x":64,"y":-82},{"x":92,"y":-4},{"x":95,"y":-62},{"x":-1,"y":58},{"x":-58,"y":34},{"x":-32,"y":69},{"x":56,"y":145},{"x":47,"y":-8},{"x":23,"y":44},{"x":68,"y":31},{"x":133,"y":-4},{"x":84,"y":108}],"type":"area"},{"arc":[{"x":172520,"y":166038},{"x":31,"y":43},{"x":-53,"y":25},{"x":-19,"y":102},{"x":-41,"y":11},{"x":-50,"y":-46},{"x":-105,"y":-12},{"x":17,"y":77},{"x":-85,"y":73},{"x":12,"y":23},{"x":-114,"y":59},{"x":-33,"y":79},{"x":-33,"y":-7},{"x":-55,"y":50},{"x":-88,"y":1},{"x":-118,"y":-79},{"x":-103,"y":75},{"x":38,"y":164},{"x":-8,"y":23},{"x":-58,"y":13},{"x":-14,"y":38},{"x":-2,"y":53},{"x":36,"y":45},{"x":-24,"y":49},{"x":-50,"y":20},{"x":-43,"y":-32},{"x":-48,"y":15},{"x":-33,"y":69},{"x":-49,"y":24},{"x":28,"y":75},{"x":-25,"y":23},{"x":11,"y":62},{"x":-51,"y":76},{"x":-106,"y":-2},{"x":-23,"y":43},{"x":27,"y":52},{"x":-16,"y":43},{"x":-138,"y":80},{"x":-80,"y":124},{"x":3,"y":63},{"x":-67,"y":126},{"x":-74,"y":278},{"x":28,"y":25},{"x":-4,"y":87},{"x":76,"y":139},{"x":-25,"y":124},{"x":-37,"y":23},{"x":35,"y":82}],"type":"area"},{"arc":[{"x":169463,"y":162919},{"x":-44,"y":-33},{"x":12,"y":-52},{"x":-28,"y":-23},{"x":-66,"y":15},{"x":-70,"y":-36},{"x":-73,"y":28},{"x":-122,"y":114},{"x":-38,"y":-4},{"x":-32,"y":71}],"type":"admin"},{"arc":[{"x":166920,"y":162750},{"x":-49,"y":6},{"x":-55,"y":-41},{"x":-90,"y":63},{"x":-47,"y":-50},{"x":-135,"y":-1},{"x":-64,"y":-86},{"x":-62,"y":-18},{"x":-73,"y":-102},{"x":-188,"y":-32},{"x":-50,"y":-46},{"x":106,"y":-236},{"x":-46,"y":-36},{"x":-50,"y":12},{"x":-33,"y":-19},{"x":-69,"y":35},{"x":-17,"y":-96},{"x":-57,"y":-41},{"x":10,"y":-23},{"x":119,"y":7},{"x":15,"y":-131},{"x":-34,"y":-32},{"x":-42,"y":-152},{"x":65,"y":-108}],"type":"area"},{"arc":[{"x":166074,"y":161623},{"x":109,"y":32},{"x":73,"y":-48},{"x":65,"y":-104},{"x":82,"y":26},{"x":96,"y":-50},{"x":-70,"y":-158},{"x":119,"y":-111},{"x":51,"y":13},{"x":97,"y":-21},{"x":82,"y":-208},{"x":39,"y":2},{"x":117,"y":108},{"x":43,"y":-22},{"x":137,"y":68},{"x":121,"y":150},{"x":-19,"y":78},{"x":70,"y":-37},{"x":10,"y":-42},{"x":118,"y":-108},{"x":-39,"y":-128},{"x":21,"y":-48},{"x":30,"y":-5},{"x":43,"y":-80},{"x":95,"y":-89},{"x":58,"y":-331},{"x":55,"y":-102},{"x":-42,"y":-95},{"x":64,"y":-59},{"x":53,"y":-11},{"x":-34,"y":-13},{"x":25,"y":-27},{"x":-101,"y":-58},{"x":1,"y":-46},{"x":70,"y":14},{"x":37,"y":45},{"x":48,"y":-61}],"type":"area"},{"arc":[{"x":167798,"y":160097},{"x":185,"y":186},{"x":45,"y":3},{"x":-6,"y":105},{"x":154,"y":147},{"x":2,"y":74},{"x":111,"y":126},{"x":29,"y":80},{"x":56,"y":2},{"x":15,"y":186},{"x":47,"y":24},{"x":-15,"y":42},{"x":33,"y":58},{"x":34,"y":-4},{"x":33,"y":18},{"x":-40,"y":-13},{"x":11,"y":31},{"x":11,"y":-17},{"x":2,"y":23},{"x":14,"y":-10},{"x":-14,"y":41},{"x":41,"y":22},{"x":54,"y":94},{"x":168,"y":73},{"x":-169,"y":-70},{"x":-58,"y":-59},{"x":12,"y":79},{"x":126,"y":50},{"x":-67,"y":-21},{"x":-31,"y":29},{"x":67,"y":8},{"x":-3,"y":31},{"x":26,"y":-16},{"x":1,"y":58},{"x":165,"y":128},{"x":237,"y":145},{"x":77,"y":22},{"x":-7,"y":16},{"x":100,"y":64},{"x":34,"y":-7},{"x":8,"y":24},{"x":75,"y":-27},{"x":29,"y":14},{"x":22,"y":-24},{"x":37,"y":-15},{"x":62,"y":15},{"x":-62,"y":-14},{"x":-36,"y":14},{"x":-22,"y":25},{"x":11,"y":13},{"x":-43,"y":-23},{"x":-72,"y":22},{"x":197,"y":89},{"x":-35,"y":-51},{"x":30,"y":-23},{"x":5,"y":74},{"x":22,"y":-8},{"x":4,"y":31},{"x":120,"y":63},{"x":269,"y":114},{"x":146,"y":-1},{"x":35,"y":128},{"x":104,"y":40},{"x":38,"y":66},{"x":98,"y":76},{"x":118,"y":72},{"x":60,"y":4},{"x":45,"y":57}],"type":"coastline"},{"arc":[{"x":170543,"y":162600},{"x":-19,"y":190},{"x":-94,"y":7},{"x":-10,"y":-36},{"x":-31,"y":20},{"x":-45,"y":-56},{"x":-95,"y":35},{"x":-69,"y":-6},{"x":40,"y":148},{"x":78,"y":58},{"x":-15,"y":28},{"x":-62,"y":3},{"x":-135,"y":245}],"type":"admin"},{"arc":[{"x":169662,"y":162295},{"x":2,"y":33},{"x":-3,"y":-54},{"x":-50,"y":-45},{"x":15,"y":-62},{"x":-24,"y":-62},{"x":-33,"y":-29},{"x":-10,"y":32},{"x":-34,"y":-1},{"x":5,"y":-38},{"x":-37,"y":-5},{"x":30,"y":-55},{"x":-80,"y":-39},{"x":-22,"y":69},{"x":-59,"y":17},{"x":-211,"y":-71},{"x":-146,"y":-105},{"x":-33,"y":21},{"x":46,"y":173},{"x":-8,"y":129},{"x":69,"y":29},{"x":33,"y":78},{"x":40,"y":2},{"x":-55,"y":89},{"x":-39,"y":149},{"x":-1,"y":97},{"x":20,"y":-4},{"x":20,"y":60},{"x":97,"y":-46},{"x":9,"y":-44},{"x":169,"y":-171},{"x":13,"y":-139},{"x":82,"y":55},{"x":35,"y":-43},{"x":21,"y":38},{"x":116,"y":71},{"x":71,"y":-89},{"x":-42,"y":-48},{"x":-6,"y":8}],"type":"admin"},{"arc":[{"x":174633,"y":173163},{"x":-109,"y":-87},{"x":-91,"y":-210},{"x":-19,"y":-85},{"x":45,"y":-108},{"x":-35,"y":-46},{"x":1,"y":-105},{"x":-90,"y":-114},{"x":-58,"y":-17},{"x":5,"y":-37},{"x":-103,"y":-194},{"x":20,"y":-76},{"x":-39,"y":-50},{"x":24,"y":-45},{"x":-92,"y":-116},{"x":32,"y":-72},{"x":-19,"y":-131},{"x":-53,"y":-45},{"x":-55,"y":-1},{"x":-42,"y":-89},{"x":73,"y":-209},{"x":-68,"y":-129},{"x":43,"y":-103},{"x":-52,"y":-70},{"x":4,"y":-37},{"x":-65,"y":-25},{"x":58,"y":-47},{"x":19,"y":-99},{"x":90,"y":-42},{"x":110,"y":-179},{"x":67,"y":-47},{"x":18,"y":-71},{"x":-46,"y":-116},{"x":120,"y":-104},{"x":-10,"y":-37},{"x":71,"y":-104},{"x":-30,"y":-30},{"x":-5,"y":-146},{"x":-35,"y":-88}],"type":"admin"},{"arc":[{"x":174317,"y":169852},{"x":37,"y":-22},{"x":99,"y":21},{"x":159,"y":91},{"x":14,"y":-85},{"x":94,"y":-65},{"x":24,"y":-114},{"x":107,"y":-146},{"x":-71,"y":-190},{"x":65,"y":-103},{"x":-78,"y":-16},{"x":-9,"y":-42},{"x":63,"y":-90},{"x":21,"y":-6},{"x":-76,"y":106},{"x":84,"y":-70},{"x":-10,"y":-54},{"x":39,"y":7},{"x":23,"y":-56},{"x":91,"y":-37},{"x":38,"y":-56},{"x":100,"y":-19},{"x":77,"y":-100}],"type":"area"},{"arc":[{"x":175899,"y":168619},{"x":49,"y":32},{"x":-14,"y":-39},{"x":56,"y":96},{"x":-18,"y":14},{"x":38,"y":29},{"x":-27,"y":139},{"x":31,"y":190},{"x":-39,"y":17},{"x":35,"y":44},{"x":61,"y":9},{"x":-4,"y":29},{"x":92,"y":20},{"x":36,"y":74},{"x":90,"y":47},{"x":5,"y":-23},{"x":31,"y":13},{"x":54,"y":73},{"x":65,"y":-167},{"x":-31,"y":-26},{"x":27,"y":-25},{"x":-48,"y":-41},{"x":2,"y":-54},{"x":52,"y":-37},{"x":62,"y":-118},{"x":124,"y":157},{"x":36,"y":-1},{"x":12,"y":25},{"x":-38,"y":25},{"x":17,"y":24},{"x":3,"y":-35},{"x":95,"y":111},{"x":13,"y":-33},{"x":-76,"y":-118},{"x":93,"y":99},{"x":97,"y":-65},{"x":39,"y":16},{"x":40,"y":-26}],"type":"admin"},{"arc":[{"x":176959,"y":169094},{"x":131,"y":154},{"x":37,"y":-8},{"x":-21,"y":14},{"x":92,"y":101}],"type":"coastline"},{"arc":[{"x":177198,"y":169355},{"x":-96,"y":79},{"x":-63,"y":12},{"x":-241,"y":332},{"x":178,"y":57},{"x":-20,"y":47},{"x":31,"y":33},{"x":-22,"y":29},{"x":30,"y":24},{"x":-3,"y":100},{"x":-43,"y":10},{"x":26,"y":30},{"x":-69,"y":65},{"x":51,"y":14},{"x":4,"y":52},{"x":-134,"y":194},{"x":-2,"y":88},{"x":39,"y":47},{"x":-23,"y":77},{"x":-64,"y":159},{"x":-45,"y":-2},{"x":-15,"y":51},{"x":-44,"y":15},{"x":26,"y":139},{"x":-83,"y":29},{"x":-7,"y":97},{"x":-54,"y":11},{"x":-6,"y":66},{"x":-199,"y":8},{"x":-201,"y":-54},{"x":-96,"y":39},{"x":-123,"y":-4},{"x":-138,"y":121},{"x":-65,"y":0},{"x":-33,"y":44},{"x":-119,"y":41},{"x":-286,"y":-133},{"x":-125,"y":84},{"x":-38,"y":229},{"x":38,"y":88},{"x":-65,"y":67},{"x":-10,"y":83},{"x":-57,"y":9},{"x":-55,"y":60},{"x":-133,"y":-30},{"x":-27,"y":116},{"x":29,"y":191},{"x":86,"y":53},{"x":-8,"y":49},{"x":136,"y":108},{"x":77,"y":9},{"x":90,"y":232}],"type":"area"},{"arc":[{"x":167631,"y":165193},{"x":-14,"y":-91},{"x":-45,"y":-10}],"type":"area"},{"arc":[{"x":166524,"y":164392},{"x":126,"y":-153},{"x":47,"y":-362},{"x":124,"y":-17},{"x":-117,"y":-63},{"x":-55,"y":-171},{"x":28,"y":-284},{"x":66,"y":-119},{"x":34,"y":61},{"x":45,"y":-13}],"type":"area"},{"arc":[{"x":172693,"y":166450},{"x":-55,"y":-22},{"x":-57,"y":101},{"x":-71,"y":32},{"x":-53,"y":-6},{"x":-46,"y":36},{"x":22,"y":136},{"x":-59,"y":56},{"x":44,"y":-19},{"x":31,"y":15},{"x":26,"y":139},{"x":-32,"y":30},{"x":46,"y":17},{"x":27,"y":45},{"x":2,"y":119}],"type":"admin"},{"arc":[{"x":172518,"y":167129},{"x":-22,"y":28},{"x":-105,"y":-11},{"x":-75,"y":93},{"x":-36,"y":5},{"x":-49,"y":-51},{"x":-64,"y":47},{"x":63,"y":120},{"x":-10,"y":65},{"x":42,"y":42},{"x":-33,"y":33},{"x":-59,"y":2},{"x":-38,"y":-36},{"x":-29,"y":29},{"x":-60,"y":3},{"x":-71,"y":63},{"x":-81,"y":-10},{"x":3,"y":46},{"x":-52,"y":71},{"x":-77,"y":32},{"x":-90,"y":-18},{"x":-58,"y":30},{"x":-53,"y":132},{"x":-66,"y":29},{"x":7,"y":102},{"x":186,"y":162},{"x":-154,"y":239},{"x":-98,"y":4},{"x":-123,"y":43},{"x":-87,"y":78},{"x":-47,"y":-8},{"x":-121,"y":43},{"x":-71,"y":-20}],"type":"area"},{"arc":[{"x":166152,"y":164406},{"x":-16,"y":28},{"x":-95,"y":27},{"x":-29,"y":48}],"type":"area"},{"arc":[{"x":166012,"y":164509},{"x":-46,"y":9},{"x":-95,"y":133},{"x":-72,"y":21},{"x":-16,"y":101},{"x":-101,"y":43},{"x":-78,"y":-47},{"x":-25,"y":-109},{"x":-98,"y":-42},{"x":-70,"y":-157},{"x":-89,"y":-11},{"x":-97,"y":-52},{"x":-19,"y":-48},{"x":-105,"y":-5},{"x":-34,"y":-46},{"x":-44,"y":-11},{"x":-72,"y":53},{"x":-74,"y":14},{"x":-44,"y":-116},{"x":-68,"y":-79},{"x":-43,"y":-15},{"x":-55,"y":20},{"x":-65,"y":-85},{"x":-120,"y":-18},{"x":-104,"y":-82},{"x":-82,"y":-20},{"x":-5,"y":-44},{"x":-208,"y":-62},{"x":-38,"y":-66},{"x":-57,"y":35},{"x":-67,"y":-50},{"x":-97,"y":-20},{"x":-70,"y":15},{"x":-121,"y":-89},{"x":-72,"y":3},{"x":-138,"y":61},{"x":-39,"y":85}],"type":"area"},{"arc":[{"x":163384,"y":163828},{"x":-34,"y":12},{"x":-9,"y":-38},{"x":-97,"y":-34},{"x":-145,"y":-108},{"x":-48,"y":-94},{"x":-67,"y":-13},{"x":-52,"y":-85},{"x":-130,"y":-71},{"x":-33,"y":-69},{"x":-82,"y":22},{"x":-262,"y":-187},{"x":-124,"y":-19},{"x":-50,"y":-128}],"type":"admin"},{"arc":[{"x":162251,"y":163016},{"x":105,"y":-83},{"x":60,"y":-184},{"x":152,"y":-78},{"x":73,"y":-107},{"x":96,"y":-34},{"x":82,"y":87},{"x":152,"y":-23},{"x":123,"y":48},{"x":39,"y":50},{"x":-38,"y":75},{"x":29,"y":19},{"x":77,"y":-39},{"x":24,"y":92},{"x":80,"y":24},{"x":-22,"y":45},{"x":-131,"y":-6},{"x":84,"y":145},{"x":7,"y":70},{"x":173,"y":65},{"x":107,"y":-88},{"x":83,"y":22},{"x":67,"y":-16},{"x":-13,"y":-23},{"x":50,"y":-29},{"x":-22,"y":-29},{"x":44,"y":-17},{"x":248,"y":3},{"x":56,"y":-53},{"x":93,"y":11},{"x":-72,"y":-58},{"x":24,"y":-64},{"x":219,"y":3},{"x":76,"y":84},{"x":180,"y":-95},{"x":112,"y":39},{"x":3,"y":-77},{"x":76,"y":-121},{"x":-43,"y":-40},{"x":1,"y":-67},{"x":-69,"y":-128},{"x":-91,"y":-16},{"x":1,"y":-67},{"x":-85,"y":-60},{"x":-16,"y":-57},{"x":31,"y":-77},{"x":-61,"y":-51},{"x":14,"y":-107},{"x":-123,"y":-154},{"x":7,"y":-104},{"x":-67,"y":-99},{"x":-58,"y":-22}],"type":"admin"},{"arc":[{"x":164188,"y":161625},{"x":30,"y":-138},{"x":-31,"y":-39},{"x":-4,"y":-127},{"x":51,"y":-82},{"x":69,"y":-40}],"type":"admin"},{"arc":[{"x":164303,"y":161199},{"x":55,"y":6},{"x":127,"y":156},{"x":196,"y":-40},{"x":77,"y":50},{"x":69,"y":-56},{"x":176,"y":89},{"x":75,"y":-102},{"x":48,"y":-20},{"x":58,"y":14},{"x":86,"y":-99},{"x":59,"y":-14},{"x":57,"y":41},{"x":99,"y":23},{"x":60,"y":-42},{"x":71,"y":35},{"x":33,"y":-14},{"x":29,"y":153},{"x":210,"y":172},{"x":0,"y":38},{"x":98,"y":33},{"x":70,"y":-27},{"x":18,"y":28}],"type":"area"},{"arc":[{"x":178589,"y":173192},{"x":15,"y":-55},{"x":-34,"y":-102},{"x":132,"y":-154},{"x":-57,"y":-150},{"x":25,"y":-34},{"x":-23,"y":-222},{"x":44,"y":-45},{"x":-13,"y":-104},{"x":43,"y":-136},{"x":-36,"y":-7},{"x":-26,"y":-79},{"x":-54,"y":-27},{"x":-47,"y":-163},{"x":-106,"y":-46},{"x":-8,"y":-119},{"x":40,"y":-76},{"x":-39,"y":-60},{"x":28,"y":-32},{"x":-100,"y":-83},{"x":14,"y":-103},{"x":-111,"y":-75},{"x":-94,"y":110},{"x":-41,"y":-105},{"x":-100,"y":-24},{"x":-95,"y":110},{"x":-109,"y":-10},{"x":-9,"y":-72},{"x":-89,"y":-38},{"x":-22,"y":-62},{"x":-73,"y":-51}],"type":"admin"},{"arc":[{"x":177644,"y":171178},{"x":-8,"y":-30},{"x":-71,"y":-9},{"x":40,"y":-179},{"x":171,"y":-257},{"x":94,"y":-16},{"x":21,"y":29},{"x":-30,"y":-87},{"x":-45,"y":-13},{"x":59,"y":-57},{"x":-69,"y":3},{"x":18,"y":-41},{"x":127,"y":-126},{"x":49,"y":39},{"x":102,"y":-101},{"x":57,"y":22},{"x":74,"y":-25},{"x":47,"y":33},{"x":51,"y":-33},{"x":37,"y":47},{"x":65,"y":-42},{"x":34,"y":7}],"type":"area"},{"arc":[{"x":178467,"y":170342},{"x":118,"y":46},{"x":265,"y":165},{"x":42,"y":3},{"x":13,"y":-44},{"x":20,"y":-20},{"x":-31,"y":59},{"x":57,"y":-1},{"x":7,"y":-11},{"x":-18,"y":38},{"x":36,"y":4},{"x":16,"y":-31},{"x":-65,"y":-89},{"x":73,"y":76},{"x":86,"y":-10},{"x":472,"y":236},{"x":74,"y":4},{"x":66,"y":-91},{"x":189,"y":55},{"x":29,"y":-23},{"x":151,"y":52},{"x":203,"y":-3},{"x":28,"y":-27},{"x":188,"y":48},{"x":72,"y":-31},{"x":278,"y":45},{"x":306,"y":-24},{"x":252,"y":103},{"x":35,"y":-32},{"x":-23,"y":-4},{"x":147,"y":-9},{"x":214,"y":117},{"x":65,"y":18},{"x":42,"y":-15},{"x":7,"y":30},{"x":102,"y":53},{"x":65,"y":70},{"x":87,"y":-6},{"x":53,"y":32},{"x":20,"y":-18},{"x":8,"y":35},{"x":137,"y":109},{"x":147,"y":40},{"x":50,"y":40},{"x":39,"y":-13},{"x":28,"y":44},{"x":62,"y":5},{"x":-11,"y":-23},{"x":43,"y":27},{"x":-5,"y":25},{"x":20,"y":-7},{"x":-20,"y":15},{"x":35,"y":-10},{"x":-21,"y":-30},{"x":22,"y":28},{"x":12,"y":-14},{"x":11,"y":41},{"x":135,"y":75},{"x":61,"y":-27},{"x":27,"y":65},{"x":20,"y":-9},{"x":70,"y":70},{"x":326,"y":188},{"x":116,"y":22},{"x":49,"y":-26}],"type":"coastline"},{"arc":[{"x":172497,"y":164103},{"x":-78,"y":74},{"x":19,"y":39},{"x":-60,"y":247},{"x":72,"y":73},{"x":-9,"y":52},{"x":-187,"y":-143},{"x":-35,"y":53},{"x":26,"y":39},{"x":46,"y":20},{"x":12,"y":-30},{"x":43,"y":18},{"x":-12,"y":26},{"x":103,"y":44},{"x":-29,"y":136},{"x":22,"y":13},{"x":166,"y":22},{"x":78,"y":-55},{"x":55,"y":59},{"x":68,"y":-73},{"x":64,"y":3}],"type":"admin"},{"arc":[{"x":163556,"y":156832},{"x":-55,"y":2},{"x":-138,"y":104},{"x":-119,"y":-51},{"x":13,"y":-98},{"x":-70,"y":-194},{"x":-186,"y":-102},{"x":-45,"y":-1},{"x":-45,"y":-74},{"x":15,"y":-91},{"x":-41,"y":-127},{"x":41,"y":-46},{"x":-8,"y":-43},{"x":-119,"y":-87},{"x":-1,"y":-85},{"x":-94,"y":-23}],"type":"area"},{"arc":[{"x":162704,"y":155916},{"x":13,"y":-113},{"x":72,"y":-118},{"x":-31,"y":-155},{"x":32,"y":-71},{"x":-109,"y":-72},{"x":8,"y":-49},{"x":31,"y":-51},{"x":95,"y":-46},{"x":19,"y":-169},{"x":73,"y":-119},{"x":-127,"y":-278},{"x":34,"y":-156},{"x":40,"y":-41},{"x":-10,"y":-89},{"x":-95,"y":-41},{"x":-78,"y":99},{"x":-131,"y":-105},{"x":-56,"y":53},{"x":-118,"y":21},{"x":-50,"y":94},{"x":-53,"y":-26},{"x":-37,"y":12},{"x":-43,"y":-84},{"x":-128,"y":-108},{"x":-45,"y":-21},{"x":-66,"y":12},{"x":-310,"y":-263},{"x":-118,"y":7},{"x":-33,"y":-18},{"x":-19,"y":-80},{"x":-99,"y":-29},{"x":-146,"y":-276},{"x":-103,"y":-21},{"x":-53,"y":-66},{"x":-8,"y":-93},{"x":-76,"y":-114}],"type":"admin"},{"arc":[{"x":160979,"y":153342},{"x":-19,"y":-24}],"type":"admin"},{"arc":[{"x":160960,"y":153318},{"x":54,"y":-4},{"x":123,"y":-130},{"x":145,"y":14},{"x":63,"y":35},{"x":95,"y":-49},{"x":69,"y":-2},{"x":213,"y":-199},{"x":63,"y":45},{"x":169,"y":-16},{"x":132,"y":24},{"x":34,"y":-29},{"x":139,"y":18},{"x":59,"y":-20},{"x":59,"y":-80},{"x":168,"y":-113},{"x":160,"y":-10},{"x":45,"y":54},{"x":174,"y":-16},{"x":67,"y":43},{"x":91,"y":-69},{"x":129,"y":-25},{"x":-12,"y":-244},{"x":96,"y":-147},{"x":-6,"y":-72},{"x":44,"y":-4},{"x":75,"y":-86},{"x":118,"y":-65},{"x":137,"y":-171}],"type":"admin"},{"arc":[{"x":163663,"y":152000},{"x":10,"y":167},{"x":26,"y":51},{"x":3,"y":-44},{"x":26,"y":69},{"x":116,"y":423},{"x":297,"y":702},{"x":158,"y":482},{"x":179,"y":268},{"x":73,"y":66},{"x":-133,"y":-100},{"x":16,"y":21},{"x":-36,"y":32},{"x":32,"y":-11},{"x":64,"y":49},{"x":86,"y":410},{"x":108,"y":281},{"x":111,"y":166},{"x":30,"y":7},{"x":-18,"y":0},{"x":18,"y":33},{"x":22,"y":-14},{"x":-22,"y":15},{"x":42,"y":83},{"x":71,"y":27},{"x":69,"y":74},{"x":28,"y":118},{"x":65,"y":110},{"x":68,"y":44},{"x":129,"y":194},{"x":30,"y":-5},{"x":51,"y":48},{"x":-70,"y":-41},{"x":17,"y":40},{"x":-30,"y":3},{"x":38,"y":12},{"x":7,"y":-23},{"x":33,"y":69},{"x":-15,"y":146},{"x":25,"y":70},{"x":141,"y":224},{"x":89,"y":42},{"x":-20,"y":11},{"x":45,"y":-2},{"x":10,"y":-29},{"x":-8,"y":68},{"x":86,"y":35},{"x":63,"y":83}],"type":"coastline"},{"arc":[{"x":165793,"y":156474},{"x":-41,"y":55},{"x":-92,"y":15},{"x":-212,"y":103},{"x":-108,"y":-37},{"x":-48,"y":15},{"x":-74,"y":-70},{"x":-129,"y":-16},{"x":-25,"y":72},{"x":-81,"y":14},{"x":-58,"y":49},{"x":-127,"y":-20},{"x":-96,"y":109},{"x":-186,"y":-28},{"x":-58,"y":-30},{"x":-356,"y":-28},{"x":-243,"y":72},{"x":-144,"y":19},{"x":-98,"y":-24},{"x":-61,"y":88}],"type":"area"},{"arc":[{"x":163671,"y":159689},{"x":-51,"y":37},{"x":-159,"y":-133},{"x":-85,"y":-13},{"x":-51,"y":-46},{"x":-112,"y":9},{"x":-54,"y":-50},{"x":-84,"y":-25},{"x":-52,"y":-84},{"x":-107,"y":-62},{"x":77,"y":-138},{"x":-21,"y":-127},{"x":-182,"y":-220},{"x":-120,"y":-20},{"x":-57,"y":-42},{"x":-44,"y":43},{"x":-62,"y":9},{"x":-22,"y":42},{"x":-108,"y":-66},{"x":-66,"y":2},{"x":-51,"y":-48},{"x":-103,"y":67},{"x":-66,"y":11},{"x":-19,"y":-43},{"x":-31,"y":-3},{"x":17,"y":-17},{"x":-92,"y":-24},{"x":-61,"y":-132}],"type":"admin"},{"arc":[{"x":161905,"y":158616},{"x":41,"y":-45},{"x":141,"y":12},{"x":66,"y":-35},{"x":37,"y":-103},{"x":83,"y":-36},{"x":-58,"y":-58},{"x":-21,"y":-147},{"x":34,"y":-185},{"x":24,"y":-43},{"x":36,"y":8},{"x":-177,"y":-107},{"x":-44,"y":-81},{"x":-24,"y":-187},{"x":-52,"y":-15},{"x":-33,"y":-73},{"x":0,"y":-134},{"x":55,"y":-89},{"x":-29,"y":-66},{"x":45,"y":-95},{"x":-35,"y":-79},{"x":31,"y":-97},{"x":-83,"y":-88},{"x":-12,"y":-87},{"x":-90,"y":-90}],"type":"admin"},{"arc":[{"x":161722,"y":155809},{"x":158,"y":113},{"x":44,"y":61},{"x":229,"y":-68},{"x":37,"y":74},{"x":222,"y":121},{"x":131,"y":-14},{"x":16,"y":-47},{"x":-26,"y":-49},{"x":33,"y":-64},{"x":108,"y":0},{"x":30,"y":-20}],"type":"admin"},{"arc":[{"x":163556,"y":156832},{"x":61,"y":51},{"x":-127,"y":169},{"x":-82,"y":55},{"x":-54,"y":136},{"x":-81,"y":74},{"x":24,"y":56},{"x":-90,"y":-37},{"x":-27,"y":28},{"x":34,"y":17},{"x":41,"y":118},{"x":-22,"y":103},{"x":18,"y":143},{"x":84,"y":188},{"x":-52,"y":-1},{"x":-37,"y":57},{"x":-64,"y":-39},{"x":-11,"y":114},{"x":46,"y":35},{"x":4,"y":40},{"x":-29,"y":-4},{"x":21,"y":30},{"x":82,"y":-8},{"x":13,"y":50},{"x":62,"y":46},{"x":215,"y":56},{"x":59,"y":51},{"x":47,"y":-10},{"x":40,"y":-48},{"x":64,"y":-11},{"x":75,"y":57},{"x":18,"y":-38},{"x":37,"y":32},{"x":120,"y":20},{"x":16,"y":-19},{"x":-37,"y":-61},{"x":14,"y":-57},{"x":-48,"y":3},{"x":9,"y":-24},{"x":-58,"y":-11},{"x":-57,"y":-60},{"x":-20,"y":10},{"x":-132,"y":-178},{"x":-76,"y":-55},{"x":49,"y":13},{"x":136,"y":147},{"x":102,"y":-29},{"x":-84,"y":-98},{"x":-14,"y":-54},{"x":53,"y":5},{"x":-2,"y":-24},{"x":-82,"y":-15},{"x":-87,"y":-175},{"x":-183,"y":-106},{"x":57,"y":-42},{"x":-133,"y":-166},{"x":80,"y":-133},{"x":-23,"y":-77},{"x":73,"y":-42},{"x":187,"y":21},{"x":45,"y":64},{"x":57,"y":26},{"x":150,"y":-27},{"x":22,"y":31},{"x":137,"y":-58},{"x":114,"y":29},{"x":5,"y":97},{"x":54,"y":113},{"x":99,"y":3},{"x":21,"y":42},{"x":-11,"y":208},{"x":95,"y":-16},{"x":89,"y":-55},{"x":27,"y":15},{"x":19,"y":139},{"x":56,"y":64},{"x":9,"y":99},{"x":41,"y":17},{"x":-75,"y":110},{"x":66,"y":203},{"x":-17,"y":41},{"x":-28,"y":-58},{"x":-16,"y":121},{"x":51,"y":9},{"x":-101,"y":38},{"x":-50,"y":90},{"x":1,"y":18},{"x":101,"y":8},{"x":-23,"y":51},{"x":29,"y":6},{"x":-22,"y":49},{"x":19,"y":53},{"x":-132,"y":-61},{"x":-44,"y":48},{"x":-2,"y":-102},{"x":-27,"y":-13},{"x":-80,"y":37},{"x":48,"y":52},{"x":-53,"y":74},{"x":-117,"y":-43},{"x":10,"y":40},{"x":-84,"y":8},{"x":-69,"y":52},{"x":-126,"y":-17},{"x":-74,"y":42},{"x":-13,"y":-32},{"x":-10,"y":39},{"x":-87,"y":43},{"x":13,"y":84},{"x":-29,"y":30},{"x":26,"y":44},{"x":-55,"y":53},{"x":-25,"y":143},{"x":-59,"y":48},{"x":-21,"y":85},{"x":-40,"y":36},{"x":-77,"y":15},{"x":-9,"y":84},{"x":23,"y":32},{"x":-26,"y":42},{"x":61,"y":161}],"type":"area"},{"arc":[{"x":173711,"y":168055},{"x":-124,"y":244},{"x":-37,"y":44},{"x":-66,"y":9},{"x":24,"y":44},{"x":-81,"y":50},{"x":-85,"y":-23},{"x":-22,"y":35},{"x":-17,"y":48},{"x":52,"y":65},{"x":-5,"y":93},{"x":-30,"y":156},{"x":-75,"y":184},{"x":-29,"y":16},{"x":36,"y":62}],"type":"area"},{"arc":[{"x":173252,"y":169082},{"x":-14,"y":102},{"x":-34,"y":-26},{"x":-61,"y":20},{"x":-78,"y":-56},{"x":-32,"y":-62},{"x":-164,"y":2},{"x":-73,"y":-51},{"x":-78,"y":69},{"x":-7,"y":154},{"x":-61,"y":81},{"x":-188,"y":-27},{"x":-104,"y":71},{"x":-59,"y":104},{"x":-92,"y":-9},{"x":-55,"y":33},{"x":-45,"y":-46},{"x":-102,"y":70},{"x":-80,"y":177},{"x":-37,"y":23},{"x":-73,"y":-33},{"x":-88,"y":8},{"x":-43,"y":-30},{"x":-88,"y":54},{"x":-75,"y":7},{"x":-61,"y":-104},{"x":-18,"y":-195},{"x":-45,"y":12},{"x":-19,"y":48},{"x":-36,"y":-25},{"x":-26,"y":21},{"x":-11,"y":-32},{"x":-38,"y":5},{"x":-5,"y":-28},{"x":-38,"y":-5},{"x":-8,"y":-33},{"x":-48,"y":2},{"x":-44,"y":-54},{"x":-94,"y":-28},{"x":-109,"y":52},{"x":-36,"y":75},{"x":-112,"y":14},{"x":-131,"y":-140},{"x":-18,"y":-71},{"x":-46,"y":-4},{"x":-54,"y":-72},{"x":-74,"y":-37},{"x":-79,"y":-100},{"x":-3,"y":-51}],"type":"admin"},{"arc":[{"x":172518,"y":167129},{"x":57,"y":38},{"x":64,"y":-19},{"x":117,"y":64},{"x":139,"y":-135},{"x":51,"y":51},{"x":46,"y":19},{"x":28,"y":-14},{"x":41,"y":75},{"x":41,"y":21}],"type":"admin"},{"arc":[{"x":166425,"y":158445},{"x":-32,"y":-50},{"x":47,"y":71},{"x":-15,"y":-21}],"type":"coastline"},{"arc":[{"x":166457,"y":158495},{"x":-2,"y":45},{"x":6,"y":-80},{"x":-4,"y":35}],"type":"coastline"},{"arc":[{"x":166641,"y":158612},{"x":-133,"y":107},{"x":-77,"y":-97},{"x":71,"y":-56},{"x":29,"y":33},{"x":20,"y":-16},{"x":48,"y":61},{"x":42,"y":-32}],"type":"coastline"},{"arc":[{"x":164303,"y":161199},{"x":-32,"y":-50}],"type":"admin"},{"arc":[{"x":164271,"y":161149},{"x":23,"y":-60},{"x":-57,"y":-121},{"x":16,"y":-51},{"x":-83,"y":-71},{"x":21,"y":-95},{"x":-47,"y":-138},{"x":23,"y":-134},{"x":-59,"y":-44},{"x":-24,"y":-83},{"x":-89,"y":-118},{"x":-46,"y":-198},{"x":-50,"y":-17},{"x":-16,"y":-165},{"x":-136,"y":-59},{"x":-76,"y":-106}],"type":"admin"},{"arc":[{"x":165793,"y":156474},{"x":124,"y":157},{"x":143,"y":42},{"x":-48,"y":8},{"x":40,"y":22},{"x":-5,"y":-22},{"x":73,"y":131},{"x":-46,"y":230},{"x":-86,"y":111},{"x":34,"y":88},{"x":-24,"y":-30},{"x":-4,"y":33},{"x":20,"y":-7},{"x":-10,"y":10},{"x":-16,"y":-4},{"x":-30,"y":99},{"x":12,"y":180},{"x":115,"y":310},{"x":-40,"y":84},{"x":25,"y":128},{"x":63,"y":143},{"x":78,"y":105},{"x":33,"y":2},{"x":3,"y":33},{"x":30,"y":-7},{"x":237,"y":69},{"x":40,"y":38},{"x":-42,"y":-35},{"x":-233,"y":-70},{"x":-51,"y":30},{"x":12,"y":39},{"x":27,"y":15},{"x":-11,"y":-18},{"x":37,"y":-33},{"x":41,"y":26},{"x":-43,"y":38},{"x":17,"y":24},{"x":38,"y":-34},{"x":84,"y":105},{"x":-45,"y":25},{"x":-35,"y":-32},{"x":43,"y":62},{"x":43,"y":-33},{"x":-39,"y":29},{"x":31,"y":63},{"x":111,"y":140},{"x":35,"y":-26},{"x":-26,"y":23},{"x":14,"y":24},{"x":27,"y":-4},{"x":-12,"y":27},{"x":108,"y":131},{"x":24,"y":-2},{"x":-21,"y":2},{"x":21,"y":31},{"x":29,"y":-22},{"x":-20,"y":21},{"x":42,"y":61},{"x":119,"y":127},{"x":15,"y":-20},{"x":-4,"y":34},{"x":253,"y":274},{"x":190,"y":196},{"x":37,"y":4},{"x":-26,"y":4},{"x":454,"y":444}],"type":"coastline"},{"arc":[{"x":174317,"y":169852},{"x":-87,"y":26},{"x":-176,"y":-163},{"x":-20,"y":-50},{"x":-88,"y":-31},{"x":-81,"y":-73},{"x":-55,"y":7},{"x":-37,"y":-72},{"x":-106,"y":-29},{"x":-59,"y":-101},{"x":16,"y":-53},{"x":-25,"y":-5},{"x":-34,"y":-120},{"x":-67,"y":-82},{"x":-49,"y":-8},{"x":-114,"y":36},{"x":-83,"y":-52}],"type":"admin"},{"arc":[{"x":174220,"y":158770},{"x":-23,"y":-12},{"x":38,"y":32},{"x":-15,"y":-20}],"type":"coastline"},{"arc":[{"x":177621,"y":160358},{"x":-27,"y":71},{"x":49,"y":-92},{"x":-22,"y":21}],"type":"coastline"},{"arc":[{"x":180776,"y":160974},{"x":-1,"y":122},{"x":-90,"y":23},{"x":-14,"y":52},{"x":-52,"y":-35},{"x":-70,"y":-6},{"x":70,"y":5},{"x":18,"y":18},{"x":8,"y":-7},{"x":-78,"y":-50},{"x":-3,"y":27},{"x":-8,"y":-52},{"x":-245,"y":-45},{"x":-45,"y":14},{"x":-187,"y":-18},{"x":-42,"y":30},{"x":24,"y":-23},{"x":-129,"y":16},{"x":-138,"y":-41},{"x":-59,"y":7},{"x":-306,"y":-100},{"x":-6,"y":-30},{"x":-50,"y":-16},{"x":-225,"y":0},{"x":-41,"y":-60},{"x":-259,"y":-103},{"x":-57,"y":-56},{"x":-67,"y":-10},{"x":-57,"y":-73},{"x":-52,"y":-11},{"x":33,"y":3},{"x":-21,"y":-21},{"x":-63,"y":-13},{"x":-156,"y":-99},{"x":-45,"y":16},{"x":-19,"y":-22},{"x":4,"y":21},{"x":-169,"y":-104},{"x":-105,"y":-22},{"x":30,"y":-8},{"x":-39,"y":-20},{"x":-185,"y":21},{"x":-131,"y":-39},{"x":-44,"y":60},{"x":37,"y":-59},{"x":-69,"y":24},{"x":18,"y":-27},{"x":-50,"y":44},{"x":6,"y":-28},{"x":-36,"y":8},{"x":-5,"y":35},{"x":-15,"y":-13},{"x":-23,"y":86},{"x":-40,"y":-31},{"x":-18,"y":22},{"x":-150,"y":365},{"x":96,"y":109},{"x":-13,"y":38},{"x":44,"y":104},{"x":-25,"y":32},{"x":12,"y":125},{"x":44,"y":125},{"x":89,"y":27},{"x":-25,"y":59},{"x":29,"y":60},{"x":-12,"y":-21},{"x":1,"y":85},{"x":86,"y":102},{"x":-34,"y":-5},{"x":-17,"y":62},{"x":-68,"y":41},{"x":-63,"y":-2},{"x":27,"y":-7},{"x":-26,"y":-25},{"x":-106,"y":44},{"x":-18,"y":-20},{"x":-12,"y":30},{"x":-92,"y":-76},{"x":-57,"y":-21},{"x":-9,"y":14},{"x":-20,"y":-2},{"x":23,"y":-8},{"x":-61,"y":-26},{"x":-47,"y":6},{"x":-143,"y":-106},{"x":-96,"y":-28},{"x":-28,"y":18},{"x":-171,"y":-59},{"x":-55,"y":-78},{"x":-96,"y":-24},{"x":-47,"y":-56},{"x":-118,"y":-48},{"x":-52,"y":-58},{"x":-34,"y":9},{"x":21,"y":-9},{"x":-294,"y":-108},{"x":-111,"y":-73},{"x":-26,"y":12},{"x":6,"y":-20},{"x":-87,"y":9},{"x":-148,"y":-49},{"x":-63,"y":12},{"x":-6,"y":-97},{"x":-37,"y":-52},{"x":-54,"y":-31},{"x":-14,"y":17},{"x":11,"y":-15},{"x":-16,"y":-14},{"x":-6,"y":8},{"x":6,"y":-13},{"x":-24,"y":-10},{"x":4,"y":19},{"x":27,"y":32},{"x":-7,"y":-1},{"x":-21,"y":-30},{"x":-2,"y":-23},{"x":-93,"y":-78},{"x":-66,"y":-18},{"x":-47,"y":-66},{"x":2,"y":-104},{"x":-130,"y":-135},{"x":-14,"y":-77},{"x":-15,"y":-32},{"x":-12,"y":3},{"x":11,"y":-4},{"x":-12,"y":-25},{"x":-5,"y":35},{"x":-3,"y":-25},{"x":12,"y":-16},{"x":-99,"y":-98},{"x":-40,"y":10},{"x":32,"y":-21},{"x":-39,"y":-21},{"x":4,"y":-19},{"x":21,"y":8},{"x":-35,"y":-39},{"x":3,"y":113},{"x":-21,"y":-96},{"x":-38,"y":-10},{"x":-35,"y":-112},{"x":-217,"y":-190},{"x":-12,"y":-45},{"x":-80,"y":-78},{"x":-3,"y":-47},{"x":-24,"y":-12},{"x":7,"y":22},{"x":-50,"y":-66},{"x":-19,"y":-104},{"x":-51,"y":-55},{"x":22,"y":-50},{"x":-30,"y":-151},{"x":46,"y":-94},{"x":-14,"y":-44},{"x":-30,"y":-4},{"x":42,"y":1},{"x":-11,"y":-43},{"x":-35,"y":9},{"x":-18,"y":55},{"x":21,"y":-62},{"x":34,"y":-19},{"x":-38,"y":-20},{"x":11,"y":-7},{"x":-12,"y":-13},{"x":-3,"y":27},{"x":-5,"y":-17},{"x":12,"y":-14},{"x":-42,"y":-31},{"x":5,"y":-96},{"x":-44,"y":-34},{"x":-17,"y":14},{"x":-34,"y":-78},{"x":-40,"y":37},{"x":4,"y":40},{"x":-5,"y":-40},{"x":17,"y":-23},{"x":-27,"y":-41},{"x":39,"y":-4},{"x":-1,"y":-23},{"x":13,"y":29},{"x":22,"y":-38},{"x":-43,"y":-24},{"x":-7,"y":28},{"x":-107,"y":-213},{"x":24,"y":-13},{"x":-35,"y":-77},{"x":24,"y":25},{"x":-6,"y":-56},{"x":28,"y":13},{"x":3,"y":-70},{"x":9,"y":15},{"x":20,"y":-18},{"x":-32,"y":-53},{"x":49,"y":-46},{"x":-22,"y":-6},{"x":21,"y":-95},{"x":20,"y":-19},{"x":14,"y":20},{"x":13,"y":-40},{"x":47,"y":54},{"x":-13,"y":-95},{"x":66,"y":-12},{"x":-14,"y":-30},{"x":33,"y":-6},{"x":27,"y":41},{"x":44,"y":-25},{"x":35,"y":84},{"x":80,"y":32},{"x":-29,"y":89},{"x":29,"y":6},{"x":35,"y":117},{"x":-32,"y":98},{"x":78,"y":44},{"x":-29,"y":93},{"x":78,"y":97},{"x":264,"y":146},{"x":71,"y":22},{"x":-6,"y":-22},{"x":69,"y":2},{"x":78,"y":65},{"x":37,"y":-16},{"x":49,"y":23},{"x":63,"y":-11},{"x":58,"y":-86},{"x":70,"y":-28},{"x":111,"y":71},{"x":42,"y":-7},{"x":148,"y":167},{"x":125,"y":69},{"x":111,"y":227},{"x":115,"y":39},{"x":24,"y":22},{"x":-59,"y":-27},{"x":12,"y":39},{"x":27,"y":-8},{"x":8,"y":52},{"x":74,"y":31},{"x":155,"y":-25},{"x":-9,"y":-19},{"x":19,"y":10},{"x":166,"y":-130},{"x":130,"y":-149},{"x":64,"y":-159},{"x":-8,"y":-126},{"x":-28,"y":-33},{"x":19,"y":-8},{"x":-46,"y":-81},{"x":-124,"y":-13},{"x":-95,"y":-110},{"x":-29,"y":11},{"x":-84,"y":-48},{"x":10,"y":77},{"x":-16,"y":-78},{"x":-137,"y":-37},{"x":8,"y":-56},{"x":39,"y":-11},{"x":52,"y":-89},{"x":-14,"y":-16},{"x":14,"y":14},{"x":26,"y":-41},{"x":-49,"y":17},{"x":114,"y":-76},{"x":0,"y":-28},{"x":39,"y":-5},{"x":24,"y":25},{"x":-30,"y":26},{"x":24,"y":32},{"x":52,"y":-8},{"x":13,"y":-24},{"x":55,"y":17},{"x":-32,"y":1},{"x":20,"y":17},{"x":125,"y":-22},{"x":20,"y":16},{"x":65,"y":-20},{"x":-2,"y":-43},{"x":37,"y":-15},{"x":-19,"y":-46},{"x":30,"y":20},{"x":35,"y":-30},{"x":40,"y":25},{"x":41,"y":-28},{"x":40,"y":151},{"x":34,"y":27},{"x":53,"y":3},{"x":82,"y":-45},{"x":35,"y":16},{"x":8,"y":-31},{"x":22,"y":40},{"x":44,"y":13},{"x":52,"y":-44},{"x":25,"y":26},{"x":109,"y":-35},{"x":61,"y":81},{"x":81,"y":50},{"x":31,"y":-28},{"x":18,"y":54},{"x":31,"y":-14},{"x":-6,"y":-58},{"x":33,"y":-18},{"x":-18,"y":-8},{"x":86,"y":10},{"x":-2,"y":16},{"x":-66,"y":-11},{"x":18,"y":26},{"x":5,"y":-22},{"x":41,"y":14},{"x":-14,"y":14},{"x":23,"y":-9},{"x":-14,"y":38},{"x":34,"y":-23},{"x":51,"y":65},{"x":4,"y":-20},{"x":34,"y":3},{"x":-31,"y":65},{"x":16,"y":-14},{"x":28,"y":77},{"x":96,"y":2},{"x":53,"y":70},{"x":49,"y":3},{"x":51,"y":51},{"x":44,"y":-7},{"x":-18,"y":-9},{"x":24,"y":-32},{"x":71,"y":112},{"x":65,"y":21},{"x":-8,"y":34},{"x":33,"y":13},{"x":6,"y":44},{"x":109,"y":12},{"x":15,"y":40},{"x":105,"y":73},{"x":67,"y":-51},{"x":14,"y":59},{"x":54,"y":-5},{"x":64,"y":34},{"x":15,"y":63},{"x":120,"y":38},{"x":-3,"y":-20},{"x":5,"y":28},{"x":197,"y":105},{"x":58,"y":-20},{"x":-10,"y":114},{"x":25,"y":41},{"x":-22,"y":2},{"x":20,"y":23},{"x":14,"y":-23},{"x":11,"y":75},{"x":98,"y":84},{"x":44,"y":91},{"x":119,"y":106},{"x":74,"y":5},{"x":-2,"y":49},{"x":48,"y":78},{"x":63,"y":47},{"x":38,"y":-7},{"x":67,"y":87},{"x":62,"y":-20},{"x":58,"y":49},{"x":-5,"y":27},{"x":-58,"y":6},{"x":-13,"y":37},{"x":48,"y":32},{"x":-23,"y":35},{"x":48,"y":21},{"x":-2,"y":114},{"x":48,"y":49},{"x":95,"y":64},{"x":58,"y":-22},{"x":98,"y":72},{"x":113,"y":-41},{"x":72,"y":25},{"x":3,"y":37},{"x":46,"y":35},{"x":155,"y":38},{"x":70,"y":110},{"x":68,"y":-8},{"x":31,"y":-49},{"x":26,"y":95},{"x":-22,"y":62},{"x":90,"y":120},{"x":32,"y":1},{"x":-18,"y":39},{"x":23,"y":146}],"type":"coastline"},{"arc":[{"x":179115,"y":159267},{"x":-17,"y":-24},{"x":27,"y":41},{"x":-10,"y":-17}],"type":"coastline"},{"arc":[{"x":180828,"y":160780},{"x":-60,"y":-8},{"x":34,"y":-32},{"x":26,"y":40}],"type":"coastline"},{"arc":[{"x":164660,"y":167116},{"x":103,"y":7},{"x":54,"y":-48},{"x":49,"y":-104},{"x":91,"y":-56},{"x":55,"y":-10},{"x":68,"y":42},{"x":302,"y":-28},{"x":45,"y":-28},{"x":39,"y":4},{"x":44,"y":47},{"x":69,"y":-18},{"x":30,"y":-158},{"x":58,"y":-91},{"x":53,"y":7},{"x":27,"y":-161},{"x":77,"y":-148},{"x":150,"y":34},{"x":41,"y":-7},{"x":32,"y":-71},{"x":132,"y":13},{"x":63,"y":37},{"x":35,"y":-41},{"x":11,"y":-192},{"x":84,"y":-111},{"x":10,"y":-131},{"x":-42,"y":-106},{"x":7,"y":-60},{"x":-148,"y":-122},{"x":-62,"y":15},{"x":-29,"y":-53},{"x":26,"y":-20},{"x":-43,"y":-77},{"x":115,"y":-113},{"x":220,"y":170},{"x":64,"y":-88},{"x":65,"y":8},{"x":3,"y":-40},{"x":-70,"y":-88},{"x":-26,"y":-95},{"x":-58,"y":-20},{"x":-24,"y":-57},{"x":-155,"y":42},{"x":-40,"y":-53},{"x":-46,"y":12},{"x":1,"y":-27},{"x":-44,"y":-2},{"x":38,"y":-84},{"x":-55,"y":-40},{"x":21,"y":-53},{"x":236,"y":-59},{"x":42,"y":-99},{"x":-13,"y":-40},{"x":-91,"y":-11},{"x":-71,"y":-45},{"x":4,"y":-54},{"x":-59,"y":-14},{"x":-34,"y":-93},{"x":-77,"y":-39},{"x":-25,"y":10}],"type":"area"},{"arc":[{"x":162572,"y":165414},{"x":141,"y":-67},{"x":114,"y":-1},{"x":116,"y":-99},{"x":105,"y":-21},{"x":60,"y":-164},{"x":62,"y":11},{"x":120,"y":-121},{"x":-14,"y":-79},{"x":26,"y":-49},{"x":-48,"y":-107},{"x":32,"y":-103},{"x":123,"y":0},{"x":20,"y":-45},{"x":-18,"y":-102},{"x":-72,"y":-25},{"x":26,"y":-55},{"x":-40,"y":1},{"x":-26,"y":-135},{"x":77,"y":-38},{"x":63,"y":-99},{"x":27,"y":-223},{"x":-82,"y":-65}],"type":"admin"},{"arc":[{"x":177644,"y":171178},{"x":47,"y":77},{"x":7,"y":110},{"x":-75,"y":57},{"x":-5,"y":114},{"x":-105,"y":22},{"x":-62,"y":-38},{"x":-87,"y":-3},{"x":-128,"y":58},{"x":-36,"y":-14},{"x":-30,"y":53},{"x":-190,"y":78},{"x":-110,"y":-61},{"x":-53,"y":15},{"x":-83,"y":-42},{"x":-82,"y":122},{"x":-104,"y":29},{"x":-126,"y":184},{"x":-51,"y":16},{"x":-158,"y":-31},{"x":-60,"y":17},{"x":-44,"y":-62},{"x":-54,"y":-17},{"x":-28,"y":6},{"x":-35,"y":68},{"x":-141,"y":-18},{"x":-90,"y":61},{"x":-51,"y":6},{"x":-2,"y":90},{"x":44,"y":93},{"x":-19,"y":113},{"x":20,"y":103},{"x":-43,"y":27},{"x":-68,"y":-17},{"x":-103,"y":181}],"type":"admin"},{"arc":[{"x":177198,"y":169355},{"x":633,"y":558},{"x":447,"y":302},{"x":187,"y":114},{"x":13,"y":-17},{"x":-11,"y":30}],"type":"coastline"},{"arc":[{"x":176139,"y":168523},{"x":75,"y":9},{"x":4,"y":47},{"x":-31,"y":13},{"x":27,"y":50},{"x":6,"y":-47},{"x":-1,"y":56},{"x":33,"y":-95},{"x":48,"y":-15},{"x":20,"y":57},{"x":19,"y":-7},{"x":-11,"y":-94},{"x":143,"y":-52},{"x":41,"y":54},{"x":75,"y":-55},{"x":-27,"y":21},{"x":99,"y":143},{"x":76,"y":-52},{"x":-38,"y":26},{"x":15,"y":26},{"x":-16,"y":-25},{"x":-37,"y":26},{"x":-26,"y":62},{"x":16,"y":-8},{"x":4,"y":30},{"x":42,"y":-30},{"x":-1,"y":-53},{"x":3,"y":53},{"x":-40,"y":30},{"x":15,"y":29},{"x":30,"y":31},{"x":24,"y":-20},{"x":-11,"y":53},{"x":28,"y":27},{"x":18,"y":-15},{"x":-12,"y":30},{"x":108,"y":148},{"x":30,"y":-2},{"x":-19,"y":9},{"x":91,"y":111}],"type":"coastline"},{"arc":[{"x":170543,"y":162600},{"x":158,"y":129},{"x":49,"y":81},{"x":37,"y":5},{"x":3,"y":17},{"x":-38,"y":-19},{"x":36,"y":49},{"x":3,"y":-24},{"x":44,"y":116},{"x":146,"y":186},{"x":252,"y":147}],"type":"coastline"},{"arc":[{"x":160610,"y":162969},{"x":72,"y":-12},{"x":24,"y":-29},{"x":158,"y":-4},{"x":90,"y":-36},{"x":9,"y":-83},{"x":51,"y":-76},{"x":41,"y":-33},{"x":65,"y":-5},{"x":60,"y":28},{"x":86,"y":155},{"x":39,"y":28},{"x":59,"y":-5},{"x":124,"y":71},{"x":131,"y":-91},{"x":35,"y":-77},{"x":147,"y":110},{"x":164,"y":1}],"type":"admin"},{"arc":[{"x":161965,"y":162911},{"x":-5,"y":44},{"x":55,"y":31},{"x":6,"y":59},{"x":128,"y":32},{"x":102,"y":-61}],"type":"area"},{"arc":[{"x":161965,"y":162911},{"x":96,"y":34},{"x":122,"y":-68},{"x":56,"y":-110},{"x":10,"y":-197},{"x":81,"y":-66},{"x":15,"y":-94},{"x":42,"y":-14},{"x":12,"y":-57},{"x":45,"y":6},{"x":-13,"y":-105},{"x":121,"y":-79},{"x":94,"y":5},{"x":59,"y":28},{"x":56,"y":-84},{"x":-19,"y":-170},{"x":90,"y":-57},{"x":-2,"y":-22},{"x":144,"y":35},{"x":42,"y":-95},{"x":330,"y":42},{"x":71,"y":-20},{"x":70,"y":24},{"x":85,"y":-17},{"x":57,"y":26},{"x":138,"y":-16},{"x":105,"y":-112},{"x":104,"y":-28},{"x":15,"y":-25},{"x":128,"y":-11},{"x":69,"y":-39}],"type":"admin"},{"arc":[{"x":182785,"y":168760},{"x":-49,"y":89},{"x":-60,"y":-62},{"x":-86,"y":-16},{"x":-36,"y":33},{"x":-19,"y":-45},{"x":-77,"y":-22},{"x":35,"y":35},{"x":-37,"y":-9},{"x":-151,"y":-88},{"x":-199,"y":-221},{"x":2,"y":-120},{"x":30,"y":-7},{"x":24,"y":50},{"x":75,"y":-15},{"x":16,"y":80},{"x":61,"y":-27},{"x":0,"y":22},{"x":37,"y":1},{"x":33,"y":-39},{"x":39,"y":56},{"x":33,"y":-21},{"x":-15,"y":75},{"x":28,"y":-7},{"x":64,"y":78},{"x":60,"y":-14},{"x":10,"y":36},{"x":77,"y":31},{"x":19,"y":75},{"x":41,"y":-8},{"x":45,"y":60}],"type":"coastline"},{"arc":[{"x":161043,"y":146402},{"x":29,"y":6}],"type":"area"},{"arc":[{"x":161072,"y":146408},{"x":-46,"y":33},{"x":17,"y":-39}],"type":"coastline"},{"arc":[{"x":161311,"y":146139},{"x":-56,"y":-87},{"x":-54,"y":-9},{"x":-53,"y":161},{"x":-88,"y":-13},{"x":-9,"y":92},{"x":31,"y":51},{"x":-15,"y":32},{"x":-36,"y":-3},{"x":2,"y":27}],"type":"area"},{"arc":[{"x":161033,"y":146390},{"x":-29,"y":5},{"x":1,"y":114}],"type":"coastline"},{"arc":[{"x":161005,"y":146509},{"x":-88,"y":-119},{"x":26,"y":-49},{"x":-37,"y":-51},{"x":40,"y":-105},{"x":50,"y":-45},{"x":-16,"y":-65},{"x":46,"y":-33},{"x":-5,"y":-86},{"x":-84,"y":-19},{"x":-120,"y":24},{"x":-191,"y":-64},{"x":-50,"y":-61},{"x":-49,"y":-20},{"x":-13,"y":28},{"x":-401,"y":-296},{"x":-120,"y":287},{"x":-158,"y":-44},{"x":17,"y":20},{"x":-73,"y":67},{"x":-13,"y":52},{"x":-62,"y":-50},{"x":-34,"y":44},{"x":-57,"y":-3}],"type":"area"},{"arc":[{"x":159613,"y":145921},{"x":-35,"y":-45},{"x":24,"y":-68},{"x":18,"y":-36},{"x":42,"y":11},{"x":36,"y":-120},{"x":70,"y":11},{"x":10,"y":-121},{"x":-72,"y":-34},{"x":-100,"y":-7},{"x":10,"y":-98},{"x":-39,"y":-117},{"x":157,"y":31},{"x":18,"y":-121},{"x":-74,"y":-43},{"x":0,"y":-80},{"x":-66,"y":-8},{"x":4,"y":-71},{"x":8,"y":-23},{"x":51,"y":-1},{"x":4,"y":20},{"x":65,"y":-14},{"x":11,"y":-46},{"x":113,"y":-23},{"x":-6,"y":-53},{"x":62,"y":-4},{"x":-37,"y":-31},{"x":50,"y":-11},{"x":-36,"y":-40},{"x":48,"y":-46},{"x":-15,"y":-87}],"type":"area"},{"arc":[{"x":159934,"y":144646},{"x":70,"y":-34},{"x":5,"y":-41},{"x":-30,"y":11},{"x":-21,"y":-38},{"x":9,"y":-33},{"x":48,"y":1},{"x":-2,"y":-30},{"x":39,"y":-9},{"x":85,"y":11},{"x":20,"y":-44},{"x":-48,"y":-135},{"x":66,"y":-7},{"x":27,"y":-36},{"x":138,"y":-11},{"x":-2,"y":-88},{"x":117,"y":-124},{"x":-23,"y":-37},{"x":122,"y":-47},{"x":-16,"y":-47},{"x":41,"y":-22},{"x":0,"y":-93},{"x":89,"y":-81}],"type":"area"},{"arc":[{"x":160668,"y":143712},{"x":29,"y":63},{"x":130,"y":58}],"type":"admin"},{"arc":[{"x":160827,"y":143833},{"x":45,"y":42},{"x":138,"y":37},{"x":157,"y":-99},{"x":55,"y":79}],"type":"admin"},{"arc":[{"x":161222,"y":143892},{"x":-62,"y":230},{"x":11,"y":42},{"x":37,"y":18},{"x":-41,"y":35},{"x":32,"y":20},{"x":-9,"y":25},{"x":-20,"y":18},{"x":-66,"y":-10},{"x":-47,"y":79},{"x":4,"y":45},{"x":79,"y":70},{"x":-66,"y":34},{"x":-69,"y":170},{"x":60,"y":47},{"x":-1,"y":67},{"x":77,"y":59},{"x":27,"y":76},{"x":34,"y":6},{"x":31,"y":-32},{"x":37,"y":62},{"x":-23,"y":39},{"x":-83,"y":15},{"x":-6,"y":29},{"x":61,"y":48},{"x":49,"y":94},{"x":-21,"y":72},{"x":68,"y":31},{"x":-14,"y":56},{"x":29,"y":21},{"x":-69,"y":235},{"x":46,"y":-13},{"x":45,"y":40},{"x":66,"y":-49},{"x":7,"y":-88},{"x":88,"y":-46},{"x":18,"y":41},{"x":4,"y":-25},{"x":24,"y":20},{"x":-31,"y":37},{"x":62,"y":2},{"x":-14,"y":47},{"x":93,"y":-4},{"x":-4,"y":27},{"x":21,"y":-27},{"x":74,"y":53}],"type":"area"},{"arc":[{"x":161760,"y":145608},{"x":-194,"y":290},{"x":-124,"y":99},{"x":11,"y":23},{"x":-20,"y":-20},{"x":-25,"y":22},{"x":62,"y":11},{"x":-58,"y":12},{"x":39,"y":41},{"x":-42,"y":65},{"x":-52,"y":-53},{"x":-46,"y":41}],"type":"coastline"},{"arc":[{"x":159885,"y":151539},{"x":-65,"y":-22},{"x":-44,"y":-163},{"x":40,"y":-105},{"x":-25,"y":-99},{"x":54,"y":-111},{"x":-23,"y":-69},{"x":55,"y":-96},{"x":-22,"y":-104},{"x":149,"y":-95},{"x":16,"y":24},{"x":90,"y":-13},{"x":86,"y":33},{"x":58,"y":-18},{"x":126,"y":-100},{"x":32,"y":-58},{"x":0,"y":-196},{"x":-82,"y":12},{"x":-170,"y":-66},{"x":50,"y":-55},{"x":-64,"y":-26},{"x":-1,"y":-57},{"x":149,"y":-88}],"type":"admin"},{"arc":[{"x":160294,"y":150067},{"x":141,"y":-61},{"x":84,"y":-77},{"x":204,"y":-86},{"x":197,"y":-170},{"x":292,"y":-147},{"x":180,"y":-139}],"type":"area"},{"arc":[{"x":161392,"y":149387},{"x":90,"y":111},{"x":42,"y":8},{"x":-37,"y":-33},{"x":38,"y":33},{"x":120,"y":-19},{"x":-11,"y":24},{"x":21,"y":-14},{"x":8,"y":16},{"x":24,"y":-22},{"x":-39,"y":-10},{"x":39,"y":7},{"x":151,"y":72},{"x":160,"y":128},{"x":85,"y":4},{"x":-47,"y":-28},{"x":123,"y":6}],"type":"coastline"},{"arc":[{"x":162159,"y":149670},{"x":-72,"y":137},{"x":-84,"y":73},{"x":16,"y":57},{"x":-72,"y":33},{"x":-41,"y":139},{"x":-52,"y":65},{"x":-30,"y":233},{"x":-132,"y":263},{"x":-113,"y":-1},{"x":-135,"y":-71},{"x":-112,"y":75},{"x":-111,"y":-7},{"x":-113,"y":151},{"x":47,"y":138},{"x":-142,"y":104},{"x":-41,"y":178},{"x":-71,"y":32},{"x":-118,"y":208},{"x":-170,"y":63},{"x":-96,"y":88},{"x":-15,"y":90},{"x":-62,"y":37},{"x":-143,"y":-35},{"x":-191,"y":-218},{"x":-116,"y":-9},{"x":-42,"y":37},{"x":-63,"y":9}],"type":"area"},{"arc":[{"x":163402,"y":145969},{"x":-238,"y":-249},{"x":-53,"y":-6},{"x":-157,"y":57},{"x":-63,"y":-59},{"x":-58,"y":-14},{"x":-40,"y":-32},{"x":24,"y":-9},{"x":-24,"y":-35},{"x":-175,"y":-100},{"x":-26,"y":8},{"x":16,"y":-13},{"x":-34,"y":0},{"x":-70,"y":-59},{"x":13,"y":-23},{"x":-73,"y":-39},{"x":20,"y":-11},{"x":-72,"y":-19},{"x":5,"y":-55},{"x":-37,"y":-33},{"x":-102,"y":5},{"x":-72,"y":32},{"x":2,"y":50},{"x":-8,"y":-45},{"x":-51,"y":6},{"x":53,"y":12},{"x":-37,"y":17},{"x":-46,"y":-13},{"x":7,"y":23},{"x":71,"y":-2},{"x":-75,"y":9},{"x":-9,"y":-34},{"x":-31,"y":9},{"x":-116,"y":72},{"x":-186,"y":189}],"type":"coastline"},{"arc":[{"x":161222,"y":143892},{"x":102,"y":33},{"x":187,"y":-62},{"x":43,"y":8},{"x":65,"y":64},{"x":38,"y":-8},{"x":99,"y":60},{"x":135,"y":-37},{"x":17,"y":55},{"x":84,"y":2},{"x":40,"y":55},{"x":47,"y":-63},{"x":32,"y":25},{"x":40,"y":-12},{"x":30,"y":91},{"x":63,"y":22}],"type":"admin"},{"arc":[{"x":162244,"y":144125},{"x":1,"y":29},{"x":55,"y":39},{"x":60,"y":32},{"x":67,"y":-10},{"x":39,"y":37},{"x":45,"y":-48},{"x":136,"y":-32},{"x":86,"y":11},{"x":95,"y":69}],"type":"admin"},{"arc":[{"x":162828,"y":144252},{"x":39,"y":20},{"x":23,"y":53},{"x":76,"y":30},{"x":77,"y":207},{"x":84,"y":39},{"x":6,"y":39},{"x":161,"y":80},{"x":-10,"y":52},{"x":79,"y":185},{"x":-93,"y":98},{"x":-14,"y":76},{"x":-42,"y":32},{"x":107,"y":90},{"x":157,"y":36}],"type":"admin"},{"arc":[{"x":163478,"y":145289},{"x":27,"y":10},{"x":-4,"y":97},{"x":-74,"y":108},{"x":34,"y":152},{"x":-18,"y":60},{"x":59,"y":108},{"x":-100,"y":145}],"type":"admin"},{"arc":[{"x":160294,"y":150067},{"x":-25,"y":-10},{"x":-33,"y":31},{"x":-62,"y":-17},{"x":-54,"y":31},{"x":-15,"y":-14},{"x":86,"y":-95},{"x":20,"y":-83},{"x":91,"y":9},{"x":58,"y":35},{"x":20,"y":-57},{"x":55,"y":-13},{"x":39,"y":-44},{"x":-7,"y":-29},{"x":-78,"y":-39},{"x":39,"y":-147},{"x":-95,"y":-140},{"x":120,"y":-128},{"x":-54,"y":36},{"x":61,"y":-97},{"x":-19,"y":-79},{"x":-60,"y":-44},{"x":95,"y":-13},{"x":62,"y":-111},{"x":-28,"y":-5},{"x":7,"y":-24},{"x":36,"y":5},{"x":71,"y":-75},{"x":-13,"y":-13}],"type":"admin"},{"arc":[{"x":160864,"y":148702},{"x":51,"y":181},{"x":116,"y":97},{"x":57,"y":26},{"x":11,"y":-20},{"x":49,"y":43},{"x":244,"y":358}],"type":"coastline"},{"arc":[{"x":160439,"y":149450},{"x":-28,"y":-22},{"x":-41,"y":27},{"x":21,"y":25},{"x":48,"y":-30}],"type":"admin"},{"arc":[{"x":162229,"y":151750},{"x":-28,"y":81},{"x":-77,"y":58},{"x":-1,"y":42},{"x":-54,"y":1},{"x":-41,"y":35},{"x":18,"y":50},{"x":-32,"y":108},{"x":-51,"y":-7},{"x":-51,"y":26},{"x":-64,"y":-19},{"x":-876,"y":1034},{"x":-166,"y":72}],"type":"admin"},{"arc":[{"x":160806,"y":153231},{"x":-37,"y":-24},{"x":-102,"y":36},{"x":-31,"y":42},{"x":-92,"y":-53},{"x":-51,"y":8},{"x":-34,"y":-43},{"x":-125,"y":19},{"x":-151,"y":-27},{"x":-46,"y":7},{"x":-71,"y":62},{"x":-51,"y":-32},{"x":-51,"y":6},{"x":-20,"y":57},{"x":-123,"y":-13},{"x":-117,"y":34},{"x":-29,"y":-12}],"type":"admin"},{"arc":[{"x":159675,"y":153298},{"x":-58,"y":-23},{"x":-29,"y":-50},{"x":-69,"y":30},{"x":-68,"y":-2},{"x":-251,"y":-46},{"x":-32,"y":-51}],"type":"admin"},{"arc":[{"x":159168,"y":153156},{"x":-25,"y":-177},{"x":42,"y":-121},{"x":216,"y":-260},{"x":25,"y":-80},{"x":-69,"y":-32},{"x":-58,"y":-143},{"x":4,"y":-220},{"x":53,"y":-28},{"x":3,"y":-174}],"type":"admin"},{"arc":[{"x":159359,"y":151921},{"x":80,"y":-51},{"x":99,"y":-18},{"x":18,"y":-66},{"x":146,"y":-76},{"x":183,"y":-171}],"type":"admin"},{"arc":[{"x":162159,"y":149670},{"x":102,"y":81},{"x":137,"y":16},{"x":136,"y":-44},{"x":19,"y":8},{"x":-11,"y":28},{"x":26,"y":4},{"x":-11,"y":-35},{"x":-16,"y":-14},{"x":-19,"y":7},{"x":97,"y":-59},{"x":182,"y":106},{"x":70,"y":13},{"x":63,"y":59}],"type":"coastline"},{"arc":[{"x":162934,"y":149840},{"x":-106,"y":97},{"x":-136,"y":191},{"x":-150,"y":466},{"x":-191,"y":231},{"x":-23,"y":121},{"x":-86,"y":123},{"x":166,"y":-8},{"x":164,"y":-63},{"x":6,"y":42},{"x":-78,"y":56},{"x":-156,"y":37},{"x":12,"y":98},{"x":-101,"y":130},{"x":-14,"y":92},{"x":-48,"y":41},{"x":-54,"y":-16},{"x":-9,"y":22},{"x":-85,"y":22},{"x":7,"y":64},{"x":177,"y":164}],"type":"admin"},{"arc":[{"x":159613,"y":145921},{"x":-58,"y":16},{"x":-38,"y":59},{"x":-24,"y":-26},{"x":-53,"y":-1}],"type":"area"},{"arc":[{"x":158111,"y":145808},{"x":38,"y":-344},{"x":81,"y":16},{"x":52,"y":-148},{"x":85,"y":-18},{"x":-7,"y":-45},{"x":62,"y":-56},{"x":32,"y":2},{"x":84,"y":-70},{"x":28,"y":16},{"x":24,"y":-47},{"x":27,"y":28},{"x":51,"y":-13},{"x":97,"y":-108},{"x":20,"y":23},{"x":54,"y":-38},{"x":-6,"y":-61},{"x":18,"y":9},{"x":25,"y":-65},{"x":-3,"y":38},{"x":49,"y":-58},{"x":21,"y":-109},{"x":68,"y":-114},{"x":35,"y":21},{"x":38,"y":-26},{"x":55,"y":-106},{"x":-12,"y":-43}],"type":"area"},{"arc":[{"x":159127,"y":144492},{"x":17,"y":-29}],"type":"coastline"},{"arc":[{"x":159144,"y":144463},{"x":51,"y":12}],"type":"area"},{"arc":[{"x":159195,"y":144475},{"x":25,"y":29},{"x":68,"y":7},{"x":-3,"y":34},{"x":97,"y":86},{"x":-2,"y":-53},{"x":125,"y":-52},{"x":56,"y":57},{"x":44,"y":-20},{"x":15,"y":27},{"x":6,"y":-35},{"x":24,"y":-3},{"x":2,"y":24},{"x":29,"y":-32},{"x":32,"y":43},{"x":36,"y":-17},{"x":12,"y":35},{"x":65,"y":22},{"x":-42,"y":28},{"x":-21,"y":134},{"x":24,"y":-33},{"x":44,"y":4},{"x":24,"y":-68},{"x":79,"y":-46}],"type":"area"},{"arc":[{"x":159127,"y":144492},{"x":17,"y":-29}],"type":"coastline"},{"arc":[{"x":159195,"y":144475},{"x":17,"y":-10},{"x":-37,"y":-34},{"x":-54,"y":52},{"x":-77,"y":25},{"x":6,"y":-47},{"x":-166,"y":-56},{"x":31,"y":-148},{"x":-31,"y":-184},{"x":31,"y":-22},{"x":-32,"y":-63},{"x":30,"y":-33},{"x":-98,"y":-49},{"x":-113,"y":-8},{"x":-27,"y":-33},{"x":39,"y":-93},{"x":116,"y":-86},{"x":26,"y":-120},{"x":38,"y":-18},{"x":-18,"y":-70},{"x":37,"y":-9},{"x":40,"y":30},{"x":23,"y":-16},{"x":57,"y":34},{"x":30,"y":-12},{"x":10,"y":-124},{"x":-49,"y":-48},{"x":-50,"y":29},{"x":-55,"y":-39},{"x":7,"y":-65}],"type":"area"},{"arc":[{"x":158926,"y":143258},{"x":125,"y":-63},{"x":181,"y":28}],"type":"admin"},{"arc":[{"x":159232,"y":143223},{"x":23,"y":89},{"x":63,"y":54},{"x":129,"y":7},{"x":14,"y":69},{"x":48,"y":23},{"x":23,"y":-23},{"x":60,"y":32},{"x":45,"y":61},{"x":76,"y":24},{"x":28,"y":54},{"x":65,"y":-34},{"x":76,"y":21},{"x":37,"y":-21},{"x":34,"y":-109},{"x":176,"y":58},{"x":119,"y":-175},{"x":115,"y":-98},{"x":21,"y":40},{"x":113,"y":31},{"x":-17,"y":112},{"x":24,"y":16},{"x":6,"y":118},{"x":122,"y":22},{"x":36,"y":118}],"type":"admin"},{"arc":[{"x":155972,"y":146039},{"x":-50,"y":1},{"x":-24,"y":37},{"x":-261,"y":-137},{"x":-38,"y":102},{"x":-50,"y":-65},{"x":-132,"y":-10},{"x":-135,"y":-144},{"x":10,"y":-184},{"x":-86,"y":-16},{"x":-29,"y":31},{"x":-62,"y":-69},{"x":-79,"y":-39},{"x":-62,"y":19},{"x":-13,"y":-50},{"x":-33,"y":-1},{"x":-32,"y":-52},{"x":-9,"y":-170},{"x":-48,"y":3},{"x":-102,"y":-116}],"type":"admin"},{"arc":[{"x":154737,"y":145179},{"x":42,"y":-47},{"x":-31,"y":-30},{"x":31,"y":-14},{"x":3,"y":-91},{"x":84,"y":40},{"x":40,"y":-11},{"x":108,"y":76},{"x":113,"y":11},{"x":59,"y":45},{"x":72,"y":-22},{"x":40,"y":-71},{"x":53,"y":-30},{"x":59,"y":1},{"x":149,"y":-68},{"x":-1,"y":-40},{"x":81,"y":-42},{"x":45,"y":-76},{"x":-12,"y":-71},{"x":71,"y":-76},{"x":88,"y":-185},{"x":-193,"y":-180},{"x":-46,"y":-81},{"x":37,"y":-36},{"x":-26,"y":-41},{"x":92,"y":10},{"x":-15,"y":-55},{"x":23,"y":-9},{"x":91,"y":70},{"x":122,"y":-53},{"x":-25,"y":-32},{"x":-62,"y":-1},{"x":-69,"y":-40},{"x":-71,"y":10},{"x":2,"y":-99},{"x":-30,"y":-36},{"x":47,"y":-83},{"x":-50,"y":-71},{"x":-183,"y":55},{"x":-219,"y":-103},{"x":-97,"y":-22},{"x":-12,"y":20},{"x":-54,"y":-64},{"x":0,"y":-173},{"x":47,"y":-54},{"x":-89,"y":-123}],"type":"admin"},{"arc":[{"x":155051,"y":143287},{"x":27,"y":-14}],"type":"admin"},{"arc":[{"x":155078,"y":143273},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":155085,"y":143270},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":155087,"y":143270},{"x":12,"y":5}],"type":"coastline"},{"arc":[{"x":155099,"y":143275},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":155107,"y":143275},{"x":18,"y":-7}],"type":"admin"},{"arc":[{"x":155125,"y":143268},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":155132,"y":143267},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":155142,"y":143266},{"x":12,"y":-2}],"type":"admin"},{"arc":[{"x":155154,"y":143264},{"x":13,"y":-3}],"type":"coastline"},{"arc":[{"x":155167,"y":143261},{"x":21,"y":-4}],"type":"admin"},{"arc":[{"x":155188,"y":143257},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":155192,"y":143250},{"x":22,"y":-3}],"type":"admin"},{"arc":[{"x":155214,"y":143247},{"x":20,"y":8}],"type":"coastline"},{"arc":[{"x":155234,"y":143255},{"x":6,"y":7}],"type":"admin"},{"arc":[{"x":155240,"y":143262},{"x":13,"y":4}],"type":"coastline"},{"arc":[{"x":155253,"y":143266},{"x":46,"y":-6}],"type":"admin"},{"arc":[{"x":155299,"y":143260},{"x":13,"y":-5}],"type":"coastline"},{"arc":[{"x":155312,"y":143255},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":155318,"y":143256},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":155324,"y":143262},{"x":22,"y":4}],"type":"admin"},{"arc":[{"x":155346,"y":143266},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":155353,"y":143264},{"x":3,"y":-1}],"type":"admin"},{"arc":[{"x":155356,"y":143263},{"x":9,"y":-3}],"type":"coastline"},{"arc":[{"x":155365,"y":143260},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":155367,"y":143258},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":155376,"y":143254},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":155379,"y":143251},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155381,"y":143249},{"x":5,"y":-4}],"type":"admin"},{"arc":[{"x":155386,"y":143245},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":155390,"y":143240},{"x":7,"y":-7}],"type":"admin"},{"arc":[{"x":155397,"y":143233},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":155403,"y":143226},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":155407,"y":143224},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":155412,"y":143220},{"x":4,"y":-5}],"type":"admin"},{"arc":[{"x":155416,"y":143215},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":155421,"y":143209},{"x":7,"y":-8}],"type":"admin"},{"arc":[{"x":155428,"y":143201},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":155436,"y":143197},{"x":16,"y":19}],"type":"admin"},{"arc":[{"x":155452,"y":143216},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":155455,"y":143218},{"x":37,"y":14}],"type":"admin"},{"arc":[{"x":155492,"y":143232},{"x":11,"y":-7}],"type":"coastline"},{"arc":[{"x":155503,"y":143225},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":155508,"y":143220},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":155514,"y":143223},{"x":8,"y":-1}],"type":"admin"},{"arc":[{"x":155522,"y":143222},{"x":13,"y":-5}],"type":"coastline"},{"arc":[{"x":155535,"y":143217},{"x":50,"y":3}],"type":"admin"},{"arc":[{"x":155585,"y":143220},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":155588,"y":143219},{"x":8,"y":-13}],"type":"admin"},{"arc":[{"x":155596,"y":143206},{"x":79,"y":31},{"x":0,"y":61},{"x":129,"y":153},{"x":147,"y":-83},{"x":131,"y":4},{"x":47,"y":-41},{"x":213,"y":-14},{"x":166,"y":-169},{"x":8,"y":-94},{"x":69,"y":19},{"x":38,"y":-33},{"x":67,"y":3},{"x":51,"y":56},{"x":-24,"y":42},{"x":110,"y":91},{"x":65,"y":101},{"x":34,"y":-69},{"x":67,"y":-19},{"x":114,"y":105},{"x":28,"y":-36},{"x":58,"y":35},{"x":81,"y":-29},{"x":128,"y":76},{"x":68,"y":-3},{"x":0,"y":-37},{"x":84,"y":-52},{"x":63,"y":33},{"x":111,"y":-21},{"x":62,"y":45},{"x":68,"y":3},{"x":18,"y":44},{"x":198,"y":92},{"x":181,"y":45},{"x":207,"y":-153},{"x":11,"y":-118},{"x":192,"y":44},{"x":64,"y":-12},{"x":40,"y":-60},{"x":115,"y":1},{"x":14,"y":26},{"x":28,"y":-15}],"type":"admin"},{"arc":[{"x":161005,"y":146509},{"x":-23,"y":85},{"x":-61,"y":-32},{"x":-14,"y":23},{"x":43,"y":19},{"x":-93,"y":128},{"x":-14,"y":79},{"x":47,"y":13},{"x":74,"y":-166},{"x":74,"y":24},{"x":1,"y":-25},{"x":34,"y":-9},{"x":5,"y":24},{"x":7,"y":-22},{"x":11,"y":37},{"x":32,"y":8},{"x":-19,"y":-31},{"x":79,"y":0},{"x":-51,"y":11},{"x":-94,"y":219},{"x":8,"y":-47},{"x":-50,"y":14},{"x":34,"y":14},{"x":-32,"y":-2},{"x":5,"y":51},{"x":-38,"y":44},{"x":19,"y":8},{"x":-67,"y":67},{"x":-66,"y":254}],"type":"coastline"},{"arc":[{"x":161311,"y":146139},{"x":-80,"y":165},{"x":8,"y":-51},{"x":-21,"y":37},{"x":-31,"y":1},{"x":-18,"y":66},{"x":2,"y":-19},{"x":-6,"y":24},{"x":30,"y":15},{"x":-26,"y":-11},{"x":-21,"y":66},{"x":22,"y":8},{"x":42,"y":-66},{"x":-47,"y":87},{"x":33,"y":12},{"x":-37,"y":143},{"x":-24,"y":-6},{"x":3,"y":-56},{"x":-64,"y":56},{"x":-31,"y":-45},{"x":27,"y":-157}],"type":"coastline"},{"arc":[{"x":161043,"y":146402},{"x":-10,"y":-12}],"type":"coastline"},{"arc":[{"x":160277,"y":148710},{"x":-101,"y":-3}],"type":"area"},{"arc":[{"x":160176,"y":148707},{"x":-8,"y":40},{"x":-23,"y":2},{"x":-2,"y":-29},{"x":-83,"y":-68},{"x":24,"y":4},{"x":-6,"y":-29},{"x":-59,"y":30},{"x":-61,"y":-61},{"x":16,"y":-59},{"x":-36,"y":-17},{"x":54,"y":-13},{"x":147,"y":60},{"x":4,"y":-49},{"x":34,"y":9},{"x":-5,"y":-61}],"type":"area"},{"arc":[{"x":159359,"y":151921},{"x":-63,"y":-88},{"x":-59,"y":44},{"x":-34,"y":-4},{"x":-62,"y":-73},{"x":-124,"y":-13},{"x":-72,"y":-64},{"x":-120,"y":13},{"x":-68,"y":-140},{"x":8,"y":-120},{"x":67,"y":-30},{"x":15,"y":-48},{"x":-41,"y":-218},{"x":66,"y":-101},{"x":75,"y":-56},{"x":9,"y":-94},{"x":-88,"y":-134},{"x":-7,"y":-168},{"x":118,"y":-3},{"x":15,"y":-150},{"x":-43,"y":-56},{"x":17,"y":-79},{"x":-79,"y":-160},{"x":-4,"y":-104},{"x":34,"y":-74},{"x":142,"y":-40},{"x":117,"y":-100},{"x":20,"y":-233},{"x":25,"y":-20},{"x":68,"y":18},{"x":57,"y":-94},{"x":-11,"y":-26},{"x":35,"y":-24},{"x":14,"y":23},{"x":18,"y":-48},{"x":73,"y":-14},{"x":19,"y":-61},{"x":79,"y":-43},{"x":2,"y":-85},{"x":96,"y":-98},{"x":58,"y":1},{"x":-1,"y":-56},{"x":60,"y":19},{"x":108,"y":-38},{"x":0,"y":-51},{"x":28,"y":-16},{"x":-17,"y":-36},{"x":54,"y":0},{"x":12,"y":-35},{"x":46,"y":-12},{"x":-12,"y":-57},{"x":67,"y":-30},{"x":51,"y":40},{"x":35,"y":-28},{"x":27,"y":-36},{"x":-13,"y":-114}],"type":"area"},{"arc":[{"x":159168,"y":153156},{"x":-150,"y":-30},{"x":-227,"y":93},{"x":-81,"y":-21},{"x":-24,"y":-275},{"x":-119,"y":-114},{"x":-101,"y":-200},{"x":-89,"y":-64},{"x":-105,"y":19},{"x":-119,"y":-47},{"x":-83,"y":-4},{"x":-26,"y":268},{"x":-115,"y":-71}],"type":"admin"},{"arc":[{"x":163426,"y":151047},{"x":-220,"y":-20},{"x":-32,"y":-100},{"x":-85,"y":-32},{"x":-175,"y":-13},{"x":-27,"y":38},{"x":-121,"y":12},{"x":16,"y":48},{"x":-23,"y":22},{"x":41,"y":41},{"x":-13,"y":168},{"x":-123,"y":1},{"x":-94,"y":-37},{"x":-67,"y":27},{"x":-1,"y":98},{"x":-59,"y":-2},{"x":-29,"y":143},{"x":82,"y":110},{"x":-138,"y":108},{"x":-35,"y":60},{"x":-94,"y":31}],"type":"area"},{"arc":[{"x":162934,"y":149840},{"x":45,"y":29},{"x":-9,"y":-32},{"x":75,"y":100},{"x":95,"y":254},{"x":200,"y":318},{"x":55,"y":202},{"x":31,"y":336}],"type":"coastline"},{"arc":[{"x":160960,"y":153318},{"x":-154,"y":-87}],"type":"admin"},{"arc":[{"x":163426,"y":151047},{"x":39,"y":328},{"x":128,"y":159},{"x":-21,"y":-51},{"x":28,"y":27},{"x":63,"y":490}],"type":"coastline"},{"arc":[{"x":159151,"y":141280},{"x":-30,"y":22},{"x":35,"y":-26},{"x":253,"y":17},{"x":-258,"y":-13}],"type":"coastline"},{"arc":[{"x":155596,"y":143206},{"x":-8,"y":-12},{"x":-6,"y":-8}],"type":"area"},{"arc":[{"x":155582,"y":143186},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":155575,"y":143180},{"x":-5,"y":-4}],"type":"area"},{"arc":[{"x":155570,"y":143176},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":155565,"y":143170},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":155563,"y":143168},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":155558,"y":143158},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":155555,"y":143150},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":155552,"y":143144},{"x":-8,"y":-11}],"type":"area"},{"arc":[{"x":155544,"y":143133},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155544,"y":143131},{"x":4,"y":-23}],"type":"area"},{"arc":[{"x":155548,"y":143108},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":155552,"y":143099},{"x":4,"y":-5}],"type":"area"},{"arc":[{"x":155556,"y":143094},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":155560,"y":143088},{"x":-2,"y":-13}],"type":"area"},{"arc":[{"x":155558,"y":143075},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":155561,"y":143066},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":155563,"y":143064},{"x":34,"y":4}],"type":"area"},{"arc":[{"x":155597,"y":143068},{"x":10,"y":-6}],"type":"coastline"},{"arc":[{"x":155607,"y":143062},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":155608,"y":143061},{"x":22,"y":-2}],"type":"coastline"},{"arc":[{"x":155630,"y":143059},{"x":20,"y":-5}],"type":"area"},{"arc":[{"x":155650,"y":143054},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":155651,"y":143049},{"x":2,"y":-6}],"type":"area"},{"arc":[{"x":155653,"y":143043},{"x":-4,"y":-11}],"type":"coastline"},{"arc":[{"x":155649,"y":143032},{"x":2,"y":-10}],"type":"area"},{"arc":[{"x":155651,"y":143022},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":155654,"y":143018},{"x":38,"y":-82}],"type":"area"},{"arc":[{"x":155692,"y":142936},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":155690,"y":142927},{"x":-12,"y":-20},{"x":34,"y":-38}],"type":"area"},{"arc":[{"x":155712,"y":142869},{"x":11,"y":-4}],"type":"coastline"},{"arc":[{"x":155723,"y":142865},{"x":30,"y":-25}],"type":"area"},{"arc":[{"x":155753,"y":142840},{"x":4,"y":-9}],"type":"coastline"},{"arc":[{"x":155757,"y":142831},{"x":28,"y":-9}],"type":"area"},{"arc":[{"x":155785,"y":142822},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155787,"y":142818},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":155791,"y":142813},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":155792,"y":142811},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155794,"y":142807},{"x":3,"y":-3}],"type":"area"},{"arc":[{"x":155797,"y":142804},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":155799,"y":142803},{"x":6,"y":-2}],"type":"area"},{"arc":[{"x":155805,"y":142801},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155807,"y":142801},{"x":2,"y":-6}],"type":"area"},{"arc":[{"x":155809,"y":142795},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":155810,"y":142792},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":155812,"y":142789},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":155816,"y":142783},{"x":35,"y":-18}],"type":"area"},{"arc":[{"x":155851,"y":142765},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155851,"y":142763},{"x":0,"y":-27}],"type":"area"},{"arc":[{"x":155851,"y":142736},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":155852,"y":142733},{"x":13,"y":-12}],"type":"area"},{"arc":[{"x":155865,"y":142721},{"x":10,"y":-7}],"type":"coastline"},{"arc":[{"x":155875,"y":142714},{"x":9,"y":-7}],"type":"area"},{"arc":[{"x":155884,"y":142707},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":155890,"y":142701},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":155891,"y":142700},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":155892,"y":142698},{"x":6,"y":-7}],"type":"area"},{"arc":[{"x":155898,"y":142691},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":155898,"y":142688},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":155898,"y":142687},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":155898,"y":142677},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":155899,"y":142672},{"x":1,"y":-3}],"type":"area"},{"arc":[{"x":155900,"y":142669},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":155900,"y":142668},{"x":5,"y":-9}],"type":"area"},{"arc":[{"x":155905,"y":142659},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":155905,"y":142655},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":155905,"y":142652},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":155905,"y":142651},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":155908,"y":142647},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":155913,"y":142640},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":155915,"y":142637},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":155918,"y":142633},{"x":9,"y":-39}],"type":"area"},{"arc":[{"x":155927,"y":142594},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":155926,"y":142591},{"x":0,"y":-7}],"type":"area"},{"arc":[{"x":155926,"y":142584},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":155926,"y":142580},{"x":8,"y":-6}],"type":"area"},{"arc":[{"x":155934,"y":142574},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":155937,"y":142571},{"x":-4,"y":-18}],"type":"area"},{"arc":[{"x":155933,"y":142553},{"x":11,"y":-20}],"type":"coastline"},{"arc":[{"x":155944,"y":142533},{"x":10,"y":-6}],"type":"coastline"},{"arc":[{"x":155954,"y":142527},{"x":6,"y":-20}],"type":"area"},{"arc":[{"x":155960,"y":142507},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":155961,"y":142505},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":155962,"y":142501},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":155963,"y":142499},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":155966,"y":142497},{"x":11,"y":-3}],"type":"area"},{"arc":[{"x":155977,"y":142494},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":155985,"y":142492},{"x":25,"y":2}],"type":"area"},{"arc":[{"x":156010,"y":142494},{"x":12,"y":2}],"type":"coastline"},{"arc":[{"x":156022,"y":142496},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":156029,"y":142498},{"x":5,"y":-1}],"type":"area"},{"arc":[{"x":156034,"y":142497},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":156036,"y":142495},{"x":1,"y":-9}],"type":"area"},{"arc":[{"x":156037,"y":142486},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":156037,"y":142479},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":156037,"y":142477},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":156039,"y":142472},{"x":7,"y":-9}],"type":"area"},{"arc":[{"x":156046,"y":142463},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":156048,"y":142461},{"x":2,"y":-15}],"type":"area"},{"arc":[{"x":156050,"y":142446},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":156056,"y":142445},{"x":3,"y":-2}],"type":"area"},{"arc":[{"x":156059,"y":142443},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":156062,"y":142442},{"x":12,"y":-2}],"type":"area"},{"arc":[{"x":156074,"y":142440},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":156079,"y":142437},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":156082,"y":142436},{"x":12,"y":0}],"type":"area"},{"arc":[{"x":156094,"y":142436},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":156100,"y":142435},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":156108,"y":142435},{"x":23,"y":1}],"type":"area"},{"arc":[{"x":156131,"y":142436},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156135,"y":142437},{"x":14,"y":6}],"type":"coastline"},{"arc":[{"x":156149,"y":142443},{"x":24,"y":-6}],"type":"area"},{"arc":[{"x":156173,"y":142437},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":156180,"y":142436},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":156183,"y":142436},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":156184,"y":142436},{"x":13,"y":6}],"type":"coastline"},{"arc":[{"x":156197,"y":142442},{"x":12,"y":0}],"type":"area"},{"arc":[{"x":156209,"y":142442},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":156217,"y":142439},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":156218,"y":142438},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":156219,"y":142436},{"x":-2,"y":-8}],"type":"area"},{"arc":[{"x":156217,"y":142428},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":156217,"y":142423},{"x":4,"y":-23}],"type":"area"},{"arc":[{"x":156221,"y":142400},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":156223,"y":142397},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":156226,"y":142393},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":156228,"y":142389},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":156228,"y":142388},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":156227,"y":142378},{"x":-3,"y":-20}],"type":"area"},{"arc":[{"x":156224,"y":142358},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":156221,"y":142348},{"x":-5,"y":-15}],"type":"coastline"},{"arc":[{"x":156216,"y":142333},{"x":-5,"y":-13}],"type":"area"},{"arc":[{"x":156211,"y":142320},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":156210,"y":142316},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":156210,"y":142315},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":156207,"y":142310},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":156206,"y":142309},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":156203,"y":142306},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":156201,"y":142304},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":156198,"y":142296},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":156198,"y":142282},{"x":-4,"y":-3}],"type":"area"},{"arc":[{"x":156194,"y":142279},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":156188,"y":142278},{"x":-9,"y":-14}],"type":"area"},{"arc":[{"x":156179,"y":142264},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":156181,"y":142261},{"x":11,"y":-14}],"type":"area"},{"arc":[{"x":156192,"y":142247},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":156193,"y":142239},{"x":3,"y":-11}],"type":"coastline"},{"arc":[{"x":156196,"y":142228},{"x":5,"y":-1}],"type":"area"},{"arc":[{"x":156201,"y":142227},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":156206,"y":142226},{"x":8,"y":-3}],"type":"area"},{"arc":[{"x":156214,"y":142223},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156216,"y":142222},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":156218,"y":142219},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":156219,"y":142217},{"x":0,"y":-9}],"type":"area"},{"arc":[{"x":156219,"y":142208},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156221,"y":142207},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156223,"y":142206},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156224,"y":142206},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":156224,"y":142204},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":156224,"y":142203},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":156224,"y":142201},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":156222,"y":142199},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":156222,"y":142198},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":156222,"y":142195},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":156224,"y":142193},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":156227,"y":142191},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156228,"y":142191},{"x":8,"y":-10}],"type":"coastline"},{"arc":[{"x":156236,"y":142181},{"x":11,"y":-8}],"type":"coastline"},{"arc":[{"x":156247,"y":142173},{"x":4,"y":-2}],"type":"area"},{"arc":[{"x":156251,"y":142171},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156255,"y":142172},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":156259,"y":142174},{"x":22,"y":-12}],"type":"area"},{"arc":[{"x":156281,"y":142162},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":156282,"y":142160},{"x":7,"y":-9}],"type":"area"},{"arc":[{"x":156289,"y":142151},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":156289,"y":142147},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":156289,"y":142145},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":156289,"y":142136},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":156290,"y":142135},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":156295,"y":142131},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":156299,"y":142124},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":156301,"y":142121},{"x":6,"y":-9}],"type":"area"},{"arc":[{"x":156307,"y":142112},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":156308,"y":142109},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":156307,"y":142106},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":156307,"y":142097},{"x":8,"y":-10}],"type":"area"},{"arc":[{"x":156315,"y":142087},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156317,"y":142086},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":156326,"y":142084},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156327,"y":142084},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":156330,"y":142083},{"x":9,"y":-1}],"type":"area"},{"arc":[{"x":156339,"y":142082},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156341,"y":142081},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156342,"y":142081},{"x":9,"y":-7}],"type":"coastline"},{"arc":[{"x":156351,"y":142074},{"x":7,"y":-6}],"type":"area"},{"arc":[{"x":156358,"y":142068},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":156360,"y":142064},{"x":2,"y":-11}],"type":"area"},{"arc":[{"x":156362,"y":142053},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":156362,"y":142051},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":156360,"y":142047},{"x":-6,"y":-12}],"type":"area"},{"arc":[{"x":156354,"y":142035},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":156354,"y":142032},{"x":14,"y":-25}],"type":"area"},{"arc":[{"x":156368,"y":142007},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":156369,"y":142004},{"x":-1,"y":-12}],"type":"area"},{"arc":[{"x":156368,"y":141992},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":156368,"y":141988},{"x":2,"y":-10}],"type":"area"},{"arc":[{"x":156370,"y":141978},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":156373,"y":141973},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":156375,"y":141971},{"x":20,"y":-23}],"type":"area"},{"arc":[{"x":156395,"y":141948},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":156401,"y":141941},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156402,"y":141941},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156404,"y":141942},{"x":6,"y":4}],"type":"area"},{"arc":[{"x":156410,"y":141946},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":156412,"y":141944},{"x":7,"y":5}],"type":"area"},{"arc":[{"x":156419,"y":141949},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":156418,"y":141953},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":156418,"y":141954},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":156420,"y":141958},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":156422,"y":141958},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":156426,"y":141957},{"x":19,"y":11}],"type":"area"},{"arc":[{"x":156445,"y":141968},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":156449,"y":141970},{"x":6,"y":0}],"type":"area"},{"arc":[{"x":156455,"y":141970},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156459,"y":141971},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":156469,"y":141975},{"x":14,"y":-1}],"type":"area"},{"arc":[{"x":156483,"y":141974},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156485,"y":141974},{"x":12,"y":2}],"type":"area"},{"arc":[{"x":156497,"y":141976},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":156498,"y":141976},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":156500,"y":141976},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":156505,"y":141973},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":156507,"y":141973},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156509,"y":141974},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":156512,"y":141975},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":156520,"y":141977},{"x":17,"y":-1}],"type":"area"},{"arc":[{"x":156537,"y":141976},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156539,"y":141976},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":156540,"y":141975},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":156540,"y":141973},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":156539,"y":141970},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":156540,"y":141964},{"x":1,"y":-5}],"type":"area"},{"arc":[{"x":156541,"y":141959},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":156543,"y":141955},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":156545,"y":141952},{"x":3,"y":-8}],"type":"area"},{"arc":[{"x":156548,"y":141944},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":156549,"y":141941},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":156552,"y":141938},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":156551,"y":141935},{"x":1,"y":-3}],"type":"area"},{"arc":[{"x":156552,"y":141932},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":156557,"y":141926},{"x":24,"y":-13}],"type":"area"},{"arc":[{"x":156581,"y":141913},{"x":12,"y":-3}],"type":"coastline"},{"arc":[{"x":156593,"y":141910},{"x":9,"y":-2}],"type":"area"},{"arc":[{"x":156602,"y":141908},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":156605,"y":141907},{"x":15,"y":-14}],"type":"area"},{"arc":[{"x":156620,"y":141893},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":156628,"y":141888},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":156637,"y":141886},{"x":7,"y":-1}],"type":"area"},{"arc":[{"x":156644,"y":141885},{"x":14,"y":-1}],"type":"coastline"},{"arc":[{"x":156658,"y":141884},{"x":4,"y":1}],"type":"area"},{"arc":[{"x":156662,"y":141885},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156664,"y":141886},{"x":11,"y":3}],"type":"area"},{"arc":[{"x":156675,"y":141889},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":156681,"y":141889},{"x":27,"y":4}],"type":"coastline"},{"arc":[{"x":156708,"y":141893},{"x":9,"y":1}],"type":"area"},{"arc":[{"x":156717,"y":141894},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":156720,"y":141894},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":156722,"y":141895},{"x":11,"y":5}],"type":"coastline"},{"arc":[{"x":156733,"y":141900},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156735,"y":141901},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":156741,"y":141900},{"x":3,"y":0}],"type":"area"},{"arc":[{"x":156744,"y":141900},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":156748,"y":141898},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":156754,"y":141895},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":156756,"y":141895},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156758,"y":141896},{"x":4,"y":2}],"type":"area"},{"arc":[{"x":156762,"y":141898},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156766,"y":141899},{"x":9,"y":0}],"type":"area"},{"arc":[{"x":156775,"y":141899},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156777,"y":141899},{"x":5,"y":-1}],"type":"area"},{"arc":[{"x":156782,"y":141898},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":156785,"y":141898},{"x":2,"y":-1}],"type":"area"},{"arc":[{"x":156787,"y":141897},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":156789,"y":141895},{"x":15,"y":-6}],"type":"area"},{"arc":[{"x":156804,"y":141889},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":156809,"y":141887},{"x":18,"y":1}],"type":"area"},{"arc":[{"x":156827,"y":141888},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":156832,"y":141889},{"x":10,"y":-4}],"type":"area"},{"arc":[{"x":156842,"y":141885},{"x":1,"y":-22}],"type":"coastline"},{"arc":[{"x":156843,"y":141863},{"x":-14,"y":-23}],"type":"area"},{"arc":[{"x":156829,"y":141840},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":156827,"y":141838},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":156824,"y":141835},{"x":-11,"y":-11}],"type":"area"},{"arc":[{"x":156813,"y":141824},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":156814,"y":141822},{"x":10,"y":-4}],"type":"area"},{"arc":[{"x":156824,"y":141818},{"x":13,"y":-2}],"type":"coastline"},{"arc":[{"x":156837,"y":141816},{"x":13,"y":0}],"type":"area"},{"arc":[{"x":156850,"y":141816},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":156854,"y":141816},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":156860,"y":141815},{"x":12,"y":-4}],"type":"area"},{"arc":[{"x":156872,"y":141811},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":156880,"y":141807},{"x":11,"y":-3}],"type":"area"},{"arc":[{"x":156891,"y":141804},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":156899,"y":141801},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":156907,"y":141801},{"x":5,"y":0}],"type":"area"},{"arc":[{"x":156912,"y":141801},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156916,"y":141802},{"x":7,"y":6}],"type":"area"},{"arc":[{"x":156923,"y":141808},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":156931,"y":141811},{"x":24,"y":25}],"type":"area"},{"arc":[{"x":156955,"y":141836},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":156959,"y":141845},{"x":3,"y":6}],"type":"area"},{"arc":[{"x":156962,"y":141851},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":156967,"y":141856},{"x":2,"y":1}],"type":"area"},{"arc":[{"x":156969,"y":141857},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":156974,"y":141859},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":156979,"y":141861},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156980,"y":141861},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":156985,"y":141859},{"x":28,"y":-18}],"type":"coastline"},{"arc":[{"x":157013,"y":141841},{"x":11,"y":-8}],"type":"coastline"},{"arc":[{"x":157024,"y":141833},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":157026,"y":141830},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":157026,"y":141821},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":157028,"y":141819},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":157033,"y":141819},{"x":6,"y":0}],"type":"area"},{"arc":[{"x":157039,"y":141819},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":157042,"y":141817},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":157043,"y":141816},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157044,"y":141816},{"x":11,"y":-7}],"type":"area"},{"arc":[{"x":157055,"y":141809},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":157060,"y":141807},{"x":5,"y":1}],"type":"area"},{"arc":[{"x":157065,"y":141808},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":157066,"y":141809},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":157068,"y":141809},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":157071,"y":141809},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":157071,"y":141808},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":157079,"y":141802},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":157083,"y":141802},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":157085,"y":141802},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":157091,"y":141798},{"x":8,"y":-3}],"type":"area"},{"arc":[{"x":157099,"y":141795},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":157102,"y":141793},{"x":-6,"y":-6}],"type":"area"},{"arc":[{"x":157096,"y":141787},{"x":-8,"y":-15}],"type":"coastline"},{"arc":[{"x":157088,"y":141772},{"x":16,"y":-36}],"type":"area"},{"arc":[{"x":157104,"y":141736},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":157106,"y":141736},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":157110,"y":141739},{"x":6,"y":9}],"type":"area"},{"arc":[{"x":157116,"y":141748},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":157117,"y":141753},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":157120,"y":141762},{"x":7,"y":8}],"type":"area"},{"arc":[{"x":157127,"y":141770},{"x":10,"y":4}],"type":"coastline"},{"arc":[{"x":157137,"y":141774},{"x":46,"y":6}],"type":"area"},{"arc":[{"x":157183,"y":141780},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":157187,"y":141781},{"x":6,"y":-6}],"type":"area"},{"arc":[{"x":157193,"y":141775},{"x":9,"y":-11}],"type":"coastline"},{"arc":[{"x":157202,"y":141764},{"x":5,"y":-11}],"type":"area"},{"arc":[{"x":157207,"y":141753},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":157207,"y":141746},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":157206,"y":141743},{"x":-4,"y":-4}],"type":"area"},{"arc":[{"x":157202,"y":141739},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":157202,"y":141738},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":157204,"y":141733},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":157205,"y":141729},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":157207,"y":141726},{"x":7,"y":-9}],"type":"area"},{"arc":[{"x":157214,"y":141717},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":157216,"y":141715},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":157224,"y":141712},{"x":41,"y":-27}],"type":"area"},{"arc":[{"x":157265,"y":141685},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":157269,"y":141683},{"x":6,"y":-5}],"type":"area"},{"arc":[{"x":157275,"y":141678},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157276,"y":141678},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":157278,"y":141674},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":157281,"y":141672},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":157286,"y":141671},{"x":7,"y":-1}],"type":"area"},{"arc":[{"x":157293,"y":141670},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":157300,"y":141667},{"x":4,"y":5}],"type":"area"},{"arc":[{"x":157304,"y":141672},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":157304,"y":141677},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":157305,"y":141678},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":157307,"y":141677},{"x":2,"y":-3}],"type":"area"},{"arc":[{"x":157309,"y":141674},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":157311,"y":141673},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":157312,"y":141674},{"x":4,"y":10}],"type":"coastline"},{"arc":[{"x":157316,"y":141684},{"x":-13,"y":18}],"type":"area"},{"arc":[{"x":157303,"y":141702},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":157300,"y":141706},{"x":-4,"y":8}],"type":"area"},{"arc":[{"x":157296,"y":141714},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":157294,"y":141719},{"x":0,"y":17}],"type":"area"},{"arc":[{"x":157294,"y":141736},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":157294,"y":141741},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":157295,"y":141747},{"x":2,"y":7}],"type":"area"},{"arc":[{"x":157297,"y":141754},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":157298,"y":141756},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":157302,"y":141756},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":157305,"y":141756},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":157307,"y":141757},{"x":6,"y":5}],"type":"area"},{"arc":[{"x":157313,"y":141762},{"x":12,"y":3}],"type":"coastline"},{"arc":[{"x":157325,"y":141765},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":157332,"y":141763},{"x":8,"y":-9}],"type":"area"},{"arc":[{"x":157340,"y":141754},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":157340,"y":141752},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":157338,"y":141748},{"x":-2,"y":-4}],"type":"area"},{"arc":[{"x":157336,"y":141744},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":157334,"y":141743},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":157332,"y":141743},{"x":-11,"y":2}],"type":"coastline"},{"arc":[{"x":157321,"y":141745},{"x":-9,"y":0}],"type":"area"},{"arc":[{"x":157312,"y":141745},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":157308,"y":141744},{"x":-2,"y":-8}],"type":"area"},{"arc":[{"x":157306,"y":141736},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":157311,"y":141730},{"x":24,"y":-6}],"type":"area"},{"arc":[{"x":157335,"y":141724},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":157342,"y":141730},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157343,"y":141730},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":157344,"y":141728},{"x":18,"y":-17},{"x":6,"y":20}],"type":"area"},{"arc":[{"x":157368,"y":141731},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":157371,"y":141733},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":157374,"y":141734},{"x":7,"y":3}],"type":"area"},{"arc":[{"x":157381,"y":141737},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":157389,"y":141741},{"x":11,"y":12}],"type":"area"},{"arc":[{"x":157400,"y":141753},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157401,"y":141753},{"x":-1,"y":-11}],"type":"area"},{"arc":[{"x":157400,"y":141742},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":157401,"y":141735},{"x":2,"y":-16}],"type":"area"},{"arc":[{"x":157403,"y":141719},{"x":0,"y":-18}],"type":"coastline"},{"arc":[{"x":157403,"y":141701},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":157402,"y":141698},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":157400,"y":141696},{"x":10,"y":-56}],"type":"area"},{"arc":[{"x":157410,"y":141640},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":157415,"y":141639},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":157419,"y":141636},{"x":11,"y":-7}],"type":"coastline"},{"arc":[{"x":157430,"y":141629},{"x":5,"y":-4}],"type":"area"},{"arc":[{"x":157435,"y":141625},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":157436,"y":141623},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":157436,"y":141621},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":157437,"y":141619},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":157440,"y":141617},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":157441,"y":141616},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":157443,"y":141616},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":157451,"y":141616},{"x":25,"y":0}],"type":"area"},{"arc":[{"x":157476,"y":141616},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":157480,"y":141617},{"x":4,"y":-7}],"type":"area"},{"arc":[{"x":157484,"y":141610},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":157486,"y":141608},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":157490,"y":141606},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":157492,"y":141604},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":157494,"y":141598},{"x":7,"y":-30}],"type":"area"},{"arc":[{"x":157501,"y":141568},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":157496,"y":141563},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":157496,"y":141561},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":157495,"y":141559},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":157495,"y":141557},{"x":1,"y":-5}],"type":"area"},{"arc":[{"x":157496,"y":141552},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157497,"y":141548},{"x":3,"y":-4}],"type":"area"},{"arc":[{"x":157500,"y":141544},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":157503,"y":141540},{"x":15,"y":-10}],"type":"area"},{"arc":[{"x":157518,"y":141530},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":157526,"y":141529},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":157528,"y":141525},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":157528,"y":141522},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":157524,"y":141514},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":157525,"y":141510},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157526,"y":141507},{"x":14,"y":-2}],"type":"area"},{"arc":[{"x":157540,"y":141505},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":157543,"y":141505},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":157544,"y":141493},{"x":1,"y":-22}],"type":"area"},{"arc":[{"x":157545,"y":141471},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":157546,"y":141463},{"x":1,"y":-20}],"type":"area"},{"arc":[{"x":157547,"y":141443},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":157550,"y":141438},{"x":336,"y":19},{"x":-9,"y":21},{"x":40,"y":27},{"x":-13,"y":87},{"x":85,"y":25},{"x":24,"y":-13},{"x":7,"y":-77},{"x":37,"y":3},{"x":-3,"y":35},{"x":122,"y":-40},{"x":-1,"y":-103},{"x":-64,"y":-7},{"x":-11,"y":-63},{"x":186,"y":-46},{"x":-25,"y":-64},{"x":-92,"y":0},{"x":-6,"y":-23}],"type":"area"},{"arc":[{"x":158163,"y":141219},{"x":4,"y":-1}],"type":"area"},{"arc":[{"x":158167,"y":141218},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":158172,"y":141216},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":158175,"y":141215},{"x":15,"y":-9}],"type":"area"},{"arc":[{"x":158190,"y":141206},{"x":12,"y":-2}],"type":"coastline"},{"arc":[{"x":158202,"y":141204},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":158204,"y":141202},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":158205,"y":141192},{"x":4,"y":0}],"type":"area"},{"arc":[{"x":158209,"y":141192},{"x":0,"y":-14}],"type":"coastline"},{"arc":[{"x":158209,"y":141178},{"x":5,"y":0}],"type":"area"},{"arc":[{"x":158214,"y":141178},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":158220,"y":141178},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":158224,"y":141178},{"x":6,"y":-4}],"type":"area"},{"arc":[{"x":158230,"y":141174},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":158233,"y":141169},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":158233,"y":141167},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":158238,"y":141155},{"x":7,"y":-22}],"type":"area"},{"arc":[{"x":158245,"y":141133},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":158242,"y":141129},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":158241,"y":141126},{"x":-8,"y":-16}],"type":"area"},{"arc":[{"x":158233,"y":141110},{"x":-9,"y":-1}],"type":"coastline"},{"arc":[{"x":158224,"y":141109},{"x":-14,"y":-10}],"type":"area"},{"arc":[{"x":158210,"y":141099},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":158201,"y":141095},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":158199,"y":141095},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":158196,"y":141093},{"x":-10,"y":-2}],"type":"area"},{"arc":[{"x":158186,"y":141091},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":158196,"y":141090},{"x":31,"y":4}],"type":"area"},{"arc":[{"x":158227,"y":141094},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":158238,"y":141093},{"x":11,"y":0}],"type":"coastline"},{"arc":[{"x":158249,"y":141093},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":158254,"y":141092},{"x":50,"y":7}],"type":"area"},{"arc":[{"x":158304,"y":141099},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":158315,"y":141103},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":158316,"y":141099},{"x":1,"y":-9}],"type":"area"},{"arc":[{"x":158317,"y":141090},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":158318,"y":141082},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":158318,"y":141080},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":158320,"y":141076},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":158321,"y":141074},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":158327,"y":141073},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":158329,"y":141069},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":158330,"y":141069},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":158332,"y":141069},{"x":11,"y":1}],"type":"area"},{"arc":[{"x":158343,"y":141070},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":158350,"y":141069},{"x":24,"y":-6}],"type":"coastline"},{"arc":[{"x":158374,"y":141063},{"x":13,"y":-5}],"type":"area"},{"arc":[{"x":158387,"y":141058},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":158386,"y":141056},{"x":-8,"y":-31}],"type":"area"},{"arc":[{"x":158378,"y":141025},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":158377,"y":141014},{"x":-1,"y":-19}],"type":"area"},{"arc":[{"x":158376,"y":140995},{"x":-2,"y":-12}],"type":"coastline"},{"arc":[{"x":158374,"y":140983},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":158370,"y":140983},{"x":1,"y":-20}],"type":"area"},{"arc":[{"x":158371,"y":140963},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":158376,"y":140963},{"x":5,"y":0}],"type":"area"},{"arc":[{"x":158381,"y":140963},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":158386,"y":140965},{"x":9,"y":-15}],"type":"coastline"},{"arc":[{"x":158395,"y":140950},{"x":5,"y":-6}],"type":"area"},{"arc":[{"x":158400,"y":140944},{"x":5,"y":-15}],"type":"coastline"},{"arc":[{"x":158405,"y":140929},{"x":2,"y":-2}],"type":"area"},{"arc":[{"x":158407,"y":140927},{"x":6,"y":-10}],"type":"coastline"},{"arc":[{"x":158413,"y":140917},{"x":20,"y":-34}],"type":"area"},{"arc":[{"x":158433,"y":140883},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":158435,"y":140878},{"x":14,"y":-23}],"type":"area"},{"arc":[{"x":158449,"y":140855},{"x":392,"y":293},{"x":26,"y":10},{"x":68,"y":-60},{"x":17,"y":3},{"x":-82,"y":55},{"x":25,"y":4},{"x":15,"y":-23},{"x":-9,"y":24},{"x":49,"y":15},{"x":25,"y":-17},{"x":-19,"y":-16},{"x":96,"y":75},{"x":-12,"y":22},{"x":36,"y":27},{"x":-25,"y":33},{"x":35,"y":22},{"x":32,"y":-19},{"x":-31,"y":19},{"x":75,"y":69},{"x":50,"y":-55},{"x":139,"y":101},{"x":12,"y":-18},{"x":-30,"y":45},{"x":18,"y":23}],"type":"coastline"},{"arc":[{"x":159351,"y":141487},{"x":-170,"y":152},{"x":233,"y":214},{"x":102,"y":134},{"x":280,"y":201}],"type":"admin"},{"arc":[{"x":159796,"y":142188},{"x":-77,"y":110},{"x":-102,"y":-71},{"x":-161,"y":196},{"x":-36,"y":-24},{"x":-20,"y":20},{"x":91,"y":57},{"x":-34,"y":11},{"x":-46,"y":183},{"x":-44,"y":35},{"x":24,"y":33},{"x":-12,"y":55},{"x":-30,"y":-17},{"x":-39,"y":30},{"x":41,"y":33},{"x":-47,"y":42},{"x":48,"y":23},{"x":-4,"y":53},{"x":-40,"y":12},{"x":-30,"y":66},{"x":14,"y":84},{"x":-57,"y":38},{"x":-3,"y":66}],"type":"admin"},{"arc":[{"x":165292,"y":144306},{"x":-34,"y":21},{"x":-56,"y":-15},{"x":90,"y":-6}],"type":"coastline"},{"arc":[{"x":165380,"y":144751},{"x":-8,"y":31},{"x":7,"y":-32},{"x":36,"y":11},{"x":-35,"y":-10}],"type":"coastline"},{"arc":[{"x":166046,"y":145825},{"x":-61,"y":90},{"x":-41,"y":-19},{"x":-34,"y":64},{"x":-48,"y":16},{"x":36,"y":-17},{"x":-34,"y":-17},{"x":-57,"y":53},{"x":-45,"y":-103},{"x":-87,"y":-38},{"x":-99,"y":38},{"x":-22,"y":62},{"x":-44,"y":-5},{"x":1,"y":-23},{"x":-32,"y":26},{"x":-26,"y":-14},{"x":-52,"y":-79},{"x":4,"y":-91},{"x":-29,"y":-31},{"x":19,"y":-22},{"x":-69,"y":-56},{"x":39,"y":-26},{"x":-21,"y":1},{"x":-2,"y":-74},{"x":56,"y":13},{"x":12,"y":-19},{"x":-33,"y":-40},{"x":70,"y":-6},{"x":-4,"y":-39},{"x":-100,"y":33},{"x":-6,"y":-18},{"x":68,"y":-44},{"x":12,"y":-52},{"x":-147,"y":-159},{"x":-126,"y":-47},{"x":32,"y":-29},{"x":-23,"y":-29},{"x":79,"y":-31},{"x":5,"y":-36},{"x":-29,"y":-65},{"x":-137,"y":-121},{"x":133,"y":6},{"x":31,"y":-39},{"x":30,"y":15},{"x":64,"y":-40},{"x":36,"y":5},{"x":105,"y":-94},{"x":23,"y":-109},{"x":103,"y":-39},{"x":13,"y":-111},{"x":62,"y":4},{"x":27,"y":-48},{"x":56,"y":45},{"x":24,"y":-47},{"x":66,"y":-2},{"x":-10,"y":30},{"x":33,"y":25},{"x":-29,"y":-12},{"x":-31,"y":25},{"x":73,"y":31},{"x":-26,"y":56},{"x":-58,"y":8},{"x":-15,"y":67},{"x":-38,"y":30},{"x":-32,"y":-39},{"x":-143,"y":4},{"x":-1,"y":23},{"x":46,"y":7},{"x":-27,"y":17},{"x":23,"y":39},{"x":52,"y":-8},{"x":37,"y":22},{"x":-38,"y":18},{"x":28,"y":43},{"x":53,"y":-6},{"x":27,"y":21},{"x":1,"y":32},{"x":-70,"y":7},{"x":-26,"y":49},{"x":74,"y":35},{"x":-25,"y":96},{"x":55,"y":21},{"x":-87,"y":139},{"x":40,"y":-11},{"x":65,"y":-94},{"x":89,"y":6},{"x":-31,"y":62},{"x":-77,"y":52},{"x":37,"y":34},{"x":11,"y":-25},{"x":5,"y":74},{"x":-109,"y":44},{"x":-1,"y":-19},{"x":-43,"y":53},{"x":-15,"y":88},{"x":3,"y":-20},{"x":-39,"y":2},{"x":4,"y":40},{"x":26,"y":35},{"x":73,"y":6},{"x":-28,"y":36},{"x":14,"y":31},{"x":26,"y":-17},{"x":-20,"y":89},{"x":34,"y":22},{"x":60,"y":-16},{"x":34,"y":26},{"x":81,"y":4},{"x":100,"y":103},{"x":14,"y":-12},{"x":3,"y":35}],"type":"coastline"},{"arc":[{"x":166056,"y":144288},{"x":-40,"y":7},{"x":-30,"y":-64},{"x":-163,"y":-57},{"x":-29,"y":18},{"x":-31,"y":-69},{"x":-20,"y":33},{"x":-45,"y":-15},{"x":-66,"y":62},{"x":58,"y":3},{"x":-4,"y":52},{"x":40,"y":-26},{"x":18,"y":73},{"x":-68,"y":25},{"x":-35,"y":78},{"x":-98,"y":-50},{"x":-223,"y":-31},{"x":4,"y":-49},{"x":51,"y":-52},{"x":-70,"y":-28},{"x":56,"y":-68},{"x":-35,"y":-66},{"x":-146,"y":0},{"x":-27,"y":-21},{"x":-131,"y":67},{"x":-46,"y":-99},{"x":-81,"y":-36},{"x":-87,"y":154},{"x":-25,"y":146},{"x":77,"y":21},{"x":-31,"y":90},{"x":93,"y":77},{"x":52,"y":-26},{"x":69,"y":31},{"x":37,"y":93},{"x":-78,"y":131},{"x":20,"y":61},{"x":-43,"y":99},{"x":-79,"y":-55},{"x":16,"y":-32},{"x":-97,"y":15},{"x":-40,"y":38},{"x":-9,"y":229},{"x":-127,"y":-71},{"x":-89,"y":109},{"x":-41,"y":67},{"x":9,"y":30},{"x":11,"y":-15},{"x":22,"y":26},{"x":36,"y":-5},{"x":-66,"y":99},{"x":31,"y":-8},{"x":31,"y":45},{"x":-21,"y":-28},{"x":2,"y":76},{"x":48,"y":-6},{"x":-26,"y":-37},{"x":42,"y":-13},{"x":56,"y":88},{"x":19,"y":42},{"x":-31,"y":-61},{"x":-60,"y":51},{"x":25,"y":52},{"x":68,"y":19},{"x":-11,"y":-30},{"x":16,"y":34},{"x":24,"y":-70},{"x":150,"y":66},{"x":4,"y":36},{"x":-46,"y":12},{"x":101,"y":-21},{"x":72,"y":20},{"x":184,"y":106},{"x":24,"y":70},{"x":45,"y":18},{"x":-45,"y":47},{"x":56,"y":78},{"x":-22,"y":107},{"x":13,"y":19},{"x":13,"y":-23},{"x":9,"y":55},{"x":-65,"y":-11},{"x":-25,"y":-24},{"x":27,"y":-20},{"x":-21,"y":7},{"x":-13,"y":-37},{"x":-63,"y":7},{"x":-18,"y":27},{"x":-164,"y":-24},{"x":-86,"y":41},{"x":-147,"y":-20},{"x":-53,"y":-37},{"x":-33,"y":16},{"x":-158,"y":-34},{"x":-46,"y":26},{"x":28,"y":-24},{"x":-27,"y":18},{"x":-36,"y":-36},{"x":-204,"y":67},{"x":-118,"y":-29},{"x":24,"y":-7},{"x":-41,"y":-24},{"x":-100,"y":11},{"x":-102,"y":68},{"x":-104,"y":-54},{"x":-102,"y":16},{"x":-14,"y":25},{"x":11,"y":-18},{"x":-17,"y":-6},{"x":3,"y":15},{"x":-14,"y":-15},{"x":-105,"y":65},{"x":-111,"y":-51}],"type":"coastline"},{"arc":[{"x":163478,"y":145289},{"x":146,"y":-99},{"x":-55,"y":-65},{"x":-8,"y":-94},{"x":66,"y":-122},{"x":71,"y":69},{"x":60,"y":-28},{"x":83,"y":-101},{"x":-13,"y":-55},{"x":44,"y":-108},{"x":49,"y":-39},{"x":41,"y":14},{"x":174,"y":-72},{"x":-39,"y":-227},{"x":40,"y":-79},{"x":-6,"y":-180},{"x":34,"y":-96},{"x":46,"y":-48},{"x":19,"y":22},{"x":29,"y":-18},{"x":21,"y":-47}],"type":"admin"},{"arc":[{"x":164280,"y":143916},{"x":107,"y":34},{"x":80,"y":61},{"x":98,"y":-86},{"x":25,"y":-41},{"x":-19,"y":-27},{"x":75,"y":-46},{"x":58,"y":-2},{"x":-9,"y":-49},{"x":-27,"y":-6},{"x":23,"y":-53},{"x":43,"y":11},{"x":19,"y":34},{"x":25,"y":-21},{"x":41,"y":31},{"x":129,"y":-221},{"x":-26,"y":-59},{"x":112,"y":-26},{"x":51,"y":-45},{"x":74,"y":-148},{"x":68,"y":-33},{"x":57,"y":5},{"x":26,"y":-47},{"x":98,"y":-57},{"x":95,"y":27},{"x":11,"y":43},{"x":54,"y":26},{"x":177,"y":-47},{"x":76,"y":47},{"x":76,"y":-10},{"x":79,"y":87},{"x":142,"y":73},{"x":63,"y":-3},{"x":125,"y":44},{"x":26,"y":-12},{"x":-2,"y":51},{"x":42,"y":12},{"x":-4,"y":55},{"x":60,"y":73}],"type":"admin"},{"arc":[{"x":166428,"y":143591},{"x":34,"y":99},{"x":-34,"y":171},{"x":-31,"y":33},{"x":-151,"y":0},{"x":-26,"y":45},{"x":-13,"y":-20},{"x":-72,"y":20},{"x":53,"y":170},{"x":-69,"y":110},{"x":-50,"y":14},{"x":-13,"y":55}],"type":"admin"},{"arc":[{"x":156249,"y":141076},{"x":-5,"y":-10}],"type":"area"},{"arc":[{"x":156244,"y":141066},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":156235,"y":141067},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":156230,"y":141068},{"x":-9,"y":2}],"type":"area"},{"arc":[{"x":156221,"y":141070},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":156220,"y":141070},{"x":-12,"y":15}],"type":"area"},{"arc":[{"x":156208,"y":141085},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":156206,"y":141094},{"x":-18,"y":11}],"type":"area"},{"arc":[{"x":156188,"y":141105},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":156180,"y":141103},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":156176,"y":141101},{"x":-10,"y":8}],"type":"coastline"},{"arc":[{"x":156166,"y":141109},{"x":-13,"y":4}],"type":"area"},{"arc":[{"x":156153,"y":141113},{"x":-12,"y":13}],"type":"coastline"},{"arc":[{"x":156141,"y":141126},{"x":-16,"y":22}],"type":"area"},{"arc":[{"x":156125,"y":141148},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156123,"y":141148},{"x":-7,"y":0}],"type":"area"},{"arc":[{"x":156116,"y":141148},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156114,"y":141148},{"x":-9,"y":1}],"type":"area"},{"arc":[{"x":156105,"y":141149},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":156099,"y":141148},{"x":-23,"y":-6}],"type":"area"},{"arc":[{"x":156076,"y":141142},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":156072,"y":141144},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":156069,"y":141145},{"x":-7,"y":6}],"type":"area"},{"arc":[{"x":156062,"y":141151},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156060,"y":141152},{"x":-8,"y":1}],"type":"area"},{"arc":[{"x":156052,"y":141153},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":156047,"y":141151},{"x":-20,"y":12}],"type":"area"},{"arc":[{"x":156027,"y":141163},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":156021,"y":141170},{"x":-24,"y":-11}],"type":"area"},{"arc":[{"x":155997,"y":141159},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155994,"y":141160},{"x":-18,"y":-5}],"type":"area"},{"arc":[{"x":155976,"y":141155},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":155973,"y":141148},{"x":-47,"y":-54}],"type":"area"},{"arc":[{"x":155926,"y":141094},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155921,"y":141094},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":155914,"y":141096},{"x":-23,"y":0}],"type":"area"},{"arc":[{"x":155891,"y":141096},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":155883,"y":141093},{"x":-13,"y":-4}],"type":"area"},{"arc":[{"x":155870,"y":141089},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":155866,"y":141088},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":155863,"y":141086},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":155858,"y":141083},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":155856,"y":141082},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":155856,"y":141078},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":155856,"y":141075},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":155858,"y":141071},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":155859,"y":141065},{"x":-1,"y":-5}],"type":"area"},{"arc":[{"x":155858,"y":141060},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":155856,"y":141056},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":155853,"y":141054},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":155845,"y":141057},{"x":-12,"y":1}],"type":"area"},{"arc":[{"x":155833,"y":141058},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":155825,"y":141064},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155821,"y":141067},{"x":-7,"y":5}],"type":"area"},{"arc":[{"x":155814,"y":141072},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155810,"y":141075},{"x":-11,"y":20}],"type":"area"},{"arc":[{"x":155799,"y":141095},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":155792,"y":141098},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":155786,"y":141099},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155784,"y":141099},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":155780,"y":141097},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":155778,"y":141096},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":155774,"y":141096},{"x":-5,"y":-1}],"type":"area"},{"arc":[{"x":155769,"y":141095},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":155763,"y":141097},{"x":-22,"y":0}],"type":"area"},{"arc":[{"x":155741,"y":141097},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":155734,"y":141096},{"x":-7,"y":5}],"type":"area"},{"arc":[{"x":155727,"y":141101},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":155721,"y":141103},{"x":-22,"y":-2}],"type":"area"},{"arc":[{"x":155699,"y":141101},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":155694,"y":141100},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":155693,"y":141099},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":155684,"y":141100},{"x":-3,"y":-5}],"type":"area"},{"arc":[{"x":155681,"y":141095},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155678,"y":141093},{"x":-19,"y":0}],"type":"coastline"},{"arc":[{"x":155659,"y":141093},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":155655,"y":141094},{"x":-18,"y":-4}],"type":"coastline"},{"arc":[{"x":155637,"y":141090},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":155634,"y":141087},{"x":-11,"y":-25}],"type":"area"},{"arc":[{"x":155623,"y":141062},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":155615,"y":141062},{"x":-26,"y":23}],"type":"area"},{"arc":[{"x":155589,"y":141085},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":155588,"y":141085},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":155587,"y":141085},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155582,"y":141085},{"x":-5,"y":-4}],"type":"area"},{"arc":[{"x":155577,"y":141081},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":155576,"y":141077},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":155576,"y":141073},{"x":-4,"y":-12}],"type":"area"},{"arc":[{"x":155572,"y":141061},{"x":-9,"y":-8}],"type":"coastline"},{"arc":[{"x":155563,"y":141053},{"x":-13,"y":-10}],"type":"coastline"},{"arc":[{"x":155550,"y":141043},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":155546,"y":141040},{"x":-10,"y":-6}],"type":"area"},{"arc":[{"x":155536,"y":141034},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":155531,"y":141028},{"x":-7,"y":-16}],"type":"area"},{"arc":[{"x":155524,"y":141012},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155522,"y":141009},{"x":-6,"y":-6}],"type":"area"},{"arc":[{"x":155516,"y":141003},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":155515,"y":140995},{"x":-24,"y":-18}],"type":"area"},{"arc":[{"x":155491,"y":140977},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":155492,"y":140970},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":155498,"y":140961},{"x":-2,"y":-7},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":155492,"y":140952},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155487,"y":140952},{"x":-10,"y":-9}],"type":"area"},{"arc":[{"x":155477,"y":140943},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":155475,"y":140937},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":155478,"y":140931},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":155480,"y":140928},{"x":5,"y":-7}],"type":"area"},{"arc":[{"x":155485,"y":140921},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":155488,"y":140915},{"x":-1,"y":-36}],"type":"area"},{"arc":[{"x":155487,"y":140879},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":155483,"y":140877},{"x":-7,"y":-3}],"type":"area"},{"arc":[{"x":155476,"y":140874},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":155468,"y":140872},{"x":-14,"y":-5}],"type":"area"},{"arc":[{"x":155454,"y":140867},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":155450,"y":140868},{"x":-12,"y":3}],"type":"area"},{"arc":[{"x":155438,"y":140871},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":155432,"y":140872},{"x":-11,"y":2}],"type":"area"},{"arc":[{"x":155421,"y":140874},{"x":-13,"y":5}],"type":"coastline"},{"arc":[{"x":155408,"y":140879},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":155405,"y":140879},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":155400,"y":140872},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":155399,"y":140871},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":155397,"y":140868},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":155390,"y":140861},{"x":-3,"y":-3}],"type":"area"},{"arc":[{"x":155387,"y":140858},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":155384,"y":140851},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":155384,"y":140849},{"x":-2,"y":-10}],"type":"area"},{"arc":[{"x":155382,"y":140839},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":155378,"y":140834},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":155377,"y":140834},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":155375,"y":140829},{"x":-8,"y":-4}],"type":"area"},{"arc":[{"x":155367,"y":140825},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":155365,"y":140820},{"x":-8,"y":-19}],"type":"area"},{"arc":[{"x":155357,"y":140801},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":155356,"y":140793},{"x":-28,"y":-22}],"type":"area"},{"arc":[{"x":155328,"y":140771},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":155320,"y":140772},{"x":-5,"y":4}],"type":"area"},{"arc":[{"x":155315,"y":140776},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":155311,"y":140778},{"x":-5,"y":4}],"type":"area"},{"arc":[{"x":155306,"y":140782},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":155300,"y":140788},{"x":-22,"y":4}],"type":"area"},{"arc":[{"x":155278,"y":140792},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":155272,"y":140791},{"x":-11,"y":11}],"type":"area"},{"arc":[{"x":155261,"y":140802},{"x":-22,"y":-3}],"type":"coastline"},{"arc":[{"x":155239,"y":140799},{"x":-47,"y":-6}],"type":"area"},{"arc":[{"x":155192,"y":140793},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":155187,"y":140796},{"x":-6,"y":21}],"type":"area"},{"arc":[{"x":155181,"y":140817},{"x":1,"y":15}],"type":"coastline"},{"arc":[{"x":155182,"y":140832},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":155180,"y":140837},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":155178,"y":140839},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":155174,"y":140842},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":155171,"y":140843},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":155167,"y":140841},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155164,"y":140839},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":155160,"y":140839},{"x":-17,"y":-12}],"type":"area"},{"arc":[{"x":155143,"y":140827},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":155136,"y":140818},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":155136,"y":140817},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":155133,"y":140811},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":155131,"y":140811},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155126,"y":140811},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":155123,"y":140811},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":155116,"y":140807},{"x":-11,"y":-7}],"type":"area"},{"arc":[{"x":155105,"y":140800},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":155102,"y":140796},{"x":-14,"y":-15}],"type":"area"},{"arc":[{"x":155088,"y":140781},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":155085,"y":140778},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":155074,"y":140775},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":155069,"y":140782},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":155068,"y":140783},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":155064,"y":140789},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":155061,"y":140793},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":155059,"y":140795},{"x":-13,"y":6}],"type":"coastline"},{"arc":[{"x":155046,"y":140801},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":155041,"y":140801},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":155038,"y":140802},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155035,"y":140803},{"x":-6,"y":4}],"type":"area"},{"arc":[{"x":155029,"y":140807},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":155026,"y":140812},{"x":-14,"y":19}],"type":"area"},{"arc":[{"x":155012,"y":140831},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":155001,"y":140829},{"x":-4,"y":2}],"type":"area"},{"arc":[{"x":154997,"y":140831},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":154989,"y":140830},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":154985,"y":140830},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":154978,"y":140827},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":154974,"y":140823},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":154968,"y":140822},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":154961,"y":140821},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":154960,"y":140821},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":154956,"y":140816},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":154953,"y":140814},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":154946,"y":140812},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":154945,"y":140812},{"x":-11,"y":-6}],"type":"coastline"},{"arc":[{"x":154934,"y":140806},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":154930,"y":140804},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":154926,"y":140802},{"x":-12,"y":-17}],"type":"area"},{"arc":[{"x":154914,"y":140785},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":154911,"y":140782},{"x":-7,"y":-6}],"type":"area"},{"arc":[{"x":154904,"y":140776},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":154898,"y":140774},{"x":-34,"y":-7}],"type":"area"},{"arc":[{"x":154864,"y":140767},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":154862,"y":140768},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":154857,"y":140774},{"x":-3,"y":4}],"type":"area"},{"arc":[{"x":154854,"y":140778},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":154852,"y":140782},{"x":0,"y":8}],"type":"area"},{"arc":[{"x":154852,"y":140790},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":154851,"y":140794},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":154850,"y":140797},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":154850,"y":140798},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":154848,"y":140802},{"x":-6,"y":20}],"type":"area"},{"arc":[{"x":154842,"y":140822},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":154844,"y":140828},{"x":-22,"y":19}],"type":"area"},{"arc":[{"x":154822,"y":140847},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":154814,"y":140851},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":154813,"y":140853},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":154811,"y":140857},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":154814,"y":140862},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":154815,"y":140864},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":154817,"y":140868},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":154817,"y":140870},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":154818,"y":140875},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":154818,"y":140880},{"x":2,"y":11}],"type":"area"},{"arc":[{"x":154820,"y":140891},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":154823,"y":140898},{"x":11,"y":8}],"type":"area"},{"arc":[{"x":154834,"y":140906},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":154838,"y":140909},{"x":7,"y":3}],"type":"area"},{"arc":[{"x":154845,"y":140912},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":154850,"y":140915},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":154852,"y":140917},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":154857,"y":140923},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":154858,"y":140925},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":154853,"y":140930},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":154852,"y":140933},{"x":0,"y":13}],"type":"area"},{"arc":[{"x":154852,"y":140946},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":154854,"y":140954},{"x":12,"y":28}],"type":"area"},{"arc":[{"x":154866,"y":140982},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":154866,"y":140992},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":154866,"y":140994},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":154867,"y":141001},{"x":-4,"y":12}],"type":"area"},{"arc":[{"x":154863,"y":141013},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":154861,"y":141015},{"x":-7,"y":4}],"type":"area"},{"arc":[{"x":154854,"y":141019},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":154853,"y":141024},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":154853,"y":141030},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":154850,"y":141034},{"x":-10,"y":15}],"type":"area"},{"arc":[{"x":154840,"y":141049},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":154837,"y":141058},{"x":-5,"y":10}],"type":"area"},{"arc":[{"x":154832,"y":141068},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":154830,"y":141073},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":154829,"y":141074},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":154825,"y":141084},{"x":-7,"y":14}],"type":"area"},{"arc":[{"x":154818,"y":141098},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":154816,"y":141105},{"x":-7,"y":-2}],"type":"area"},{"arc":[{"x":154809,"y":141103},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":154802,"y":141102},{"x":-6,"y":1}],"type":"area"},{"arc":[{"x":154796,"y":141103},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":154785,"y":141104},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":154786,"y":141108},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":154787,"y":141111},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":154788,"y":141117},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":154788,"y":141122},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":154788,"y":141126},{"x":1,"y":8}],"type":"area"},{"arc":[{"x":154789,"y":141134},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":154791,"y":141137},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":154793,"y":141139},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":154795,"y":141143},{"x":2,"y":10}],"type":"area"},{"arc":[{"x":154797,"y":141153},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":154800,"y":141155},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":154804,"y":141158},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":154808,"y":141161},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":154808,"y":141162},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":154807,"y":141165},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":154803,"y":141168},{"x":-18,"y":9}],"type":"area"},{"arc":[{"x":154785,"y":141177},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":154779,"y":141179},{"x":-19,"y":15}],"type":"area"},{"arc":[{"x":154760,"y":141194},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":154759,"y":141204},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":154760,"y":141209},{"x":1,"y":4}],"type":"area"},{"arc":[{"x":154761,"y":141213},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":154762,"y":141214},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":154763,"y":141218},{"x":3,"y":9}],"type":"area"},{"arc":[{"x":154766,"y":141227},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":154768,"y":141232},{"x":6,"y":9}],"type":"area"},{"arc":[{"x":154774,"y":141241},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":154776,"y":141245},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":154780,"y":141254},{"x":-3,"y":3}],"type":"area"},{"arc":[{"x":154777,"y":141257},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":154771,"y":141258},{"x":-8,"y":-3}],"type":"area"},{"arc":[{"x":154763,"y":141255},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":154757,"y":141252},{"x":-12,"y":-5}],"type":"area"},{"arc":[{"x":154745,"y":141247},{"x":-8,"y":-5}],"type":"coastline"},{"arc":[{"x":154737,"y":141242},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":154735,"y":141242},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":154728,"y":141241},{"x":-19,"y":3}],"type":"area"},{"arc":[{"x":154709,"y":141244},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":154703,"y":141245},{"x":-5,"y":7}],"type":"area"},{"arc":[{"x":154698,"y":141252},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":154692,"y":141259},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":154685,"y":141261},{"x":-6,"y":5}],"type":"area"},{"arc":[{"x":154679,"y":141266},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":154671,"y":141266},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":154669,"y":141269},{"x":-6,"y":2}],"type":"area"},{"arc":[{"x":154663,"y":141271},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":154659,"y":141271},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":154657,"y":141273},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":154654,"y":141279},{"x":-5,"y":8}],"type":"area"},{"arc":[{"x":154649,"y":141287},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":154644,"y":141291},{"x":-8,"y":2}],"type":"area"},{"arc":[{"x":154636,"y":141293},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":154632,"y":141290},{"x":-4,"y":-2}],"type":"area"},{"arc":[{"x":154628,"y":141288},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":154624,"y":141289},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":154617,"y":141293},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":154609,"y":141292},{"x":-11,"y":7}],"type":"area"},{"arc":[{"x":154598,"y":141299},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":154597,"y":141300},{"x":-14,"y":19}],"type":"area"},{"arc":[{"x":154583,"y":141319},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":154580,"y":141321},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":154575,"y":141326},{"x":5,"y":3}],"type":"area"},{"arc":[{"x":154580,"y":141329},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":154582,"y":141335},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":154580,"y":141341},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":154582,"y":141350},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":154584,"y":141358},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":154585,"y":141365},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":154585,"y":141369},{"x":2,"y":14}],"type":"coastline"},{"arc":[{"x":154587,"y":141383},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":154588,"y":141385},{"x":3,"y":6}],"type":"area"},{"arc":[{"x":154591,"y":141391},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":154589,"y":141398},{"x":-2,"y":14}],"type":"area"},{"arc":[{"x":154587,"y":141412},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":154589,"y":141416},{"x":-10,"y":11}],"type":"area"},{"arc":[{"x":154579,"y":141427},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":154569,"y":141426},{"x":-18,"y":-13}],"type":"area"},{"arc":[{"x":154551,"y":141413},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":154550,"y":141408},{"x":-8,"y":-4}],"type":"area"},{"arc":[{"x":154542,"y":141404},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":154537,"y":141398},{"x":-5,"y":-8}],"type":"area"},{"arc":[{"x":154532,"y":141390},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":154528,"y":141385},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":154523,"y":141379},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":154520,"y":141376},{"x":-10,"y":-11}],"type":"area"},{"arc":[{"x":154510,"y":141365},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":154506,"y":141364},{"x":-9,"y":-7}],"type":"coastline"},{"arc":[{"x":154497,"y":141357},{"x":-7,"y":-2}],"type":"area"},{"arc":[{"x":154490,"y":141355},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":154479,"y":141353},{"x":-9,"y":-3}],"type":"area"},{"arc":[{"x":154470,"y":141350},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":154466,"y":141348},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":154462,"y":141341},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":154461,"y":141339},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":154457,"y":141336},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":154452,"y":141333},{"x":-9,"y":-4}],"type":"coastline"},{"arc":[{"x":154443,"y":141329},{"x":-20,"y":-3}],"type":"area"},{"arc":[{"x":154423,"y":141326},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":154420,"y":141325},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":154413,"y":141322},{"x":-7,"y":1}],"type":"area"},{"arc":[{"x":154406,"y":141323},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":154402,"y":141324},{"x":-7,"y":4}],"type":"area"},{"arc":[{"x":154395,"y":141328},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":154391,"y":141330},{"x":-5,"y":4}],"type":"area"},{"arc":[{"x":154386,"y":141334},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":154379,"y":141336},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":154377,"y":141336},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":154376,"y":141336},{"x":-6,"y":-8}],"type":"area"},{"arc":[{"x":154370,"y":141328},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":154370,"y":141324},{"x":-4,"y":-6}],"type":"area"},{"arc":[{"x":154366,"y":141318},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":154363,"y":141313},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":154360,"y":141310},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":154357,"y":141310},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":154352,"y":141307},{"x":-11,"y":-4}],"type":"area"},{"arc":[{"x":154341,"y":141303},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":154335,"y":141302},{"x":-7,"y":-3}],"type":"area"},{"arc":[{"x":154328,"y":141299},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":154326,"y":141299},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":154324,"y":141299},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":154323,"y":141300},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":154320,"y":141301},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":154316,"y":141302},{"x":-7,"y":0}],"type":"area"},{"arc":[{"x":154309,"y":141302},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":154305,"y":141302},{"x":-11,"y":-1}],"type":"area"},{"arc":[{"x":154294,"y":141301},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":154289,"y":141300},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":154286,"y":141299},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":154283,"y":141300},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":154281,"y":141301},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":154278,"y":141301},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":154276,"y":141299},{"x":-6,"y":-10}],"type":"area"},{"arc":[{"x":154270,"y":141289},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":154268,"y":141288},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":154264,"y":141283},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":154263,"y":141281},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":154260,"y":141279},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":154257,"y":141278},{"x":-5,"y":2}],"type":"area"},{"arc":[{"x":154252,"y":141280},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":154248,"y":141280},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":154246,"y":141280},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":154244,"y":141277},{"x":-12,"y":3}],"type":"area"},{"arc":[{"x":154232,"y":141280},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":154228,"y":141280},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":154224,"y":141280},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":154223,"y":141280},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":154219,"y":141281},{"x":-1,"y":0},{"x":-4,"y":3}],"type":"area"},{"arc":[{"x":154214,"y":141284},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":154208,"y":141287},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":154204,"y":141289},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":154202,"y":141291},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":154202,"y":141292},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":154204,"y":141296},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":154201,"y":141298},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":154198,"y":141299},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":154196,"y":141298},{"x":-3,"y":-3}],"type":"area"},{"arc":[{"x":154193,"y":141295},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":154189,"y":141292},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":154186,"y":141290},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":154182,"y":141290},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":154175,"y":141290},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":154172,"y":141289},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":154169,"y":141287},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":154166,"y":141286},{"x":-9,"y":-3}],"type":"coastline"},{"arc":[{"x":154157,"y":141283},{"x":-13,"y":-3}],"type":"area"},{"arc":[{"x":154144,"y":141280},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":154140,"y":141280},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":154134,"y":141280},{"x":-5,"y":-1}],"type":"area"},{"arc":[{"x":154129,"y":141279},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":154126,"y":141277},{"x":-8,"y":-6}],"type":"area"},{"arc":[{"x":154118,"y":141271},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":154113,"y":141271},{"x":-6,"y":-2}],"type":"area"},{"arc":[{"x":154107,"y":141269},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":154099,"y":141266},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":154096,"y":141264},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":154088,"y":141261},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":154084,"y":141259},{"x":-11,"y":0}],"type":"area"},{"arc":[{"x":154073,"y":141259},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":154069,"y":141257},{"x":-8,"y":-4}],"type":"area"},{"arc":[{"x":154061,"y":141253},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":154059,"y":141252},{"x":-5,"y":1}],"type":"area"},{"arc":[{"x":154054,"y":141253},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":154050,"y":141252},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":154048,"y":141251},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":154045,"y":141251},{"x":-26,"y":-9}],"type":"area"},{"arc":[{"x":154019,"y":141242},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":154017,"y":141240},{"x":-5,"y":-2}],"type":"area"},{"arc":[{"x":154012,"y":141238},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":154009,"y":141237},{"x":-10,"y":-8}],"type":"area"},{"arc":[{"x":153999,"y":141229},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":153996,"y":141219},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":153995,"y":141213},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":153993,"y":141209},{"x":-3,"y":-22}],"type":"area"},{"arc":[{"x":153990,"y":141187},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":153989,"y":141183},{"x":-1,"y":-2}],"type":"area"},{"arc":[{"x":153988,"y":141181},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":153981,"y":141175},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":153978,"y":141171},{"x":4,"y":-21}],"type":"area"},{"arc":[{"x":153982,"y":141150},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":153983,"y":141145},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":153983,"y":141143},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":153982,"y":141140},{"x":2,"y":-8}],"type":"area"},{"arc":[{"x":153984,"y":141132},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":153985,"y":141130},{"x":1,"y":-8}],"type":"area"},{"arc":[{"x":153986,"y":141122},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":153985,"y":141117},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":153984,"y":141116},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":153978,"y":141113},{"x":-6,"y":-6}],"type":"area"},{"arc":[{"x":153972,"y":141107},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":153971,"y":141104},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":153970,"y":141103},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":153967,"y":141100},{"x":-7,"y":-2}],"type":"area"},{"arc":[{"x":153960,"y":141098},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":153958,"y":141095},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":153956,"y":141090},{"x":-6,"y":-4}],"type":"area"},{"arc":[{"x":153950,"y":141086},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":153947,"y":141085},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":153942,"y":141086},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153940,"y":141085},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":153939,"y":141083},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":153938,"y":141080},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":153935,"y":141075},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":153931,"y":141066},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":153932,"y":141062},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":153933,"y":141059},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":153933,"y":141058},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153932,"y":141057},{"x":-12,"y":-11}],"type":"area"},{"arc":[{"x":153920,"y":141046},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":153916,"y":141041},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153915,"y":141040},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":153911,"y":141038},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153909,"y":141037},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":153907,"y":141035},{"x":-6,"y":-6}],"type":"area"},{"arc":[{"x":153901,"y":141029},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":153894,"y":141021},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153892,"y":141020},{"x":-6,"y":-7}],"type":"coastline"},{"arc":[{"x":153886,"y":141013},{"x":-3,"y":-3}],"type":"area"},{"arc":[{"x":153883,"y":141010},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":153880,"y":141007},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":153878,"y":141003},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":153875,"y":140997},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":153875,"y":140994},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":153875,"y":140989},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":153875,"y":140988},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":153873,"y":140984},{"x":-6,"y":-4}],"type":"area"},{"arc":[{"x":153867,"y":140980},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":153864,"y":140973},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153861,"y":140971},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153859,"y":140970},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":153852,"y":140965},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":153851,"y":140964},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":153847,"y":140962},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":153843,"y":140961},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":153835,"y":140957},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":153830,"y":140956},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":153827,"y":140955},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153826,"y":140954},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":153822,"y":140953},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":153821,"y":140953},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":153820,"y":140954},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":153818,"y":140956},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":153815,"y":140957},{"x":-7,"y":2}],"type":"area"},{"arc":[{"x":153808,"y":140959},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":153804,"y":140956},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153801,"y":140954},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":153798,"y":140953},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":153796,"y":140953},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":153793,"y":140952},{"x":-7,"y":-4}],"type":"area"},{"arc":[{"x":153786,"y":140948},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":153779,"y":140945},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":153770,"y":140946},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":153766,"y":140946},{"x":-9,"y":-2}],"type":"coastline"},{"arc":[{"x":153757,"y":140944},{"x":-5,"y":0}],"type":"area"},{"arc":[{"x":153752,"y":140944},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":153746,"y":140942},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":153744,"y":140940},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":153741,"y":140937},{"x":-10,"y":-5}],"type":"area"},{"arc":[{"x":153731,"y":140932},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":153726,"y":140926},{"x":-2,"y":-3}],"type":"area"},{"arc":[{"x":153724,"y":140923},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":153718,"y":140917},{"x":-8,"y":-9}],"type":"area"},{"arc":[{"x":153710,"y":140908},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":153705,"y":140906},{"x":-5,"y":-2}],"type":"area"},{"arc":[{"x":153700,"y":140904},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":153694,"y":140903},{"x":-11,"y":-3}],"type":"area"},{"arc":[{"x":153683,"y":140900},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":153678,"y":140899},{"x":-14,"y":-3}],"type":"area"},{"arc":[{"x":153664,"y":140896},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":153661,"y":140896},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153659,"y":140895},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":153652,"y":140893},{"x":-10,"y":-5}],"type":"area"},{"arc":[{"x":153642,"y":140888},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":153636,"y":140885},{"x":-18,"y":-13}],"type":"area"},{"arc":[{"x":153618,"y":140872},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":153611,"y":140868},{"x":-12,"y":-7}],"type":"area"},{"arc":[{"x":153599,"y":140861},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":153593,"y":140858},{"x":-6,"y":3}],"type":"area"},{"arc":[{"x":153587,"y":140861},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":153585,"y":140861},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153584,"y":140860},{"x":-6,"y":-3}],"type":"area"},{"arc":[{"x":153578,"y":140857},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153575,"y":140855},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":153567,"y":140854},{"x":-4,"y":-4}],"type":"area"},{"arc":[{"x":153563,"y":140850},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153560,"y":140848},{"x":-3,"y":-1}],"type":"area"},{"arc":[{"x":153557,"y":140847},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":153553,"y":140847},{"x":-17,"y":3}],"type":"area"},{"arc":[{"x":153536,"y":140850},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":153529,"y":140846},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":153525,"y":140845},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153522,"y":140843},{"x":-5,"y":0}],"type":"area"},{"arc":[{"x":153517,"y":140843},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":153512,"y":140845},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":153511,"y":140846},{"x":-11,"y":6}],"type":"coastline"},{"arc":[{"x":153500,"y":140852},{"x":-21,"y":0}],"type":"area"},{"arc":[{"x":153479,"y":140852},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":153478,"y":140850},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":153477,"y":140850},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":153473,"y":140850},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153471,"y":140849},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153468,"y":140847},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":153465,"y":140845},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":153463,"y":140843},{"x":-19,"y":-11}],"type":"area"},{"arc":[{"x":153444,"y":140832},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":153440,"y":140828},{"x":-9,"y":-3}],"type":"area"},{"arc":[{"x":153431,"y":140825},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":153427,"y":140825},{"x":-6,"y":-2}],"type":"area"},{"arc":[{"x":153421,"y":140823},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":153417,"y":140822},{"x":-4,"y":-1}],"type":"area"},{"arc":[{"x":153413,"y":140821},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":153411,"y":140821},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":153409,"y":140821},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":153404,"y":140819},{"x":-25,"y":-5}],"type":"area"},{"arc":[{"x":153379,"y":140814},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":153375,"y":140810},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":153373,"y":140809},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":153370,"y":140805},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":153366,"y":140802},{"x":-3,"y":-4}],"type":"area"},{"arc":[{"x":153363,"y":140798},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":153357,"y":140798},{"x":-11,"y":1}],"type":"area"},{"arc":[{"x":153346,"y":140799},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153345,"y":140798},{"x":0,"y":-3}],"type":"area"},{"arc":[{"x":153345,"y":140795},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":153346,"y":140791},{"x":-25,"y":-9}],"type":"area"},{"arc":[{"x":153321,"y":140782},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":153320,"y":140783},{"x":-7,"y":4}],"type":"area"},{"arc":[{"x":153313,"y":140787},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":153309,"y":140789},{"x":-12,"y":0}],"type":"area"},{"arc":[{"x":153297,"y":140789},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":153294,"y":140789},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":153293,"y":140789},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":153288,"y":140791},{"x":-7,"y":4}],"type":"area"},{"arc":[{"x":153281,"y":140795},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":153276,"y":140797},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":153272,"y":140798},{"x":-3,"y":-2}],"type":"area"},{"arc":[{"x":153269,"y":140796},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":153267,"y":140794},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":153262,"y":140792},{"x":-20,"y":0}],"type":"area"},{"arc":[{"x":153242,"y":140792},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":153238,"y":140795},{"x":-9,"y":4}],"type":"area"},{"arc":[{"x":153229,"y":140799},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":153225,"y":140801},{"x":-17,"y":-115},{"x":-77,"y":-83},{"x":49,"y":-116},{"x":-66,"y":-112},{"x":7,"y":-51},{"x":38,"y":-26},{"x":0,"y":-65},{"x":109,"y":-54}],"type":"admin"},{"arc":[{"x":153268,"y":140179},{"x":136,"y":59},{"x":200,"y":7},{"x":46,"y":-72},{"x":128,"y":-18},{"x":103,"y":15},{"x":119,"y":-62},{"x":247,"y":0},{"x":9,"y":-70},{"x":79,"y":-42},{"x":127,"y":20},{"x":60,"y":-117},{"x":94,"y":-40},{"x":-11,"y":-319},{"x":47,"y":-99},{"x":107,"y":9},{"x":23,"y":-54},{"x":46,"y":-2},{"x":47,"y":-42},{"x":67,"y":44},{"x":47,"y":-26},{"x":29,"y":21},{"x":40,"y":-28},{"x":66,"y":22},{"x":83,"y":-135},{"x":51,"y":11},{"x":85,"y":145},{"x":70,"y":22},{"x":-12,"y":-37},{"x":16,"y":22},{"x":142,"y":-65},{"x":15,"y":-84},{"x":-26,"y":-59},{"x":54,"y":-20},{"x":19,"y":19},{"x":117,"y":-104},{"x":148,"y":70},{"x":58,"y":-71},{"x":2,"y":-41},{"x":-40,"y":-40},{"x":81,"y":39},{"x":104,"y":-67},{"x":26,"y":-45}],"type":"area"},{"arc":[{"x":156117,"y":138945},{"x":410,"y":415},{"x":183,"y":142}],"type":"coastline"},{"arc":[{"x":156710,"y":139502},{"x":-39,"y":51},{"x":62,"y":94},{"x":45,"y":17},{"x":-1,"y":317},{"x":91,"y":33},{"x":7,"y":49},{"x":-45,"y":31},{"x":20,"y":58},{"x":-80,"y":-17},{"x":0,"y":-34},{"x":-130,"y":-56},{"x":-10,"y":54},{"x":-106,"y":-11},{"x":11,"y":49},{"x":103,"y":18},{"x":-2,"y":37},{"x":-55,"y":11},{"x":32,"y":146},{"x":32,"y":13},{"x":13,"y":89},{"x":42,"y":58},{"x":-184,"y":174},{"x":0,"y":57},{"x":-77,"y":-108},{"x":-57,"y":-13},{"x":64,"y":82},{"x":-36,"y":103},{"x":-33,"y":27},{"x":-43,"y":-27},{"x":-81,"y":76},{"x":-6,"y":31},{"x":47,"y":8},{"x":17,"y":35},{"x":-62,"y":122}],"type":"area"},{"arc":[{"x":169100,"y":144480},{"x":-3,"y":75},{"x":-18,"y":-136},{"x":21,"y":61}],"type":"coastline"},{"arc":[{"x":169012,"y":146796},{"x":-26,"y":-104},{"x":69,"y":18},{"x":-7,"y":-14},{"x":-99,"y":-60},{"x":-21,"y":-117},{"x":-97,"y":-2},{"x":-26,"y":-31},{"x":46,"y":-83},{"x":-52,"y":-83},{"x":93,"y":-40},{"x":24,"y":-98},{"x":-14,"y":-84},{"x":-108,"y":-11},{"x":-79,"y":-74},{"x":54,"y":-119},{"x":39,"y":-14},{"x":12,"y":-63},{"x":59,"y":-43},{"x":-24,"y":-69},{"x":54,"y":-74},{"x":-16,"y":-138},{"x":34,"y":-51},{"x":-132,"y":-115},{"x":5,"y":-38},{"x":-34,"y":-21},{"x":-5,"y":-54},{"x":-59,"y":-33},{"x":-7,"y":-57},{"x":-91,"y":-23},{"x":-39,"y":62},{"x":-10,"y":-27},{"x":-69,"y":-11},{"x":-143,"y":96},{"x":-139,"y":-93},{"x":-81,"y":105},{"x":-111,"y":-28},{"x":-16,"y":-67},{"x":-107,"y":-26},{"x":-60,"y":-70},{"x":-69,"y":90},{"x":-50,"y":-41},{"x":-68,"y":1}],"type":"admin"},{"arc":[{"x":167642,"y":145092},{"x":4,"y":-109},{"x":-53,"y":-16},{"x":-29,"y":-123},{"x":-66,"y":-42},{"x":-31,"y":-62},{"x":28,"y":-119},{"x":-22,"y":-160},{"x":-112,"y":-134},{"x":57,"y":-187},{"x":-169,"y":-110},{"x":-63,"y":-115},{"x":-77,"y":-26},{"x":-26,"y":-75},{"x":-38,"y":-7},{"x":-49,"y":-65},{"x":80,"y":-41},{"x":-18,"y":-56},{"x":32,"y":-8},{"x":37,"y":40},{"x":59,"y":-89},{"x":106,"y":-17},{"x":7,"y":-27},{"x":-142,"y":-45},{"x":0,"y":-50},{"x":-84,"y":45},{"x":-34,"y":-64},{"x":-52,"y":19},{"x":-15,"y":-59},{"x":-98,"y":-6},{"x":-19,"y":-48},{"x":-77,"y":-11},{"x":-3,"y":-78},{"x":-41,"y":4},{"x":-13,"y":44},{"x":-16,"y":-8}],"type":"admin"},{"arc":[{"x":166705,"y":143287},{"x":-90,"y":-126},{"x":-48,"y":-22},{"x":-5,"y":-44},{"x":-18,"y":18},{"x":-21,"y":-29},{"x":-46,"y":3},{"x":11,"y":-53},{"x":-71,"y":-44},{"x":-2,"y":-98},{"x":-47,"y":-13},{"x":-39,"y":-96},{"x":43,"y":-4},{"x":49,"y":-79},{"x":27,"y":27},{"x":34,"y":-9},{"x":-9,"y":-41},{"x":62,"y":-89},{"x":-2,"y":-142},{"x":142,"y":54},{"x":57,"y":-40},{"x":11,"y":-39},{"x":-48,"y":-40},{"x":3,"y":-87}],"type":"admin"},{"arc":[{"x":166698,"y":142294},{"x":50,"y":-6},{"x":-6,"y":57},{"x":101,"y":40},{"x":83,"y":-58},{"x":51,"y":22},{"x":9,"y":-20},{"x":-4,"y":22},{"x":82,"y":47},{"x":8,"y":79},{"x":84,"y":72},{"x":297,"y":133},{"x":44,"y":-20},{"x":23,"y":35},{"x":104,"y":-36},{"x":-13,"y":-42},{"x":36,"y":-12},{"x":-51,"y":-5},{"x":29,"y":-13},{"x":105,"y":20},{"x":24,"y":-23},{"x":26,"y":33},{"x":22,"y":-45},{"x":57,"y":19},{"x":74,"y":-6},{"x":40,"y":-36},{"x":44,"y":10},{"x":176,"y":171},{"x":38,"y":12},{"x":45,"y":-30},{"x":47,"y":7},{"x":-70,"y":82},{"x":52,"y":89},{"x":76,"y":29},{"x":58,"y":-66},{"x":6,"y":29},{"x":91,"y":32},{"x":33,"y":160},{"x":-20,"y":12},{"x":59,"y":54},{"x":-31,"y":43},{"x":62,"y":21},{"x":16,"y":76},{"x":43,"y":-8},{"x":7,"y":79},{"x":-26,"y":31},{"x":76,"y":42},{"x":0,"y":48},{"x":32,"y":-11},{"x":23,"y":23},{"x":15,"y":149},{"x":163,"y":178},{"x":16,"y":157},{"x":65,"y":104},{"x":-7,"y":123},{"x":-32,"y":9},{"x":-36,"y":111},{"x":26,"y":42},{"x":48,"y":-3},{"x":2,"y":31},{"x":-61,"y":64},{"x":25,"y":-41},{"x":-18,"y":-8},{"x":0,"y":25},{"x":-11,"y":-37},{"x":-30,"y":21},{"x":25,"y":30},{"x":-27,"y":-26},{"x":-14,"y":39},{"x":-11,"y":-20},{"x":11,"y":33},{"x":-45,"y":81},{"x":7,"y":121},{"x":220,"y":419},{"x":5,"y":82},{"x":79,"y":76},{"x":141,"y":280},{"x":46,"y":155},{"x":-18,"y":-25},{"x":1,"y":83},{"x":148,"y":166},{"x":76,"y":6},{"x":-22,"y":58},{"x":38,"y":136},{"x":180,"y":218}],"type":"coastline"},{"arc":[{"x":169815,"y":146323},{"x":-46,"y":53},{"x":-109,"y":59},{"x":-16,"y":44},{"x":41,"y":116},{"x":64,"y":31},{"x":-35,"y":149},{"x":-49,"y":32},{"x":-72,"y":-59},{"x":-101,"y":4},{"x":-105,"y":156},{"x":-46,"y":209},{"x":-53,"y":86},{"x":-31,"y":-7},{"x":-29,"y":-87},{"x":-133,"y":-93},{"x":-14,"y":-137},{"x":-41,"y":-15},{"x":-28,"y":-68}],"type":"area"},{"arc":[{"x":171373,"y":143934},{"x":-30,"y":6},{"x":20,"y":-21},{"x":10,"y":15}],"type":"coastline"},{"arc":[{"x":171672,"y":144400},{"x":-53,"y":25},{"x":15,"y":-53},{"x":38,"y":28}],"type":"coastline"},{"arc":[{"x":174741,"y":144628},{"x":-2,"y":24},{"x":-54,"y":4},{"x":-15,"y":-62},{"x":-20,"y":29},{"x":-46,"y":-88},{"x":76,"y":2},{"x":61,"y":91}],"type":"coastline"},{"arc":[{"x":168641,"y":147906},{"x":-51,"y":-105},{"x":-9,"y":-187},{"x":-173,"y":-592},{"x":19,"y":-41},{"x":18,"y":28},{"x":19,"y":-17},{"x":51,"y":30},{"x":39,"y":-32},{"x":52,"y":7},{"x":2,"y":-64},{"x":31,"y":22},{"x":61,"y":4},{"x":19,"y":-24},{"x":17,"y":19},{"x":113,"y":-145},{"x":143,"y":16},{"x":20,"y":-29}],"type":"admin"},{"arc":[{"x":169815,"y":146323},{"x":67,"y":35},{"x":8,"y":42},{"x":63,"y":-34},{"x":39,"y":159},{"x":85,"y":52},{"x":2,"y":68},{"x":81,"y":104},{"x":100,"y":293},{"x":25,"y":173},{"x":-45,"y":83},{"x":109,"y":219},{"x":-26,"y":16},{"x":0,"y":75},{"x":52,"y":83},{"x":57,"y":-5},{"x":19,"y":24},{"x":-23,"y":30},{"x":47,"y":36},{"x":-21,"y":72},{"x":38,"y":30},{"x":18,"y":-14},{"x":32,"y":41},{"x":-38,"y":-21},{"x":-7,"y":51},{"x":27,"y":-27},{"x":-31,"y":55},{"x":33,"y":27},{"x":49,"y":-7},{"x":-13,"y":49},{"x":78,"y":127},{"x":-37,"y":33},{"x":65,"y":101},{"x":-42,"y":6},{"x":-34,"y":42},{"x":9,"y":59},{"x":21,"y":-4},{"x":16,"y":26},{"x":-16,"y":-25},{"x":-47,"y":115},{"x":29,"y":73},{"x":-24,"y":61},{"x":34,"y":181},{"x":-28,"y":-7},{"x":-49,"y":34},{"x":48,"y":-34},{"x":-26,"y":-15},{"x":-18,"y":27},{"x":-19,"y":-12},{"x":7,"y":22},{"x":-8,"y":-22},{"x":-31,"y":14},{"x":-50,"y":179},{"x":-59,"y":-28},{"x":-118,"y":86},{"x":-20,"y":-30},{"x":-34,"y":9},{"x":-43,"y":-64},{"x":-139,"y":-34},{"x":-121,"y":70},{"x":-104,"y":108},{"x":-44,"y":-10},{"x":-138,"y":41},{"x":-87,"y":-107},{"x":-53,"y":-175},{"x":-37,"y":-228},{"x":37,"y":-24},{"x":10,"y":-26},{"x":-24,"y":-5},{"x":34,"y":-47},{"x":-39,"y":21},{"x":58,"y":-31},{"x":-3,"y":-134},{"x":-68,"y":-204},{"x":-53,"y":-13},{"x":36,"y":-1},{"x":-11,"y":-20},{"x":-22,"y":12},{"x":-11,"y":-34},{"x":-38,"y":35},{"x":38,"y":-78},{"x":-97,"y":-74},{"x":-191,"y":-67},{"x":-75,"y":-7},{"x":2,"y":20},{"x":-40,"y":19},{"x":38,"y":-38},{"x":-45,"y":10},{"x":11,"y":16},{"x":-18,"y":-23},{"x":-34,"y":25},{"x":-14,"y":-48},{"x":-70,"y":-44},{"x":-213,"y":15}],"type":"coastline"},{"arc":[{"x":153268,"y":140179},{"x":-18,"y":-86},{"x":-245,"y":-200},{"x":-16,"y":-76},{"x":57,"y":-83},{"x":-43,"y":-85}],"type":"admin"},{"arc":[{"x":153003,"y":139649},{"x":60,"y":-23},{"x":17,"y":-67},{"x":49,"y":-41},{"x":91,"y":-35},{"x":27,"y":-104},{"x":50,"y":-31},{"x":81,"y":20},{"x":66,"y":-41},{"x":-61,"y":-198},{"x":31,"y":-220},{"x":-47,"y":-31},{"x":-13,"y":-78},{"x":51,"y":-38},{"x":47,"y":-106},{"x":152,"y":-90},{"x":124,"y":3},{"x":13,"y":-33},{"x":80,"y":-35}],"type":"admin"},{"arc":[{"x":153821,"y":138501},{"x":100,"y":-16},{"x":95,"y":37},{"x":87,"y":-25},{"x":69,"y":34},{"x":64,"y":-158},{"x":41,"y":-17},{"x":35,"y":23},{"x":64,"y":-24},{"x":12,"y":-71},{"x":145,"y":-74},{"x":43,"y":-163},{"x":54,"y":-27},{"x":-10,"y":-166},{"x":60,"y":16},{"x":-11,"y":-54},{"x":30,"y":9},{"x":20,"y":-27},{"x":68,"y":29},{"x":17,"y":-82},{"x":122,"y":24},{"x":76,"y":-153}],"type":"admin"},{"arc":[{"x":155002,"y":137616},{"x":21,"y":-8},{"x":92,"y":153},{"x":209,"y":200},{"x":132,"y":36},{"x":85,"y":89},{"x":96,"y":25},{"x":87,"y":79},{"x":-15,"y":53},{"x":32,"y":102},{"x":-14,"y":-23},{"x":-10,"y":15},{"x":30,"y":22},{"x":-10,"y":29},{"x":19,"y":-31},{"x":-12,"y":48},{"x":35,"y":27},{"x":35,"y":128},{"x":303,"y":385}],"type":"coastline"},{"arc":[{"x":163345,"y":143468},{"x":-53,"y":-25},{"x":-59,"y":22},{"x":56,"y":-29},{"x":56,"y":32}],"type":"admin"},{"arc":[{"x":163362,"y":143390},{"x":-29,"y":4},{"x":25,"y":-23},{"x":4,"y":19}],"type":"admin"},{"arc":[{"x":163358,"y":143537},{"x":-13,"y":20},{"x":10,"y":-82},{"x":3,"y":62}],"type":"admin"},{"arc":[{"x":163123,"y":142897},{"x":98,"y":77},{"x":64,"y":-25},{"x":6,"y":-36},{"x":37,"y":4},{"x":-31,"y":35},{"x":29,"y":38},{"x":133,"y":50}],"type":"coastline"},{"arc":[{"x":163459,"y":143040},{"x":12,"y":94},{"x":-28,"y":35},{"x":-43,"y":28},{"x":-66,"y":-6},{"x":-60,"y":38},{"x":-40,"y":72},{"x":82,"y":27},{"x":70,"y":-21},{"x":33,"y":-49},{"x":71,"y":-7},{"x":17,"y":27},{"x":-53,"y":114},{"x":-64,"y":-77},{"x":-75,"y":17},{"x":-78,"y":-26},{"x":72,"y":31},{"x":-43,"y":-9},{"x":41,"y":22},{"x":-23,"y":26},{"x":-24,"y":-50},{"x":-30,"y":11},{"x":100,"y":112},{"x":-68,"y":-49},{"x":-5,"y":27},{"x":-72,"y":29},{"x":1,"y":-59},{"x":-25,"y":14},{"x":15,"y":-17},{"x":-25,"y":-10},{"x":78,"y":-36},{"x":-7,"y":-20},{"x":-70,"y":38},{"x":58,"y":-43},{"x":-63,"y":12},{"x":77,"y":-22},{"x":-88,"y":16},{"x":59,"y":225},{"x":79,"y":76}],"type":"admin"},{"arc":[{"x":163274,"y":143630},{"x":-77,"y":37},{"x":-10,"y":-17},{"x":-37,"y":9},{"x":-42,"y":-56},{"x":-41,"y":22},{"x":103,"y":71},{"x":24,"y":71},{"x":-21,"y":25},{"x":88,"y":141},{"x":-65,"y":3},{"x":-20,"y":-28},{"x":-5,"y":27},{"x":-29,"y":-23},{"x":-25,"y":126},{"x":-191,"y":125},{"x":-90,"y":0},{"x":-8,"y":89}],"type":"admin"},{"arc":[{"x":162244,"y":144125},{"x":42,"y":-53},{"x":-27,"y":-86},{"x":60,"y":-28},{"x":-31,"y":-233},{"x":26,"y":-20},{"x":46,"y":17},{"x":59,"y":-57},{"x":77,"y":-22},{"x":-2,"y":-261},{"x":35,"y":7},{"x":13,"y":-31},{"x":-108,"y":-60},{"x":-4,"y":-33},{"x":-108,"y":7},{"x":-11,"y":-76},{"x":-103,"y":10},{"x":16,"y":-274}],"type":"admin"},{"arc":[{"x":162224,"y":142932},{"x":465,"y":100},{"x":104,"y":-3},{"x":112,"y":-23},{"x":50,"y":-57},{"x":-35,"y":-41},{"x":28,"y":13},{"x":-6,"y":-28},{"x":22,"y":38},{"x":-11,"y":-45},{"x":-42,"y":15},{"x":91,"y":-54},{"x":58,"y":1},{"x":63,"y":49}],"type":"coastline"},{"arc":[{"x":160977,"y":143538},{"x":-32,"y":1},{"x":-16,"y":-43},{"x":-4,"y":-44},{"x":34,"y":-39},{"x":-37,"y":-12},{"x":-46,"y":-128},{"x":-67,"y":-84},{"x":25,"y":-102},{"x":37,"y":-21},{"x":-11,"y":-23},{"x":-54,"y":-21},{"x":-6,"y":-32},{"x":-57,"y":7},{"x":-13,"y":-33},{"x":-68,"y":-2},{"x":-41,"y":76},{"x":-49,"y":-37},{"x":-9,"y":-42},{"x":-97,"y":-57},{"x":10,"y":-19},{"x":-22,"y":14},{"x":8,"y":-29},{"x":-17,"y":19},{"x":-15,"y":-28},{"x":-20,"y":14},{"x":-56,"y":-102},{"x":-26,"y":31},{"x":-54,"y":-12},{"x":-27,"y":-61},{"x":-107,"y":-34},{"x":-42,"y":-110},{"x":15,"y":-30},{"x":3,"y":28},{"x":34,"y":4},{"x":-34,"y":-183},{"x":-61,"y":-3},{"x":60,"y":-9},{"x":0,"y":-49},{"x":-66,"y":-4},{"x":6,"y":-51},{"x":-157,"y":-28}],"type":"admin"},{"arc":[{"x":159898,"y":142260},{"x":78,"y":-114},{"x":77,"y":53},{"x":83,"y":-182}],"type":"admin"},{"arc":[{"x":160136,"y":142017},{"x":465,"y":253},{"x":658,"y":314}],"type":"coastline"},{"arc":[{"x":161259,"y":142584},{"x":24,"y":251},{"x":-90,"y":3},{"x":-18,"y":63},{"x":41,"y":72},{"x":5,"y":154},{"x":-17,"y":27},{"x":-78,"y":21},{"x":-2,"y":90},{"x":-55,"y":-5},{"x":-25,"y":141},{"x":22,"y":18},{"x":-89,"y":119}],"type":"admin"},{"arc":[{"x":158376,"y":140963},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":158370,"y":140983},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":158374,"y":140983},{"x":2,"y":12}],"type":"coastline"},{"arc":[{"x":158377,"y":141014},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":158386,"y":141056},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":158374,"y":141063},{"x":-24,"y":6}],"type":"coastline"},{"arc":[{"x":158350,"y":141069},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":158332,"y":141069},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":158330,"y":141069},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":158327,"y":141073},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":158320,"y":141076},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":158318,"y":141082},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":158316,"y":141099},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":158315,"y":141103},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":158254,"y":141092},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":158249,"y":141093},{"x":-11,"y":0}],"type":"coastline"},{"arc":[{"x":158238,"y":141093},{"x":-11,"y":1}],"type":"coastline"},{"arc":[{"x":158196,"y":141090},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":158196,"y":141093},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":158201,"y":141095},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":158224,"y":141109},{"x":9,"y":1}],"type":"coastline"},{"arc":[{"x":158241,"y":141126},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":158242,"y":141129},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":158238,"y":141155},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":158233,"y":141169},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":158224,"y":141178},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":158220,"y":141178},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":158209,"y":141178},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":158205,"y":141192},{"x":-1,"y":10}],"type":"coastline"},{"arc":[{"x":158202,"y":141204},{"x":-12,"y":2}],"type":"coastline"},{"arc":[{"x":158175,"y":141215},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":158172,"y":141216},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":158163,"y":141219},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":158157,"y":141219},{"x":-3,"y":0}],"type":"area"},{"arc":[{"x":158154,"y":141219},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":158146,"y":141222},{"x":-5,"y":2}],"type":"area"},{"arc":[{"x":158141,"y":141224},{"x":-12,"y":4}],"type":"coastline"},{"arc":[{"x":158129,"y":141228},{"x":-5,"y":4}],"type":"area"},{"arc":[{"x":158124,"y":141232},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":158119,"y":141234},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":158118,"y":141238},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":158117,"y":141240},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":158110,"y":141240},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":158103,"y":141237},{"x":-11,"y":-7}],"type":"area"},{"arc":[{"x":158092,"y":141230},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":158088,"y":141231},{"x":-27,"y":-14}],"type":"area"},{"arc":[{"x":158061,"y":141217},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":158059,"y":141216},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":158059,"y":141215},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":158058,"y":141214},{"x":-1,"y":-6}],"type":"area"},{"arc":[{"x":158057,"y":141208},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":158057,"y":141205},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":158057,"y":141204},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":158056,"y":141200},{"x":1,"y":-4}],"type":"area"},{"arc":[{"x":158057,"y":141196},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":158057,"y":141194},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":158057,"y":141192},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":158056,"y":141190},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":158056,"y":141188},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":158054,"y":141186},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":158052,"y":141175},{"x":1,"y":-6}],"type":"area"},{"arc":[{"x":158053,"y":141169},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":158051,"y":141163},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":158059,"y":141157},{"x":-18,"y":-12}],"type":"area"},{"arc":[{"x":158041,"y":141145},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":158038,"y":141145},{"x":-23,"y":1}],"type":"area"},{"arc":[{"x":158015,"y":141146},{"x":-18,"y":1}],"type":"coastline"},{"arc":[{"x":157997,"y":141147},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":157996,"y":141147},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":157993,"y":141148},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":157992,"y":141148},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":157990,"y":141149},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":157990,"y":141151},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":157991,"y":141153},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":157991,"y":141154},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":157992,"y":141157},{"x":3,"y":10}],"type":"area"},{"arc":[{"x":157995,"y":141167},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":157996,"y":141170},{"x":1,"y":4}],"type":"area"},{"arc":[{"x":157997,"y":141174},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":157998,"y":141175},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":157999,"y":141180},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":158000,"y":141181},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":158001,"y":141183},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":158001,"y":141186},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":158001,"y":141187},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":158001,"y":141191},{"x":-3,"y":11}],"type":"area"},{"arc":[{"x":157998,"y":141202},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":157989,"y":141203},{"x":-9,"y":0}],"type":"area"},{"arc":[{"x":157980,"y":141203},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":157972,"y":141203},{"x":-1,"y":-1}],"type":"area"},{"arc":[{"x":157971,"y":141202},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":157966,"y":141201},{"x":-15,"y":1}],"type":"area"},{"arc":[{"x":157951,"y":141202},{"x":-10,"y":5}],"type":"coastline"},{"arc":[{"x":157941,"y":141207},{"x":-4,"y":1}],"type":"area"},{"arc":[{"x":157937,"y":141208},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":157932,"y":141209},{"x":-1,"y":-31}],"type":"area"},{"arc":[{"x":157931,"y":141178},{"x":1,"y":-8}],"type":"coastline"},{"arc":[{"x":157932,"y":141170},{"x":1,"y":-9}],"type":"area"},{"arc":[{"x":157933,"y":141161},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":157933,"y":141153},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":157933,"y":141151},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":157938,"y":141148},{"x":23,"y":-6}],"type":"area"},{"arc":[{"x":157961,"y":141142},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":157960,"y":141136},{"x":0,"y":-10}],"type":"area"},{"arc":[{"x":157960,"y":141126},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":157959,"y":141118},{"x":-1,"y":-21}],"type":"coastline"},{"arc":[{"x":157958,"y":141097},{"x":-2,"y":-2}],"type":"area"},{"arc":[{"x":157956,"y":141095},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":157943,"y":141096},{"x":-8,"y":0}],"type":"area"},{"arc":[{"x":157935,"y":141096},{"x":-20,"y":0}],"type":"coastline"},{"arc":[{"x":157915,"y":141096},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":157915,"y":141097},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":157915,"y":141104},{"x":0,"y":9}],"type":"area"},{"arc":[{"x":157915,"y":141113},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":157919,"y":141121},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":157919,"y":141126},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":157919,"y":141135},{"x":0,"y":5}],"type":"area"},{"arc":[{"x":157919,"y":141140},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":157921,"y":141148},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157920,"y":141152},{"x":-2,"y":6}],"type":"area"},{"arc":[{"x":157918,"y":141158},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":157919,"y":141160},{"x":1,"y":7}],"type":"area"},{"arc":[{"x":157920,"y":141167},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":157921,"y":141172},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":157921,"y":141174},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":157921,"y":141181},{"x":-1,"y":13}],"type":"area"},{"arc":[{"x":157920,"y":141194},{"x":-1,"y":17}],"type":"coastline"},{"arc":[{"x":157919,"y":141211},{"x":-1,"y":1}],"type":"area"},{"arc":[{"x":157918,"y":141212},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":157908,"y":141212},{"x":0,"y":6}],"type":"area"},{"arc":[{"x":157908,"y":141218},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":157908,"y":141219},{"x":0,"y":22}],"type":"area"},{"arc":[{"x":157908,"y":141241},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":157908,"y":141242},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":157908,"y":141244},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":157902,"y":141251},{"x":-2,"y":-1}],"type":"area"},{"arc":[{"x":157900,"y":141250},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":157897,"y":141251},{"x":-9,"y":-1}],"type":"area"},{"arc":[{"x":157888,"y":141250},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":157884,"y":141250},{"x":-13,"y":0}],"type":"area"},{"arc":[{"x":157871,"y":141250},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":157859,"y":141250},{"x":-2,"y":0}],"type":"area"},{"arc":[{"x":157857,"y":141250},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":157846,"y":141249},{"x":-2,"y":-6}],"type":"area"},{"arc":[{"x":157844,"y":141243},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":157844,"y":141238},{"x":-27,"y":-12}],"type":"area"},{"arc":[{"x":157817,"y":141226},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":157810,"y":141223},{"x":-54,"y":0}],"type":"area"},{"arc":[{"x":157756,"y":141223},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":157751,"y":141221},{"x":-18,"y":-8}],"type":"area"},{"arc":[{"x":157733,"y":141213},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":157734,"y":141201},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":157734,"y":141200},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":157731,"y":141200},{"x":-5,"y":1}],"type":"area"},{"arc":[{"x":157726,"y":141201},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":157723,"y":141199},{"x":-1,"y":-3}],"type":"area"},{"arc":[{"x":157722,"y":141196},{"x":-7,"y":-9}],"type":"coastline"},{"arc":[{"x":157715,"y":141187},{"x":-10,"y":-1}],"type":"area"},{"arc":[{"x":157705,"y":141186},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":157700,"y":141186},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":157697,"y":141186},{"x":-3,"y":1}],"type":"area"},{"arc":[{"x":157694,"y":141187},{"x":-13,"y":1}],"type":"coastline"},{"arc":[{"x":157681,"y":141188},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":157678,"y":141187},{"x":-15,"y":4}],"type":"area"},{"arc":[{"x":157663,"y":141191},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":157655,"y":141197},{"x":-13,"y":9}],"type":"area"},{"arc":[{"x":157642,"y":141206},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":157637,"y":141207},{"x":-9,"y":4}],"type":"area"},{"arc":[{"x":157628,"y":141211},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":157625,"y":141212},{"x":-2,"y":1}],"type":"area"},{"arc":[{"x":157623,"y":141213},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157622,"y":141213},{"x":1,"y":11}],"type":"area"},{"arc":[{"x":157623,"y":141224},{"x":5,"y":13}],"type":"coastline"},{"arc":[{"x":157628,"y":141237},{"x":-2,"y":4}],"type":"area"},{"arc":[{"x":157626,"y":141241},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":157620,"y":141245},{"x":-2,"y":2}],"type":"area"},{"arc":[{"x":157618,"y":141247},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":157619,"y":141249},{"x":4,"y":7}],"type":"area"},{"arc":[{"x":157623,"y":141256},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157623,"y":141260},{"x":3,"y":13}],"type":"area"},{"arc":[{"x":157626,"y":141273},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":157624,"y":141273},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":157620,"y":141273},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":157612,"y":141274},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":157608,"y":141274},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":157599,"y":141275},{"x":-36,"y":5},{"x":2,"y":19}],"type":"area"},{"arc":[{"x":157565,"y":141299},{"x":3,"y":26}],"type":"coastline"},{"arc":[{"x":157568,"y":141325},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":157567,"y":141330},{"x":9,"y":0}],"type":"area"},{"arc":[{"x":157576,"y":141330},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":157582,"y":141335},{"x":0,"y":8}],"type":"area"},{"arc":[{"x":157582,"y":141343},{"x":6,"y":11}],"type":"coastline"},{"arc":[{"x":157588,"y":141354},{"x":-2,"y":10}],"type":"area"},{"arc":[{"x":157586,"y":141364},{"x":-11,"y":16}],"type":"coastline"},{"arc":[{"x":157575,"y":141380},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":157563,"y":141380},{"x":-4,"y":0}],"type":"area"},{"arc":[{"x":157559,"y":141380},{"x":-24,"y":3}],"type":"coastline"},{"arc":[{"x":157535,"y":141383},{"x":12,"y":53}],"type":"area"},{"arc":[{"x":157547,"y":141436},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":157550,"y":141437},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":157550,"y":141438},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":157546,"y":141463},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":157544,"y":141493},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":157543,"y":141505},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":157526,"y":141507},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157524,"y":141514},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":157528,"y":141522},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":157526,"y":141529},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":157503,"y":141540},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":157497,"y":141548},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157495,"y":141557},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":157495,"y":141559},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":157496,"y":141563},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":157494,"y":141598},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":157490,"y":141606},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":157486,"y":141608},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":157480,"y":141617},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":157451,"y":141616},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":157443,"y":141616},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":157440,"y":141617},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":157437,"y":141619},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":157436,"y":141623},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":157430,"y":141629},{"x":-11,"y":7}],"type":"coastline"},{"arc":[{"x":157419,"y":141636},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":157415,"y":141639},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":157400,"y":141696},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":157403,"y":141701},{"x":0,"y":18}],"type":"coastline"},{"arc":[{"x":157401,"y":141735},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":157401,"y":141753},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157389,"y":141741},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":157374,"y":141734},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":157371,"y":141733},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":157344,"y":141728},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":157343,"y":141730},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157342,"y":141730},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":157311,"y":141730},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":157308,"y":141744},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":157321,"y":141745},{"x":11,"y":-2}],"type":"coastline"},{"arc":[{"x":157334,"y":141743},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":157338,"y":141748},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":157340,"y":141752},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":157332,"y":141763},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":157325,"y":141765},{"x":-12,"y":-3}],"type":"coastline"},{"arc":[{"x":157307,"y":141757},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":157305,"y":141756},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":157302,"y":141756},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":157298,"y":141756},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":157295,"y":141747},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":157294,"y":141741},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":157294,"y":141719},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":157300,"y":141706},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":157316,"y":141684},{"x":-4,"y":-10}],"type":"coastline"},{"arc":[{"x":157311,"y":141673},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":157307,"y":141677},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":157305,"y":141678},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":157304,"y":141677},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":157300,"y":141667},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":157286,"y":141671},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":157281,"y":141672},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":157276,"y":141678},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157269,"y":141683},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":157224,"y":141712},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":157216,"y":141715},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":157207,"y":141726},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":157204,"y":141733},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":157202,"y":141738},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":157206,"y":141743},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":157207,"y":141746},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":157202,"y":141764},{"x":-9,"y":11}],"type":"coastline"},{"arc":[{"x":157187,"y":141781},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":157137,"y":141774},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":157120,"y":141762},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":157117,"y":141753},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":157110,"y":141739},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":157106,"y":141736},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":157088,"y":141772},{"x":8,"y":15}],"type":"coastline"},{"arc":[{"x":157102,"y":141793},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":157091,"y":141798},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":157083,"y":141802},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":157079,"y":141802},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":157071,"y":141809},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":157066,"y":141809},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":157060,"y":141807},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":157044,"y":141816},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157042,"y":141817},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":157033,"y":141819},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":157026,"y":141821},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":157024,"y":141833},{"x":-11,"y":8}],"type":"coastline"},{"arc":[{"x":157013,"y":141841},{"x":-28,"y":18}],"type":"coastline"},{"arc":[{"x":156985,"y":141859},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":156979,"y":141861},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":156974,"y":141859},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":156967,"y":141856},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":156959,"y":141845},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":156931,"y":141811},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":156916,"y":141802},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156907,"y":141801},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":156899,"y":141801},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":156880,"y":141807},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":156860,"y":141815},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":156854,"y":141816},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":156837,"y":141816},{"x":-13,"y":2}],"type":"coastline"},{"arc":[{"x":156814,"y":141822},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":156824,"y":141835},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":156827,"y":141838},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":156843,"y":141863},{"x":-1,"y":22}],"type":"coastline"},{"arc":[{"x":156832,"y":141889},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":156809,"y":141887},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":156789,"y":141895},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":156785,"y":141898},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":156777,"y":141899},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156766,"y":141899},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156758,"y":141896},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156754,"y":141895},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":156748,"y":141898},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":156741,"y":141900},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":156735,"y":141901},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156733,"y":141900},{"x":-11,"y":-5}],"type":"coastline"},{"arc":[{"x":156720,"y":141894},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":156708,"y":141893},{"x":-27,"y":-4}],"type":"coastline"},{"arc":[{"x":156681,"y":141889},{"x":-6,"y":0}],"type":"coastline"},{"arc":[{"x":156664,"y":141886},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156658,"y":141884},{"x":-14,"y":1}],"type":"coastline"},{"arc":[{"x":156637,"y":141886},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":156628,"y":141888},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":156605,"y":141907},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":156593,"y":141910},{"x":-12,"y":3}],"type":"coastline"},{"arc":[{"x":156557,"y":141926},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":156551,"y":141935},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":156552,"y":141938},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":156549,"y":141941},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":156545,"y":141952},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":156543,"y":141955},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":156540,"y":141964},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":156540,"y":141973},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":156539,"y":141976},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156520,"y":141977},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":156509,"y":141974},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156505,"y":141973},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":156498,"y":141976},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":156485,"y":141974},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156469,"y":141975},{"x":-10,"y":-4}],"type":"coastline"},{"arc":[{"x":156459,"y":141971},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156449,"y":141970},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":156426,"y":141957},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":156420,"y":141958},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":156418,"y":141953},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":156412,"y":141944},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":156404,"y":141942},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156401,"y":141941},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":156375,"y":141971},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":156373,"y":141973},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":156368,"y":141988},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":156369,"y":142004},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":156354,"y":142032},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":156360,"y":142047},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":156362,"y":142051},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":156360,"y":142064},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":156351,"y":142074},{"x":-9,"y":7}],"type":"coastline"},{"arc":[{"x":156341,"y":142081},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156330,"y":142083},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":156326,"y":142084},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":156317,"y":142086},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156307,"y":142097},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":156308,"y":142109},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":156301,"y":142121},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":156299,"y":142124},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":156295,"y":142131},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":156289,"y":142136},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":156289,"y":142147},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":156282,"y":142160},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":156259,"y":142174},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":156255,"y":142172},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156247,"y":142173},{"x":-11,"y":8}],"type":"coastline"},{"arc":[{"x":156236,"y":142181},{"x":-8,"y":10}],"type":"coastline"},{"arc":[{"x":156227,"y":142191},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":156222,"y":142195},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":156222,"y":142199},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":156224,"y":142203},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":156224,"y":142204},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":156223,"y":142206},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156221,"y":142207},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156219,"y":142217},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":156216,"y":142222},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156206,"y":142226},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":156196,"y":142228},{"x":-3,"y":11}],"type":"coastline"},{"arc":[{"x":156193,"y":142239},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":156181,"y":142261},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":156188,"y":142278},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":156198,"y":142282},{"x":0,"y":14}],"type":"coastline"},{"arc":[{"x":156198,"y":142296},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":156203,"y":142306},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":156207,"y":142310},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":156210,"y":142316},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":156216,"y":142333},{"x":5,"y":15}],"type":"coastline"},{"arc":[{"x":156221,"y":142348},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":156227,"y":142378},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":156228,"y":142389},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":156223,"y":142397},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":156217,"y":142423},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":156219,"y":142436},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":156217,"y":142439},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":156197,"y":142442},{"x":-13,"y":-6}],"type":"coastline"},{"arc":[{"x":156184,"y":142436},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":156180,"y":142436},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":156149,"y":142443},{"x":-14,"y":-6}],"type":"coastline"},{"arc":[{"x":156135,"y":142437},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156108,"y":142435},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":156100,"y":142435},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":156082,"y":142436},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":156079,"y":142437},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":156062,"y":142442},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":156056,"y":142445},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":156048,"y":142461},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":156039,"y":142472},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":156037,"y":142479},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":156036,"y":142495},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":156029,"y":142498},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":156022,"y":142496},{"x":-12,"y":-2}],"type":"coastline"},{"arc":[{"x":155985,"y":142492},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":155966,"y":142497},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":155962,"y":142501},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":155961,"y":142505},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":155954,"y":142527},{"x":-10,"y":6}],"type":"coastline"},{"arc":[{"x":155944,"y":142533},{"x":-11,"y":20}],"type":"coastline"},{"arc":[{"x":155937,"y":142571},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":155926,"y":142580},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":155926,"y":142591},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":155918,"y":142633},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":155913,"y":142640},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":155905,"y":142651},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":155905,"y":142655},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":155900,"y":142668},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":155899,"y":142672},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":155898,"y":142677},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":155898,"y":142688},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":155892,"y":142698},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":155890,"y":142701},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":155875,"y":142714},{"x":-10,"y":7}],"type":"coastline"},{"arc":[{"x":155852,"y":142733},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":155851,"y":142763},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155816,"y":142783},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":155810,"y":142792},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":155807,"y":142801},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":155799,"y":142803},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":155794,"y":142807},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155791,"y":142813},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":155787,"y":142818},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155757,"y":142831},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":155723,"y":142865},{"x":-11,"y":4}],"type":"coastline"},{"arc":[{"x":155690,"y":142927},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":155654,"y":143018},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":155649,"y":143032},{"x":4,"y":11}],"type":"coastline"},{"arc":[{"x":155651,"y":143049},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":155630,"y":143059},{"x":-22,"y":2}],"type":"coastline"},{"arc":[{"x":155607,"y":143062},{"x":-10,"y":6}],"type":"coastline"},{"arc":[{"x":155563,"y":143064},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155561,"y":143066},{"x":-3,"y":9}],"type":"coastline"},{"arc":[{"x":155560,"y":143088},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":155552,"y":143099},{"x":-4,"y":9}],"type":"coastline"},{"arc":[{"x":155544,"y":143131},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155552,"y":143144},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":155555,"y":143150},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":155558,"y":143158},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":155565,"y":143170},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":155575,"y":143180},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":155588,"y":143219},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":155535,"y":143217},{"x":-13,"y":5}],"type":"coastline"},{"arc":[{"x":155514,"y":143223},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":155508,"y":143220},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":155503,"y":143225},{"x":-11,"y":7}],"type":"coastline"},{"arc":[{"x":155455,"y":143218},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":155436,"y":143197},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":155421,"y":143209},{"x":-5,"y":6}],"type":"coastline"},{"arc":[{"x":155412,"y":143220},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":155403,"y":143226},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":155390,"y":143240},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":155381,"y":143249},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":155376,"y":143254},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":155365,"y":143260},{"x":-9,"y":3}],"type":"coastline"},{"arc":[{"x":155353,"y":143264},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":155324,"y":143262},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":155318,"y":143256},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":155312,"y":143255},{"x":-13,"y":5}],"type":"coastline"},{"arc":[{"x":155253,"y":143266},{"x":-13,"y":-4}],"type":"coastline"},{"arc":[{"x":155234,"y":143255},{"x":-20,"y":-8}],"type":"coastline"},{"arc":[{"x":155192,"y":143250},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":155167,"y":143261},{"x":-13,"y":3}],"type":"coastline"},{"arc":[{"x":155142,"y":143266},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":155132,"y":143267},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":155107,"y":143275},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":155099,"y":143275},{"x":-12,"y":-5}],"type":"coastline"},{"arc":[{"x":155085,"y":143270},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":155051,"y":143287},{"x":-9,"y":0}],"type":"admin"},{"arc":[{"x":155042,"y":143287},{"x":-9,"y":8}],"type":"coastline"},{"arc":[{"x":155033,"y":143295},{"x":-39,"y":19}],"type":"admin"},{"arc":[{"x":154994,"y":143314},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":154986,"y":143318},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":154977,"y":143319},{"x":-11,"y":1}],"type":"admin"},{"arc":[{"x":154966,"y":143320},{"x":-6,"y":15}],"type":"coastline"},{"arc":[{"x":154960,"y":143335},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":154956,"y":143340},{"x":-15,"y":32}],"type":"admin"},{"arc":[{"x":154941,"y":143372},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":154935,"y":143379},{"x":-7,"y":4}],"type":"admin"},{"arc":[{"x":154928,"y":143383},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":154922,"y":143385},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":154916,"y":143390},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":154907,"y":143392},{"x":-25,"y":18}],"type":"admin"},{"arc":[{"x":154882,"y":143410},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":154879,"y":143411},{"x":-9,"y":9}],"type":"admin"},{"arc":[{"x":154870,"y":143420},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":154868,"y":143425},{"x":-11,"y":4}],"type":"admin"},{"arc":[{"x":154857,"y":143429},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":154850,"y":143429},{"x":-19,"y":0}],"type":"admin"},{"arc":[{"x":154831,"y":143429},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":154824,"y":143428},{"x":-17,"y":-3}],"type":"admin"},{"arc":[{"x":154807,"y":143425},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":154800,"y":143424},{"x":-29,"y":3}],"type":"admin"},{"arc":[{"x":154771,"y":143427},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":154766,"y":143428},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":154761,"y":143428},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":154755,"y":143429},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":154751,"y":143437},{"x":-6,"y":11}],"type":"coastline"},{"arc":[{"x":154745,"y":143448},{"x":-4,"y":5}],"type":"admin"},{"arc":[{"x":154741,"y":143453},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":154736,"y":143460},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":154732,"y":143466},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":154725,"y":143477},{"x":-1,"y":4}],"type":"admin"},{"arc":[{"x":154724,"y":143481},{"x":-8,"y":5}],"type":"coastline"},{"arc":[{"x":154716,"y":143486},{"x":-6,"y":5}],"type":"admin"},{"arc":[{"x":154710,"y":143491},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":154704,"y":143497},{"x":-2,"y":2}],"type":"admin"},{"arc":[{"x":154702,"y":143499},{"x":-11,"y":12}],"type":"coastline"},{"arc":[{"x":154691,"y":143511},{"x":-6,"y":5}],"type":"admin"},{"arc":[{"x":154685,"y":143516},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":154677,"y":143518},{"x":-12,"y":4}],"type":"admin"},{"arc":[{"x":154665,"y":143522},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":154655,"y":143522},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":154647,"y":143521},{"x":-8,"y":-3}],"type":"coastline"},{"arc":[{"x":154639,"y":143518},{"x":-12,"y":38}],"type":"admin"},{"arc":[{"x":154627,"y":143556},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":154628,"y":143569},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":154626,"y":143578},{"x":1,"y":4}],"type":"admin"},{"arc":[{"x":154627,"y":143582},{"x":8,"y":15}],"type":"coastline"},{"arc":[{"x":154635,"y":143597},{"x":-2,"y":17}],"type":"admin"},{"arc":[{"x":154633,"y":143614},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":154631,"y":143624},{"x":-1,"y":1}],"type":"admin"},{"arc":[{"x":154630,"y":143625},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":154628,"y":143631},{"x":4,"y":46}],"type":"admin"},{"arc":[{"x":154632,"y":143677},{"x":1,"y":13}],"type":"coastline"},{"arc":[{"x":154633,"y":143690},{"x":-3,"y":21}],"type":"admin"},{"arc":[{"x":154630,"y":143711},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":154629,"y":143715},{"x":-20,"y":4}],"type":"admin"},{"arc":[{"x":154609,"y":143719},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":154603,"y":143722},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":154599,"y":143726},{"x":-5,"y":5}],"type":"admin"},{"arc":[{"x":154594,"y":143731},{"x":-9,"y":4}],"type":"coastline"},{"arc":[{"x":154585,"y":143735},{"x":-7,"y":5}],"type":"admin"},{"arc":[{"x":154578,"y":143740},{"x":-9,"y":11}],"type":"coastline"},{"arc":[{"x":154569,"y":143751},{"x":-6,"y":11}],"type":"admin"},{"arc":[{"x":154563,"y":143762},{"x":3,"y":11}],"type":"coastline"},{"arc":[{"x":154566,"y":143773},{"x":1,"y":8}],"type":"admin"},{"arc":[{"x":154567,"y":143781},{"x":-9,"y":13}],"type":"coastline"},{"arc":[{"x":154558,"y":143794},{"x":-5,"y":3}],"type":"admin"},{"arc":[{"x":154553,"y":143797},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":154550,"y":143800},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":154548,"y":143802},{"x":-3,"y":23}],"type":"admin"},{"arc":[{"x":154545,"y":143825},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":154537,"y":143827},{"x":-9,"y":-4}],"type":"admin"},{"arc":[{"x":154528,"y":143823},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":154516,"y":143823},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":154511,"y":143823},{"x":-12,"y":3}],"type":"coastline"},{"arc":[{"x":154499,"y":143826},{"x":-13,"y":1}],"type":"admin"},{"arc":[{"x":154486,"y":143827},{"x":-10,"y":5}],"type":"coastline"},{"arc":[{"x":154476,"y":143832},{"x":-18,"y":34}],"type":"admin"},{"arc":[{"x":154458,"y":143866},{"x":-4,"y":13}],"type":"coastline"},{"arc":[{"x":154454,"y":143879},{"x":0,"y":5}],"type":"admin"},{"arc":[{"x":154454,"y":143884},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":154451,"y":143891},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":154449,"y":143892},{"x":-12,"y":-1}],"type":"coastline"},{"arc":[{"x":154437,"y":143891},{"x":-16,"y":1}],"type":"admin"},{"arc":[{"x":154421,"y":143892},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":154419,"y":143893},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":154412,"y":143898},{"x":-13,"y":3}],"type":"admin"},{"arc":[{"x":154399,"y":143901},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":154393,"y":143902},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":154390,"y":143902},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":154388,"y":143899},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":154390,"y":143890},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":154390,"y":143884},{"x":-37,"y":-33}],"type":"admin"},{"arc":[{"x":154353,"y":143851},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":154346,"y":143850},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":154339,"y":143851},{"x":-16,"y":-5}],"type":"admin"},{"arc":[{"x":154323,"y":143846},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":154322,"y":143846},{"x":-2,"y":0}],"type":"admin"},{"arc":[{"x":154320,"y":143846},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":154312,"y":143842},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":154312,"y":143841},{"x":-11,"y":-6}],"type":"coastline"},{"arc":[{"x":154301,"y":143835},{"x":-5,"y":-6}],"type":"admin"},{"arc":[{"x":154296,"y":143829},{"x":-20,"y":-8}],"type":"coastline"},{"arc":[{"x":154276,"y":143821},{"x":-23,"y":-11}],"type":"admin"},{"arc":[{"x":154253,"y":143810},{"x":-5,"y":-4}],"type":"coastline"},{"arc":[{"x":154248,"y":143806},{"x":-6,"y":-4}],"type":"admin"},{"arc":[{"x":154242,"y":143802},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":154234,"y":143801},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":154232,"y":143800},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":154229,"y":143797},{"x":-7,"y":-10}],"type":"coastline"},{"arc":[{"x":154222,"y":143787},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":154220,"y":143784},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":154218,"y":143782},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":154217,"y":143782},{"x":-10,"y":-5}],"type":"admin"},{"arc":[{"x":154207,"y":143777},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":154201,"y":143781},{"x":-57,"y":-37}],"type":"admin"},{"arc":[{"x":154144,"y":143744},{"x":-12,"y":-6}],"type":"coastline"},{"arc":[{"x":154132,"y":143738},{"x":-4,"y":-1}],"type":"admin"},{"arc":[{"x":154128,"y":143737},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":154123,"y":143730},{"x":-5,"y":-12}],"type":"admin"},{"arc":[{"x":154118,"y":143718},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":154112,"y":143712},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":154111,"y":143712},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":154110,"y":143711},{"x":-11,"y":-7}],"type":"admin"},{"arc":[{"x":154099,"y":143704},{"x":-11,"y":-3}],"type":"coastline"},{"arc":[{"x":154088,"y":143701},{"x":-21,"y":-2}],"type":"admin"},{"arc":[{"x":154067,"y":143699},{"x":-12,"y":1}],"type":"coastline"},{"arc":[{"x":154055,"y":143700},{"x":-4,"y":0}],"type":"admin"},{"arc":[{"x":154051,"y":143700},{"x":-7,"y":-2}],"type":"coastline"},{"arc":[{"x":154044,"y":143698},{"x":-27,"y":-6}],"type":"admin"},{"arc":[{"x":154017,"y":143692},{"x":-8,"y":-8}],"type":"coastline"},{"arc":[{"x":154009,"y":143684},{"x":-8,"y":-15}],"type":"admin"},{"arc":[{"x":154001,"y":143669},{"x":-5,"y":-10}],"type":"coastline"},{"arc":[{"x":153996,"y":143659},{"x":-6,"y":-12}],"type":"coastline"},{"arc":[{"x":153990,"y":143647},{"x":-6,"y":-5}],"type":"admin"},{"arc":[{"x":153984,"y":143642},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":153979,"y":143639},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":153973,"y":143637},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":153969,"y":143634},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":153965,"y":143630},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":153963,"y":143625},{"x":-11,"y":-20}],"type":"admin"},{"arc":[{"x":153952,"y":143605},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":153947,"y":143600},{"x":-5,"y":-3}],"type":"admin"},{"arc":[{"x":153942,"y":143597},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":153940,"y":143593},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153937,"y":143591},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":153932,"y":143584},{"x":-28,"y":-9}],"type":"admin"},{"arc":[{"x":153904,"y":143575},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":153901,"y":143575},{"x":-21,"y":-6}],"type":"admin"},{"arc":[{"x":153880,"y":143569},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":153875,"y":143569},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":153870,"y":143571},{"x":-31,"y":19}],"type":"admin"},{"arc":[{"x":153839,"y":143590},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":153832,"y":143601},{"x":-24,"y":-6}],"type":"admin"},{"arc":[{"x":153808,"y":143595},{"x":-9,"y":-12}],"type":"coastline"},{"arc":[{"x":153799,"y":143583},{"x":4,"y":-11}],"type":"admin"},{"arc":[{"x":153803,"y":143572},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":153806,"y":143566},{"x":-8,"y":-27}],"type":"admin"},{"arc":[{"x":153798,"y":143539},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":153795,"y":143532},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":153791,"y":143527},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":153787,"y":143524},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":153780,"y":143518},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":153778,"y":143516},{"x":-4,"y":-5}],"type":"admin"},{"arc":[{"x":153774,"y":143511},{"x":-8,"y":-10}],"type":"coastline"},{"arc":[{"x":153766,"y":143501},{"x":-6,"y":-7}],"type":"admin"},{"arc":[{"x":153760,"y":143494},{"x":-10,"y":-14}],"type":"coastline"},{"arc":[{"x":153750,"y":143480},{"x":-2,"y":-3}],"type":"admin"},{"arc":[{"x":153748,"y":143477},{"x":-8,"y":-2}],"type":"coastline"},{"arc":[{"x":153740,"y":143475},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":153738,"y":143474},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153737,"y":143473},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":153736,"y":143473},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":153730,"y":143470},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":153726,"y":143467},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":153720,"y":143463},{"x":-14,"y":-7}],"type":"admin"},{"arc":[{"x":153706,"y":143456},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":153706,"y":143453},{"x":-5,"y":-8}],"type":"admin"},{"arc":[{"x":153701,"y":143445},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":153698,"y":143442},{"x":-9,"y":-4}],"type":"admin"},{"arc":[{"x":153689,"y":143438},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":153678,"y":143434},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":153672,"y":143433},{"x":-20,"y":-22}],"type":"admin"},{"arc":[{"x":153652,"y":143411},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":153651,"y":143409},{"x":-7,"y":-11}],"type":"admin"},{"arc":[{"x":153644,"y":143398},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":153641,"y":143395},{"x":-9,"y":-7}],"type":"coastline"},{"arc":[{"x":153632,"y":143388},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":153629,"y":143387},{"x":-29,"y":-13}],"type":"admin"},{"arc":[{"x":153600,"y":143374},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":153594,"y":143371},{"x":-5,"y":-1}],"type":"admin"},{"arc":[{"x":153589,"y":143370},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":153586,"y":143368},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":153585,"y":143368},{"x":-9,"y":-2}],"type":"admin"},{"arc":[{"x":153576,"y":143366},{"x":-6,"y":-1}],"type":"coastline"},{"arc":[{"x":153570,"y":143365},{"x":-24,"y":-2}],"type":"admin"},{"arc":[{"x":153546,"y":143363},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":153540,"y":143365},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":153538,"y":143367},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":153535,"y":143367},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":153531,"y":143368},{"x":-25,"y":0}],"type":"admin"},{"arc":[{"x":153506,"y":143368},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":153501,"y":143367},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":153497,"y":143364},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":153490,"y":143361},{"x":-17,"y":-2}],"type":"admin"},{"arc":[{"x":153473,"y":143359},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":153465,"y":143355},{"x":-4,"y":-2}],"type":"admin"},{"arc":[{"x":153461,"y":143353},{"x":-11,"y":-2}],"type":"coastline"},{"arc":[{"x":153450,"y":143351},{"x":-4,"y":-6}],"type":"admin"},{"arc":[{"x":153446,"y":143345},{"x":-7,"y":-6}],"type":"coastline"},{"arc":[{"x":153439,"y":143339},{"x":-3,"y":-5}],"type":"admin"},{"arc":[{"x":153436,"y":143334},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":153435,"y":143330},{"x":-9,"y":-28}],"type":"admin"},{"arc":[{"x":153426,"y":143302},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":153424,"y":143295},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":153423,"y":143290},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":153421,"y":143287},{"x":-3,"y":-7}],"type":"admin"},{"arc":[{"x":153418,"y":143280},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153417,"y":143279},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":153416,"y":143277},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":153413,"y":143273},{"x":-7,"y":-6}],"type":"admin"},{"arc":[{"x":153406,"y":143267},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":153401,"y":143261},{"x":-8,"y":-7}],"type":"admin"},{"arc":[{"x":153393,"y":143254},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":153386,"y":143246},{"x":-15,"y":-15}],"type":"admin"},{"arc":[{"x":153371,"y":143231},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":153367,"y":143224},{"x":3,"y":-25}],"type":"admin"},{"arc":[{"x":153370,"y":143199},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":153372,"y":143194},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":153374,"y":143192},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":153375,"y":143189},{"x":-1,"y":-18}],"type":"admin"},{"arc":[{"x":153374,"y":143171},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":153374,"y":143166},{"x":-2,"y":-23}],"type":"admin"},{"arc":[{"x":153372,"y":143143},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":153371,"y":143132},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":153369,"y":143130},{"x":-10,"y":-9}],"type":"admin"},{"arc":[{"x":153359,"y":143121},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":153356,"y":143117},{"x":-7,"y":-9}],"type":"admin"},{"arc":[{"x":153349,"y":143108},{"x":-4,"y":-7}],"type":"coastline"},{"arc":[{"x":153345,"y":143101},{"x":-3,"y":-10}],"type":"coastline"},{"arc":[{"x":153342,"y":143091},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":153341,"y":143084},{"x":-1,"y":-9}],"type":"admin"},{"arc":[{"x":153340,"y":143075},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":153339,"y":143072},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":153337,"y":143066},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":153336,"y":143063},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":153336,"y":143058},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":153337,"y":143053},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":153339,"y":143053},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":153342,"y":143054},{"x":0,"y":-8}],"type":"admin"},{"arc":[{"x":153342,"y":143046},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":153342,"y":143041},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":153342,"y":143039},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":153341,"y":143036},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":153338,"y":143033},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":153331,"y":143030},{"x":-7,"y":-8}],"type":"admin"},{"arc":[{"x":153324,"y":143022},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":153323,"y":143021},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":153321,"y":143019},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":153317,"y":143019},{"x":-16,"y":-4}],"type":"admin"},{"arc":[{"x":153301,"y":143015},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":153297,"y":143016},{"x":-4,"y":6}],"type":"admin"},{"arc":[{"x":153293,"y":143022},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":153289,"y":143028},{"x":-2,"y":2}],"type":"admin"},{"arc":[{"x":153287,"y":143030},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":153284,"y":143032},{"x":-7,"y":6}],"type":"admin"},{"arc":[{"x":153277,"y":143038},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":153275,"y":143042},{"x":-2,"y":19}],"type":"admin"},{"arc":[{"x":153273,"y":143061},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":153273,"y":143064},{"x":-1,"y":6}],"type":"admin"},{"arc":[{"x":153272,"y":143070},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":153271,"y":143072},{"x":-3,"y":4}],"type":"admin"},{"arc":[{"x":153268,"y":143076},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":153266,"y":143078},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":153264,"y":143081},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":153262,"y":143086},{"x":-5,"y":5}],"type":"admin"},{"arc":[{"x":153257,"y":143091},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":153254,"y":143093},{"x":0,"y":-1}],"type":"admin"},{"arc":[{"x":153254,"y":143092},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":153253,"y":143089},{"x":-20,"y":-12}],"type":"admin"},{"arc":[{"x":153233,"y":143077},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":153231,"y":143076},{"x":-10,"y":4}],"type":"admin"},{"arc":[{"x":153221,"y":143080},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":153217,"y":143083},{"x":-22,"y":10}],"type":"admin"},{"arc":[{"x":153195,"y":143093},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":153190,"y":143094},{"x":-12,"y":-1}],"type":"admin"},{"arc":[{"x":153178,"y":143093},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":153172,"y":143095},{"x":-9,"y":21}],"type":"admin"},{"arc":[{"x":153163,"y":143116},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":153160,"y":143117},{"x":-13,"y":6}],"type":"admin"},{"arc":[{"x":153147,"y":143123},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":153143,"y":143121},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":153139,"y":143118},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":153135,"y":143114},{"x":-19,"y":1}],"type":"admin"},{"arc":[{"x":153116,"y":143115},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":153108,"y":143115},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":153104,"y":143115},{"x":-10,"y":1}],"type":"admin"},{"arc":[{"x":153094,"y":143116},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":153089,"y":143116},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":153085,"y":143118},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":153082,"y":143123},{"x":-1,"y":2}],"type":"admin"},{"arc":[{"x":153081,"y":143125},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":153080,"y":143132},{"x":0,"y":1}],"type":"admin"},{"arc":[{"x":153080,"y":143133},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":153075,"y":143136},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":153070,"y":143139},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":153068,"y":143142},{"x":-2,"y":9}],"type":"admin"},{"arc":[{"x":153066,"y":143151},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":153064,"y":143159},{"x":-9,"y":9}],"type":"admin"},{"arc":[{"x":153055,"y":143168},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":153050,"y":143166},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":153047,"y":143164},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":153040,"y":143161},{"x":-10,"y":-3}],"type":"admin"},{"arc":[{"x":153030,"y":143158},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":153027,"y":143159},{"x":-32,"y":0}],"type":"admin"},{"arc":[{"x":152995,"y":143159},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":152988,"y":143156},{"x":-28,"y":3}],"type":"admin"},{"arc":[{"x":152960,"y":143159},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":152956,"y":143156},{"x":-11,"y":-9}],"type":"admin"},{"arc":[{"x":152945,"y":143147},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":152941,"y":143146},{"x":-2,"y":-4}],"type":"admin"},{"arc":[{"x":152939,"y":143142},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":152937,"y":143138},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":152931,"y":143133},{"x":-3,"y":0}],"type":"admin"},{"arc":[{"x":152928,"y":143133},{"x":-6,"y":2}],"type":"coastline"},{"arc":[{"x":152922,"y":143135},{"x":-12,"y":8}],"type":"admin"},{"arc":[{"x":152910,"y":143143},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":152906,"y":143145},{"x":-16,"y":-26}],"type":"admin"},{"arc":[{"x":152890,"y":143119},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":152887,"y":143115},{"x":-8,"y":-5}],"type":"admin"},{"arc":[{"x":152879,"y":143110},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":152876,"y":143108},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":152874,"y":143107},{"x":-7,"y":-3}],"type":"coastline"},{"arc":[{"x":152867,"y":143104},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":152866,"y":143102},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":152863,"y":143098},{"x":-1,"y":-4}],"type":"admin"},{"arc":[{"x":152862,"y":143094},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":152861,"y":143088},{"x":-6,"y":-7}],"type":"admin"},{"arc":[{"x":152855,"y":143081},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":152853,"y":143081},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":152851,"y":143080},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":152847,"y":143076},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":152844,"y":143074},{"x":-9,"y":-6}],"type":"coastline"},{"arc":[{"x":152835,"y":143068},{"x":-8,"y":-4}],"type":"admin"},{"arc":[{"x":152827,"y":143064},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":152824,"y":143063},{"x":-13,"y":-2}],"type":"admin"},{"arc":[{"x":152811,"y":143061},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":152806,"y":143061},{"x":-37,"y":-4}],"type":"admin"},{"arc":[{"x":152769,"y":143057},{"x":-9,"y":-5}],"type":"coastline"},{"arc":[{"x":152760,"y":143052},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":152755,"y":143052},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":152750,"y":143053},{"x":-9,"y":6}],"type":"admin"},{"arc":[{"x":152741,"y":143059},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":152739,"y":143060},{"x":-4,"y":2}],"type":"admin"},{"arc":[{"x":152735,"y":143062},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":152731,"y":143062},{"x":-15,"y":-6}],"type":"admin"},{"arc":[{"x":152716,"y":143056},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":152711,"y":143055},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":152706,"y":143053},{"x":-4,"y":-3}],"type":"admin"},{"arc":[{"x":152702,"y":143050},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":152698,"y":143047},{"x":-19,"y":-7}],"type":"admin"},{"arc":[{"x":152679,"y":143040},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":152676,"y":143036},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":152675,"y":143036},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":152671,"y":143034},{"x":-1,"y":0}],"type":"admin"},{"arc":[{"x":152670,"y":143034},{"x":-6,"y":-7}],"type":"coastline"},{"arc":[{"x":152664,"y":143027},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":152660,"y":143026},{"x":-13,"y":-1}],"type":"admin"},{"arc":[{"x":152647,"y":143025},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":152643,"y":143022},{"x":-7,"y":-5}],"type":"admin"},{"arc":[{"x":152636,"y":143017},{"x":-9,"y":-6}],"type":"coastline"},{"arc":[{"x":152627,"y":143011},{"x":-11,"y":-3}],"type":"admin"},{"arc":[{"x":152616,"y":143008},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":152611,"y":143009},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":152606,"y":143009},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":152604,"y":143008},{"x":-2,"y":-2}],"type":"admin"},{"arc":[{"x":152602,"y":143006},{"x":-4,"y":-11}],"type":"coastline"},{"arc":[{"x":152598,"y":142995},{"x":-10,"y":-14}],"type":"admin"},{"arc":[{"x":152588,"y":142981},{"x":-4,"y":-5}],"type":"coastline"},{"arc":[{"x":152584,"y":142976},{"x":-5,"y":-7}],"type":"coastline"},{"arc":[{"x":152579,"y":142969},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":152573,"y":142964},{"x":-14,"y":-14}],"type":"admin"},{"arc":[{"x":152559,"y":142950},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":152553,"y":142946},{"x":-5,"y":-1}],"type":"admin"},{"arc":[{"x":152548,"y":142945},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":152541,"y":142940},{"x":-3,"y":-4}],"type":"admin"},{"arc":[{"x":152538,"y":142936},{"x":-7,"y":-7}],"type":"coastline"},{"arc":[{"x":152531,"y":142929},{"x":-3,"y":-4}],"type":"admin"},{"arc":[{"x":152528,"y":142925},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":152526,"y":142922},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":152523,"y":142916},{"x":-15,"y":-3}],"type":"admin"},{"arc":[{"x":152508,"y":142913},{"x":-8,"y":-4}],"type":"coastline"},{"arc":[{"x":152500,"y":142909},{"x":-14,"y":2}],"type":"admin"},{"arc":[{"x":152486,"y":142911},{"x":-9,"y":2}],"type":"coastline"},{"arc":[{"x":152477,"y":142913},{"x":-9,"y":3}],"type":"admin"},{"arc":[{"x":152468,"y":142916},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":152465,"y":142916},{"x":-1,"y":-1}],"type":"admin"},{"arc":[{"x":152464,"y":142915},{"x":-15,"y":-5}],"type":"coastline"},{"arc":[{"x":152449,"y":142910},{"x":-13,"y":-4}],"type":"admin"},{"arc":[{"x":152436,"y":142906},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":152425,"y":142902},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":152422,"y":142901},{"x":-3,"y":-2}],"type":"admin"},{"arc":[{"x":152419,"y":142899},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":152414,"y":142894},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":152409,"y":142891},{"x":-8,"y":0}],"type":"admin"},{"arc":[{"x":152401,"y":142891},{"x":-13,"y":3}],"type":"coastline"},{"arc":[{"x":152388,"y":142894},{"x":-10,"y":4}],"type":"coastline"},{"arc":[{"x":152378,"y":142898},{"x":-21,"y":-4}],"type":"admin"},{"arc":[{"x":152357,"y":142894},{"x":-9,"y":-10}],"type":"admin"},{"arc":[{"x":152348,"y":142884},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":152346,"y":142880},{"x":5,"y":-7}],"type":"admin"},{"arc":[{"x":152351,"y":142873},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":152353,"y":142870},{"x":1,"y":-9}],"type":"admin"},{"arc":[{"x":152354,"y":142861},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":152353,"y":142850},{"x":-5,"y":-11}],"type":"admin"},{"arc":[{"x":152348,"y":142839},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":152347,"y":142828},{"x":-2,"y":-20}],"type":"admin"},{"arc":[{"x":152345,"y":142808},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":152342,"y":142801},{"x":-7,"y":-8}],"type":"coastline"},{"arc":[{"x":152335,"y":142793},{"x":-27,"y":-28}],"type":"admin"},{"arc":[{"x":152308,"y":142765},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":152306,"y":142763},{"x":-6,"y":-6}],"type":"coastline"},{"arc":[{"x":152300,"y":142757},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":152298,"y":142750},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":152294,"y":142742},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":152289,"y":142739},{"x":-5,"y":-4}],"type":"admin"},{"arc":[{"x":152284,"y":142735},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":152282,"y":142730},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":152283,"y":142725},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":152280,"y":142718},{"x":6,"y":-29}],"type":"admin"},{"arc":[{"x":152286,"y":142689},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":152285,"y":142685},{"x":-1,"y":-8}],"type":"admin"},{"arc":[{"x":152284,"y":142677},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":152283,"y":142675},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":152282,"y":142672},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":152284,"y":142665},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":152286,"y":142661},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":152292,"y":142655},{"x":3,"y":-4}],"type":"admin"},{"arc":[{"x":152295,"y":142651},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":152296,"y":142644},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":152296,"y":142640},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":152298,"y":142637},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":152298,"y":142633},{"x":-3,"y":-11}],"type":"coastline"},{"arc":[{"x":152295,"y":142622},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":152292,"y":142614},{"x":5,"y":-11}],"type":"admin"},{"arc":[{"x":152297,"y":142603},{"x":7,"y":-7}],"type":"coastline"},{"arc":[{"x":152304,"y":142596},{"x":3,"y":-5}],"type":"admin"},{"arc":[{"x":152307,"y":142591},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":152307,"y":142589},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":152307,"y":142586},{"x":-3,"y":-13}],"type":"coastline"},{"arc":[{"x":152304,"y":142573},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":152303,"y":142570},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":152304,"y":142563},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":152304,"y":142560},{"x":-1,"y":-8}],"type":"coastline"},{"arc":[{"x":152303,"y":142552},{"x":3,"y":-8}],"type":"admin"},{"arc":[{"x":152306,"y":142544},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":152306,"y":142537},{"x":-5,"y":-32}],"type":"admin"},{"arc":[{"x":152301,"y":142505},{"x":2,"y":-14}],"type":"admin"},{"arc":[{"x":152303,"y":142491},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":152302,"y":142485},{"x":-13,"y":-14}],"type":"admin"},{"arc":[{"x":152289,"y":142471},{"x":2,"y":-12}],"type":"coastline"},{"arc":[{"x":152291,"y":142459},{"x":-4,"y":-15}],"type":"admin"},{"arc":[{"x":152287,"y":142444},{"x":-6,"y":-3}],"type":"coastline"},{"arc":[{"x":152281,"y":142441},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":152279,"y":142440},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":152278,"y":142437},{"x":-4,"y":-4}],"type":"admin"},{"arc":[{"x":152274,"y":142433},{"x":-4,"y":-13}],"type":"coastline"},{"arc":[{"x":152270,"y":142420},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":152270,"y":142417},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":152270,"y":142413},{"x":2,"y":-7}],"type":"admin"},{"arc":[{"x":152272,"y":142406},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":152268,"y":142400},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":152266,"y":142399},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":152261,"y":142391},{"x":-12,"y":-12}],"type":"admin"},{"arc":[{"x":152249,"y":142379},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":152243,"y":142370},{"x":-19,"y":-19}],"type":"admin"},{"arc":[{"x":152224,"y":142351},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":152219,"y":142350},{"x":-5,"y":-3}],"type":"admin"},{"arc":[{"x":152214,"y":142347},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":152213,"y":142345},{"x":-6,"y":-9}],"type":"coastline"},{"arc":[{"x":152207,"y":142336},{"x":-7,"y":-15}],"type":"admin"},{"arc":[{"x":152200,"y":142321},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":152199,"y":142315},{"x":-1,"y":-9}],"type":"admin"},{"arc":[{"x":152198,"y":142306},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":152200,"y":142302},{"x":-2,"y":-25}],"type":"admin"},{"arc":[{"x":152198,"y":142277},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":152197,"y":142273},{"x":-3,"y":-3}],"type":"admin"},{"arc":[{"x":152194,"y":142270},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":152188,"y":142266},{"x":-10,"y":-22}],"type":"admin"},{"arc":[{"x":152178,"y":142244},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":152183,"y":142240},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":152187,"y":142238},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":152192,"y":142231},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":152193,"y":142227},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":152192,"y":142223},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":152187,"y":142215},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":152185,"y":142212},{"x":-8,"y":-26}],"type":"admin"},{"arc":[{"x":152177,"y":142186},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":152176,"y":142184},{"x":-8,"y":-6}],"type":"coastline"},{"arc":[{"x":152168,"y":142178},{"x":-1,"y":-4}],"type":"admin"},{"arc":[{"x":152167,"y":142174},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":152168,"y":142165},{"x":0,"y":-5}],"type":"admin"},{"arc":[{"x":152168,"y":142160},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":152166,"y":142152},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":152164,"y":142147},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":152165,"y":142144},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":152167,"y":142135},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":152166,"y":142131},{"x":-7,"y":-15}],"type":"admin"},{"arc":[{"x":152159,"y":142116},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":152158,"y":142111},{"x":-7,"y":-9}],"type":"admin"},{"arc":[{"x":152151,"y":142102},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":152143,"y":142101},{"x":-10,"y":-4}],"type":"admin"},{"arc":[{"x":152133,"y":142097},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":152127,"y":142089},{"x":-6,"y":-18}],"type":"admin"},{"arc":[{"x":152121,"y":142071},{"x":-5,"y":-5}],"type":"coastline"},{"arc":[{"x":152116,"y":142066},{"x":5,"y":-5}],"type":"admin"},{"arc":[{"x":152121,"y":142061},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":152124,"y":142057},{"x":12,"y":-17}],"type":"admin"},{"arc":[{"x":152136,"y":142040},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":152142,"y":142033},{"x":-16,"y":-21}],"type":"admin"},{"arc":[{"x":152126,"y":142012},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":152123,"y":142008},{"x":5,"y":-16}],"type":"admin"},{"arc":[{"x":152128,"y":141992},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":152128,"y":141988},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":152125,"y":141981},{"x":-1,"y":-11}],"type":"admin"},{"arc":[{"x":152124,"y":141970},{"x":-3,"y":-8}],"type":"coastline"},{"arc":[{"x":152121,"y":141962},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":152121,"y":141959},{"x":0,"y":-11}],"type":"coastline"},{"arc":[{"x":152121,"y":141948},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":152123,"y":141939},{"x":6,"y":-10}],"type":"admin"},{"arc":[{"x":152129,"y":141929},{"x":5,"y":-12}],"type":"coastline"},{"arc":[{"x":152134,"y":141917},{"x":3,"y":-8}],"type":"admin"},{"arc":[{"x":152137,"y":141909},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":152145,"y":141905},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":152146,"y":141905},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":152150,"y":141905},{"x":9,"y":4}],"type":"admin"},{"arc":[{"x":152159,"y":141909},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":152166,"y":141907},{"x":7,"y":-1}],"type":"admin"},{"arc":[{"x":152173,"y":141906},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":152181,"y":141903},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":152182,"y":141902},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":152190,"y":141900},{"x":19,"y":-5}],"type":"admin"},{"arc":[{"x":152209,"y":141895},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":152213,"y":141893},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":152214,"y":141892},{"x":26,"y":-24}],"type":"admin"},{"arc":[{"x":152240,"y":141868},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":152249,"y":141867},{"x":12,"y":8}],"type":"admin"},{"arc":[{"x":152261,"y":141875},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":152268,"y":141880},{"x":2,"y":2}],"type":"admin"},{"arc":[{"x":152270,"y":141882},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":152278,"y":141883},{"x":19,"y":2}],"type":"admin"},{"arc":[{"x":152297,"y":141885},{"x":20,"y":5}],"type":"coastline"},{"arc":[{"x":152317,"y":141890},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":152319,"y":141890},{"x":5,"y":-1}],"type":"admin"},{"arc":[{"x":152324,"y":141889},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":152329,"y":141888},{"x":25,"y":-32}],"type":"admin"},{"arc":[{"x":152354,"y":141856},{"x":9,"y":-5}],"type":"coastline"},{"arc":[{"x":152363,"y":141851},{"x":6,"y":-1}],"type":"admin"},{"arc":[{"x":152369,"y":141850},{"x":10,"y":-4}],"type":"coastline"},{"arc":[{"x":152379,"y":141846},{"x":11,"y":-5}],"type":"coastline"},{"arc":[{"x":152390,"y":141841},{"x":4,"y":-5}],"type":"admin"},{"arc":[{"x":152394,"y":141836},{"x":22,"y":-2}],"type":"coastline"},{"arc":[{"x":152416,"y":141834},{"x":4,"y":0}],"type":"admin"},{"arc":[{"x":152420,"y":141834},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":152425,"y":141834},{"x":26,"y":-43}],"type":"admin"},{"arc":[{"x":152451,"y":141791},{"x":10,"y":-16}],"type":"coastline"},{"arc":[{"x":152461,"y":141775},{"x":22,"y":-17}],"type":"admin"},{"arc":[{"x":152483,"y":141758},{"x":10,"y":-8}],"type":"coastline"},{"arc":[{"x":152493,"y":141750},{"x":14,"y":-19}],"type":"admin"},{"arc":[{"x":152507,"y":141731},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":152508,"y":141725},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":152514,"y":141718},{"x":3,"y":-5}],"type":"admin"},{"arc":[{"x":152517,"y":141713},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":152519,"y":141703},{"x":-9,"y":-20}],"type":"admin"},{"arc":[{"x":152510,"y":141683},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":152511,"y":141671},{"x":9,"y":-25}],"type":"admin"},{"arc":[{"x":152520,"y":141646},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":152521,"y":141643},{"x":5,"y":-14}],"type":"admin"},{"arc":[{"x":152526,"y":141629},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":152530,"y":141626},{"x":10,"y":-6}],"type":"admin"},{"arc":[{"x":152540,"y":141620},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":152544,"y":141615},{"x":17,"y":-10}],"type":"admin"},{"arc":[{"x":152561,"y":141605},{"x":6,"y":-11}],"type":"coastline"},{"arc":[{"x":152567,"y":141594},{"x":17,"y":-37}],"type":"admin"},{"arc":[{"x":152584,"y":141557},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":152586,"y":141555},{"x":20,"y":-20}],"type":"admin"},{"arc":[{"x":152606,"y":141535},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":152610,"y":141532},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":152611,"y":141530},{"x":4,"y":-13}],"type":"coastline"},{"arc":[{"x":152615,"y":141517},{"x":0,"y":-18}],"type":"admin"},{"arc":[{"x":152615,"y":141499},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":152614,"y":141494},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":152614,"y":141488},{"x":2,"y":-8}],"type":"admin"},{"arc":[{"x":152616,"y":141480},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":152622,"y":141476},{"x":4,"y":-5}],"type":"admin"},{"arc":[{"x":152626,"y":141471},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":152626,"y":141470},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":152627,"y":141468},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":152630,"y":141462},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":152631,"y":141459},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":152633,"y":141454},{"x":39,"y":-16}],"type":"admin"},{"arc":[{"x":152672,"y":141438},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":152678,"y":141435},{"x":-1,"y":-9}],"type":"admin"},{"arc":[{"x":152677,"y":141426},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":152678,"y":141422},{"x":5,"y":-1}],"type":"admin"},{"arc":[{"x":152683,"y":141421},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":152688,"y":141419},{"x":5,"y":-2}],"type":"admin"},{"arc":[{"x":152693,"y":141417},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":152695,"y":141419},{"x":38,"y":9}],"type":"admin"},{"arc":[{"x":152733,"y":141428},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":152737,"y":141427},{"x":9,"y":-6}],"type":"admin"},{"arc":[{"x":152746,"y":141421},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":152745,"y":141417},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":152747,"y":141413},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":152751,"y":141410},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":152752,"y":141409},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":152754,"y":141406},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":152755,"y":141405},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":152760,"y":141403},{"x":9,"y":-18}],"type":"admin"},{"arc":[{"x":152769,"y":141385},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":152774,"y":141383},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":152778,"y":141381},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":152780,"y":141377},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":152782,"y":141373},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":152782,"y":141370},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":152784,"y":141367},{"x":9,"y":-9}],"type":"admin"},{"arc":[{"x":152793,"y":141358},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":152800,"y":141358},{"x":4,"y":-2}],"type":"admin"},{"arc":[{"x":152804,"y":141356},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":152805,"y":141352},{"x":6,"y":-8}],"type":"admin"},{"arc":[{"x":152811,"y":141344},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":152814,"y":141343},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":152817,"y":141343},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":152823,"y":141345},{"x":9,"y":2}],"type":"admin"},{"arc":[{"x":152832,"y":141347},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":152840,"y":141348},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":152844,"y":141347},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":152847,"y":141345},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":152849,"y":141344},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":152851,"y":141342},{"x":7,"y":-6}],"type":"coastline"},{"arc":[{"x":152858,"y":141336},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":152860,"y":141335},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":152865,"y":141331},{"x":4,"y":-1}],"type":"admin"},{"arc":[{"x":152869,"y":141330},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":152876,"y":141331},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":152880,"y":141334},{"x":2,"y":1}],"type":"admin"},{"arc":[{"x":152882,"y":141335},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":152884,"y":141334},{"x":16,"y":-14}],"type":"admin"},{"arc":[{"x":152900,"y":141320},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":152904,"y":141317},{"x":6,"y":-9}],"type":"coastline"},{"arc":[{"x":152910,"y":141308},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":152913,"y":141304},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":152915,"y":141303},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":152917,"y":141297},{"x":0,"y":-4}],"type":"admin"},{"arc":[{"x":152917,"y":141293},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":152919,"y":141285},{"x":1,"y":-14}],"type":"coastline"},{"arc":[{"x":152920,"y":141271},{"x":10,"y":-10}],"type":"admin"},{"arc":[{"x":152930,"y":141261},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":152934,"y":141258},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":152935,"y":141257},{"x":1,"y":-9}],"type":"coastline"},{"arc":[{"x":152936,"y":141248},{"x":2,"y":-61}],"type":"admin"},{"arc":[{"x":152938,"y":141187},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":152941,"y":141183},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":152943,"y":141179},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":152943,"y":141174},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":152943,"y":141170},{"x":4,"y":-6}],"type":"admin"},{"arc":[{"x":152947,"y":141164},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":152949,"y":141162},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":152951,"y":141162},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":152952,"y":141163},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":152953,"y":141163},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":152958,"y":141165},{"x":6,"y":-4}],"type":"admin"},{"arc":[{"x":152964,"y":141161},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":152965,"y":141156},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":152969,"y":141152},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":152975,"y":141147},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":152979,"y":141144},{"x":6,"y":-2}],"type":"admin"},{"arc":[{"x":152985,"y":141142},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":152987,"y":141135},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":152987,"y":141127},{"x":3,"y":-13}],"type":"admin"},{"arc":[{"x":152990,"y":141114},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":152991,"y":141107},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":152992,"y":141105},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":152994,"y":141100},{"x":2,"y":-2}],"type":"admin"},{"arc":[{"x":152996,"y":141098},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":152999,"y":141096},{"x":20,"y":-14}],"type":"admin"},{"arc":[{"x":153019,"y":141082},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":153023,"y":141078},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":153024,"y":141076},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":153028,"y":141074},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":153031,"y":141072},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":153036,"y":141070},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":153044,"y":141069},{"x":9,"y":-3}],"type":"admin"},{"arc":[{"x":153053,"y":141066},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":153058,"y":141062},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":153060,"y":141059},{"x":4,"y":-4}],"type":"admin"},{"arc":[{"x":153064,"y":141055},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":153065,"y":141052},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":153065,"y":141050},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":153064,"y":141046},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":153064,"y":141040},{"x":11,"y":-14}],"type":"admin"},{"arc":[{"x":153075,"y":141026},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":153076,"y":141020},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":153076,"y":141017},{"x":4,"y":-7}],"type":"coastline"},{"arc":[{"x":153080,"y":141010},{"x":1,"y":-1}],"type":"admin"},{"arc":[{"x":153081,"y":141009},{"x":-2,"y":-7}],"type":"coastline"},{"arc":[{"x":153079,"y":141002},{"x":0,"y":-3}],"type":"admin"},{"arc":[{"x":153079,"y":140999},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":153079,"y":140997},{"x":2,"y":-4}],"type":"admin"},{"arc":[{"x":153081,"y":140993},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":153086,"y":140988},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":153089,"y":140982},{"x":4,"y":-7}],"type":"admin"},{"arc":[{"x":153093,"y":140975},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":153093,"y":140971},{"x":-5,"y":-23}],"type":"admin"},{"arc":[{"x":153088,"y":140948},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":153087,"y":140942},{"x":5,"y":-11}],"type":"admin"},{"arc":[{"x":153092,"y":140931},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":153094,"y":140924},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":153094,"y":140922},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":153095,"y":140918},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":153098,"y":140916},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":153101,"y":140916},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":153111,"y":140917},{"x":38,"y":-12}],"type":"admin"},{"arc":[{"x":153149,"y":140905},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":153157,"y":140901},{"x":6,"y":-3}],"type":"admin"},{"arc":[{"x":153163,"y":140898},{"x":12,"y":-5}],"type":"coastline"},{"arc":[{"x":153175,"y":140893},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":153180,"y":140890},{"x":22,"y":-4}],"type":"admin"},{"arc":[{"x":153202,"y":140886},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":153203,"y":140881},{"x":-1,"y":-3}],"type":"admin"},{"arc":[{"x":153202,"y":140878},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":153203,"y":140874},{"x":1,"y":-6}],"type":"admin"},{"arc":[{"x":153204,"y":140868},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":153203,"y":140866},{"x":-6,"y":-7}],"type":"admin"},{"arc":[{"x":153197,"y":140859},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":153198,"y":140856},{"x":3,"y":-6}],"type":"admin"},{"arc":[{"x":153201,"y":140850},{"x":-1,"y":-11}],"type":"coastline"},{"arc":[{"x":153200,"y":140839},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":153200,"y":140837},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":153201,"y":140833},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":153202,"y":140829},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":153205,"y":140826},{"x":14,"y":-19}],"type":"admin"},{"arc":[{"x":153219,"y":140807},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":153224,"y":140803},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":153225,"y":140801},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":153238,"y":140795},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":153262,"y":140792},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":153267,"y":140794},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":153272,"y":140798},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":153276,"y":140797},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":153288,"y":140791},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":153294,"y":140789},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":153309,"y":140789},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":153320,"y":140783},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":153346,"y":140791},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":153345,"y":140798},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153357,"y":140798},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":153366,"y":140802},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":153370,"y":140805},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":153375,"y":140810},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":153404,"y":140819},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":153411,"y":140821},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":153417,"y":140822},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":153427,"y":140825},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":153440,"y":140828},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":153463,"y":140843},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":153468,"y":140847},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153473,"y":140850},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":153478,"y":140850},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":153500,"y":140852},{"x":11,"y":-6}],"type":"coastline"},{"arc":[{"x":153512,"y":140845},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":153522,"y":140843},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153529,"y":140846},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":153553,"y":140847},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":153560,"y":140848},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153567,"y":140854},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":153575,"y":140855},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153584,"y":140860},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153585,"y":140861},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":153593,"y":140858},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":153611,"y":140868},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":153636,"y":140885},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":153652,"y":140893},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":153661,"y":140896},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":153678,"y":140899},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":153694,"y":140903},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":153705,"y":140906},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":153718,"y":140917},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":153726,"y":140926},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":153741,"y":140937},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":153744,"y":140940},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":153746,"y":140942},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":153757,"y":140944},{"x":9,"y":2}],"type":"coastline"},{"arc":[{"x":153770,"y":140946},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":153779,"y":140945},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":153793,"y":140952},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":153798,"y":140953},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":153801,"y":140954},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153804,"y":140956},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":153815,"y":140957},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":153820,"y":140954},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":153822,"y":140953},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":153826,"y":140954},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153830,"y":140956},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":153835,"y":140957},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":153847,"y":140962},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":153852,"y":140965},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":153861,"y":140971},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153864,"y":140973},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":153873,"y":140984},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":153875,"y":140989},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":153875,"y":140997},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":153878,"y":141003},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":153880,"y":141007},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":153886,"y":141013},{"x":6,"y":7}],"type":"coastline"},{"arc":[{"x":153894,"y":141021},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":153907,"y":141035},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":153911,"y":141038},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":153915,"y":141040},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153916,"y":141041},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":153932,"y":141057},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153933,"y":141059},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":153931,"y":141066},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":153935,"y":141075},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":153939,"y":141083},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":153942,"y":141086},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":153947,"y":141085},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":153956,"y":141090},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":153958,"y":141095},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":153967,"y":141100},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":153971,"y":141104},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":153978,"y":141113},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":153985,"y":141117},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":153985,"y":141130},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":153982,"y":141140},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":153983,"y":141145},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":153978,"y":141171},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":153981,"y":141175},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":153989,"y":141183},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":153993,"y":141209},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":153995,"y":141213},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":153996,"y":141219},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":154009,"y":141237},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":154017,"y":141240},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":154045,"y":141251},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":154050,"y":141252},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":154059,"y":141252},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":154069,"y":141257},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":154084,"y":141259},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":154088,"y":141261},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":154099,"y":141266},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":154113,"y":141271},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":154126,"y":141277},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":154134,"y":141280},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":154140,"y":141280},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":154157,"y":141283},{"x":9,"y":3}],"type":"coastline"},{"arc":[{"x":154169,"y":141287},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":154175,"y":141290},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":154186,"y":141290},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":154189,"y":141292},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":154196,"y":141298},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":154201,"y":141298},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":154204,"y":141296},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":154202,"y":141291},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":154204,"y":141289},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":154208,"y":141287},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":154219,"y":141281},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":154224,"y":141280},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":154228,"y":141280},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":154244,"y":141277},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":154248,"y":141280},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":154257,"y":141278},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":154260,"y":141279},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":154264,"y":141283},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":154268,"y":141288},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":154276,"y":141299},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":154278,"y":141301},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":154283,"y":141300},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":154286,"y":141299},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":154289,"y":141300},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":154305,"y":141302},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":154316,"y":141302},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":154320,"y":141301},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":154323,"y":141300},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":154324,"y":141299},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":154326,"y":141299},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":154335,"y":141302},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":154352,"y":141307},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":154360,"y":141310},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":154363,"y":141313},{"x":3,"y":5}],"type":"coastline"},{"arc":[{"x":154370,"y":141324},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":154376,"y":141336},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":154379,"y":141336},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":154391,"y":141330},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":154402,"y":141324},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":154413,"y":141322},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":154420,"y":141325},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":154443,"y":141329},{"x":9,"y":4}],"type":"coastline"},{"arc":[{"x":154452,"y":141333},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":154457,"y":141336},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":154462,"y":141341},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":154466,"y":141348},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":154479,"y":141353},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":154497,"y":141357},{"x":9,"y":7}],"type":"coastline"},{"arc":[{"x":154506,"y":141364},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":154520,"y":141376},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":154523,"y":141379},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":154528,"y":141385},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":154537,"y":141398},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":154550,"y":141408},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":154569,"y":141426},{"x":10,"y":1}],"type":"coastline"},{"arc":[{"x":154589,"y":141416},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":154589,"y":141398},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":154588,"y":141385},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":154587,"y":141383},{"x":-2,"y":-14}],"type":"coastline"},{"arc":[{"x":154585,"y":141369},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":154584,"y":141358},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":154582,"y":141350},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":154582,"y":141335},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":154575,"y":141326},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":154580,"y":141321},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":154597,"y":141300},{"x":1,"y":-1}],"type":"coastline"},{"arc":[{"x":154609,"y":141292},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":154617,"y":141293},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":154624,"y":141289},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":154632,"y":141290},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":154644,"y":141291},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":154654,"y":141279},{"x":3,"y":-6}],"type":"coastline"},{"arc":[{"x":154659,"y":141271},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":154669,"y":141269},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":154671,"y":141266},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":154685,"y":141261},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":154692,"y":141259},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":154703,"y":141245},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":154728,"y":141241},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":154737,"y":141242},{"x":8,"y":5}],"type":"coastline"},{"arc":[{"x":154757,"y":141252},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":154771,"y":141258},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":154780,"y":141254},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":154776,"y":141245},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":154768,"y":141232},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":154763,"y":141218},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":154762,"y":141214},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":154760,"y":141209},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":154759,"y":141204},{"x":1,"y":-10}],"type":"coastline"},{"arc":[{"x":154779,"y":141179},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":154803,"y":141168},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":154807,"y":141165},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":154808,"y":141161},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":154804,"y":141158},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":154800,"y":141155},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":154795,"y":141143},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":154791,"y":141137},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":154788,"y":141126},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":154788,"y":141117},{"x":-1,"y":-6}],"type":"coastline"},{"arc":[{"x":154786,"y":141108},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":154785,"y":141104},{"x":11,"y":-1}],"type":"coastline"},{"arc":[{"x":154802,"y":141102},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":154816,"y":141105},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":154825,"y":141084},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":154830,"y":141073},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":154837,"y":141058},{"x":3,"y":-9}],"type":"coastline"},{"arc":[{"x":154850,"y":141034},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":154853,"y":141030},{"x":0,"y":-6}],"type":"coastline"},{"arc":[{"x":154853,"y":141024},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":154861,"y":141015},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":154867,"y":141001},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":154866,"y":140992},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":154854,"y":140954},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":154852,"y":140933},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":154853,"y":140930},{"x":5,"y":-5}],"type":"coastline"},{"arc":[{"x":154857,"y":140923},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":154850,"y":140915},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":154838,"y":140909},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":154823,"y":140898},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":154818,"y":140880},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":154818,"y":140875},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":154817,"y":140868},{"x":-2,"y":-4}],"type":"coastline"},{"arc":[{"x":154814,"y":140862},{"x":-3,"y":-5}],"type":"coastline"},{"arc":[{"x":154811,"y":140857},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":154814,"y":140851},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":154844,"y":140828},{"x":-2,"y":-6}],"type":"coastline"},{"arc":[{"x":154848,"y":140802},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":154850,"y":140797},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":154851,"y":140794},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":154852,"y":140782},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":154857,"y":140774},{"x":5,"y":-6}],"type":"coastline"},{"arc":[{"x":154862,"y":140768},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":154898,"y":140774},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":154911,"y":140782},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":154926,"y":140802},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":154934,"y":140806},{"x":11,"y":6}],"type":"coastline"},{"arc":[{"x":154946,"y":140812},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":154956,"y":140816},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":154961,"y":140821},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":154968,"y":140822},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":154974,"y":140823},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":154978,"y":140827},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":154989,"y":140830},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":155001,"y":140829},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":155026,"y":140812},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":155035,"y":140803},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":155041,"y":140801},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155046,"y":140801},{"x":13,"y":-6}],"type":"coastline"},{"arc":[{"x":155061,"y":140793},{"x":3,"y":-4}],"type":"coastline"},{"arc":[{"x":155064,"y":140789},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":155069,"y":140782},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":155074,"y":140775},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":155085,"y":140778},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":155102,"y":140796},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":155116,"y":140807},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":155126,"y":140811},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155133,"y":140811},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":155136,"y":140818},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":155160,"y":140839},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":155164,"y":140839},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":155167,"y":140841},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":155174,"y":140842},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155180,"y":140837},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":155182,"y":140832},{"x":-1,"y":-15}],"type":"coastline"},{"arc":[{"x":155187,"y":140796},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":155239,"y":140799},{"x":22,"y":3}],"type":"coastline"},{"arc":[{"x":155272,"y":140791},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":155300,"y":140788},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":155311,"y":140778},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":155320,"y":140772},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":155356,"y":140793},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":155365,"y":140820},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":155375,"y":140829},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":155378,"y":140834},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":155384,"y":140849},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":155384,"y":140851},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":155390,"y":140861},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":155397,"y":140868},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155400,"y":140872},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":155408,"y":140879},{"x":13,"y":-5}],"type":"coastline"},{"arc":[{"x":155432,"y":140872},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":155450,"y":140868},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":155468,"y":140872},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":155483,"y":140877},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":155488,"y":140915},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":155480,"y":140928},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":155478,"y":140931},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":155475,"y":140937},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":155487,"y":140952},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155498,"y":140961},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":155492,"y":140970},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":155515,"y":140995},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":155522,"y":141009},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":155531,"y":141028},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":155546,"y":141040},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":155550,"y":141043},{"x":13,"y":10}],"type":"coastline"},{"arc":[{"x":155563,"y":141053},{"x":9,"y":8}],"type":"coastline"},{"arc":[{"x":155576,"y":141073},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":155576,"y":141077},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":155582,"y":141085},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155588,"y":141085},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":155615,"y":141062},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":155634,"y":141087},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":155637,"y":141090},{"x":18,"y":4}],"type":"coastline"},{"arc":[{"x":155659,"y":141093},{"x":19,"y":0}],"type":"coastline"},{"arc":[{"x":155678,"y":141093},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":155684,"y":141100},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":155694,"y":141100},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":155721,"y":141103},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":155734,"y":141096},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":155763,"y":141097},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":155774,"y":141096},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":155780,"y":141097},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":155784,"y":141099},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":155786,"y":141099},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":155792,"y":141098},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":155810,"y":141075},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155821,"y":141067},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":155825,"y":141064},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":155845,"y":141057},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":155856,"y":141056},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":155859,"y":141065},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":155858,"y":141071},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":155856,"y":141078},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":155858,"y":141083},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":155866,"y":141088},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":155883,"y":141093},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":155914,"y":141096},{"x":7,"y":-2}],"type":"coastline"},{"arc":[{"x":155921,"y":141094},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":155973,"y":141148},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":155994,"y":141160},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":156021,"y":141170},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":156047,"y":141151},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":156060,"y":141152},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156069,"y":141145},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":156072,"y":141144},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":156099,"y":141148},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":156114,"y":141148},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156123,"y":141148},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156141,"y":141126},{"x":12,"y":-13}],"type":"coastline"},{"arc":[{"x":156166,"y":141109},{"x":10,"y":-8}],"type":"coastline"},{"arc":[{"x":156180,"y":141103},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":156206,"y":141094},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":156220,"y":141070},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":156230,"y":141068},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":156235,"y":141067},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":156249,"y":141076},{"x":1,"y":3}],"type":"area"},{"arc":[{"x":156250,"y":141079},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":156251,"y":141083},{"x":3,"y":6}],"type":"area"},{"arc":[{"x":156254,"y":141089},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":156254,"y":141093},{"x":3,"y":11}],"type":"coastline"},{"arc":[{"x":156257,"y":141104},{"x":-2,"y":18}],"type":"area"},{"arc":[{"x":156255,"y":141122},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":156248,"y":141126},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":156247,"y":141128},{"x":-17,"y":16}],"type":"area"},{"arc":[{"x":156230,"y":141144},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":156228,"y":141150},{"x":-1,"y":5}],"type":"area"},{"arc":[{"x":156227,"y":141155},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":156228,"y":141162},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":156227,"y":141165},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":156223,"y":141169},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":156221,"y":141170},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":156221,"y":141171},{"x":-9,"y":5}],"type":"area"},{"arc":[{"x":156212,"y":141176},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":156209,"y":141178},{"x":-6,"y":6}],"type":"area"},{"arc":[{"x":156203,"y":141184},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":156199,"y":141187},{"x":-15,"y":11}],"type":"area"},{"arc":[{"x":156184,"y":141198},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":156182,"y":141202},{"x":0,"y":2}],"type":"area"},{"arc":[{"x":156182,"y":141204},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":156187,"y":141212},{"x":0,"y":1}],"type":"area"},{"arc":[{"x":156187,"y":141213},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":156187,"y":141216},{"x":10,"y":10}],"type":"area"},{"arc":[{"x":156197,"y":141226},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":156200,"y":141232},{"x":1,"y":4}],"type":"area"},{"arc":[{"x":156201,"y":141236},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":156204,"y":141239},{"x":1,"y":1}],"type":"area"},{"arc":[{"x":156205,"y":141240},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":156209,"y":141240},{"x":8,"y":-4}],"type":"area"},{"arc":[{"x":156217,"y":141236},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":156220,"y":141233},{"x":10,"y":-5}],"type":"area"},{"arc":[{"x":156230,"y":141228},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":156232,"y":141230},{"x":12,"y":6}],"type":"area"},{"arc":[{"x":156244,"y":141236},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":156245,"y":141239},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":156246,"y":141243},{"x":1,"y":4}],"type":"area"},{"arc":[{"x":156247,"y":141247},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":156246,"y":141251},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":156245,"y":141255},{"x":15,"y":17}],"type":"area"},{"arc":[{"x":156260,"y":141272},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":156262,"y":141277},{"x":-1,"y":22}],"type":"area"},{"arc":[{"x":156261,"y":141299},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":156260,"y":141301},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":156260,"y":141304},{"x":2,"y":9}],"type":"coastline"},{"arc":[{"x":156262,"y":141313},{"x":44,"y":13}],"type":"area"},{"arc":[{"x":156306,"y":141326},{"x":12,"y":3}],"type":"coastline"},{"arc":[{"x":156318,"y":141329},{"x":8,"y":-1}],"type":"area"},{"arc":[{"x":156326,"y":141328},{"x":12,"y":-2}],"type":"coastline"},{"arc":[{"x":156338,"y":141326},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":156346,"y":141327},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":156349,"y":141327},{"x":2,"y":0}],"type":"area"},{"arc":[{"x":156351,"y":141327},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":156355,"y":141327},{"x":11,"y":6}],"type":"area"},{"arc":[{"x":156366,"y":141333},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156368,"y":141333},{"x":14,"y":7}],"type":"area"},{"arc":[{"x":156382,"y":141340},{"x":8,"y":8}],"type":"coastline"},{"arc":[{"x":156390,"y":141348},{"x":5,"y":9}],"type":"area"},{"arc":[{"x":156395,"y":141357},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":156389,"y":141369},{"x":-2,"y":3}],"type":"area"},{"arc":[{"x":156387,"y":141372},{"x":-8,"y":7}],"type":"coastline"},{"arc":[{"x":156379,"y":141379},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":156377,"y":141383},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":156380,"y":141385},{"x":5,"y":2}],"type":"area"},{"arc":[{"x":156385,"y":141387},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":156390,"y":141395},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":156391,"y":141397},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":156392,"y":141404},{"x":12,"y":19}],"type":"area"},{"arc":[{"x":156404,"y":141423},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156408,"y":141424},{"x":16,"y":6}],"type":"area"},{"arc":[{"x":156424,"y":141430},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":156429,"y":141433},{"x":3,"y":4}],"type":"area"},{"arc":[{"x":156432,"y":141437},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":156438,"y":141445},{"x":1,"y":2}],"type":"area"},{"arc":[{"x":156439,"y":141447},{"x":4,"y":9}],"type":"coastline"},{"arc":[{"x":156443,"y":141456},{"x":87,"y":38}],"type":"area"},{"arc":[{"x":156530,"y":141494},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":156533,"y":141501},{"x":18,"y":15}],"type":"area"},{"arc":[{"x":156551,"y":141516},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":156558,"y":141516},{"x":2,"y":2}],"type":"area"},{"arc":[{"x":156560,"y":141518},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":156563,"y":141522},{"x":10,"y":3}],"type":"area"},{"arc":[{"x":156573,"y":141525},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":156576,"y":141525},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":156583,"y":141526},{"x":30,"y":11}],"type":"area"},{"arc":[{"x":156613,"y":141537},{"x":10,"y":-1}],"type":"coastline"},{"arc":[{"x":156623,"y":141536},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":156633,"y":141536},{"x":10,"y":1}],"type":"area"},{"arc":[{"x":156643,"y":141537},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":156644,"y":141537},{"x":5,"y":-1}],"type":"area"},{"arc":[{"x":156649,"y":141536},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":156655,"y":141535},{"x":6,"y":4}],"type":"area"},{"arc":[{"x":156661,"y":141539},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":156666,"y":141547},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":156670,"y":141551},{"x":14,"y":1}],"type":"area"},{"arc":[{"x":156684,"y":141552},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":156688,"y":141550},{"x":3,"y":4}],"type":"area"},{"arc":[{"x":156691,"y":141554},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":156693,"y":141557},{"x":6,"y":7}],"type":"area"},{"arc":[{"x":156699,"y":141564},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":156705,"y":141568},{"x":12,"y":3}],"type":"area"},{"arc":[{"x":156717,"y":141571},{"x":7,"y":-3}],"type":"coastline"},{"arc":[{"x":156724,"y":141568},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":156725,"y":141568},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":156726,"y":141568},{"x":-1,"y":3}],"type":"area"},{"arc":[{"x":156725,"y":141571},{"x":-10,"y":32}],"type":"coastline"},{"arc":[{"x":156715,"y":141603},{"x":-1,"y":2}],"type":"area"},{"arc":[{"x":156714,"y":141605},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":156714,"y":141609},{"x":7,"y":1}],"type":"area"},{"arc":[{"x":156721,"y":141610},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":156723,"y":141611},{"x":4,"y":1}],"type":"area"},{"arc":[{"x":156727,"y":141612},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":156738,"y":141616},{"x":8,"y":3}],"type":"area"},{"arc":[{"x":156746,"y":141619},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":156748,"y":141621},{"x":9,"y":4}],"type":"area"},{"arc":[{"x":156757,"y":141625},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":156762,"y":141626},{"x":8,"y":1}],"type":"area"},{"arc":[{"x":156770,"y":141627},{"x":12,"y":2}],"type":"coastline"},{"arc":[{"x":156782,"y":141629},{"x":5,"y":1}],"type":"area"},{"arc":[{"x":156787,"y":141630},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":156797,"y":141630},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":156805,"y":141627},{"x":1,"y":-1}],"type":"area"},{"arc":[{"x":156806,"y":141626},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":156814,"y":141620},{"x":9,"y":-9}],"type":"area"},{"arc":[{"x":156823,"y":141611},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":156829,"y":141604},{"x":25,"y":-39}],"type":"area"},{"arc":[{"x":156854,"y":141565},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":156858,"y":141557},{"x":4,"y":-8}],"type":"area"},{"arc":[{"x":156862,"y":141549},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":156864,"y":141541},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":156866,"y":141535},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":156868,"y":141530},{"x":6,"y":-5}],"type":"area"},{"arc":[{"x":156874,"y":141525},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":156878,"y":141521},{"x":9,"y":-10}],"type":"area"},{"arc":[{"x":156887,"y":141511},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":156890,"y":141508},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":156891,"y":141506},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":156893,"y":141506},{"x":18,"y":-1}],"type":"area"},{"arc":[{"x":156911,"y":141505},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":156916,"y":141506},{"x":7,"y":1}],"type":"area"},{"arc":[{"x":156923,"y":141507},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":156927,"y":141508},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":156935,"y":141508},{"x":18,"y":-4}],"type":"coastline"},{"arc":[{"x":156953,"y":141504},{"x":6,"y":-2}],"type":"area"},{"arc":[{"x":156959,"y":141502},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":156962,"y":141500},{"x":8,"y":-5}],"type":"area"},{"arc":[{"x":156970,"y":141495},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":156977,"y":141490},{"x":6,"y":-4}],"type":"area"},{"arc":[{"x":156983,"y":141486},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":156987,"y":141482},{"x":3,"y":-3}],"type":"area"},{"arc":[{"x":156990,"y":141479},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":156996,"y":141472},{"x":0,"y":-1}],"type":"area"},{"arc":[{"x":156996,"y":141471},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":157000,"y":141465},{"x":30,"y":-41}],"type":"area"},{"arc":[{"x":157030,"y":141424},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":157032,"y":141419},{"x":1,"y":-2}],"type":"area"},{"arc":[{"x":157033,"y":141417},{"x":4,"y":-10}],"type":"coastline"},{"arc":[{"x":157037,"y":141407},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":157039,"y":141403},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157040,"y":141399},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157041,"y":141395},{"x":2,"y":-4}],"type":"area"},{"arc":[{"x":157043,"y":141391},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":157044,"y":141385},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157045,"y":141382},{"x":3,"y":-13}],"type":"area"},{"arc":[{"x":157048,"y":141369},{"x":3,"y":-13}],"type":"coastline"},{"arc":[{"x":157051,"y":141356},{"x":1,"y":-3}],"type":"area"},{"arc":[{"x":157052,"y":141353},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157053,"y":141350},{"x":5,"y":-21}],"type":"area"},{"arc":[{"x":157058,"y":141329},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":157060,"y":141324},{"x":0,"y":-2}],"type":"area"},{"arc":[{"x":157060,"y":141322},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":157063,"y":141312},{"x":2,"y":-1}],"type":"admin"},{"arc":[{"x":157065,"y":141311},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":157069,"y":141313},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":157071,"y":141313},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":157074,"y":141314},{"x":12,"y":1}],"type":"admin"},{"arc":[{"x":157086,"y":141315},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":157088,"y":141315},{"x":7,"y":-10}],"type":"admin"},{"arc":[{"x":157095,"y":141305},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":157097,"y":141299},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":157098,"y":141296},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":157100,"y":141290},{"x":2,"y":-11}],"type":"admin"},{"arc":[{"x":157102,"y":141279},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":157106,"y":141273},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":157109,"y":141272},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":157113,"y":141271},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157114,"y":141271},{"x":56,"y":-36}],"type":"admin"},{"arc":[{"x":157170,"y":141235},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":157173,"y":141234},{"x":14,"y":-23}],"type":"admin"},{"arc":[{"x":157187,"y":141211},{"x":10,"y":-11}],"type":"coastline"},{"arc":[{"x":157197,"y":141200},{"x":5,"y":-18}],"type":"admin"},{"arc":[{"x":157202,"y":141182},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":157201,"y":141178},{"x":-1,"y":-10}],"type":"coastline"},{"arc":[{"x":157200,"y":141168},{"x":-7,"y":-33}],"type":"admin"},{"arc":[{"x":157193,"y":141135},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":157190,"y":141131},{"x":-2,"y":-7}],"type":"admin"},{"arc":[{"x":157188,"y":141124},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157188,"y":141120},{"x":3,"y":-25}],"type":"admin"},{"arc":[{"x":157191,"y":141095},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":157189,"y":141093},{"x":7,"y":-16}],"type":"admin"},{"arc":[{"x":157196,"y":141077},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157196,"y":141073},{"x":7,"y":-25}],"type":"admin"},{"arc":[{"x":157203,"y":141048},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":157205,"y":141045},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157206,"y":141045},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":157211,"y":141045},{"x":2,"y":0}],"type":"admin"},{"arc":[{"x":157213,"y":141045},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":157215,"y":141044},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":157216,"y":141042},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":157216,"y":141040},{"x":1,"y":-4}],"type":"admin"},{"arc":[{"x":157217,"y":141036},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":157219,"y":141031},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":157220,"y":141026},{"x":-1,"y":-5}],"type":"admin"},{"arc":[{"x":157219,"y":141021},{"x":-1,"y":-9}],"type":"coastline"},{"arc":[{"x":157218,"y":141012},{"x":17,"y":-12}],"type":"admin"},{"arc":[{"x":157235,"y":141000},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":157237,"y":141000},{"x":5,"y":-13}],"type":"coastline"},{"arc":[{"x":157242,"y":140987},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":157243,"y":140985},{"x":5,"y":-10}],"type":"coastline"},{"arc":[{"x":157248,"y":140975},{"x":8,"y":-18}],"type":"admin"},{"arc":[{"x":157256,"y":140957},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157257,"y":140954},{"x":8,"y":-20}],"type":"admin"},{"arc":[{"x":157265,"y":140934},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":157266,"y":140928},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157267,"y":140924},{"x":1,"y":-13}],"type":"admin"},{"arc":[{"x":157268,"y":140911},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":157275,"y":140907},{"x":4,"y":-3}],"type":"admin"},{"arc":[{"x":157279,"y":140904},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":157281,"y":140901},{"x":10,"y":-10}],"type":"admin"},{"arc":[{"x":157291,"y":140891},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":157291,"y":140886},{"x":9,"y":-10}],"type":"admin"},{"arc":[{"x":157300,"y":140876},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":157302,"y":140873},{"x":6,"y":-11}],"type":"admin"},{"arc":[{"x":157308,"y":140862},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157309,"y":140858},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":157310,"y":140855},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":157316,"y":140849},{"x":2,"y":-5}],"type":"admin"},{"arc":[{"x":157318,"y":140844},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":157320,"y":140840},{"x":5,"y":-8}],"type":"coastline"},{"arc":[{"x":157325,"y":140832},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":157328,"y":140829},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":157332,"y":140823},{"x":3,"y":-8}],"type":"admin"},{"arc":[{"x":157335,"y":140815},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157335,"y":140811},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":157335,"y":140809},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":157337,"y":140802},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":157339,"y":140795},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":157346,"y":140784},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":157347,"y":140782},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157347,"y":140778},{"x":4,"y":-10}],"type":"admin"},{"arc":[{"x":157351,"y":140768},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157352,"y":140764},{"x":3,"y":-8}],"type":"admin"},{"arc":[{"x":157355,"y":140756},{"x":-3,"y":-9}],"type":"coastline"},{"arc":[{"x":157352,"y":140747},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":157354,"y":140741},{"x":2,"y":-7}],"type":"coastline"},{"arc":[{"x":157356,"y":140734},{"x":5,"y":-9}],"type":"admin"},{"arc":[{"x":157361,"y":140725},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157361,"y":140721},{"x":-18,"y":-19}],"type":"admin"},{"arc":[{"x":157343,"y":140702},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":157338,"y":140701},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":157331,"y":140702},{"x":-7,"y":0}],"type":"admin"},{"arc":[{"x":157324,"y":140702},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":157320,"y":140701},{"x":-34,"y":-10},{"x":-11,"y":-40}],"type":"admin"},{"arc":[{"x":157275,"y":140651},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":157272,"y":140649},{"x":-8,"y":-21}],"type":"admin"},{"arc":[{"x":157264,"y":140628},{"x":0,"y":-10}],"type":"coastline"},{"arc":[{"x":157264,"y":140618},{"x":-9,"y":-9}],"type":"coastline"},{"arc":[{"x":157255,"y":140609},{"x":-1,"y":-50}],"type":"admin"},{"arc":[{"x":157254,"y":140559},{"x":1,"y":-6}],"type":"coastline"},{"arc":[{"x":157255,"y":140553},{"x":3,"y":-19}],"type":"admin"},{"arc":[{"x":157258,"y":140534},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":157259,"y":140527},{"x":2,"y":-7}],"type":"admin"},{"arc":[{"x":157261,"y":140520},{"x":5,"y":-4}],"type":"coastline"},{"arc":[{"x":157266,"y":140516},{"x":5,"y":-3}],"type":"admin"},{"arc":[{"x":157271,"y":140513},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":157275,"y":140511},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":157279,"y":140508},{"x":1,"y":0}],"type":"admin"},{"arc":[{"x":157280,"y":140508},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":157284,"y":140505},{"x":7,"y":-7}],"type":"admin"},{"arc":[{"x":157291,"y":140498},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":157295,"y":140495},{"x":7,"y":-8}],"type":"admin"},{"arc":[{"x":157302,"y":140487},{"x":3,"y":-10}],"type":"coastline"},{"arc":[{"x":157305,"y":140477},{"x":0,"y":-2}],"type":"admin"},{"arc":[{"x":157305,"y":140475},{"x":0,"y":-2}],"type":"coastline"},{"arc":[{"x":157305,"y":140473},{"x":3,"y":-8}],"type":"coastline"},{"arc":[{"x":157308,"y":140465},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157309,"y":140461},{"x":1,"y":-24}],"type":"admin"},{"arc":[{"x":157310,"y":140437},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":157311,"y":140432},{"x":-1,"y":-6}],"type":"admin"},{"arc":[{"x":157310,"y":140426},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":157307,"y":140423},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":157307,"y":140422},{"x":-2,"y":-22}],"type":"admin"},{"arc":[{"x":157305,"y":140400},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":157305,"y":140397},{"x":-2,"y":-1}],"type":"admin"},{"arc":[{"x":157303,"y":140396},{"x":-7,"y":1}],"type":"coastline"},{"arc":[{"x":157296,"y":140397},{"x":-1,"y":-9}],"type":"admin"},{"arc":[{"x":157295,"y":140388},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157295,"y":140384},{"x":0,"y":-8}],"type":"coastline"},{"arc":[{"x":157295,"y":140376},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":157298,"y":140375},{"x":9,"y":-6}],"type":"admin"},{"arc":[{"x":157307,"y":140369},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":157307,"y":140360},{"x":1,"y":-5}],"type":"admin"},{"arc":[{"x":157308,"y":140355},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157308,"y":140351},{"x":1,"y":-11}],"type":"coastline"},{"arc":[{"x":157309,"y":140340},{"x":0,"y":-5}],"type":"coastline"},{"arc":[{"x":157309,"y":140335},{"x":3,"y":-3}],"type":"admin"},{"arc":[{"x":157312,"y":140332},{"x":8,"y":-12}],"type":"coastline"},{"arc":[{"x":157320,"y":140320},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":157322,"y":140316},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":157323,"y":140313},{"x":1,"y":-12}],"type":"coastline"},{"arc":[{"x":157324,"y":140301},{"x":3,"y":-14}],"type":"admin"},{"arc":[{"x":157327,"y":140287},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":157328,"y":140285},{"x":25,"y":-58}],"type":"admin"},{"arc":[{"x":157353,"y":140227},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":157355,"y":140221},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":157358,"y":140216},{"x":1,"y":-3}],"type":"admin"},{"arc":[{"x":157359,"y":140213},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157360,"y":140210},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157360,"y":140206},{"x":1,"y":-2}],"type":"admin"},{"arc":[{"x":157361,"y":140204},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157362,"y":140201},{"x":-25,"y":-56}],"type":"admin"},{"arc":[{"x":157337,"y":140145},{"x":-3,"y":7}],"type":"coastline"},{"arc":[{"x":157334,"y":140152},{"x":-2,"y":1}],"type":"admin"},{"arc":[{"x":157332,"y":140153},{"x":-53,"y":-13}],"type":"coastline"},{"arc":[{"x":157279,"y":140140},{"x":1,"y":-3}],"type":"coastline"},{"arc":[{"x":157280,"y":140137},{"x":-2,"y":-3}],"type":"admin"},{"arc":[{"x":157278,"y":140134},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":157275,"y":140133},{"x":-7,"y":-2}],"type":"admin"},{"arc":[{"x":157268,"y":140131},{"x":-2,"y":-11}],"type":"coastline"},{"arc":[{"x":157266,"y":140120},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":157261,"y":140117},{"x":-10,"y":-6}],"type":"coastline"},{"arc":[{"x":157251,"y":140111},{"x":-43,"y":-27}],"type":"admin"},{"arc":[{"x":157208,"y":140084},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":157204,"y":140082},{"x":-7,"y":-4}],"type":"coastline"},{"arc":[{"x":157197,"y":140078},{"x":-1,"y":-2}],"type":"admin"},{"arc":[{"x":157196,"y":140076},{"x":-4,"y":-6}],"type":"coastline"},{"arc":[{"x":157192,"y":140070},{"x":-2,"y":-5}],"type":"admin"},{"arc":[{"x":157190,"y":140065},{"x":-1,"y":0}],"type":"area"},{"arc":[{"x":157189,"y":140065},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":157185,"y":140061},{"x":-24,"y":-19}],"type":"area"},{"arc":[{"x":157161,"y":140042},{"x":0,"y":-15}],"type":"coastline"},{"arc":[{"x":157161,"y":140027},{"x":-2,"y":-15}],"type":"coastline"},{"arc":[{"x":157159,"y":140012},{"x":2,"y":-6}],"type":"area"},{"arc":[{"x":157161,"y":140006},{"x":5,"y":-9}],"type":"coastline"},{"arc":[{"x":157166,"y":139997},{"x":4,"y":-8}],"type":"area"},{"arc":[{"x":157170,"y":139989},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":157176,"y":139977},{"x":50,"y":-57}],"type":"area"},{"arc":[{"x":157226,"y":139920},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":157231,"y":139913},{"x":4,"y":-9}],"type":"area"},{"arc":[{"x":157235,"y":139904},{"x":200,"y":147},{"x":32,"y":-19},{"x":-24,"y":30},{"x":31,"y":-18},{"x":404,"y":374},{"x":144,"y":117},{"x":31,"y":-15},{"x":118,"y":124},{"x":278,"y":211}],"type":"coastline"},{"arc":[{"x":158435,"y":140878},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":158413,"y":140917},{"x":-6,"y":10}],"type":"coastline"},{"arc":[{"x":158405,"y":140929},{"x":-5,"y":15}],"type":"coastline"},{"arc":[{"x":158395,"y":140950},{"x":-9,"y":15}],"type":"coastline"},{"arc":[{"x":158386,"y":140965},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":157176,"y":139977},{"x":-6,"y":12}],"type":"coastline"},{"arc":[{"x":157166,"y":139997},{"x":-5,"y":9}],"type":"coastline"},{"arc":[{"x":157159,"y":140012},{"x":2,"y":15}],"type":"coastline"},{"arc":[{"x":157161,"y":140027},{"x":0,"y":15}],"type":"coastline"},{"arc":[{"x":157185,"y":140061},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":157190,"y":140065},{"x":-92,"y":129},{"x":92,"y":245},{"x":-24,"y":69},{"x":-52,"y":-6},{"x":-26,"y":521},{"x":25,"y":3},{"x":0,"y":68},{"x":-25,"y":7},{"x":-25,"y":211}],"type":"admin"},{"arc":[{"x":157063,"y":141312},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":157060,"y":141324},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":157053,"y":141350},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157051,"y":141356},{"x":-3,"y":13}],"type":"coastline"},{"arc":[{"x":157045,"y":141382},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157044,"y":141385},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":157041,"y":141395},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157040,"y":141399},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157037,"y":141407},{"x":-4,"y":10}],"type":"coastline"},{"arc":[{"x":157032,"y":141419},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":157000,"y":141465},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":156996,"y":141472},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":156987,"y":141482},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":156977,"y":141490},{"x":-7,"y":5}],"type":"coastline"},{"arc":[{"x":156962,"y":141500},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":156953,"y":141504},{"x":-18,"y":4}],"type":"coastline"},{"arc":[{"x":156935,"y":141508},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":156927,"y":141508},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156916,"y":141506},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":156893,"y":141506},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156890,"y":141508},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":156878,"y":141521},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":156868,"y":141530},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":156866,"y":141535},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":156864,"y":141541},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":156858,"y":141557},{"x":-4,"y":8}],"type":"coastline"},{"arc":[{"x":156829,"y":141604},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":156814,"y":141620},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":156805,"y":141627},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":156797,"y":141630},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":156782,"y":141629},{"x":-12,"y":-2}],"type":"coastline"},{"arc":[{"x":156762,"y":141626},{"x":-5,"y":-1}],"type":"coastline"},{"arc":[{"x":156748,"y":141621},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":156738,"y":141616},{"x":-11,"y":-4}],"type":"coastline"},{"arc":[{"x":156723,"y":141611},{"x":-2,"y":-1}],"type":"coastline"},{"arc":[{"x":156714,"y":141609},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":156715,"y":141603},{"x":10,"y":-32}],"type":"coastline"},{"arc":[{"x":156726,"y":141568},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":156724,"y":141568},{"x":-7,"y":3}],"type":"coastline"},{"arc":[{"x":156705,"y":141568},{"x":-6,"y":-4}],"type":"coastline"},{"arc":[{"x":156693,"y":141557},{"x":-2,"y":-3}],"type":"coastline"},{"arc":[{"x":156688,"y":141550},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":156670,"y":141551},{"x":-4,"y":-4}],"type":"coastline"},{"arc":[{"x":156666,"y":141547},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":156655,"y":141535},{"x":-6,"y":1}],"type":"coastline"},{"arc":[{"x":156644,"y":141537},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":156633,"y":141536},{"x":-10,"y":0}],"type":"coastline"},{"arc":[{"x":156623,"y":141536},{"x":-10,"y":1}],"type":"coastline"},{"arc":[{"x":156583,"y":141526},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":156576,"y":141525},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":156563,"y":141522},{"x":-3,"y":-4}],"type":"coastline"},{"arc":[{"x":156558,"y":141516},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":156533,"y":141501},{"x":-3,"y":-7}],"type":"coastline"},{"arc":[{"x":156443,"y":141456},{"x":-4,"y":-9}],"type":"coastline"},{"arc":[{"x":156438,"y":141445},{"x":-6,"y":-8}],"type":"coastline"},{"arc":[{"x":156429,"y":141433},{"x":-5,"y":-3}],"type":"coastline"},{"arc":[{"x":156408,"y":141424},{"x":-4,"y":-1}],"type":"coastline"},{"arc":[{"x":156392,"y":141404},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":156390,"y":141395},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":156380,"y":141385},{"x":-3,"y":-2}],"type":"coastline"},{"arc":[{"x":156377,"y":141383},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":156379,"y":141379},{"x":8,"y":-7}],"type":"coastline"},{"arc":[{"x":156389,"y":141369},{"x":6,"y":-12}],"type":"coastline"},{"arc":[{"x":156390,"y":141348},{"x":-8,"y":-8}],"type":"coastline"},{"arc":[{"x":156368,"y":141333},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":156355,"y":141327},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":156349,"y":141327},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":156346,"y":141327},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":156338,"y":141326},{"x":-12,"y":2}],"type":"coastline"},{"arc":[{"x":156318,"y":141329},{"x":-12,"y":-3}],"type":"coastline"},{"arc":[{"x":156262,"y":141313},{"x":-2,"y":-9}],"type":"coastline"},{"arc":[{"x":156260,"y":141304},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":156260,"y":141301},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":156262,"y":141277},{"x":-2,"y":-5}],"type":"coastline"},{"arc":[{"x":156245,"y":141255},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":156246,"y":141251},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":156246,"y":141243},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":156245,"y":141239},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":156232,"y":141230},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":156220,"y":141233},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":156209,"y":141240},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":156204,"y":141239},{"x":-3,"y":-3}],"type":"coastline"},{"arc":[{"x":156200,"y":141232},{"x":-3,"y":-6}],"type":"coastline"},{"arc":[{"x":156187,"y":141216},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":156187,"y":141212},{"x":-5,"y":-8}],"type":"coastline"},{"arc":[{"x":156182,"y":141202},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":156199,"y":141187},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":156209,"y":141178},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":156221,"y":141171},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":156221,"y":141170},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":156223,"y":141169},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":156228,"y":141162},{"x":-1,"y":-7}],"type":"coastline"},{"arc":[{"x":156228,"y":141150},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":156247,"y":141128},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":156248,"y":141126},{"x":7,"y":-4}],"type":"coastline"},{"arc":[{"x":156257,"y":141104},{"x":-3,"y":-11}],"type":"coastline"},{"arc":[{"x":156254,"y":141093},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":156251,"y":141083},{"x":-1,"y":-4}],"type":"coastline"},{"arc":[{"x":156710,"y":139502},{"x":525,"y":402}],"type":"coastline"},{"arc":[{"x":157231,"y":139913},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":157550,"y":141437},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":157535,"y":141383},{"x":24,"y":-3}],"type":"coastline"},{"arc":[{"x":157563,"y":141380},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":157575,"y":141380},{"x":11,"y":-16}],"type":"coastline"},{"arc":[{"x":157588,"y":141354},{"x":-6,"y":-11}],"type":"coastline"},{"arc":[{"x":157582,"y":141335},{"x":-6,"y":-5}],"type":"coastline"},{"arc":[{"x":157567,"y":141330},{"x":1,"y":-5}],"type":"coastline"},{"arc":[{"x":157568,"y":141325},{"x":-3,"y":-26}],"type":"coastline"},{"arc":[{"x":157599,"y":141275},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":157612,"y":141274},{"x":8,"y":-1}],"type":"coastline"},{"arc":[{"x":157624,"y":141273},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":157623,"y":141260},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":157619,"y":141249},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":157620,"y":141245},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":157628,"y":141237},{"x":-5,"y":-13}],"type":"coastline"},{"arc":[{"x":157622,"y":141213},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":157625,"y":141212},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":157637,"y":141207},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":157655,"y":141197},{"x":8,"y":-6}],"type":"coastline"},{"arc":[{"x":157678,"y":141187},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":157681,"y":141188},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":157697,"y":141186},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":157700,"y":141186},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":157715,"y":141187},{"x":7,"y":9}],"type":"coastline"},{"arc":[{"x":157723,"y":141199},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":157731,"y":141200},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":157734,"y":141201},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":157751,"y":141221},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":157810,"y":141223},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":157844,"y":141238},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":157846,"y":141249},{"x":11,"y":1}],"type":"coastline"},{"arc":[{"x":157859,"y":141250},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":157884,"y":141250},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":157897,"y":141251},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":157902,"y":141251},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":157908,"y":141242},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":157908,"y":141219},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":157908,"y":141212},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":157919,"y":141211},{"x":1,"y":-17}],"type":"coastline"},{"arc":[{"x":157921,"y":141181},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":157921,"y":141172},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":157919,"y":141160},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":157920,"y":141152},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":157921,"y":141148},{"x":-2,"y":-8}],"type":"coastline"},{"arc":[{"x":157919,"y":141135},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":157919,"y":141121},{"x":-4,"y":-8}],"type":"coastline"},{"arc":[{"x":157915,"y":141104},{"x":0,"y":-7}],"type":"coastline"},{"arc":[{"x":157915,"y":141096},{"x":20,"y":0}],"type":"coastline"},{"arc":[{"x":157943,"y":141096},{"x":13,"y":-1}],"type":"coastline"},{"arc":[{"x":157958,"y":141097},{"x":1,"y":21}],"type":"coastline"},{"arc":[{"x":157959,"y":141118},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":157960,"y":141136},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":157938,"y":141148},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":157933,"y":141153},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":157932,"y":141170},{"x":-1,"y":8}],"type":"coastline"},{"arc":[{"x":157932,"y":141209},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":157941,"y":141207},{"x":10,"y":-5}],"type":"coastline"},{"arc":[{"x":157966,"y":141201},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":157972,"y":141203},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":157989,"y":141203},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":158001,"y":141191},{"x":0,"y":-4}],"type":"coastline"},{"arc":[{"x":158001,"y":141186},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":158001,"y":141183},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":157999,"y":141180},{"x":-1,"y":-5}],"type":"coastline"},{"arc":[{"x":157998,"y":141175},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":157996,"y":141170},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":157992,"y":141157},{"x":-1,"y":-3}],"type":"coastline"},{"arc":[{"x":157991,"y":141153},{"x":-1,"y":-2}],"type":"coastline"},{"arc":[{"x":157990,"y":141149},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":157993,"y":141148},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":157997,"y":141147},{"x":18,"y":-1}],"type":"coastline"},{"arc":[{"x":158038,"y":141145},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":158059,"y":141157},{"x":-8,"y":6}],"type":"coastline"},{"arc":[{"x":158051,"y":141163},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":158052,"y":141175},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":158056,"y":141188},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":158056,"y":141190},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":158057,"y":141194},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":158056,"y":141200},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":158057,"y":141205},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":158058,"y":141214},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":158059,"y":141216},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":158088,"y":141231},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":158103,"y":141237},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":158110,"y":141240},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":158118,"y":141238},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":158119,"y":141234},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":158129,"y":141228},{"x":12,"y":-4}],"type":"coastline"},{"arc":[{"x":158146,"y":141222},{"x":8,"y":-3}],"type":"coastline"},{"arc":[{"x":158157,"y":141219},{"x":6,"y":0}],"type":"coastline"},{"arc":[{"x":157360,"y":140210},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157358,"y":140216},{"x":-3,"y":5}],"type":"coastline"},{"arc":[{"x":157355,"y":140221},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":157328,"y":140285},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":157324,"y":140301},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":157322,"y":140316},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":157320,"y":140320},{"x":-8,"y":12}],"type":"coastline"},{"arc":[{"x":157309,"y":140335},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":157309,"y":140340},{"x":-1,"y":11}],"type":"coastline"},{"arc":[{"x":157308,"y":140351},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157307,"y":140360},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":157298,"y":140375},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":157295,"y":140376},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":157295,"y":140384},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157296,"y":140397},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":157305,"y":140397},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":157307,"y":140422},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":157307,"y":140423},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":157311,"y":140432},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":157309,"y":140461},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157308,"y":140465},{"x":-3,"y":8}],"type":"coastline"},{"arc":[{"x":157305,"y":140473},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":157305,"y":140477},{"x":-3,"y":10}],"type":"coastline"},{"arc":[{"x":157295,"y":140495},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":157284,"y":140505},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":157279,"y":140508},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":157275,"y":140511},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":157266,"y":140516},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":157259,"y":140527},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":157255,"y":140553},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":157255,"y":140609},{"x":9,"y":9}],"type":"coastline"},{"arc":[{"x":157264,"y":140618},{"x":0,"y":10}],"type":"coastline"},{"arc":[{"x":157272,"y":140649},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":157320,"y":140701},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":157331,"y":140702},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":157338,"y":140701},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":157361,"y":140721},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157356,"y":140734},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":157354,"y":140741},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":157352,"y":140747},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":157352,"y":140764},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157347,"y":140778},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157346,"y":140784},{"x":-7,"y":11}],"type":"coastline"},{"arc":[{"x":157339,"y":140795},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":157337,"y":140802},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":157335,"y":140811},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157332,"y":140823},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":157325,"y":140832},{"x":-5,"y":8}],"type":"coastline"},{"arc":[{"x":157320,"y":140840},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":157316,"y":140849},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":157309,"y":140858},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157302,"y":140873},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":157291,"y":140886},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":157281,"y":140901},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":157275,"y":140907},{"x":-7,"y":4}],"type":"coastline"},{"arc":[{"x":157267,"y":140924},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":157266,"y":140928},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":157257,"y":140954},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157248,"y":140975},{"x":-5,"y":10}],"type":"coastline"},{"arc":[{"x":157242,"y":140987},{"x":-5,"y":13}],"type":"coastline"},{"arc":[{"x":157237,"y":141000},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":157218,"y":141012},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":157220,"y":141026},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":157219,"y":141031},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":157216,"y":141040},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":157216,"y":141042},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":157215,"y":141044},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":157211,"y":141045},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":157206,"y":141045},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157205,"y":141045},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":157196,"y":141073},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157189,"y":141093},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":157188,"y":141120},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":157190,"y":141131},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":157200,"y":141168},{"x":1,"y":10}],"type":"coastline"},{"arc":[{"x":157201,"y":141178},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":157197,"y":141200},{"x":-10,"y":11}],"type":"coastline"},{"arc":[{"x":157173,"y":141234},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":157114,"y":141271},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":157113,"y":141271},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":157109,"y":141272},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":157106,"y":141273},{"x":-4,"y":6}],"type":"coastline"},{"arc":[{"x":157100,"y":141290},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":157097,"y":141299},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":157088,"y":141315},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":157074,"y":141314},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":157069,"y":141313},{"x":-4,"y":-2}],"type":"coastline"},{"arc":[{"x":157192,"y":140070},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":157197,"y":140078},{"x":7,"y":4}],"type":"coastline"},{"arc":[{"x":157204,"y":140082},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":157251,"y":140111},{"x":10,"y":6}],"type":"coastline"},{"arc":[{"x":157261,"y":140117},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":157266,"y":140120},{"x":2,"y":11}],"type":"coastline"},{"arc":[{"x":157275,"y":140133},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":157280,"y":140137},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157279,"y":140140},{"x":53,"y":13}],"type":"coastline"},{"arc":[{"x":157334,"y":140152},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":157362,"y":140201},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":157360,"y":140206},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":159796,"y":142188},{"x":102,"y":72}],"type":"area"},{"arc":[{"x":160977,"y":143538},{"x":12,"y":36},{"x":106,"y":67},{"x":84,"y":-82},{"x":-54,"y":95},{"x":25,"y":43},{"x":-27,"y":25},{"x":-28,"y":-21},{"x":-112,"y":12},{"x":-10,"y":23},{"x":-25,"y":-28},{"x":-32,"y":10},{"x":-89,"y":115}],"type":"area"},{"arc":[{"x":159351,"y":141487},{"x":241,"y":199},{"x":87,"y":54},{"x":28,"y":-8},{"x":-13,"y":18},{"x":30,"y":-13},{"x":24,"y":49},{"x":388,"y":231}],"type":"coastline"},{"arc":[{"x":164280,"y":143916},{"x":-71,"y":-36},{"x":-41,"y":17},{"x":-185,"y":-14},{"x":-150,"y":-87},{"x":-193,"y":29},{"x":-43,"y":-20},{"x":-3,"y":43},{"x":-94,"y":32},{"x":-9,"y":33},{"x":-92,"y":-108},{"x":-45,"y":-4},{"x":-80,"y":-171}],"type":"admin"},{"arc":[{"x":163459,"y":143040},{"x":224,"y":21},{"x":77,"y":-51},{"x":68,"y":48},{"x":81,"y":-9},{"x":29,"y":-25},{"x":-9,"y":-32},{"x":22,"y":10},{"x":-25,"y":-16},{"x":14,"y":-16},{"x":20,"y":38},{"x":35,"y":-62},{"x":-25,"y":-49},{"x":41,"y":15},{"x":-37,"y":-32},{"x":66,"y":-1},{"x":36,"y":-102},{"x":59,"y":5},{"x":-31,"y":-19},{"x":70,"y":22},{"x":15,"y":-17},{"x":111,"y":46},{"x":-3,"y":-65},{"x":32,"y":-20},{"x":28,"y":44},{"x":83,"y":-60},{"x":4,"y":-37},{"x":42,"y":18},{"x":60,"y":-12},{"x":-22,"y":-34},{"x":47,"y":-12},{"x":-13,"y":-29},{"x":65,"y":-51},{"x":8,"y":17},{"x":54,"y":-12},{"x":-20,"y":-31},{"x":47,"y":33},{"x":199,"y":-45},{"x":73,"y":56},{"x":-18,"y":48},{"x":23,"y":-37},{"x":17,"y":29},{"x":6,"y":-61},{"x":67,"y":26},{"x":17,"y":37},{"x":32,"y":-16},{"x":32,"y":39},{"x":46,"y":-39},{"x":24,"y":38},{"x":147,"y":-50},{"x":121,"y":20},{"x":19,"y":26},{"x":87,"y":-40},{"x":25,"y":22},{"x":127,"y":-101},{"x":44,"y":-83},{"x":8,"y":-98},{"x":-15,"y":16},{"x":-56,"y":-18},{"x":55,"y":16},{"x":15,"y":-15},{"x":-115,"y":-39},{"x":-15,"y":38},{"x":30,"y":19},{"x":-32,"y":-19},{"x":20,"y":-45},{"x":-56,"y":-109},{"x":61,"y":5},{"x":-39,"y":-88},{"x":120,"y":-78},{"x":232,"y":75},{"x":61,"y":-41},{"x":77,"y":43},{"x":163,"y":-11},{"x":29,"y":52},{"x":43,"y":15},{"x":58,"y":-49},{"x":30,"y":50},{"x":26,"y":-34},{"x":38,"y":6},{"x":58,"y":98},{"x":43,"y":-7},{"x":1,"y":56},{"x":58,"y":24}],"type":"coastline"},{"arc":[{"x":166705,"y":143287},{"x":-12,"y":89},{"x":100,"y":125},{"x":-18,"y":87},{"x":-91,"y":-3},{"x":-41,"y":51},{"x":-82,"y":-76},{"x":-29,"y":34},{"x":-104,"y":-3}],"type":"admin"},{"arc":[{"x":161259,"y":142584},{"x":486,"y":205},{"x":479,"y":143}],"type":"coastline"},{"arc":[{"x":167058,"y":146296},{"x":-44,"y":-82},{"x":-86,"y":-17},{"x":-79,"y":-60},{"x":-105,"y":-13},{"x":-55,"y":31},{"x":7,"y":-17},{"x":-21,"y":15},{"x":-21,"y":-39},{"x":-20,"y":7},{"x":-17,"y":-67},{"x":-67,"y":-22},{"x":36,"y":-73},{"x":-59,"y":-106},{"x":-18,"y":-154},{"x":-28,"y":69},{"x":-42,"y":-37},{"x":-14,"y":51},{"x":-32,"y":2},{"x":-22,"y":-65},{"x":-43,"y":7},{"x":-36,"y":-31},{"x":15,"y":-69},{"x":34,"y":-12},{"x":-45,"y":-5},{"x":-59,"y":-63},{"x":6,"y":-50},{"x":68,"y":-29},{"x":8,"y":-37},{"x":127,"y":-86},{"x":-13,"y":-47},{"x":34,"y":3},{"x":49,"y":-44},{"x":-56,"y":-15},{"x":2,"y":-106},{"x":65,"y":-9},{"x":-3,"y":-25},{"x":42,"y":-9},{"x":-72,"y":-16},{"x":64,"y":-84},{"x":57,"y":17},{"x":39,"y":-26},{"x":-2,"y":-37},{"x":48,"y":14},{"x":-44,"y":-84},{"x":160,"y":111},{"x":64,"y":104},{"x":32,"y":-66},{"x":-41,"y":-129},{"x":-25,"y":-15},{"x":-13,"y":30},{"x":-76,"y":-64},{"x":60,"y":-18},{"x":-41,"y":-37},{"x":55,"y":-5},{"x":-4,"y":-48},{"x":37,"y":12},{"x":-38,"y":-65},{"x":51,"y":-34},{"x":-54,"y":-10},{"x":-77,"y":110},{"x":-37,"y":-17},{"x":1,"y":-134},{"x":91,"y":-35},{"x":-125,"y":-100},{"x":2,"y":104},{"x":-66,"y":-9},{"x":20,"y":80},{"x":-59,"y":1},{"x":-44,"y":70},{"x":-49,"y":-17},{"x":-48,"y":-29},{"x":90,"y":-13},{"x":-30,"y":-82},{"x":-42,"y":-12},{"x":42,"y":-45},{"x":-2,"y":-48},{"x":-112,"y":68},{"x":-40,"y":-73},{"x":-74,"y":-14},{"x":-17,"y":-42},{"x":-21,"y":21},{"x":-170,"y":-138}],"type":"coastline"},{"arc":[{"x":167642,"y":145092},{"x":-14,"y":18},{"x":61,"y":60},{"x":12,"y":53},{"x":80,"y":54},{"x":-3,"y":90},{"x":-56,"y":16},{"x":-65,"y":-90},{"x":-70,"y":126},{"x":-69,"y":-60},{"x":-64,"y":-9},{"x":-36,"y":36},{"x":-43,"y":-17},{"x":-61,"y":56},{"x":24,"y":55},{"x":-75,"y":7},{"x":-31,"y":-20},{"x":-22,"y":19},{"x":63,"y":72},{"x":-186,"y":23},{"x":19,"y":186},{"x":-34,"y":113},{"x":68,"y":58},{"x":82,"y":19},{"x":1,"y":67},{"x":-16,"y":50},{"x":-46,"y":15},{"x":-35,"y":121},{"x":-87,"y":17},{"x":19,"y":69}],"type":"area"},{"arc":[{"x":168355,"y":148193},{"x":-9,"y":-17},{"x":44,"y":30},{"x":-35,"y":-13}],"type":"coastline"},{"arc":[{"x":168641,"y":147906},{"x":-65,"y":68},{"x":-50,"y":-32},{"x":-68,"y":27},{"x":-11,"y":43},{"x":7,"y":-41},{"x":-55,"y":36},{"x":-17,"y":55},{"x":67,"y":125},{"x":-59,"y":10},{"x":-42,"y":-51},{"x":-62,"y":-6},{"x":-17,"y":-73},{"x":-44,"y":-22},{"x":-29,"y":67},{"x":38,"y":65},{"x":-55,"y":25},{"x":-84,"y":-63},{"x":-59,"y":29},{"x":-99,"y":-137},{"x":-91,"y":-12},{"x":-36,"y":-31},{"x":-59,"y":-84},{"x":49,"y":6},{"x":29,"y":-52},{"x":23,"y":9},{"x":3,"y":-24},{"x":-26,"y":2},{"x":33,"y":-31},{"x":-60,"y":14},{"x":-15,"y":38},{"x":7,"y":-75},{"x":-34,"y":12},{"x":5,"y":60},{"x":-30,"y":17},{"x":-28,"y":-31},{"x":19,"y":-54},{"x":-30,"y":70},{"x":-48,"y":-11},{"x":-13,"y":-26},{"x":14,"y":25},{"x":26,"y":-11},{"x":6,"y":-42},{"x":-47,"y":-78},{"x":42,"y":9},{"x":-13,"y":-51},{"x":27,"y":-22},{"x":-45,"y":-15},{"x":11,"y":-47},{"x":-21,"y":68},{"x":-1,"y":-37},{"x":24,"y":-78},{"x":52,"y":51},{"x":29,"y":-14},{"x":-28,"y":-15},{"x":32,"y":-34},{"x":-55,"y":-85},{"x":40,"y":-46},{"x":-13,"y":-19},{"x":-11,"y":18},{"x":21,"y":-40},{"x":-24,"y":-18},{"x":27,"y":-93},{"x":-18,"y":-53},{"x":65,"y":-71},{"x":-52,"y":-24},{"x":-23,"y":33},{"x":12,"y":-74},{"x":-34,"y":-18},{"x":68,"y":21},{"x":7,"y":-37},{"x":50,"y":-25},{"x":-16,"y":-20},{"x":-68,"y":48},{"x":-51,"y":-48},{"x":-14,"y":46},{"x":12,"y":-102},{"x":34,"y":-8},{"x":-100,"y":-136},{"x":-31,"y":-148},{"x":-100,"y":-97},{"x":-24,"y":-88},{"x":-189,"y":-45},{"x":-21,"y":-40},{"x":-73,"y":41},{"x":-35,"y":-78},{"x":-51,"y":-4},{"x":-18,"y":-31}],"type":"coastline"},{"arc":[{"x":152859,"y":135625},{"x":-20,"y":3},{"x":18,"y":-23},{"x":2,"y":20}],"type":"coastline"},{"arc":[{"x":152582,"y":137886},{"x":-1,"y":107},{"x":-66,"y":12},{"x":-5,"y":69},{"x":-44,"y":3},{"x":-6,"y":-62},{"x":-55,"y":-37},{"x":8,"y":34},{"x":-66,"y":13},{"x":-35,"y":41},{"x":-9,"y":73},{"x":-74,"y":-52},{"x":-3,"y":-49},{"x":-35,"y":-33},{"x":-56,"y":32},{"x":-160,"y":20},{"x":-84,"y":74},{"x":3,"y":35},{"x":-46,"y":4},{"x":-61,"y":203},{"x":106,"y":53},{"x":-17,"y":68},{"x":61,"y":121},{"x":-196,"y":78},{"x":-52,"y":202},{"x":173,"y":179},{"x":-16,"y":236},{"x":-77,"y":186},{"x":44,"y":66}],"type":"admin"},{"arc":[{"x":151813,"y":139562},{"x":-154,"y":103},{"x":-125,"y":43},{"x":-61,"y":121}],"type":"area"},{"arc":[{"x":151473,"y":139829},{"x":-80,"y":-92},{"x":-103,"y":66},{"x":-62,"y":-39},{"x":-63,"y":49},{"x":-105,"y":-80},{"x":-211,"y":89},{"x":-72,"y":-27},{"x":-76,"y":7},{"x":-61,"y":105},{"x":-114,"y":-42},{"x":-108,"y":32},{"x":-22,"y":-115},{"x":-125,"y":144},{"x":-11,"y":-69}],"type":"area"},{"arc":[{"x":150260,"y":139857},{"x":29,"y":-149},{"x":61,"y":-76},{"x":58,"y":10},{"x":46,"y":-40},{"x":37,"y":-133},{"x":129,"y":-165},{"x":-9,"y":-73},{"x":54,"y":-126},{"x":-64,"y":-305},{"x":-69,"y":-65},{"x":-98,"y":-20},{"x":-71,"y":-169}],"type":"admin"},{"arc":[{"x":150363,"y":138546},{"x":130,"y":3},{"x":48,"y":-26},{"x":108,"y":51},{"x":7,"y":-140},{"x":61,"y":2},{"x":16,"y":-56},{"x":79,"y":0},{"x":22,"y":-47},{"x":-18,"y":-103},{"x":120,"y":-132},{"x":-23,"y":-161},{"x":73,"y":-38},{"x":70,"y":-334},{"x":93,"y":-96},{"x":-37,"y":-100},{"x":-41,"y":-12},{"x":-19,"y":-39},{"x":-46,"y":-6},{"x":-31,"y":-49},{"x":-78,"y":-21},{"x":4,"y":-21},{"x":38,"y":-41},{"x":14,"y":23},{"x":131,"y":26},{"x":65,"y":-121},{"x":-23,"y":-9},{"x":26,"y":-42},{"x":-27,"y":-47},{"x":45,"y":-2},{"x":25,"y":-54},{"x":59,"y":9},{"x":29,"y":-30},{"x":-68,"y":-120},{"x":27,"y":-74},{"x":-34,"y":-16},{"x":-23,"y":35},{"x":-17,"y":-58}],"type":"area"},{"arc":[{"x":151168,"y":136700},{"x":7,"y":-183},{"x":139,"y":-98},{"x":-36,"y":-74},{"x":49,"y":-247},{"x":56,"y":4},{"x":8,"y":-42},{"x":34,"y":-9},{"x":39,"y":-59},{"x":-14,"y":-64},{"x":57,"y":12},{"x":58,"y":-100},{"x":56,"y":1},{"x":-16,"y":-155},{"x":-187,"y":-10},{"x":-31,"y":-71},{"x":-67,"y":-18},{"x":-31,"y":-38},{"x":-64,"y":-116},{"x":31,"y":4},{"x":6,"y":-25},{"x":-61,"y":-24},{"x":132,"y":-57},{"x":112,"y":-114},{"x":-35,"y":-15},{"x":-18,"y":-48},{"x":-81,"y":-25},{"x":-53,"y":14},{"x":-33,"y":-22},{"x":-85,"y":22},{"x":-30,"y":43},{"x":-63,"y":-128},{"x":27,"y":-127},{"x":36,"y":15},{"x":52,"y":-163},{"x":72,"y":-56}],"type":"admin"},{"arc":[{"x":151234,"y":134727},{"x":86,"y":97},{"x":57,"y":122},{"x":308,"y":258},{"x":131,"y":-10},{"x":-55,"y":16},{"x":67,"y":5},{"x":-12,"y":-34},{"x":69,"y":83},{"x":39,"y":-13},{"x":91,"y":49},{"x":154,"y":16},{"x":8,"y":46},{"x":29,"y":-23},{"x":153,"y":73},{"x":90,"y":1},{"x":29,"y":-30},{"x":30,"y":57},{"x":87,"y":39},{"x":-4,"y":39},{"x":62,"y":79},{"x":100,"y":-1},{"x":44,"y":61},{"x":102,"y":3},{"x":-11,"y":18},{"x":24,"y":-4},{"x":15,"y":30},{"x":-30,"y":-21},{"x":-1,"y":38},{"x":13,"y":16},{"x":29,"y":-19},{"x":-4,"y":65},{"x":45,"y":61},{"x":223,"y":215},{"x":59,"y":22},{"x":35,"y":-51},{"x":157,"y":100}],"type":"coastline"},{"arc":[{"x":153453,"y":136130},{"x":-125,"y":264},{"x":-64,"y":-1},{"x":8,"y":50},{"x":64,"y":-12},{"x":106,"y":102},{"x":-111,"y":-9},{"x":2,"y":100},{"x":44,"y":38},{"x":-38,"y":58},{"x":-73,"y":53},{"x":-173,"y":43},{"x":-74,"y":99},{"x":-63,"y":19},{"x":-41,"y":144},{"x":-50,"y":25},{"x":-25,"y":-12},{"x":-33,"y":44},{"x":-13,"y":342},{"x":-28,"y":44},{"x":27,"y":113},{"x":-32,"y":0},{"x":69,"y":88},{"x":-136,"y":15},{"x":-81,"y":-19},{"x":-31,"y":168}],"type":"area"},{"arc":[{"x":147927,"y":135529},{"x":-24,"y":1},{"x":56,"y":-35},{"x":-32,"y":34}],"type":"coastline"},{"arc":[{"x":147440,"y":136650},{"x":-117,"y":-15},{"x":-241,"y":-150},{"x":-47,"y":20},{"x":-42,"y":121},{"x":-38,"y":22},{"x":-132,"y":11},{"x":-179,"y":89},{"x":-121,"y":0},{"x":-84,"y":73},{"x":-255,"y":102},{"x":-46,"y":7},{"x":-156,"y":-115},{"x":-87,"y":45},{"x":-119,"y":-8},{"x":-11,"y":-31},{"x":78,"y":-48},{"x":18,"y":-122},{"x":-30,"y":-58},{"x":65,"y":-62},{"x":7,"y":-183},{"x":83,"y":-78},{"x":-112,"y":-7},{"x":-72,"y":-52},{"x":-108,"y":26},{"x":-53,"y":-52},{"x":-134,"y":42},{"x":-85,"y":-37},{"x":-98,"y":14},{"x":-21,"y":-17}],"type":"admin"},{"arc":[{"x":145303,"y":136187},{"x":110,"y":-128},{"x":39,"y":-107},{"x":-76,"y":-63},{"x":-51,"y":3},{"x":-54,"y":-79},{"x":24,"y":-73},{"x":47,"y":-17},{"x":33,"y":-125},{"x":-55,"y":-23},{"x":26,"y":-57},{"x":-35,"y":-149}],"type":"admin"},{"arc":[{"x":145311,"y":135369},{"x":165,"y":12},{"x":39,"y":-39},{"x":68,"y":14},{"x":95,"y":-25},{"x":133,"y":71},{"x":104,"y":-3},{"x":128,"y":-44},{"x":-19,"y":-163},{"x":118,"y":-49},{"x":176,"y":49},{"x":88,"y":-36},{"x":196,"y":34},{"x":181,"y":-52},{"x":80,"y":-61},{"x":188,"y":160},{"x":36,"y":-43},{"x":99,"y":-5},{"x":81,"y":40},{"x":119,"y":-23},{"x":48,"y":21},{"x":52,"y":-25},{"x":73,"y":20},{"x":16,"y":-21},{"x":114,"y":35},{"x":95,"y":-10},{"x":65,"y":-79},{"x":-72,"y":-198},{"x":6,"y":-177},{"x":67,"y":-43}],"type":"admin"},{"arc":[{"x":147850,"y":134729},{"x":69,"y":35},{"x":-12,"y":91},{"x":-27,"y":-4},{"x":8,"y":49},{"x":75,"y":38},{"x":-17,"y":-40},{"x":142,"y":131},{"x":12,"y":78},{"x":79,"y":44},{"x":-24,"y":43},{"x":50,"y":9},{"x":26,"y":55},{"x":44,"y":11},{"x":-7,"y":40},{"x":-103,"y":53},{"x":-41,"y":62},{"x":-160,"y":61},{"x":137,"y":-141},{"x":-15,"y":-21},{"x":-51,"y":8},{"x":-43,"y":52},{"x":-54,"y":5},{"x":-130,"y":104},{"x":-102,"y":-26},{"x":-81,"y":50},{"x":-32,"y":-31},{"x":-55,"y":69},{"x":-78,"y":-38},{"x":-18,"y":37},{"x":-85,"y":0},{"x":9,"y":-47},{"x":35,"y":-16},{"x":-24,"y":-54},{"x":-89,"y":-67},{"x":-65,"y":-10},{"x":-59,"y":110},{"x":-47,"y":17},{"x":-20,"y":43},{"x":-90,"y":39},{"x":-45,"y":-26},{"x":-22,"y":17},{"x":-13,"y":153},{"x":26,"y":-1},{"x":-22,"y":1},{"x":34,"y":40},{"x":9,"y":-42},{"x":5,"y":50},{"x":-27,"y":14},{"x":25,"y":72},{"x":40,"y":-49},{"x":-7,"y":-56},{"x":6,"y":-46},{"x":-3,"y":42},{"x":10,"y":7},{"x":42,"y":-2},{"x":1,"y":43},{"x":-28,"y":1},{"x":-7,"y":34},{"x":26,"y":43},{"x":134,"y":0},{"x":19,"y":-112},{"x":2,"y":143},{"x":64,"y":92},{"x":57,"y":-50},{"x":101,"y":-13},{"x":30,"y":16},{"x":48,"y":-32},{"x":96,"y":143},{"x":75,"y":-14},{"x":112,"y":79},{"x":49,"y":-27},{"x":76,"y":5},{"x":45,"y":-112},{"x":40,"y":97},{"x":54,"y":50},{"x":130,"y":16},{"x":106,"y":-32}],"type":"coastline"},{"arc":[{"x":148295,"y":136112},{"x":8,"y":136},{"x":-23,"y":27},{"x":-156,"y":46},{"x":-183,"y":145},{"x":-116,"y":12},{"x":-69,"y":-18},{"x":-150,"y":173},{"x":-79,"y":4},{"x":-25,"y":-39},{"x":-62,"y":52}],"type":"admin"},{"arc":[{"x":144966,"y":132338},{"x":-17,"y":-11},{"x":71,"y":43},{"x":-54,"y":-32}],"type":"coastline"},{"arc":[{"x":145845,"y":133184},{"x":-41,"y":-20},{"x":-30,"y":61},{"x":-79,"y":30},{"x":-134,"y":229},{"x":-103,"y":74},{"x":-68,"y":-31},{"x":-27,"y":-57},{"x":-140,"y":-111},{"x":-120,"y":97},{"x":-68,"y":-6},{"x":-67,"y":46},{"x":-91,"y":-31},{"x":-106,"y":25},{"x":-31,"y":-16},{"x":-64,"y":-189},{"x":135,"y":-160},{"x":13,"y":-64},{"x":-36,"y":-71},{"x":-88,"y":40},{"x":-69,"y":120},{"x":-121,"y":-18},{"x":-48,"y":54},{"x":-67,"y":-1},{"x":-70,"y":38},{"x":-39,"y":106},{"x":-90,"y":121},{"x":12,"y":84},{"x":-126,"y":105},{"x":-48,"y":13},{"x":-130,"y":-26},{"x":-85,"y":-49}],"type":"admin"},{"arc":[{"x":143819,"y":133577},{"x":-12,"y":-36},{"x":48,"y":-110},{"x":-30,"y":-28},{"x":33,"y":-100},{"x":-17,"y":-135},{"x":-51,"y":-30},{"x":-188,"y":-28},{"x":-35,"y":22},{"x":-79,"y":-27},{"x":16,"y":-172}],"type":"admin"},{"arc":[{"x":143504,"y":132933},{"x":61,"y":-56},{"x":27,"y":-122},{"x":46,"y":-38},{"x":84,"y":-20},{"x":16,"y":-45},{"x":60,"y":-35},{"x":106,"y":-280},{"x":3,"y":-33},{"x":-58,"y":-25},{"x":-4,"y":-115},{"x":-60,"y":-40},{"x":19,"y":-198},{"x":64,"y":-116},{"x":41,"y":-1},{"x":-10,"y":-100},{"x":-94,"y":-48},{"x":-2,"y":-22},{"x":69,"y":-117},{"x":12,"y":-112},{"x":99,"y":-26},{"x":28,"y":-92},{"x":-65,"y":-39},{"x":4,"y":-77},{"x":-95,"y":-59},{"x":34,"y":-53},{"x":-16,"y":-58},{"x":40,"y":-59},{"x":73,"y":-5},{"x":69,"y":-99},{"x":39,"y":6},{"x":15,"y":103},{"x":86,"y":103},{"x":-1,"y":119},{"x":52,"y":17},{"x":-9,"y":96},{"x":70,"y":160},{"x":112,"y":-66},{"x":48,"y":19},{"x":29,"y":61},{"x":172,"y":-34}],"type":"admin"},{"arc":[{"x":144668,"y":131427},{"x":23,"y":94},{"x":168,"y":84},{"x":-49,"y":37},{"x":18,"y":62},{"x":-41,"y":7},{"x":-10,"y":92},{"x":7,"y":107},{"x":85,"y":93},{"x":-60,"y":9},{"x":0,"y":61},{"x":-83,"y":66},{"x":23,"y":57},{"x":91,"y":14},{"x":-6,"y":64},{"x":43,"y":35},{"x":-26,"y":51},{"x":28,"y":32},{"x":51,"y":25},{"x":18,"y":-72},{"x":-1,"y":22},{"x":37,"y":5},{"x":6,"y":50},{"x":18,"y":-47},{"x":-18,"y":47},{"x":28,"y":24},{"x":96,"y":52},{"x":50,"y":-4},{"x":-51,"y":8},{"x":225,"y":17},{"x":27,"y":47},{"x":-44,"y":41},{"x":3,"y":33},{"x":63,"y":23},{"x":42,"y":-63},{"x":-25,"y":-26},{"x":11,"y":-57},{"x":-58,"y":-26},{"x":47,"y":-24},{"x":-11,"y":-74},{"x":-26,"y":-29},{"x":-96,"y":-4},{"x":-19,"y":-47},{"x":-8,"y":24},{"x":-56,"y":-158},{"x":20,"y":-20},{"x":28,"y":21},{"x":90,"y":-21},{"x":58,"y":25},{"x":70,"y":-17},{"x":24,"y":-50},{"x":-15,"y":-45},{"x":36,"y":-51},{"x":-22,"y":-90},{"x":46,"y":-55},{"x":49,"y":8},{"x":0,"y":36},{"x":94,"y":105},{"x":85,"y":46},{"x":2,"y":49},{"x":69,"y":25},{"x":7,"y":44},{"x":-28,"y":28},{"x":40,"y":147},{"x":-14,"y":59},{"x":-74,"y":33},{"x":28,"y":53},{"x":-108,"y":30},{"x":-37,"y":-28},{"x":-30,"y":45},{"x":-35,"y":-19},{"x":-15,"y":33},{"x":-33,"y":-20},{"x":-37,"y":34},{"x":8,"y":133},{"x":45,"y":13},{"x":44,"y":-73},{"x":81,"y":18},{"x":-97,"y":89},{"x":8,"y":53},{"x":-112,"y":75},{"x":1,"y":66},{"x":-14,"y":-33},{"x":-58,"y":-27},{"x":11,"y":-17},{"x":-28,"y":2},{"x":-54,"y":49},{"x":7,"y":48},{"x":-59,"y":8},{"x":-15,"y":26},{"x":102,"y":63},{"x":-68,"y":24},{"x":22,"y":83},{"x":45,"y":13},{"x":60,"y":-38},{"x":-56,"y":150},{"x":51,"y":73},{"x":66,"y":-38},{"x":-14,"y":-41},{"x":48,"y":26},{"x":17,"y":-37},{"x":70,"y":3},{"x":-13,"y":-44},{"x":73,"y":-30},{"x":24,"y":-70},{"x":66,"y":3},{"x":7,"y":-81},{"x":61,"y":-5},{"x":26,"y":-27},{"x":-20,"y":65},{"x":40,"y":35},{"x":57,"y":2},{"x":-73,"y":41}],"type":"coastline"},{"arc":[{"x":152122,"y":142997},{"x":-96,"y":-203},{"x":-41,"y":-47},{"x":-42,"y":-2},{"x":-60,"y":-73},{"x":-13,"y":28},{"x":-196,"y":2},{"x":-460,"y":-93},{"x":-64,"y":237},{"x":-29,"y":27},{"x":-256,"y":14},{"x":-60,"y":-49},{"x":-91,"y":41},{"x":-76,"y":182},{"x":-21,"y":190},{"x":-35,"y":46},{"x":-65,"y":1},{"x":-92,"y":-67},{"x":-100,"y":-31},{"x":-56,"y":50},{"x":-10,"y":110},{"x":-26,"y":-3},{"x":-72,"y":71},{"x":-23,"y":80},{"x":-104,"y":22},{"x":-48,"y":53},{"x":-78,"y":29},{"x":-102,"y":-16},{"x":-39,"y":-33},{"x":-90,"y":73},{"x":-56,"y":-3},{"x":-54,"y":45},{"x":-83,"y":23},{"x":-94,"y":-13},{"x":-81,"y":-62},{"x":-36,"y":-100},{"x":14,"y":-139},{"x":-197,"y":-50},{"x":-131,"y":14},{"x":-114,"y":-28},{"x":-118,"y":-67}],"type":"admin"},{"arc":[{"x":148727,"y":143256},{"x":-8,"y":-137},{"x":18,"y":-21},{"x":82,"y":4},{"x":50,"y":-109},{"x":-15,"y":-91},{"x":-106,"y":-144},{"x":69,"y":-91},{"x":21,"y":-92},{"x":-101,"y":-30},{"x":-103,"y":-109},{"x":25,"y":-133},{"x":-60,"y":-76},{"x":7,"y":-86},{"x":43,"y":-47},{"x":-103,"y":-112}],"type":"admin"},{"arc":[{"x":148546,"y":141982},{"x":-21,"y":-87},{"x":31,"y":-35},{"x":153,"y":-15},{"x":111,"y":-81},{"x":-120,"y":-74},{"x":-6,"y":-116},{"x":-76,"y":11},{"x":-51,"y":-58},{"x":25,"y":-110},{"x":45,"y":-20},{"x":79,"y":-107},{"x":-41,"y":-41},{"x":3,"y":-57},{"x":-75,"y":-46},{"x":-67,"y":8},{"x":-87,"y":-158},{"x":45,"y":-154},{"x":-28,"y":-113},{"x":119,"y":-228},{"x":-206,"y":-112},{"x":-122,"y":18}],"type":"admin"},{"arc":[{"x":148257,"y":140407},{"x":-151,"y":-91},{"x":69,"y":-57},{"x":123,"y":-30},{"x":104,"y":-116},{"x":34,"y":4},{"x":-32,"y":-47},{"x":-13,"y":-125},{"x":79,"y":-105},{"x":-78,"y":-136},{"x":28,"y":-47},{"x":-1,"y":-108},{"x":93,"y":-153}],"type":"admin"},{"arc":[{"x":148512,"y":139396},{"x":138,"y":71},{"x":59,"y":88},{"x":60,"y":-3},{"x":34,"y":23},{"x":96,"y":-104},{"x":82,"y":-7},{"x":50,"y":58},{"x":118,"y":-50},{"x":79,"y":57},{"x":103,"y":36},{"x":41,"y":-15},{"x":-8,"y":58},{"x":115,"y":-91},{"x":105,"y":75},{"x":63,"y":-19},{"x":73,"y":70},{"x":103,"y":-6},{"x":1,"y":-33},{"x":50,"y":-40},{"x":80,"y":3},{"x":77,"y":63},{"x":81,"y":3},{"x":59,"y":173},{"x":89,"y":51}],"type":"admin"},{"arc":[{"x":151473,"y":139829},{"x":28,"y":92},{"x":114,"y":40},{"x":20,"y":43},{"x":-41,"y":61},{"x":-8,"y":165},{"x":-74,"y":64},{"x":-36,"y":127},{"x":65,"y":19},{"x":-188,"y":278},{"x":65,"y":81},{"x":-43,"y":107},{"x":26,"y":62},{"x":141,"y":34},{"x":27,"y":75},{"x":117,"y":103},{"x":66,"y":117},{"x":1,"y":108},{"x":73,"y":34},{"x":24,"y":81},{"x":70,"y":43},{"x":24,"y":67},{"x":102,"y":57},{"x":99,"y":218}],"type":"area"},{"arc":[{"x":152145,"y":141905},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":152134,"y":141917},{"x":-5,"y":12}],"type":"coastline"},{"arc":[{"x":152123,"y":141939},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":152121,"y":141948},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":152121,"y":141962},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":152125,"y":141981},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":152128,"y":141988},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":152123,"y":142008},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":152142,"y":142033},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":152124,"y":142057},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":152116,"y":142066},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":152127,"y":142089},{"x":6,"y":8}],"type":"coastline"},{"arc":[{"x":152143,"y":142101},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":152158,"y":142111},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":152166,"y":142131},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":152167,"y":142135},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":152164,"y":142147},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":152166,"y":142152},{"x":2,"y":8}],"type":"coastline"},{"arc":[{"x":152168,"y":142165},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":152168,"y":142178},{"x":8,"y":6}],"type":"coastline"},{"arc":[{"x":152176,"y":142184},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":152185,"y":142212},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":152187,"y":142215},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":152192,"y":142223},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":152192,"y":142231},{"x":-5,"y":7}],"type":"coastline"},{"arc":[{"x":152187,"y":142238},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":152183,"y":142240},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":152188,"y":142266},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":152197,"y":142273},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":152200,"y":142302},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":152199,"y":142315},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":152207,"y":142336},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":152213,"y":142345},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":152219,"y":142350},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":152243,"y":142370},{"x":6,"y":9}],"type":"coastline"},{"arc":[{"x":152261,"y":142391},{"x":5,"y":8}],"type":"coastline"},{"arc":[{"x":152268,"y":142400},{"x":4,"y":6}],"type":"coastline"},{"arc":[{"x":152270,"y":142413},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":152270,"y":142420},{"x":4,"y":13}],"type":"coastline"},{"arc":[{"x":152278,"y":142437},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":152281,"y":142441},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":152291,"y":142459},{"x":-2,"y":12}],"type":"coastline"},{"arc":[{"x":152302,"y":142485},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":152306,"y":142537},{"x":0,"y":7}],"type":"coastline"},{"arc":[{"x":152303,"y":142552},{"x":1,"y":8}],"type":"coastline"},{"arc":[{"x":152304,"y":142563},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":152304,"y":142573},{"x":3,"y":13}],"type":"coastline"},{"arc":[{"x":152307,"y":142589},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":152304,"y":142596},{"x":-7,"y":7}],"type":"coastline"},{"arc":[{"x":152292,"y":142614},{"x":3,"y":8}],"type":"coastline"},{"arc":[{"x":152295,"y":142622},{"x":3,"y":11}],"type":"coastline"},{"arc":[{"x":152298,"y":142637},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":152296,"y":142644},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":152292,"y":142655},{"x":-6,"y":6}],"type":"coastline"},{"arc":[{"x":152284,"y":142665},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":152283,"y":142675},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":152285,"y":142685},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":152280,"y":142718},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":152283,"y":142725},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":152282,"y":142730},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":152289,"y":142739},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":152294,"y":142742},{"x":4,"y":8}],"type":"coastline"},{"arc":[{"x":152298,"y":142750},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":152300,"y":142757},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":152306,"y":142763},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":152335,"y":142793},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":152342,"y":142801},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":152347,"y":142828},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":152353,"y":142850},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":152353,"y":142870},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":152346,"y":142880},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":152357,"y":142894},{"x":-150,"y":100},{"x":-85,"y":3}],"type":"admin"},{"arc":[{"x":153225,"y":140801},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":153224,"y":140803},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":153205,"y":140826},{"x":-3,"y":3}],"type":"coastline"},{"arc":[{"x":153201,"y":140833},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":153200,"y":140839},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":153198,"y":140856},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":153203,"y":140866},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":153203,"y":140874},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":153203,"y":140881},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":153180,"y":140890},{"x":-5,"y":3}],"type":"coastline"},{"arc":[{"x":153175,"y":140893},{"x":-12,"y":5}],"type":"coastline"},{"arc":[{"x":153157,"y":140901},{"x":-8,"y":4}],"type":"coastline"},{"arc":[{"x":153111,"y":140917},{"x":-10,"y":-1}],"type":"coastline"},{"arc":[{"x":153098,"y":140916},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":153094,"y":140922},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":153094,"y":140924},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":153087,"y":140942},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":153093,"y":140971},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":153089,"y":140982},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":153086,"y":140988},{"x":-5,"y":5}],"type":"coastline"},{"arc":[{"x":153079,"y":140997},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":153079,"y":141002},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":153080,"y":141010},{"x":-4,"y":7}],"type":"coastline"},{"arc":[{"x":153076,"y":141020},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":153064,"y":141040},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":153064,"y":141046},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":153065,"y":141052},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":153060,"y":141059},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":153058,"y":141062},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":153044,"y":141069},{"x":-8,"y":1}],"type":"coastline"},{"arc":[{"x":153036,"y":141070},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":153028,"y":141074},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":153023,"y":141078},{"x":-4,"y":4}],"type":"coastline"},{"arc":[{"x":152999,"y":141096},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":152994,"y":141100},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":152991,"y":141107},{"x":-1,"y":7}],"type":"coastline"},{"arc":[{"x":152987,"y":141127},{"x":0,"y":8}],"type":"coastline"},{"arc":[{"x":152987,"y":141135},{"x":-2,"y":7}],"type":"coastline"},{"arc":[{"x":152979,"y":141144},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":152975,"y":141147},{"x":-6,"y":5}],"type":"coastline"},{"arc":[{"x":152965,"y":141156},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":152958,"y":141165},{"x":-5,"y":-2}],"type":"coastline"},{"arc":[{"x":152952,"y":141163},{"x":-1,"y":-1}],"type":"coastline"},{"arc":[{"x":152949,"y":141162},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":152943,"y":141170},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":152943,"y":141174},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":152943,"y":141179},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":152941,"y":141183},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":152936,"y":141248},{"x":-1,"y":9}],"type":"coastline"},{"arc":[{"x":152934,"y":141258},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":152920,"y":141271},{"x":-1,"y":14}],"type":"coastline"},{"arc":[{"x":152919,"y":141285},{"x":-2,"y":8}],"type":"coastline"},{"arc":[{"x":152917,"y":141297},{"x":-2,"y":6}],"type":"coastline"},{"arc":[{"x":152913,"y":141304},{"x":-3,"y":4}],"type":"coastline"},{"arc":[{"x":152910,"y":141308},{"x":-6,"y":9}],"type":"coastline"},{"arc":[{"x":152904,"y":141317},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":152884,"y":141334},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":152880,"y":141334},{"x":-4,"y":-3}],"type":"coastline"},{"arc":[{"x":152876,"y":141331},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":152865,"y":141331},{"x":-5,"y":4}],"type":"coastline"},{"arc":[{"x":152860,"y":141335},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":152858,"y":141336},{"x":-7,"y":6}],"type":"coastline"},{"arc":[{"x":152851,"y":141342},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":152849,"y":141344},{"x":-2,"y":1}],"type":"coastline"},{"arc":[{"x":152847,"y":141345},{"x":-3,"y":2}],"type":"coastline"},{"arc":[{"x":152844,"y":141347},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":152840,"y":141348},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":152823,"y":141345},{"x":-6,"y":-2}],"type":"coastline"},{"arc":[{"x":152814,"y":141343},{"x":-3,"y":1}],"type":"coastline"},{"arc":[{"x":152805,"y":141352},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":152800,"y":141358},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":152784,"y":141367},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":152782,"y":141373},{"x":-2,"y":4}],"type":"coastline"},{"arc":[{"x":152778,"y":141381},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":152774,"y":141383},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":152760,"y":141403},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":152754,"y":141406},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":152751,"y":141410},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":152745,"y":141417},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":152737,"y":141427},{"x":-4,"y":1}],"type":"coastline"},{"arc":[{"x":152695,"y":141419},{"x":-2,"y":-2}],"type":"coastline"},{"arc":[{"x":152688,"y":141419},{"x":-5,"y":2}],"type":"coastline"},{"arc":[{"x":152678,"y":141422},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":152678,"y":141435},{"x":-6,"y":3}],"type":"coastline"},{"arc":[{"x":152633,"y":141454},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":152630,"y":141462},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":152626,"y":141470},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":152622,"y":141476},{"x":-6,"y":4}],"type":"coastline"},{"arc":[{"x":152614,"y":141488},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":152614,"y":141494},{"x":1,"y":5}],"type":"coastline"},{"arc":[{"x":152615,"y":141517},{"x":-4,"y":13}],"type":"coastline"},{"arc":[{"x":152610,"y":141532},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":152586,"y":141555},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":152567,"y":141594},{"x":-6,"y":11}],"type":"coastline"},{"arc":[{"x":152544,"y":141615},{"x":-4,"y":5}],"type":"coastline"},{"arc":[{"x":152530,"y":141626},{"x":-4,"y":3}],"type":"coastline"},{"arc":[{"x":152521,"y":141643},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":152511,"y":141671},{"x":-1,"y":12}],"type":"coastline"},{"arc":[{"x":152519,"y":141703},{"x":-2,"y":10}],"type":"coastline"},{"arc":[{"x":152514,"y":141718},{"x":-6,"y":7}],"type":"coastline"},{"arc":[{"x":152508,"y":141725},{"x":-1,"y":6}],"type":"coastline"},{"arc":[{"x":152493,"y":141750},{"x":-10,"y":8}],"type":"coastline"},{"arc":[{"x":152461,"y":141775},{"x":-10,"y":16}],"type":"coastline"},{"arc":[{"x":152425,"y":141834},{"x":-5,"y":0}],"type":"coastline"},{"arc":[{"x":152416,"y":141834},{"x":-22,"y":2}],"type":"coastline"},{"arc":[{"x":152390,"y":141841},{"x":-11,"y":5}],"type":"coastline"},{"arc":[{"x":152379,"y":141846},{"x":-10,"y":4}],"type":"coastline"},{"arc":[{"x":152363,"y":141851},{"x":-9,"y":5}],"type":"coastline"},{"arc":[{"x":152329,"y":141888},{"x":-5,"y":1}],"type":"coastline"},{"arc":[{"x":152319,"y":141890},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":152317,"y":141890},{"x":-20,"y":-5}],"type":"coastline"},{"arc":[{"x":152278,"y":141883},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":152268,"y":141880},{"x":-7,"y":-5}],"type":"coastline"},{"arc":[{"x":152249,"y":141867},{"x":-9,"y":1}],"type":"coastline"},{"arc":[{"x":152214,"y":141892},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":152213,"y":141893},{"x":-4,"y":2}],"type":"coastline"},{"arc":[{"x":152190,"y":141900},{"x":-8,"y":2}],"type":"coastline"},{"arc":[{"x":152182,"y":141902},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":152181,"y":141903},{"x":-8,"y":3}],"type":"coastline"},{"arc":[{"x":152166,"y":141907},{"x":-7,"y":2}],"type":"coastline"},{"arc":[{"x":152150,"y":141905},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":151813,"y":139562},{"x":86,"y":36},{"x":19,"y":-26},{"x":80,"y":-6},{"x":146,"y":71},{"x":76,"y":-13},{"x":152,"y":-514},{"x":42,"y":1},{"x":18,"y":75},{"x":88,"y":88},{"x":77,"y":-16},{"x":44,"y":-45},{"x":37,"y":7},{"x":59,"y":-80},{"x":109,"y":16}],"type":"admin"},{"arc":[{"x":152846,"y":139156},{"x":-1,"y":64},{"x":38,"y":36},{"x":73,"y":237},{"x":-19,"y":38},{"x":21,"y":87},{"x":45,"y":31}],"type":"area"},{"arc":[{"x":150363,"y":138546},{"x":11,"y":-96},{"x":75,"y":-47},{"x":21,"y":-58},{"x":69,"y":-52},{"x":32,"y":-206},{"x":-50,"y":-96},{"x":-4,"y":-189},{"x":28,"y":-67},{"x":-22,"y":-52},{"x":90,"y":-15},{"x":-4,"y":-89},{"x":-45,"y":0},{"x":7,"y":-38},{"x":-86,"y":-113},{"x":-95,"y":-11},{"x":28,"y":-61},{"x":-48,"y":-19},{"x":12,"y":-400},{"x":-45,"y":6},{"x":-6,"y":-29},{"x":133,"y":-5},{"x":-7,"y":-65},{"x":49,"y":-26},{"x":-1,"y":-59},{"x":-48,"y":0},{"x":19,"y":-212},{"x":-62,"y":-59}],"type":"area"},{"arc":[{"x":150414,"y":136488},{"x":101,"y":-104},{"x":57,"y":-3},{"x":23,"y":38},{"x":125,"y":48},{"x":65,"y":56},{"x":93,"y":-1},{"x":170,"y":169},{"x":120,"y":9}],"type":"admin"},{"arc":[{"x":153821,"y":138501},{"x":-42,"y":-99},{"x":-92,"y":-57},{"x":-14,"y":-70},{"x":-78,"y":-29},{"x":-62,"y":-75},{"x":-59,"y":-126},{"x":73,"y":-104},{"x":-39,"y":-24},{"x":23,"y":-143},{"x":56,"y":-19},{"x":24,"y":-56},{"x":-20,"y":-151},{"x":119,"y":-9},{"x":10,"y":-63},{"x":42,"y":-17},{"x":-62,"y":-135},{"x":-43,"y":-13},{"x":36,"y":-38},{"x":-9,"y":-143},{"x":-24,"y":-17},{"x":12,"y":-49},{"x":34,"y":-1},{"x":0,"y":-102},{"x":68,"y":-46},{"x":6,"y":-34},{"x":98,"y":2},{"x":17,"y":34},{"x":44,"y":-7},{"x":12,"y":-70},{"x":-40,"y":-21},{"x":44,"y":1},{"x":48,"y":28},{"x":11,"y":46},{"x":58,"y":8},{"x":15,"y":95},{"x":67,"y":11},{"x":41,"y":-38},{"x":18,"y":32},{"x":-34,"y":33},{"x":47,"y":13},{"x":21,"y":83},{"x":67,"y":-33},{"x":65,"y":72},{"x":65,"y":-54},{"x":-36,"y":-116},{"x":30,"y":-31},{"x":50,"y":37},{"x":37,"y":-17}],"type":"area"},{"arc":[{"x":154525,"y":136989},{"x":298,"y":444},{"x":179,"y":183}],"type":"coastline"},{"arc":[{"x":150363,"y":138546},{"x":-51,"y":-3},{"x":-41,"y":-50},{"x":-7,"y":-132},{"x":-44,"y":-52},{"x":-41,"y":-12},{"x":-16,"y":45},{"x":-77,"y":21},{"x":-68,"y":-56},{"x":-64,"y":-19},{"x":-44,"y":34},{"x":-54,"y":3},{"x":-57,"y":-55},{"x":-125,"y":-33},{"x":-14,"y":-44},{"x":-81,"y":-58},{"x":0,"y":-64},{"x":-29,"y":-22},{"x":12,"y":-87},{"x":-214,"y":-115},{"x":-80,"y":-106}],"type":"admin"},{"arc":[{"x":149268,"y":137741},{"x":43,"y":-72},{"x":-2,"y":-77},{"x":134,"y":-182},{"x":10,"y":-142},{"x":36,"y":-37},{"x":-27,"y":-267},{"x":-31,"y":1},{"x":-60,"y":-60},{"x":-80,"y":-2},{"x":-130,"y":-168},{"x":-88,"y":-5},{"x":-122,"y":-50},{"x":-116,"y":-149},{"x":27,"y":-44},{"x":183,"y":-49},{"x":44,"y":18},{"x":134,"y":-36},{"x":27,"y":12},{"x":29,"y":-24},{"x":49,"y":-125},{"x":-67,"y":-105},{"x":36,"y":-51},{"x":-19,"y":-155},{"x":90,"y":-84},{"x":-23,"y":-197},{"x":56,"y":-36},{"x":95,"y":22},{"x":2,"y":-119},{"x":78,"y":-44},{"x":53,"y":-60},{"x":46,"y":-126},{"x":58,"y":-29}],"type":"admin"},{"arc":[{"x":149733,"y":135299},{"x":192,"y":3},{"x":24,"y":32},{"x":74,"y":18},{"x":-22,"y":33},{"x":48,"y":146},{"x":112,"y":19},{"x":55,"y":41},{"x":27,"y":90},{"x":-22,"y":129},{"x":19,"y":46},{"x":53,"y":6},{"x":31,"y":68},{"x":-33,"y":49},{"x":-26,"y":-1},{"x":24,"y":30},{"x":-59,"y":14},{"x":-14,"y":35},{"x":-81,"y":8},{"x":0,"y":131},{"x":30,"y":41},{"x":-26,"y":64},{"x":48,"y":4},{"x":17,"y":92},{"x":107,"y":29},{"x":6,"y":44},{"x":97,"y":18}],"type":"admin"},{"arc":[{"x":154473,"y":136342},{"x":-38,"y":4},{"x":-6,"y":-42},{"x":35,"y":6},{"x":9,"y":32}],"type":"coastline"},{"arc":[{"x":152846,"y":139156},{"x":25,"y":-83},{"x":-13,"y":-93},{"x":53,"y":-42},{"x":-17,"y":-101},{"x":-166,"y":-89},{"x":-59,"y":-106},{"x":15,"y":-83},{"x":-77,"y":-121},{"x":-41,"y":-2},{"x":-7,"y":-50},{"x":64,"y":-228},{"x":54,"y":25},{"x":56,"y":-85},{"x":-12,"y":-34},{"x":-51,"y":0},{"x":2,"y":-32},{"x":106,"y":13},{"x":16,"y":-57},{"x":-112,"y":9},{"x":-9,"y":-52},{"x":-91,"y":-59}],"type":"admin"},{"arc":[{"x":153453,"y":136130},{"x":249,"y":146},{"x":162,"y":-18},{"x":-161,"y":20},{"x":-39,"y":69},{"x":6,"y":68},{"x":46,"y":17},{"x":9,"y":-21},{"x":131,"y":72},{"x":-14,"y":-57},{"x":-21,"y":-12},{"x":0,"y":13},{"x":-45,"y":-26},{"x":-10,"y":-34},{"x":16,"y":37},{"x":28,"y":-49},{"x":-8,"y":-34},{"x":11,"y":33},{"x":25,"y":-23},{"x":-16,"y":28},{"x":150,"y":101},{"x":32,"y":1},{"x":5,"y":-15},{"x":6,"y":7},{"x":22,"y":-17},{"x":-16,"y":-24},{"x":27,"y":38},{"x":10,"y":38},{"x":9,"y":3},{"x":39,"y":-35},{"x":72,"y":8},{"x":91,"y":-76},{"x":24,"y":59},{"x":36,"y":2},{"x":88,"y":-90},{"x":-10,"y":18},{"x":17,"y":-11},{"x":18,"y":34},{"x":-8,"y":124},{"x":36,"y":53},{"x":-21,"y":21},{"x":50,"y":34},{"x":-38,"y":8},{"x":12,"y":43},{"x":-42,"y":43},{"x":-5,"y":49},{"x":99,"y":214}],"type":"coastline"},{"arc":[{"x":148512,"y":139396},{"x":-32,"y":-70},{"x":119,"y":-92},{"x":-16,"y":-112},{"x":49,"y":-7},{"x":41,"y":-114},{"x":-105,"y":-214}],"type":"admin"},{"arc":[{"x":148568,"y":138787},{"x":11,"y":-28},{"x":92,"y":-36},{"x":78,"y":26},{"x":76,"y":-72},{"x":77,"y":32},{"x":114,"y":-85},{"x":0,"y":-75},{"x":-29,"y":-31},{"x":50,"y":-61},{"x":-74,"y":-60},{"x":-9,"y":-48},{"x":61,"y":-15},{"x":32,"y":-66},{"x":69,"y":-53},{"x":-74,"y":-33},{"x":-49,"y":-127},{"x":42,"y":-138},{"x":-5,"y":-139},{"x":30,"y":-17},{"x":141,"y":21},{"x":67,"y":-41}],"type":"admin"},{"arc":[{"x":148568,"y":138787},{"x":-137,"y":-109},{"x":-12,"y":-192},{"x":-69,"y":-40},{"x":-235,"y":-59},{"x":-94,"y":70},{"x":-39,"y":-12},{"x":-115,"y":31},{"x":-64,"y":-18},{"x":-49,"y":-50},{"x":-73,"y":37},{"x":-61,"y":-127},{"x":-106,"y":-23},{"x":-28,"y":-52},{"x":-120,"y":-69},{"x":-17,"y":-62},{"x":-84,"y":2},{"x":-78,"y":72},{"x":-80,"y":-105},{"x":-69,"y":18},{"x":-29,"y":-59},{"x":-64,"y":-42}],"type":"admin"},{"arc":[{"x":146945,"y":137998},{"x":34,"y":-2},{"x":94,"y":-116},{"x":32,"y":-121},{"x":63,"y":-72},{"x":-31,"y":-62},{"x":110,"y":-106},{"x":-24,"y":-88},{"x":51,"y":-90},{"x":-37,"y":-48},{"x":75,"y":-44},{"x":-10,"y":-43},{"x":37,"y":-61},{"x":161,"y":-74},{"x":15,"y":-79},{"x":-26,"y":-27},{"x":27,"y":-65},{"x":-29,"y":-43},{"x":25,"y":-26},{"x":-90,"y":-32},{"x":52,"y":-83},{"x":-34,"y":-66}],"type":"admin"},{"arc":[{"x":148295,"y":136112},{"x":32,"y":-19},{"x":136,"y":37},{"x":405,"y":-241},{"x":173,"y":-61},{"x":209,"y":-244},{"x":-30,"y":15},{"x":136,"y":-86},{"x":294,"y":-302}],"type":"coastline"},{"arc":[{"x":149650,"y":135211},{"x":83,"y":88}],"type":"area"},{"arc":[{"x":149650,"y":135211},{"x":119,"y":-129},{"x":20,"y":11},{"x":48,"y":-29},{"x":6,"y":-34},{"x":35,"y":26},{"x":54,"y":-35},{"x":3,"y":23},{"x":23,"y":4},{"x":-17,"y":-10},{"x":-3,"y":-26},{"x":9,"y":29},{"x":90,"y":32},{"x":36,"y":-26},{"x":22,"y":17},{"x":69,"y":-20},{"x":181,"y":33},{"x":8,"y":-24},{"x":87,"y":15},{"x":4,"y":-26},{"x":46,"y":-1},{"x":3,"y":-15},{"x":-31,"y":6},{"x":48,"y":-15},{"x":25,"y":-44},{"x":-25,"y":31},{"x":-59,"y":9},{"x":59,"y":-10},{"x":8,"y":-21},{"x":43,"y":-36},{"x":21,"y":17},{"x":-9,"y":-21},{"x":32,"y":18},{"x":47,"y":-14},{"x":2,"y":-19},{"x":-40,"y":11},{"x":89,"y":-35},{"x":-15,"y":-14},{"x":100,"y":-109},{"x":73,"y":-10},{"x":102,"y":-104},{"x":27,"y":23},{"x":54,"y":-31},{"x":57,"y":54},{"x":43,"y":-23},{"x":19,"y":47},{"x":32,"y":-20},{"x":39,"y":11}],"type":"coastline"},{"arc":[{"x":146112,"y":134051},{"x":-56,"y":70},{"x":12,"y":-62},{"x":33,"y":-23},{"x":11,"y":15}],"type":"admin"},{"arc":[{"x":146109,"y":134011},{"x":6,"y":30},{"x":-21,"y":-19},{"x":18,"y":-70},{"x":-3,"y":59}],"type":"admin"},{"arc":[{"x":145311,"y":135369},{"x":-76,"y":24},{"x":-45,"y":-56},{"x":-100,"y":-32},{"x":-4,"y":-53},{"x":-225,"y":-65},{"x":-37,"y":-49},{"x":22,"y":-151},{"x":-78,"y":-84},{"x":173,"y":-91},{"x":35,"y":-56},{"x":-21,"y":-47},{"x":59,"y":-52},{"x":3,"y":-54},{"x":180,"y":-56}],"type":"admin"},{"arc":[{"x":145197,"y":134547},{"x":73,"y":75},{"x":120,"y":-2},{"x":114,"y":-33},{"x":79,"y":-62},{"x":56,"y":14},{"x":81,"y":-37},{"x":45,"y":13},{"x":154,"y":-74},{"x":41,"y":-206},{"x":47,"y":-4},{"x":64,"y":-90},{"x":61,"y":10},{"x":79,"y":-34},{"x":-30,"y":-43},{"x":76,"y":0},{"x":-81,"y":-124},{"x":13,"y":-41},{"x":124,"y":-66},{"x":-17,"y":-50},{"x":-42,"y":6},{"x":-33,"y":-42},{"x":19,"y":-63},{"x":150,"y":-168},{"x":36,"y":-1},{"x":119,"y":-85},{"x":99,"y":-5},{"x":-4,"y":-56},{"x":86,"y":-127},{"x":12,"y":-73}],"type":"admin"},{"arc":[{"x":146738,"y":133179},{"x":25,"y":84},{"x":-68,"y":51},{"x":-43,"y":191},{"x":-115,"y":-26},{"x":-44,"y":51},{"x":28,"y":53},{"x":-17,"y":57},{"x":-32,"y":10},{"x":-24,"y":-31},{"x":-55,"y":-4},{"x":-48,"y":24},{"x":-38,"y":87},{"x":28,"y":96},{"x":72,"y":26},{"x":22,"y":59},{"x":-77,"y":88},{"x":28,"y":20},{"x":3,"y":-26},{"x":15,"y":35},{"x":56,"y":-22},{"x":28,"y":14},{"x":42,"y":117},{"x":-105,"y":38},{"x":21,"y":-28},{"x":-49,"y":0},{"x":-22,"y":49},{"x":-38,"y":-4},{"x":1,"y":144},{"x":53,"y":130},{"x":59,"y":14},{"x":113,"y":116},{"x":48,"y":-36},{"x":27,"y":21},{"x":4,"y":51},{"x":-64,"y":-2},{"x":-54,"y":82},{"x":-3,"y":-18},{"x":-27,"y":16},{"x":28,"y":123},{"x":97,"y":85},{"x":118,"y":39},{"x":164,"y":-120},{"x":21,"y":-69},{"x":-37,"y":-3},{"x":42,"y":-47},{"x":38,"y":38},{"x":94,"y":0},{"x":27,"y":22},{"x":36,"y":-3},{"x":28,"y":-35},{"x":30,"y":73},{"x":131,"y":55},{"x":142,"y":-23},{"x":73,"y":-65},{"x":65,"y":15},{"x":-18,"y":22},{"x":51,"y":-15},{"x":-24,"y":-76},{"x":-59,"y":-34},{"x":19,"y":55},{"x":-71,"y":3},{"x":-17,"y":-56},{"x":40,"y":-51},{"x":52,"y":39},{"x":116,"y":-1},{"x":73,"y":-55},{"x":103,"y":107}],"type":"coastline"},{"arc":[{"x":144892,"y":130394},{"x":-1,"y":42},{"x":-4,"y":-59},{"x":5,"y":17}],"type":"coastline"},{"arc":[{"x":145114,"y":130986},{"x":-96,"y":85},{"x":-98,"y":-34},{"x":-8,"y":-41},{"x":-97,"y":28}],"type":"area"},{"arc":[{"x":144815,"y":131024},{"x":55,"y":-145},{"x":-57,"y":-116},{"x":4,"y":117},{"x":-85,"y":134}],"type":"coastline"},{"arc":[{"x":144732,"y":131014},{"x":-99,"y":-55},{"x":-34,"y":6},{"x":-65,"y":-58},{"x":-19,"y":-95},{"x":35,"y":-60},{"x":-49,"y":-165},{"x":-65,"y":-71},{"x":-6,"y":-216},{"x":-53,"y":-116},{"x":93,"y":-91},{"x":-44,"y":-96},{"x":-124,"y":-117},{"x":20,"y":-41},{"x":-34,"y":-57}],"type":"area"},{"arc":[{"x":144288,"y":129782},{"x":-6,"y":-57},{"x":80,"y":-106}],"type":"admin"},{"arc":[{"x":144362,"y":129619},{"x":47,"y":-9},{"x":52,"y":-69},{"x":79,"y":-46},{"x":59,"y":7},{"x":146,"y":109},{"x":56,"y":9},{"x":4,"y":60},{"x":148,"y":-38},{"x":55,"y":38},{"x":194,"y":-272},{"x":64,"y":-6},{"x":103,"y":53},{"x":45,"y":-3},{"x":79,"y":63},{"x":58,"y":2},{"x":120,"y":270}],"type":"admin"},{"arc":[{"x":145671,"y":129787},{"x":-61,"y":-30},{"x":-24,"y":-53},{"x":-30,"y":-13},{"x":-28,"y":27},{"x":-40,"y":-6},{"x":-33,"y":-63},{"x":-35,"y":15},{"x":-98,"y":-62},{"x":22,"y":51},{"x":-35,"y":-5},{"x":2,"y":17},{"x":45,"y":6},{"x":29,"y":62},{"x":-34,"y":25},{"x":-85,"y":-60},{"x":-43,"y":20},{"x":1,"y":76},{"x":32,"y":-9},{"x":0,"y":24},{"x":50,"y":-1},{"x":20,"y":25},{"x":-40,"y":31},{"x":-57,"y":-15},{"x":14,"y":98},{"x":116,"y":8},{"x":18,"y":73},{"x":53,"y":-26},{"x":14,"y":-36},{"x":-18,"y":-100},{"x":30,"y":14},{"x":19,"y":68},{"x":144,"y":-32},{"x":-2,"y":30},{"x":-52,"y":18},{"x":-5,"y":120},{"x":28,"y":10},{"x":-54,"y":24},{"x":-143,"y":-46},{"x":-18,"y":33},{"x":-35,"y":-44},{"x":-18,"y":33},{"x":-48,"y":10},{"x":-40,"y":-48},{"x":-76,"y":18},{"x":-47,"y":-56},{"x":-58,"y":17},{"x":-34,"y":-35},{"x":-67,"y":34},{"x":-2,"y":40},{"x":-58,"y":-3},{"x":-30,"y":50},{"x":-62,"y":181},{"x":25,"y":65},{"x":43,"y":17},{"x":-17,"y":67},{"x":19,"y":7},{"x":1,"y":-28},{"x":35,"y":33},{"x":-22,"y":32},{"x":-28,"y":-15},{"x":-35,"y":26},{"x":-3,"y":86},{"x":40,"y":33},{"x":-6,"y":69},{"x":43,"y":7},{"x":-21,"y":29},{"x":30,"y":-41},{"x":34,"y":34},{"x":3,"y":37},{"x":-3,"y":-34},{"x":-22,"y":30},{"x":58,"y":124},{"x":142,"y":106}],"type":"coastline"},{"arc":[{"x":143504,"y":132933},{"x":-97,"y":0},{"x":-71,"y":-123},{"x":-94,"y":-13},{"x":-12,"y":-36},{"x":-114,"y":-56}],"type":"admin"},{"arc":[{"x":143387,"y":130282},{"x":34,"y":-71},{"x":75,"y":-15},{"x":88,"y":57},{"x":120,"y":-67},{"x":78,"y":50},{"x":133,"y":-34},{"x":48,"y":-61},{"x":-13,"y":-53},{"x":34,"y":-51},{"x":-58,"y":-90},{"x":53,"y":-24},{"x":25,"y":-46},{"x":42,"y":2},{"x":47,"y":55},{"x":72,"y":-55},{"x":4,"y":-76},{"x":23,"y":12},{"x":96,"y":-33}],"type":"admin"},{"arc":[{"x":144732,"y":131014},{"x":31,"y":160},{"x":-59,"y":55},{"x":27,"y":33},{"x":-32,"y":15},{"x":10,"y":34},{"x":-26,"y":-4},{"x":-4,"y":25},{"x":25,"y":-1},{"x":-36,"y":96}],"type":"coastline"},{"arc":[{"x":145114,"y":130986},{"x":57,"y":65},{"x":13,"y":106},{"x":95,"y":8},{"x":89,"y":105},{"x":49,"y":20},{"x":-11,"y":50},{"x":64,"y":68},{"x":8,"y":88},{"x":38,"y":1},{"x":-9,"y":64},{"x":36,"y":28},{"x":-15,"y":17},{"x":-22,"y":-22},{"x":-23,"y":31},{"x":21,"y":-33},{"x":-18,"y":-31},{"x":-21,"y":84},{"x":-39,"y":9},{"x":0,"y":-53},{"x":-41,"y":-18},{"x":-30,"y":25},{"x":0,"y":51},{"x":-105,"y":29},{"x":-7,"y":-52},{"x":71,"y":-36},{"x":19,"y":-53},{"x":-141,"y":-202},{"x":27,"y":-55},{"x":-56,"y":28},{"x":20,"y":84},{"x":-76,"y":-48},{"x":-38,"y":48},{"x":-44,"y":2},{"x":-74,"y":-88},{"x":-59,"y":-34},{"x":-27,"y":18},{"x":-38,"y":-57},{"x":-32,"y":4},{"x":47,"y":-111},{"x":-27,"y":-102}],"type":"coastline"},{"arc":[{"x":145949,"y":133388},{"x":-35,"y":30},{"x":1,"y":-24},{"x":34,"y":-6}],"type":"coastline"},{"arc":[{"x":146702,"y":133079},{"x":-4,"y":27},{"x":-92,"y":-10},{"x":-21,"y":-40},{"x":107,"y":5},{"x":10,"y":18}],"type":"coastline"},{"arc":[{"x":145197,"y":134547},{"x":1,"y":-76},{"x":-357,"y":-99},{"x":-35,"y":-58},{"x":-172,"y":-29},{"x":-63,"y":-59},{"x":-49,"y":15},{"x":-193,"y":-29},{"x":-61,"y":-50},{"x":-24,"y":35},{"x":-165,"y":11},{"x":-34,"y":-119},{"x":-121,"y":-100},{"x":-115,"y":5},{"x":-96,"y":-30},{"x":-106,"y":-240},{"x":3,"y":-66},{"x":73,"y":-69},{"x":104,"y":13},{"x":32,"y":-25}],"type":"admin"},{"arc":[{"x":145845,"y":133184},{"x":29,"y":58},{"x":-68,"y":73},{"x":-58,"y":1},{"x":-28,"y":70},{"x":17,"y":51},{"x":99,"y":30},{"x":7,"y":70},{"x":76,"y":-12},{"x":12,"y":66},{"x":30,"y":1},{"x":14,"y":29},{"x":66,"y":-33},{"x":27,"y":34},{"x":35,"y":-21},{"x":-1,"y":-33},{"x":51,"y":34},{"x":90,"y":-21},{"x":-19,"y":-93},{"x":54,"y":3},{"x":22,"y":-38},{"x":-60,"y":-90},{"x":58,"y":-48},{"x":51,"y":-6},{"x":54,"y":115},{"x":65,"y":5},{"x":35,"y":-26},{"x":-21,"y":-14},{"x":26,"y":-115},{"x":41,"y":17},{"x":20,"y":-25},{"x":31,"y":5},{"x":-5,"y":98},{"x":83,"y":-108},{"x":-67,"y":-82},{"x":86,"y":-20},{"x":9,"y":26},{"x":32,"y":-6}],"type":"coastline"},{"arc":[{"x":149669,"y":162607},{"x":-54,"y":-18},{"x":-218,"y":-242},{"x":-73,"y":34},{"x":-74,"y":-9},{"x":-104,"y":-46},{"x":-55,"y":9},{"x":-46,"y":-41},{"x":-42,"y":-2},{"x":0,"y":-24},{"x":-72,"y":26},{"x":-32,"y":63},{"x":-107,"y":-11},{"x":-6,"y":-61},{"x":-43,"y":13},{"x":2,"y":-34},{"x":-39,"y":-30},{"x":18,"y":-24},{"x":-71,"y":-75},{"x":-49,"y":-23},{"x":-154,"y":35},{"x":-34,"y":-51},{"x":-119,"y":-34},{"x":-35,"y":-35},{"x":-40,"y":8},{"x":-110,"y":-114},{"x":-72,"y":14},{"x":-28,"y":-29},{"x":-102,"y":52},{"x":-95,"y":-46},{"x":-121,"y":193},{"x":27,"y":46},{"x":-31,"y":48},{"x":-52,"y":-58},{"x":-23,"y":11}],"type":"area"},{"arc":[{"x":147615,"y":162152},{"x":-65,"y":7},{"x":-97,"y":70},{"x":-50,"y":-37},{"x":-27,"y":21},{"x":-21,"y":-140},{"x":-125,"y":100},{"x":-135,"y":35},{"x":-23,"y":42},{"x":-126,"y":14},{"x":18,"y":-45},{"x":-32,"y":-12},{"x":-7,"y":88},{"x":-43,"y":-3},{"x":3,"y":51},{"x":-249,"y":-382},{"x":-145,"y":0},{"x":-80,"y":-40},{"x":21,"y":130},{"x":-93,"y":-11},{"x":-90,"y":26},{"x":-48,"y":-100},{"x":-36,"y":-17},{"x":-7,"y":-52},{"x":-56,"y":-13},{"x":46,"y":-29},{"x":-11,"y":-26},{"x":-53,"y":-8},{"x":-122,"y":135},{"x":-73,"y":201},{"x":-129,"y":37},{"x":-47,"y":37},{"x":-125,"y":-36},{"x":-34,"y":-50},{"x":-55,"y":97},{"x":-119,"y":64},{"x":-7,"y":77},{"x":-101,"y":29},{"x":-71,"y":85},{"x":-58,"y":1}],"type":"area"},{"arc":[{"x":145143,"y":162498},{"x":-38,"y":-56},{"x":0,"y":-89},{"x":-139,"y":-162},{"x":34,"y":-189}],"type":"admin"},{"arc":[{"x":145000,"y":162002},{"x":93,"y":-68},{"x":83,"y":-12}],"type":"admin"},{"arc":[{"x":145176,"y":161922},{"x":81,"y":-19},{"x":42,"y":-41},{"x":70,"y":1},{"x":115,"y":77},{"x":87,"y":-1},{"x":20,"y":-127}],"type":"admin"},{"arc":[{"x":145591,"y":161812},{"x":79,"y":2},{"x":17,"y":-55},{"x":46,"y":5},{"x":66,"y":-41},{"x":50,"y":8},{"x":77,"y":-61},{"x":51,"y":-105},{"x":100,"y":29},{"x":31,"y":-69},{"x":75,"y":40},{"x":96,"y":-10},{"x":-13,"y":-37},{"x":48,"y":-15},{"x":105,"y":-5}],"type":"area"},{"arc":[{"x":146419,"y":161498},{"x":42,"y":-1},{"x":23,"y":-57},{"x":72,"y":-21},{"x":12,"y":73},{"x":69,"y":-55},{"x":93,"y":-24},{"x":-10,"y":41},{"x":41,"y":39},{"x":7,"y":-29},{"x":27,"y":18},{"x":9,"y":-45},{"x":54,"y":-36},{"x":-84,"y":-23},{"x":23,"y":-34}],"type":"admin"},{"arc":[{"x":146797,"y":161344},{"x":62,"y":-65},{"x":34,"y":12},{"x":-2,"y":53},{"x":31,"y":-48},{"x":-4,"y":40},{"x":86,"y":-75},{"x":110,"y":34},{"x":0,"y":25},{"x":87,"y":-33},{"x":15,"y":32},{"x":216,"y":-132},{"x":123,"y":10},{"x":29,"y":63},{"x":63,"y":49},{"x":-11,"y":75},{"x":97,"y":33},{"x":10,"y":42},{"x":55,"y":-11},{"x":30,"y":46},{"x":22,"y":-8},{"x":38,"y":92},{"x":28,"y":-18},{"x":7,"y":34},{"x":54,"y":26},{"x":87,"y":-43},{"x":24,"y":-78},{"x":58,"y":-5},{"x":42,"y":46},{"x":33,"y":-21},{"x":3,"y":-114},{"x":33,"y":-33},{"x":137,"y":-13},{"x":170,"y":53},{"x":66,"y":53},{"x":66,"y":-32},{"x":44,"y":8}],"type":"area"},{"arc":[{"x":148740,"y":161441},{"x":83,"y":13},{"x":62,"y":68},{"x":65,"y":25},{"x":49,"y":-30},{"x":90,"y":9},{"x":6,"y":89},{"x":26,"y":18},{"x":-35,"y":140},{"x":92,"y":78},{"x":162,"y":56},{"x":5,"y":107},{"x":146,"y":57},{"x":-10,"y":65},{"x":34,"y":52},{"x":111,"y":13}],"type":"area"},{"arc":[{"x":149626,"y":162201},{"x":37,"y":67},{"x":-42,"y":63},{"x":60,"y":86},{"x":-17,"y":74},{"x":30,"y":80},{"x":-25,"y":36}],"type":"admin"},{"arc":[{"x":145002,"y":164623},{"x":-80,"y":14},{"x":-71,"y":75},{"x":-98,"y":18}],"type":"area"},{"arc":[{"x":144753,"y":164730},{"x":-61,"y":-14},{"x":-22,"y":-34},{"x":-5,"y":-52},{"x":-90,"y":-102},{"x":12,"y":-57},{"x":-38,"y":-54},{"x":13,"y":-90},{"x":78,"y":-107},{"x":-30,"y":-23},{"x":-157,"y":-21},{"x":-35,"y":-62},{"x":-32,"y":-3}],"type":"admin"},{"arc":[{"x":144386,"y":164111},{"x":-46,"y":-1},{"x":45,"y":27},{"x":-66,"y":15},{"x":-141,"y":-7},{"x":-13,"y":-24},{"x":46,"y":-46},{"x":-55,"y":-2},{"x":-114,"y":320},{"x":-37,"y":27},{"x":-179,"y":-80},{"x":-235,"y":362},{"x":-43,"y":-12}],"type":"admin"},{"arc":[{"x":143548,"y":164690},{"x":-27,"y":-62},{"x":26,"y":-69},{"x":-86,"y":-176},{"x":-65,"y":-36},{"x":-51,"y":-77},{"x":30,"y":-44},{"x":3,"y":-190},{"x":-176,"y":-707}],"type":"admin"},{"arc":[{"x":143202,"y":163329},{"x":56,"y":-12},{"x":342,"y":40},{"x":358,"y":-60},{"x":247,"y":232}],"type":"admin"},{"arc":[{"x":144205,"y":163529},{"x":112,"y":86},{"x":244,"y":50},{"x":144,"y":66},{"x":102,"y":161},{"x":-1,"y":-77},{"x":-40,"y":-39},{"x":26,"y":-62},{"x":21,"y":6},{"x":6,"y":43},{"x":43,"y":-12},{"x":-34,"y":134},{"x":87,"y":-41},{"x":66,"y":1},{"x":60,"y":63},{"x":66,"y":3},{"x":85,"y":69},{"x":58,"y":87},{"x":102,"y":44}],"type":"admin"},{"arc":[{"x":145352,"y":164111},{"x":-5,"y":131},{"x":-59,"y":36},{"x":-22,"y":115},{"x":-67,"y":25},{"x":-2,"y":39},{"x":-122,"y":-66},{"x":-116,"y":58},{"x":43,"y":174}],"type":"admin"},{"arc":[{"x":143695,"y":163600},{"x":0,"y":-33},{"x":-43,"y":6},{"x":-2,"y":23},{"x":45,"y":4}],"type":"admin"},{"arc":[{"x":145938,"y":166165},{"x":-83,"y":24},{"x":-43,"y":-18},{"x":-94,"y":125},{"x":-93,"y":7},{"x":-24,"y":91},{"x":-102,"y":-29}],"type":"area"},{"arc":[{"x":145499,"y":166365},{"x":-12,"y":-124},{"x":-50,"y":-77},{"x":-141,"y":13},{"x":-9,"y":-65},{"x":-44,"y":-22},{"x":-43,"y":-146},{"x":7,"y":-95},{"x":-178,"y":-42},{"x":-138,"y":-190},{"x":-28,"y":-121},{"x":-79,"y":-78},{"x":-43,"y":-36},{"x":-143,"y":0},{"x":-59,"y":-28},{"x":-101,"y":12},{"x":-32,"y":-40}],"type":"admin"},{"arc":[{"x":144406,"y":165326},{"x":-95,"y":-160},{"x":1,"y":-74}],"type":"admin"},{"arc":[{"x":144312,"y":165092},{"x":49,"y":-72},{"x":100,"y":-42},{"x":75,"y":-79},{"x":63,"y":19},{"x":107,"y":-37},{"x":52,"y":-44},{"x":-5,"y":-107}],"type":"admin"},{"arc":[{"x":145002,"y":164623},{"x":259,"y":-26},{"x":61,"y":131},{"x":35,"y":8},{"x":16,"y":-81},{"x":28,"y":26},{"x":36,"y":-47},{"x":-11,"y":-39},{"x":90,"y":-62},{"x":51,"y":-88},{"x":-17,"y":-64},{"x":29,"y":-230}],"type":"admin"},{"arc":[{"x":145579,"y":164151},{"x":98,"y":-93},{"x":175,"y":-18}],"type":"admin"},{"arc":[{"x":145852,"y":164040},{"x":37,"y":116},{"x":77,"y":80},{"x":35,"y":119},{"x":-56,"y":225},{"x":-70,"y":119},{"x":30,"y":127},{"x":-25,"y":47},{"x":67,"y":59},{"x":30,"y":132},{"x":79,"y":53},{"x":14,"y":97},{"x":81,"y":96},{"x":-15,"y":45},{"x":83,"y":33},{"x":43,"y":105},{"x":-128,"y":49},{"x":-8,"y":51},{"x":-231,"y":4},{"x":-78,"y":65},{"x":29,"y":57},{"x":-9,"y":66},{"x":52,"y":61},{"x":8,"y":86},{"x":40,"y":25},{"x":-13,"y":65},{"x":39,"y":55},{"x":-25,"y":88}],"type":"area"},{"arc":[{"x":149523,"y":164186},{"x":-133,"y":-98},{"x":-138,"y":-15},{"x":0,"y":-38},{"x":-44,"y":-23},{"x":-30,"y":-78},{"x":-120,"y":-48},{"x":-90,"y":23},{"x":-22,"y":-29},{"x":-54,"y":9},{"x":-12,"y":-19},{"x":-42,"y":31},{"x":-188,"y":-18},{"x":-79,"y":27},{"x":-13,"y":-88},{"x":53,"y":-106},{"x":-27,"y":-142},{"x":14,"y":-140},{"x":-36,"y":25},{"x":-28,"y":-42},{"x":-45,"y":24},{"x":-36,"y":-12},{"x":6,"y":44},{"x":-32,"y":15},{"x":-32,"y":-30},{"x":-114,"y":-14},{"x":-42,"y":-44},{"x":-70,"y":-4},{"x":50,"y":-50},{"x":-77,"y":-92},{"x":-142,"y":-29},{"x":-103,"y":-105},{"x":-84,"y":10},{"x":-188,"y":-96},{"x":-19,"y":46},{"x":-45,"y":-3},{"x":-2,"y":28},{"x":28,"y":4},{"x":-10,"y":41},{"x":-172,"y":-35},{"x":-10,"y":34},{"x":-42,"y":-13},{"x":-17,"y":50},{"x":-49,"y":-13},{"x":-137,"y":-161},{"x":-61,"y":77},{"x":-88,"y":2}],"type":"area"},{"arc":[{"x":147001,"y":163091},{"x":-32,"y":-285},{"x":26,"y":-147},{"x":151,"y":64},{"x":38,"y":-144},{"x":39,"y":-35},{"x":-32,"y":-20},{"x":40,"y":-1},{"x":19,"y":-79},{"x":26,"y":-29},{"x":58,"y":70},{"x":14,"y":-62},{"x":134,"y":-141},{"x":113,"y":-61},{"x":20,"y":-69}],"type":"area"},{"arc":[{"x":149669,"y":162607},{"x":-52,"y":158},{"x":148,"y":67},{"x":157,"y":33},{"x":25,"y":63},{"x":44,"y":16},{"x":-2,"y":36},{"x":134,"y":114},{"x":-7,"y":217}],"type":"admin"},{"arc":[{"x":147625,"y":165821},{"x":-46,"y":-41},{"x":-51,"y":7},{"x":-56,"y":98},{"x":-139,"y":54},{"x":-87,"y":119},{"x":-88,"y":-21},{"x":-66,"y":77},{"x":-44,"y":209},{"x":-182,"y":51},{"x":-191,"y":-119},{"x":-60,"y":78},{"x":-192,"y":30},{"x":-71,"y":210},{"x":61,"y":150},{"x":-13,"y":49},{"x":-120,"y":3},{"x":-54,"y":32},{"x":-35,"y":-27},{"x":-159,"y":14},{"x":-41,"y":-34},{"x":32,"y":-82},{"x":-33,"y":-114},{"x":18,"y":-92},{"x":-50,"y":-108},{"x":43,"y":-48},{"x":-56,"y":-58},{"x":-7,"y":-93}],"type":"area"},{"arc":[{"x":145852,"y":164040},{"x":-29,"y":-65}],"type":"admin"},{"arc":[{"x":145823,"y":163975},{"x":61,"y":-67},{"x":71,"y":20},{"x":65,"y":-38},{"x":-15,"y":-65},{"x":30,"y":-63},{"x":81,"y":15},{"x":155,"y":-73}],"type":"area"},{"arc":[{"x":146271,"y":163704},{"x":-3,"y":85},{"x":135,"y":66},{"x":25,"y":42},{"x":-4,"y":81},{"x":74,"y":104},{"x":-14,"y":116},{"x":106,"y":81},{"x":-20,"y":75},{"x":77,"y":17},{"x":78,"y":144},{"x":57,"y":9},{"x":52,"y":48},{"x":67,"y":-28},{"x":73,"y":23},{"x":150,"y":-36},{"x":85,"y":33},{"x":53,"y":76},{"x":64,"y":25},{"x":163,"y":-49},{"x":58,"y":16},{"x":107,"y":-17},{"x":198,"y":50}],"type":"area"},{"arc":[{"x":147852,"y":164665},{"x":138,"y":338},{"x":-8,"y":103},{"x":26,"y":69},{"x":-40,"y":68},{"x":15,"y":81},{"x":-31,"y":32},{"x":-18,"y":109},{"x":-150,"y":171},{"x":-43,"y":123},{"x":-116,"y":62}],"type":"admin"},{"arc":[{"x":148351,"y":160947},{"x":14,"y":142},{"x":-74,"y":67},{"x":-111,"y":-46},{"x":-44,"y":27},{"x":-188,"y":-86},{"x":-75,"y":12},{"x":-71,"y":-42},{"x":-80,"y":-110},{"x":19,"y":-10},{"x":-144,"y":-123},{"x":110,"y":-24},{"x":-20,"y":-27},{"x":19,"y":-48},{"x":-198,"y":-93},{"x":-163,"y":71},{"x":-24,"y":-23},{"x":-145,"y":172}],"type":"area"},{"arc":[{"x":147176,"y":160806},{"x":-54,"y":-85},{"x":-6,"y":-132},{"x":-121,"y":-356},{"x":33,"y":-20},{"x":1,"y":-74},{"x":96,"y":-88},{"x":10,"y":-120},{"x":-26,"y":-38},{"x":38,"y":-83},{"x":65,"y":-32},{"x":-30,"y":-79},{"x":32,"y":-2},{"x":46,"y":-77},{"x":16,"y":-84},{"x":-15,"y":-77},{"x":-100,"y":-22},{"x":-13,"y":-22},{"x":-34,"y":-159},{"x":98,"y":-205},{"x":101,"y":-20},{"x":47,"y":-39},{"x":56,"y":4},{"x":184,"y":-153}],"type":"area"},{"arc":[{"x":147600,"y":158843},{"x":33,"y":30},{"x":-41,"y":129},{"x":10,"y":64},{"x":87,"y":111},{"x":274,"y":155},{"x":98,"y":-10},{"x":-11,"y":88},{"x":50,"y":56},{"x":21,"y":122},{"x":-40,"y":130},{"x":116,"y":-93},{"x":47,"y":0},{"x":50,"y":-63},{"x":50,"y":84},{"x":48,"y":266},{"x":-88,"y":34},{"x":13,"y":70},{"x":88,"y":85},{"x":-69,"y":90},{"x":-207,"y":89},{"x":-203,"y":137},{"x":131,"y":92},{"x":141,"y":258},{"x":60,"y":50},{"x":62,"y":13},{"x":31,"y":117}],"type":"area"},{"arc":[{"x":147176,"y":160806},{"x":-52,"y":106},{"x":-258,"y":63},{"x":-240,"y":25},{"x":1,"y":42}],"type":"area"},{"arc":[{"x":146627,"y":161042},{"x":-126,"y":13}],"type":"admin"},{"arc":[{"x":146501,"y":161055},{"x":-16,"y":-41},{"x":-353,"y":30},{"x":-104,"y":-49},{"x":-35,"y":-49},{"x":-71,"y":-34},{"x":-24,"y":18},{"x":-34,"y":-29}],"type":"area"},{"arc":[{"x":145864,"y":160901},{"x":-119,"y":-175}],"type":"admin"},{"arc":[{"x":145745,"y":160726},{"x":39,"y":-42},{"x":72,"y":-1},{"x":72,"y":-95},{"x":35,"y":-116},{"x":-37,"y":-167},{"x":32,"y":-154},{"x":89,"y":-23},{"x":6,"y":-90},{"x":49,"y":20},{"x":37,"y":-29},{"x":-62,"y":-101},{"x":10,"y":-183},{"x":54,"y":-64},{"x":-55,"y":-85},{"x":-54,"y":-5},{"x":13,"y":-130},{"x":50,"y":-23},{"x":-15,"y":-60}],"type":"admin"},{"arc":[{"x":146080,"y":159378},{"x":13,"y":-101},{"x":92,"y":-43},{"x":71,"y":12},{"x":71,"y":-79},{"x":-86,"y":-136},{"x":-34,"y":-13},{"x":19,"y":-35},{"x":21,"y":19},{"x":49,"y":-37},{"x":16,"y":44},{"x":39,"y":-29},{"x":26,"y":30},{"x":36,"y":-31},{"x":18,"y":41},{"x":51,"y":15},{"x":168,"y":-39},{"x":-9,"y":35},{"x":24,"y":7},{"x":93,"y":-52},{"x":32,"y":-261},{"x":-35,"y":-82},{"x":25,"y":-236},{"x":61,"y":-143},{"x":-23,"y":-116},{"x":-33,"y":-13}],"type":"admin"},{"arc":[{"x":148140,"y":158147},{"x":-93,"y":49},{"x":-98,"y":0},{"x":-78,"y":76},{"x":-49,"y":210},{"x":-104,"y":59},{"x":-119,"y":173},{"x":1,"y":129}],"type":"area"},{"arc":[{"x":150144,"y":160919},{"x":10,"y":53},{"x":82,"y":29},{"x":46,"y":52},{"x":-98,"y":191},{"x":-11,"y":115},{"x":69,"y":157},{"x":-36,"y":9},{"x":13,"y":84},{"x":-75,"y":126},{"x":71,"y":46},{"x":34,"y":104},{"x":-79,"y":102},{"x":-47,"y":18},{"x":-6,"y":98},{"x":-123,"y":-52},{"x":-46,"y":5},{"x":-26,"y":-27},{"x":-195,"y":18},{"x":-61,"y":43},{"x":-40,"y":111}],"type":"admin"},{"arc":[{"x":148740,"y":161441},{"x":19,"y":-106},{"x":66,"y":-110},{"x":-55,"y":-87},{"x":-7,"y":-67},{"x":-58,"y":16},{"x":-147,"y":-23},{"x":-207,"y":-117}],"type":"area"},{"arc":[{"x":148501,"y":157824},{"x":40,"y":-76},{"x":80,"y":-60},{"x":57,"y":5},{"x":96,"y":49},{"x":32,"y":55},{"x":82,"y":35},{"x":45,"y":69},{"x":94,"y":-24},{"x":63,"y":13},{"x":110,"y":81},{"x":234,"y":112},{"x":27,"y":36},{"x":231,"y":57},{"x":91,"y":65},{"x":27,"y":133},{"x":-130,"y":147},{"x":-124,"y":74},{"x":-71,"y":111},{"x":136,"y":129},{"x":215,"y":116},{"x":205,"y":198},{"x":177,"y":69},{"x":111,"y":94},{"x":106,"y":36},{"x":88,"y":-7},{"x":115,"y":113},{"x":3,"y":41},{"x":83,"y":4}],"type":"admin"},{"arc":[{"x":150724,"y":159499},{"x":68,"y":16},{"x":58,"y":78},{"x":53,"y":11}],"type":"admin"},{"arc":[{"x":150903,"y":159604},{"x":1,"y":112},{"x":-65,"y":97},{"x":-87,"y":240},{"x":-6,"y":107},{"x":-99,"y":195},{"x":-73,"y":77},{"x":-90,"y":39},{"x":-115,"y":-71},{"x":-51,"y":10},{"x":-33,"y":-40},{"x":-59,"y":-2},{"x":-62,"y":48},{"x":-166,"y":58},{"x":49,"y":50},{"x":-95,"y":126},{"x":33,"y":113},{"x":-31,"y":78},{"x":92,"y":56},{"x":96,"y":-9},{"x":2,"y":31}],"type":"admin"},{"arc":[{"x":146797,"y":161344},{"x":-113,"y":-114},{"x":-80,"y":72},{"x":7,"y":-65},{"x":-26,"y":16},{"x":-16,"y":-28},{"x":29,"y":-31},{"x":29,"y":-152}],"type":"admin"},{"arc":[{"x":147001,"y":163091},{"x":-21,"y":71},{"x":-85,"y":-27},{"x":-67,"y":30},{"x":14,"y":-50},{"x":-46,"y":10},{"x":-73,"y":79},{"x":88,"y":-25},{"x":-110,"y":63},{"x":-3,"y":52},{"x":-31,"y":-5},{"x":24,"y":25},{"x":-32,"y":95},{"x":-94,"y":38},{"x":-22,"y":-14},{"x":-28,"y":105},{"x":-64,"y":22},{"x":24,"y":7},{"x":-17,"y":42},{"x":36,"y":73},{"x":-223,"y":22}],"type":"area"},{"arc":[{"x":145823,"y":163975},{"x":-119,"y":-23},{"x":-24,"y":-86},{"x":30,"y":-139},{"x":-93,"y":-106},{"x":-30,"y":-157},{"x":-124,"y":-215},{"x":-86,"y":-279},{"x":-86,"y":-121},{"x":-50,"y":-11},{"x":-51,"y":-63},{"x":-47,"y":-277}],"type":"admin"},{"arc":[{"x":145568,"y":167271},{"x":-77,"y":-234},{"x":57,"y":-42},{"x":7,"y":-36},{"x":-47,"y":-169},{"x":27,"y":-91},{"x":-31,"y":-101},{"x":-5,"y":-233}],"type":"admin"},{"arc":[{"x":147625,"y":165821},{"x":19,"y":208},{"x":86,"y":32},{"x":231,"y":175}],"type":"admin"},{"arc":[{"x":149478,"y":164693},{"x":-48,"y":17},{"x":-133,"y":-15},{"x":-41,"y":26},{"x":-79,"y":-56},{"x":-44,"y":12},{"x":-43,"y":-94},{"x":-53,"y":-8},{"x":-95,"y":90},{"x":-102,"y":-50},{"x":-33,"y":86},{"x":-72,"y":-4},{"x":-61,"y":26},{"x":-8,"y":45},{"x":-88,"y":-29},{"x":-60,"y":9},{"x":-45,"y":-55},{"x":-44,"y":-171},{"x":23,"y":-57},{"x":-26,"y":-251},{"x":-51,"y":35},{"x":-70,"y":-9},{"x":-139,"y":95},{"x":-78,"y":180},{"x":-102,"y":72}],"type":"admin"},{"arc":[{"x":147986,"y":164587},{"x":-29,"y":-13},{"x":-65,"y":31},{"x":-40,"y":60}],"type":"admin"},{"arc":[{"x":145591,"y":161812},{"x":-15,"y":-103},{"x":-57,"y":-7},{"x":-8,"y":-65},{"x":85,"y":-267},{"x":38,"y":-38},{"x":73,"y":41},{"x":61,"y":-26},{"x":55,"y":71},{"x":30,"y":-17},{"x":64,"y":33},{"x":26,"y":-7},{"x":-29,"y":-41},{"x":83,"y":-84},{"x":-85,"y":-104},{"x":-57,"y":-18},{"x":31,"y":-74},{"x":-5,"y":-124},{"x":-36,"y":-70},{"x":19,"y":-11}],"type":"admin"},{"arc":[{"x":146501,"y":161055},{"x":-2,"y":55},{"x":-167,"y":47},{"x":8,"y":43},{"x":44,"y":-7},{"x":-1,"y":20},{"x":-62,"y":21},{"x":-12,"y":67},{"x":110,"y":-12},{"x":16,"y":20},{"x":-16,"y":189}],"type":"admin"},{"arc":[{"x":145176,"y":161922},{"x":-54,"y":-394},{"x":60,"y":-196},{"x":-55,"y":-118},{"x":-71,"y":-24},{"x":-21,"y":-32},{"x":34,"y":-162},{"x":-73,"y":-102},{"x":-71,"y":38},{"x":-66,"y":3},{"x":13,"y":-40},{"x":-50,"y":-94},{"x":12,"y":-32},{"x":-91,"y":-53},{"x":-6,"y":-146},{"x":-28,"y":13},{"x":-15,"y":-31},{"x":-37,"y":1},{"x":-13,"y":-54},{"x":-44,"y":-13},{"x":-63,"y":-83},{"x":13,"y":-24},{"x":102,"y":17},{"x":141,"y":87},{"x":136,"y":-85}],"type":"area"},{"arc":[{"x":144929,"y":160398},{"x":39,"y":0},{"x":18,"y":114},{"x":105,"y":101},{"x":56,"y":-4},{"x":16,"y":20},{"x":19,"y":-18},{"x":8,"y":-86},{"x":38,"y":-43},{"x":-15,"y":-21},{"x":67,"y":-26},{"x":80,"y":6},{"x":40,"y":16},{"x":25,"y":55},{"x":-30,"y":13},{"x":-10,"y":80},{"x":65,"y":-9},{"x":6,"y":44},{"x":-2,"y":-38},{"x":28,"y":-10},{"x":92,"y":71},{"x":171,"y":63}],"type":"area"},{"arc":[{"x":146080,"y":159378},{"x":-74,"y":-46},{"x":13,"y":-22},{"x":-37,"y":-71},{"x":-173,"y":-67},{"x":-49,"y":-79},{"x":-45,"y":39},{"x":-159,"y":15},{"x":41,"y":66},{"x":-49,"y":237},{"x":-94,"y":3},{"x":-64,"y":-32},{"x":-106,"y":22},{"x":-72,"y":-13},{"x":-78,"y":53},{"x":-150,"y":26},{"x":-57,"y":74},{"x":-140,"y":15},{"x":-25,"y":18},{"x":4,"y":56},{"x":-102,"y":76}],"type":"area"},{"arc":[{"x":144664,"y":159748},{"x":-147,"y":-55},{"x":-213,"y":-1},{"x":-96,"y":84},{"x":-16,"y":126},{"x":-19,"y":-47},{"x":-55,"y":-22},{"x":-112,"y":174},{"x":-3,"y":-47},{"x":-52,"y":43},{"x":-73,"y":136},{"x":-112,"y":-30},{"x":-60,"y":10},{"x":-63,"y":-31},{"x":-21,"y":-132},{"x":-80,"y":-64},{"x":-15,"y":-49},{"x":-202,"y":15},{"x":-141,"y":-32},{"x":-77,"y":-49},{"x":-81,"y":-163},{"x":125,"y":-216},{"x":-119,"y":-86},{"x":-105,"y":9},{"x":-184,"y":-77}],"type":"area"},{"arc":[{"x":143302,"y":159398},{"x":44,"y":89},{"x":133,"y":-18},{"x":-20,"y":-51},{"x":-157,"y":-20}],"type":"area"},{"arc":[{"x":145000,"y":162002},{"x":-118,"y":-81},{"x":-154,"y":14},{"x":-64,"y":-105},{"x":5,"y":-40},{"x":-386,"y":22},{"x":-31,"y":-22}],"type":"admin"},{"arc":[{"x":144252,"y":161790},{"x":-62,"y":-46},{"x":-85,"y":-192},{"x":-140,"y":-60},{"x":-173,"y":-220},{"x":-92,"y":-6},{"x":-155,"y":48},{"x":-137,"y":-79}],"type":"admin"},{"arc":[{"x":143408,"y":161235},{"x":-15,"y":-78},{"x":30,"y":-74},{"x":-93,"y":-8},{"x":-85,"y":-61},{"x":-52,"y":10},{"x":-44,"y":-122},{"x":-102,"y":-29},{"x":-51,"y":-42},{"x":13,"y":-23},{"x":-37,"y":-57},{"x":-84,"y":-20},{"x":-86,"y":25},{"x":-49,"y":-45},{"x":-58,"y":49},{"x":-58,"y":2},{"x":-68,"y":-21},{"x":-45,"y":-50},{"x":-16,"y":-237},{"x":105,"y":-32},{"x":-27,"y":-221},{"x":-75,"y":-86},{"x":22,"y":-62},{"x":-70,"y":-85},{"x":-52,"y":-9},{"x":-35,"y":-82},{"x":-25,"y":-138},{"x":49,"y":-114}],"type":"area"},{"arc":[{"x":144664,"y":159748},{"x":62,"y":109},{"x":80,"y":39},{"x":9,"y":92},{"x":88,"y":82},{"x":-17,"y":18},{"x":46,"y":50},{"x":5,"y":56},{"x":-50,"y":25},{"x":18,"y":33},{"x":-41,"y":82},{"x":65,"y":64}],"type":"area"},{"arc":[{"x":143408,"y":161235},{"x":-38,"y":26},{"x":-334,"y":-13},{"x":-111,"y":56},{"x":-131,"y":2},{"x":-215,"y":-238},{"x":-130,"y":7},{"x":-56,"y":40},{"x":-58,"y":-1},{"x":-132,"y":54},{"x":-164,"y":-14},{"x":-45,"y":-51},{"x":-64,"y":-12},{"x":-87,"y":67},{"x":-289,"y":63},{"x":-24,"y":31},{"x":-92,"y":25},{"x":-83,"y":-51},{"x":-119,"y":58},{"x":-85,"y":2},{"x":-40,"y":-48},{"x":21,"y":-63}],"type":"admin"},{"arc":[{"x":144290,"y":165465},{"x":79,"y":-124},{"x":37,"y":-15}],"type":"area"},{"arc":[{"x":145352,"y":164111},{"x":164,"y":-40},{"x":63,"y":80}],"type":"area"},{"arc":[{"x":144312,"y":165092},{"x":-130,"y":-135},{"x":-4,"y":-169},{"x":-41,"y":-77},{"x":96,"y":-68},{"x":72,"y":70},{"x":76,"y":-131},{"x":8,"y":-22},{"x":-48,"y":-19},{"x":-89,"y":-7},{"x":-67,"y":-139},{"x":135,"y":-199},{"x":66,"y":-59},{"x":0,"y":-26}],"type":"area"},{"arc":[{"x":143681,"y":165249},{"x":-55,"y":-140},{"x":-126,"y":-155},{"x":-6,"y":-93},{"x":-52,"y":-57},{"x":-33,"y":9},{"x":139,"y":-123}],"type":"admin"},{"arc":[{"x":143202,"y":163329},{"x":35,"y":-122},{"x":-36,"y":-191},{"x":-39,"y":-19},{"x":-25,"y":-187},{"x":445,"y":-97},{"x":69,"y":-80},{"x":0,"y":-253}],"type":"admin"},{"arc":[{"x":143651,"y":162380},{"x":31,"y":48},{"x":94,"y":40},{"x":4,"y":34},{"x":110,"y":9},{"x":43,"y":133},{"x":47,"y":-1},{"x":98,"y":-56},{"x":155,"y":1},{"x":59,"y":-46},{"x":368,"y":105},{"x":79,"y":87},{"x":45,"y":217},{"x":82,"y":128},{"x":15,"y":107},{"x":-77,"y":105},{"x":32,"y":26},{"x":-71,"y":18},{"x":-131,"y":-56},{"x":-154,"y":-26},{"x":-7,"y":86},{"x":-64,"y":130},{"x":-204,"y":60}],"type":"area"},{"arc":[{"x":143651,"y":162380},{"x":-64,"y":-308},{"x":500,"y":-122},{"x":53,"y":-93},{"x":112,"y":-67}],"type":"admin"},{"arc":[{"x":147986,"y":164587},{"x":92,"y":178},{"x":204,"y":100},{"x":41,"y":96},{"x":-40,"y":83},{"x":58,"y":154},{"x":2,"y":83},{"x":141,"y":135},{"x":-69,"y":137},{"x":-55,"y":42},{"x":19,"y":60},{"x":-43,"y":85},{"x":12,"y":205}],"type":"area"},{"arc":[{"x":156766,"y":159920},{"x":-54,"y":-125},{"x":36,"y":-19},{"x":-34,"y":-299},{"x":-121,"y":-117},{"x":-41,"y":7},{"x":-72,"y":-37},{"x":-84,"y":5},{"x":-69,"y":-159},{"x":-67,"y":-21},{"x":-88,"y":-96},{"x":-25,"y":-86},{"x":-70,"y":-8},{"x":-12,"y":-133},{"x":-53,"y":-17},{"x":-66,"y":70},{"x":-27,"y":-30},{"x":-113,"y":139},{"x":1,"y":99},{"x":-33,"y":16},{"x":-49,"y":-50},{"x":-69,"y":59},{"x":-222,"y":-78},{"x":-81,"y":-72},{"x":-49,"y":-105}],"type":"area"},{"arc":[{"x":155304,"y":158863},{"x":-1,"y":-54},{"x":52,"y":-28},{"x":-208,"y":-77},{"x":-213,"y":24},{"x":-33,"y":-26}],"type":"admin"},{"arc":[{"x":154901,"y":158702},{"x":-22,"y":-79},{"x":130,"y":-65},{"x":10,"y":-92},{"x":-47,"y":-29},{"x":7,"y":-22},{"x":-60,"y":-10},{"x":-126,"y":-113},{"x":-171,"y":-3},{"x":-180,"y":29},{"x":-32,"y":-19},{"x":14,"y":-30},{"x":-33,"y":-76},{"x":-122,"y":4},{"x":-51,"y":-70},{"x":-81,"y":-16},{"x":-40,"y":-51},{"x":-3,"y":-231},{"x":35,"y":-14},{"x":-21,"y":-111},{"x":-78,"y":-122},{"x":29,"y":-60},{"x":-46,"y":-69},{"x":91,"y":-84},{"x":20,"y":-119},{"x":65,"y":-95},{"x":-16,"y":-54},{"x":-141,"y":-88}],"type":"admin"},{"arc":[{"x":155217,"y":156611},{"x":206,"y":294},{"x":-81,"y":53},{"x":153,"y":171},{"x":162,"y":-18},{"x":89,"y":150},{"x":150,"y":55},{"x":53,"y":52},{"x":33,"y":-19},{"x":67,"y":8},{"x":47,"y":-40},{"x":66,"y":25},{"x":65,"y":-11},{"x":38,"y":-32},{"x":19,"y":-47},{"x":-20,"y":-76},{"x":93,"y":-112},{"x":17,"y":-97}],"type":"admin"},{"arc":[{"x":156374,"y":156967},{"x":126,"y":-22},{"x":93,"y":42},{"x":153,"y":-35},{"x":47,"y":79}],"type":"admin"},{"arc":[{"x":156793,"y":157031},{"x":17,"y":72}],"type":"area"},{"arc":[{"x":156810,"y":157103},{"x":-44,"y":47},{"x":-9,"y":70},{"x":-58,"y":33},{"x":-42,"y":98},{"x":-79,"y":67},{"x":1,"y":43},{"x":-60,"y":58},{"x":52,"y":35},{"x":85,"y":402},{"x":43,"y":52},{"x":49,"y":337},{"x":137,"y":11},{"x":80,"y":-47},{"x":6,"y":-34},{"x":101,"y":-19},{"x":65,"y":-116},{"x":195,"y":20},{"x":45,"y":-94},{"x":96,"y":-23},{"x":131,"y":-183}],"type":"admin"},{"arc":[{"x":157604,"y":157860},{"x":91,"y":-33},{"x":38,"y":13}],"type":"area"},{"arc":[{"x":158229,"y":158994},{"x":-51,"y":42},{"x":-2,"y":84},{"x":-111,"y":107},{"x":28,"y":30},{"x":21,"y":156},{"x":101,"y":45},{"x":68,"y":238},{"x":-13,"y":126},{"x":-56,"y":44},{"x":-41,"y":88},{"x":-59,"y":37},{"x":3,"y":47}],"type":"area"},{"arc":[{"x":153258,"y":156687},{"x":-136,"y":-68},{"x":-35,"y":74},{"x":-73,"y":34},{"x":88,"y":17},{"x":61,"y":-18},{"x":-148,"y":66},{"x":-198,"y":31},{"x":68,"y":-75},{"x":-42,"y":-104},{"x":57,"y":-45},{"x":0,"y":-31},{"x":-121,"y":-45},{"x":-37,"y":26},{"x":-106,"y":-32},{"x":-70,"y":14},{"x":-80,"y":-51},{"x":-78,"y":38},{"x":-82,"y":-7},{"x":-130,"y":38},{"x":-111,"y":-22},{"x":-69,"y":30},{"x":-117,"y":107}],"type":"admin"},{"arc":[{"x":151899,"y":156664},{"x":-268,"y":-76},{"x":-82,"y":-51},{"x":-58,"y":-72},{"x":31,"y":-93},{"x":49,"y":-25},{"x":-150,"y":-187}],"type":"area"},{"arc":[{"x":151421,"y":156160},{"x":25,"y":-135},{"x":-59,"y":-99},{"x":55,"y":-89},{"x":-35,"y":-56},{"x":36,"y":-90},{"x":60,"y":8},{"x":53,"y":45},{"x":224,"y":26},{"x":158,"y":74}],"type":"admin"},{"arc":[{"x":152628,"y":157837},{"x":-56,"y":-13},{"x":-79,"y":-80},{"x":-71,"y":11},{"x":-30,"y":-116},{"x":-355,"y":-88},{"x":-56,"y":13},{"x":-60,"y":-50},{"x":-39,"y":11},{"x":11,"y":-26},{"x":-116,"y":-73},{"x":-50,"y":-87},{"x":-34,"y":15},{"x":-8,"y":53},{"x":-229,"y":-7},{"x":-59,"y":-216},{"x":-89,"y":9},{"x":-30,"y":-30},{"x":52,"y":-30},{"x":-9,"y":-19},{"x":-50,"y":42},{"x":-31,"y":-54},{"x":-107,"y":-59},{"x":-33,"y":-68},{"x":-99,"y":-44},{"x":-54,"y":13}],"type":"area"},{"arc":[{"x":150761,"y":156668},{"x":4,"y":-71},{"x":-128,"y":-58},{"x":-51,"y":-170},{"x":161,"y":-222},{"x":42,"y":-11}],"type":"admin"},{"arc":[{"x":150789,"y":156136},{"x":16,"y":94},{"x":98,"y":48},{"x":364,"y":-36},{"x":15,"y":-88},{"x":95,"y":-25},{"x":44,"y":31}],"type":"admin"},{"arc":[{"x":151899,"y":156664},{"x":154,"y":277},{"x":92,"y":80},{"x":47,"y":6},{"x":46,"y":79},{"x":53,"y":16},{"x":77,"y":-67},{"x":24,"y":43},{"x":-13,"y":100},{"x":90,"y":-10},{"x":99,"y":53},{"x":-32,"y":34},{"x":-2,"y":131},{"x":61,"y":172},{"x":89,"y":-107},{"x":8,"y":79},{"x":123,"y":-64}],"type":"admin"},{"arc":[{"x":152815,"y":157486},{"x":16,"y":38},{"x":-34,"y":70},{"x":36,"y":49},{"x":2,"y":80},{"x":-22,"y":28},{"x":-79,"y":-13},{"x":-59,"y":47},{"x":-12,"y":60},{"x":-35,"y":-8}],"type":"admin"},{"arc":[{"x":159897,"y":159201},{"x":-258,"y":73},{"x":-28,"y":51},{"x":-145,"y":30},{"x":-50,"y":245},{"x":37,"y":37},{"x":13,"y":125},{"x":-188,"y":83},{"x":-64,"y":179},{"x":-67,"y":34},{"x":-19,"y":34},{"x":23,"y":21},{"x":-56,"y":38},{"x":-12,"y":69},{"x":-67,"y":47},{"x":-24,"y":72}],"type":"admin"},{"arc":[{"x":159967,"y":158703},{"x":5,"y":341},{"x":-24,"y":72},{"x":-52,"y":40},{"x":1,"y":45}],"type":"admin"},{"arc":[{"x":156503,"y":161014},{"x":-60,"y":-105},{"x":-125,"y":-8},{"x":-47,"y":-36},{"x":-41,"y":2},{"x":-67,"y":-122},{"x":-100,"y":-18},{"x":-40,"y":-47},{"x":-354,"y":-175},{"x":38,"y":37},{"x":-40,"y":125},{"x":70,"y":-4},{"x":26,"y":45},{"x":-89,"y":7},{"x":-16,"y":-29},{"x":-52,"y":20},{"x":43,"y":37},{"x":66,"y":-14},{"x":-10,"y":72},{"x":114,"y":28},{"x":10,"y":42},{"x":-155,"y":-65},{"x":-34,"y":-42},{"x":-64,"y":4},{"x":-34,"y":-53},{"x":-85,"y":53},{"x":-69,"y":-19},{"x":-83,"y":18},{"x":-41,"y":-24},{"x":-18,"y":21}],"type":"admin"},{"arc":[{"x":155246,"y":160764},{"x":-19,"y":17},{"x":-38,"y":-74},{"x":-33,"y":46},{"x":-36,"y":-42},{"x":-47,"y":78},{"x":-41,"y":-5},{"x":-41,"y":-48},{"x":-1,"y":-110},{"x":-99,"y":-105},{"x":-33,"y":-116},{"x":-45,"y":-16},{"x":-10,"y":-49},{"x":25,"y":-1},{"x":1,"y":-109},{"x":35,"y":-12},{"x":-1,"y":-50},{"x":-67,"y":1},{"x":-19,"y":28},{"x":-19,"y":-28},{"x":68,"y":-42},{"x":2,"y":-41},{"x":100,"y":15},{"x":30,"y":-17},{"x":80,"y":-168},{"x":-50,"y":-81},{"x":42,"y":-67}],"type":"area"},{"arc":[{"x":155030,"y":159768},{"x":73,"y":-29},{"x":22,"y":-73},{"x":151,"y":-36},{"x":55,"y":-82},{"x":56,"y":-17},{"x":91,"y":33},{"x":33,"y":95},{"x":-17,"y":112},{"x":88,"y":-74},{"x":25,"y":21},{"x":12,"y":-19},{"x":103,"y":76},{"x":-8,"y":-59},{"x":286,"y":142},{"x":-64,"y":-1},{"x":87,"y":152},{"x":-53,"y":-36},{"x":-29,"y":11},{"x":17,"y":48},{"x":71,"y":51},{"x":-15,"y":83},{"x":27,"y":40},{"x":42,"y":15},{"x":40,"y":78},{"x":83,"y":4},{"x":267,"y":203}],"type":"area"},{"arc":[{"x":147514,"y":156408},{"x":-35,"y":-64},{"x":15,"y":-47},{"x":-46,"y":-41},{"x":-88,"y":-34},{"x":-68,"y":22},{"x":-156,"y":-18},{"x":-85,"y":-87}],"type":"admin"},{"arc":[{"x":147051,"y":156139},{"x":98,"y":-90},{"x":16,"y":-73},{"x":-38,"y":-58},{"x":85,"y":-152},{"x":-53,"y":-142},{"x":78,"y":-15},{"x":48,"y":-61}],"type":"admin"},{"arc":[{"x":147285,"y":155548},{"x":78,"y":-15},{"x":-48,"y":-137},{"x":-65,"y":-84},{"x":-9,"y":-68},{"x":134,"y":71},{"x":100,"y":-41},{"x":2,"y":-197},{"x":70,"y":-220},{"x":-61,"y":-146},{"x":1,"y":-74},{"x":-38,"y":-1},{"x":-26,"y":-31},{"x":-40,"y":-140},{"x":39,"y":-41},{"x":37,"y":17},{"x":25,"y":-40},{"x":-13,"y":-56},{"x":34,"y":10},{"x":18,"y":-30},{"x":-18,"y":-97},{"x":107,"y":-256},{"x":70,"y":-92}],"type":"admin"},{"arc":[{"x":147682,"y":153880},{"x":33,"y":-1},{"x":69,"y":-113},{"x":85,"y":-18},{"x":112,"y":-8},{"x":163,"y":109},{"x":331,"y":-51}],"type":"admin"},{"arc":[{"x":148475,"y":153798},{"x":24,"y":4}],"type":"admin"},{"arc":[{"x":148499,"y":153802},{"x":-33,"y":91},{"x":-136,"y":133},{"x":-23,"y":94},{"x":-77,"y":68},{"x":2,"y":108},{"x":-160,"y":33},{"x":49,"y":65},{"x":-49,"y":84},{"x":36,"y":923},{"x":98,"y":-53},{"x":253,"y":12}],"type":"admin"},{"arc":[{"x":161736,"y":159748},{"x":-3,"y":136},{"x":-149,"y":-26},{"x":-165,"y":19},{"x":-41,"y":72}],"type":"admin"},{"arc":[{"x":161378,"y":159949},{"x":-46,"y":27},{"x":-78,"y":-23},{"x":-82,"y":-88},{"x":-71,"y":-26},{"x":-69,"y":-102},{"x":-29,"y":77},{"x":-100,"y":71},{"x":-130,"y":-39},{"x":-29,"y":-60},{"x":-41,"y":-4},{"x":-81,"y":14},{"x":-74,"y":62},{"x":-119,"y":-6},{"x":-43,"y":-24},{"x":-191,"y":75},{"x":-84,"y":65}],"type":"admin"},{"arc":[{"x":160111,"y":159968},{"x":-38,"y":-112},{"x":40,"y":-169},{"x":63,"y":-110},{"x":-21,"y":-52},{"x":-97,"y":-69},{"x":23,"y":-82}],"type":"admin"},{"arc":[{"x":160081,"y":159374},{"x":150,"y":-100},{"x":89,"y":54},{"x":40,"y":-63},{"x":67,"y":-31},{"x":5,"y":-86},{"x":-29,"y":-27},{"x":32,"y":-54},{"x":-48,"y":-78}],"type":"admin"},{"arc":[{"x":160703,"y":158814},{"x":58,"y":39},{"x":50,"y":-35},{"x":19,"y":57},{"x":57,"y":4},{"x":45,"y":40},{"x":101,"y":-45},{"x":128,"y":33},{"x":72,"y":-33},{"x":31,"y":-60},{"x":-20,"y":-32},{"x":18,"y":-115},{"x":52,"y":33},{"x":37,"y":-39},{"x":99,"y":16},{"x":56,"y":-71},{"x":56,"y":18},{"x":27,"y":75},{"x":8,"y":-25},{"x":42,"y":-10},{"x":10,"y":25},{"x":98,"y":-60},{"x":106,"y":-5}],"type":"admin"},{"arc":[{"x":161853,"y":158624},{"x":41,"y":97},{"x":-11,"y":94},{"x":-55,"y":70},{"x":-91,"y":-7},{"x":-29,"y":-25},{"x":-67,"y":64},{"x":-32,"y":96},{"x":29,"y":46},{"x":-78,"y":12},{"x":-90,"y":59},{"x":-3,"y":140},{"x":-34,"y":72},{"x":3,"y":105},{"x":27,"y":30},{"x":53,"y":9},{"x":158,"y":-58},{"x":193,"y":104},{"x":-56,"y":131},{"x":-74,"y":2},{"x":-18,"y":24},{"x":17,"y":59}],"type":"area"},{"arc":[{"x":159478,"y":154837},{"x":-108,"y":43},{"x":-55,"y":73},{"x":-155,"y":-72},{"x":-68,"y":8},{"x":-43,"y":65},{"x":-21,"y":-16},{"x":-82,"y":91},{"x":-93,"y":-1},{"x":-62,"y":144}],"type":"admin"},{"arc":[{"x":157402,"y":155290},{"x":51,"y":-49},{"x":-14,"y":-97},{"x":-20,"y":-22},{"x":-71,"y":21},{"x":-121,"y":-131}],"type":"admin"},{"arc":[{"x":157227,"y":155012},{"x":-17,"y":-45},{"x":-44,"y":-17},{"x":91,"y":-22},{"x":23,"y":-67},{"x":-13,"y":-254},{"x":-173,"y":20},{"x":-148,"y":48},{"x":-40,"y":-120},{"x":-26,"y":7},{"x":-15,"y":-32},{"x":-45,"y":17},{"x":0,"y":-49},{"x":52,"y":-20},{"x":-36,"y":-31},{"x":8,"y":-25}],"type":"admin"},{"arc":[{"x":156844,"y":154422},{"x":-47,"y":-132},{"x":24,"y":-2},{"x":50,"y":-125},{"x":36,"y":-1},{"x":1,"y":-46},{"x":-3,"y":-92},{"x":-53,"y":-114},{"x":63,"y":-33},{"x":68,"y":-1},{"x":11,"y":-26},{"x":-39,"y":-29},{"x":-11,"y":-55},{"x":-78,"y":-37},{"x":-23,"y":-3},{"x":-29,"y":68},{"x":-47,"y":16},{"x":-34,"y":-23},{"x":-106,"y":-7},{"x":-49,"y":-37},{"x":18,"y":-110},{"x":-81,"y":-112},{"x":12,"y":-121},{"x":-51,"y":-36},{"x":-14,"y":-135}],"type":"admin"},{"arc":[{"x":156462,"y":153229},{"x":98,"y":-72},{"x":12,"y":-71},{"x":75,"y":-110},{"x":-107,"y":-178},{"x":-89,"y":-8},{"x":-129,"y":40},{"x":-159,"y":-93},{"x":-131,"y":28},{"x":-148,"y":-83}],"type":"area"},{"arc":[{"x":155583,"y":152110},{"x":17,"y":-105},{"x":285,"y":-181},{"x":64,"y":-186},{"x":-18,"y":-61},{"x":41,"y":-73},{"x":225,"y":3}],"type":"admin"},{"arc":[{"x":159675,"y":153298},{"x":-25,"y":56},{"x":-76,"y":55},{"x":-68,"y":229},{"x":10,"y":49},{"x":-75,"y":64},{"x":-51,"y":-5},{"x":-60,"y":69},{"x":-13,"y":67},{"x":-47,"y":36},{"x":-102,"y":-10},{"x":-9,"y":46},{"x":-75,"y":-24},{"x":-48,"y":16},{"x":2,"y":112},{"x":97,"y":31},{"x":19,"y":205},{"x":-40,"y":113},{"x":156,"y":-8},{"x":7,"y":74},{"x":78,"y":89},{"x":11,"y":139},{"x":60,"y":11},{"x":52,"y":125}],"type":"admin"},{"arc":[{"x":164271,"y":161149},{"x":-133,"y":-15},{"x":-130,"y":-73},{"x":-109,"y":-159},{"x":-120,"y":-48},{"x":-114,"y":25}],"type":"admin"},{"arc":[{"x":163665,"y":160879},{"x":-41,"y":-110},{"x":-4,"y":-229},{"x":-218,"y":-196},{"x":-51,"y":-112},{"x":-25,"y":-9},{"x":-60,"y":40},{"x":-42,"y":-27},{"x":30,"y":-74},{"x":-23,"y":-25},{"x":-133,"y":5},{"x":-52,"y":-42},{"x":-151,"y":5},{"x":-38,"y":23},{"x":62,"y":41},{"x":31,"y":-14},{"x":-4,"y":19},{"x":-112,"y":30},{"x":-37,"y":-59},{"x":-60,"y":149},{"x":-133,"y":45},{"x":-170,"y":210}],"type":"admin"},{"arc":[{"x":162434,"y":160549},{"x":-96,"y":-158},{"x":16,"y":-78},{"x":-55,"y":-172},{"x":15,"y":-107},{"x":28,"y":-56},{"x":50,"y":-8},{"x":19,"y":-57},{"x":-110,"y":-38},{"x":-27,"y":58},{"x":-45,"y":4},{"x":-46,"y":-36},{"x":-128,"y":-30},{"x":0,"y":-21},{"x":-37,"y":-6},{"x":69,"y":-19},{"x":-4,"y":-37},{"x":-11,"y":-32},{"x":-41,"y":-10},{"x":-36,"y":8},{"x":4,"y":37},{"x":-82,"y":101},{"x":-78,"y":-108},{"x":-20,"y":17},{"x":-83,"y":-53}],"type":"admin"},{"arc":[{"x":161853,"y":158624},{"x":52,"y":-8}],"type":"admin"},{"arc":[{"x":152634,"y":159141},{"x":-14,"y":18},{"x":-84,"y":-28},{"x":-115,"y":34},{"x":-63,"y":-88},{"x":-12,"y":149},{"x":-132,"y":-16},{"x":-82,"y":21},{"x":-90,"y":114},{"x":-174,"y":28},{"x":-12,"y":54}],"type":"admin"},{"arc":[{"x":151856,"y":159427},{"x":-63,"y":32},{"x":-95,"y":-8},{"x":-32,"y":57},{"x":-57,"y":-23},{"x":-123,"y":28}],"type":"admin"},{"arc":[{"x":151486,"y":159513},{"x":-58,"y":-26},{"x":-7,"y":36},{"x":-116,"y":24},{"x":-174,"y":94},{"x":-80,"y":5},{"x":-148,"y":-42}],"type":"admin"},{"arc":[{"x":150903,"y":159604},{"x":39,"y":-221},{"x":2,"y":-264},{"x":-26,"y":-49},{"x":40,"y":-96},{"x":-3,"y":-245},{"x":30,"y":18},{"x":86,"y":-583},{"x":-1,"y":-175},{"x":-29,"y":34},{"x":-18,"y":-57},{"x":-52,"y":11},{"x":-3,"y":-48},{"x":-21,"y":21},{"x":-13,"y":-170},{"x":33,"y":-101},{"x":-24,"y":12},{"x":-6,"y":-59},{"x":-31,"y":33},{"x":-15,"y":-59},{"x":-68,"y":92},{"x":-14,"y":-46},{"x":-18,"y":43},{"x":-15,"y":-23},{"x":-29,"y":44},{"x":-11,"y":-17},{"x":0,"y":55},{"x":-64,"y":30},{"x":-39,"y":172},{"x":-27,"y":-51},{"x":-28,"y":60},{"x":-16,"y":-57},{"x":15,"y":122},{"x":-16,"y":-21},{"x":-32,"y":24},{"x":12,"y":37},{"x":-26,"y":-37}],"type":"admin"},{"arc":[{"x":150515,"y":158033},{"x":-31,"y":-73},{"x":16,"y":-108},{"x":-51,"y":3},{"x":23,"y":-30},{"x":-33,"y":-46},{"x":37,"y":-25},{"x":-36,"y":-14},{"x":65,"y":-56},{"x":-69,"y":-15},{"x":-31,"y":-51},{"x":-195,"y":-98}],"type":"admin"},{"arc":[{"x":152628,"y":157837},{"x":-4,"y":158},{"x":-28,"y":22},{"x":67,"y":184}],"type":"admin"},{"arc":[{"x":152663,"y":158201},{"x":-30,"y":-9},{"x":-30,"y":98},{"x":-62,"y":43},{"x":-75,"y":-9},{"x":-47,"y":213},{"x":-61,"y":86},{"x":45,"y":114},{"x":49,"y":42},{"x":38,"y":-5},{"x":106,"y":57},{"x":72,"y":62}],"type":"admin"},{"arc":[{"x":152668,"y":158893},{"x":-16,"y":82},{"x":36,"y":87},{"x":-54,"y":79}],"type":"area"},{"arc":[{"x":153282,"y":160877},{"x":-32,"y":31},{"x":-5,"y":-73},{"x":97,"y":-13},{"x":-7,"y":41},{"x":-53,"y":14}],"type":"admin"},{"arc":[{"x":154836,"y":161768},{"x":-48,"y":213}],"type":"admin"},{"arc":[{"x":153392,"y":161742},{"x":34,"y":-139},{"x":-24,"y":-298},{"x":-46,"y":-148},{"x":39,"y":-33},{"x":-20,"y":-95},{"x":32,"y":-38},{"x":-23,"y":-59},{"x":45,"y":-51},{"x":6,"y":-56},{"x":36,"y":1},{"x":68,"y":-57},{"x":-72,"y":-33},{"x":-66,"y":-79},{"x":15,"y":-134},{"x":-28,"y":-103},{"x":-35,"y":-15},{"x":15,"y":-179},{"x":-42,"y":-7},{"x":-82,"y":-109},{"x":-23,"y":-103},{"x":-75,"y":-71},{"x":-73,"y":-181},{"x":-285,"y":-322},{"x":16,"y":-109},{"x":-22,"y":-35},{"x":-109,"y":-81},{"x":-39,"y":-67}],"type":"admin"},{"arc":[{"x":152668,"y":158893},{"x":101,"y":-17},{"x":104,"y":17},{"x":85,"y":-82},{"x":164,"y":-54},{"x":33,"y":-62},{"x":139,"y":10},{"x":7,"y":-24},{"x":47,"y":-11},{"x":170,"y":22},{"x":164,"y":70},{"x":128,"y":4},{"x":74,"y":60},{"x":326,"y":90},{"x":158,"y":121},{"x":99,"y":148},{"x":90,"y":44},{"x":23,"y":45},{"x":136,"y":-7},{"x":68,"y":-55},{"x":32,"y":73},{"x":29,"y":10},{"x":-3,"y":38},{"x":39,"y":-46},{"x":83,"y":24}],"type":"admin"},{"arc":[{"x":154964,"y":159311},{"x":52,"y":70},{"x":40,"y":206},{"x":-57,"y":65},{"x":-115,"y":6},{"x":46,"y":5},{"x":45,"y":55},{"x":36,"y":3},{"x":-24,"y":6},{"x":43,"y":41}],"type":"area"},{"arc":[{"x":155246,"y":160764},{"x":15,"y":82},{"x":-117,"y":-57},{"x":-46,"y":2},{"x":-17,"y":38},{"x":-97,"y":-55},{"x":-47,"y":26},{"x":177,"y":86},{"x":-71,"y":67},{"x":-25,"y":-9},{"x":13,"y":144},{"x":-37,"y":47},{"x":-147,"y":74},{"x":34,"y":174},{"x":-76,"y":154},{"x":1,"y":187},{"x":30,"y":44}],"type":"admin"},{"arc":[{"x":157604,"y":157860},{"x":-74,"y":-17},{"x":-30,"y":-33},{"x":-91,"y":-215},{"x":-102,"y":1},{"x":-51,"y":-32},{"x":0,"y":-123},{"x":-43,"y":-44},{"x":-72,"y":127},{"x":-126,"y":-47},{"x":28,"y":-65},{"x":-93,"y":-162},{"x":-32,"y":4},{"x":11,"y":-74},{"x":-119,"y":-77}],"type":"admin"},{"arc":[{"x":156793,"y":157031},{"x":154,"y":-38},{"x":98,"y":-66},{"x":30,"y":-57},{"x":121,"y":-1},{"x":-8,"y":-40},{"x":69,"y":-91},{"x":15,"y":-89}],"type":"admin"},{"arc":[{"x":157272,"y":156649},{"x":38,"y":25},{"x":61,"y":-140},{"x":104,"y":11},{"x":-1,"y":-155},{"x":54,"y":-138},{"x":-91,"y":-74}],"type":"admin"},{"arc":[{"x":154964,"y":159311},{"x":138,"y":-8},{"x":7,"y":-21},{"x":17,"y":18},{"x":30,"y":-40},{"x":112,"y":39},{"x":12,"y":-25},{"x":53,"y":-8},{"x":16,"y":25},{"x":17,"y":-58},{"x":-32,"y":-7},{"x":-51,"y":-71},{"x":-40,"y":18},{"x":-92,"y":-42},{"x":-10,"y":-56},{"x":0,"y":-22},{"x":26,"y":-18},{"x":56,"y":8},{"x":-35,"y":-12},{"x":-43,"y":7},{"x":13,"y":-202},{"x":64,"y":-10},{"x":82,"y":37}],"type":"admin"},{"arc":[{"x":156462,"y":153229},{"x":-97,"y":1},{"x":-94,"y":86},{"x":-48,"y":84},{"x":74,"y":61},{"x":-14,"y":91},{"x":-57,"y":57},{"x":36,"y":202},{"x":-38,"y":58},{"x":-9,"y":99},{"x":-86,"y":21},{"x":-43,"y":38},{"x":162,"y":231},{"x":-95,"y":116},{"x":4,"y":28},{"x":-94,"y":52}],"type":"admin"},{"arc":[{"x":156063,"y":154454},{"x":-20,"y":43},{"x":-174,"y":122},{"x":53,"y":79},{"x":26,"y":110},{"x":-37,"y":16},{"x":13,"y":39},{"x":99,"y":-64},{"x":207,"y":-40},{"x":35,"y":18},{"x":-9,"y":37},{"x":-63,"y":57},{"x":40,"y":30},{"x":68,"y":-53},{"x":60,"y":-7},{"x":84,"y":89},{"x":31,"y":-14},{"x":-4,"y":79}],"type":"admin"},{"arc":[{"x":156472,"y":154995},{"x":-53,"y":-37},{"x":-79,"y":92},{"x":-101,"y":-40},{"x":-148,"y":45},{"x":48,"y":51},{"x":17,"y":78},{"x":-38,"y":37},{"x":7,"y":36},{"x":138,"y":76},{"x":120,"y":159}],"type":"admin"},{"arc":[{"x":156383,"y":155492},{"x":-12,"y":22},{"x":-61,"y":-6},{"x":-39,"y":54},{"x":-65,"y":25},{"x":-37,"y":86},{"x":-137,"y":13}],"type":"admin"},{"arc":[{"x":152487,"y":161793},{"x":-117,"y":12},{"x":-53,"y":-70},{"x":11,"y":-39},{"x":-33,"y":-50},{"x":-85,"y":-74},{"x":19,"y":-82},{"x":-40,"y":-71},{"x":41,"y":-38},{"x":-66,"y":-183},{"x":19,"y":-91},{"x":-66,"y":-48},{"x":-18,"y":17},{"x":-73,"y":-83}],"type":"area"},{"arc":[{"x":152026,"y":160993},{"x":-79,"y":-38},{"x":-15,"y":-65},{"x":-59,"y":-29},{"x":-129,"y":-10}],"type":"area"},{"arc":[{"x":151744,"y":160851},{"x":-14,"y":-54},{"x":79,"y":-60},{"x":80,"y":-13},{"x":51,"y":-96},{"x":-76,"y":-63},{"x":-90,"y":11},{"x":-205,"y":-199},{"x":6,"y":-378},{"x":-100,"y":-234},{"x":11,"y":-252}],"type":"area"},{"arc":[{"x":151856,"y":159427},{"x":90,"y":141},{"x":162,"y":-9},{"x":26,"y":16},{"x":17,"y":30},{"x":-65,"y":73},{"x":23,"y":22},{"x":-38,"y":8},{"x":37,"y":98},{"x":64,"y":66},{"x":4,"y":59},{"x":42,"y":4},{"x":1,"y":37},{"x":44,"y":31},{"x":-1,"y":51},{"x":293,"y":298},{"x":87,"y":160},{"x":31,"y":-38},{"x":217,"y":156},{"x":-201,"y":61},{"x":-14,"y":32},{"x":-73,"y":27},{"x":24,"y":9},{"x":-23,"y":69},{"x":19,"y":94},{"x":-58,"y":50},{"x":145,"y":110},{"x":0,"y":62},{"x":-77,"y":133},{"x":31,"y":18},{"x":31,"y":119},{"x":-146,"y":192},{"x":2,"y":71},{"x":-63,"y":116}],"type":"area"},{"arc":[{"x":150144,"y":160919},{"x":83,"y":-5},{"x":104,"y":-73},{"x":180,"y":-5},{"x":103,"y":-66},{"x":26,"y":29},{"x":97,"y":3},{"x":111,"y":206},{"x":105,"y":87},{"x":-13,"y":-108},{"x":143,"y":-48},{"x":43,"y":70},{"x":-8,"y":44},{"x":-48,"y":1},{"x":-100,"y":64},{"x":83,"y":64},{"x":37,"y":0},{"x":-10,"y":117},{"x":76,"y":51},{"x":43,"y":194}],"type":"area"},{"arc":[{"x":151199,"y":161544},{"x":-38,"y":96},{"x":42,"y":192},{"x":-53,"y":160},{"x":27,"y":236},{"x":-62,"y":63},{"x":-14,"y":125},{"x":77,"y":171},{"x":-41,"y":67},{"x":31,"y":82},{"x":-7,"y":158}],"type":"area"},{"arc":[{"x":151744,"y":160851},{"x":10,"y":122},{"x":-56,"y":20},{"x":-55,"y":-25},{"x":-75,"y":85},{"x":-5,"y":108},{"x":-50,"y":38},{"x":-10,"y":105},{"x":-141,"y":131},{"x":-16,"y":68},{"x":-81,"y":44},{"x":-66,"y":-3}],"type":"area"},{"arc":[{"x":152026,"y":160993},{"x":-67,"y":264},{"x":-108,"y":142},{"x":-8,"y":172},{"x":-69,"y":33},{"x":-62,"y":122},{"x":-45,"y":305},{"x":23,"y":21},{"x":-55,"y":132},{"x":-12,"y":119}],"type":"area"},{"arc":[{"x":152487,"y":161793},{"x":16,"y":299},{"x":-38,"y":166},{"x":-44,"y":37}],"type":"area"},{"arc":[{"x":154836,"y":161768},{"x":99,"y":-29},{"x":125,"y":-84},{"x":-16,"y":-69},{"x":62,"y":-26},{"x":4,"y":-44},{"x":160,"y":-40},{"x":0,"y":48},{"x":59,"y":-1},{"x":55,"y":34},{"x":27,"y":-66},{"x":-36,"y":-70},{"x":30,"y":-47},{"x":-33,"y":-87},{"x":77,"y":-67},{"x":-4,"y":-26},{"x":32,"y":-4},{"x":-25,"y":-42},{"x":126,"y":38},{"x":213,"y":-91},{"x":366,"y":-37},{"x":108,"y":-37},{"x":147,"y":128}],"type":"area"},{"arc":[{"x":152663,"y":158201},{"x":241,"y":254},{"x":278,"y":168},{"x":534,"y":92},{"x":338,"y":-17},{"x":171,"y":68},{"x":74,"y":46},{"x":11,"y":37},{"x":68,"y":20},{"x":85,"y":-35},{"x":73,"y":-101},{"x":107,"y":23},{"x":52,"y":-42},{"x":88,"y":8},{"x":43,"y":-43},{"x":75,"y":23}],"type":"area"},{"arc":[{"x":155973,"y":156593},{"x":79,"y":-65},{"x":87,"y":-5},{"x":31,"y":-38},{"x":138,"y":-54},{"x":46,"y":22},{"x":31,"y":62},{"x":-2,"y":95},{"x":30,"y":27},{"x":-24,"y":86},{"x":28,"y":52},{"x":-97,"y":160},{"x":54,"y":32}],"type":"admin"},{"arc":[{"x":152815,"y":157486},{"x":-14,"y":-40},{"x":44,"y":-37},{"x":57,"y":-14},{"x":11,"y":-26},{"x":95,"y":-10},{"x":80,"y":-63},{"x":-2,"y":-74},{"x":55,"y":-56},{"x":186,"y":-8},{"x":45,"y":-63}],"type":"area"},{"arc":[{"x":150515,"y":158033},{"x":26,"y":61},{"x":-23,"y":-44},{"x":5,"y":54},{"x":-58,"y":-82},{"x":6,"y":61},{"x":-47,"y":77},{"x":19,"y":19},{"x":-46,"y":9},{"x":124,"y":135},{"x":34,"y":-12},{"x":74,"y":217},{"x":-24,"y":29},{"x":22,"y":14},{"x":33,"y":-23},{"x":27,"y":46},{"x":-21,"y":11},{"x":114,"y":124},{"x":58,"y":188},{"x":-114,"y":582}],"type":"area"},{"arc":[{"x":150789,"y":156136},{"x":-55,"y":9},{"x":-158,"y":-159},{"x":-19,"y":-41},{"x":86,"y":-135},{"x":10,"y":-108},{"x":-41,"y":-18},{"x":-54,"y":24},{"x":-32,"y":-47},{"x":31,"y":-17},{"x":21,"y":-68},{"x":-30,"y":-26},{"x":-18,"y":-102},{"x":156,"y":-224},{"x":29,"y":-122},{"x":-78,"y":-21},{"x":-142,"y":-201},{"x":-67,"y":-38},{"x":-25,"y":-67},{"x":19,"y":-58},{"x":-99,"y":-112}],"type":"area"},{"arc":[{"x":150323,"y":154605},{"x":-34,"y":-77},{"x":-128,"y":-26},{"x":-57,"y":-58},{"x":59,"y":-54},{"x":-11,"y":-80}],"type":"area"},{"arc":[{"x":149725,"y":155656},{"x":58,"y":53},{"x":46,"y":-29},{"x":-23,"y":-12},{"x":10,"y":-30},{"x":92,"y":8},{"x":63,"y":-37},{"x":-34,"y":-37},{"x":25,"y":-13},{"x":-16,"y":-110},{"x":31,"y":-38},{"x":0,"y":-149}],"type":"area"},{"arc":[{"x":150070,"y":155022},{"x":12,"y":-73},{"x":67,"y":-96},{"x":78,"y":-47},{"x":-12,"y":-27},{"x":108,"y":-174}],"type":"area"},{"arc":[{"x":147285,"y":155548},{"x":-14,"y":-58},{"x":-95,"y":13},{"x":-1,"y":-36},{"x":-38,"y":10},{"x":-74,"y":-53},{"x":7,"y":-38},{"x":54,"y":-36},{"x":5,"y":-68},{"x":-63,"y":-43},{"x":-97,"y":6},{"x":-78,"y":-40},{"x":-13,"y":-99},{"x":71,"y":-136},{"x":-72,"y":21},{"x":-29,"y":-14},{"x":6,"y":-34},{"x":-101,"y":-50},{"x":30,"y":-95},{"x":-73,"y":-67}],"type":"area"},{"arc":[{"x":146710,"y":154731},{"x":-5,"y":-107},{"x":-54,"y":-25},{"x":-4,"y":-51},{"x":60,"y":-131},{"x":110,"y":-36},{"x":54,"y":-211},{"x":-178,"y":-95},{"x":61,"y":-143},{"x":6,"y":-136}],"type":"admin"},{"arc":[{"x":146908,"y":153719},{"x":125,"y":1},{"x":112,"y":41},{"x":88,"y":-23},{"x":138,"y":109},{"x":114,"y":-28},{"x":64,"y":47},{"x":133,"y":14}],"type":"admin"},{"arc":[{"x":147051,"y":156139},{"x":-308,"y":42},{"x":-72,"y":-11},{"x":-111,"y":-83},{"x":-41,"y":1},{"x":-138,"y":-78},{"x":-212,"y":-212}],"type":"admin"},{"arc":[{"x":146169,"y":155798},{"x":157,"y":-110},{"x":-36,"y":-115},{"x":6,"y":-95},{"x":-67,"y":-109},{"x":93,"y":-201},{"x":-87,"y":-90},{"x":91,"y":-82},{"x":42,"y":-83},{"x":47,"y":-36},{"x":21,"y":14},{"x":71,"y":-108},{"x":74,"y":21},{"x":36,"y":-26},{"x":87,"y":13},{"x":6,"y":-60}],"type":"admin"},{"arc":[{"x":148499,"y":153802},{"x":103,"y":-48}],"type":"admin"},{"arc":[{"x":148602,"y":153754},{"x":145,"y":214},{"x":65,"y":30}],"type":"admin"},{"arc":[{"x":146169,"y":155798},{"x":-117,"y":-90},{"x":-41,"y":-5},{"x":-127,"y":124},{"x":-61,"y":-5},{"x":-32,"y":22},{"x":-81,"y":120},{"x":-106,"y":-8},{"x":-57,"y":-49}],"type":"area"},{"arc":[{"x":145547,"y":155907},{"x":54,"y":-49},{"x":39,"y":18},{"x":105,"y":-202},{"x":154,"y":-86},{"x":48,"y":-65},{"x":-54,"y":-157},{"x":-44,"y":-29},{"x":-42,"y":-106},{"x":23,"y":3},{"x":-22,"y":-45},{"x":16,"y":-59},{"x":36,"y":-15},{"x":68,"y":-123},{"x":-7,"y":-55},{"x":-47,"y":-14}],"type":"area"},{"arc":[{"x":145874,"y":154923},{"x":66,"y":-125},{"x":51,"y":-9},{"x":37,"y":-38},{"x":-25,"y":-19},{"x":17,"y":-39},{"x":72,"y":-55},{"x":41,"y":-84},{"x":9,"y":-115},{"x":65,"y":17},{"x":63,"y":-389},{"x":130,"y":-118}],"type":"area"},{"arc":[{"x":145874,"y":154923},{"x":-28,"y":-145},{"x":-56,"y":-66},{"x":-312,"y":-98},{"x":-154,"y":-101}],"type":"area"},{"arc":[{"x":145324,"y":154513},{"x":-6,"y":-4}],"type":"area"},{"arc":[{"x":142558,"y":154144},{"x":-74,"y":-31},{"x":-36,"y":-58},{"x":9,"y":-55},{"x":-33,"y":-8},{"x":-33,"y":-70},{"x":16,"y":-88},{"x":-134,"y":-59},{"x":-6,"y":-41},{"x":74,"y":-6},{"x":-22,"y":-79},{"x":-105,"y":-65},{"x":-168,"y":-167},{"x":-94,"y":-27},{"x":-80,"y":19},{"x":-65,"y":-32},{"x":10,"y":-64},{"x":-113,"y":-128},{"x":-41,"y":-6},{"x":-9,"y":-111},{"x":-123,"y":-170}],"type":"area"},{"arc":[{"x":141531,"y":152898},{"x":-24,"y":-102},{"x":40,"y":-44}],"type":"admin"},{"arc":[{"x":141547,"y":152752},{"x":-9,"y":74},{"x":140,"y":104},{"x":114,"y":-52},{"x":42,"y":55},{"x":168,"y":25},{"x":30,"y":46},{"x":187,"y":30},{"x":91,"y":-46},{"x":5,"y":25},{"x":67,"y":-65},{"x":47,"y":-12},{"x":-53,"y":-86},{"x":-9,"y":-145},{"x":63,"y":-75},{"x":62,"y":-217}],"type":"area"},{"arc":[{"x":142492,"y":152413},{"x":81,"y":11},{"x":58,"y":94},{"x":47,"y":22},{"x":61,"y":-5},{"x":25,"y":27},{"x":25,"y":-28},{"x":87,"y":-6},{"x":59,"y":24}],"type":"area"},{"arc":[{"x":142935,"y":152552},{"x":-15,"y":28},{"x":49,"y":45},{"x":44,"y":205},{"x":88,"y":67},{"x":70,"y":13},{"x":-50,"y":25},{"x":44,"y":106},{"x":129,"y":86}],"type":"area"},{"arc":[{"x":143294,"y":153127},{"x":-77,"y":95},{"x":-86,"y":16},{"x":-125,"y":166},{"x":33,"y":4},{"x":97,"y":106},{"x":189,"y":83},{"x":39,"y":106},{"x":48,"y":16},{"x":48,"y":-68},{"x":29,"y":117},{"x":77,"y":27}],"type":"area"},{"arc":[{"x":143566,"y":153795},{"x":-32,"y":47},{"x":-109,"y":-29},{"x":-72,"y":18},{"x":-121,"y":150},{"x":-85,"y":47},{"x":-95,"y":16},{"x":-89,"y":122},{"x":-57,"y":-19},{"x":-52,"y":-60},{"x":-116,"y":-43},{"x":-51,"y":38},{"x":-84,"y":9},{"x":-45,"y":53}],"type":"area"},{"arc":[{"x":143933,"y":153401},{"x":-155,"y":-121},{"x":-102,"y":-202},{"x":-176,"y":-86},{"x":-35,"y":-53},{"x":11,"y":92},{"x":-24,"y":49},{"x":-16,"y":-18},{"x":-103,"y":3},{"x":-39,"y":62}],"type":"area"},{"arc":[{"x":142935,"y":152552},{"x":31,"y":-53},{"x":-4,"y":-102},{"x":114,"y":-97},{"x":21,"y":-67},{"x":51,"y":-47},{"x":70,"y":-19},{"x":76,"y":-90},{"x":61,"y":-13},{"x":73,"y":33},{"x":66,"y":-38},{"x":69,"y":8},{"x":31,"y":-57},{"x":67,"y":-24}],"type":"area"},{"arc":[{"x":143661,"y":151986},{"x":37,"y":14},{"x":62,"y":-41},{"x":48,"y":10},{"x":22,"y":-109},{"x":138,"y":-60},{"x":43,"y":22},{"x":49,"y":-23},{"x":93,"y":-76},{"x":17,"y":-70},{"x":98,"y":-87},{"x":150,"y":180},{"x":112,"y":80},{"x":-5,"y":107},{"x":34,"y":33},{"x":172,"y":-20},{"x":12,"y":-29},{"x":117,"y":-27},{"x":86,"y":2},{"x":11,"y":39},{"x":70,"y":6},{"x":27,"y":29}],"type":"admin"},{"arc":[{"x":145054,"y":151966},{"x":26,"y":128},{"x":113,"y":-6},{"x":17,"y":26},{"x":116,"y":26},{"x":27,"y":144},{"x":-15,"y":121},{"x":54,"y":50},{"x":7,"y":55},{"x":179,"y":37},{"x":45,"y":65}],"type":"area"},{"arc":[{"x":142492,"y":152413},{"x":-89,"y":-49},{"x":-87,"y":11},{"x":-48,"y":-54},{"x":-100,"y":9},{"x":-58,"y":-85},{"x":-105,"y":21},{"x":-28,"y":-20}],"type":"area"},{"arc":[{"x":141977,"y":152246},{"x":10,"y":-61},{"x":51,"y":-28},{"x":16,"y":-58},{"x":-88,"y":-104},{"x":4,"y":-101},{"x":296,"y":10},{"x":60,"y":16},{"x":30,"y":53},{"x":54,"y":-1},{"x":-7,"y":-52},{"x":48,"y":-11},{"x":32,"y":-47},{"x":-5,"y":-100},{"x":19,"y":-10},{"x":18,"y":26},{"x":59,"y":-99},{"x":-14,"y":-131},{"x":63,"y":-168}],"type":"area"},{"arc":[{"x":142623,"y":151380},{"x":26,"y":87},{"x":33,"y":-1},{"x":81,"y":81},{"x":32,"y":-6},{"x":20,"y":132},{"x":55,"y":8},{"x":72,"y":-39},{"x":38,"y":16},{"x":89,"y":-22},{"x":22,"y":29},{"x":35,"y":-17},{"x":19,"y":16},{"x":101,"y":-48},{"x":161,"y":7},{"x":85,"y":-104},{"x":49,"y":-22},{"x":11,"y":-93},{"x":121,"y":-22}],"type":"admin"},{"arc":[{"x":143673,"y":151382},{"x":-80,"y":156},{"x":21,"y":48},{"x":-46,"y":187},{"x":0,"y":55},{"x":93,"y":158}],"type":"admin"},{"arc":[{"x":141977,"y":152246},{"x":-47,"y":35},{"x":-153,"y":23},{"x":-108,"y":72},{"x":-116,"y":-32},{"x":-59,"y":-46}],"type":"area"},{"arc":[{"x":141494,"y":152298},{"x":-14,"y":-102},{"x":-116,"y":-5}],"type":"admin"},{"arc":[{"x":141364,"y":152191},{"x":-48,"y":-90},{"x":-60,"y":-2},{"x":41,"y":-117},{"x":-22,"y":-190},{"x":-141,"y":-242},{"x":-11,"y":-133}],"type":"admin"},{"arc":[{"x":142272,"y":151245},{"x":79,"y":-58},{"x":93,"y":30},{"x":83,"y":-28},{"x":18,"y":88},{"x":32,"y":-7},{"x":-1,"y":44},{"x":20,"y":-17},{"x":44,"y":46},{"x":-17,"y":37}],"type":"admin"},{"arc":[{"x":143941,"y":153874},{"x":-20,"y":-35},{"x":-63,"y":-18},{"x":-11,"y":61},{"x":-49,"y":4},{"x":-116,"y":-103},{"x":-45,"y":23},{"x":-71,"y":-11}],"type":"area"},{"arc":[{"x":141547,"y":152752},{"x":24,"y":-20},{"x":-31,"y":-68},{"x":29,"y":-54},{"x":-38,"y":-70},{"x":57,"y":-59},{"x":-55,"y":-29},{"x":-39,"y":-154}],"type":"admin"},{"arc":[{"x":141300,"y":154100},{"x":43,"y":-157},{"x":-149,"y":-285},{"x":24,"y":-122},{"x":-41,"y":-44},{"x":6,"y":-56},{"x":86,"y":-81},{"x":52,"y":32},{"x":55,"y":-12},{"x":46,"y":-88},{"x":-42,"y":-163},{"x":50,"y":-85},{"x":-14,"y":-127},{"x":41,"y":-25},{"x":74,"y":11}],"type":"admin"},{"arc":[{"x":142558,"y":154144},{"x":10,"y":25},{"x":47,"y":-15}],"type":"area"},{"arc":[{"x":145324,"y":154513},{"x":-90,"y":187},{"x":-66,"y":32},{"x":-66,"y":94},{"x":-104,"y":82},{"x":27,"y":82},{"x":-27,"y":30},{"x":63,"y":76},{"x":-31,"y":43},{"x":-18,"y":150},{"x":55,"y":93},{"x":-221,"y":157},{"x":-69,"y":107}],"type":"area"},{"arc":[{"x":145547,"y":155907},{"x":-76,"y":-43},{"x":-293,"y":-52},{"x":-44,"y":-36},{"x":-127,"y":-19},{"x":-32,"y":-50},{"x":-123,"y":-26}],"type":"area"},{"arc":[{"x":148475,"y":153798},{"x":-71,"y":-89},{"x":-148,"y":-101},{"x":-33,"y":-45},{"x":-10,"y":-118},{"x":-48,"y":-49},{"x":-20,"y":9},{"x":-46,"y":-44},{"x":-63,"y":-16},{"x":-19,"y":-84},{"x":-109,"y":-53},{"x":-50,"y":26},{"x":-33,"y":-25},{"x":-56,"y":11},{"x":-106,"y":-99},{"x":-38,"y":-82},{"x":64,"y":-85},{"x":66,"y":-215},{"x":65,"y":-83},{"x":-4,"y":-80},{"x":66,"y":1},{"x":37,"y":-49},{"x":102,"y":-29},{"x":-7,"y":-71},{"x":66,"y":-49},{"x":38,"y":-83},{"x":0,"y":-98},{"x":-78,"y":-77},{"x":-65,"y":9},{"x":-114,"y":-62},{"x":-80,"y":96},{"x":-150,"y":-65},{"x":-39,"y":-111},{"x":5,"y":-112},{"x":-35,"y":-45},{"x":-19,"y":-180},{"x":60,"y":-86},{"x":36,"y":35},{"x":31,"y":-6},{"x":20,"y":-69},{"x":47,"y":10},{"x":24,"y":-30},{"x":86,"y":35},{"x":53,"y":-23},{"x":57,"y":-126},{"x":-72,"y":-66},{"x":-93,"y":-177}],"type":"area"},{"arc":[{"x":147792,"y":151148},{"x":57,"y":-29},{"x":14,"y":-78},{"x":208,"y":-29},{"x":44,"y":-75},{"x":46,"y":13},{"x":-41,"y":154},{"x":24,"y":87},{"x":-29,"y":102},{"x":55,"y":24},{"x":46,"y":-15},{"x":21,"y":162},{"x":72,"y":14},{"x":11,"y":112},{"x":36,"y":38},{"x":74,"y":-38},{"x":46,"y":16},{"x":40,"y":-71},{"x":120,"y":24},{"x":26,"y":75},{"x":-84,"y":95},{"x":37,"y":110},{"x":-34,"y":49},{"x":37,"y":-18},{"x":76,"y":29}],"type":"area"},{"arc":[{"x":148694,"y":151899},{"x":10,"y":45},{"x":-36,"y":7},{"x":-16,"y":56},{"x":36,"y":96},{"x":-11,"y":59},{"x":-73,"y":74},{"x":27,"y":40},{"x":-12,"y":57},{"x":17,"y":27},{"x":74,"y":6},{"x":60,"y":38},{"x":115,"y":109},{"x":38,"y":109},{"x":66,"y":18},{"x":26,"y":80},{"x":-21,"y":171},{"x":32,"y":52},{"x":-7,"y":70},{"x":-62,"y":41},{"x":9,"y":98},{"x":-72,"y":40},{"x":-7,"y":207},{"x":-204,"y":165},{"x":-32,"y":55},{"x":-43,"y":13},{"x":-6,"y":122}],"type":"area"},{"arc":[{"x":145054,"y":151966},{"x":38,"y":-57},{"x":175,"y":-80},{"x":93,"y":-110},{"x":-33,"y":-57},{"x":43,"y":-38},{"x":59,"y":-181},{"x":77,"y":-44},{"x":-2,"y":-30},{"x":60,"y":8},{"x":55,"y":-43},{"x":94,"y":15},{"x":60,"y":-75},{"x":34,"y":-7},{"x":61,"y":48},{"x":135,"y":26},{"x":45,"y":-215},{"x":-41,"y":-133},{"x":57,"y":-69},{"x":54,"y":11},{"x":87,"y":-123},{"x":35,"y":-2},{"x":65,"y":-63},{"x":130,"y":31},{"x":14,"y":60},{"x":83,"y":12},{"x":35,"y":40},{"x":70,"y":-11},{"x":55,"y":123},{"x":44,"y":26},{"x":60,"y":-13},{"x":51,"y":59},{"x":130,"y":-98},{"x":59,"y":-6},{"x":72,"y":-113},{"x":72,"y":-47},{"x":16,"y":-75},{"x":50,"y":-34}],"type":"admin"},{"arc":[{"x":147246,"y":150701},{"x":80,"y":133},{"x":24,"y":134},{"x":-47,"y":196},{"x":-118,"y":119},{"x":-3,"y":215},{"x":-122,"y":218},{"x":-40,"y":-9},{"x":-97,"y":39},{"x":-64,"y":163},{"x":-83,"y":42},{"x":-32,"y":51},{"x":69,"y":30},{"x":-7,"y":35},{"x":29,"y":-8},{"x":-24,"y":86},{"x":32,"y":48},{"x":45,"y":-1},{"x":56,"y":81},{"x":8,"y":94},{"x":-23,"y":-5},{"x":-50,"y":75},{"x":-63,"y":21},{"x":-15,"y":105},{"x":-133,"y":45},{"x":-24,"y":60},{"x":-59,"y":11},{"x":-71,"y":120},{"x":11,"y":39},{"x":-40,"y":89},{"x":-112,"y":51}],"type":"area"},{"arc":[{"x":150334,"y":153720},{"x":-112,"y":-230},{"x":-154,"y":-66},{"x":-21,"y":-63},{"x":56,"y":-117},{"x":125,"y":-42},{"x":78,"y":-105},{"x":113,"y":-73},{"x":26,"y":-64},{"x":84,"y":-80},{"x":124,"y":-39},{"x":81,"y":-105},{"x":72,"y":-24},{"x":8,"y":-36},{"x":38,"y":-5},{"x":23,"y":-38},{"x":128,"y":4},{"x":98,"y":45},{"x":110,"y":-33},{"x":110,"y":53},{"x":43,"y":-25},{"x":29,"y":35}],"type":"area"},{"arc":[{"x":152360,"y":153237},{"x":-169,"y":282},{"x":67,"y":75},{"x":-1,"y":74},{"x":-126,"y":17},{"x":-51,"y":67},{"x":-85,"y":-19},{"x":-36,"y":42},{"x":-5,"y":89}],"type":"area"},{"arc":[{"x":149924,"y":150358},{"x":-13,"y":47},{"x":-54,"y":24},{"x":-138,"y":144},{"x":14,"y":28},{"x":-81,"y":51},{"x":-24,"y":202},{"x":-58,"y":85},{"x":-84,"y":261},{"x":-85,"y":163},{"x":-154,"y":52},{"x":-89,"y":-4},{"x":-28,"y":35},{"x":-161,"y":71},{"x":-56,"y":76},{"x":204,"y":142},{"x":46,"y":-41},{"x":63,"y":16},{"x":6,"y":45},{"x":-88,"y":71},{"x":-47,"y":6},{"x":-92,"y":-52},{"x":-30,"y":6},{"x":-23,"y":-62},{"x":-47,"y":-22},{"x":-231,"y":8},{"x":20,"y":189}],"type":"area"},{"arc":[{"x":147792,"y":151148},{"x":-79,"y":13},{"x":-5,"y":-98},{"x":-78,"y":-17},{"x":-49,"y":-106},{"x":21,"y":-147},{"x":-23,"y":-65},{"x":71,"y":-63},{"x":28,"y":-189}],"type":"area"},{"arc":[{"x":147678,"y":150476},{"x":106,"y":-26},{"x":21,"y":-63},{"x":50,"y":-9},{"x":133,"y":-119},{"x":37,"y":-11},{"x":39,"y":26},{"x":30,"y":-26},{"x":88,"y":-8},{"x":63,"y":-53},{"x":27,"y":-74},{"x":-53,"y":-26},{"x":-9,"y":-101},{"x":107,"y":-64},{"x":52,"y":2},{"x":1,"y":-67},{"x":50,"y":-44},{"x":-21,"y":-46},{"x":48,"y":-82},{"x":-24,"y":-115},{"x":29,"y":-70},{"x":38,"y":-22},{"x":59,"y":61},{"x":152,"y":-29},{"x":15,"y":-25},{"x":35,"y":-112},{"x":-68,"y":-213}],"type":"admin"},{"arc":[{"x":148683,"y":149160},{"x":71,"y":-80},{"x":-37,"y":-164},{"x":136,"y":-46},{"x":33,"y":-80},{"x":125,"y":44},{"x":49,"y":-16},{"x":43,"y":32},{"x":154,"y":24},{"x":37,"y":35},{"x":-23,"y":204},{"x":99,"y":82},{"x":129,"y":39},{"x":174,"y":7},{"x":59,"y":-39},{"x":66,"y":94},{"x":106,"y":76},{"x":41,"y":175},{"x":111,"y":224},{"x":8,"y":188},{"x":-62,"y":13},{"x":-86,"y":91},{"x":-52,"y":114},{"x":43,"y":67},{"x":17,"y":114}],"type":"admin"},{"arc":[{"x":147246,"y":150701},{"x":62,"y":-113},{"x":138,"y":-8},{"x":95,"y":-122},{"x":137,"y":18}],"type":"admin"},{"arc":[{"x":149924,"y":150358},{"x":82,"y":59},{"x":69,"y":-8},{"x":34,"y":34},{"x":65,"y":-10}],"type":"admin"},{"arc":[{"x":150174,"y":150433},{"x":190,"y":148},{"x":140,"y":60},{"x":-2,"y":157},{"x":35,"y":60},{"x":242,"y":83},{"x":64,"y":97},{"x":132,"y":31},{"x":73,"y":-16},{"x":92,"y":195},{"x":71,"y":71},{"x":-3,"y":68},{"x":74,"y":53},{"x":66,"y":98},{"x":245,"y":95}],"type":"admin"},{"arc":[{"x":157272,"y":156649},{"x":6,"y":-35},{"x":-44,"y":-25},{"x":13,"y":-41},{"x":-112,"y":-49},{"x":-99,"y":-93},{"x":-8,"y":-46},{"x":-31,"y":-9},{"x":14,"y":-45},{"x":-49,"y":16},{"x":23,"y":33},{"x":-26,"y":11},{"x":-54,"y":-77},{"x":-106,"y":8},{"x":-29,"y":59},{"x":-192,"y":-28},{"x":54,"y":-77},{"x":65,"y":-40},{"x":-8,"y":-61},{"x":63,"y":-69},{"x":-2,"y":-49},{"x":72,"y":-54},{"x":-29,"y":-44},{"x":10,"y":-83},{"x":107,"y":33},{"x":80,"y":-10},{"x":81,"y":-66},{"x":58,"y":23},{"x":34,"y":-12},{"x":21,"y":-59},{"x":-77,"y":-52},{"x":-32,"y":-128},{"x":19,"y":-43}],"type":"area"},{"arc":[{"x":157094,"y":155537},{"x":-112,"y":-42},{"x":9,"y":-65},{"x":38,"y":20},{"x":-9,"y":-43},{"x":-88,"y":-3},{"x":-80,"y":37},{"x":-220,"y":-74},{"x":-55,"y":11},{"x":-28,"y":68},{"x":-139,"y":8},{"x":-27,"y":38}],"type":"area"},{"arc":[{"x":156472,"y":154995},{"x":137,"y":-115},{"x":36,"y":60},{"x":84,"y":-97},{"x":96,"y":-48},{"x":27,"y":21},{"x":-14,"y":32},{"x":33,"y":74},{"x":33,"y":38},{"x":54,"y":10},{"x":12,"y":73},{"x":205,"y":79},{"x":-2,"y":-69},{"x":54,"y":-41}],"type":"area"},{"arc":[{"x":153119,"y":154581},{"x":32,"y":-79},{"x":-77,"y":-96},{"x":5,"y":-47},{"x":-57,"y":-29},{"x":5,"y":-88},{"x":-64,"y":-47},{"x":46,"y":-52},{"x":-25,"y":-126},{"x":93,"y":-18},{"x":27,"y":-56},{"x":-23,"y":-54},{"x":22,"y":-71}],"type":"area"},{"arc":[{"x":156063,"y":154454},{"x":183,"y":32},{"x":364,"y":-50},{"x":59,"y":27},{"x":175,"y":-41}],"type":"area"},{"arc":[{"x":159636,"y":154844},{"x":-17,"y":-50},{"x":-141,"y":43}],"type":"admin"},{"arc":[{"x":160979,"y":153342},{"x":-106,"y":565},{"x":-66,"y":44},{"x":-124,"y":257},{"x":3,"y":25},{"x":81,"y":-86},{"x":-1,"y":141},{"x":-98,"y":55},{"x":-30,"y":101},{"x":-51,"y":61},{"x":8,"y":78},{"x":-85,"y":15},{"x":23,"y":92},{"x":36,"y":6},{"x":-3,"y":61},{"x":49,"y":48},{"x":-31,"y":71},{"x":31,"y":91},{"x":-36,"y":202}],"type":"area"},{"arc":[{"x":160081,"y":159374},{"x":-62,"y":-77},{"x":-69,"y":7},{"x":-53,"y":-103}],"type":"area"},{"arc":[{"x":160111,"y":159968},{"x":-33,"y":114},{"x":22,"y":82},{"x":-34,"y":50},{"x":15,"y":48},{"x":-59,"y":61},{"x":-73,"y":297},{"x":-127,"y":53},{"x":8,"y":193},{"x":-20,"y":78},{"x":-59,"y":50},{"x":-39,"y":89},{"x":18,"y":73},{"x":-38,"y":49},{"x":4,"y":93}],"type":"area"},{"arc":[{"x":161690,"y":161455},{"x":-53,"y":36},{"x":-14,"y":116},{"x":-33,"y":-6},{"x":-76,"y":124},{"x":41,"y":283},{"x":-22,"y":46},{"x":22,"y":5},{"x":-60,"y":81},{"x":13,"y":38},{"x":-118,"y":59},{"x":-38,"y":-4},{"x":-19,"y":34},{"x":20,"y":27},{"x":-61,"y":-9},{"x":17,"y":20},{"x":-26,"y":26},{"x":-72,"y":5},{"x":-53,"y":-38},{"x":-43,"y":20},{"x":-83,"y":-59},{"x":-68,"y":32},{"x":-135,"y":-42},{"x":-42,"y":42},{"x":-56,"y":-4},{"x":-44,"y":70},{"x":-120,"y":52},{"x":-143,"y":3}],"type":"admin"},{"arc":[{"x":161378,"y":159949},{"x":43,"y":143},{"x":67,"y":20},{"x":88,"y":105},{"x":70,"y":24},{"x":-100,"y":141},{"x":-92,"y":301},{"x":2,"y":116},{"x":-133,"y":47},{"x":-18,"y":28},{"x":56,"y":48},{"x":29,"y":130},{"x":67,"y":71},{"x":-40,"y":124},{"x":139,"y":60},{"x":38,"y":-16},{"x":57,"y":36},{"x":41,"y":41},{"x":-2,"y":87}],"type":"area"},{"arc":[{"x":162472,"y":160881},{"x":-28,"y":50},{"x":-68,"y":0},{"x":-22,"y":27},{"x":-86,"y":-26},{"x":-66,"y":25},{"x":-51,"y":-60},{"x":-43,"y":5},{"x":-39,"y":146},{"x":62,"y":135},{"x":-16,"y":120},{"x":-42,"y":69},{"x":42,"y":99},{"x":-70,"y":58},{"x":-197,"y":-160},{"x":-125,"y":97},{"x":-33,"y":-11}],"type":"admin"},{"arc":[{"x":162434,"y":160549},{"x":13,"y":49},{"x":-27,"y":46},{"x":168,"y":167},{"x":-28,"y":71},{"x":-35,"y":-23},{"x":-53,"y":22}],"type":"area"},{"arc":[{"x":163665,"y":160879},{"x":-23,"y":61},{"x":84,"y":181},{"x":-24,"y":46},{"x":-105,"y":-49},{"x":-160,"y":-212},{"x":-116,"y":-49},{"x":-50,"y":3},{"x":-30,"y":-43},{"x":-103,"y":-54},{"x":-110,"y":-18},{"x":-62,"y":18},{"x":7,"y":141},{"x":-211,"y":185},{"x":-98,"y":-45},{"x":-26,"y":-47},{"x":-121,"y":-33},{"x":-45,"y":-83}],"type":"admin"},{"arc":[{"x":161853,"y":158624},{"x":-86,"y":-43},{"x":-100,"y":-100},{"x":-31,"y":160},{"x":-45,"y":31},{"x":-14,"y":-50},{"x":-100,"y":-50},{"x":-29,"y":-66},{"x":13,"y":-58},{"x":-35,"y":-14},{"x":9,"y":-51},{"x":-170,"y":-8},{"x":-39,"y":-39},{"x":11,"y":-36},{"x":-31,"y":15},{"x":6,"y":-46},{"x":-67,"y":-62},{"x":20,"y":-33},{"x":-46,"y":-15},{"x":0,"y":-79},{"x":-64,"y":-41},{"x":17,"y":-26},{"x":-98,"y":-40},{"x":-96,"y":16},{"x":5,"y":-148},{"x":-78,"y":-51},{"x":33,"y":1},{"x":-36,"y":-46},{"x":23,"y":-24},{"x":-53,"y":-123},{"x":-48,"y":33},{"x":0,"y":-408}],"type":"area"},{"arc":[{"x":145340,"y":143524},{"x":11,"y":35},{"x":-43,"y":35},{"x":17,"y":44},{"x":-62,"y":28},{"x":-24,"y":58},{"x":-63,"y":7},{"x":-4,"y":51},{"x":-77,"y":3},{"x":-70,"y":59},{"x":25,"y":41},{"x":-9,"y":108},{"x":-91,"y":-16},{"x":55,"y":-80},{"x":-70,"y":-80},{"x":-32,"y":23},{"x":-11,"y":-34},{"x":-100,"y":1},{"x":-58,"y":-32},{"x":-96,"y":9},{"x":-86,"y":-61},{"x":-77,"y":32},{"x":75,"y":129},{"x":-39,"y":67},{"x":-30,"y":1},{"x":0,"y":172},{"x":-101,"y":134},{"x":-15,"y":-22},{"x":-127,"y":-24}],"type":"area"},{"arc":[{"x":144238,"y":144212},{"x":19,"y":-53},{"x":-25,"y":-78},{"x":-59,"y":-3},{"x":-37,"y":32},{"x":-29,"y":-121},{"x":-115,"y":-14},{"x":-8,"y":-142},{"x":83,"y":-31},{"x":-37,"y":-103},{"x":7,"y":-77},{"x":-25,"y":-20},{"x":7,"y":-74},{"x":-71,"y":-9},{"x":-35,"y":32},{"x":-43,"y":-29},{"x":-10,"y":20},{"x":-180,"y":-35},{"x":-56,"y":34},{"x":-29,"y":-37},{"x":-43,"y":33},{"x":-7,"y":-32},{"x":-31,"y":-4}],"type":"area"},{"arc":[{"x":143514,"y":143501},{"x":-4,"y":-97},{"x":56,"y":-21},{"x":95,"y":-125},{"x":5,"y":-74},{"x":-80,"y":-139},{"x":-68,"y":-4},{"x":-58,"y":-39},{"x":-39,"y":23},{"x":-20,"y":-43}],"type":"admin"},{"arc":[{"x":143401,"y":142982},{"x":-37,"y":-85},{"x":-16,"y":15},{"x":-58,"y":-44},{"x":-58,"y":60},{"x":-20,"y":-133},{"x":-56,"y":-17},{"x":26,"y":-101},{"x":-59,"y":-45}],"type":"admin"},{"arc":[{"x":143123,"y":142632},{"x":-62,"y":-71},{"x":50,"y":-50},{"x":-49,"y":-91},{"x":64,"y":-89},{"x":-56,"y":-118}],"type":"area"},{"arc":[{"x":143070,"y":142213},{"x":183,"y":22}],"type":"area"},{"arc":[{"x":143253,"y":142235},{"x":164,"y":131},{"x":81,"y":34},{"x":212,"y":-61},{"x":1,"y":-24},{"x":57,"y":-4},{"x":2,"y":-48},{"x":50,"y":0}],"type":"area"},{"arc":[{"x":143820,"y":142263},{"x":122,"y":-2},{"x":4,"y":60},{"x":325,"y":-5}],"type":"admin"},{"arc":[{"x":144271,"y":142316},{"x":198,"y":-3},{"x":3,"y":-57},{"x":156,"y":-98},{"x":94,"y":28},{"x":2,"y":129},{"x":107,"y":5},{"x":12,"y":-76},{"x":26,"y":33},{"x":80,"y":-35},{"x":30,"y":72},{"x":98,"y":-37},{"x":59,"y":-121},{"x":74,"y":46},{"x":36,"y":-9},{"x":34,"y":35},{"x":55,"y":-30},{"x":9,"y":-52},{"x":44,"y":-34},{"x":21,"y":20},{"x":-15,"y":27},{"x":33,"y":5},{"x":-3,"y":103},{"x":58,"y":32}],"type":"area"},{"arc":[{"x":145482,"y":142299},{"x":-5,"y":42},{"x":-199,"y":111},{"x":-8,"y":49},{"x":-70,"y":13},{"x":9,"y":44},{"x":-51,"y":82},{"x":-39,"y":1},{"x":-80,"y":72},{"x":39,"y":69},{"x":-15,"y":60},{"x":-74,"y":62},{"x":31,"y":47},{"x":-88,"y":40},{"x":-18,"y":65},{"x":-93,"y":38},{"x":14,"y":163},{"x":-95,"y":38},{"x":8,"y":67},{"x":92,"y":2},{"x":11,"y":43},{"x":57,"y":-7},{"x":43,"y":22},{"x":48,"y":-46},{"x":9,"y":73},{"x":58,"y":70},{"x":32,"y":-28},{"x":108,"y":5},{"x":46,"y":-32},{"x":88,"y":60}],"type":"area"},{"arc":[{"x":143123,"y":140282},{"x":-132,"y":94},{"x":-13,"y":39},{"x":45,"y":75},{"x":-37,"y":24},{"x":-1,"y":37},{"x":-25,"y":13},{"x":-32,"y":-21},{"x":-102,"y":90}],"type":"admin"},{"arc":[{"x":142826,"y":140633},{"x":-42,"y":-23},{"x":-30,"y":21},{"x":-24,"y":-24},{"x":80,"y":-101},{"x":-10,"y":-32},{"x":23,"y":7},{"x":2,"y":-60},{"x":-143,"y":-84},{"x":-90,"y":26},{"x":-64,"y":72},{"x":-72,"y":-11},{"x":-30,"y":73},{"x":-57,"y":3},{"x":-10,"y":-43},{"x":-38,"y":0},{"x":-43,"y":53},{"x":-51,"y":-29},{"x":-46,"y":42},{"x":-45,"y":-36},{"x":-121,"y":41},{"x":-56,"y":-31},{"x":-89,"y":54}],"type":"admin"},{"arc":[{"x":141870,"y":140551},{"x":-46,"y":-121},{"x":-193,"y":-54},{"x":-45,"y":-49},{"x":1,"y":-55},{"x":35,"y":-37},{"x":-30,"y":-79},{"x":54,"y":-73},{"x":-61,"y":-14},{"x":31,"y":-83},{"x":-60,"y":-28},{"x":68,"y":-42},{"x":-103,"y":-128},{"x":-84,"y":-40},{"x":-79,"y":-81},{"x":43,"y":-79},{"x":98,"y":-13},{"x":15,"y":-25},{"x":-115,"y":-153},{"x":-32,"y":-10}],"type":"admin"},{"arc":[{"x":141367,"y":139387},{"x":9,"y":-32},{"x":65,"y":-37},{"x":79,"y":-165},{"x":55,"y":-4},{"x":12,"y":-66},{"x":57,"y":-22},{"x":44,"y":-65},{"x":55,"y":20},{"x":29,"y":103},{"x":101,"y":80},{"x":53,"y":-35},{"x":232,"y":25},{"x":86,"y":-44}],"type":"admin"},{"arc":[{"x":142244,"y":139145},{"x":40,"y":-6},{"x":129,"y":119}],"type":"admin"},{"arc":[{"x":142413,"y":139258},{"x":-159,"y":198},{"x":147,"y":80},{"x":100,"y":-31},{"x":17,"y":44},{"x":-27,"y":83},{"x":104,"y":193},{"x":182,"y":-18},{"x":185,"y":106},{"x":-15,"y":62},{"x":25,"y":21},{"x":171,"y":72},{"x":20,"y":30},{"x":-28,"y":78},{"x":40,"y":69},{"x":-52,"y":37}],"type":"admin"},{"arc":[{"x":143070,"y":142213},{"x":-82,"y":3}],"type":"area"},{"arc":[{"x":142988,"y":142216},{"x":-20,"y":-74},{"x":13,"y":-26},{"x":18,"y":8},{"x":7,"y":-79},{"x":84,"y":30},{"x":7,"y":-20},{"x":54,"y":3},{"x":58,"y":30},{"x":49,"y":-36}],"type":"admin"},{"arc":[{"x":143258,"y":142052},{"x":0,"y":52},{"x":45,"y":2},{"x":6,"y":33},{"x":-51,"y":32},{"x":-5,"y":64}],"type":"area"},{"arc":[{"x":143776,"y":141144},{"x":-26,"y":-8},{"x":-18,"y":64},{"x":-81,"y":33},{"x":-5,"y":66},{"x":-59,"y":1},{"x":-19,"y":63},{"x":2,"y":23},{"x":60,"y":-9},{"x":101,"y":33},{"x":-10,"y":124},{"x":-140,"y":-10},{"x":1,"y":25},{"x":-58,"y":39},{"x":23,"y":33},{"x":-28,"y":27},{"x":-3,"y":77}],"type":"admin"},{"arc":[{"x":143516,"y":141725},{"x":-79,"y":119}],"type":"area"},{"arc":[{"x":143437,"y":141844},{"x":-84,"y":46},{"x":-294,"y":8},{"x":-95,"y":-44},{"x":-42,"y":31},{"x":-35,"y":-31},{"x":9,"y":-100},{"x":-59,"y":-57},{"x":-72,"y":-6},{"x":-143,"y":36},{"x":-54,"y":-22}],"type":"admin"},{"arc":[{"x":142568,"y":141705},{"x":-132,"y":-204},{"x":-91,"y":-44},{"x":-14,"y":-54}],"type":"admin"},{"arc":[{"x":142331,"y":141403},{"x":121,"y":-162},{"x":41,"y":-5},{"x":7,"y":31},{"x":122,"y":-25},{"x":63,"y":-90},{"x":74,"y":36},{"x":20,"y":-67},{"x":15,"y":17},{"x":26,"y":-26},{"x":107,"y":-1},{"x":-26,"y":-13},{"x":29,"y":-28},{"x":33,"y":-179}],"type":"admin"},{"arc":[{"x":142963,"y":140891},{"x":50,"y":17},{"x":-10,"y":-37},{"x":64,"y":-22},{"x":80,"y":17},{"x":1,"y":50},{"x":148,"y":-24},{"x":95,"y":-185},{"x":30,"y":51},{"x":91,"y":7},{"x":34,"y":-30},{"x":31,"y":5},{"x":23,"y":-45},{"x":49,"y":-4},{"x":-15,"y":81},{"x":-54,"y":-13},{"x":65,"y":76},{"x":7,"y":-85},{"x":1,"y":31},{"x":49,"y":-44},{"x":64,"y":30}],"type":"admin"},{"arc":[{"x":143766,"y":140767},{"x":45,"y":148},{"x":-82,"y":135},{"x":52,"y":24},{"x":-5,"y":70}],"type":"admin"},{"arc":[{"x":150174,"y":150433},{"x":50,"y":-103},{"x":170,"y":-182},{"x":98,"y":-58},{"x":25,"y":-49},{"x":117,"y":-7},{"x":113,"y":-41},{"x":43,"y":-128},{"x":107,"y":-56},{"x":5,"y":-54},{"x":-56,"y":-74},{"x":21,"y":-45},{"x":-20,"y":-50},{"x":-67,"y":-16},{"x":-35,"y":-74},{"x":-98,"y":-79},{"x":-74,"y":-181},{"x":73,"y":-32},{"x":57,"y":16},{"x":32,"y":40},{"x":54,"y":-25},{"x":42,"y":31},{"x":39,"y":-4},{"x":91,"y":-149},{"x":159,"y":-68},{"x":16,"y":-71},{"x":114,"y":37},{"x":41,"y":-12},{"x":-33,"y":-147},{"x":-61,"y":-27},{"x":-12,"y":-151},{"x":-58,"y":-75},{"x":-45,"y":-152},{"x":50,"y":-80},{"x":-48,"y":-48},{"x":54,"y":-106},{"x":-35,"y":-77},{"x":72,"y":-22},{"x":-1,"y":-44},{"x":62,"y":-91},{"x":197,"y":-119},{"x":104,"y":-9},{"x":-4,"y":-47},{"x":79,"y":-159},{"x":-20,"y":-55},{"x":53,"y":-44},{"x":-15,"y":-31},{"x":111,"y":-51},{"x":-28,"y":-45},{"x":22,"y":-75},{"x":-107,"y":-106},{"x":8,"y":-44},{"x":-174,"y":-177},{"x":-145,"y":-52},{"x":-98,"y":-180},{"x":-104,"y":-52},{"x":-31,"y":-49},{"x":-105,"y":-44},{"x":-61,"y":1},{"x":-82,"y":-80},{"x":-97,"y":-38},{"x":-82,"y":90},{"x":-19,"y":63},{"x":-54,"y":9},{"x":-187,"y":-90},{"x":-73,"y":-101}],"type":"area"},{"arc":[{"x":150324,"y":146494},{"x":32,"y":-91},{"x":-128,"y":-39},{"x":-60,"y":32},{"x":-133,"y":-4},{"x":-55,"y":-23},{"x":-12,"y":-60},{"x":129,"y":-6},{"x":62,"y":-51},{"x":0,"y":-61},{"x":60,"y":-37},{"x":116,"y":-6},{"x":82,"y":-39},{"x":78,"y":40},{"x":112,"y":-116},{"x":113,"y":-35},{"x":46,"y":-58},{"x":-75,"y":-59},{"x":-12,"y":-40},{"x":37,"y":-27},{"x":15,"y":-90},{"x":36,"y":-41},{"x":-18,"y":-52},{"x":-88,"y":-29},{"x":-17,"y":-84},{"x":-147,"y":-106},{"x":-133,"y":4},{"x":-10,"y":-67},{"x":-130,"y":-81},{"x":19,"y":-64},{"x":67,"y":-59},{"x":173,"y":5},{"x":130,"y":-41},{"x":56,"y":33},{"x":50,"y":-2},{"x":52,"y":-56},{"x":89,"y":-12},{"x":43,"y":-47},{"x":90,"y":-11},{"x":29,"y":-51},{"x":-13,"y":-37},{"x":47,"y":-63},{"x":89,"y":-31},{"x":-19,"y":-46},{"x":85,"y":-19},{"x":2,"y":-32},{"x":126,"y":-17},{"x":93,"y":-174},{"x":-2,"y":-74},{"x":42,"y":14},{"x":26,"y":-45},{"x":66,"y":-8},{"x":52,"y":-87},{"x":-55,"y":-43},{"x":-29,"y":-83},{"x":-37,"y":-5},{"x":-123,"y":-377},{"x":-89,"y":-79},{"x":82,"y":-32},{"x":45,"y":-52},{"x":-20,"y":-63},{"x":27,"y":-88},{"x":208,"y":-84},{"x":37,"y":-40},{"x":2,"y":-61},{"x":109,"y":16},{"x":36,"y":33},{"x":102,"y":-62},{"x":44,"y":-154},{"x":-23,"y":-39},{"x":63,"y":-94},{"x":127,"y":-40}],"type":"area"},{"arc":[{"x":152378,"y":142898},{"x":10,"y":-4}],"type":"coastline"},{"arc":[{"x":152388,"y":142894},{"x":13,"y":-3}],"type":"coastline"},{"arc":[{"x":152409,"y":142891},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":152414,"y":142894},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":152422,"y":142901},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":152425,"y":142902},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":152449,"y":142910},{"x":15,"y":5}],"type":"coastline"},{"arc":[{"x":152465,"y":142916},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":152477,"y":142913},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":152500,"y":142909},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":152523,"y":142916},{"x":3,"y":6}],"type":"coastline"},{"arc":[{"x":152526,"y":142922},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":152531,"y":142929},{"x":7,"y":7}],"type":"coastline"},{"arc":[{"x":152541,"y":142940},{"x":7,"y":5}],"type":"coastline"},{"arc":[{"x":152553,"y":142946},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":152573,"y":142964},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":152579,"y":142969},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":152584,"y":142976},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":152598,"y":142995},{"x":3,"y":9}],"type":"coastline"},{"arc":[{"x":152601,"y":143004},{"x":-100,"y":240},{"x":106,"y":109},{"x":-7,"y":88},{"x":-158,"y":115},{"x":45,"y":92},{"x":14,"y":175},{"x":97,"y":132},{"x":4,"y":92},{"x":-43,"y":39},{"x":-4,"y":79},{"x":51,"y":197},{"x":-60,"y":43},{"x":-6,"y":146},{"x":-49,"y":29},{"x":-32,"y":77},{"x":131,"y":104},{"x":99,"y":-23},{"x":76,"y":235},{"x":60,"y":-18},{"x":57,"y":25},{"x":49,"y":-87},{"x":30,"y":1},{"x":103,"y":-96},{"x":7,"y":-55},{"x":167,"y":56},{"x":96,"y":-15},{"x":89,"y":70},{"x":83,"y":-2},{"x":51,"y":35},{"x":88,"y":-13},{"x":117,"y":32},{"x":131,"y":-25},{"x":31,"y":24},{"x":-9,"y":28}],"type":"admin"},{"arc":[{"x":153915,"y":144933},{"x":-74,"y":20},{"x":-109,"y":113},{"x":-5,"y":127},{"x":-51,"y":63},{"x":44,"y":73},{"x":10,"y":96},{"x":-70,"y":121},{"x":3,"y":112},{"x":26,"y":56},{"x":70,"y":43},{"x":-25,"y":169},{"x":-49,"y":37},{"x":102,"y":94},{"x":-18,"y":98},{"x":237,"y":171},{"x":39,"y":151},{"x":-36,"y":57},{"x":-87,"y":14},{"x":-73,"y":-21},{"x":-125,"y":80},{"x":-58,"y":-1},{"x":-76,"y":49},{"x":-6,"y":41},{"x":107,"y":160},{"x":125,"y":41},{"x":-6,"y":144},{"x":43,"y":33},{"x":74,"y":-21},{"x":51,"y":32},{"x":8,"y":83},{"x":-40,"y":98},{"x":130,"y":114},{"x":-114,"y":193},{"x":81,"y":-51},{"x":44,"y":32},{"x":105,"y":-95},{"x":123,"y":116},{"x":8,"y":60},{"x":49,"y":30},{"x":74,"y":-22},{"x":65,"y":66},{"x":-19,"y":201},{"x":98,"y":78},{"x":73,"y":173},{"x":224,"y":127},{"x":20,"y":162},{"x":-23,"y":114},{"x":39,"y":142},{"x":-31,"y":132},{"x":87,"y":20},{"x":80,"y":57},{"x":-42,"y":283},{"x":81,"y":14},{"x":50,"y":62},{"x":73,"y":-59},{"x":80,"y":44},{"x":124,"y":-99},{"x":61,"y":32},{"x":142,"y":-51},{"x":72,"y":44},{"x":-8,"y":70},{"x":-75,"y":105},{"x":-25,"y":146},{"x":20,"y":103},{"x":96,"y":151},{"x":101,"y":-54},{"x":29,"y":45},{"x":112,"y":50},{"x":0,"y":58},{"x":40,"y":42},{"x":-33,"y":113},{"x":-46,"y":8},{"x":57,"y":74},{"x":53,"y":227},{"x":-49,"y":44},{"x":-11,"y":73},{"x":38,"y":70},{"x":108,"y":71},{"x":-19,"y":239},{"x":146,"y":197}],"type":"area"},{"arc":[{"x":143382,"y":146936},{"x":-99,"y":21},{"x":-3,"y":47},{"x":-164,"y":74},{"x":-55,"y":-32},{"x":-27,"y":-109},{"x":-240,"y":155},{"x":-40,"y":-2},{"x":-40,"y":-69},{"x":-47,"y":3},{"x":-7,"y":100},{"x":-101,"y":90},{"x":-294,"y":106},{"x":-51,"y":-72},{"x":-92,"y":114},{"x":-38,"y":-17},{"x":-51,"y":-90}],"type":"area"},{"arc":[{"x":142033,"y":147255},{"x":165,"y":-112},{"x":-51,"y":-115},{"x":28,"y":-49},{"x":-23,"y":-39},{"x":164,"y":-127},{"x":65,"y":-149},{"x":47,"y":-185},{"x":-60,"y":-35},{"x":-55,"y":13},{"x":-23,"y":-27}],"type":"admin"},{"arc":[{"x":142290,"y":146430},{"x":26,"y":-43},{"x":-7,"y":-112},{"x":50,"y":-16},{"x":113,"y":22},{"x":51,"y":-158},{"x":146,"y":-26},{"x":73,"y":92},{"x":117,"y":-49},{"x":43,"y":-74},{"x":-59,"y":-119},{"x":65,"y":-34}],"type":"admin"},{"arc":[{"x":142908,"y":145913},{"x":140,"y":-11},{"x":22,"y":28},{"x":92,"y":20},{"x":64,"y":-23}],"type":"admin"},{"arc":[{"x":143226,"y":145927},{"x":54,"y":36},{"x":-1,"y":37},{"x":100,"y":-19},{"x":105,"y":35},{"x":89,"y":63},{"x":23,"y":61},{"x":7,"y":-64},{"x":109,"y":-19},{"x":-40,"y":64},{"x":-94,"y":28},{"x":-96,"y":79},{"x":-23,"y":-15},{"x":-72,"y":18},{"x":-80,"y":84},{"x":4,"y":172},{"x":34,"y":28},{"x":-64,"y":88},{"x":80,"y":80},{"x":50,"y":-36},{"x":65,"y":67},{"x":-94,"y":222}],"type":"area"},{"arc":[{"x":148727,"y":143256},{"x":-20,"y":30},{"x":-165,"y":24},{"x":2,"y":37},{"x":-41,"y":31},{"x":43,"y":96},{"x":-66,"y":21},{"x":6,"y":55},{"x":-59,"y":98},{"x":13,"y":131},{"x":-40,"y":21},{"x":-75,"y":13},{"x":-27,"y":-78},{"x":-140,"y":-23},{"x":-52,"y":43},{"x":13,"y":64},{"x":-66,"y":114},{"x":-27,"y":-18},{"x":-252,"y":2},{"x":-62,"y":-36},{"x":-93,"y":-13},{"x":-64,"y":-86},{"x":-95,"y":-3},{"x":-134,"y":84},{"x":-12,"y":44},{"x":-45,"y":29},{"x":-182,"y":57},{"x":-57,"y":109},{"x":-83,"y":19},{"x":-82,"y":69}],"type":"area"},{"arc":[{"x":146865,"y":144190},{"x":-67,"y":-105},{"x":-131,"y":8},{"x":11,"y":-74},{"x":-50,"y":-91},{"x":-138,"y":-4},{"x":-63,"y":-67},{"x":-85,"y":62},{"x":-44,"y":-20},{"x":-52,"y":12},{"x":-59,"y":-64},{"x":-44,"y":-4},{"x":-22,"y":-45},{"x":-50,"y":51},{"x":-52,"y":-43},{"x":-71,"y":12},{"x":-4,"y":40},{"x":-50,"y":-19},{"x":-102,"y":14},{"x":-44,"y":-77},{"x":-59,"y":-12},{"x":-115,"y":44},{"x":-51,"y":118},{"x":-80,"y":-8},{"x":-56,"y":76},{"x":-141,"y":18},{"x":-82,"y":199},{"x":-65,"y":57},{"x":-28,"y":74},{"x":15,"y":46},{"x":-2,"y":-23},{"x":40,"y":-9},{"x":51,"y":28},{"x":-23,"y":26},{"x":127,"y":13},{"x":-5,"y":105},{"x":-66,"y":99},{"x":28,"y":27},{"x":-29,"y":25},{"x":22,"y":54},{"x":18,"y":21},{"x":42,"y":-30},{"x":51,"y":18},{"x":84,"y":95},{"x":100,"y":24},{"x":-8,"y":73},{"x":35,"y":75},{"x":23,"y":14},{"x":170,"y":-48},{"x":14,"y":50},{"x":89,"y":72},{"x":137,"y":-2},{"x":23,"y":72},{"x":37,"y":-17},{"x":175,"y":67},{"x":35,"y":-27},{"x":145,"y":24}],"type":"area"},{"arc":[{"x":146399,"y":145214},{"x":45,"y":82},{"x":98,"y":-2},{"x":67,"y":-41},{"x":69,"y":-1},{"x":26,"y":-34},{"x":31,"y":12},{"x":47,"y":109},{"x":71,"y":16},{"x":-19,"y":86},{"x":41,"y":118},{"x":-17,"y":62},{"x":-79,"y":21},{"x":-39,"y":41},{"x":-6,"y":58},{"x":29,"y":55},{"x":81,"y":54},{"x":-6,"y":67},{"x":26,"y":31},{"x":66,"y":-5},{"x":79,"y":58},{"x":130,"y":-70},{"x":255,"y":31}],"type":"area"},{"arc":[{"x":147394,"y":145962},{"x":-38,"y":99},{"x":-76,"y":51},{"x":-8,"y":139},{"x":-91,"y":36},{"x":20,"y":195},{"x":-54,"y":-31},{"x":-214,"y":-22},{"x":-24,"y":-71},{"x":-77,"y":-35},{"x":-58,"y":40},{"x":7,"y":31},{"x":-64,"y":29},{"x":-116,"y":-46}],"type":"area"},{"arc":[{"x":146601,"y":146377},{"x":23,"y":-51},{"x":-63,"y":-65},{"x":-18,"y":-94},{"x":-41,"y":3},{"x":-3,"y":-102},{"x":-228,"y":-21},{"x":-30,"y":-42},{"x":-122,"y":-22},{"x":-11,"y":36},{"x":-101,"y":12},{"x":-60,"y":79},{"x":-54,"y":-15},{"x":-34,"y":93},{"x":-174,"y":-224},{"x":-119,"y":-74}],"type":"admin"},{"arc":[{"x":145566,"y":145890},{"x":48,"y":-81},{"x":-175,"y":-76},{"x":-30,"y":-130},{"x":-43,"y":-58},{"x":-100,"y":-36},{"x":-31,"y":-52},{"x":-50,"y":6},{"x":-27,"y":-24},{"x":-2,"y":-82},{"x":-36,"y":-8},{"x":-48,"y":28},{"x":3,"y":-25},{"x":-34,"y":4}],"type":"area"},{"arc":[{"x":145041,"y":145356},{"x":-15,"y":-41},{"x":49,"y":-53},{"x":-31,"y":-86},{"x":2,"y":-113},{"x":-34,"y":-28},{"x":16,"y":-128},{"x":-102,"y":-19},{"x":-38,"y":38},{"x":-93,"y":2},{"x":-58,"y":134},{"x":-25,"y":-48},{"x":-111,"y":-57},{"x":-62,"y":95}],"type":"admin"},{"arc":[{"x":144539,"y":145052},{"x":-276,"y":-34}],"type":"area"},{"arc":[{"x":144263,"y":145018},{"x":-106,"y":-50},{"x":-89,"y":-2},{"x":-23,"y":-64}],"type":"admin"},{"arc":[{"x":144045,"y":144902},{"x":-26,"y":-68},{"x":28,"y":-74},{"x":152,"y":-268},{"x":59,"y":-42},{"x":-34,"y":-60},{"x":40,"y":-104},{"x":-26,"y":-74}],"type":"area"},{"arc":[{"x":145340,"y":143524},{"x":52,"y":-57},{"x":132,"y":-9},{"x":14,"y":39},{"x":93,"y":5},{"x":70,"y":79},{"x":87,"y":-28},{"x":-15,"y":-45},{"x":92,"y":-89},{"x":-53,"y":-17},{"x":8,"y":-86},{"x":165,"y":-30},{"x":113,"y":44},{"x":67,"y":-109},{"x":28,"y":114},{"x":130,"y":100},{"x":33,"y":7},{"x":54,"y":-39},{"x":91,"y":37},{"x":130,"y":-38},{"x":65,"y":30},{"x":204,"y":-18},{"x":72,"y":-54},{"x":5,"y":-70},{"x":42,"y":-50},{"x":-16,"y":-40},{"x":49,"y":-19},{"x":3,"y":-98},{"x":201,"y":-42},{"x":15,"y":-58},{"x":-60,"y":-62},{"x":6,"y":-32},{"x":60,"y":-90},{"x":-13,"y":-58},{"x":123,"y":-60},{"x":-28,"y":-70},{"x":38,"y":-26},{"x":-4,"y":-56},{"x":157,"y":100},{"x":69,"y":17},{"x":50,"y":-27},{"x":-20,"y":-88},{"x":54,"y":-58},{"x":-24,"y":-46},{"x":31,"y":-73},{"x":-26,"y":-65}],"type":"area"},{"arc":[{"x":147684,"y":142289},{"x":47,"y":-29},{"x":20,"y":-76},{"x":40,"y":-20},{"x":29,"y":34},{"x":44,"y":-4},{"x":48,"y":-60},{"x":168,"y":40},{"x":62,"y":74},{"x":86,"y":-65},{"x":149,"y":-27},{"x":-6,"y":-36},{"x":56,"y":-101},{"x":119,"y":-37}],"type":"area"},{"arc":[{"x":143673,"y":151382},{"x":-13,"y":-34},{"x":61,"y":-79},{"x":-95,"y":-61},{"x":-80,"y":0},{"x":-76,"y":-148},{"x":-76,"y":-47},{"x":-6,"y":-51},{"x":-53,"y":-54},{"x":32,"y":-50},{"x":-27,"y":-154},{"x":-53,"y":-34},{"x":-21,"y":-81},{"x":-98,"y":-71},{"x":-7,"y":-27},{"x":83,"y":-86},{"x":36,"y":-115},{"x":180,"y":-107},{"x":92,"y":-112},{"x":78,"y":-11},{"x":11,"y":-44},{"x":174,"y":-52},{"x":45,"y":-54},{"x":18,"y":33},{"x":37,"y":-25},{"x":-8,"y":-23},{"x":41,"y":-11},{"x":-27,"y":70},{"x":66,"y":193},{"x":-13,"y":33},{"x":34,"y":29},{"x":8,"y":233},{"x":45,"y":101},{"x":106,"y":91},{"x":40,"y":-209},{"x":-32,"y":-34},{"x":-1,"y":-176},{"x":70,"y":-38},{"x":118,"y":-174},{"x":59,"y":-1},{"x":63,"y":-57},{"x":115,"y":-47},{"x":85,"y":-135},{"x":-21,"y":-76},{"x":72,"y":-44},{"x":-31,"y":-42},{"x":-2,"y":-105},{"x":79,"y":7},{"x":52,"y":-42},{"x":122,"y":61},{"x":82,"y":-37},{"x":-4,"y":-154},{"x":-42,"y":-85},{"x":65,"y":-179},{"x":40,"y":-34},{"x":250,"y":31},{"x":64,"y":-22},{"x":37,"y":-77},{"x":98,"y":0}],"type":"area"},{"arc":[{"x":145545,"y":148965},{"x":33,"y":35},{"x":50,"y":7},{"x":108,"y":-26},{"x":-18,"y":26},{"x":69,"y":238},{"x":-62,"y":168},{"x":5,"y":111},{"x":61,"y":-11},{"x":61,"y":47},{"x":91,"y":-1},{"x":145,"y":-93},{"x":105,"y":-37},{"x":60,"y":8},{"x":20,"y":70},{"x":36,"y":-9}],"type":"admin"},{"arc":[{"x":146309,"y":149498},{"x":78,"y":116},{"x":98,"y":8},{"x":53,"y":79},{"x":150,"y":-16},{"x":103,"y":-115},{"x":118,"y":93},{"x":34,"y":-4},{"x":35,"y":-31},{"x":4,"y":-74},{"x":41,"y":-32},{"x":93,"y":-230},{"x":304,"y":-212},{"x":-25,"y":-42},{"x":23,"y":-50}],"type":"admin"},{"arc":[{"x":147418,"y":148988},{"x":61,"y":-22},{"x":34,"y":33},{"x":50,"y":-37},{"x":45,"y":-105}],"type":"admin"},{"arc":[{"x":147608,"y":148857},{"x":325,"y":-7},{"x":141,"y":-57},{"x":40,"y":54},{"x":170,"y":40},{"x":115,"y":105},{"x":284,"y":168}],"type":"area"},{"arc":[{"x":146865,"y":144190},{"x":-15,"y":101},{"x":-35,"y":13},{"x":-38,"y":78},{"x":-224,"y":55},{"x":-60,"y":90},{"x":-123,"y":34},{"x":-150,"y":99},{"x":-37,"y":173},{"x":76,"y":20},{"x":135,"y":92},{"x":33,"y":210},{"x":-28,"y":59}],"type":"area"},{"arc":[{"x":144488,"y":148025},{"x":-22,"y":34},{"x":17,"y":93},{"x":-153,"y":93},{"x":-46,"y":133},{"x":95,"y":38},{"x":64,"y":74},{"x":-38,"y":43},{"x":-92,"y":3},{"x":-108,"y":122},{"x":25,"y":150},{"x":-22,"y":45},{"x":-132,"y":55},{"x":-56,"y":-41},{"x":-126,"y":211},{"x":-37,"y":-42},{"x":-32,"y":0},{"x":-17,"y":-63},{"x":-84,"y":-9},{"x":-40,"y":-29},{"x":-22,"y":4},{"x":1,"y":41},{"x":-48,"y":24},{"x":-27,"y":-27},{"x":-137,"y":-16},{"x":-39,"y":-68},{"x":-46,"y":-2},{"x":-97,"y":-90},{"x":-86,"y":-39},{"x":-61,"y":26},{"x":-28,"y":-13},{"x":-58,"y":-124},{"x":-171,"y":-119},{"x":-106,"y":-38},{"x":-21,"y":12},{"x":27,"y":62},{"x":-28,"y":41},{"x":88,"y":79},{"x":-22,"y":65},{"x":33,"y":125},{"x":-91,"y":78},{"x":-47,"y":-3},{"x":-53,"y":31},{"x":-22,"y":38},{"x":-13,"y":-34},{"x":-54,"y":-23},{"x":24,"y":-18},{"x":-25,"y":-57},{"x":-49,"y":-13},{"x":-53,"y":-69},{"x":-68,"y":-26},{"x":-26,"y":41},{"x":-60,"y":3},{"x":25,"y":-75},{"x":-28,"y":-131}],"type":"area"},{"arc":[{"x":142289,"y":148286},{"x":306,"y":48},{"x":32,"y":26},{"x":27,"y":-24},{"x":-35,"y":-53},{"x":80,"y":-26},{"x":13,"y":-97},{"x":91,"y":-67},{"x":-52,"y":-77},{"x":51,"y":-51},{"x":64,"y":-24},{"x":36,"y":22},{"x":79,"y":-78},{"x":-10,"y":-32},{"x":169,"y":-149},{"x":93,"y":-3},{"x":62,"y":62},{"x":60,"y":-38},{"x":236,"y":-44},{"x":91,"y":-221},{"x":39,"y":-18}],"type":"area"},{"arc":[{"x":143721,"y":147442},{"x":82,"y":-29},{"x":23,"y":84},{"x":95,"y":-22},{"x":82,"y":90},{"x":106,"y":-69},{"x":144,"y":0},{"x":52,"y":-27},{"x":48,"y":65},{"x":64,"y":-34},{"x":138,"y":38}],"type":"admin"},{"arc":[{"x":144555,"y":147538},{"x":64,"y":109},{"x":-69,"y":77},{"x":42,"y":92},{"x":-25,"y":24},{"x":-100,"y":-3},{"x":-72,"y":47},{"x":36,"y":69},{"x":51,"y":29},{"x":6,"y":43}],"type":"admin"},{"arc":[{"x":142976,"y":142890},{"x":-624,"y":-291},{"x":-253,"y":-219}],"type":"admin"},{"arc":[{"x":142099,"y":142380},{"x":-215,"y":-89},{"x":-167,"y":-166},{"x":-55,"y":-21}],"type":"admin"},{"arc":[{"x":141662,"y":142104},{"x":37,"y":-71},{"x":93,"y":-61},{"x":22,"y":-62},{"x":42,"y":-21},{"x":80,"y":42},{"x":97,"y":131},{"x":70,"y":32},{"x":205,"y":-47}],"type":"area"},{"arc":[{"x":142308,"y":142047},{"x":193,"y":-74}],"type":"admin"},{"arc":[{"x":142501,"y":141973},{"x":62,"y":0},{"x":72,"y":34},{"x":149,"y":188},{"x":91,"y":25},{"x":113,"y":-4}],"type":"admin"},{"arc":[{"x":143123,"y":142632},{"x":-41,"y":63},{"x":-57,"y":-25},{"x":-48,"y":87},{"x":19,"y":77},{"x":-20,"y":56}],"type":"admin"},{"arc":[{"x":144488,"y":148025},{"x":54,"y":14},{"x":17,"y":59},{"x":62,"y":-36},{"x":31,"y":35},{"x":29,"y":-20},{"x":-9,"y":47},{"x":29,"y":45},{"x":43,"y":-18},{"x":45,"y":31},{"x":46,"y":-6},{"x":47,"y":50},{"x":34,"y":102},{"x":36,"y":5},{"x":61,"y":72},{"x":175,"y":-82},{"x":17,"y":-64},{"x":75,"y":-43}],"type":"admin"},{"arc":[{"x":145280,"y":148216},{"x":54,"y":80},{"x":12,"y":247},{"x":31,"y":20},{"x":21,"y":75},{"x":-21,"y":123},{"x":168,"y":204}],"type":"admin"},{"arc":[{"x":145579,"y":146035},{"x":-40,"y":100},{"x":-62,"y":8},{"x":-52,"y":-34},{"x":-86,"y":21},{"x":15,"y":31},{"x":-41,"y":-14},{"x":12,"y":34},{"x":-34,"y":-82},{"x":-128,"y":-81},{"x":-8,"y":-38},{"x":-107,"y":3},{"x":-58,"y":-137},{"x":-99,"y":-31},{"x":-95,"y":119},{"x":4,"y":31},{"x":-68,"y":-9},{"x":-58,"y":23},{"x":-81,"y":-35},{"x":-146,"y":19},{"x":-3,"y":30},{"x":64,"y":-10},{"x":161,"y":150},{"x":-14,"y":56},{"x":-40,"y":-6},{"x":-9,"y":24},{"x":18,"y":84},{"x":-51,"y":0},{"x":-24,"y":39}],"type":"admin"},{"arc":[{"x":144549,"y":146330},{"x":-102,"y":-26},{"x":-27,"y":-86},{"x":-46,"y":20},{"x":-71,"y":-17},{"x":9,"y":17},{"x":-31,"y":3},{"x":23,"y":5},{"x":-6,"y":51}],"type":"admin"},{"arc":[{"x":144298,"y":146297},{"x":-12,"y":-2}],"type":"area"},{"arc":[{"x":144286,"y":146295},{"x":-78,"y":-32},{"x":-35,"y":-85}],"type":"admin"},{"arc":[{"x":144173,"y":146178},{"x":59,"y":-89},{"x":14,"y":-90},{"x":-106,"y":-220},{"x":-13,"y":-225},{"x":-76,"y":-52}],"type":"area"},{"arc":[{"x":144051,"y":145502},{"x":19,"y":-43},{"x":119,"y":-5},{"x":18,"y":-93},{"x":133,"y":-8},{"x":-5,"y":-52},{"x":-53,"y":-31},{"x":52,"y":-100},{"x":-11,"y":-47},{"x":-78,"y":2},{"x":18,"y":-107}],"type":"admin"},{"arc":[{"x":144539,"y":145052},{"x":158,"y":20},{"x":-13,"y":40},{"x":-85,"y":2},{"x":-22,"y":21},{"x":-2,"y":133},{"x":103,"y":5},{"x":-11,"y":104},{"x":102,"y":179},{"x":92,"y":-37},{"x":-42,"y":17},{"x":42,"y":3},{"x":-23,"y":32},{"x":48,"y":-44},{"x":-42,"y":-79},{"x":22,"y":-41},{"x":72,"y":61},{"x":30,"y":-63},{"x":11,"y":29},{"x":45,"y":-11},{"x":-9,"y":-32},{"x":23,"y":23},{"x":3,"y":-58}],"type":"admin"},{"arc":[{"x":145566,"y":145890},{"x":-52,"y":135},{"x":65,"y":10}],"type":"admin"},{"arc":[{"x":144273,"y":146228},{"x":-34,"y":19},{"x":18,"y":32},{"x":34,"y":-26},{"x":-19,"y":-4},{"x":9,"y":-16},{"x":9,"y":-1},{"x":-17,"y":-4}],"type":"admin"},{"arc":[{"x":141807,"y":147394},{"x":22,"y":-56},{"x":76,"y":-79},{"x":54,"y":-10},{"x":5,"y":-27},{"x":42,"y":44},{"x":27,"y":-11}],"type":"admin"},{"arc":[{"x":143382,"y":146936},{"x":40,"y":58},{"x":162,"y":39},{"x":69,"y":59}],"type":"area"},{"arc":[{"x":143653,"y":147092},{"x":-76,"y":100},{"x":25,"y":48},{"x":-32,"y":50},{"x":65,"y":120},{"x":78,"y":3},{"x":8,"y":29}],"type":"admin"},{"arc":[{"x":144045,"y":144902},{"x":-31,"y":38},{"x":-56,"y":-24},{"x":-84,"y":9},{"x":-17,"y":107}],"type":"admin"},{"arc":[{"x":143857,"y":145032},{"x":-101,"y":21},{"x":-95,"y":-22},{"x":-130,"y":-258},{"x":-124,"y":-151}],"type":"admin"},{"arc":[{"x":143407,"y":144622},{"x":-11,"y":-297}],"type":"admin"},{"arc":[{"x":143396,"y":144325},{"x":-70,"y":-287},{"x":-60,"y":-46},{"x":-151,"y":-274}],"type":"admin"},{"arc":[{"x":143115,"y":143718},{"x":58,"y":-330},{"x":37,"y":-95},{"x":34,"y":12}],"type":"admin"},{"arc":[{"x":143244,"y":143305},{"x":-24,"y":61},{"x":58,"y":8},{"x":7,"y":-18},{"x":7,"y":41},{"x":49,"y":35},{"x":24,"y":152},{"x":68,"y":-22}],"type":"admin"},{"arc":[{"x":143433,"y":143562},{"x":50,"y":9},{"x":31,"y":-70}],"type":"admin"},{"arc":[{"x":143226,"y":145927},{"x":35,"y":-29},{"x":8,"y":-112},{"x":38,"y":-45},{"x":63,"y":-13},{"x":-4,"y":-87},{"x":23,"y":-39},{"x":51,"y":-14},{"x":-3,"y":-130},{"x":126,"y":-39},{"x":45,"y":-87},{"x":80,"y":-12},{"x":25,"y":-110},{"x":41,"y":3},{"x":113,"y":88},{"x":27,"y":-19},{"x":31,"y":12},{"x":54,"y":70}],"type":"admin"},{"arc":[{"x":143979,"y":145364},{"x":6,"y":121},{"x":66,"y":17}],"type":"admin"},{"arc":[{"x":144173,"y":146178},{"x":-30,"y":-26},{"x":-3,"y":28},{"x":-21,"y":-32},{"x":-74,"y":16},{"x":38,"y":31},{"x":10,"y":42},{"x":-34,"y":16},{"x":67,"y":99},{"x":-11,"y":45},{"x":35,"y":62},{"x":-62,"y":1},{"x":-23,"y":79},{"x":-53,"y":-25},{"x":-52,"y":35},{"x":-54,"y":-24},{"x":-33,"y":45},{"x":52,"y":106},{"x":-76,"y":28},{"x":8,"y":100},{"x":-98,"y":88},{"x":6,"y":59},{"x":-112,"y":141}],"type":"admin"},{"arc":[{"x":144411,"y":146599},{"x":-9,"y":-61},{"x":-93,"y":-46},{"x":31,"y":-12},{"x":-69,"y":-5},{"x":6,"y":-33},{"x":67,"y":-28},{"x":-13,"y":-37},{"x":-77,"y":-13},{"x":32,"y":-69}],"type":"admin"},{"arc":[{"x":144298,"y":146297},{"x":59,"y":20},{"x":140,"y":190},{"x":-24,"y":74},{"x":-62,"y":18}],"type":"admin"},{"arc":[{"x":145482,"y":142299},{"x":56,"y":-10},{"x":39,"y":-59},{"x":106,"y":-56},{"x":91,"y":1},{"x":58,"y":-37},{"x":77,"y":21},{"x":132,"y":-89},{"x":35,"y":-60},{"x":92,"y":-6},{"x":64,"y":-50},{"x":130,"y":59},{"x":121,"y":-8},{"x":55,"y":-33},{"x":146,"y":120},{"x":110,"y":8},{"x":105,"y":-29},{"x":72,"y":144},{"x":102,"y":26},{"x":16,"y":27},{"x":168,"y":-41},{"x":89,"y":53},{"x":55,"y":-13},{"x":74,"y":20},{"x":83,"y":-22},{"x":88,"y":35},{"x":38,"y":-11}],"type":"area"},{"arc":[{"x":143919,"y":142139},{"x":-65,"y":8},{"x":-34,"y":116}],"type":"admin"},{"arc":[{"x":143258,"y":142052},{"x":51,"y":-100},{"x":75,"y":-17},{"x":-14,"y":-34},{"x":37,"y":12},{"x":49,"y":-31},{"x":-19,"y":-38}],"type":"admin"},{"arc":[{"x":143516,"y":141725},{"x":47,"y":-35},{"x":45,"y":47},{"x":115,"y":-25}],"type":"admin"},{"arc":[{"x":143723,"y":141712},{"x":111,"y":-17},{"x":109,"y":-51},{"x":94,"y":-4}],"type":"admin"},{"arc":[{"x":144037,"y":141640},{"x":0,"y":79},{"x":-77,"y":48},{"x":18,"y":64},{"x":-40,"y":25},{"x":1,"y":176},{"x":-39,"y":-3},{"x":19,"y":110}],"type":"area"},{"arc":[{"x":153915,"y":144933},{"x":192,"y":19},{"x":75,"y":48},{"x":84,"y":-69},{"x":29,"y":44},{"x":59,"y":-15},{"x":100,"y":41},{"x":59,"y":56},{"x":76,"y":6},{"x":39,"y":24},{"x":22,"y":73},{"x":87,"y":19}],"type":"admin"},{"arc":[{"x":144271,"y":142316},{"x":23,"y":-65},{"x":-86,"y":-5},{"x":-18,"y":-151},{"x":-78,"y":42},{"x":-10,"y":-29},{"x":-29,"y":4},{"x":-82,"y":48},{"x":-72,"y":-21}],"type":"admin"},{"arc":[{"x":144037,"y":141640},{"x":207,"y":30},{"x":33,"y":-16},{"x":49,"y":83},{"x":206,"y":56},{"x":153,"y":87},{"x":133,"y":37},{"x":125,"y":-31},{"x":108,"y":32},{"x":21,"y":-20},{"x":-13,"y":-42}],"type":"admin"},{"arc":[{"x":145059,"y":141856},{"x":77,"y":-34},{"x":30,"y":-84},{"x":62,"y":-29},{"x":51,"y":88},{"x":59,"y":13},{"x":60,"y":-80},{"x":137,"y":-87},{"x":44,"y":35},{"x":16,"y":102},{"x":177,"y":-116},{"x":110,"y":44},{"x":-45,"y":-113},{"x":19,"y":-109},{"x":57,"y":-33},{"x":19,"y":-82},{"x":-13,"y":-222},{"x":60,"y":-45},{"x":-32,"y":-46},{"x":13,"y":-58},{"x":62,"y":-22},{"x":25,"y":-65},{"x":115,"y":11},{"x":57,"y":-40},{"x":132,"y":33},{"x":118,"y":-52},{"x":94,"y":17},{"x":206,"y":-244},{"x":87,"y":12},{"x":155,"y":-169},{"x":126,"y":-58},{"x":146,"y":72},{"x":54,"y":139},{"x":62,"y":20},{"x":53,"y":-10},{"x":53,"y":-59},{"x":34,"y":14},{"x":124,"y":-38},{"x":72,"y":43},{"x":134,"y":27},{"x":246,"y":-59},{"x":27,"y":-80},{"x":115,"y":-85}],"type":"admin"},{"arc":[{"x":150324,"y":146494},{"x":-60,"y":6},{"x":-77,"y":50},{"x":-2,"y":86},{"x":-54,"y":14},{"x":-5,"y":52},{"x":-156,"y":93},{"x":-166,"y":49},{"x":-25,"y":110},{"x":-62,"y":0},{"x":-219,"y":191},{"x":-110,"y":20},{"x":-60,"y":-27},{"x":-22,"y":-97},{"x":68,"y":-115},{"x":-8,"y":-93},{"x":-49,"y":-61},{"x":-84,"y":-20},{"x":-56,"y":-52},{"x":-45,"y":25},{"x":-54,"y":-12},{"x":-96,"y":52},{"x":-50,"y":-22},{"x":-148,"y":40},{"x":-22,"y":-22},{"x":-122,"y":21},{"x":-32,"y":-16},{"x":-42,"y":41},{"x":-127,"y":-54},{"x":-95,"y":42},{"x":-130,"y":-17},{"x":-95,"y":26},{"x":-131,"y":-5},{"x":-23,"y":-26},{"x":21,"y":-65},{"x":-62,"y":9},{"x":-12,"y":-129},{"x":-58,"y":-41},{"x":-4,"y":-97},{"x":-47,"y":-13},{"x":-9,"y":-162},{"x":-38,"y":-52},{"x":36,"y":-27},{"x":-70,"y":-48},{"x":-46,"y":26},{"x":-41,"y":-51},{"x":-146,"y":11},{"x":-17,"y":-40},{"x":24,"y":-58},{"x":-41,"y":-32},{"x":-2,"y":-54},{"x":-59,"y":12}],"type":"area"},{"arc":[{"x":147608,"y":148857},{"x":-57,"y":-182},{"x":-34,"y":-13},{"x":-5,"y":-73},{"x":-16,"y":-28},{"x":-89,"y":-23},{"x":-49,"y":-160},{"x":5,"y":-112},{"x":84,"y":-64},{"x":-47,"y":-40},{"x":-64,"y":-147},{"x":-127,"y":-15},{"x":-60,"y":-51},{"x":89,"y":-253},{"x":-41,"y":-39},{"x":-13,"y":-103},{"x":-122,"y":-123},{"x":-67,"y":26},{"x":-23,"y":-21},{"x":-68,"y":39},{"x":-20,"y":-73},{"x":-73,"y":-21},{"x":31,"y":-90},{"x":-65,"y":-8},{"x":-56,"y":-75},{"x":-52,"y":-23},{"x":-61,"y":-274},{"x":-39,"y":9},{"x":-50,"y":-33}],"type":"admin"},{"arc":[{"x":146519,"y":146887},{"x":-16,"y":-72},{"x":-46,"y":-20},{"x":38,"y":-15},{"x":-18,"y":-69},{"x":28,"y":-40},{"x":-38,"y":-75},{"x":16,"y":-33},{"x":36,"y":-4},{"x":2,"y":-133},{"x":80,"y":-49}],"type":"admin"},{"arc":[{"x":141662,"y":142104},{"x":-163,"y":20}],"type":"admin"},{"arc":[{"x":141499,"y":142124},{"x":-328,"y":37},{"x":-48,"y":-11},{"x":-123,"y":-104},{"x":-191,"y":-12},{"x":-241,"y":36},{"x":-159,"y":-37},{"x":-92,"y":18}],"type":"admin"},{"arc":[{"x":140317,"y":142051},{"x":-13,"y":-32},{"x":94,"y":-21},{"x":254,"y":-126},{"x":58,"y":-94},{"x":-46,"y":-18},{"x":-223,"y":6},{"x":66,"y":-115},{"x":4,"y":-42},{"x":-54,"y":-64},{"x":49,"y":-82},{"x":125,"y":-36},{"x":97,"y":-75},{"x":100,"y":-3},{"x":42,"y":-37},{"x":-18,"y":-42},{"x":49,"y":-30}],"type":"admin"},{"arc":[{"x":140901,"y":141240},{"x":71,"y":-17},{"x":-27,"y":-51},{"x":34,"y":6},{"x":46,"y":-46},{"x":47,"y":14},{"x":33,"y":-31},{"x":-4,"y":-50},{"x":70,"y":-14},{"x":54,"y":-167},{"x":29,"y":16},{"x":149,"y":-46},{"x":-4,"y":-99},{"x":95,"y":-3},{"x":66,"y":34},{"x":54,"y":-98},{"x":107,"y":5},{"x":22,"y":-50},{"x":34,"y":-2}],"type":"admin"},{"arc":[{"x":141777,"y":140641},{"x":31,"y":78},{"x":118,"y":130},{"x":-12,"y":135},{"x":-83,"y":39},{"x":-25,"y":30},{"x":19,"y":18},{"x":-67,"y":43},{"x":44,"y":63},{"x":53,"y":-13},{"x":19,"y":49},{"x":-88,"y":28},{"x":-85,"y":-24},{"x":14,"y":-100},{"x":-18,"y":90},{"x":-59,"y":-1},{"x":-53,"y":29},{"x":83,"y":82},{"x":-149,"y":7},{"x":-29,"y":61},{"x":67,"y":22},{"x":41,"y":-19},{"x":-32,"y":30},{"x":24,"y":27},{"x":62,"y":37},{"x":78,"y":-8},{"x":78,"y":85}],"type":"admin"},{"arc":[{"x":141808,"y":141559},{"x":34,"y":27},{"x":119,"y":-10},{"x":8,"y":115},{"x":95,"y":160},{"x":47,"y":21},{"x":100,"y":-41},{"x":43,"y":11},{"x":8,"y":155},{"x":46,"y":50}],"type":"admin"},{"arc":[{"x":143287,"y":143131},{"x":1,"y":-27}],"type":"admin"},{"arc":[{"x":143288,"y":143104},{"x":43,"y":3},{"x":1,"y":23},{"x":-45,"y":1}],"type":"area"},{"arc":[{"x":143433,"y":143562},{"x":19,"y":-160},{"x":-26,"y":4},{"x":-9,"y":-36},{"x":-31,"y":12},{"x":-20,"y":-51},{"x":77,"y":-191},{"x":-108,"y":-6},{"x":-4,"y":-28},{"x":3,"y":-47},{"x":16,"y":15},{"x":10,"y":-58},{"x":41,"y":-34}],"type":"area"},{"arc":[{"x":143244,"y":143305},{"x":28,"y":4},{"x":15,"y":-178}],"type":"admin"},{"arc":[{"x":143288,"y":143104},{"x":-107,"y":-132},{"x":-205,"y":-82}],"type":"admin"},{"arc":[{"x":142331,"y":141403},{"x":-41,"y":-46},{"x":-43,"y":51},{"x":-169,"y":-54},{"x":-57,"y":32},{"x":-72,"y":-13},{"x":-27,"y":45},{"x":-59,"y":20},{"x":-55,"y":121}],"type":"area"},{"arc":[{"x":141777,"y":140641},{"x":88,"y":-23},{"x":5,"y":-67}],"type":"admin"},{"arc":[{"x":142826,"y":140633},{"x":15,"y":195},{"x":119,"y":-11},{"x":3,"y":74}],"type":"area"},{"arc":[{"x":143123,"y":140282},{"x":61,"y":34},{"x":98,"y":-5},{"x":69,"y":48},{"x":-18,"y":-136},{"x":-69,"y":-70},{"x":123,"y":-126},{"x":108,"y":-1},{"x":114,"y":-136}],"type":"area"},{"arc":[{"x":143609,"y":139890},{"x":191,"y":34},{"x":65,"y":35},{"x":-5,"y":69},{"x":29,"y":45},{"x":-18,"y":36},{"x":80,"y":17},{"x":147,"y":105},{"x":-26,"y":114},{"x":79,"y":96}],"type":"admin"},{"arc":[{"x":144151,"y":140441},{"x":-244,"y":83},{"x":9,"y":57},{"x":-67,"y":84},{"x":30,"y":48},{"x":-70,"y":69},{"x":-43,"y":-15}],"type":"admin"},{"arc":[{"x":142413,"y":139258},{"x":38,"y":6},{"x":23,"y":38},{"x":60,"y":-1},{"x":70,"y":57},{"x":111,"y":14},{"x":60,"y":-23},{"x":245,"y":113},{"x":70,"y":-10},{"x":10,"y":-54},{"x":-28,"y":-58},{"x":56,"y":-9},{"x":38,"y":40},{"x":128,"y":-16},{"x":44,"y":37},{"x":-2,"y":111},{"x":69,"y":105},{"x":134,"y":82}],"type":"admin"},{"arc":[{"x":143539,"y":139690},{"x":-9,"y":40},{"x":66,"y":41},{"x":13,"y":119}],"type":"admin"},{"arc":[{"x":143776,"y":141144},{"x":111,"y":-5},{"x":20,"y":19},{"x":137,"y":-20},{"x":123,"y":59},{"x":65,"y":5},{"x":-1,"y":56},{"x":55,"y":46}],"type":"admin"},{"arc":[{"x":144286,"y":141304},{"x":-313,"y":194},{"x":40,"y":34},{"x":1,"y":81},{"x":-101,"y":18},{"x":-4,"y":-80},{"x":-186,"y":161}],"type":"admin"},{"arc":[{"x":142568,"y":141705},{"x":-32,"y":42},{"x":6,"y":58},{"x":-32,"y":23},{"x":21,"y":105},{"x":-30,"y":40}],"type":"area"},{"arc":[{"x":145059,"y":141856},{"x":-113,"y":-89},{"x":61,"y":-95},{"x":-37,"y":-52},{"x":6,"y":-48},{"x":-50,"y":-36},{"x":0,"y":-44},{"x":-90,"y":-62},{"x":-47,"y":-195},{"x":-107,"y":-16},{"x":-62,"y":72},{"x":-15,"y":63},{"x":-44,"y":-9},{"x":-96,"y":34},{"x":-29,"y":-154}],"type":"area"},{"arc":[{"x":144436,"y":141225},{"x":52,"y":-42},{"x":-33,"y":-153},{"x":28,"y":-37},{"x":116,"y":-17},{"x":-25,"y":-200},{"x":-31,"y":-37},{"x":38,"y":-148},{"x":-36,"y":53},{"x":-20,"y":-6},{"x":-61,"y":-109},{"x":-95,"y":-30},{"x":-59,"y":-48},{"x":-33,"y":14},{"x":-126,"y":-24}],"type":"area"},{"arc":[{"x":143539,"y":139690},{"x":99,"y":-81},{"x":45,"y":-89},{"x":153,"y":-79},{"x":72,"y":-88},{"x":49,"y":0},{"x":67,"y":73},{"x":72,"y":-32},{"x":80,"y":76},{"x":35,"y":-9},{"x":74,"y":41},{"x":92,"y":-49},{"x":131,"y":-10},{"x":51,"y":-195},{"x":138,"y":-38},{"x":100,"y":-116},{"x":101,"y":11},{"x":120,"y":65},{"x":68,"y":67},{"x":25,"y":-5},{"x":-29,"y":38},{"x":27,"y":20},{"x":99,"y":-69},{"x":55,"y":28},{"x":56,"y":-14},{"x":38,"y":-167},{"x":58,"y":-34},{"x":106,"y":-7},{"x":173,"y":-81},{"x":-12,"y":-101},{"x":-239,"y":-62},{"x":-48,"y":-112}],"type":"admin"},{"arc":[{"x":145395,"y":138671},{"x":15,"y":-51},{"x":44,"y":-14},{"x":25,"y":18},{"x":95,"y":-41},{"x":9,"y":-80},{"x":-84,"y":-74},{"x":39,"y":-51},{"x":121,"y":-13},{"x":106,"y":26},{"x":52,"y":40},{"x":149,"y":-6},{"x":38,"y":25},{"x":219,"y":-43},{"x":56,"y":-55},{"x":133,"y":90},{"x":88,"y":-82},{"x":-12,"y":-91},{"x":-63,"y":-89},{"x":39,"y":-101},{"x":95,"y":-13},{"x":109,"y":-84},{"x":89,"y":40},{"x":118,"y":-71},{"x":70,"y":47}],"type":"admin"},{"arc":[{"x":144286,"y":141304},{"x":150,"y":-79}],"type":"area"},{"arc":[{"x":143979,"y":145364},{"x":-35,"y":-285},{"x":-87,"y":-47}],"type":"admin"},{"arc":[{"x":145147,"y":146707},{"x":-45,"y":93},{"x":-110,"y":-10},{"x":-39,"y":-47},{"x":62,"y":-107},{"x":-34,"y":-34},{"x":-25,"y":23},{"x":-56,"y":-75},{"x":-101,"y":-63},{"x":1,"y":-94},{"x":30,"y":-26},{"x":-37,"y":-58},{"x":-70,"y":-21},{"x":-125,"y":96},{"x":-49,"y":-54}],"type":"area"},{"arc":[{"x":145579,"y":146035},{"x":46,"y":9},{"x":-49,"y":97},{"x":23,"y":86},{"x":-91,"y":187},{"x":38,"y":28},{"x":40,"y":-35},{"x":30,"y":5},{"x":17,"y":37},{"x":-35,"y":65},{"x":-32,"y":27},{"x":-17,"y":-73},{"x":-50,"y":-2},{"x":14,"y":91},{"x":-45,"y":-44},{"x":-25,"y":31},{"x":-59,"y":-12},{"x":-92,"y":20},{"x":0,"y":18},{"x":-119,"y":-32},{"x":14,"y":72},{"x":-32,"y":25},{"x":29,"y":35},{"x":-37,"y":37}],"type":"area"},{"arc":[{"x":146519,"y":146887},{"x":-57,"y":-21},{"x":-28,"y":17},{"x":-89,"y":-48},{"x":-23,"y":17},{"x":78,"y":144},{"x":-41,"y":74},{"x":-97,"y":-46},{"x":-89,"y":-144},{"x":-37,"y":24},{"x":-57,"y":150},{"x":-158,"y":77},{"x":-53,"y":108},{"x":-160,"y":94},{"x":-94,"y":13}],"type":"area"},{"arc":[{"x":145614,"y":147346},{"x":-23,"y":-59},{"x":-46,"y":13},{"x":-24,"y":-44},{"x":11,"y":-105},{"x":-21,"y":45},{"x":-29,"y":1},{"x":-28,"y":-31},{"x":13,"y":-57},{"x":-99,"y":12},{"x":34,"y":-34},{"x":60,"y":-1},{"x":33,"y":-63},{"x":-57,"y":-85},{"x":-58,"y":-24},{"x":29,"y":-39},{"x":-15,"y":-19},{"x":-40,"y":34},{"x":-44,"y":-20},{"x":-13,"y":-47},{"x":-95,"y":1},{"x":-23,"y":-100},{"x":-32,"y":-17}],"type":"area"},{"arc":[{"x":144555,"y":147538},{"x":49,"y":-133},{"x":-65,"y":-201},{"x":-17,"y":-28},{"x":-173,"y":-43},{"x":-8,"y":-47},{"x":36,"y":-162},{"x":-42,"y":-5},{"x":-28,"y":-89},{"x":41,"y":-82},{"x":-1,"y":-100},{"x":64,"y":-49}],"type":"area"},{"arc":[{"x":145614,"y":147346},{"x":19,"y":158},{"x":-31,"y":39},{"x":-24,"y":-11},{"x":-75,"y":38},{"x":119,"y":129},{"x":-1,"y":43},{"x":-79,"y":90},{"x":-8,"y":52},{"x":-63,"y":30},{"x":-41,"y":101},{"x":-100,"y":59},{"x":-14,"y":99},{"x":-36,"y":43}],"type":"area"},{"arc":[{"x":147418,"y":148988},{"x":-126,"y":-235},{"x":-70,"y":-3},{"x":-177,"y":-174},{"x":15,"y":-56},{"x":-21,"y":-32},{"x":-131,"y":-89},{"x":-63,"y":-18},{"x":-40,"y":30},{"x":-83,"y":-84},{"x":-80,"y":-95},{"x":24,"y":-26},{"x":-37,"y":-25},{"x":-24,"y":-88},{"x":-57,"y":46},{"x":-114,"y":-27},{"x":-63,"y":43},{"x":-46,"y":-1},{"x":-48,"y":98},{"x":-87,"y":38},{"x":-17,"y":69},{"x":207,"y":436},{"x":40,"y":8},{"x":63,"y":75},{"x":-71,"y":152},{"x":20,"y":112},{"x":-123,"y":356}],"type":"area"},{"arc":[{"x":152601,"y":143004},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":152604,"y":143008},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":152611,"y":143009},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":152627,"y":143011},{"x":9,"y":6}],"type":"coastline"},{"arc":[{"x":152643,"y":143022},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":152660,"y":143026},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":152664,"y":143027},{"x":6,"y":7}],"type":"coastline"},{"arc":[{"x":152671,"y":143034},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":152676,"y":143036},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":152698,"y":143047},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":152706,"y":143053},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":152711,"y":143055},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":152731,"y":143062},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":152739,"y":143060},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":152750,"y":143053},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":152760,"y":143052},{"x":9,"y":5}],"type":"coastline"},{"arc":[{"x":152806,"y":143061},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":152824,"y":143063},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":152835,"y":143068},{"x":9,"y":6}],"type":"coastline"},{"arc":[{"x":152847,"y":143076},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":152853,"y":143081},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":152861,"y":143088},{"x":1,"y":6}],"type":"coastline"},{"arc":[{"x":152863,"y":143098},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":152867,"y":143104},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":152876,"y":143108},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":152887,"y":143115},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":152906,"y":143145},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":152922,"y":143135},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":152931,"y":143133},{"x":6,"y":5}],"type":"coastline"},{"arc":[{"x":152937,"y":143138},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":152941,"y":143146},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":152956,"y":143156},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":152988,"y":143156},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":153027,"y":143159},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":153040,"y":143161},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":153050,"y":143166},{"x":5,"y":2}],"type":"coastline"},{"arc":[{"x":153064,"y":143159},{"x":2,"y":-8}],"type":"coastline"},{"arc":[{"x":153068,"y":143142},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":153070,"y":143139},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":153075,"y":143136},{"x":5,"y":-3}],"type":"coastline"},{"arc":[{"x":153080,"y":143132},{"x":1,"y":-7}],"type":"coastline"},{"arc":[{"x":153082,"y":143123},{"x":3,"y":-5}],"type":"coastline"},{"arc":[{"x":153085,"y":143118},{"x":4,"y":-2}],"type":"coastline"},{"arc":[{"x":153089,"y":143116},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":153104,"y":143115},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":153108,"y":143115},{"x":8,"y":0}],"type":"coastline"},{"arc":[{"x":153135,"y":143114},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":153143,"y":143121},{"x":4,"y":2}],"type":"coastline"},{"arc":[{"x":153160,"y":143117},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":153172,"y":143095},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":153190,"y":143094},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":153217,"y":143083},{"x":4,"y":-3}],"type":"coastline"},{"arc":[{"x":153231,"y":143076},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":153253,"y":143089},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":153254,"y":143093},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":153262,"y":143086},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":153264,"y":143081},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":153266,"y":143078},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":153271,"y":143072},{"x":1,"y":-2}],"type":"coastline"},{"arc":[{"x":153273,"y":143064},{"x":0,"y":-3}],"type":"coastline"},{"arc":[{"x":153275,"y":143042},{"x":2,"y":-4}],"type":"coastline"},{"arc":[{"x":153284,"y":143032},{"x":3,"y":-2}],"type":"coastline"},{"arc":[{"x":153289,"y":143028},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":153297,"y":143016},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":153317,"y":143019},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":153323,"y":143021},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153331,"y":143030},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":153338,"y":143033},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":153342,"y":143039},{"x":0,"y":2}],"type":"coastline"},{"arc":[{"x":153342,"y":143041},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":153342,"y":143054},{"x":-3,"y":-1}],"type":"coastline"},{"arc":[{"x":153339,"y":143053},{"x":-2,"y":0}],"type":"coastline"},{"arc":[{"x":153337,"y":143053},{"x":-1,"y":5}],"type":"coastline"},{"arc":[{"x":153336,"y":143058},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":153337,"y":143066},{"x":2,"y":6}],"type":"coastline"},{"arc":[{"x":153339,"y":143072},{"x":1,"y":3}],"type":"coastline"},{"arc":[{"x":153341,"y":143084},{"x":1,"y":7}],"type":"coastline"},{"arc":[{"x":153342,"y":143091},{"x":3,"y":10}],"type":"coastline"},{"arc":[{"x":153345,"y":143101},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":153356,"y":143117},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":153369,"y":143130},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":153371,"y":143132},{"x":1,"y":11}],"type":"coastline"},{"arc":[{"x":153374,"y":143166},{"x":0,"y":5}],"type":"coastline"},{"arc":[{"x":153375,"y":143189},{"x":-1,"y":3}],"type":"coastline"},{"arc":[{"x":153374,"y":143192},{"x":-2,"y":2}],"type":"coastline"},{"arc":[{"x":153372,"y":143194},{"x":-2,"y":5}],"type":"coastline"},{"arc":[{"x":153367,"y":143224},{"x":4,"y":7}],"type":"coastline"},{"arc":[{"x":153386,"y":143246},{"x":7,"y":8}],"type":"coastline"},{"arc":[{"x":153401,"y":143261},{"x":5,"y":6}],"type":"coastline"},{"arc":[{"x":153413,"y":143273},{"x":3,"y":4}],"type":"coastline"},{"arc":[{"x":153417,"y":143279},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153421,"y":143287},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":153424,"y":143295},{"x":2,"y":7}],"type":"coastline"},{"arc":[{"x":153435,"y":143330},{"x":1,"y":4}],"type":"coastline"},{"arc":[{"x":153439,"y":143339},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":153450,"y":143351},{"x":11,"y":2}],"type":"coastline"},{"arc":[{"x":153465,"y":143355},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":153490,"y":143361},{"x":7,"y":3}],"type":"coastline"},{"arc":[{"x":153501,"y":143367},{"x":5,"y":1}],"type":"coastline"},{"arc":[{"x":153531,"y":143368},{"x":4,"y":-1}],"type":"coastline"},{"arc":[{"x":153538,"y":143367},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":153540,"y":143365},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":153570,"y":143365},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":153585,"y":143368},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":153586,"y":143368},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153594,"y":143371},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":153629,"y":143387},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":153632,"y":143388},{"x":9,"y":7}],"type":"coastline"},{"arc":[{"x":153641,"y":143395},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":153651,"y":143409},{"x":1,"y":2}],"type":"coastline"},{"arc":[{"x":153672,"y":143433},{"x":6,"y":1}],"type":"coastline"},{"arc":[{"x":153678,"y":143434},{"x":11,"y":4}],"type":"coastline"},{"arc":[{"x":153698,"y":143442},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":153706,"y":143453},{"x":0,"y":3}],"type":"coastline"},{"arc":[{"x":153720,"y":143463},{"x":6,"y":4}],"type":"coastline"},{"arc":[{"x":153730,"y":143470},{"x":6,"y":3}],"type":"coastline"},{"arc":[{"x":153737,"y":143473},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":153738,"y":143474},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":153740,"y":143475},{"x":8,"y":2}],"type":"coastline"},{"arc":[{"x":153750,"y":143480},{"x":10,"y":14}],"type":"coastline"},{"arc":[{"x":153766,"y":143501},{"x":8,"y":10}],"type":"coastline"},{"arc":[{"x":153778,"y":143516},{"x":2,"y":2}],"type":"coastline"},{"arc":[{"x":153780,"y":143518},{"x":7,"y":6}],"type":"coastline"},{"arc":[{"x":153787,"y":143524},{"x":4,"y":3}],"type":"coastline"},{"arc":[{"x":153791,"y":143527},{"x":4,"y":5}],"type":"coastline"},{"arc":[{"x":153795,"y":143532},{"x":3,"y":7}],"type":"coastline"},{"arc":[{"x":153806,"y":143566},{"x":-3,"y":6}],"type":"coastline"},{"arc":[{"x":153799,"y":143583},{"x":9,"y":12}],"type":"coastline"},{"arc":[{"x":153832,"y":143601},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":153870,"y":143571},{"x":5,"y":-2}],"type":"coastline"},{"arc":[{"x":153875,"y":143569},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":153901,"y":143575},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":153932,"y":143584},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":153937,"y":143591},{"x":3,"y":2}],"type":"coastline"},{"arc":[{"x":153940,"y":143593},{"x":2,"y":4}],"type":"coastline"},{"arc":[{"x":153947,"y":143600},{"x":5,"y":5}],"type":"coastline"},{"arc":[{"x":153963,"y":143625},{"x":2,"y":5}],"type":"coastline"},{"arc":[{"x":153965,"y":143630},{"x":4,"y":4}],"type":"coastline"},{"arc":[{"x":153973,"y":143637},{"x":6,"y":2}],"type":"coastline"},{"arc":[{"x":153979,"y":143639},{"x":5,"y":3}],"type":"coastline"},{"arc":[{"x":153990,"y":143647},{"x":6,"y":12}],"type":"coastline"},{"arc":[{"x":153996,"y":143659},{"x":5,"y":10}],"type":"coastline"},{"arc":[{"x":154009,"y":143684},{"x":8,"y":8}],"type":"coastline"},{"arc":[{"x":154044,"y":143698},{"x":7,"y":2}],"type":"coastline"},{"arc":[{"x":154055,"y":143700},{"x":12,"y":-1}],"type":"coastline"},{"arc":[{"x":154088,"y":143701},{"x":11,"y":3}],"type":"coastline"},{"arc":[{"x":154110,"y":143711},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":154112,"y":143712},{"x":6,"y":6}],"type":"coastline"},{"arc":[{"x":154123,"y":143730},{"x":5,"y":7}],"type":"coastline"},{"arc":[{"x":154132,"y":143738},{"x":12,"y":6}],"type":"coastline"},{"arc":[{"x":154201,"y":143781},{"x":6,"y":-4}],"type":"coastline"},{"arc":[{"x":154217,"y":143782},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":154220,"y":143784},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":154222,"y":143787},{"x":7,"y":10}],"type":"coastline"},{"arc":[{"x":154229,"y":143797},{"x":3,"y":3}],"type":"coastline"},{"arc":[{"x":154232,"y":143800},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":154234,"y":143801},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":154248,"y":143806},{"x":5,"y":4}],"type":"coastline"},{"arc":[{"x":154276,"y":143821},{"x":20,"y":8}],"type":"coastline"},{"arc":[{"x":154301,"y":143835},{"x":11,"y":6}],"type":"coastline"},{"arc":[{"x":154312,"y":143842},{"x":8,"y":4}],"type":"coastline"},{"arc":[{"x":154322,"y":143846},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":154339,"y":143851},{"x":7,"y":-1}],"type":"coastline"},{"arc":[{"x":154346,"y":143850},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":154390,"y":143884},{"x":0,"y":6}],"type":"coastline"},{"arc":[{"x":154390,"y":143890},{"x":-2,"y":9}],"type":"coastline"},{"arc":[{"x":154388,"y":143899},{"x":2,"y":3}],"type":"coastline"},{"arc":[{"x":154393,"y":143902},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":154412,"y":143898},{"x":7,"y":-5}],"type":"coastline"},{"arc":[{"x":154419,"y":143893},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":154437,"y":143891},{"x":12,"y":1}],"type":"coastline"},{"arc":[{"x":154451,"y":143891},{"x":3,"y":-7}],"type":"coastline"},{"arc":[{"x":154454,"y":143879},{"x":4,"y":-13}],"type":"coastline"},{"arc":[{"x":154476,"y":143832},{"x":10,"y":-5}],"type":"coastline"},{"arc":[{"x":154499,"y":143826},{"x":12,"y":-3}],"type":"coastline"},{"arc":[{"x":154516,"y":143823},{"x":12,"y":0}],"type":"coastline"},{"arc":[{"x":154537,"y":143827},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":154548,"y":143802},{"x":2,"y":-2}],"type":"coastline"},{"arc":[{"x":154550,"y":143800},{"x":3,"y":-3}],"type":"coastline"},{"arc":[{"x":154558,"y":143794},{"x":9,"y":-13}],"type":"coastline"},{"arc":[{"x":154566,"y":143773},{"x":-3,"y":-11}],"type":"coastline"},{"arc":[{"x":154569,"y":143751},{"x":9,"y":-11}],"type":"coastline"},{"arc":[{"x":154585,"y":143735},{"x":9,"y":-4}],"type":"coastline"},{"arc":[{"x":154599,"y":143726},{"x":4,"y":-4}],"type":"coastline"},{"arc":[{"x":154603,"y":143722},{"x":6,"y":-3}],"type":"coastline"},{"arc":[{"x":154629,"y":143715},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":154633,"y":143690},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":154628,"y":143631},{"x":2,"y":-6}],"type":"coastline"},{"arc":[{"x":154631,"y":143624},{"x":2,"y":-10}],"type":"coastline"},{"arc":[{"x":154635,"y":143597},{"x":-8,"y":-15}],"type":"coastline"},{"arc":[{"x":154626,"y":143578},{"x":2,"y":-9}],"type":"coastline"},{"arc":[{"x":154628,"y":143569},{"x":-1,"y":-13}],"type":"coastline"},{"arc":[{"x":154639,"y":143518},{"x":8,"y":3}],"type":"coastline"},{"arc":[{"x":154647,"y":143521},{"x":8,"y":1}],"type":"coastline"},{"arc":[{"x":154655,"y":143522},{"x":10,"y":0}],"type":"coastline"},{"arc":[{"x":154677,"y":143518},{"x":8,"y":-2}],"type":"coastline"},{"arc":[{"x":154691,"y":143511},{"x":11,"y":-12}],"type":"coastline"},{"arc":[{"x":154704,"y":143497},{"x":6,"y":-6}],"type":"coastline"},{"arc":[{"x":154716,"y":143486},{"x":8,"y":-5}],"type":"coastline"},{"arc":[{"x":154725,"y":143477},{"x":7,"y":-11}],"type":"coastline"},{"arc":[{"x":154732,"y":143466},{"x":4,"y":-6}],"type":"coastline"},{"arc":[{"x":154736,"y":143460},{"x":5,"y":-7}],"type":"coastline"},{"arc":[{"x":154745,"y":143448},{"x":6,"y":-11}],"type":"coastline"},{"arc":[{"x":154751,"y":143437},{"x":4,"y":-8}],"type":"coastline"},{"arc":[{"x":154755,"y":143429},{"x":6,"y":-1}],"type":"coastline"},{"arc":[{"x":154766,"y":143428},{"x":5,"y":-1}],"type":"coastline"},{"arc":[{"x":154800,"y":143424},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":154824,"y":143428},{"x":7,"y":1}],"type":"coastline"},{"arc":[{"x":154850,"y":143429},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":154868,"y":143425},{"x":2,"y":-5}],"type":"coastline"},{"arc":[{"x":154879,"y":143411},{"x":3,"y":-1}],"type":"coastline"},{"arc":[{"x":154907,"y":143392},{"x":9,"y":-2}],"type":"coastline"},{"arc":[{"x":154916,"y":143390},{"x":6,"y":-5}],"type":"coastline"},{"arc":[{"x":154922,"y":143385},{"x":6,"y":-2}],"type":"coastline"},{"arc":[{"x":154935,"y":143379},{"x":6,"y":-7}],"type":"coastline"},{"arc":[{"x":154956,"y":143340},{"x":4,"y":-5}],"type":"coastline"},{"arc":[{"x":154960,"y":143335},{"x":6,"y":-15}],"type":"coastline"},{"arc":[{"x":154977,"y":143319},{"x":9,"y":-1}],"type":"coastline"},{"arc":[{"x":154986,"y":143318},{"x":8,"y":-4}],"type":"coastline"},{"arc":[{"x":155033,"y":143295},{"x":9,"y":-8}],"type":"coastline"},{"arc":[{"x":139068,"y":164940},{"x":-26,"y":46},{"x":-38,"y":-5},{"x":17,"y":-44},{"x":47,"y":3}],"type":"coastline"},{"arc":[{"x":140040,"y":164959},{"x":-19,"y":21},{"x":-36,"y":-34},{"x":-75,"y":16},{"x":-31,"y":-46},{"x":-38,"y":-3},{"x":-119,"y":52},{"x":-117,"y":-5},{"x":-19,"y":109},{"x":79,"y":86}],"type":"admin"},{"arc":[{"x":139665,"y":165155},{"x":-30,"y":32},{"x":32,"y":49},{"x":-15,"y":34},{"x":-55,"y":-50},{"x":-30,"y":99}],"type":"area"},{"arc":[{"x":139567,"y":165319},{"x":-63,"y":-13},{"x":-13,"y":-58},{"x":-89,"y":-34}],"type":"admin"},{"arc":[{"x":139402,"y":165214},{"x":-39,"y":-71},{"x":-64,"y":32},{"x":-65,"y":-14},{"x":-150,"y":39},{"x":-68,"y":-92},{"x":-81,"y":94},{"x":-60,"y":-14},{"x":-89,"y":-81},{"x":-75,"y":52}],"type":"area"},{"arc":[{"x":138711,"y":165159},{"x":-21,"y":-87},{"x":-49,"y":-37},{"x":18,"y":-59},{"x":-38,"y":-6},{"x":-149,"y":-140},{"x":-78,"y":-212},{"x":-93,"y":-80},{"x":-26,"y":-110},{"x":-127,"y":17},{"x":-45,"y":-19},{"x":-74,"y":26},{"x":-55,"y":-25},{"x":-57,"y":21},{"x":-21,"y":-15},{"x":73,"y":-157},{"x":-6,"y":-65},{"x":-45,"y":-43},{"x":30,"y":-123},{"x":-95,"y":-104},{"x":-11,"y":-144}],"type":"area"},{"arc":[{"x":137842,"y":163797},{"x":63,"y":-19},{"x":103,"y":-86},{"x":250,"y":-38},{"x":54,"y":16},{"x":18,"y":37},{"x":-68,"y":-30},{"x":-32,"y":71},{"x":15,"y":61},{"x":104,"y":-16},{"x":-6,"y":-31},{"x":47,"y":-39},{"x":185,"y":62},{"x":53,"y":52},{"x":150,"y":-17},{"x":215,"y":93},{"x":-3,"y":24},{"x":-45,"y":-39},{"x":-35,"y":19},{"x":4,"y":104},{"x":-35,"y":22},{"x":-25,"y":115},{"x":46,"y":30},{"x":10,"y":157},{"x":-60,"y":56},{"x":12,"y":29},{"x":-32,"y":25},{"x":18,"y":34},{"x":-57,"y":21},{"x":81,"y":130},{"x":7,"y":137},{"x":85,"y":71},{"x":-105,"y":9},{"x":74,"y":66},{"x":-29,"y":17},{"x":-52,"y":-16},{"x":-25,"y":66},{"x":87,"y":74},{"x":29,"y":-51},{"x":74,"y":-16},{"x":82,"y":72},{"x":67,"y":-17},{"x":-17,"y":22},{"x":76,"y":81},{"x":-12,"y":-39},{"x":42,"y":-50},{"x":-32,"y":-25},{"x":38,"y":5},{"x":4,"y":-52},{"x":-48,"y":2},{"x":-21,"y":-61},{"x":107,"y":-29},{"x":9,"y":-21},{"x":-31,"y":11},{"x":62,"y":-42},{"x":-15,"y":34},{"x":61,"y":-33},{"x":-35,"y":-10},{"x":134,"y":-38},{"x":57,"y":-64},{"x":-29,"y":-44},{"x":94,"y":-80},{"x":-7,"y":-18},{"x":7,"y":18},{"x":19,"y":-9},{"x":-22,"y":-31},{"x":16,"y":4},{"x":21,"y":52},{"x":28,"y":2},{"x":-31,"y":-35},{"x":44,"y":-24},{"x":-61,"y":-6},{"x":52,"y":-19},{"x":30,"y":21},{"x":102,"y":-61},{"x":167,"y":-195},{"x":177,"y":-355},{"x":124,"y":-409}],"type":"coastline"},{"arc":[{"x":140276,"y":163554},{"x":111,"y":40},{"x":-25,"y":96},{"x":55,"y":52},{"x":78,"y":19},{"x":19,"y":-18},{"x":181,"y":77},{"x":45,"y":0},{"x":-27,"y":-42},{"x":8,"y":-117},{"x":132,"y":68},{"x":133,"y":12},{"x":287,"y":356},{"x":113,"y":68}],"type":"area"},{"arc":[{"x":141386,"y":164165},{"x":-99,"y":63},{"x":-33,"y":55},{"x":-45,"y":11},{"x":-48,"y":76},{"x":-248,"y":95},{"x":-192,"y":207},{"x":-133,"y":21},{"x":-119,"y":78},{"x":-56,"y":47},{"x":-1,"y":72},{"x":-72,"y":37},{"x":-20,"y":62},{"x":-70,"y":17},{"x":-32,"y":-60},{"x":-148,"y":-9},{"x":-30,"y":22}],"type":"admin"},{"arc":[{"x":139157,"y":167867},{"x":-52,"y":68},{"x":-30,"y":-88},{"x":82,"y":-38},{"x":0,"y":58}],"type":"coastline"},{"arc":[{"x":140400,"y":167267},{"x":-140,"y":-25},{"x":-167,"y":-125},{"x":-55,"y":-95},{"x":-71,"y":-11},{"x":-119,"y":-104},{"x":-75,"y":-21},{"x":-36,"y":37},{"x":40,"y":-10},{"x":27,"y":43},{"x":-106,"y":5},{"x":-54,"y":-72},{"x":-37,"y":-9},{"x":-118,"y":57},{"x":-194,"y":-107},{"x":-91,"y":49},{"x":16,"y":60},{"x":-42,"y":65},{"x":56,"y":45},{"x":6,"y":-16},{"x":4,"y":39},{"x":-49,"y":70},{"x":-186,"y":-10}],"type":"coastline"},{"arc":[{"x":139009,"y":167132},{"x":69,"y":-89},{"x":-81,"y":-59},{"x":12,"y":-48},{"x":-83,"y":-88},{"x":70,"y":-205}],"type":"area"},{"arc":[{"x":138996,"y":166643},{"x":67,"y":-147},{"x":78,"y":7},{"x":47,"y":-41},{"x":96,"y":-15},{"x":56,"y":11},{"x":42,"y":71},{"x":83,"y":-91},{"x":179,"y":-37}],"type":"area"},{"arc":[{"x":139644,"y":166401},{"x":44,"y":66},{"x":46,"y":-32},{"x":184,"y":60},{"x":177,"y":-28},{"x":18,"y":53},{"x":64,"y":56},{"x":53,"y":-38},{"x":51,"y":12},{"x":108,"y":-92},{"x":56,"y":6},{"x":23,"y":-36},{"x":38,"y":0}],"type":"admin"},{"arc":[{"x":140919,"y":166256},{"x":-50,"y":-10},{"x":-122,"y":-99},{"x":-95,"y":-38},{"x":-5,"y":40},{"x":-116,"y":-65},{"x":-12,"y":-67},{"x":-97,"y":-4},{"x":-75,"y":-120},{"x":-183,"y":-111},{"x":-165,"y":-147},{"x":-251,"y":-87},{"x":16,"y":-119},{"x":-73,"y":18},{"x":-16,"y":-48},{"x":-65,"y":-40},{"x":14,"y":-23},{"x":-33,"y":5},{"x":17,"y":-31},{"x":-41,"y":9}],"type":"admin"},{"arc":[{"x":139665,"y":165155},{"x":51,"y":-4},{"x":-18,"y":11},{"x":92,"y":78},{"x":15,"y":-20},{"x":132,"y":-13},{"x":-8,"y":-21},{"x":25,"y":7},{"x":88,"y":-58},{"x":87,"y":-2}],"type":"admin"},{"arc":[{"x":140129,"y":165133},{"x":85,"y":21},{"x":41,"y":44},{"x":237,"y":-63}],"type":"admin"},{"arc":[{"x":140492,"y":165135},{"x":94,"y":29},{"x":63,"y":76},{"x":128,"y":79},{"x":-6,"y":62},{"x":31,"y":54},{"x":-24,"y":152},{"x":107,"y":141},{"x":16,"y":221},{"x":112,"y":180}],"type":"area"},{"arc":[{"x":143202,"y":163329},{"x":-34,"y":10}],"type":"admin"},{"arc":[{"x":143168,"y":163339},{"x":-12,"y":4}],"type":"area"},{"arc":[{"x":143156,"y":163343},{"x":-389,"y":105},{"x":-370,"y":-167},{"x":-48,"y":25},{"x":-78,"y":-46},{"x":22,"y":-35},{"x":-84,"y":-51},{"x":-17,"y":37},{"x":-98,"y":-16},{"x":43,"y":-69},{"x":-36,"y":-55},{"x":-68,"y":-28},{"x":-5,"y":-43},{"x":-160,"y":-218},{"x":-112,"y":-67},{"x":-94,"y":-127},{"x":-177,"y":65},{"x":-126,"y":10},{"x":-90,"y":-21},{"x":-7,"y":-31},{"x":30,"y":-18},{"x":-33,"y":-83},{"x":96,"y":21},{"x":5,"y":-76},{"x":-111,"y":-59},{"x":31,"y":-26},{"x":-67,"y":-45},{"x":12,"y":-25},{"x":-126,"y":38},{"x":-19,"y":61},{"x":-29,"y":-9},{"x":-106,"y":49},{"x":-4,"y":-60},{"x":116,"y":-69},{"x":-176,"y":-173},{"x":46,"y":-65},{"x":120,"y":-70},{"x":-39,"y":-87},{"x":74,"y":-59},{"x":8,"y":-123},{"x":-67,"y":-100},{"x":10,"y":-32},{"x":-63,"y":-2},{"x":-22,"y":-52},{"x":-93,"y":27},{"x":-52,"y":-23},{"x":-176,"y":-4}],"type":"area"},{"arc":[{"x":139009,"y":167132},{"x":-221,"y":-10},{"x":-64,"y":25},{"x":-25,"y":-35},{"x":12,"y":-107},{"x":-87,"y":-35},{"x":-185,"y":133},{"x":-106,"y":-21},{"x":-104,"y":124},{"x":23,"y":33},{"x":28,"y":-50},{"x":-26,"y":52},{"x":27,"y":-19},{"x":-10,"y":123},{"x":-53,"y":97},{"x":-55,"y":-7},{"x":-31,"y":32},{"x":-41,"y":-26},{"x":-86,"y":46},{"x":39,"y":143},{"x":-33,"y":-19},{"x":-92,"y":20},{"x":-58,"y":-37},{"x":-61,"y":57},{"x":-36,"y":-32},{"x":-34,"y":25},{"x":-118,"y":-81},{"x":-146,"y":2},{"x":-140,"y":-89},{"x":-37,"y":8},{"x":-13,"y":74},{"x":-45,"y":10},{"x":-38,"y":-58},{"x":-116,"y":-39},{"x":-96,"y":-153},{"x":-19,"y":-145},{"x":-76,"y":-16},{"x":-9,"y":-26},{"x":-67,"y":-4},{"x":-22,"y":-41},{"x":31,"y":-74},{"x":-53,"y":-10},{"x":-18,"y":-35}],"type":"coastline"},{"arc":[{"x":136748,"y":166967},{"x":-14,"y":-93},{"x":124,"y":-117},{"x":46,"y":-4},{"x":19,"y":-62},{"x":48,"y":-6},{"x":57,"y":-121},{"x":110,"y":-93}],"type":"admin"},{"arc":[{"x":137138,"y":166471},{"x":182,"y":97},{"x":65,"y":75},{"x":69,"y":32},{"x":9,"y":38},{"x":127,"y":-102},{"x":71,"y":-1},{"x":56,"y":-48},{"x":52,"y":21},{"x":75,"y":-14},{"x":234,"y":138},{"x":48,"y":-6},{"x":7,"y":-35},{"x":79,"y":-7},{"x":77,"y":137},{"x":69,"y":28},{"x":65,"y":-7},{"x":-5,"y":-117},{"x":-38,"y":-41},{"x":50,"y":-34},{"x":65,"y":-119},{"x":103,"y":1},{"x":39,"y":25},{"x":39,"y":-20},{"x":20,"y":53},{"x":84,"y":36}],"type":"area"},{"arc":[{"x":138780,"y":166601},{"x":73,"y":-13},{"x":28,"y":-47},{"x":115,"y":102}],"type":"area"},{"arc":[{"x":138807,"y":157725},{"x":-37,"y":-48},{"x":-130,"y":58},{"x":-159,"y":-88},{"x":-117,"y":7},{"x":-88,"y":-173},{"x":-80,"y":-6},{"x":-40,"y":-42},{"x":-127,"y":17},{"x":-80,"y":-49},{"x":-77,"y":29},{"x":-98,"y":-29},{"x":-68,"y":-59},{"x":-81,"y":8},{"x":-64,"y":54},{"x":-8,"y":66},{"x":-34,"y":18},{"x":-48,"y":14},{"x":-103,"y":-45},{"x":-80,"y":118},{"x":8,"y":53},{"x":-200,"y":205},{"x":-145,"y":1},{"x":-107,"y":117},{"x":-114,"y":-17},{"x":-81,"y":126},{"x":-69,"y":-95},{"x":-23,"y":6},{"x":33,"y":90},{"x":-4,"y":124},{"x":-129,"y":-49},{"x":-19,"y":-88},{"x":-43,"y":-16},{"x":-114,"y":190}],"type":"area"},{"arc":[{"x":136281,"y":158222},{"x":-163,"y":145}],"type":"area"},{"arc":[{"x":136118,"y":158367},{"x":-37,"y":-56},{"x":29,"y":-120},{"x":-126,"y":64},{"x":-1,"y":-88},{"x":-16,"y":-16},{"x":-63,"y":16},{"x":8,"y":-81}],"type":"admin"},{"arc":[{"x":135912,"y":158086},{"x":18,"y":-101},{"x":116,"y":-242},{"x":16,"y":-73},{"x":-21,"y":-57},{"x":39,"y":-63},{"x":21,"y":-136},{"x":-49,"y":-24},{"x":-39,"y":-72},{"x":-47,"y":-14},{"x":36,"y":-34},{"x":-3,"y":-62}],"type":"area"},{"arc":[{"x":135999,"y":157208},{"x":168,"y":-53},{"x":7,"y":-48},{"x":-86,"y":11},{"x":-97,"y":-76},{"x":245,"y":-147},{"x":16,"y":-28},{"x":-34,"y":-14},{"x":-6,"y":-38}],"type":"area"},{"arc":[{"x":136212,"y":156815},{"x":107,"y":15},{"x":23,"y":-47},{"x":64,"y":-13},{"x":76,"y":27},{"x":94,"y":-54},{"x":43,"y":-62},{"x":-27,"y":-21},{"x":41,"y":-158},{"x":125,"y":-20},{"x":47,"y":17},{"x":32,"y":-236},{"x":273,"y":-20},{"x":170,"y":115},{"x":148,"y":14},{"x":71,"y":-113},{"x":101,"y":-52}],"type":"area"},{"arc":[{"x":137600,"y":156207},{"x":43,"y":23},{"x":55,"y":-65},{"x":48,"y":-12},{"x":-4,"y":-69},{"x":71,"y":-45},{"x":-20,"y":-49},{"x":65,"y":-92},{"x":94,"y":45},{"x":56,"y":-29},{"x":39,"y":23},{"x":64,"y":-13},{"x":27,"y":-24},{"x":88,"y":19},{"x":77,"y":-42}],"type":"admin"},{"arc":[{"x":138597,"y":156144},{"x":-1,"y":136},{"x":29,"y":66},{"x":-54,"y":167},{"x":-88,"y":49},{"x":-84,"y":-30},{"x":-63,"y":141},{"x":-72,"y":-47},{"x":-3,"y":71},{"x":114,"y":99},{"x":-61,"y":43},{"x":93,"y":-21},{"x":129,"y":27},{"x":70,"y":78},{"x":-13,"y":48},{"x":24,"y":37},{"x":140,"y":35},{"x":61,"y":-10},{"x":64,"y":71},{"x":62,"y":-22},{"x":125,"y":132},{"x":38,"y":-9},{"x":120,"y":80},{"x":90,"y":-3},{"x":69,"y":41},{"x":17,"y":32},{"x":-48,"y":78},{"x":-114,"y":-21},{"x":-44,"y":27},{"x":113,"y":40},{"x":-32,"y":38},{"x":21,"y":51},{"x":85,"y":-21},{"x":30,"y":27},{"x":-32,"y":42},{"x":41,"y":68},{"x":-177,"y":152}],"type":"admin"},{"arc":[{"x":141410,"y":164167},{"x":-24,"y":-2}],"type":"admin"},{"arc":[{"x":140276,"y":163554},{"x":62,"y":-405},{"x":-14,"y":-139},{"x":59,"y":-44},{"x":37,"y":51},{"x":6,"y":-36},{"x":-27,"y":-16},{"x":43,"y":1},{"x":4,"y":-104},{"x":-133,"y":129},{"x":-29,"y":-177},{"x":-61,"y":-83},{"x":-137,"y":-355}],"type":"coastline"},{"arc":[{"x":143156,"y":163343},{"x":-90,"y":54},{"x":-110,"y":18},{"x":-156,"y":108}],"type":"area"},{"arc":[{"x":142800,"y":163523},{"x":-295,"y":96},{"x":-141,"y":-1},{"x":-539,"y":247},{"x":-40,"y":67},{"x":-101,"y":9},{"x":-91,"y":59},{"x":-99,"y":0},{"x":-9,"y":78},{"x":-75,"y":89}],"type":"area"},{"arc":[{"x":136364,"y":154456},{"x":-79,"y":-34},{"x":-1,"y":-67},{"x":-71,"y":-86},{"x":16,"y":-29},{"x":-46,"y":-19},{"x":-92,"y":38},{"x":2,"y":25},{"x":-143,"y":24},{"x":-134,"y":61},{"x":-10,"y":156},{"x":-49,"y":76},{"x":-82,"y":23},{"x":-42,"y":-30},{"x":-48,"y":36},{"x":-32,"y":-39},{"x":-12,"y":20},{"x":-86,"y":-11},{"x":-64,"y":43},{"x":41,"y":53},{"x":-18,"y":17},{"x":-148,"y":48},{"x":-42,"y":-35},{"x":-52,"y":20},{"x":-13,"y":-19},{"x":-109,"y":46},{"x":-107,"y":5},{"x":-49,"y":-65},{"x":-48,"y":2},{"x":-11,"y":27},{"x":-98,"y":-61},{"x":11,"y":33},{"x":-51,"y":37},{"x":3,"y":99},{"x":-92,"y":18},{"x":-11,"y":-45},{"x":-72,"y":-14},{"x":-134,"y":54}],"type":"area"},{"arc":[{"x":134391,"y":154863},{"x":-34,"y":-7},{"x":-27,"y":-41},{"x":27,"y":-3},{"x":3,"y":42},{"x":38,"y":-4},{"x":-23,"y":-48},{"x":18,"y":-10},{"x":-26,"y":12},{"x":33,"y":-69},{"x":-91,"y":81},{"x":77,"y":-80},{"x":-121,"y":-593},{"x":-111,"y":-301},{"x":-18,"y":-150}],"type":"coastline"},{"arc":[{"x":137233,"y":154835},{"x":-112,"y":-1},{"x":-96,"y":-125},{"x":-68,"y":-49},{"x":-85,"y":-16},{"x":-92,"y":-115},{"x":-65,"y":4},{"x":-81,"y":48},{"x":-64,"y":-42},{"x":-15,"y":-80},{"x":-58,"y":36},{"x":-27,"y":-37},{"x":-106,"y":-2}],"type":"admin"},{"arc":[{"x":136950,"y":159263},{"x":-67,"y":-72},{"x":-114,"y":-7},{"x":114,"y":4},{"x":67,"y":75}],"type":"coastline"},{"arc":[{"x":137328,"y":159376},{"x":-39,"y":1},{"x":-93,"y":-98},{"x":-103,"y":-8},{"x":-76,"y":-72},{"x":-26,"y":37},{"x":-51,"y":-11},{"x":53,"y":-29},{"x":-40,"y":-7},{"x":8,"y":-40},{"x":51,"y":23},{"x":-32,"y":-24},{"x":19,"y":-20},{"x":-43,"y":-6},{"x":-30,"y":58},{"x":-28,"y":-6},{"x":34,"y":-14},{"x":-49,"y":-9},{"x":-4,"y":19},{"x":-45,"y":-24},{"x":-4,"y":19},{"x":-41,"y":0},{"x":0,"y":-19},{"x":-44,"y":-8},{"x":-49,"y":40},{"x":-22,"y":-15},{"x":51,"y":-39},{"x":-61,"y":8},{"x":-17,"y":16},{"x":24,"y":38},{"x":92,"y":17},{"x":-63,"y":-2},{"x":-133,"y":67},{"x":-127,"y":-3},{"x":-129,"y":-103},{"x":-52,"y":-10},{"x":-361,"y":-238},{"x":-85,"y":-19},{"x":5,"y":-68},{"x":63,"y":-10},{"x":-38,"y":-58},{"x":-63,"y":63},{"x":19,"y":113},{"x":-131,"y":-119}],"type":"coastline"},{"arc":[{"x":135668,"y":158816},{"x":450,"y":-449}],"type":"admin"},{"arc":[{"x":136281,"y":158222},{"x":33,"y":39},{"x":-29,"y":42},{"x":108,"y":143},{"x":-38,"y":66},{"x":-6,"y":92},{"x":29,"y":56},{"x":18,"y":-16},{"x":23,"y":18},{"x":11,"y":43},{"x":46,"y":-61},{"x":93,"y":-30},{"x":53,"y":101},{"x":29,"y":-27},{"x":75,"y":13},{"x":63,"y":-56},{"x":87,"y":37},{"x":24,"y":-56},{"x":111,"y":62},{"x":16,"y":124},{"x":46,"y":22},{"x":23,"y":-54},{"x":139,"y":73},{"x":23,"y":-46},{"x":43,"y":-4},{"x":-17,"y":67},{"x":149,"y":130},{"x":-27,"y":93},{"x":46,"y":46},{"x":74,"y":8},{"x":11,"y":-131},{"x":57,"y":56}],"type":"area"},{"arc":[{"x":136212,"y":156815},{"x":-71,"y":-32},{"x":-25,"y":-86},{"x":-54,"y":-40},{"x":-83,"y":-9},{"x":-54,"y":-61},{"x":-100,"y":-33},{"x":-66,"y":-124},{"x":-64,"y":-5},{"x":5,"y":-94},{"x":-95,"y":-27},{"x":-45,"y":46},{"x":-48,"y":-10},{"x":-37,"y":65},{"x":-50,"y":-14},{"x":-32,"y":23},{"x":-60,"y":-65},{"x":15,"y":-83},{"x":-69,"y":45},{"x":-1,"y":-87},{"x":-66,"y":102},{"x":-160,"y":51},{"x":-78,"y":90},{"x":-55,"y":10},{"x":-74,"y":109},{"x":-84,"y":-63},{"x":15,"y":-35},{"x":-22,"y":-24},{"x":-118,"y":54},{"x":-66,"y":-13},{"x":-26,"y":18},{"x":-18,"y":-40},{"x":6,"y":48},{"x":24,"y":-1},{"x":21,"y":48},{"x":-43,"y":4},{"x":-11,"y":76},{"x":-51,"y":14},{"x":-42,"y":-24},{"x":-109,"y":-2}],"type":"area"},{"arc":[{"x":134321,"y":156646},{"x":-47,"y":-35},{"x":-188,"y":-28}],"type":"area"},{"arc":[{"x":134086,"y":156583},{"x":196,"y":-618},{"x":95,"y":-500}],"type":"coastline"},{"arc":[{"x":134377,"y":155465},{"x":167,"y":-55},{"x":52,"y":-100},{"x":68,"y":-27},{"x":51,"y":123},{"x":97,"y":2},{"x":54,"y":66},{"x":61,"y":149},{"x":24,"y":-8},{"x":-6,"y":-69},{"x":95,"y":69},{"x":-26,"y":-92},{"x":95,"y":31},{"x":123,"y":271},{"x":55,"y":48},{"x":102,"y":-96},{"x":-17,"y":-45},{"x":35,"y":-37},{"x":-46,"y":-68},{"x":72,"y":-121},{"x":56,"y":-17},{"x":-21,"y":-61},{"x":37,"y":-22},{"x":18,"y":-73},{"x":35,"y":35},{"x":85,"y":19},{"x":82,"y":-106},{"x":80,"y":-28},{"x":151,"y":-126},{"x":249,"y":76},{"x":139,"y":-39}],"type":"area"},{"arc":[{"x":136344,"y":155164},{"x":43,"y":50},{"x":86,"y":16},{"x":6,"y":44},{"x":40,"y":-11},{"x":22,"y":31},{"x":69,"y":15},{"x":15,"y":35},{"x":69,"y":-16},{"x":79,"y":20},{"x":39,"y":44},{"x":46,"y":-13},{"x":118,"y":93},{"x":105,"y":145},{"x":144,"y":71},{"x":34,"y":41},{"x":47,"y":1},{"x":79,"y":121},{"x":68,"y":34},{"x":66,"y":-1},{"x":19,"y":85},{"x":-27,"y":7},{"x":-5,"y":62},{"x":24,"y":25},{"x":-31,"y":37},{"x":70,"y":42},{"x":31,"y":65}],"type":"admin"},{"arc":[{"x":141592,"y":165866},{"x":-82,"y":-125},{"x":13,"y":-88},{"x":-51,"y":-182},{"x":-45,"y":-87},{"x":-37,"y":-4},{"x":-32,"y":-51},{"x":-28,"y":4},{"x":5,"y":-27},{"x":70,"y":34},{"x":12,"y":-49},{"x":-36,"y":-34},{"x":85,"y":-43},{"x":28,"y":-32},{"x":-9,"y":-50},{"x":92,"y":-85},{"x":160,"y":9},{"x":54,"y":-44},{"x":34,"y":-92},{"x":126,"y":-31},{"x":110,"y":-76},{"x":69,"y":21},{"x":22,"y":-16},{"x":32,"y":-71},{"x":-52,"y":-25},{"x":-40,"y":-147},{"x":-115,"y":-168},{"x":-28,"y":-103},{"x":7,"y":-133},{"x":152,"y":-167},{"x":97,"y":45},{"x":90,"y":-41},{"x":16,"y":-77},{"x":60,"y":-40},{"x":33,"y":-74},{"x":84,"y":-51},{"x":113,"y":6},{"x":203,"y":-224},{"x":-4,"y":-25}],"type":"area"},{"arc":[{"x":143168,"y":163339},{"x":-83,"y":450},{"x":-20,"y":516},{"x":-52,"y":125},{"x":6,"y":163},{"x":-26,"y":108},{"x":-125,"y":106},{"x":-48,"y":107},{"x":44,"y":4},{"x":23,"y":-44},{"x":-12,"y":37},{"x":37,"y":-30},{"x":-19,"y":35},{"x":49,"y":21},{"x":96,"y":22},{"x":65,"y":-36},{"x":89,"y":39},{"x":-52,"y":-7},{"x":-41,"y":50},{"x":-4,"y":127},{"x":-69,"y":-67},{"x":-3,"y":-100},{"x":-31,"y":35},{"x":4,"y":218},{"x":-38,"y":17},{"x":-29,"y":169},{"x":-33,"y":33},{"x":26,"y":68},{"x":-65,"y":48},{"x":12,"y":59},{"x":-35,"y":-1},{"x":2,"y":81},{"x":-47,"y":68},{"x":-2,"y":58},{"x":-72,"y":-10},{"x":-61,"y":-60},{"x":-108,"y":9},{"x":-330,"y":285}],"type":"admin"},{"arc":[{"x":134377,"y":155465},{"x":33,"y":-380},{"x":-19,"y":-222}],"type":"coastline"},{"arc":[{"x":136364,"y":154456},{"x":-61,"y":18},{"x":-50,"y":50},{"x":-1,"y":121},{"x":-154,"y":0},{"x":-110,"y":-27},{"x":-13,"y":-30},{"x":-44,"y":16},{"x":-19,"y":-30},{"x":-30,"y":3},{"x":44,"y":128},{"x":115,"y":76},{"x":9,"y":30},{"x":-56,"y":14},{"x":49,"y":126},{"x":137,"y":53},{"x":-2,"y":45},{"x":41,"y":25},{"x":120,"y":31},{"x":23,"y":35},{"x":-18,"y":24}],"type":"admin"},{"arc":[{"x":134376,"y":165569},{"x":-30,"y":7},{"x":11,"y":-35},{"x":19,"y":28}],"type":"coastline"},{"arc":[{"x":135041,"y":166039},{"x":-66,"y":-93},{"x":-41,"y":-3},{"x":-5,"y":-45},{"x":-33,"y":6},{"x":0,"y":-18},{"x":-9,"y":20},{"x":-28,"y":-33},{"x":-169,"y":-37},{"x":-104,"y":44},{"x":-8,"y":41},{"x":-28,"y":-45},{"x":-31,"y":11},{"x":3,"y":-48},{"x":-32,"y":-8},{"x":-32,"y":63},{"x":-52,"y":-8},{"x":-12,"y":34},{"x":30,"y":46},{"x":-19,"y":-11},{"x":-21,"y":28},{"x":-28,"y":-33},{"x":-69,"y":33},{"x":10,"y":-60},{"x":33,"y":-5},{"x":-77,"y":-12},{"x":-32,"y":-31},{"x":49,"y":-100},{"x":-54,"y":-18},{"x":30,"y":-63},{"x":-28,"y":-15},{"x":45,"y":-22},{"x":50,"y":33},{"x":56,"y":-9},{"x":10,"y":-34},{"x":12,"y":50},{"x":1,"y":-21},{"x":40,"y":15},{"x":10,"y":45},{"x":30,"y":6},{"x":50,"y":-61},{"x":-38,"y":-103},{"x":-55,"y":14},{"x":-3,"y":51},{"x":2,"y":-51},{"x":-55,"y":-40},{"x":42,"y":-51},{"x":-19,"y":-48},{"x":-60,"y":56},{"x":-2,"y":-39},{"x":-35,"y":-22},{"x":16,"y":-52},{"x":-34,"y":-52},{"x":-28,"y":4},{"x":-37,"y":-79},{"x":-59,"y":-27},{"x":-38,"y":24},{"x":-44,"y":-18},{"x":-19,"y":-32},{"x":-65,"y":-9},{"x":-44,"y":-80},{"x":-27,"y":2}],"type":"coastline"},{"arc":[{"x":133920,"y":165129},{"x":34,"y":-28},{"x":103,"y":-6},{"x":40,"y":-77},{"x":86,"y":-34},{"x":57,"y":68},{"x":119,"y":18},{"x":76,"y":43},{"x":44,"y":-46},{"x":13,"y":-136},{"x":76,"y":-20},{"x":104,"y":85},{"x":15,"y":42},{"x":46,"y":-36},{"x":24,"y":14},{"x":54,"y":-19},{"x":44,"y":-60},{"x":-17,"y":-50},{"x":45,"y":-93},{"x":-23,"y":-30},{"x":11,"y":-137},{"x":41,"y":-50}],"type":"admin"},{"arc":[{"x":134912,"y":164577},{"x":32,"y":9},{"x":63,"y":-64},{"x":69,"y":29},{"x":45,"y":51},{"x":53,"y":5},{"x":12,"y":29},{"x":106,"y":22},{"x":58,"y":99},{"x":-17,"y":75},{"x":58,"y":63},{"x":29,"y":-7},{"x":35,"y":68},{"x":72,"y":43},{"x":40,"y":-18},{"x":43,"y":30},{"x":68,"y":-4},{"x":22,"y":37},{"x":50,"y":-3}],"type":"admin"},{"arc":[{"x":135750,"y":165041},{"x":-1,"y":100},{"x":-48,"y":62},{"x":22,"y":78},{"x":-14,"y":38},{"x":-53,"y":25},{"x":-18,"y":79},{"x":21,"y":114},{"x":-76,"y":8},{"x":-107,"y":-51},{"x":-3,"y":66},{"x":-59,"y":21},{"x":-26,"y":107},{"x":-148,"y":59},{"x":-72,"y":-27},{"x":-65,"y":33},{"x":-48,"y":63},{"x":27,"y":58},{"x":-57,"y":70},{"x":16,"y":95}],"type":"admin"},{"arc":[{"x":140492,"y":165135},{"x":37,"y":-24},{"x":-30,"y":-12},{"x":31,"y":-35},{"x":121,"y":41},{"x":-16,"y":-54},{"x":220,"y":-191},{"x":40,"y":-79},{"x":189,"y":-82},{"x":180,"y":-313},{"x":132,"y":-154},{"x":14,"y":-65}],"type":"admin"},{"arc":[{"x":134537,"y":151615},{"x":28,"y":-272},{"x":-77,"y":-895}],"type":"coastline"},{"arc":[{"x":134488,"y":150448},{"x":125,"y":-2},{"x":61,"y":47},{"x":173,"y":26},{"x":176,"y":-41},{"x":62,"y":-61},{"x":134,"y":-6},{"x":45,"y":-32},{"x":66,"y":24},{"x":117,"y":-67},{"x":66,"y":9},{"x":20,"y":26},{"x":142,"y":-7},{"x":44,"y":23},{"x":43,"y":-23},{"x":94,"y":53},{"x":59,"y":114}],"type":"admin"},{"arc":[{"x":137138,"y":166471},{"x":-48,"y":-25},{"x":-27,"y":15},{"x":-74,"y":-80},{"x":-149,"y":-53},{"x":42,"y":-215},{"x":-48,"y":-57},{"x":-27,"y":-184},{"x":-89,"y":-157},{"x":-109,"y":49}],"type":"admin"},{"arc":[{"x":136609,"y":165764},{"x":-127,"y":-179},{"x":-17,"y":-51},{"x":25,"y":-71},{"x":-75,"y":-161},{"x":23,"y":-27},{"x":-10,"y":-68},{"x":85,"y":-72},{"x":12,"y":-132}],"type":"admin"},{"arc":[{"x":136525,"y":165003},{"x":73,"y":-1},{"x":84,"y":-61},{"x":-3,"y":-60},{"x":28,"y":-31},{"x":-18,"y":-80},{"x":123,"y":-69},{"x":-24,"y":-34},{"x":118,"y":-211},{"x":53,"y":-10},{"x":38,"y":-42},{"x":117,"y":-11},{"x":15,"y":-28},{"x":-25,"y":-97},{"x":-92,"y":-104},{"x":19,"y":-165},{"x":-53,"y":-169},{"x":-58,"y":-50},{"x":-85,"y":48},{"x":20,"y":-52},{"x":-33,"y":-71}],"type":"admin"},{"arc":[{"x":136822,"y":163705},{"x":45,"y":-10},{"x":-8,"y":-78},{"x":86,"y":-60},{"x":33,"y":57},{"x":185,"y":-17},{"x":135,"y":104},{"x":20,"y":62},{"x":-29,"y":-10},{"x":-4,"y":19},{"x":73,"y":79},{"x":62,"y":5},{"x":-4,"y":64},{"x":33,"y":19},{"x":66,"y":-44},{"x":-9,"y":31},{"x":12,"y":-21},{"x":80,"y":-10},{"x":95,"y":-79},{"x":149,"y":-19}],"type":"coastline"},{"arc":[{"x":138711,"y":165159},{"x":-2,"y":19},{"x":-100,"y":-21},{"x":-108,"y":86},{"x":28,"y":16},{"x":-30,"y":14},{"x":16,"y":50},{"x":26,"y":-4},{"x":4,"y":-37},{"x":79,"y":59},{"x":-90,"y":30},{"x":-8,"y":17},{"x":54,"y":32},{"x":-102,"y":58},{"x":3,"y":30},{"x":84,"y":54},{"x":16,"y":99},{"x":71,"y":71},{"x":3,"y":217},{"x":119,"y":115},{"x":-41,"y":108},{"x":51,"y":87},{"x":-124,"y":92},{"x":15,"y":57},{"x":72,"y":65},{"x":69,"y":-28},{"x":-36,"y":156}],"type":"area"},{"arc":[{"x":133825,"y":157936},{"x":46,"y":59}],"type":"area"},{"arc":[{"x":133871,"y":157995},{"x":16,"y":40},{"x":-49,"y":45},{"x":-57,"y":-41},{"x":44,"y":-103}],"type":"coastline"},{"arc":[{"x":133800,"y":158134},{"x":76,"y":41},{"x":112,"y":15},{"x":-113,"y":-12},{"x":-75,"y":-44}],"type":"coastline"},{"arc":[{"x":133807,"y":157913},{"x":-50,"y":98},{"x":4,"y":-35},{"x":-50,"y":37},{"x":23,"y":29},{"x":26,"y":-28},{"x":-27,"y":35},{"x":-54,"y":2},{"x":-5,"y":-31},{"x":-27,"y":32},{"x":28,"y":7},{"x":-14,"y":30},{"x":-19,"y":-27},{"x":-1,"y":39},{"x":93,"y":-30},{"x":-48,"y":58},{"x":-8,"y":-17},{"x":-36,"y":19},{"x":15,"y":35},{"x":-57,"y":30},{"x":-60,"y":-14},{"x":-53,"y":-68},{"x":66,"y":-202},{"x":7,"y":-155},{"x":81,"y":-118},{"x":445,"y":-1056}],"type":"coastline"},{"arc":[{"x":134321,"y":156646},{"x":-41,"y":184},{"x":143,"y":16},{"x":26,"y":58},{"x":140,"y":13},{"x":48,"y":31},{"x":52,"y":92},{"x":72,"y":30},{"x":56,"y":101},{"x":-32,"y":108}],"type":"area"},{"arc":[{"x":134785,"y":157279},{"x":-85,"y":183},{"x":-116,"y":104},{"x":-81,"y":-5},{"x":-21,"y":-26},{"x":-50,"y":118},{"x":-38,"y":17},{"x":-54,"y":-27},{"x":-53,"y":19},{"x":-183,"y":-146},{"x":-113,"y":-6},{"x":-24,"y":33},{"x":-121,"y":-14},{"x":25,"y":160},{"x":-81,"y":95},{"x":17,"y":129}],"type":"area"},{"arc":[{"x":135999,"y":157208},{"x":-215,"y":41},{"x":-134,"y":-27},{"x":-39,"y":-61},{"x":-153,"y":-23},{"x":-121,"y":103},{"x":-194,"y":-20},{"x":-138,"y":58},{"x":-102,"y":-21},{"x":-118,"y":21}],"type":"area"},{"arc":[{"x":139402,"y":165214},{"x":27,"y":185},{"x":-43,"y":61},{"x":90,"y":4},{"x":-17,"y":70},{"x":54,"y":-9},{"x":125,"y":317},{"x":-23,"y":51},{"x":43,"y":145},{"x":-53,"y":161},{"x":3,"y":120},{"x":36,"y":82}],"type":"admin"},{"arc":[{"x":133825,"y":157936},{"x":15,"y":-11},{"x":11,"y":27},{"x":33,"y":-21},{"x":-16,"y":-28},{"x":30,"y":22},{"x":-15,"y":14},{"x":27,"y":-14},{"x":20,"y":26},{"x":-59,"y":44}],"type":"coastline"},{"arc":[{"x":135912,"y":158086},{"x":-106,"y":73},{"x":-30,"y":59},{"x":-90,"y":9},{"x":-114,"y":62},{"x":-21,"y":30},{"x":35,"y":39},{"x":-21,"y":15},{"x":-89,"y":-74},{"x":-85,"y":-28},{"x":-62,"y":45}],"type":"admin"},{"arc":[{"x":135329,"y":158316},{"x":-309,"y":-296},{"x":-150,"y":-39},{"x":-34,"y":22},{"x":-32,"y":-17},{"x":43,"y":33},{"x":-165,"y":-95},{"x":-19,"y":11},{"x":9,"y":-18},{"x":-27,"y":29},{"x":-18,"y":-27},{"x":16,"y":37},{"x":-35,"y":-53},{"x":-240,"y":-109},{"x":-302,"y":-17},{"x":-101,"y":37},{"x":17,"y":37},{"x":-31,"y":22},{"x":-7,"y":-42},{"x":-10,"y":31},{"x":-18,"y":-15},{"x":-15,"y":15},{"x":31,"y":4},{"x":-20,"y":4},{"x":-21,"y":-9},{"x":-84,"y":52}],"type":"coastline"},{"arc":[{"x":136748,"y":166967},{"x":-59,"y":-4},{"x":-84,"y":-56},{"x":-42,"y":13},{"x":-104,"y":-28},{"x":-56,"y":39},{"x":-48,"y":-28},{"x":-27,"y":20},{"x":-55,"y":-65},{"x":-182,"y":-104},{"x":-126,"y":-4},{"x":-76,"y":-34},{"x":-139,"y":-173},{"x":-35,"y":19},{"x":27,"y":5},{"x":-21,"y":26},{"x":27,"y":7},{"x":-70,"y":12},{"x":-31,"y":-114},{"x":28,"y":-78},{"x":-47,"y":-41}],"type":"coastline"},{"arc":[{"x":135628,"y":166379},{"x":126,"y":-117},{"x":83,"y":15},{"x":158,"y":-62},{"x":37,"y":-61},{"x":81,"y":-32},{"x":86,"y":-108},{"x":126,"y":-58},{"x":97,"y":-88},{"x":112,"y":-9},{"x":75,"y":-95}],"type":"area"},{"arc":[{"x":135628,"y":166379},{"x":-26,"y":-28},{"x":-103,"y":-25},{"x":0,"y":-53},{"x":-30,"y":-14},{"x":13,"y":-80},{"x":-132,"y":-79},{"x":9,"y":-20},{"x":-87,"y":45},{"x":-31,"y":-36},{"x":-67,"y":-1},{"x":8,"y":-40},{"x":-43,"y":0},{"x":11,"y":-23},{"x":-43,"y":11},{"x":3,"y":-42},{"x":-69,"y":45}],"type":"coastline"},{"arc":[{"x":135750,"y":165041},{"x":52,"y":-63},{"x":-28,"y":-53},{"x":31,"y":-51},{"x":48,"y":-41},{"x":85,"y":2}],"type":"area"},{"arc":[{"x":135938,"y":164835},{"x":45,"y":11},{"x":38,"y":54},{"x":64,"y":-16},{"x":72,"y":23},{"x":50,"y":-25},{"x":82,"y":35},{"x":159,"y":-6},{"x":77,"y":92}],"type":"area"},{"arc":[{"x":133920,"y":165129},{"x":71,"y":-141},{"x":-49,"y":-33},{"x":-33,"y":34},{"x":-52,"y":-17},{"x":37,"y":-35},{"x":-54,"y":-4},{"x":21,"y":-81},{"x":-26,"y":-39},{"x":-62,"y":-21},{"x":28,"y":-68},{"x":-45,"y":-21},{"x":-13,"y":-48},{"x":-36,"y":9},{"x":13,"y":-112},{"x":-60,"y":9},{"x":-11,"y":-25},{"x":-45,"y":3},{"x":38,"y":-11},{"x":19,"y":-45},{"x":-85,"y":41},{"x":10,"y":-27},{"x":-25,"y":-3},{"x":63,"y":-43},{"x":-31,"y":-10},{"x":43,"y":-25},{"x":-32,"y":6},{"x":20,"y":-111},{"x":121,"y":-12},{"x":10,"y":-22},{"x":-54,"y":-16},{"x":53,"y":-71},{"x":82,"y":-2},{"x":38,"y":-45},{"x":30,"y":6},{"x":-35,"y":-107},{"x":-46,"y":-15},{"x":8,"y":-37},{"x":15,"y":-18},{"x":143,"y":8},{"x":19,"y":-42},{"x":50,"y":-22},{"x":-33,"y":-64},{"x":82,"y":-78},{"x":62,"y":-24},{"x":86,"y":19},{"x":-10,"y":63},{"x":68,"y":13},{"x":8,"y":44},{"x":19,"y":-8},{"x":-31,"y":72},{"x":14,"y":-22},{"x":28,"y":31},{"x":39,"y":-30},{"x":39,"y":7},{"x":1,"y":-44},{"x":-23,"y":13},{"x":-19,"y":-39},{"x":11,"y":-54},{"x":107,"y":-4},{"x":77,"y":-79},{"x":-14,"y":-35},{"x":62,"y":5},{"x":79,"y":-104},{"x":-55,"y":-148},{"x":36,"y":-34},{"x":43,"y":45},{"x":58,"y":-19},{"x":26,"y":20},{"x":1,"y":-30}],"type":"coastline"},{"arc":[{"x":134819,"y":163432},{"x":84,"y":115},{"x":37,"y":162},{"x":77,"y":64},{"x":5,"y":35},{"x":-48,"y":34},{"x":33,"y":114},{"x":-55,"y":34},{"x":-57,"y":1},{"x":9,"y":30},{"x":-68,"y":141},{"x":33,"y":53},{"x":3,"y":164},{"x":56,"y":128},{"x":-16,"y":70}],"type":"area"},{"arc":[{"x":134819,"y":163432},{"x":28,"y":12},{"x":32,"y":-24},{"x":160,"y":37},{"x":73,"y":-7},{"x":2,"y":-27},{"x":38,"y":-5},{"x":19,"y":84},{"x":65,"y":-8},{"x":8,"y":33},{"x":32,"y":-2},{"x":-39,"y":69},{"x":77,"y":-9},{"x":-22,"y":31},{"x":21,"y":32},{"x":94,"y":-70},{"x":-8,"y":42},{"x":81,"y":55},{"x":-22,"y":24},{"x":32,"y":54},{"x":34,"y":1},{"x":-33,"y":6},{"x":14,"y":34},{"x":73,"y":12},{"x":8,"y":-42},{"x":21,"y":30}],"type":"coastline"},{"arc":[{"x":135607,"y":163794},{"x":19,"y":100},{"x":97,"y":193},{"x":163,"y":210},{"x":113,"y":95},{"x":-62,"y":67},{"x":35,"y":14},{"x":109,"y":-56},{"x":15,"y":61},{"x":-28,"y":31},{"x":39,"y":-3},{"x":-22,"y":58},{"x":-105,"y":29},{"x":-127,"y":-36},{"x":67,"y":116},{"x":18,"y":162}],"type":"area"},{"arc":[{"x":136162,"y":163588},{"x":-30,"y":-10},{"x":50,"y":6},{"x":-20,"y":4}],"type":"coastline"},{"arc":[{"x":135607,"y":163794},{"x":83,"y":-26},{"x":13,"y":-102},{"x":50,"y":79},{"x":40,"y":-36},{"x":-44,"y":14},{"x":29,"y":-36},{"x":35,"y":31},{"x":41,"y":-6},{"x":-15,"y":-17},{"x":53,"y":-10},{"x":23,"y":-44},{"x":42,"y":1},{"x":38,"y":-38},{"x":-15,"y":-13},{"x":33,"y":19},{"x":14,"y":-25},{"x":16,"y":23},{"x":45,"y":-54},{"x":42,"y":50},{"x":-31,"y":-6},{"x":5,"y":53},{"x":33,"y":7},{"x":7,"y":-27},{"x":42,"y":63},{"x":59,"y":-29},{"x":-21,"y":-52},{"x":26,"y":-45},{"x":93,"y":-28},{"x":46,"y":18},{"x":66,"y":80},{"x":-14,"y":53},{"x":-34,"y":-43},{"x":-18,"y":43},{"x":-33,"y":1},{"x":15,"y":34},{"x":57,"y":-29},{"x":37,"y":13},{"x":22,"y":-45},{"x":136,"y":-35},{"x":6,"y":58},{"x":39,"y":-1},{"x":37,"y":58},{"x":-35,"y":-12},{"x":8,"y":27},{"x":80,"y":36},{"x":47,"y":-19},{"x":17,"y":-72}],"type":"coastline"},{"arc":[{"x":140040,"y":164959},{"x":42,"y":-7},{"x":-17,"y":19},{"x":42,"y":13},{"x":-27,"y":98},{"x":48,"y":24},{"x":1,"y":27}],"type":"area"},{"arc":[{"x":135668,"y":158816},{"x":-61,"y":-51},{"x":-130,"y":-209},{"x":-41,"y":-16},{"x":62,"y":10},{"x":38,"y":33},{"x":-35,"y":-68},{"x":2,"y":27},{"x":-33,"y":-28},{"x":-3,"y":27},{"x":-18,"y":-9},{"x":9,"y":-39},{"x":-129,"y":-177}],"type":"coastline"},{"arc":[{"x":135318,"y":148278},{"x":-28,"y":-42},{"x":113,"y":163},{"x":-85,"y":-121}],"type":"coastline"},{"arc":[{"x":135429,"y":148731},{"x":-194,"y":-2},{"x":24,"y":-110},{"x":69,"y":1},{"x":-2,"y":35},{"x":104,"y":29},{"x":-1,"y":47}],"type":"coastline"},{"arc":[{"x":134488,"y":150448},{"x":-94,"y":-512},{"x":-243,"y":-972}],"type":"coastline"},{"arc":[{"x":134151,"y":148964},{"x":61,"y":4},{"x":139,"y":-46},{"x":-34,"y":-139},{"x":51,"y":-179},{"x":15,"y":-12},{"x":104,"y":55},{"x":75,"y":-37}],"type":"area"},{"arc":[{"x":134562,"y":148610},{"x":27,"y":47},{"x":81,"y":43},{"x":38,"y":-78},{"x":60,"y":32},{"x":-31,"y":113},{"x":98,"y":28},{"x":8,"y":-49},{"x":-26,"y":-4},{"x":-22,"y":-84},{"x":32,"y":0},{"x":15,"y":-34},{"x":290,"y":-2},{"x":-4,"y":203},{"x":35,"y":2},{"x":-34,"y":1},{"x":-10,"y":29},{"x":-36,"y":-14},{"x":-27,"y":34},{"x":28,"y":0},{"x":-1,"y":55},{"x":47,"y":1},{"x":32,"y":47},{"x":1,"y":91},{"x":58,"y":-46},{"x":-44,"y":-87},{"x":54,"y":-192},{"x":473,"y":3},{"x":10,"y":53},{"x":120,"y":55},{"x":64,"y":-56},{"x":-69,"y":-60},{"x":-17,"y":-116},{"x":72,"y":-22}],"type":"coastline"},{"arc":[{"x":135884,"y":148603},{"x":54,"y":113},{"x":-16,"y":55},{"x":70,"y":24},{"x":55,"y":62},{"x":-37,"y":13},{"x":-59,"y":-24},{"x":-42,"y":95},{"x":92,"y":125},{"x":-94,"y":-16},{"x":-21,"y":-29},{"x":-5,"y":21},{"x":94,"y":153},{"x":-28,"y":19},{"x":35,"y":114},{"x":108,"y":103},{"x":-50,"y":71},{"x":10,"y":93},{"x":-88,"y":72},{"x":112,"y":-63},{"x":55,"y":6},{"x":88,"y":175},{"x":-17,"y":105},{"x":78,"y":21},{"x":-1,"y":58},{"x":35,"y":15},{"x":35,"y":-17},{"x":42,"y":45},{"x":43,"y":-62},{"x":-37,"y":-63},{"x":174,"y":-78},{"x":36,"y":4},{"x":30,"y":123},{"x":46,"y":31},{"x":-40,"y":79},{"x":38,"y":94},{"x":73,"y":57},{"x":72,"y":7}],"type":"area"},{"arc":[{"x":136824,"y":150204},{"x":33,"y":111},{"x":-55,"y":97},{"x":-108,"y":-23},{"x":-67,"y":83},{"x":-154,"y":8},{"x":-53,"y":112}],"type":"area"},{"arc":[{"x":138494,"y":149416},{"x":-16,"y":-16},{"x":1,"y":53},{"x":-29,"y":-16},{"x":-45,"y":18},{"x":-21,"y":118},{"x":-41,"y":55},{"x":-37,"y":-66},{"x":-99,"y":-38},{"x":-35,"y":-52},{"x":-87,"y":181},{"x":-38,"y":-5},{"x":-18,"y":-46},{"x":-74,"y":-11},{"x":-33,"y":64},{"x":16,"y":23},{"x":-49,"y":24},{"x":-58,"y":-34},{"x":-96,"y":31},{"x":-39,"y":-14},{"x":-53,"y":62},{"x":-66,"y":8},{"x":-32,"y":33},{"x":-76,"y":-5}],"type":"area"},{"arc":[{"x":137469,"y":149783},{"x":-32,"y":-70},{"x":17,"y":-19},{"x":-75,"y":-90},{"x":-108,"y":13},{"x":-52,"y":-53},{"x":-63,"y":-14},{"x":-21,"y":-39},{"x":54,"y":-119},{"x":57,"y":-25},{"x":21,"y":-50},{"x":-101,"y":-151},{"x":69,"y":-25},{"x":2,"y":-66},{"x":57,"y":5},{"x":30,"y":-27},{"x":-63,"y":-87},{"x":10,"y":-47},{"x":-74,"y":-41},{"x":0,"y":-101},{"x":-132,"y":-205},{"x":108,"y":-68},{"x":-48,"y":-52},{"x":-22,"y":-90},{"x":7,"y":-48},{"x":46,"y":-41},{"x":4,"y":-63},{"x":-42,"y":-55},{"x":-94,"y":-8},{"x":-65,"y":-64},{"x":-61,"y":20},{"x":-46,"y":-18}],"type":"area"},{"arc":[{"x":136852,"y":148085},{"x":24,"y":-115},{"x":50,"y":-68},{"x":-26,"y":-75},{"x":70,"y":-66},{"x":-33,"y":-133}],"type":"area"},{"arc":[{"x":136937,"y":147628},{"x":38,"y":-26},{"x":91,"y":12},{"x":20,"y":-56},{"x":66,"y":-49},{"x":27,"y":33},{"x":52,"y":-14},{"x":13,"y":54},{"x":26,"y":-3},{"x":64,"y":-44},{"x":33,"y":-89},{"x":47,"y":-17},{"x":2,"y":-48},{"x":41,"y":-16},{"x":12,"y":-101},{"x":-43,"y":-96},{"x":-55,"y":-20},{"x":-20,"y":-41},{"x":-145,"y":-38},{"x":9,"y":-22},{"x":-38,"y":-15},{"x":49,"y":-172}],"type":"admin"},{"arc":[{"x":137226,"y":146860},{"x":-17,"y":-105},{"x":-117,"y":-108},{"x":-13,"y":-151},{"x":60,"y":36},{"x":20,"y":-29},{"x":33,"y":98},{"x":34,"y":24},{"x":57,"y":-24},{"x":63,"y":20},{"x":52,"y":-70}],"type":"area"},{"arc":[{"x":137398,"y":146551},{"x":111,"y":-24},{"x":180,"y":140},{"x":24,"y":-45},{"x":21,"y":16},{"x":21,"y":-22},{"x":48,"y":38},{"x":-8,"y":-97},{"x":106,"y":-29},{"x":63,"y":44},{"x":-24,"y":28},{"x":21,"y":12},{"x":32,"y":-29},{"x":66,"y":55},{"x":68,"y":3},{"x":36,"y":34},{"x":66,"y":-48},{"x":43,"y":-74},{"x":28,"y":4},{"x":22,"y":19},{"x":-40,"y":37},{"x":-7,"y":64},{"x":27,"y":18},{"x":-30,"y":27},{"x":45,"y":21},{"x":37,"y":-7},{"x":26,"y":-70},{"x":122,"y":-29}],"type":"area"},{"arc":[{"x":143115,"y":143718},{"x":-62,"y":42},{"x":-60,"y":-59},{"x":-9,"y":98},{"x":-84,"y":-15},{"x":-32,"y":41},{"x":-63,"y":14},{"x":-50,"y":-55},{"x":-3,"y":100},{"x":-48,"y":64},{"x":-27,"y":6},{"x":-4,"y":-29},{"x":-12,"y":24},{"x":-39,"y":-16},{"x":-43,"y":74},{"x":-45,"y":-4},{"x":20,"y":79},{"x":-32,"y":-6},{"x":-13,"y":38},{"x":-43,"y":-6},{"x":-30,"y":57}],"type":"area"},{"arc":[{"x":142436,"y":144165},{"x":-57,"y":-45},{"x":-14,"y":-81},{"x":-196,"y":-52},{"x":-17,"y":-114},{"x":-65,"y":-24},{"x":-2,"y":-38},{"x":-106,"y":40},{"x":9,"y":51},{"x":-27,"y":-11}],"type":"area"},{"arc":[{"x":141961,"y":143891},{"x":-85,"y":-97},{"x":-4,"y":18},{"x":-75,"y":1}],"type":"area"},{"arc":[{"x":141797,"y":143813},{"x":-14,"y":-66}],"type":"area"},{"arc":[{"x":141783,"y":143747},{"x":106,"y":-31},{"x":24,"y":-54},{"x":86,"y":5},{"x":17,"y":-18},{"x":37,"y":27},{"x":5,"y":-48},{"x":55,"y":4},{"x":-5,"y":-191},{"x":-68,"y":-37},{"x":-32,"y":-129},{"x":-64,"y":-51},{"x":-1,"y":-76},{"x":-38,"y":-36},{"x":43,"y":-147},{"x":53,"y":-12},{"x":5,"y":-26},{"x":-24,"y":-65},{"x":-104,"y":-111},{"x":127,"y":-43},{"x":94,"y":-328}],"type":"area"},{"arc":[{"x":140881,"y":146424},{"x":1,"y":-37},{"x":50,"y":-46},{"x":85,"y":-31},{"x":-10,"y":-74},{"x":83,"y":-108},{"x":-61,"y":-79},{"x":47,"y":-99}],"type":"area"},{"arc":[{"x":141076,"y":145950},{"x":101,"y":-8},{"x":67,"y":82},{"x":5,"y":54},{"x":70,"y":63},{"x":23,"y":-25},{"x":-31,"y":-46},{"x":67,"y":-35},{"x":80,"y":-2},{"x":114,"y":76},{"x":56,"y":10},{"x":100,"y":-65}],"type":"area"},{"arc":[{"x":141904,"y":145955},{"x":67,"y":61},{"x":-38,"y":117},{"x":116,"y":111},{"x":168,"y":99},{"x":50,"y":100},{"x":23,"y":-13}],"type":"area"},{"arc":[{"x":137753,"y":145178},{"x":-186,"y":-20},{"x":-35,"y":-51},{"x":-36,"y":44},{"x":-134,"y":-34},{"x":-255,"y":-125},{"x":-58,"y":72},{"x":-30,"y":-15},{"x":14,"y":-30},{"x":-53,"y":-11},{"x":10,"y":-20},{"x":54,"y":10},{"x":31,"y":-62},{"x":29,"y":-79},{"x":-45,"y":-44},{"x":11,"y":-36},{"x":-45,"y":-22},{"x":-14,"y":32},{"x":36,"y":35},{"x":-28,"y":54},{"x":-61,"y":-2},{"x":-83,"y":-52}],"type":"coastline"},{"arc":[{"x":136875,"y":144822},{"x":94,"y":-182},{"x":-21,"y":-83},{"x":82,"y":-212},{"x":-19,"y":-108},{"x":61,"y":-88}],"type":"admin"},{"arc":[{"x":137072,"y":144149},{"x":228,"y":13},{"x":50,"y":-117},{"x":121,"y":40},{"x":104,"y":106}],"type":"area"},{"arc":[{"x":137575,"y":144191},{"x":-91,"y":78},{"x":9,"y":94},{"x":33,"y":32},{"x":-46,"y":162},{"x":33,"y":45},{"x":4,"y":75},{"x":-34,"y":18},{"x":31,"y":43},{"x":-35,"y":44},{"x":18,"y":15},{"x":42,"y":-55},{"x":98,"y":6},{"x":47,"y":39},{"x":27,"y":-19},{"x":95,"y":31},{"x":69,"y":59}],"type":"admin"},{"arc":[{"x":137875,"y":144858},{"x":-47,"y":99},{"x":25,"y":69},{"x":-45,"y":64},{"x":-45,"y":-13},{"x":-10,"y":101}],"type":"admin"},{"arc":[{"x":141681,"y":144678},{"x":79,"y":55},{"x":82,"y":-42},{"x":37,"y":13},{"x":-11,"y":15}],"type":"admin"},{"arc":[{"x":141868,"y":144719},{"x":-28,"y":4},{"x":79,"y":38},{"x":34,"y":-45},{"x":118,"y":7},{"x":52,"y":152},{"x":109,"y":-44},{"x":14,"y":14},{"x":-83,"y":165},{"x":44,"y":67},{"x":28,"y":14},{"x":13,"y":-19},{"x":22,"y":33},{"x":-49,"y":48},{"x":-1,"y":72},{"x":-44,"y":3},{"x":11,"y":64},{"x":-33,"y":19},{"x":46,"y":119},{"x":44,"y":37},{"x":-34,"y":26},{"x":38,"y":25},{"x":-41,"y":26},{"x":43,"y":-19},{"x":-38,"y":43},{"x":41,"y":-26},{"x":141,"y":39},{"x":27,"y":-66},{"x":-17,"y":67},{"x":28,"y":-24},{"x":-11,"y":25},{"x":27,"y":11},{"x":15,"y":-24},{"x":6,"y":52},{"x":74,"y":-17},{"x":54,"y":39},{"x":72,"y":-11},{"x":55,"y":58},{"x":68,"y":163},{"x":115,"y":59}],"type":"area"},{"arc":[{"x":142907,"y":145913},{"x":1,"y":0}],"type":"area"},{"arc":[{"x":136206,"y":148522},{"x":-3,"y":23},{"x":-58,"y":74},{"x":-76,"y":35},{"x":-13,"y":-103},{"x":94,"y":-19},{"x":3,"y":-20},{"x":-3,"y":20},{"x":53,"y":8},{"x":3,"y":-18},{"x":-47,"y":-11},{"x":47,"y":11}],"type":"coastline"},{"arc":[{"x":135884,"y":148603},{"x":108,"y":-32},{"x":59,"y":138},{"x":132,"y":-105},{"x":33,"y":-88}],"type":"coastline"},{"arc":[{"x":136216,"y":148516},{"x":167,"y":-90},{"x":15,"y":47},{"x":-27,"y":48},{"x":46,"y":31},{"x":91,"y":-72},{"x":21,"y":-158},{"x":-18,"y":-48},{"x":60,"y":-95},{"x":145,"y":-74},{"x":136,"y":-20}],"type":"area"},{"arc":[{"x":137469,"y":149783},{"x":-76,"y":24},{"x":-50,"y":60},{"x":-43,"y":147},{"x":-63,"y":8},{"x":-128,"y":112},{"x":-125,"y":58},{"x":-42,"y":-67},{"x":-80,"y":-1},{"x":4,"y":34},{"x":-42,"y":46}],"type":"area"},{"arc":[{"x":140603,"y":143207},{"x":-97,"y":-25},{"x":-9,"y":-64},{"x":29,"y":-11},{"x":-44,"y":-43},{"x":-47,"y":-12},{"x":-71,"y":34},{"x":-21,"y":-20}],"type":"admin"},{"arc":[{"x":140343,"y":143066},{"x":-52,"y":-85},{"x":11,"y":-31},{"x":152,"y":-18},{"x":-11,"y":-29},{"x":173,"y":-98},{"x":105,"y":-138},{"x":21,"y":-57},{"x":-19,"y":-94},{"x":-38,"y":-16},{"x":19,"y":-17},{"x":-20,"y":-47},{"x":45,"y":-3},{"x":-9,"y":16},{"x":165,"y":-45},{"x":124,"y":22},{"x":-10,"y":111},{"x":-40,"y":32},{"x":58,"y":84},{"x":-75,"y":-9},{"x":-5,"y":40},{"x":64,"y":6},{"x":-9,"y":37},{"x":-42,"y":15},{"x":-45,"y":-18},{"x":4,"y":89},{"x":-60,"y":15},{"x":5,"y":31},{"x":22,"y":33},{"x":87,"y":-1},{"x":8,"y":39},{"x":48,"y":13},{"x":51,"y":-18},{"x":9,"y":47},{"x":60,"y":18}],"type":"area"},{"arc":[{"x":141139,"y":142990},{"x":-33,"y":96},{"x":-53,"y":-1},{"x":-33,"y":37},{"x":-75,"y":-2},{"x":0,"y":35},{"x":-153,"y":5},{"x":-1,"y":68},{"x":-76,"y":-3},{"x":2,"y":-21},{"x":-44,"y":-12},{"x":-29,"y":-2},{"x":-7,"y":34},{"x":-34,"y":-17}],"type":"area"},{"arc":[{"x":136430,"y":144991},{"x":-114,"y":-142},{"x":80,"y":28},{"x":71,"y":91},{"x":-37,"y":23}],"type":"coastline"},{"arc":[{"x":137222,"y":145812},{"x":-7,"y":53},{"x":-33,"y":-13},{"x":-22,"y":-91},{"x":-215,"y":-309},{"x":-603,"y":-320}],"type":"area"},{"arc":[{"x":136342,"y":145132},{"x":27,"y":-66},{"x":133,"y":-79},{"x":190,"y":-26},{"x":23,"y":13},{"x":2,"y":91},{"x":34,"y":4},{"x":24,"y":-97},{"x":213,"y":138},{"x":11,"y":-20},{"x":29,"y":15},{"x":-8,"y":80},{"x":41,"y":-54},{"x":201,"y":63},{"x":-1,"y":73},{"x":48,"y":-8},{"x":-31,"y":-59},{"x":161,"y":3}],"type":"coastline"},{"arc":[{"x":137439,"y":145203},{"x":15,"y":81},{"x":101,"y":135},{"x":-23,"y":32},{"x":216,"y":234}],"type":"area"},{"arc":[{"x":137748,"y":145685},{"x":67,"y":80},{"x":-98,"y":27},{"x":-21,"y":-21},{"x":-18,"y":36},{"x":-59,"y":-9},{"x":-25,"y":-63},{"x":-167,"y":-152},{"x":-133,"y":5},{"x":-24,"y":87},{"x":-74,"y":56},{"x":26,"y":81}],"type":"area"},{"arc":[{"x":138888,"y":145845},{"x":-34,"y":-62},{"x":-68,"y":30},{"x":-38,"y":-55},{"x":-46,"y":-12},{"x":-20,"y":-142},{"x":-25,"y":28},{"x":-113,"y":2},{"x":-42,"y":79},{"x":-58,"y":-63},{"x":-7,"y":148},{"x":-71,"y":110}],"type":"area"},{"arc":[{"x":138366,"y":145908},{"x":-11,"y":-23},{"x":-87,"y":46},{"x":-34,"y":-58},{"x":-18,"y":18},{"x":-26,"y":-24},{"x":-36,"y":27},{"x":-18,"y":-11},{"x":-24,"y":36},{"x":-30,"y":-20},{"x":-15,"y":-18},{"x":71,"y":-70},{"x":5,"y":-45},{"x":-48,"y":-3},{"x":15,"y":-26},{"x":-164,"y":-194}],"type":"area"},{"arc":[{"x":137946,"y":145543},{"x":128,"y":-190},{"x":-19,"y":-92}],"type":"area"},{"arc":[{"x":138055,"y":145261},{"x":205,"y":-8},{"x":134,"y":-38},{"x":126,"y":29},{"x":110,"y":-6}],"type":"admin"},{"arc":[{"x":138630,"y":145238},{"x":118,"y":85},{"x":74,"y":-17},{"x":70,"y":31},{"x":18,"y":75},{"x":44,"y":40}],"type":"area"},{"arc":[{"x":138954,"y":145452},{"x":82,"y":38},{"x":72,"y":116},{"x":157,"y":119},{"x":29,"y":73},{"x":101,"y":75},{"x":75,"y":5}],"type":"area"},{"arc":[{"x":139470,"y":145878},{"x":17,"y":22}],"type":"admin"},{"arc":[{"x":139487,"y":145900},{"x":-63,"y":58},{"x":34,"y":56},{"x":-10,"y":56},{"x":-40,"y":21},{"x":-16,"y":54},{"x":-55,"y":-4}],"type":"area"},{"arc":[{"x":137398,"y":146551},{"x":-55,"y":-30},{"x":-111,"y":-143},{"x":-26,"y":-274},{"x":159,"y":-19},{"x":108,"y":59},{"x":-1,"y":-24},{"x":35,"y":13},{"x":14,"y":-47},{"x":-76,"y":-30},{"x":-91,"y":-121},{"x":-44,"y":9},{"x":-32,"y":-31},{"x":19,"y":-60},{"x":-75,"y":-41}],"type":"area"},{"arc":[{"x":137748,"y":145685},{"x":-13,"y":-77},{"x":62,"y":-48},{"x":149,"y":-17}],"type":"area"},{"arc":[{"x":138366,"y":145908},{"x":-6,"y":174},{"x":32,"y":27},{"x":26,"y":-13},{"x":15,"y":86},{"x":144,"y":-23},{"x":39,"y":89},{"x":38,"y":7},{"x":28,"y":56},{"x":54,"y":3}],"type":"area"},{"arc":[{"x":135226,"y":145858},{"x":-63,"y":137},{"x":-43,"y":-13},{"x":-5,"y":-37},{"x":-15,"y":71},{"x":-25,"y":-33},{"x":-60,"y":-6},{"x":-24,"y":-59},{"x":66,"y":36},{"x":43,"y":-55},{"x":51,"y":-9},{"x":-28,"y":-66},{"x":-51,"y":0},{"x":41,"y":-67},{"x":31,"y":31},{"x":24,"y":-40},{"x":5,"y":56},{"x":43,"y":8},{"x":10,"y":46}],"type":"coastline"},{"arc":[{"x":135694,"y":146494},{"x":-33,"y":9},{"x":-10,"y":-49},{"x":34,"y":3},{"x":9,"y":37}],"type":"coastline"},{"arc":[{"x":135744,"y":146960},{"x":-36,"y":-8},{"x":8,"y":-26},{"x":28,"y":34}],"type":"coastline"},{"arc":[{"x":135828,"y":146943},{"x":-24,"y":-6},{"x":10,"y":-35},{"x":14,"y":41}],"type":"coastline"},{"arc":[{"x":135891,"y":146888},{"x":0,"y":-35},{"x":3,"y":62},{"x":-3,"y":-27}],"type":"coastline"},{"arc":[{"x":137226,"y":146860},{"x":-93,"y":29},{"x":-9,"y":-62},{"x":-44,"y":29},{"x":-55,"y":-4},{"x":-63,"y":-46},{"x":-13,"y":-59},{"x":63,"y":-83},{"x":-39,"y":-11},{"x":-25,"y":32},{"x":21,"y":-60},{"x":-24,"y":9},{"x":11,"y":-16},{"x":-51,"y":-16},{"x":-27,"y":-64},{"x":-16,"y":74},{"x":49,"y":3},{"x":-25,"y":19},{"x":30,"y":-2},{"x":-15,"y":22},{"x":28,"y":40},{"x":-28,"y":-18},{"x":-22,"y":18},{"x":1,"y":-42},{"x":-10,"y":54},{"x":13,"y":37},{"x":-19,"y":-16},{"x":7,"y":-86},{"x":-30,"y":-17},{"x":-13,"y":74},{"x":-71,"y":50},{"x":-90,"y":-44},{"x":14,"y":-44},{"x":96,"y":-75},{"x":-38,"y":26},{"x":13,"y":-27},{"x":-30,"y":6},{"x":53,"y":-42},{"x":-59,"y":26},{"x":51,"y":-33},{"x":-34,"y":5},{"x":5,"y":-31},{"x":-102,"y":98},{"x":-18,"y":-32},{"x":25,"y":2},{"x":6,"y":-44},{"x":72,"y":-58},{"x":-110,"y":66},{"x":48,"y":-42},{"x":-31,"y":-13},{"x":34,"y":4},{"x":-41,"y":-10},{"x":-50,"y":160},{"x":11,"y":37},{"x":61,"y":34},{"x":-19,"y":36},{"x":-108,"y":76},{"x":-78,"y":120},{"x":-78,"y":7},{"x":29,"y":104},{"x":-119,"y":67}],"type":"admin"},{"arc":[{"x":136270,"y":147127},{"x":-38,"y":76},{"x":-69,"y":-13},{"x":-77,"y":22},{"x":-61,"y":-31},{"x":-101,"y":-6}],"type":"area"},{"arc":[{"x":135924,"y":147175},{"x":-34,"y":0},{"x":21,"y":-76},{"x":-35,"y":33},{"x":15,"y":-39},{"x":-46,"y":-82},{"x":57,"y":-85},{"x":-6,"y":39},{"x":39,"y":-26},{"x":7,"y":-44},{"x":-27,"y":-11},{"x":28,"y":-2},{"x":-1,"y":-40},{"x":-14,"y":-19},{"x":-12,"y":30},{"x":-3,"y":-39},{"x":-55,"y":-5},{"x":-6,"y":-30},{"x":93,"y":-156},{"x":13,"y":23},{"x":12,"y":-108},{"x":-6,"y":-14},{"x":-46,"y":25},{"x":-4,"y":-51},{"x":-33,"y":28},{"x":-7,"y":-71},{"x":-72,"y":-43},{"x":-24,"y":-32},{"x":14,"y":18},{"x":14,"y":-22},{"x":-40,"y":-28},{"x":38,"y":-53},{"x":17,"y":22},{"x":53,"y":-31},{"x":43,"y":-63},{"x":-20,"y":-114},{"x":-40,"y":-8},{"x":30,"y":2},{"x":-3,"y":-17},{"x":-22,"y":8},{"x":-44,"y":-156},{"x":-39,"y":-33},{"x":16,"y":-121},{"x":-30,"y":-9},{"x":-1,"y":-31},{"x":14,"y":30},{"x":20,"y":-76},{"x":125,"y":-116},{"x":24,"y":62},{"x":18,"y":-67},{"x":27,"y":-23},{"x":38,"y":6},{"x":104,"y":-120},{"x":128,"y":-40},{"x":-14,"y":50},{"x":41,"y":-47},{"x":-7,"y":-66},{"x":60,"y":-205}],"type":"coastline"},{"arc":[{"x":135948,"y":147872},{"x":-36,"y":-10},{"x":14,"y":-63},{"x":22,"y":73}],"type":"coastline"},{"arc":[{"x":136216,"y":148516},{"x":23,"y":-113},{"x":-27,"y":79},{"x":-75,"y":-22},{"x":0,"y":-123},{"x":44,"y":-18},{"x":27,"y":19},{"x":-2,"y":-55},{"x":-53,"y":10},{"x":-26,"y":46},{"x":28,"y":-66},{"x":-28,"y":-41},{"x":-26,"y":26},{"x":27,"y":-30},{"x":67,"y":-21},{"x":-54,"y":12},{"x":-8,"y":-24},{"x":12,"y":6},{"x":0,"y":-26},{"x":-17,"y":5},{"x":-2,"y":13},{"x":2,"y":-13},{"x":28,"y":-9},{"x":-9,"y":-137},{"x":114,"y":-51},{"x":8,"y":-40},{"x":-24,"y":34},{"x":-12,"y":-14},{"x":-26,"y":19},{"x":0,"y":-26},{"x":31,"y":0},{"x":45,"y":-161},{"x":27,"y":5},{"x":-23,"y":-10},{"x":87,"y":-122},{"x":-96,"y":78},{"x":-13,"y":-33},{"x":38,"y":-43},{"x":-21,"y":-18},{"x":-43,"y":48},{"x":-79,"y":-56},{"x":-19,"y":20},{"x":-21,"y":-19},{"x":35,"y":-2},{"x":-39,"y":-41},{"x":79,"y":-92},{"x":-19,"y":-17},{"x":22,"y":19},{"x":23,"y":-25},{"x":-30,"y":-27},{"x":-23,"y":25},{"x":25,"y":-50},{"x":-21,"y":21},{"x":-33,"y":-26},{"x":-13,"y":28},{"x":5,"y":-24},{"x":-65,"y":-22},{"x":-8,"y":24},{"x":-6,"y":-39},{"x":-48,"y":1},{"x":46,"y":-17},{"x":-72,"y":-26},{"x":12,"y":50},{"x":-64,"y":-41},{"x":-18,"y":14},{"x":20,"y":-2},{"x":16,"y":12},{"x":-3,"y":24},{"x":2,"y":-23},{"x":-15,"y":-12},{"x":-64,"y":4},{"x":-7,"y":-14},{"x":-35,"y":12},{"x":32,"y":11},{"x":-63,"y":9},{"x":-145,"y":-125},{"x":-6,"y":-86},{"x":27,"y":-12},{"x":60,"y":-10},{"x":12,"y":20},{"x":-41,"y":-4},{"x":7,"y":49},{"x":110,"y":16},{"x":-6,"y":31},{"x":58,"y":-30},{"x":-27,"y":-21},{"x":49,"y":13},{"x":35,"y":-65}],"type":"coastline"},{"arc":[{"x":136270,"y":147127},{"x":106,"y":77},{"x":37,"y":76},{"x":-42,"y":16},{"x":10,"y":61},{"x":-61,"y":19},{"x":25,"y":38},{"x":48,"y":-9},{"x":-5,"y":45},{"x":30,"y":20},{"x":-19,"y":28},{"x":99,"y":-82},{"x":108,"y":65},{"x":88,"y":-52},{"x":59,"y":43},{"x":42,"y":88},{"x":83,"y":-4},{"x":59,"y":72}],"type":"admin"},{"arc":[{"x":142907,"y":145913},{"x":-70,"y":-128},{"x":11,"y":-218},{"x":-60,"y":-30},{"x":28,"y":-103},{"x":-21,"y":-112},{"x":-127,"y":-50},{"x":19,"y":-36},{"x":30,"y":3},{"x":-24,"y":-65},{"x":18,"y":-18},{"x":-93,"y":-86},{"x":-42,"y":-112},{"x":1,"y":-68},{"x":121,"y":31},{"x":6,"y":-104},{"x":-31,"y":-47},{"x":24,"y":-81},{"x":-46,"y":-64}],"type":"area"},{"arc":[{"x":142651,"y":144625},{"x":161,"y":119},{"x":134,"y":36},{"x":43,"y":-12},{"x":81,"y":62},{"x":80,"y":4},{"x":34,"y":-21}],"type":"admin"},{"arc":[{"x":143184,"y":144813},{"x":15,"y":-35},{"x":75,"y":2},{"x":31,"y":-33},{"x":-40,"y":-30},{"x":17,"y":-43},{"x":-31,"y":-56},{"x":61,"y":-43},{"x":50,"y":65},{"x":45,"y":-18}],"type":"admin"},{"arc":[{"x":137063,"y":143427},{"x":-133,"y":145},{"x":-73,"y":30},{"x":-1,"y":-39},{"x":-34,"y":7},{"x":7,"y":39},{"x":-77,"y":8},{"x":-54,"y":3},{"x":-26,"y":-123},{"x":-83,"y":16},{"x":-11,"y":-56},{"x":14,"y":-19},{"x":446,"y":-88},{"x":25,"y":77}],"type":"coastline"},{"arc":[{"x":137883,"y":144201},{"x":-31,"y":114},{"x":-34,"y":3},{"x":-212,"y":-87},{"x":-31,"y":-40}],"type":"admin"},{"arc":[{"x":137072,"y":144149},{"x":-47,"y":12},{"x":-27,"y":41},{"x":-54,"y":6},{"x":-48,"y":77},{"x":-135,"y":37},{"x":-38,"y":-109},{"x":-217,"y":36},{"x":-126,"y":-29},{"x":-109,"y":45}],"type":"admin"},{"arc":[{"x":136271,"y":144265},{"x":-35,"y":-4},{"x":23,"y":-255}],"type":"admin"},{"arc":[{"x":136259,"y":144006},{"x":208,"y":38},{"x":-25,"y":-26},{"x":37,"y":27},{"x":97,"y":10},{"x":18,"y":-27},{"x":127,"y":-27},{"x":47,"y":-59},{"x":-16,"y":29},{"x":33,"y":-11},{"x":-17,"y":-8},{"x":108,"y":3},{"x":93,"y":-78},{"x":11,"y":-56},{"x":1,"y":20},{"x":60,"y":-90},{"x":32,"y":-9},{"x":-7,"y":49},{"x":82,"y":-32},{"x":-36,"y":-30},{"x":-32,"y":4},{"x":-75,"y":-35},{"x":-15,"y":-17},{"x":33,"y":25},{"x":26,"y":-31},{"x":-16,"y":-22},{"x":-31,"y":20},{"x":72,"y":-48},{"x":73,"y":-35},{"x":14,"y":11},{"x":36,"y":-6},{"x":-23,"y":-14},{"x":55,"y":32},{"x":30,"y":32},{"x":2,"y":-22},{"x":142,"y":-35},{"x":-22,"y":18},{"x":21,"y":15},{"x":2,"y":-41},{"x":46,"y":8},{"x":-36,"y":-9},{"x":294,"y":39},{"x":52,"y":-24},{"x":28,"y":13},{"x":-18,"y":-18},{"x":74,"y":36}],"type":"coastline"},{"arc":[{"x":137844,"y":143625},{"x":-99,"y":273},{"x":10,"y":37},{"x":118,"y":96},{"x":10,"y":170}],"type":"area"},{"arc":[{"x":142931,"y":144397},{"x":-149,"y":-89},{"x":-82,"y":-1},{"x":-59,"y":-76},{"x":-116,"y":-7},{"x":-30,"y":61},{"x":-30,"y":-14}],"type":"admin"},{"arc":[{"x":142465,"y":144271},{"x":4,"y":-22},{"x":-69,"y":-14}],"type":"area"},{"arc":[{"x":142400,"y":144235},{"x":36,"y":-70}],"type":"area"},{"arc":[{"x":143396,"y":144325},{"x":-78,"y":66},{"x":-132,"y":-44},{"x":-23,"y":17},{"x":-75,"y":-48},{"x":-87,"y":35},{"x":-29,"y":-33},{"x":-41,"y":79}],"type":"admin"},{"arc":[{"x":141868,"y":144719},{"x":26,"y":1},{"x":74,"y":-142},{"x":-46,"y":-88},{"x":-77,"y":-65}],"type":"admin"},{"arc":[{"x":141845,"y":144425},{"x":0,"y":-52},{"x":93,"y":-12},{"x":16,"y":-144},{"x":31,"y":-16}],"type":"area"},{"arc":[{"x":141985,"y":144201},{"x":152,"y":49},{"x":138,"y":-24},{"x":125,"y":9}],"type":"area"},{"arc":[{"x":142465,"y":144271},{"x":29,"y":34},{"x":-9,"y":46},{"x":40,"y":3},{"x":10,"y":54},{"x":49,"y":23},{"x":-9,"y":39},{"x":88,"y":5},{"x":73,"y":70},{"x":-17,"y":16},{"x":-59,"y":-19},{"x":-9,"y":83}],"type":"admin"},{"arc":[{"x":141783,"y":143747},{"x":-94,"y":-80},{"x":-49,"y":0},{"x":-81,"y":42},{"x":-49,"y":61},{"x":5,"y":-53},{"x":-29,"y":26},{"x":-61,"y":-15},{"x":-5,"y":-91},{"x":-56,"y":2},{"x":-28,"y":-37}],"type":"area"},{"arc":[{"x":141336,"y":143602},{"x":29,"y":-26},{"x":-5,"y":-36},{"x":-29,"y":9},{"x":33,"y":-94},{"x":-63,"y":-41},{"x":8,"y":-106},{"x":-75,"y":-161},{"x":-25,"y":-170}],"type":"area"},{"arc":[{"x":141209,"y":142977},{"x":-5,"y":-108},{"x":-113,"y":-65},{"x":-27,"y":-94},{"x":92,"y":-145},{"x":72,"y":79},{"x":113,"y":-11},{"x":51,"y":43},{"x":17,"y":-164},{"x":92,"y":38},{"x":81,"y":-2},{"x":2,"y":-32},{"x":-61,"y":-31},{"x":-3,"y":-51},{"x":76,"y":-156},{"x":-3,"y":-55},{"x":-18,"y":-23},{"x":-57,"y":-2},{"x":-19,"y":-74}],"type":"area"},{"arc":[{"x":139425,"y":152029},{"x":-67,"y":80},{"x":-39,"y":0},{"x":-19,"y":67},{"x":-57,"y":27},{"x":-4,"y":85},{"x":-111,"y":61},{"x":21,"y":125},{"x":-30,"y":84},{"x":-37,"y":33},{"x":-86,"y":-2},{"x":21,"y":27},{"x":-22,"y":70},{"x":-101,"y":46},{"x":-54,"y":-23},{"x":-42,"y":14}],"type":"admin"},{"arc":[{"x":139522,"y":150049},{"x":19,"y":56},{"x":-45,"y":28},{"x":-132,"y":-58},{"x":-67,"y":35},{"x":23,"y":68},{"x":-36,"y":38},{"x":8,"y":87},{"x":100,"y":52},{"x":20,"y":130},{"x":72,"y":-7},{"x":11,"y":60},{"x":-56,"y":90},{"x":-196,"y":51},{"x":2,"y":30},{"x":-111,"y":-59},{"x":-22,"y":47},{"x":19,"y":50},{"x":104,"y":63},{"x":-17,"y":38},{"x":-67,"y":20},{"x":2,"y":66},{"x":112,"y":27},{"x":6,"y":52},{"x":-33,"y":-15},{"x":-3,"y":19},{"x":27,"y":16},{"x":41,"y":-22},{"x":34,"y":36},{"x":-4,"y":87},{"x":-20,"y":-11},{"x":-13,"y":26},{"x":9,"y":68},{"x":36,"y":18},{"x":30,"y":67},{"x":-9,"y":126},{"x":-46,"y":40},{"x":-44,"y":-25},{"x":-132,"y":77},{"x":-101,"y":12},{"x":-28,"y":51},{"x":-82,"y":47},{"x":-84,"y":5},{"x":-31,"y":42},{"x":32,"y":167},{"x":180,"y":48},{"x":92,"y":-17},{"x":82,"y":29},{"x":26,"y":58},{"x":68,"y":-31},{"x":52,"y":57},{"x":80,"y":5},{"x":-5,"y":36}],"type":"admin"},{"arc":[{"x":139254,"y":144724},{"x":-4,"y":-32},{"x":-45,"y":3},{"x":-61,"y":59},{"x":-149,"y":-78},{"x":-67,"y":66},{"x":-64,"y":-6},{"x":-58,"y":82},{"x":-52,"y":-64},{"x":37,"y":-79},{"x":-67,"y":-53},{"x":28,"y":-48},{"x":-65,"y":23},{"x":-148,"y":-20},{"x":-96,"y":13},{"x":-56,"y":-35},{"x":-6,"y":43},{"x":-75,"y":43}],"type":"area"},{"arc":[{"x":138306,"y":144641},{"x":-50,"y":-94},{"x":-29,"y":2}],"type":"admin"},{"arc":[{"x":138227,"y":144549},{"x":108,"y":-66},{"x":-6,"y":-22},{"x":34,"y":12},{"x":11,"y":-97},{"x":86,"y":-20},{"x":11,"y":-32},{"x":12,"y":17},{"x":88,"y":-12},{"x":-4,"y":-33},{"x":52,"y":-15},{"x":-31,"y":-31},{"x":18,"y":-13},{"x":50,"y":39},{"x":-35,"y":-58},{"x":42,"y":-25},{"x":54,"y":-105}],"type":"area"},{"arc":[{"x":138717,"y":144088},{"x":54,"y":8},{"x":48,"y":-192},{"x":320,"y":177},{"x":7,"y":208},{"x":41,"y":1},{"x":24,"y":-104},{"x":222,"y":71},{"x":30,"y":-22}],"type":"coastline"},{"arc":[{"x":139232,"y":145164},{"x":-94,"y":158},{"x":-45,"y":-18},{"x":-18,"y":25},{"x":29,"y":75},{"x":-150,"y":48}],"type":"area"},{"arc":[{"x":138630,"y":145238},{"x":-25,"y":-87},{"x":51,"y":-111},{"x":-93,"y":-93},{"x":22,"y":-30},{"x":29,"y":10},{"x":-105,"y":-49},{"x":-32,"y":-106},{"x":-171,"y":-131}],"type":"admin"},{"arc":[{"x":138117,"y":143595},{"x":-5,"y":38},{"x":-136,"y":-57},{"x":63,"y":-95},{"x":121,"y":79},{"x":-43,"y":35}],"type":"coastline"},{"arc":[{"x":138227,"y":144549},{"x":-87,"y":37}],"type":"admin"},{"arc":[{"x":138140,"y":144586},{"x":-89,"y":-101},{"x":-15,"y":34},{"x":-18,"y":-15},{"x":-8,"y":-44},{"x":63,"y":-75},{"x":-16,"y":-32},{"x":37,"y":-11},{"x":-50,"y":-52},{"x":21,"y":-40},{"x":-56,"y":-45},{"x":14,"y":-21},{"x":-12,"y":-17},{"x":-128,"y":34}],"type":"admin"},{"arc":[{"x":137844,"y":143625},{"x":279,"y":40},{"x":64,"y":-90},{"x":155,"y":113},{"x":-29,"y":52},{"x":46,"y":27},{"x":28,"y":-50},{"x":54,"y":30},{"x":93,"y":-118},{"x":-91,"y":128},{"x":156,"y":88},{"x":-10,"y":54},{"x":56,"y":32},{"x":27,"y":-111},{"x":78,"y":58},{"x":-26,"y":170},{"x":-34,"y":-11},{"x":-19,"y":24},{"x":46,"y":27}],"type":"coastline"},{"arc":[{"x":141076,"y":145950},{"x":-45,"y":-65},{"x":8,"y":-117}],"type":"area"},{"arc":[{"x":137439,"y":145203},{"x":237,"y":12},{"x":-18,"y":16},{"x":60,"y":19},{"x":45,"y":-26},{"x":-31,"y":-4},{"x":69,"y":3},{"x":196,"y":70},{"x":-24,"y":-34},{"x":23,"y":3},{"x":8,"y":32},{"x":-3,"y":-31},{"x":51,"y":-2}],"type":"coastline"},{"arc":[{"x":138052,"y":145261},{"x":3,"y":0}],"type":"admin"},{"arc":[{"x":141985,"y":144201},{"x":-104,"y":-65},{"x":37,"y":-103},{"x":10,"y":13},{"x":35,"y":-52},{"x":-2,"y":-103}],"type":"area"},{"arc":[{"x":139766,"y":145657},{"x":-25,"y":14},{"x":24,"y":49},{"x":-75,"y":-2},{"x":-14,"y":78},{"x":-61,"y":64},{"x":-145,"y":18}],"type":"admin"},{"arc":[{"x":140442,"y":146443},{"x":-88,"y":-111},{"x":-95,"y":48},{"x":-33,"y":-70},{"x":-29,"y":-2}],"type":"area"},{"arc":[{"x":140197,"y":146308},{"x":-69,"y":-58},{"x":15,"y":-119},{"x":-23,"y":-52},{"x":-51,"y":-14},{"x":12,"y":-77},{"x":-53,"y":-42},{"x":22,"y":-48},{"x":-64,"y":-53},{"x":68,"y":-87},{"x":-18,"y":8},{"x":-47,"y":-51},{"x":12,"y":-62}],"type":"admin"},{"arc":[{"x":140588,"y":145714},{"x":-18,"y":49},{"x":71,"y":43},{"x":33,"y":88},{"x":61,"y":38},{"x":15,"y":106},{"x":-71,"y":2},{"x":-31,"y":38},{"x":-48,"y":350}],"type":"area"},{"arc":[{"x":134133,"y":146616},{"x":0,"y":18},{"x":-36,"y":-5},{"x":0,"y":-22},{"x":36,"y":9}],"type":"coastline"},{"arc":[{"x":134218,"y":146736},{"x":-21,"y":19},{"x":-13,"y":-25},{"x":34,"y":6}],"type":"coastline"},{"arc":[{"x":134224,"y":146400},{"x":7,"y":20},{"x":-39,"y":4},{"x":21,"y":-44},{"x":27,"y":6},{"x":-16,"y":14}],"type":"coastline"},{"arc":[{"x":135011,"y":148053},{"x":-52,"y":-17},{"x":9,"y":-53},{"x":43,"y":70}],"type":"coastline"},{"arc":[{"x":134151,"y":148964},{"x":-283,"y":-879},{"x":-151,"y":-356},{"x":-21,"y":-127},{"x":-84,"y":-183},{"x":-54,"y":-28},{"x":76,"y":4},{"x":26,"y":-30},{"x":-12,"y":-19},{"x":-21,"y":41},{"x":-33,"y":2},{"x":-14,"y":-20},{"x":24,"y":-22},{"x":-18,"y":-56},{"x":-162,"y":-379},{"x":-36,"y":-265},{"x":48,"y":-218},{"x":-161,"y":-598},{"x":33,"y":-59},{"x":-32,"y":-155},{"x":26,"y":-26},{"x":112,"y":54},{"x":-58,"y":-19},{"x":-11,"y":25},{"x":31,"y":28},{"x":14,"y":-25},{"x":-11,"y":23},{"x":51,"y":39},{"x":234,"y":67},{"x":143,"y":86},{"x":326,"y":137},{"x":91,"y":45},{"x":110,"y":107},{"x":0,"y":121},{"x":-61,"y":74},{"x":10,"y":26},{"x":-104,"y":-14},{"x":-32,"y":-51},{"x":21,"y":63},{"x":-77,"y":158},{"x":-58,"y":-23},{"x":17,"y":-20},{"x":-85,"y":3},{"x":55,"y":31},{"x":-4,"y":128},{"x":-21,"y":-9},{"x":-11,"y":23},{"x":50,"y":54},{"x":15,"y":91},{"x":78,"y":77},{"x":62,"y":-34},{"x":13,"y":-81},{"x":44,"y":-29},{"x":17,"y":48},{"x":-27,"y":174},{"x":40,"y":100},{"x":-27,"y":-15},{"x":-3,"y":64},{"x":53,"y":128},{"x":136,"y":128},{"x":-16,"y":105},{"x":121,"y":99},{"x":14,"y":48},{"x":-51,"y":101},{"x":14,"y":37},{"x":77,"y":73},{"x":20,"y":-32},{"x":62,"y":36},{"x":-19,"y":30},{"x":47,"y":25},{"x":-36,"y":10},{"x":7,"y":47},{"x":23,"y":-50},{"x":107,"y":-62},{"x":89,"y":133},{"x":40,"y":0},{"x":-40,"y":0},{"x":-13,"y":69},{"x":-82,"y":41},{"x":10,"y":20},{"x":-40,"y":-5},{"x":-6,"y":32},{"x":13,"y":16},{"x":25,"y":-18},{"x":124,"y":66},{"x":91,"y":-53},{"x":-2,"y":-34},{"x":193,"y":272},{"x":-36,"y":167},{"x":-434,"y":-1},{"x":-1,"y":-107},{"x":-171,"y":-45},{"x":15,"y":78},{"x":30,"y":5},{"x":-48,"y":134}],"type":"coastline"},{"arc":[{"x":141209,"y":142977},{"x":-47,"y":-10},{"x":-2,"y":30},{"x":-21,"y":-7}],"type":"area"},{"arc":[{"x":140343,"y":143066},{"x":-65,"y":26},{"x":-73,"y":-8},{"x":-24,"y":-43},{"x":37,"y":-43},{"x":-53,"y":-5},{"x":-33,"y":76},{"x":-23,"y":-14}],"type":"admin"},{"arc":[{"x":140109,"y":143055},{"x":-29,"y":-81},{"x":17,"y":-37},{"x":34,"y":-33},{"x":117,"y":12},{"x":9,"y":-20},{"x":-43,"y":-37},{"x":50,"y":-46},{"x":-26,"y":-80},{"x":-56,"y":-7},{"x":68,"y":-54},{"x":-24,"y":-85},{"x":60,"y":-80},{"x":-29,"y":-68},{"x":-27,"y":14},{"x":-16,"y":-26},{"x":17,"y":-48},{"x":-92,"y":23},{"x":-33,"y":-50}],"type":"area"},{"arc":[{"x":140106,"y":142352},{"x":83,"y":-70},{"x":53,"y":-193},{"x":75,"y":-38}],"type":"admin"},{"arc":[{"x":141797,"y":143813},{"x":-35,"y":11},{"x":-37,"y":-52},{"x":-83,"y":30},{"x":-28,"y":16},{"x":4,"y":54},{"x":34,"y":13},{"x":-123,"y":80}],"type":"area"},{"arc":[{"x":140896,"y":143863},{"x":8,"y":-33},{"x":89,"y":-5},{"x":3,"y":17},{"x":65,"y":-20},{"x":41,"y":-66},{"x":33,"y":17},{"x":68,"y":-12},{"x":-9,"y":-157},{"x":142,"y":-2}],"type":"area"},{"arc":[{"x":141845,"y":144425},{"x":-37,"y":-9},{"x":-51,"y":34},{"x":-53,"y":-30},{"x":-51,"y":12}],"type":"admin"},{"arc":[{"x":140109,"y":143055},{"x":-67,"y":63},{"x":-24,"y":95},{"x":-172,"y":114}],"type":"admin"},{"arc":[{"x":139846,"y":143327},{"x":3,"y":-36},{"x":-86,"y":-125},{"x":78,"y":-25},{"x":8,"y":-75},{"x":-39,"y":17},{"x":-27,"y":-16},{"x":-24,"y":-131},{"x":-84,"y":65},{"x":-42,"y":134},{"x":-156,"y":139},{"x":-103,"y":162},{"x":-111,"y":0}],"type":"admin"},{"arc":[{"x":139263,"y":143436},{"x":-25,"y":-12},{"x":25,"y":0},{"x":-22,"y":-24},{"x":22,"y":0},{"x":-22,"y":-24},{"x":22,"y":0},{"x":0,"y":-41},{"x":-23,"y":19},{"x":0,"y":-19},{"x":-17,"y":17},{"x":-27,"y":-17},{"x":0,"y":18},{"x":-19,"y":-18},{"x":0,"y":38},{"x":-43,"y":1},{"x":-1,"y":-39},{"x":-16,"y":18},{"x":-18,"y":-18},{"x":5,"y":40},{"x":-128,"y":-6},{"x":87,"y":-146},{"x":-27,"y":-55},{"x":-145,"y":165},{"x":-96,"y":-30},{"x":-26,"y":32},{"x":90,"y":-115},{"x":-18,"y":-44},{"x":51,"y":-43},{"x":-9,"y":-70}],"type":"coastline"},{"arc":[{"x":138883,"y":143063},{"x":37,"y":21},{"x":169,"y":-122},{"x":193,"y":-77},{"x":340,"y":-31},{"x":221,"y":-198},{"x":99,"y":-178}],"type":"admin"},{"arc":[{"x":139942,"y":142478},{"x":164,"y":-126}],"type":"admin"},{"arc":[{"x":139487,"y":145900},{"x":82,"y":50},{"x":198,"y":63},{"x":67,"y":104},{"x":-13,"y":54},{"x":57,"y":164},{"x":51,"y":8},{"x":9,"y":-27},{"x":235,"y":42},{"x":24,"y":-50}],"type":"admin"},{"arc":[{"x":140814,"y":143792},{"x":31,"y":-42},{"x":67,"y":3},{"x":43,"y":-25},{"x":-1,"y":-18},{"x":-82,"y":-8},{"x":20,"y":-90},{"x":89,"y":-2},{"x":1,"y":-99},{"x":45,"y":-8},{"x":-10,"y":-42},{"x":-277,"y":-14}],"type":"admin"},{"arc":[{"x":140485,"y":143376},{"x":23,"y":-147},{"x":95,"y":-22}],"type":"admin"},{"arc":[{"x":142931,"y":144397},{"x":97,"y":104},{"x":-12,"y":22},{"x":46,"y":75},{"x":-22,"y":170},{"x":69,"y":38},{"x":75,"y":7}],"type":"area"},{"arc":[{"x":139838,"y":143345},{"x":8,"y":-18}],"type":"area"},{"arc":[{"x":139236,"y":143686},{"x":-242,"y":84},{"x":-53,"y":-218},{"x":8,"y":-73},{"x":276,"y":-9},{"x":0,"y":-22},{"x":11,"y":238}],"type":"coastline"},{"arc":[{"x":139625,"y":143624},{"x":-30,"y":-36},{"x":-69,"y":23},{"x":-2,"y":-40},{"x":-12,"y":16},{"x":-1,"y":-18},{"x":-83,"y":-9},{"x":-15,"y":50},{"x":62,"y":0},{"x":-55,"y":104},{"x":-173,"y":-36},{"x":16,"y":-242}],"type":"coastline"},{"arc":[{"x":138140,"y":144586},{"x":-98,"y":91},{"x":-64,"y":130},{"x":-103,"y":51}],"type":"area"},{"arc":[{"x":138052,"y":145261},{"x":14,"y":-23},{"x":-168,"y":-31},{"x":10,"y":-35},{"x":-32,"y":30},{"x":-123,"y":-24}],"type":"coastline"},{"arc":[{"x":134305,"y":145524},{"x":-38,"y":-9},{"x":23,"y":-13},{"x":15,"y":22}],"type":"coastline"},{"arc":[{"x":134576,"y":145429},{"x":-24,"y":5},{"x":3,"y":-23},{"x":21,"y":18}],"type":"coastline"},{"arc":[{"x":134572,"y":145494},{"x":-18,"y":-36},{"x":41,"y":-5},{"x":2,"y":23},{"x":-25,"y":-5},{"x":0,"y":23}],"type":"coastline"},{"arc":[{"x":134633,"y":145521},{"x":-22,"y":24},{"x":-82,"y":-6},{"x":-34,"y":-49},{"x":-100,"y":7},{"x":-3,"y":-29},{"x":48,"y":-12},{"x":1,"y":-41},{"x":67,"y":13},{"x":-26,"y":13},{"x":56,"y":-13},{"x":10,"y":78},{"x":40,"y":-10},{"x":7,"y":-16},{"x":2,"y":28},{"x":36,"y":13}],"type":"coastline"},{"arc":[{"x":134931,"y":145513},{"x":-32,"y":64},{"x":-50,"y":-31},{"x":-16,"y":-151},{"x":48,"y":-2},{"x":35,"y":45},{"x":-34,"y":-27},{"x":-1,"y":41},{"x":32,"y":1},{"x":9,"y":51},{"x":3,"y":-60},{"x":6,"y":69}],"type":"coastline"},{"arc":[{"x":135416,"y":144836},{"x":-109,"y":82},{"x":-28,"y":106},{"x":-58,"y":65},{"x":-91,"y":36},{"x":-31,"y":-29},{"x":7,"y":-35},{"x":-44,"y":7},{"x":12,"y":-26},{"x":-33,"y":27},{"x":25,"y":39},{"x":-38,"y":20},{"x":8,"y":26},{"x":-79,"y":-21},{"x":18,"y":-23},{"x":-36,"y":-10},{"x":15,"y":27},{"x":-79,"y":31},{"x":31,"y":10},{"x":-13,"y":21},{"x":-55,"y":16},{"x":23,"y":-5},{"x":-2,"y":-13},{"x":-26,"y":-3},{"x":19,"y":-16},{"x":-44,"y":-3},{"x":0,"y":-33},{"x":-37,"y":28},{"x":16,"y":15},{"x":-38,"y":-26},{"x":81,"y":-81},{"x":-20,"y":-168},{"x":32,"y":-29},{"x":-22,"y":-21},{"x":43,"y":-44},{"x":14,"y":24},{"x":8,"y":-49},{"x":34,"y":-12},{"x":-48,"y":-26},{"x":-5,"y":37},{"x":-11,"y":-71},{"x":30,"y":-2},{"x":34,"y":-113},{"x":23,"y":-1},{"x":74,"y":-120},{"x":61,"y":-190},{"x":78,"y":-74},{"x":44,"y":-105},{"x":45,"y":-20},{"x":-9,"y":-21},{"x":14,"y":30},{"x":-7,"y":-27},{"x":47,"y":-16},{"x":13,"y":-72},{"x":17,"y":18},{"x":37,"y":-19},{"x":74,"y":-74}],"type":"coastline"},{"arc":[{"x":135430,"y":143903},{"x":-27,"y":60},{"x":72,"y":70},{"x":45,"y":7},{"x":6,"y":109},{"x":61,"y":16},{"x":2,"y":44},{"x":66,"y":64},{"x":-34,"y":105},{"x":-113,"y":12},{"x":-22,"y":30},{"x":-120,"y":33},{"x":-36,"y":45},{"x":-48,"y":11},{"x":-44,"y":88},{"x":-87,"y":8},{"x":8,"y":36},{"x":131,"y":65},{"x":51,"y":59},{"x":27,"y":-8},{"x":48,"y":79}],"type":"area"},{"arc":[{"x":136248,"y":144621},{"x":-28,"y":-13},{"x":-89,"y":27},{"x":-74,"y":-38},{"x":-61,"y":25},{"x":-130,"y":-56},{"x":-61,"y":-9},{"x":-3,"y":19},{"x":-2,"y":-19},{"x":-8,"y":25},{"x":-17,"y":-18},{"x":10,"y":23},{"x":-12,"y":-26},{"x":-66,"y":-9},{"x":-60,"y":51},{"x":-15,"y":46},{"x":31,"y":-13},{"x":-37,"y":44},{"x":-88,"y":4},{"x":-122,"y":152}],"type":"coastline"},{"arc":[{"x":135430,"y":143903},{"x":116,"y":-80},{"x":77,"y":-19},{"x":1,"y":-21},{"x":28,"y":0},{"x":-19,"y":1},{"x":16,"y":32},{"x":5,"y":-23},{"x":16,"y":31},{"x":330,"y":123},{"x":111,"y":28},{"x":17,"y":-17},{"x":131,"y":48}],"type":"coastline"},{"arc":[{"x":136271,"y":144265},{"x":-4,"y":257},{"x":-46,"y":27},{"x":27,"y":72}],"type":"area"},{"arc":[{"x":136875,"y":144822},{"x":27,"y":-135},{"x":-80,"y":4},{"x":-31,"y":88},{"x":-97,"y":-18},{"x":-20,"y":-52},{"x":68,"y":-3},{"x":-10,"y":-34},{"x":-68,"y":11},{"x":-1,"y":34},{"x":-88,"y":-13},{"x":-41,"y":69},{"x":-73,"y":-7},{"x":-8,"y":-120},{"x":32,"y":-8},{"x":-53,"y":-9},{"x":-2,"y":49},{"x":-81,"y":-8},{"x":-4,"y":124},{"x":4,"y":-122},{"x":-91,"y":-9},{"x":-10,"y":-42}],"type":"coastline"},{"arc":[{"x":140376,"y":152210},{"x":11,"y":-28},{"x":64,"y":-3},{"x":13,"y":-37},{"x":-52,"y":-117},{"x":4,"y":-67},{"x":-58,"y":-98},{"x":40,"y":-66},{"x":-17,"y":-50},{"x":-259,"y":0},{"x":-101,"y":-42},{"x":-93,"y":-7},{"x":-78,"y":42},{"x":2,"y":119},{"x":-112,"y":45},{"x":-61,"y":69},{"x":-17,"y":77},{"x":-54,"y":-28},{"x":-4,"y":-32},{"x":-69,"y":-11},{"x":-61,"y":62},{"x":-49,"y":-9}],"type":"area"},{"arc":[{"x":141364,"y":152191},{"x":-29,"y":36},{"x":-57,"y":8},{"x":-156,"y":-28},{"x":-203,"y":115},{"x":-54,"y":-27},{"x":-43,"y":50},{"x":-111,"y":11},{"x":-12,"y":32},{"x":-85,"y":46},{"x":-56,"y":-10},{"x":-28,"y":21},{"x":-147,"y":-22},{"x":19,"y":-94},{"x":-26,"y":-119}],"type":"area"},{"arc":[{"x":140376,"y":152210},{"x":-134,"y":43},{"x":52,"y":305},{"x":-113,"y":55},{"x":22,"y":88},{"x":-30,"y":39},{"x":27,"y":53},{"x":73,"y":43},{"x":-3,"y":52},{"x":-35,"y":9},{"x":12,"y":25},{"x":-71,"y":105},{"x":-9,"y":116},{"x":-101,"y":23},{"x":-46,"y":54},{"x":29,"y":141},{"x":-61,"y":-34},{"x":-116,"y":154}],"type":"area"},{"arc":[{"x":137998,"y":141907},{"x":28,"y":-15},{"x":153,"y":46},{"x":9,"y":84},{"x":-10,"y":-84},{"x":-152,"y":-45},{"x":-28,"y":14}],"type":"coastline"},{"arc":[{"x":138585,"y":142054},{"x":-20,"y":-25},{"x":19,"y":-40},{"x":-55,"y":-57},{"x":-82,"y":169},{"x":-178,"y":-124},{"x":56,"y":-160},{"x":198,"y":23},{"x":118,"y":193},{"x":-4,"y":44},{"x":-52,"y":-23}],"type":"coastline"},{"arc":[{"x":139426,"y":140919},{"x":-30,"y":-4},{"x":-9,"y":52},{"x":-64,"y":10},{"x":-29,"y":33},{"x":-67,"y":291}],"type":"admin"},{"arc":[{"x":139227,"y":141301},{"x":-32,"y":84},{"x":34,"y":21},{"x":-35,"y":18},{"x":18,"y":62},{"x":-42,"y":144},{"x":20,"y":43},{"x":-34,"y":58}],"type":"area"},{"arc":[{"x":139156,"y":141731},{"x":-77,"y":-15},{"x":-94,"y":46},{"x":-57,"y":133}],"type":"admin"},{"arc":[{"x":138928,"y":141895},{"x":-40,"y":16},{"x":-47,"y":-50},{"x":-82,"y":75},{"x":73,"y":87},{"x":-64,"y":41},{"x":-25,"y":-25},{"x":-53,"y":25}],"type":"admin"},{"arc":[{"x":138690,"y":142064},{"x":-34,"y":-66},{"x":27,"y":-23},{"x":-20,"y":7},{"x":-64,"y":-97},{"x":-97,"y":-65},{"x":-188,"y":-46},{"x":-31,"y":51},{"x":-149,"y":-63},{"x":-40,"y":14},{"x":5,"y":-62},{"x":29,"y":-5},{"x":-27,"y":-19},{"x":-26,"y":16},{"x":-2,"y":-20},{"x":-54,"y":5},{"x":41,"y":39},{"x":-7,"y":40},{"x":-24,"y":-7},{"x":-8,"y":-41},{"x":-8,"y":25},{"x":-22,"y":-7},{"x":12,"y":-45},{"x":-37,"y":29},{"x":-1,"y":-75},{"x":-31,"y":41},{"x":-61,"y":13},{"x":21,"y":18},{"x":-58,"y":3},{"x":103,"y":76},{"x":-17,"y":154},{"x":-41,"y":-6},{"x":-6,"y":49},{"x":-61,"y":-7},{"x":5,"y":-141},{"x":-40,"y":-79},{"x":-42,"y":17},{"x":-57,"y":-25},{"x":-12,"y":38},{"x":-117,"y":-43},{"x":-153,"y":28},{"x":-44,"y":-49}],"type":"coastline"},{"arc":[{"x":137354,"y":141736},{"x":36,"y":-82},{"x":39,"y":-326},{"x":20,"y":21},{"x":-21,"y":-73},{"x":51,"y":-40},{"x":-15,"y":-76},{"x":55,"y":-24},{"x":-35,"y":-55},{"x":56,"y":-10},{"x":-26,"y":-88},{"x":12,"y":-90},{"x":91,"y":-114},{"x":121,"y":-267},{"x":107,"y":-132},{"x":53,"y":22},{"x":69,"y":-71},{"x":39,"y":-96},{"x":-21,"y":-6},{"x":65,"y":-62},{"x":-24,"y":-25},{"x":62,"y":-131},{"x":67,"y":7},{"x":15,"y":-45},{"x":13,"y":19},{"x":57,"y":-34},{"x":83,"y":-81},{"x":91,"y":-176},{"x":39,"y":-20},{"x":0,"y":-156},{"x":-37,"y":-36},{"x":1,"y":-101}],"type":"area"},{"arc":[{"x":138417,"y":139388},{"x":97,"y":12},{"x":40,"y":-30},{"x":53,"y":80}],"type":"admin"},{"arc":[{"x":138607,"y":139450},{"x":22,"y":105},{"x":-32,"y":77},{"x":13,"y":95},{"x":-117,"y":152},{"x":65,"y":120},{"x":-27,"y":56},{"x":49,"y":122},{"x":-12,"y":78},{"x":29,"y":103},{"x":-28,"y":22},{"x":1,"y":50},{"x":49,"y":65},{"x":-34,"y":96},{"x":28,"y":133},{"x":19,"y":15},{"x":95,"y":-55},{"x":49,"y":-64},{"x":67,"y":31},{"x":-48,"y":136},{"x":30,"y":38},{"x":106,"y":5},{"x":141,"y":45},{"x":21,"y":-256},{"x":58,"y":30},{"x":24,"y":-40},{"x":40,"y":47},{"x":162,"y":41},{"x":80,"y":-63},{"x":-10,"y":37},{"x":57,"y":-5}],"type":"admin"},{"arc":[{"x":139504,"y":140666},{"x":-78,"y":253}],"type":"area"},{"arc":[{"x":132074,"y":141849},{"x":-3,"y":-27},{"x":24,"y":21},{"x":-21,"y":6}],"type":"admin"},{"arc":[{"x":132487,"y":141792},{"x":10,"y":6}],"type":"admin"},{"arc":[{"x":132497,"y":141798},{"x":8,"y":16},{"x":-38,"y":-9},{"x":20,"y":-13}],"type":"admin"},{"arc":[{"x":132538,"y":141826},{"x":9,"y":-11}],"type":"coastline"},{"arc":[{"x":132547,"y":141815},{"x":-9,"y":11}],"type":"coastline"},{"arc":[{"x":132550,"y":141816},{"x":-27,"y":-33}],"type":"admin"},{"arc":[{"x":132523,"y":141783},{"x":50,"y":8},{"x":17,"y":39},{"x":-40,"y":-14}],"type":"admin"},{"arc":[{"x":132643,"y":142926},{"x":-15,"y":-48},{"x":28,"y":67},{"x":-13,"y":-19}],"type":"coastline"},{"arc":[{"x":132742,"y":142737},{"x":-10,"y":-22},{"x":24,"y":6},{"x":-14,"y":16}],"type":"coastline"},{"arc":[{"x":132791,"y":142676},{"x":-64,"y":25},{"x":24,"y":-46},{"x":21,"y":17},{"x":19,"y":-7},{"x":0,"y":11}],"type":"coastline"},{"arc":[{"x":132098,"y":143532},{"x":-67,"y":-130},{"x":-42,"y":16},{"x":-35,"y":-23},{"x":-10,"y":36},{"x":-35,"y":2},{"x":-81,"y":-52},{"x":-61,"y":-6},{"x":7,"y":-76},{"x":-66,"y":-90},{"x":-27,"y":11},{"x":-80,"y":-44},{"x":-253,"y":29},{"x":-33,"y":32}],"type":"area"},{"arc":[{"x":131315,"y":143237},{"x":-82,"y":-70},{"x":16,"y":-80},{"x":-82,"y":-142},{"x":-90,"y":-14},{"x":-47,"y":-40},{"x":-26,"y":46},{"x":-160,"y":-72},{"x":-18,"y":-82}],"type":"area"},{"arc":[{"x":130826,"y":142783},{"x":40,"y":-191},{"x":55,"y":-68},{"x":-45,"y":-50},{"x":-43,"y":-198},{"x":68,"y":3},{"x":65,"y":-58},{"x":-16,"y":-52},{"x":26,"y":-42},{"x":-58,"y":-83},{"x":82,"y":-298}],"type":"admin"},{"arc":[{"x":131000,"y":141746},{"x":37,"y":16},{"x":173,"y":-27},{"x":31,"y":29},{"x":72,"y":-17},{"x":103,"y":-111},{"x":97,"y":109},{"x":94,"y":14},{"x":51,"y":85},{"x":79,"y":-21}],"type":"admin"},{"arc":[{"x":131737,"y":141823},{"x":48,"y":1},{"x":193,"y":206},{"x":58,"y":-24},{"x":-34,"y":-74},{"x":47,"y":-77},{"x":67,"y":37},{"x":34,"y":-18},{"x":-12,"y":-38},{"x":-39,"y":5},{"x":-12,"y":-80},{"x":133,"y":34},{"x":54,"y":93},{"x":22,"y":-18},{"x":40,"y":29},{"x":-17,"y":-47},{"x":-62,"y":-41},{"x":10,"y":-33},{"x":26,"y":-2},{"x":-10,"y":-74},{"x":107,"y":46},{"x":25,"y":66},{"x":23,"y":-82},{"x":60,"y":-22},{"x":-17,"y":28},{"x":23,"y":-11},{"x":9,"y":20},{"x":-40,"y":46},{"x":-19,"y":-22},{"x":-16,"y":40},{"x":32,"y":50},{"x":15,"y":-30},{"x":9,"y":26},{"x":30,"y":-14}],"type":"admin"},{"arc":[{"x":132524,"y":141843},{"x":61,"y":19},{"x":2,"y":34},{"x":-39,"y":4}],"type":"admin"},{"arc":[{"x":132548,"y":141900},{"x":5,"y":-34},{"x":-42,"y":1},{"x":23,"y":27},{"x":-29,"y":16},{"x":35,"y":12}],"type":"admin"},{"arc":[{"x":132540,"y":141922},{"x":105,"y":2},{"x":99,"y":-156},{"x":118,"y":18},{"x":76,"y":119},{"x":65,"y":-29},{"x":54,"y":39},{"x":28,"y":-25},{"x":39,"y":34}],"type":"admin"},{"arc":[{"x":133124,"y":141924},{"x":-5,"y":21},{"x":-26,"y":-16},{"x":19,"y":22},{"x":-20,"y":-22},{"x":-66,"y":56},{"x":-83,"y":196},{"x":17,"y":28},{"x":-31,"y":0},{"x":30,"y":4},{"x":-35,"y":5},{"x":-44,"y":55},{"x":-18,"y":247},{"x":-14,"y":-22},{"x":-22,"y":67},{"x":-20,"y":7},{"x":-27,"y":57},{"x":-19,"y":8},{"x":-51,"y":70},{"x":2,"y":25},{"x":-102,"y":93},{"x":17,"y":48},{"x":-17,"y":-48},{"x":-43,"y":9},{"x":31,"y":52},{"x":-96,"y":69},{"x":-90,"y":134},{"x":-10,"y":157},{"x":-34,"y":72},{"x":20,"y":152},{"x":-55,"y":2},{"x":-25,"y":26},{"x":-32,"y":-16},{"x":-35,"y":57},{"x":-59,"y":-38},{"x":-17,"y":48},{"x":-66,"y":-17}],"type":"coastline"},{"arc":[{"x":139942,"y":142478},{"x":-519,"y":119},{"x":-320,"y":179},{"x":68,"y":92},{"x":-62,"y":35},{"x":-41,"y":-56}],"type":"admin"},{"arc":[{"x":139068,"y":142847},{"x":-45,"y":-104},{"x":-87,"y":-100},{"x":-18,"y":-199},{"x":-40,"y":-108}],"type":"coastline"},{"arc":[{"x":138878,"y":142336},{"x":140,"y":-93},{"x":87,"y":-104}],"type":"admin"},{"arc":[{"x":139105,"y":142139},{"x":98,"y":-65},{"x":-22,"y":-23},{"x":29,"y":-25},{"x":-8,"y":-99},{"x":-74,"y":-4},{"x":25,"y":-18},{"x":-21,"y":-87},{"x":24,"y":-87}],"type":"admin"},{"arc":[{"x":139227,"y":141301},{"x":145,"y":28},{"x":15,"y":66},{"x":145,"y":10},{"x":42,"y":-3},{"x":100,"y":-79},{"x":-3,"y":111},{"x":109,"y":31},{"x":25,"y":45},{"x":84,"y":-160},{"x":76,"y":-33},{"x":64,"y":5},{"x":46,"y":-81}],"type":"admin"},{"arc":[{"x":140075,"y":141241},{"x":36,"y":1},{"x":20,"y":-33},{"x":25,"y":9},{"x":71,"y":-86},{"x":83,"y":3},{"x":96,"y":-92},{"x":63,"y":-20},{"x":70,"y":4},{"x":86,"y":40},{"x":91,"y":-28},{"x":64,"y":26},{"x":121,"y":175}],"type":"area"},{"arc":[{"x":137354,"y":141736},{"x":-70,"y":-54},{"x":-142,"y":-44},{"x":23,"y":41},{"x":-363,"y":-213},{"x":-24,"y":11},{"x":-11,"y":-65},{"x":10,"y":78},{"x":-274,"y":-231},{"x":-35,"y":-14},{"x":-8,"y":24},{"x":18,"y":-40},{"x":-23,"y":-30},{"x":-3,"y":72},{"x":-53,"y":-76},{"x":-261,"y":-202}],"type":"coastline"},{"arc":[{"x":136110,"y":140140},{"x":98,"y":50},{"x":49,"y":-46},{"x":116,"y":37},{"x":124,"y":-66},{"x":30,"y":32},{"x":-36,"y":13},{"x":39,"y":-7},{"x":12,"y":-76},{"x":313,"y":108},{"x":46,"y":41},{"x":70,"y":-20},{"x":4,"y":-43},{"x":42,"y":-9},{"x":47,"y":55},{"x":105,"y":11},{"x":23,"y":-25},{"x":5,"y":26},{"x":9,"y":-35},{"x":37,"y":9},{"x":4,"y":-17},{"x":115,"y":28},{"x":24,"y":-85},{"x":25,"y":10},{"x":9,"y":-28},{"x":63,"y":13},{"x":-74,"y":-93},{"x":-9,"y":-217},{"x":30,"y":-62},{"x":127,"y":-89},{"x":-7,"y":-59},{"x":54,"y":-43},{"x":135,"y":3},{"x":40,"y":-68},{"x":145,"y":-62},{"x":79,"y":-244}],"type":"area"},{"arc":[{"x":138003,"y":139182},{"x":218,"y":81},{"x":144,"y":131},{"x":52,"y":-6}],"type":"admin"},{"arc":[{"x":132896,"y":136767},{"x":57,"y":-43},{"x":30,"y":7},{"x":6,"y":-25},{"x":52,"y":-3},{"x":-9,"y":-47},{"x":-49,"y":-6},{"x":73,"y":-128},{"x":-73,"y":-42},{"x":-90,"y":-105},{"x":-28,"y":-98},{"x":134,"y":-38},{"x":-2,"y":-38}],"type":"admin"},{"arc":[{"x":132997,"y":136201},{"x":36,"y":-241},{"x":41,"y":-16},{"x":55,"y":-86},{"x":33,"y":-138},{"x":62,"y":7},{"x":43,"y":-25},{"x":33,"y":-92},{"x":65,"y":-34},{"x":20,"y":43},{"x":77,"y":15},{"x":95,"y":-57},{"x":207,"y":162},{"x":39,"y":2}],"type":"admin"},{"arc":[{"x":133803,"y":135741},{"x":29,"y":66},{"x":79,"y":6},{"x":36,"y":35},{"x":116,"y":-16},{"x":139,"y":-66},{"x":10,"y":-149},{"x":84,"y":-97},{"x":49,"y":-10},{"x":-138,"y":251},{"x":73,"y":62},{"x":14,"y":76},{"x":48,"y":1},{"x":52,"y":53},{"x":41,"y":-8},{"x":82,"y":37}],"type":"admin"},{"arc":[{"x":134517,"y":135982},{"x":-31,"y":155},{"x":-64,"y":43},{"x":23,"y":29},{"x":-14,"y":44},{"x":45,"y":29},{"x":133,"y":13},{"x":58,"y":46},{"x":-63,"y":57},{"x":-17,"y":59},{"x":-100,"y":-110},{"x":-79,"y":31},{"x":42,"y":43},{"x":-24,"y":5},{"x":20,"y":146},{"x":-80,"y":-8},{"x":-43,"y":74},{"x":-94,"y":8},{"x":4,"y":35},{"x":-109,"y":-12},{"x":-235,"y":281},{"x":-135,"y":-36},{"x":-65,"y":60},{"x":-38,"y":-27},{"x":-51,"y":9},{"x":-19,"y":28},{"x":-90,"y":-21},{"x":-31,"y":55},{"x":-170,"y":10},{"x":-67,"y":77},{"x":-28,"y":-24},{"x":-67,"y":36}],"type":"area"},{"arc":[{"x":126733,"y":137783},{"x":-38,"y":36},{"x":23,"y":-78},{"x":15,"y":42}],"type":"coastline"},{"arc":[{"x":126884,"y":137711},{"x":-40,"y":39},{"x":-5,"y":-25},{"x":45,"y":-14}],"type":"coastline"},{"arc":[{"x":127208,"y":138222},{"x":-18,"y":21},{"x":-27,"y":-45},{"x":-114,"y":-33},{"x":29,"y":-58},{"x":83,"y":32},{"x":24,"y":-42},{"x":-44,"y":-39},{"x":10,"y":-67},{"x":-62,"y":15},{"x":-19,"y":-25},{"x":-26,"y":7},{"x":-54,"y":-131},{"x":34,"y":59},{"x":38,"y":-9},{"x":0,"y":-36},{"x":39,"y":20},{"x":40,"y":-51},{"x":51,"y":-7},{"x":32,"y":20},{"x":-11,"y":58},{"x":33,"y":14},{"x":12,"y":-72},{"x":-58,"y":-82},{"x":-116,"y":10},{"x":-11,"y":-56}],"type":"coastline"},{"arc":[{"x":127073,"y":137725},{"x":25,"y":33},{"x":65,"y":-30},{"x":99,"y":38},{"x":80,"y":174},{"x":37,"y":10},{"x":11,"y":32},{"x":-112,"y":200},{"x":-70,"y":40}],"type":"admin"},{"arc":[{"x":127056,"y":137540},{"x":-12,"y":-84},{"x":-60,"y":-28},{"x":-44,"y":-181},{"x":-61,"y":-20},{"x":43,"y":-8},{"x":6,"y":18},{"x":-1,"y":-20},{"x":8,"y":17},{"x":2,"y":-51},{"x":-69,"y":-8},{"x":14,"y":21},{"x":-55,"y":21},{"x":12,"y":25},{"x":-83,"y":35},{"x":3,"y":143},{"x":30,"y":28},{"x":-24,"y":125},{"x":27,"y":21},{"x":-30,"y":2},{"x":23,"y":19},{"x":16,"y":-22},{"x":3,"y":25},{"x":-46,"y":3},{"x":-18,"y":87},{"x":-29,"y":-25},{"x":0,"y":-74},{"x":-88,"y":21},{"x":-35,"y":-19},{"x":-64,"y":22},{"x":-79,"y":-12},{"x":-118,"y":286},{"x":-85,"y":100},{"x":-41,"y":11},{"x":-14,"y":-84},{"x":-95,"y":-115},{"x":25,"y":-45},{"x":-27,"y":-14},{"x":86,"y":-75},{"x":-30,"y":-87},{"x":-21,"y":91},{"x":-51,"y":42},{"x":-35,"y":-15},{"x":-16,"y":35},{"x":-15,"y":68},{"x":41,"y":51},{"x":-30,"y":47},{"x":-59,"y":-36},{"x":17,"y":-26},{"x":-69,"y":-14},{"x":-19,"y":24},{"x":-15,"y":-22},{"x":57,"y":-91},{"x":-50,"y":42},{"x":-69,"y":-8},{"x":-7,"y":133},{"x":-40,"y":-1},{"x":-30,"y":-36},{"x":-124,"y":27},{"x":-10,"y":-34},{"x":-26,"y":1},{"x":19,"y":-40},{"x":-52,"y":-22},{"x":15,"y":-72},{"x":-51,"y":-26},{"x":106,"y":-46},{"x":2,"y":-43},{"x":-32,"y":-8},{"x":11,"y":-26},{"x":-31,"y":-24},{"x":74,"y":-40},{"x":90,"y":9},{"x":20,"y":43},{"x":-41,"y":63},{"x":6,"y":63},{"x":28,"y":-34},{"x":31,"y":23},{"x":46,"y":-256},{"x":93,"y":-58},{"x":16,"y":-50},{"x":31,"y":20},{"x":15,"y":-47},{"x":-23,"y":-34},{"x":-201,"y":52},{"x":-21,"y":-52},{"x":-130,"y":-78},{"x":22,"y":-82},{"x":-26,"y":-34},{"x":-87,"y":72},{"x":-13,"y":42},{"x":139,"y":154},{"x":5,"y":41},{"x":-38,"y":3},{"x":-78,"y":-55},{"x":28,"y":27},{"x":-10,"y":59},{"x":-35,"y":22},{"x":-23,"y":-30},{"x":-56,"y":10},{"x":-37,"y":48},{"x":-54,"y":-21},{"x":-38,"y":44}],"type":"coastline"},{"arc":[{"x":125295,"y":137493},{"x":6,"y":-71},{"x":56,"y":-66},{"x":27,"y":1},{"x":17,"y":-59},{"x":-48,"y":-66},{"x":42,"y":-90},{"x":-14,"y":-68},{"x":155,"y":-151},{"x":-46,"y":-74},{"x":-74,"y":-18},{"x":8,"y":-174},{"x":73,"y":-100},{"x":133,"y":-56},{"x":116,"y":3},{"x":31,"y":-28},{"x":123,"y":-20},{"x":55,"y":54},{"x":106,"y":0},{"x":67,"y":146},{"x":101,"y":0},{"x":49,"y":-30},{"x":22,"y":-86},{"x":-14,"y":-99},{"x":25,"y":-63},{"x":-55,"y":-60},{"x":-8,"y":-63},{"x":36,"y":-115}],"type":"area"},{"arc":[{"x":126284,"y":136140},{"x":15,"y":35},{"x":155,"y":-32},{"x":70,"y":-35},{"x":47,"y":-61},{"x":117,"y":53},{"x":105,"y":-39},{"x":160,"y":35},{"x":54,"y":-36},{"x":49,"y":46},{"x":-36,"y":58},{"x":-20,"y":158},{"x":175,"y":-170},{"x":87,"y":59},{"x":45,"y":-41},{"x":38,"y":18},{"x":57,"y":-12}],"type":"admin"},{"arc":[{"x":127402,"y":136176},{"x":49,"y":135},{"x":-17,"y":112},{"x":45,"y":178},{"x":-110,"y":102},{"x":-38,"y":93},{"x":-108,"y":37},{"x":-98,"y":-3},{"x":-23,"y":44},{"x":59,"y":121},{"x":-64,"y":62},{"x":32,"y":104},{"x":-26,"y":70},{"x":34,"y":94},{"x":-12,"y":106},{"x":-69,"y":109}],"type":"admin"},{"arc":[{"x":136168,"y":138324},{"x":76,"y":-192},{"x":-32,"y":-158},{"x":25,"y":-59},{"x":40,"y":-8},{"x":6,"y":-47},{"x":33,"y":-3},{"x":41,"y":109},{"x":166,"y":8},{"x":76,"y":118},{"x":186,"y":-57},{"x":48,"y":-69},{"x":137,"y":63}],"type":"area"},{"arc":[{"x":136970,"y":138029},{"x":1,"y":95},{"x":67,"y":65},{"x":-6,"y":60},{"x":69,"y":82},{"x":80,"y":3},{"x":33,"y":60},{"x":-11,"y":77},{"x":86,"y":133},{"x":-10,"y":70},{"x":119,"y":145},{"x":10,"y":61},{"x":84,"y":-14},{"x":42,"y":39},{"x":89,"y":-7},{"x":33,"y":77},{"x":39,"y":-37},{"x":87,"y":1},{"x":58,"y":37},{"x":40,"y":-28},{"x":132,"y":135},{"x":-9,"y":99}],"type":"admin"},{"arc":[{"x":131697,"y":144287},{"x":-13,"y":21},{"x":-21,"y":-20},{"x":34,"y":-1}],"type":"coastline"},{"arc":[{"x":131791,"y":144378},{"x":-68,"y":-28},{"x":11,"y":-37},{"x":57,"y":65}],"type":"coastline"},{"arc":[{"x":132168,"y":143983},{"x":-17,"y":66},{"x":-90,"y":-76},{"x":30,"y":11},{"x":-34,"y":-25},{"x":69,"y":-64},{"x":42,"y":88}],"type":"coastline"},{"arc":[{"x":132324,"y":144443},{"x":-23,"y":56},{"x":-113,"y":-38},{"x":-39,"y":10},{"x":-4,"y":-81},{"x":-64,"y":-35},{"x":-46,"y":-83},{"x":-45,"y":6},{"x":13,"y":-43},{"x":26,"y":14},{"x":25,"y":-19},{"x":-14,"y":-39},{"x":44,"y":14},{"x":-4,"y":-82},{"x":35,"y":-10},{"x":84,"y":43},{"x":60,"y":213},{"x":23,"y":43},{"x":27,"y":12},{"x":6,"y":-20},{"x":9,"y":39}],"type":"coastline"},{"arc":[{"x":130857,"y":144092},{"x":86,"y":-41},{"x":-10,"y":-60},{"x":57,"y":5},{"x":37,"y":77},{"x":64,"y":-47},{"x":-15,"y":-43},{"x":7,"y":-46},{"x":36,"y":-18},{"x":0,"y":-67},{"x":-106,"y":-24},{"x":19,"y":-39},{"x":-25,"y":-55},{"x":26,"y":-48},{"x":58,"y":-6},{"x":36,"y":-93},{"x":50,"y":-16},{"x":39,"y":-102},{"x":79,"y":-68},{"x":32,"y":-106},{"x":-12,"y":-58}],"type":"area"},{"arc":[{"x":132098,"y":143532},{"x":-13,"y":18},{"x":31,"y":-3},{"x":-31,"y":4},{"x":-3,"y":27},{"x":47,"y":16},{"x":-43,"y":32},{"x":33,"y":34},{"x":40,"y":-46},{"x":9,"y":45},{"x":25,"y":6},{"x":102,"y":-42},{"x":29,"y":10},{"x":14,"y":-29},{"x":25,"y":94},{"x":-42,"y":25},{"x":-24,"y":-22},{"x":5,"y":30},{"x":-77,"y":20},{"x":-47,"y":-25},{"x":-34,"y":31},{"x":47,"y":47},{"x":-55,"y":-3},{"x":41,"y":41},{"x":-108,"y":-13},{"x":-31,"y":27},{"x":-33,"y":113},{"x":41,"y":86},{"x":-81,"y":24},{"x":0,"y":83},{"x":-51,"y":-56},{"x":-111,"y":9},{"x":15,"y":-49},{"x":-30,"y":-35},{"x":15,"y":32},{"x":-57,"y":53},{"x":-38,"y":-71},{"x":25,"y":115},{"x":-74,"y":-15},{"x":-8,"y":99},{"x":-90,"y":-48},{"x":-35,"y":6},{"x":-14,"y":-52},{"x":-8,"y":55},{"x":-42,"y":26},{"x":-79,"y":-81},{"x":56,"y":108},{"x":35,"y":11},{"x":-13,"y":38},{"x":35,"y":-29},{"x":-8,"y":-51},{"x":37,"y":-5},{"x":56,"y":40},{"x":-12,"y":51},{"x":58,"y":-2},{"x":-3,"y":86},{"x":37,"y":-71},{"x":38,"y":45},{"x":-28,"y":112},{"x":53,"y":33},{"x":-87,"y":50},{"x":-33,"y":52},{"x":11,"y":-23},{"x":-24,"y":6},{"x":8,"y":35},{"x":18,"y":-3},{"x":-43,"y":24},{"x":-48,"y":-20},{"x":-7,"y":-33},{"x":-48,"y":37},{"x":-38,"y":-21},{"x":-37,"y":16},{"x":-45,"y":-40},{"x":-65,"y":49},{"x":-69,"y":14},{"x":-26,"y":37},{"x":-30,"y":-89},{"x":-40,"y":-30},{"x":-61,"y":7},{"x":-61,"y":-87},{"x":-128,"y":13},{"x":-13,"y":45},{"x":-12,"y":-53},{"x":24,"y":-7},{"x":-37,"y":-23},{"x":-64,"y":64},{"x":-54,"y":-3},{"x":6,"y":-134},{"x":46,"y":33},{"x":-17,"y":-55},{"x":95,"y":16},{"x":41,"y":-30},{"x":-25,"y":-67},{"x":-52,"y":-30},{"x":69,"y":-8},{"x":35,"y":27},{"x":-40,"y":-37},{"x":26,"y":-26},{"x":-26,"y":-2},{"x":1,"y":-34},{"x":-39,"y":51},{"x":-67,"y":-38},{"x":89,"y":-107}],"type":"coastline"},{"arc":[{"x":132377,"y":143756},{"x":-66,"y":-25},{"x":60,"y":-2},{"x":6,"y":27}],"type":"coastline"},{"arc":[{"x":132541,"y":143827},{"x":-6,"y":36},{"x":-50,"y":-77},{"x":13,"y":-52},{"x":43,"y":93}],"type":"coastline"},{"arc":[{"x":132552,"y":143962},{"x":-4,"y":55},{"x":-15,"y":-115},{"x":37,"y":47},{"x":-18,"y":13}],"type":"coastline"},{"arc":[{"x":132774,"y":144386},{"x":-7,"y":29},{"x":-43,"y":-22},{"x":11,"y":28},{"x":-53,"y":20},{"x":18,"y":-29},{"x":-34,"y":31},{"x":-28,"y":-19},{"x":12,"y":22},{"x":36,"y":4},{"x":-21,"y":7},{"x":-64,"y":-47},{"x":-69,"y":32},{"x":-15,"y":-49},{"x":29,"y":3},{"x":13,"y":-32},{"x":-14,"y":33},{"x":24,"y":0},{"x":8,"y":-56},{"x":-89,"y":-86},{"x":-17,"y":-84},{"x":-71,"y":-26},{"x":31,"y":-23},{"x":-25,"y":-33},{"x":16,"y":-23},{"x":-30,"y":-27},{"x":-23,"y":9},{"x":-12,"y":-81},{"x":27,"y":-125},{"x":108,"y":71},{"x":10,"y":28},{"x":-21,"y":5},{"x":24,"y":0},{"x":20,"y":76},{"x":-15,"y":68},{"x":25,"y":24},{"x":23,"y":-22},{"x":45,"y":24},{"x":-14,"y":37},{"x":32,"y":35},{"x":3,"y":-143},{"x":32,"y":32},{"x":11,"y":165},{"x":16,"y":-22},{"x":91,"y":166}],"type":"coastline"},{"arc":[{"x":132846,"y":144571},{"x":-57,"y":-38},{"x":38,"y":-66},{"x":19,"y":104}],"type":"coastline"},{"arc":[{"x":132946,"y":145244},{"x":-33,"y":63},{"x":-120,"y":-57},{"x":89,"y":-60},{"x":27,"y":2},{"x":26,"y":50},{"x":-21,"y":-56},{"x":32,"y":58}],"type":"coastline"},{"arc":[{"x":126403,"y":135670},{"x":-37,"y":73},{"x":20,"y":105},{"x":-40,"y":57},{"x":-27,"y":1},{"x":3,"y":77},{"x":-80,"y":110},{"x":42,"y":47}],"type":"admin"},{"arc":[{"x":125295,"y":137493},{"x":-24,"y":-54},{"x":23,"y":-97},{"x":-80,"y":27},{"x":-45,"y":-54},{"x":-28,"y":43},{"x":0,"y":-52},{"x":-56,"y":-8},{"x":9,"y":-51},{"x":51,"y":-5},{"x":37,"y":58},{"x":78,"y":-127},{"x":-37,"y":-5},{"x":5,"y":-57},{"x":-42,"y":-43},{"x":8,"y":-90},{"x":-22,"y":-15},{"x":-51,"y":90},{"x":19,"y":85},{"x":-37,"y":12},{"x":-89,"y":-47},{"x":-66,"y":52},{"x":2,"y":-34},{"x":-41,"y":-22},{"x":26,"y":-32},{"x":-12,"y":-55},{"x":-41,"y":-4},{"x":-27,"y":-54},{"x":7,"y":-103},{"x":79,"y":-4},{"x":63,"y":-32},{"x":18,"y":63},{"x":-1,"y":-57},{"x":45,"y":-21},{"x":21,"y":-53},{"x":-1,"y":-102},{"x":-70,"y":-23},{"x":-7,"y":35},{"x":-63,"y":40},{"x":-15,"y":-39},{"x":-79,"y":9},{"x":-8,"y":-80},{"x":-43,"y":-58},{"x":-56,"y":32},{"x":-50,"y":93},{"x":-36,"y":-15},{"x":-17,"y":-47},{"x":38,"y":-110},{"x":-94,"y":48},{"x":-45,"y":-16},{"x":0,"y":-58},{"x":-37,"y":-12},{"x":151,"y":-54},{"x":24,"y":-72},{"x":-40,"y":3},{"x":-16,"y":-34},{"x":-50,"y":17},{"x":-21,"y":-35},{"x":22,"y":-60},{"x":-66,"y":-71},{"x":-275,"y":-203},{"x":-293,"y":-157}],"type":"coastline"},{"arc":[{"x":123940,"y":135778},{"x":69,"y":-20},{"x":96,"y":36},{"x":62,"y":-93},{"x":28,"y":10},{"x":22,"y":-32},{"x":11,"y":-112},{"x":114,"y":-82},{"x":59,"y":-25},{"x":31,"y":33},{"x":47,"y":2},{"x":50,"y":-43},{"x":71,"y":6},{"x":-7,"y":-255},{"x":-37,"y":-43},{"x":15,"y":-85},{"x":47,"y":-40},{"x":-88,"y":-28},{"x":47,"y":-10},{"x":3,"y":-22},{"x":-49,"y":-12},{"x":41,"y":-57},{"x":-66,"y":-49},{"x":17,"y":-31},{"x":-87,"y":-64},{"x":-213,"y":29},{"x":-59,"y":-86},{"x":-146,"y":-6},{"x":-23,"y":-26},{"x":29,"y":-70},{"x":-32,"y":-150},{"x":-107,"y":-20},{"x":-108,"y":112}],"type":"admin"},{"arc":[{"x":123777,"y":134545},{"x":-90,"y":17},{"x":-61,"y":-25},{"x":-55,"y":-119},{"x":-48,"y":-10},{"x":-61,"y":-71},{"x":-158,"y":49},{"x":-29,"y":-31},{"x":34,"y":-84},{"x":-124,"y":-195}],"type":"admin"},{"arc":[{"x":123185,"y":134076},{"x":77,"y":-48},{"x":52,"y":13},{"x":127,"y":-66},{"x":20,"y":-38},{"x":-17,"y":-50},{"x":97,"y":-113},{"x":25,"y":-91},{"x":106,"y":-77},{"x":137,"y":31},{"x":83,"y":-33},{"x":155,"y":50},{"x":82,"y":-61},{"x":86,"y":-15},{"x":71,"y":57},{"x":67,"y":-9}],"type":"admin"},{"arc":[{"x":124353,"y":133626},{"x":43,"y":44},{"x":-175,"y":0},{"x":-48,"y":104},{"x":34,"y":27}],"type":"admin"},{"arc":[{"x":124207,"y":133801},{"x":34,"y":34},{"x":97,"y":5},{"x":3,"y":77},{"x":-49,"y":56},{"x":18,"y":64},{"x":155,"y":41},{"x":43,"y":-3},{"x":108,"y":-93},{"x":-46,"y":-22},{"x":-16,"y":29},{"x":-90,"y":-1},{"x":-12,"y":-25},{"x":36,"y":-53},{"x":89,"y":-2},{"x":56,"y":32},{"x":89,"y":-76},{"x":81,"y":-21},{"x":8,"y":19}],"type":"admin"},{"arc":[{"x":124811,"y":133862},{"x":-31,"y":45},{"x":-8,"y":102},{"x":80,"y":30},{"x":97,"y":-40},{"x":11,"y":87},{"x":-34,"y":69}],"type":"admin"},{"arc":[{"x":124926,"y":134155},{"x":17,"y":85},{"x":-72,"y":51},{"x":43,"y":118},{"x":32,"y":10},{"x":36,"y":-25},{"x":-39,"y":-88},{"x":47,"y":-65},{"x":101,"y":15},{"x":34,"y":29},{"x":-10,"y":101},{"x":82,"y":-36},{"x":20,"y":12},{"x":-24,"y":156},{"x":-143,"y":245},{"x":242,"y":99},{"x":132,"y":-1},{"x":48,"y":-25},{"x":63,"y":23},{"x":21,"y":103},{"x":-158,"y":128},{"x":85,"y":40},{"x":55,"y":89},{"x":103,"y":12},{"x":116,"y":-86},{"x":92,"y":-5},{"x":118,"y":-93},{"x":20,"y":96},{"x":69,"y":24},{"x":27,"y":-34}],"type":"admin"},{"arc":[{"x":126083,"y":135133},{"x":125,"y":38},{"x":61,"y":79},{"x":153,"y":46},{"x":-61,"y":127},{"x":115,"y":60},{"x":-58,"y":23},{"x":55,"y":39},{"x":-65,"y":10},{"x":-44,"y":83},{"x":39,"y":32}],"type":"admin"},{"arc":[{"x":140075,"y":141241},{"x":-29,"y":-64},{"x":-81,"y":-15},{"x":-28,"y":-41},{"x":-55,"y":-5},{"x":-33,"y":-45},{"x":-98,"y":-48},{"x":-91,"y":-120},{"x":-105,"y":51},{"x":-129,"y":-35}],"type":"admin"},{"arc":[{"x":139504,"y":140666},{"x":73,"y":-114},{"x":100,"y":12},{"x":71,"y":-110},{"x":2,"y":-100},{"x":-26,"y":-10},{"x":45,"y":-120},{"x":17,"y":-200},{"x":-90,"y":-184},{"x":-7,"y":-106},{"x":39,"y":-40},{"x":-21,"y":-29}],"type":"admin"},{"arc":[{"x":139707,"y":139665},{"x":65,"y":-40},{"x":123,"y":39},{"x":80,"y":-11},{"x":37,"y":18},{"x":68,"y":-28},{"x":97,"y":85},{"x":89,"y":-129},{"x":73,"y":24},{"x":32,"y":52},{"x":129,"y":14},{"x":5,"y":72},{"x":36,"y":39},{"x":81,"y":-22},{"x":45,"y":17},{"x":48,"y":-27},{"x":-1,"y":-68},{"x":63,"y":-7},{"x":11,"y":-61},{"x":156,"y":-146},{"x":-21,"y":-53},{"x":57,"y":-113}],"type":"admin"},{"arc":[{"x":140980,"y":139320},{"x":62,"y":42},{"x":110,"y":18},{"x":38,"y":37},{"x":34,"y":-21},{"x":143,"y":-9}],"type":"admin"},{"arc":[{"x":128877,"y":143510},{"x":-19,"y":-32},{"x":41,"y":20},{"x":-22,"y":12}],"type":"coastline"},{"arc":[{"x":129367,"y":143757},{"x":-24,"y":39},{"x":-11,"y":-39},{"x":35,"y":0}],"type":"coastline"},{"arc":[{"x":129467,"y":143401},{"x":-43,"y":47},{"x":22,"y":-53},{"x":21,"y":6}],"type":"coastline"},{"arc":[{"x":129582,"y":143630},{"x":-28,"y":8},{"x":20,"y":-46},{"x":8,"y":38}],"type":"coastline"},{"arc":[{"x":129645,"y":143686},{"x":-28,"y":20},{"x":7,"y":-52},{"x":1,"y":34},{"x":20,"y":-2}],"type":"coastline"},{"arc":[{"x":129667,"y":143551},{"x":-14,"y":48},{"x":-59,"y":-37},{"x":34,"y":-9},{"x":-49,"y":-83},{"x":17,"y":-29},{"x":71,"y":110}],"type":"coastline"},{"arc":[{"x":129699,"y":143598},{"x":-22,"y":39},{"x":-37,"y":-23},{"x":16,"y":44},{"x":-42,"y":-20},{"x":18,"y":-21},{"x":-27,"y":-19},{"x":56,"y":23},{"x":18,"y":-52},{"x":20,"y":29}],"type":"coastline"},{"arc":[{"x":129718,"y":143542},{"x":-18,"y":9},{"x":-7,"y":-26},{"x":25,"y":17}],"type":"coastline"},{"arc":[{"x":129758,"y":143623},{"x":-65,"y":6},{"x":24,"y":-61},{"x":41,"y":55}],"type":"coastline"},{"arc":[{"x":129767,"y":143538},{"x":-21,"y":-35},{"x":21,"y":-11},{"x":0,"y":46}],"type":"coastline"},{"arc":[{"x":129788,"y":143560},{"x":-34,"y":35},{"x":-8,"y":-24},{"x":25,"y":-24},{"x":17,"y":13}],"type":"coastline"},{"arc":[{"x":129879,"y":143375},{"x":-13,"y":14},{"x":24,"y":-32},{"x":-11,"y":18}],"type":"coastline"},{"arc":[{"x":129899,"y":143575},{"x":-10,"y":42},{"x":-46,"y":21},{"x":-31,"y":-55},{"x":38,"y":-17},{"x":-43,"y":-39},{"x":26,"y":-46},{"x":34,"y":3},{"x":32,"y":91}],"type":"coastline"},{"arc":[{"x":130612,"y":144156},{"x":-68,"y":19},{"x":-64,"y":-51},{"x":27,"y":-22},{"x":11,"y":15},{"x":58,"y":-65},{"x":32,"y":48},{"x":-58,"y":15},{"x":36,"y":3},{"x":-4,"y":18},{"x":28,"y":-14},{"x":2,"y":34}],"type":"coastline"},{"arc":[{"x":130857,"y":144092},{"x":-202,"y":71},{"x":-8,"y":-21},{"x":51,"y":-21},{"x":5,"y":-68},{"x":-31,"y":54},{"x":-25,"y":-1},{"x":-18,"y":-41},{"x":24,"y":-5},{"x":-40,"y":-10},{"x":6,"y":-60},{"x":-58,"y":-25},{"x":14,"y":-22},{"x":37,"y":7},{"x":61,"y":-98},{"x":-23,"y":-26},{"x":13,"y":-33},{"x":-50,"y":34},{"x":-11,"y":-68},{"x":-41,"y":-3},{"x":-29,"y":-42},{"x":47,"y":-62},{"x":30,"y":-157},{"x":-39,"y":10},{"x":-21,"y":97},{"x":-54,"y":-33},{"x":-74,"y":72},{"x":28,"y":110},{"x":43,"y":11},{"x":25,"y":40},{"x":60,"y":-19},{"x":30,"y":66},{"x":36,"y":0},{"x":-37,"y":68},{"x":-139,"y":-33},{"x":-8,"y":23},{"x":71,"y":49},{"x":-3,"y":54},{"x":39,"y":-7},{"x":4,"y":28},{"x":-64,"y":1},{"x":11,"y":18},{"x":-47,"y":40},{"x":-66,"y":-94},{"x":-3,"y":53},{"x":-107,"y":8},{"x":25,"y":30},{"x":66,"y":7},{"x":-10,"y":29},{"x":39,"y":-10},{"x":47,"y":82},{"x":68,"y":40},{"x":2,"y":24},{"x":-40,"y":-5},{"x":-19,"y":23},{"x":62,"y":-1},{"x":-30,"y":38},{"x":39,"y":-34},{"x":43,"y":35},{"x":-58,"y":51},{"x":24,"y":-5},{"x":-18,"y":28},{"x":47,"y":-16},{"x":-34,"y":44},{"x":63,"y":49},{"x":-29,"y":-1},{"x":-3,"y":32},{"x":-53,"y":-64},{"x":-71,"y":-22},{"x":-42,"y":-83},{"x":-41,"y":-10},{"x":3,"y":-29},{"x":-53,"y":-34},{"x":6,"y":-44},{"x":-127,"y":-40},{"x":-135,"y":17},{"x":-88,"y":65},{"x":4,"y":33},{"x":-17,"y":-12},{"x":-16,"y":27},{"x":38,"y":-8},{"x":-35,"y":32},{"x":-84,"y":-13},{"x":11,"y":-15},{"x":-55,"y":-41},{"x":-53,"y":19},{"x":-33,"y":-38},{"x":-95,"y":120},{"x":-45,"y":-14},{"x":-42,"y":80},{"x":11,"y":-36},{"x":-22,"y":18},{"x":5,"y":-18},{"x":-77,"y":-7},{"x":61,"y":21},{"x":-16,"y":-3},{"x":-1,"y":16},{"x":34,"y":21},{"x":-34,"y":-20},{"x":-2,"y":-12},{"x":-33,"y":17},{"x":-39,"y":-38},{"x":20,"y":-36},{"x":-52,"y":-171},{"x":7,"y":-87},{"x":-42,"y":-11},{"x":-64,"y":41},{"x":-38,"y":-40},{"x":-11,"y":-173},{"x":-54,"y":-39},{"x":-130,"y":-5},{"x":72,"y":-74},{"x":-20,"y":-224},{"x":20,"y":-147},{"x":8,"y":27},{"x":28,"y":-4},{"x":-27,"y":-20},{"x":14,"y":-28},{"x":-19,"y":17},{"x":56,"y":-85},{"x":-24,"y":-27},{"x":31,"y":-17},{"x":-16,"y":-29},{"x":27,"y":-66},{"x":30,"y":-5},{"x":2,"y":-59},{"x":-34,"y":-16},{"x":36,"y":-63},{"x":-17,"y":-32},{"x":106,"y":-38},{"x":23,"y":-122},{"x":39,"y":35},{"x":1,"y":79},{"x":50,"y":24},{"x":28,"y":59},{"x":-25,"y":-7},{"x":22,"y":29},{"x":-29,"y":26},{"x":16,"y":48},{"x":-16,"y":15},{"x":-28,"y":-25},{"x":25,"y":69},{"x":29,"y":8},{"x":-10,"y":59},{"x":-19,"y":10},{"x":-17,"y":-34},{"x":-1,"y":34},{"x":-52,"y":22},{"x":17,"y":14},{"x":9,"y":-23},{"x":62,"y":2},{"x":-36,"y":90},{"x":-35,"y":28},{"x":-28,"y":-9},{"x":38,"y":15},{"x":-12,"y":92},{"x":-36,"y":-26},{"x":-12,"y":26},{"x":-7,"y":-30},{"x":-22,"y":33},{"x":-7,"y":-48},{"x":-31,"y":26},{"x":21,"y":58},{"x":29,"y":-13},{"x":6,"y":28},{"x":12,"y":-15},{"x":38,"y":30},{"x":0,"y":-31},{"x":30,"y":3},{"x":-17,"y":56},{"x":-38,"y":-16},{"x":35,"y":59},{"x":-39,"y":-13},{"x":28,"y":32},{"x":-31,"y":8},{"x":-50,"y":-16},{"x":-7,"y":-32},{"x":-6,"y":34},{"x":-56,"y":-5},{"x":-10,"y":23},{"x":98,"y":-5},{"x":5,"y":60},{"x":-33,"y":-18},{"x":18,"y":21},{"x":-19,"y":10},{"x":-43,"y":-37},{"x":-26,"y":20},{"x":82,"y":49},{"x":-27,"y":14},{"x":44,"y":3},{"x":-5,"y":32},{"x":15,"y":-21},{"x":-1,"y":28},{"x":22,"y":-6},{"x":20,"y":54},{"x":-4,"y":-25},{"x":40,"y":18},{"x":-4,"y":25},{"x":-43,"y":-18},{"x":-26,"y":-28},{"x":-53,"y":16},{"x":41,"y":3},{"x":-12,"y":29},{"x":36,"y":-4},{"x":-40,"y":80},{"x":26,"y":-2},{"x":29,"y":-72},{"x":13,"y":24},{"x":18,"y":-13},{"x":-27,"y":33},{"x":5,"y":65},{"x":34,"y":-54},{"x":35,"y":47},{"x":-34,"y":-68},{"x":16,"y":-23},{"x":12,"y":29},{"x":10,"y":-36},{"x":6,"y":42},{"x":40,"y":28},{"x":-10,"y":-28},{"x":28,"y":-20},{"x":-34,"y":6},{"x":2,"y":-54},{"x":-42,"y":-31},{"x":36,"y":-18},{"x":34,"y":16},{"x":7,"y":-23},{"x":-130,"y":-14},{"x":24,"y":-12},{"x":-26,"y":-43},{"x":51,"y":36},{"x":4,"y":-26},{"x":-64,"y":-61},{"x":29,"y":-14},{"x":22,"y":46},{"x":12,"y":-62},{"x":39,"y":33},{"x":5,"y":-23},{"x":61,"y":22},{"x":-13,"y":-45},{"x":34,"y":-10},{"x":2,"y":67},{"x":-25,"y":10},{"x":18,"y":32},{"x":18,"y":-31},{"x":67,"y":-18},{"x":6,"y":33},{"x":-36,"y":2},{"x":21,"y":55},{"x":-75,"y":131},{"x":27,"y":43},{"x":-23,"y":7},{"x":17,"y":72},{"x":67,"y":-34},{"x":-37,"y":-18},{"x":28,"y":-24},{"x":-44,"y":-32},{"x":28,"y":-4},{"x":-5,"y":-53},{"x":42,"y":26},{"x":-22,"y":-59},{"x":37,"y":31},{"x":39,"y":-48},{"x":57,"y":54},{"x":-11,"y":-54},{"x":-80,"y":-39},{"x":42,"y":-17},{"x":-31,"y":-29},{"x":30,"y":10},{"x":-1,"y":-99},{"x":34,"y":17},{"x":1,"y":30},{"x":18,"y":-21},{"x":-12,"y":-50},{"x":13,"y":26},{"x":10,"y":-20},{"x":17,"y":14},{"x":-8,"y":39},{"x":39,"y":-1},{"x":-70,"y":83},{"x":38,"y":8},{"x":17,"y":-37},{"x":31,"y":17},{"x":-37,"y":27},{"x":-12,"y":62},{"x":31,"y":-10},{"x":17,"y":36},{"x":28,"y":-108},{"x":10,"y":56},{"x":45,"y":24},{"x":0,"y":-65},{"x":-43,"y":-22},{"x":9,"y":-17},{"x":-53,"y":-6},{"x":29,"y":-122},{"x":58,"y":-10},{"x":10,"y":24},{"x":16,"y":-23},{"x":-17,"y":-35},{"x":-16,"y":14},{"x":-48,"y":-118},{"x":53,"y":-6},{"x":-64,"y":-15},{"x":26,"y":-20},{"x":-36,"y":-16},{"x":25,"y":-12},{"x":43,"y":49},{"x":7,"y":-43},{"x":42,"y":9},{"x":12,"y":-33},{"x":23,"y":36},{"x":31,"y":-13},{"x":60,"y":22},{"x":6,"y":43},{"x":-1,"y":-58},{"x":-79,"y":-25},{"x":-27,"y":-57},{"x":-47,"y":55},{"x":-31,"y":-26},{"x":18,"y":-38},{"x":-28,"y":26},{"x":-14,"y":-28},{"x":-29,"y":16},{"x":18,"y":-24},{"x":-25,"y":-40},{"x":-10,"y":70},{"x":-22,"y":-19},{"x":10,"y":26},{"x":-29,"y":0},{"x":27,"y":11},{"x":-10,"y":40},{"x":-41,"y":-19},{"x":15,"y":39},{"x":-25,"y":-7},{"x":1,"y":31},{"x":-49,"y":32},{"x":-28,"y":-39},{"x":25,"y":12},{"x":12,"y":-26},{"x":-30,"y":2},{"x":-11,"y":-26},{"x":26,"y":-37},{"x":-21,"y":15},{"x":-3,"y":-29},{"x":-43,"y":21},{"x":-29,"y":-36},{"x":28,"y":-35},{"x":-50,"y":-22},{"x":47,"y":-150},{"x":37,"y":37},{"x":28,"y":-21},{"x":-8,"y":39},{"x":19,"y":-26},{"x":15,"y":42},{"x":-2,"y":-35},{"x":23,"y":-2},{"x":-65,"y":-82},{"x":89,"y":-5},{"x":46,"y":98},{"x":-11,"y":-81},{"x":33,"y":2},{"x":4,"y":-24},{"x":29,"y":26},{"x":30,"y":-22},{"x":-9,"y":35},{"x":29,"y":21},{"x":9,"y":-16},{"x":-20,"y":-65},{"x":-56,"y":-12},{"x":60,"y":-25},{"x":9,"y":-83},{"x":-32,"y":11},{"x":8,"y":38},{"x":-35,"y":-18},{"x":1,"y":23},{"x":-65,"y":17},{"x":-12,"y":-32},{"x":36,"y":-30},{"x":-21,"y":-14},{"x":-56,"y":24},{"x":27,"y":-58},{"x":-14,"y":-16},{"x":-22,"y":32},{"x":-18,"y":-44},{"x":-7,"y":84},{"x":-55,"y":57},{"x":-14,"y":-17},{"x":-23,"y":15},{"x":58,"y":-99},{"x":-23,"y":-2},{"x":2,"y":-39},{"x":-18,"y":13},{"x":16,"y":-52},{"x":104,"y":-109},{"x":32,"y":-148},{"x":-29,"y":-79}],"type":"coastline"},{"arc":[{"x":129782,"y":142495},{"x":52,"y":-37},{"x":-7,"y":-105},{"x":89,"y":25},{"x":45,"y":206},{"x":42,"y":49},{"x":34,"y":129},{"x":38,"y":42},{"x":110,"y":13},{"x":81,"y":94},{"x":87,"y":-24},{"x":57,"y":-60},{"x":154,"y":77},{"x":36,"y":-33},{"x":33,"y":14},{"x":106,"y":-108},{"x":87,"y":6}],"type":"admin"},{"arc":[{"x":134517,"y":135982},{"x":34,"y":-39},{"x":34,"y":6},{"x":28,"y":-30},{"x":175,"y":-49},{"x":11,"y":-115},{"x":54,"y":-93}],"type":"admin"},{"arc":[{"x":134853,"y":135662},{"x":40,"y":-8},{"x":27,"y":106},{"x":82,"y":70},{"x":36,"y":-39},{"x":79,"y":8},{"x":34,"y":-53},{"x":51,"y":-3},{"x":101,"y":-74}],"type":"admin"},{"arc":[{"x":135303,"y":135669},{"x":26,"y":-60},{"x":113,"y":-110},{"x":88,"y":-9},{"x":12,"y":-99},{"x":268,"y":54},{"x":47,"y":-116},{"x":53,"y":-27},{"x":64,"y":24}],"type":"admin"},{"arc":[{"x":135974,"y":135326},{"x":-12,"y":60},{"x":44,"y":50},{"x":-1,"y":60},{"x":56,"y":25},{"x":38,"y":57},{"x":-30,"y":50},{"x":59,"y":60},{"x":-50,"y":54},{"x":53,"y":60},{"x":3,"y":48},{"x":46,"y":26},{"x":-4,"y":60},{"x":60,"y":96},{"x":45,"y":2},{"x":41,"y":45},{"x":130,"y":-75},{"x":50,"y":23},{"x":55,"y":-42},{"x":-15,"y":48},{"x":47,"y":44},{"x":5,"y":98},{"x":62,"y":31},{"x":90,"y":-4},{"x":36,"y":40},{"x":2,"y":64},{"x":79,"y":96},{"x":59,"y":-38},{"x":44,"y":33},{"x":32,"y":-20},{"x":-24,"y":-53},{"x":17,"y":-35},{"x":-33,"y":-22},{"x":5,"y":-105},{"x":95,"y":-181},{"x":67,"y":41},{"x":55,"y":-44},{"x":47,"y":22},{"x":-37,"y":58},{"x":20,"y":51},{"x":87,"y":37},{"x":73,"y":95},{"x":-41,"y":46},{"x":-69,"y":-3},{"x":-128,"y":168},{"x":67,"y":58},{"x":-82,"y":115},{"x":76,"y":185},{"x":-10,"y":131},{"x":-15,"y":23},{"x":-77,"y":-21},{"x":-26,"y":101},{"x":-59,"y":21},{"x":-95,"y":290},{"x":-58,"y":93},{"x":-36,"y":271},{"x":81,"y":148},{"x":48,"y":12},{"x":18,"y":46},{"x":56,"y":35},{"x":-50,"y":69}],"type":"admin"},{"arc":[{"x":138883,"y":143063},{"x":-3,"y":-76},{"x":188,"y":-140}],"type":"coastline"},{"arc":[{"x":138607,"y":139450},{"x":147,"y":-44},{"x":87,"y":13}],"type":"admin"},{"arc":[{"x":138841,"y":139419},{"x":19,"y":-11},{"x":23,"y":44},{"x":102,"y":32},{"x":14,"y":-68},{"x":137,"y":-21},{"x":13,"y":19},{"x":89,"y":1},{"x":24,"y":46},{"x":70,"y":25},{"x":-7,"y":43},{"x":115,"y":100},{"x":-12,"y":26},{"x":128,"y":-7},{"x":99,"y":-53},{"x":52,"y":70}],"type":"admin"},{"arc":[{"x":139105,"y":142139},{"x":-14,"y":-13},{"x":-43,"y":60},{"x":-7,"y":-23},{"x":42,"y":-30},{"x":-34,"y":-3},{"x":-34,"y":53},{"x":18,"y":-51},{"x":72,"y":-37},{"x":-63,"y":24},{"x":-70,"y":-50},{"x":12,"y":-107},{"x":-56,"y":-67}],"type":"area"},{"arc":[{"x":138878,"y":142336},{"x":-9,"y":-27},{"x":-51,"y":12},{"x":-5,"y":-18},{"x":-110,"y":30},{"x":-41,"y":-143},{"x":74,"y":-40},{"x":-35,"y":0},{"x":1,"y":-68},{"x":27,"y":2},{"x":-39,"y":-20}],"type":"coastline"},{"arc":[{"x":132358,"y":141300},{"x":-54,"y":17},{"x":26,"y":-41},{"x":-56,"y":46},{"x":-94,"y":-151},{"x":-82,"y":-58},{"x":-60,"y":6},{"x":0,"y":-36},{"x":-130,"y":13},{"x":-45,"y":37},{"x":-89,"y":-53},{"x":-101,"y":0}],"type":"area"},{"arc":[{"x":131673,"y":141080},{"x":-15,"y":-268}],"type":"area"},{"arc":[{"x":131658,"y":140812},{"x":-10,"y":-27},{"x":49,"y":-37},{"x":33,"y":25},{"x":44,"y":-13},{"x":-31,"y":-52},{"x":28,"y":-52},{"x":-46,"y":-46},{"x":-6,"y":-146},{"x":-45,"y":-85},{"x":37,"y":-49},{"x":-74,"y":10},{"x":-51,"y":-126},{"x":-70,"y":37},{"x":11,"y":-37},{"x":-70,"y":-209},{"x":14,"y":-62},{"x":-35,"y":-44},{"x":-65,"y":21},{"x":-93,"y":-144},{"x":-63,"y":-203},{"x":47,"y":-87},{"x":1,"y":-59},{"x":-44,"y":-83},{"x":21,"y":-38}],"type":"area"},{"arc":[{"x":132585,"y":141176},{"x":-42,"y":29},{"x":-78,"y":6},{"x":-72,"y":-38},{"x":-39,"y":42},{"x":29,"y":23},{"x":-25,"y":62}],"type":"area"},{"arc":[{"x":132540,"y":141922},{"x":8,"y":-22}],"type":"area"},{"arc":[{"x":132524,"y":141843},{"x":14,"y":-17}],"type":"area"},{"arc":[{"x":132547,"y":141815},{"x":3,"y":1}],"type":"area"},{"arc":[{"x":132523,"y":141783},{"x":-26,"y":15}],"type":"area"},{"arc":[{"x":132487,"y":141792},{"x":41,"y":-36},{"x":-46,"y":-189},{"x":26,"y":-125},{"x":-94,"y":-2},{"x":-19,"y":-28},{"x":-14,"y":21},{"x":-53,"y":-115},{"x":30,"y":-18}],"type":"area"},{"arc":[{"x":133561,"y":141338},{"x":-14,"y":155},{"x":-43,"y":83},{"x":22,"y":32},{"x":-24,"y":-24},{"x":-9,"y":20},{"x":31,"y":8},{"x":-50,"y":-2},{"x":-64,"y":184},{"x":-286,"y":130}],"type":"coastline"},{"arc":[{"x":131658,"y":140812},{"x":-69,"y":0},{"x":-27,"y":-48},{"x":-56,"y":-12},{"x":3,"y":-140},{"x":-42,"y":-71}],"type":"area"},{"arc":[{"x":131467,"y":140541},{"x":-73,"y":-109},{"x":47,"y":-77},{"x":11,"y":-113},{"x":-42,"y":-34},{"x":-129,"y":6},{"x":-19,"y":-180},{"x":-226,"y":-195},{"x":-77,"y":-29},{"x":-24,"y":-101},{"x":-102,"y":21},{"x":-62,"y":-48},{"x":-51,"y":74},{"x":-109,"y":-37},{"x":41,"y":-88},{"x":100,"y":-97},{"x":48,"y":-12},{"x":46,"y":68},{"x":129,"y":-36},{"x":23,"y":-27},{"x":18,"y":-37},{"x":-118,"y":-202},{"x":-31,"y":11},{"x":-76,"y":125},{"x":-75,"y":-38},{"x":-34,"y":18},{"x":-94,"y":-23},{"x":-21,"y":26},{"x":-124,"y":-62},{"x":-17,"y":-80},{"x":-38,"y":-26},{"x":-130,"y":-287},{"x":-80,"y":-31},{"x":-118,"y":-144},{"x":-63,"y":-19},{"x":-42,"y":-198},{"x":37,"y":-107},{"x":-247,"y":-111},{"x":14,"y":-36},{"x":-45,"y":-55},{"x":-21,"y":-179},{"x":-86,"y":-71},{"x":9,"y":-123},{"x":-110,"y":-52},{"x":-78,"y":59}],"type":"area"},{"arc":[{"x":129428,"y":137885},{"x":-126,"y":-125},{"x":-19,"y":-37},{"x":25,"y":-47},{"x":-42,"y":-69},{"x":-68,"y":-47},{"x":-62,"y":29},{"x":-45,"y":-8},{"x":-30,"y":-115},{"x":11,"y":-119},{"x":-90,"y":3},{"x":-84,"y":-45},{"x":-44,"y":-82},{"x":-103,"y":17},{"x":-30,"y":-25},{"x":20,"y":-100},{"x":-94,"y":-59},{"x":-155,"y":1},{"x":-83,"y":28},{"x":-112,"y":-346},{"x":19,"y":-58},{"x":-117,"y":-75},{"x":-83,"y":9},{"x":-49,"y":-53},{"x":16,"y":-28},{"x":-42,"y":-70},{"x":13,"y":-32},{"x":48,"y":-14},{"x":-12,"y":-64},{"x":-36,"y":-15},{"x":24,"y":-86}],"type":"admin"},{"arc":[{"x":128078,"y":136253},{"x":77,"y":-78},{"x":19,"y":28},{"x":125,"y":19},{"x":65,"y":-169},{"x":70,"y":8}],"type":"admin"},{"arc":[{"x":128434,"y":136061},{"x":86,"y":43},{"x":53,"y":95},{"x":49,"y":13},{"x":-2,"y":76},{"x":49,"y":30},{"x":112,"y":-10},{"x":14,"y":-79},{"x":49,"y":0},{"x":19,"y":63},{"x":129,"y":71},{"x":39,"y":79},{"x":79,"y":-9},{"x":35,"y":26},{"x":79,"y":-66},{"x":31,"y":-77},{"x":55,"y":7},{"x":26,"y":32},{"x":40,"y":-13},{"x":12,"y":-35},{"x":122,"y":-54},{"x":103,"y":-146},{"x":159,"y":-31},{"x":52,"y":57},{"x":-7,"y":117},{"x":142,"y":184}],"type":"admin"},{"arc":[{"x":131737,"y":141823},{"x":-59,"y":-274},{"x":81,"y":-71},{"x":7,"y":-43},{"x":-66,"y":-4},{"x":-1,"y":-78},{"x":-55,"y":-8},{"x":15,"y":-117},{"x":47,"y":-58},{"x":-65,"y":-18},{"x":-56,"y":65},{"x":88,"y":-137}],"type":"area"},{"arc":[{"x":131000,"y":141746},{"x":-89,"y":-132},{"x":-40,"y":16},{"x":-17,"y":58},{"x":-166,"y":-20},{"x":-48,"y":-180},{"x":-59,"y":-46},{"x":-128,"y":-43},{"x":-59,"y":14},{"x":-102,"y":-68},{"x":-126,"y":32},{"x":-45,"y":-29},{"x":-2,"y":-127},{"x":-154,"y":-62},{"x":79,"y":-141},{"x":-49,"y":-179},{"x":4,"y":-86},{"x":70,"y":-63},{"x":-15,"y":-44},{"x":33,"y":-72},{"x":98,"y":-43},{"x":3,"y":-66},{"x":47,"y":-73}],"type":"area"},{"arc":[{"x":130235,"y":140392},{"x":96,"y":34},{"x":58,"y":-15},{"x":110,"y":67},{"x":54,"y":-32},{"x":63,"y":18},{"x":64,"y":-35},{"x":93,"y":125},{"x":17,"y":-27},{"x":151,"y":-45},{"x":73,"y":58},{"x":62,"y":6},{"x":122,"y":75},{"x":117,"y":5},{"x":4,"y":-45},{"x":124,"y":-10},{"x":24,"y":-30}],"type":"area"},{"arc":[{"x":128281,"y":139036},{"x":7,"y":0},{"x":1,"y":0},{"x":1,"y":0},{"x":-9,"y":0}],"type":"coastline"},{"arc":[{"x":128410,"y":139016},{"x":24,"y":-28},{"x":-7,"y":35},{"x":-17,"y":-7}],"type":"coastline"},{"arc":[{"x":130235,"y":140392},{"x":-7,"y":-61},{"x":-92,"y":-33},{"x":-47,"y":-61},{"x":-19,"y":-84},{"x":51,"y":-193},{"x":-24,"y":-15},{"x":6,"y":-53},{"x":-96,"y":-69},{"x":-138,"y":12},{"x":-91,"y":-50},{"x":-58,"y":-8},{"x":-19,"y":21},{"x":-61,"y":-18},{"x":-17,"y":-102},{"x":-72,"y":-107},{"x":37,"y":-96},{"x":-19,"y":-40},{"x":-197,"y":92},{"x":-106,"y":-104},{"x":-137,"y":-12},{"x":-47,"y":22},{"x":-111,"y":-30},{"x":-148,"y":56},{"x":-83,"y":90}],"type":"area"},{"arc":[{"x":128740,"y":139549},{"x":-29,"y":-35},{"x":-47,"y":16},{"x":12,"y":-76},{"x":-46,"y":-34},{"x":31,"y":-20},{"x":-72,"y":-36},{"x":-16,"y":-103},{"x":-49,"y":-46},{"x":7,"y":-22},{"x":25,"y":19},{"x":54,"y":-15},{"x":36,"y":-61},{"x":11,"y":46},{"x":49,"y":20},{"x":-43,"y":49},{"x":66,"y":-18},{"x":-40,"y":-71},{"x":43,"y":-24},{"x":-34,"y":-29},{"x":3,"y":-41},{"x":-97,"y":31},{"x":-53,"y":-88},{"x":-25,"y":8},{"x":-9,"y":-32},{"x":-30,"y":7},{"x":-30,"y":-27}],"type":"coastline"},{"arc":[{"x":128457,"y":138967},{"x":90,"y":-42},{"x":79,"y":39},{"x":68,"y":-26},{"x":78,"y":14},{"x":106,"y":-114},{"x":121,"y":-54},{"x":10,"y":-89},{"x":41,"y":-53},{"x":-52,"y":-61},{"x":41,"y":-106},{"x":-12,"y":-152},{"x":184,"y":-171},{"x":70,"y":41},{"x":55,"y":-29},{"x":60,"y":-87},{"x":19,"y":-106},{"x":-19,"y":-43},{"x":32,"y":-43}],"type":"admin"},{"arc":[{"x":129116,"y":140788},{"x":-18,"y":43},{"x":-21,"y":-15},{"x":-46,"y":20},{"x":19,"y":-84},{"x":61,"y":14},{"x":5,"y":22}],"type":"coastline"},{"arc":[{"x":129761,"y":142153},{"x":-42,"y":10},{"x":-24,"y":-34},{"x":66,"y":24}],"type":"coastline"},{"arc":[{"x":130268,"y":142525},{"x":-45,"y":9},{"x":-37,"y":-63},{"x":82,"y":54}],"type":"coastline"},{"arc":[{"x":129782,"y":142495},{"x":-31,"y":-31},{"x":-39,"y":27},{"x":-35,"y":-31},{"x":5,"y":-60},{"x":-48,"y":-20},{"x":29,"y":-59},{"x":-44,"y":-13},{"x":-13,"y":-72},{"x":-58,"y":-13},{"x":132,"y":-69},{"x":-37,"y":31},{"x":24,"y":-15},{"x":6,"y":67},{"x":99,"y":-36},{"x":31,"y":26},{"x":30,"y":-12},{"x":56,"y":34},{"x":-34,"y":45},{"x":33,"y":-7},{"x":25,"y":49},{"x":16,"y":-79},{"x":47,"y":27},{"x":22,"y":-12},{"x":-20,"y":78},{"x":43,"y":10},{"x":22,"y":-52},{"x":37,"y":23},{"x":-2,"y":29},{"x":-44,"y":14},{"x":30,"y":10},{"x":-46,"y":4},{"x":-46,"y":42},{"x":47,"y":-7},{"x":3,"y":18},{"x":102,"y":-65},{"x":17,"y":63},{"x":-46,"y":14},{"x":55,"y":-1},{"x":-2,"y":19},{"x":-113,"y":34},{"x":66,"y":-2},{"x":13,"y":33},{"x":33,"y":-45},{"x":27,"y":151},{"x":23,"y":-17},{"x":-11,"y":-65},{"x":71,"y":38},{"x":33,"y":-16},{"x":13,"y":25},{"x":0,"y":-44},{"x":-71,"y":-9},{"x":57,"y":-30},{"x":-38,"y":-34},{"x":100,"y":-21},{"x":-51,"y":-4},{"x":8,"y":-34},{"x":-26,"y":30},{"x":-17,"y":-31},{"x":-38,"y":13},{"x":-15,"y":-41},{"x":42,"y":-7},{"x":-13,"y":22},{"x":34,"y":9},{"x":10,"y":-49},{"x":50,"y":46},{"x":13,"y":-19},{"x":25,"y":9},{"x":-37,"y":-91},{"x":44,"y":-4},{"x":-21,"y":-70},{"x":-58,"y":56},{"x":-32,"y":-41},{"x":-15,"y":33},{"x":-56,"y":-12},{"x":-31,"y":-34},{"x":12,"y":-28},{"x":-27,"y":10},{"x":-98,"y":-72},{"x":48,"y":-24},{"x":71,"y":68},{"x":-1,"y":-50},{"x":39,"y":56},{"x":17,"y":-25},{"x":-28,"y":-54},{"x":27,"y":-23},{"x":15,"y":73},{"x":54,"y":15},{"x":8,"y":42},{"x":25,"y":3},{"x":0,"y":-60},{"x":-86,"y":-93},{"x":9,"y":-43},{"x":59,"y":6},{"x":21,"y":-113},{"x":-68,"y":-58},{"x":-10,"y":111},{"x":-31,"y":42},{"x":-28,"y":-20},{"x":-11,"y":28},{"x":-28,"y":-11},{"x":-32,"y":-64},{"x":-38,"y":93},{"x":-26,"y":-9},{"x":-9,"y":-44},{"x":33,"y":-68},{"x":29,"y":0},{"x":-2,"y":-36},{"x":-24,"y":10},{"x":-8,"y":-27},{"x":-29,"y":47},{"x":-43,"y":-13},{"x":-17,"y":-48},{"x":59,"y":-44},{"x":-94,"y":-17},{"x":8,"y":-37},{"x":-62,"y":-32},{"x":14,"y":-53},{"x":-50,"y":-8},{"x":38,"y":30},{"x":-55,"y":9},{"x":26,"y":51},{"x":46,"y":-6},{"x":-32,"y":30},{"x":49,"y":60},{"x":26,"y":-5},{"x":-31,"y":80},{"x":-47,"y":-58},{"x":-15,"y":49},{"x":30,"y":13},{"x":11,"y":64},{"x":25,"y":-35},{"x":41,"y":-1},{"x":-10,"y":79},{"x":-50,"y":-29},{"x":-7,"y":26},{"x":58,"y":30},{"x":-3,"y":29},{"x":-58,"y":-27},{"x":-75,"y":-102},{"x":-80,"y":-3},{"x":20,"y":-27},{"x":-20,"y":-50},{"x":-58,"y":-41},{"x":-28,"y":21},{"x":-8,"y":-50},{"x":-35,"y":4},{"x":43,"y":53},{"x":-51,"y":47},{"x":-36,"y":-78},{"x":-12,"y":-169},{"x":-60,"y":-11},{"x":-31,"y":23},{"x":-22,"y":-16},{"x":-42,"y":-79},{"x":3,"y":-104},{"x":-186,"y":-135},{"x":-15,"y":-199},{"x":123,"y":-36},{"x":27,"y":-41},{"x":26,"y":22},{"x":50,"y":-10},{"x":-21,"y":51},{"x":-50,"y":2},{"x":-3,"y":32},{"x":-35,"y":10},{"x":12,"y":27},{"x":52,"y":-11},{"x":86,"y":-124},{"x":-35,"y":-74},{"x":92,"y":34},{"x":38,"y":68},{"x":-64,"y":-28},{"x":-22,"y":19},{"x":93,"y":90},{"x":-30,"y":30},{"x":-64,"y":6},{"x":30,"y":34},{"x":26,"y":-30},{"x":29,"y":23},{"x":-7,"y":37},{"x":31,"y":-22},{"x":-29,"y":-32},{"x":23,"y":-16},{"x":47,"y":55},{"x":56,"y":-60},{"x":-84,"y":-20},{"x":23,"y":-6},{"x":-18,"y":-46},{"x":37,"y":14},{"x":24,"y":-38},{"x":-51,"y":-35},{"x":-25,"y":27},{"x":24,"y":-58},{"x":-42,"y":-16},{"x":32,"y":-32},{"x":-33,"y":-53},{"x":-21,"y":22},{"x":7,"y":-96},{"x":-44,"y":-20},{"x":-26,"y":34},{"x":-57,"y":-1},{"x":28,"y":-44},{"x":9,"y":19},{"x":43,"y":-28},{"x":-41,"y":15},{"x":-7,"y":-34},{"x":38,"y":5},{"x":27,"y":-44},{"x":-24,"y":-10},{"x":-74,"y":68},{"x":-56,"y":-1},{"x":-43,"y":39},{"x":-67,"y":-52},{"x":-39,"y":5},{"x":6,"y":-60},{"x":-58,"y":-4},{"x":-19,"y":34},{"x":-44,"y":-29},{"x":10,"y":-40},{"x":34,"y":12},{"x":39,"y":-85},{"x":23,"y":21},{"x":29,"y":-23},{"x":68,"y":58},{"x":81,"y":-7},{"x":2,"y":-30},{"x":-2,"y":22},{"x":43,"y":-4},{"x":0,"y":-16},{"x":34,"y":18},{"x":6,"y":-25},{"x":-38,"y":1},{"x":-7,"y":-30},{"x":-89,"y":-12},{"x":-1,"y":-47},{"x":-66,"y":-1},{"x":-39,"y":-34},{"x":51,"y":-14},{"x":77,"y":67},{"x":40,"y":-12},{"x":-29,"y":-37},{"x":40,"y":-50},{"x":-87,"y":27},{"x":-7,"y":-24},{"x":58,"y":-116},{"x":30,"y":40},{"x":60,"y":-13},{"x":10,"y":-84},{"x":-46,"y":-17},{"x":21,"y":-34},{"x":-42,"y":62},{"x":-107,"y":-19},{"x":-32,"y":47},{"x":-28,"y":-26},{"x":-35,"y":20},{"x":-70,"y":-8},{"x":-105,"y":61},{"x":-14,"y":52},{"x":-28,"y":0},{"x":-31,"y":-25},{"x":35,"y":0},{"x":18,"y":-71},{"x":78,"y":-2},{"x":25,"y":-54},{"x":24,"y":15},{"x":31,"y":-36},{"x":-2,"y":-46},{"x":58,"y":28},{"x":-39,"y":-40},{"x":30,"y":-41},{"x":-56,"y":19},{"x":1,"y":-51},{"x":-51,"y":34},{"x":25,"y":70},{"x":-78,"y":14},{"x":-38,"y":37},{"x":14,"y":-78},{"x":-24,"y":-57},{"x":48,"y":-36},{"x":-83,"y":-37},{"x":24,"y":43},{"x":-30,"y":21},{"x":-60,"y":-17},{"x":55,"y":49},{"x":-33,"y":30},{"x":33,"y":31},{"x":-4,"y":35},{"x":-32,"y":7},{"x":18,"y":25},{"x":-55,"y":7},{"x":4,"y":32},{"x":-50,"y":-20},{"x":26,"y":-12},{"x":-1,"y":-80},{"x":-27,"y":-28},{"x":-43,"y":14},{"x":-74,"y":-174},{"x":99,"y":22},{"x":-1,"y":-86},{"x":43,"y":-9},{"x":18,"y":-37},{"x":-16,"y":-65},{"x":29,"y":-20},{"x":42,"y":11},{"x":17,"y":-33},{"x":82,"y":-3},{"x":-6,"y":34},{"x":60,"y":33},{"x":-24,"y":24},{"x":20,"y":52},{"x":34,"y":-74},{"x":38,"y":14},{"x":12,"y":-18},{"x":19,"y":38},{"x":5,"y":-38},{"x":-84,"y":-81},{"x":-35,"y":23},{"x":-24,"y":-43},{"x":27,"y":-21},{"x":-6,"y":-45},{"x":28,"y":-9},{"x":-29,"y":-96},{"x":-37,"y":31},{"x":21,"y":51},{"x":-36,"y":-22},{"x":-13,"y":16},{"x":40,"y":63},{"x":-78,"y":23},{"x":-140,"y":-33},{"x":-20,"y":70},{"x":-30,"y":10},{"x":-59,"y":-79},{"x":25,"y":-130},{"x":-21,"y":-94}],"type":"coastline"},{"arc":[{"x":127883,"y":138849},{"x":-8,"y":33},{"x":-41,"y":-2},{"x":8,"y":-34},{"x":41,"y":3}],"type":"coastline"},{"arc":[{"x":127891,"y":138793},{"x":-11,"y":20},{"x":2,"y":-40},{"x":9,"y":20}],"type":"coastline"},{"arc":[{"x":128029,"y":138239},{"x":-31,"y":0},{"x":-14,"y":35},{"x":-46,"y":-73},{"x":77,"y":-2},{"x":14,"y":40}],"type":"coastline"},{"arc":[{"x":128127,"y":138399},{"x":-18,"y":24},{"x":-38,"y":-14},{"x":-21,"y":29},{"x":10,"y":-39},{"x":67,"y":0}],"type":"coastline"},{"arc":[{"x":128173,"y":138393},{"x":-19,"y":31},{"x":-21,"y":-41},{"x":40,"y":10}],"type":"coastline"},{"arc":[{"x":128457,"y":138967},{"x":-105,"y":-107},{"x":-1,"y":-25},{"x":40,"y":9},{"x":86,"y":-46},{"x":-47,"y":-38},{"x":-10,"y":-50},{"x":66,"y":-9},{"x":27,"y":30},{"x":33,"y":-30},{"x":42,"y":118},{"x":5,"y":-66},{"x":47,"y":-16},{"x":-51,"y":-28},{"x":-41,"y":-109},{"x":-28,"y":-13},{"x":-13,"y":21},{"x":-45,"y":-30},{"x":21,"y":-89},{"x":-42,"y":-66},{"x":-33,"y":18},{"x":43,"y":59},{"x":-48,"y":10},{"x":24,"y":29},{"x":23,"y":-20},{"x":4,"y":69},{"x":35,"y":35},{"x":-36,"y":-38},{"x":-67,"y":7},{"x":-43,"y":-60},{"x":-66,"y":42},{"x":-23,"y":-15},{"x":-13,"y":-40},{"x":74,"y":-86},{"x":-21,"y":-37},{"x":-34,"y":-15},{"x":-20,"y":19},{"x":-11,"y":-25},{"x":-18,"y":-94},{"x":29,"y":-2},{"x":-3,"y":-43},{"x":-114,"y":-85},{"x":-45,"y":39},{"x":-34,"y":-99},{"x":-48,"y":-11},{"x":-9,"y":26},{"x":-12,"y":-27},{"x":-32,"y":2},{"x":41,"y":-60},{"x":11,"y":20},{"x":28,"y":-20},{"x":-25,"y":-53},{"x":-50,"y":30},{"x":-56,"y":-16},{"x":-41,"y":75},{"x":-86,"y":-57},{"x":-12,"y":-34},{"x":-69,"y":-7},{"x":1,"y":28},{"x":-81,"y":13},{"x":2,"y":50},{"x":-22,"y":8},{"x":53,"y":24},{"x":-45,"y":1},{"x":-26,"y":40},{"x":-56,"y":-98},{"x":-58,"y":7},{"x":-5,"y":75},{"x":-40,"y":-19},{"x":-30,"y":65},{"x":11,"y":31},{"x":13,"y":-41},{"x":56,"y":37},{"x":-20,"y":60},{"x":30,"y":32},{"x":-47,"y":87},{"x":-27,"y":-82},{"x":-76,"y":-24},{"x":-28,"y":23},{"x":-14,"y":-34},{"x":-67,"y":-20}],"type":"coastline"},{"arc":[{"x":127073,"y":137725},{"x":89,"y":-55},{"x":31,"y":23},{"x":68,"y":-33},{"x":123,"y":193},{"x":26,"y":-25},{"x":35,"y":21},{"x":-9,"y":39},{"x":62,"y":-1},{"x":-4,"y":57},{"x":91,"y":-50},{"x":6,"y":-28},{"x":-60,"y":-25},{"x":2,"y":-30},{"x":-161,"y":-105},{"x":-46,"y":-118},{"x":-37,"y":30},{"x":-59,"y":-163},{"x":-25,"y":-7},{"x":-117,"y":97},{"x":-32,"y":-5}],"type":"coastline"},{"arc":[{"x":127402,"y":136176},{"x":35,"y":-46},{"x":45,"y":-4},{"x":52,"y":75},{"x":62,"y":13},{"x":150,"y":-65},{"x":42,"y":47},{"x":100,"y":-8},{"x":90,"y":93},{"x":64,"y":-38},{"x":36,"y":10}],"type":"admin"},{"arc":[{"x":123940,"y":135778},{"x":-442,"y":-208},{"x":-421,"y":-149}],"type":"coastline"},{"arc":[{"x":123077,"y":135421},{"x":78,"y":-134},{"x":-16,"y":-132},{"x":179,"y":7},{"x":47,"y":-29},{"x":2,"y":-46},{"x":197,"y":-43},{"x":3,"y":-40},{"x":59,"y":-9},{"x":73,"y":-77},{"x":-36,"y":-24},{"x":-20,"y":-164},{"x":67,"y":-49},{"x":34,"y":-90},{"x":54,"y":-9},{"x":13,"y":-21},{"x":-34,"y":-16}],"type":"area"},{"arc":[{"x":123077,"y":135421},{"x":-330,"y":-101},{"x":-91,"y":-11},{"x":-13,"y":24},{"x":-45,"y":-92},{"x":-27,"y":43},{"x":40,"y":48},{"x":-154,"y":-114}],"type":"coastline"},{"arc":[{"x":122457,"y":135218},{"x":50,"y":-44},{"x":120,"y":-276},{"x":-30,"y":-89},{"x":-34,"y":-6},{"x":-69,"y":52},{"x":-42,"y":-16},{"x":18,"y":-121},{"x":97,"y":-182},{"x":73,"y":-60},{"x":241,"y":-15},{"x":9,"y":-33},{"x":-44,"y":-73},{"x":55,"y":-79},{"x":104,"y":-40},{"x":6,"y":-103},{"x":174,"y":-57}],"type":"admin"},{"arc":[{"x":142080,"y":138730},{"x":-74,"y":-8},{"x":5,"y":-56},{"x":-59,"y":-69},{"x":47,"y":-183},{"x":-150,"y":-166},{"x":17,"y":-44},{"x":-53,"y":-41},{"x":-96,"y":-24},{"x":7,"y":-31},{"x":-71,"y":-63},{"x":25,"y":-61},{"x":-43,"y":-63},{"x":-81,"y":-35},{"x":-38,"y":52},{"x":-44,"y":-28},{"x":-3,"y":-45},{"x":59,"y":-67},{"x":-27,"y":-39}],"type":"admin"},{"arc":[{"x":141501,"y":137759},{"x":3,"y":-28},{"x":-45,"y":-2},{"x":28,"y":-28},{"x":-15,"y":-18},{"x":-72,"y":28},{"x":-42,"y":-24},{"x":9,"y":-41},{"x":-29,"y":-22},{"x":29,"y":-34},{"x":-62,"y":-39}],"type":"admin"},{"arc":[{"x":141305,"y":137551},{"x":72,"y":-122},{"x":-67,"y":-41},{"x":-13,"y":22},{"x":-56,"y":-5},{"x":-10,"y":-22},{"x":-14,"y":19},{"x":7,"y":-35},{"x":-119,"y":-64},{"x":-43,"y":26}],"type":"admin"},{"arc":[{"x":141062,"y":137329},{"x":69,"y":-111},{"x":-54,"y":-51},{"x":47,"y":-69},{"x":-106,"y":-21}],"type":"admin"},{"arc":[{"x":141018,"y":137077},{"x":62,"y":-143},{"x":125,"y":-125},{"x":21,"y":-253},{"x":75,"y":-79},{"x":3,"y":-127},{"x":46,"y":-96},{"x":448,"y":-278}],"type":"area"},{"arc":[{"x":141798,"y":135976},{"x":89,"y":-15}],"type":"area"},{"arc":[{"x":141887,"y":135961},{"x":-38,"y":398},{"x":163,"y":317},{"x":1027,"y":-74},{"x":77,"y":29}],"type":"area"},{"arc":[{"x":143116,"y":136631},{"x":-219,"y":633}],"type":"area"},{"arc":[{"x":142897,"y":137264},{"x":-80,"y":36},{"x":-363,"y":28},{"x":-102,"y":291},{"x":61,"y":138},{"x":-81,"y":50},{"x":2,"y":65},{"x":33,"y":14},{"x":3,"y":167},{"x":58,"y":22},{"x":-35,"y":96},{"x":41,"y":37},{"x":-79,"y":16},{"x":-36,"y":115},{"x":-55,"y":39},{"x":-98,"y":14},{"x":-13,"y":42},{"x":51,"y":28},{"x":53,"y":-6},{"x":45,"y":35},{"x":86,"y":-25},{"x":-6,"y":25},{"x":-82,"y":34},{"x":-64,"y":149},{"x":-156,"y":56}],"type":"area"},{"arc":[{"x":145395,"y":138671},{"x":-169,"y":19},{"x":-99,"y":-50},{"x":-156,"y":-2},{"x":-104,"y":-61},{"x":-84,"y":4},{"x":-61,"y":-25},{"x":-79,"y":38},{"x":-92,"y":-59},{"x":-68,"y":118},{"x":-59,"y":-10},{"x":-103,"y":75},{"x":-55,"y":-8},{"x":-159,"y":94},{"x":-67,"y":-27},{"x":-57,"y":11},{"x":-115,"y":60},{"x":-187,"y":-67},{"x":24,"y":-161},{"x":37,"y":-40},{"x":-21,"y":-41},{"x":-81,"y":-8},{"x":-227,"y":54},{"x":-149,"y":-35},{"x":-33,"y":-50},{"x":-73,"y":-29},{"x":-155,"y":-15},{"x":-10,"y":-71},{"x":-47,"y":-63},{"x":122,"y":-65},{"x":-24,"y":-80},{"x":55,"y":-17},{"x":-48,"y":-190},{"x":23,"y":-286},{"x":-37,"y":-76},{"x":-23,"y":-179},{"x":-117,"y":-165}],"type":"area"},{"arc":[{"x":143116,"y":136631},{"x":466,"y":-519},{"x":218,"y":-38},{"x":286,"y":224},{"x":69,"y":17},{"x":208,"y":-22},{"x":87,"y":-223},{"x":48,"y":-28},{"x":54,"y":40},{"x":113,"y":8},{"x":31,"y":40},{"x":119,"y":12},{"x":124,"y":-28},{"x":151,"y":35},{"x":32,"y":32},{"x":79,"y":-14},{"x":102,"y":20}],"type":"area"},{"arc":[{"x":139579,"y":136602},{"x":-21,"y":-101},{"x":46,"y":-26},{"x":71,"y":12},{"x":11,"y":-53},{"x":87,"y":-76},{"x":-56,"y":-74},{"x":63,"y":-67},{"x":-45,"y":-53},{"x":106,"y":-53},{"x":0,"y":-114},{"x":-53,"y":-41},{"x":-12,"y":-55}],"type":"admin"},{"arc":[{"x":139776,"y":135901},{"x":75,"y":-80},{"x":106,"y":-38},{"x":-9,"y":-96},{"x":60,"y":-88},{"x":-8,"y":-71},{"x":54,"y":-84},{"x":86,"y":-33},{"x":59,"y":17},{"x":22,"y":-40},{"x":35,"y":23},{"x":17,"y":-50},{"x":58,"y":-8},{"x":63,"y":-175},{"x":174,"y":-45},{"x":399,"y":-27},{"x":51,"y":-54}],"type":"area"},{"arc":[{"x":141538,"y":135264},{"x":101,"y":109},{"x":256,"y":458},{"x":18,"y":80},{"x":-26,"y":50}],"type":"area"},{"arc":[{"x":141798,"y":135976},{"x":-382,"y":55},{"x":-151,"y":93},{"x":-137,"y":25},{"x":-31,"y":-39},{"x":-4,"y":61},{"x":-90,"y":19},{"x":11,"y":56},{"x":-59,"y":12},{"x":23,"y":113},{"x":-58,"y":13},{"x":10,"y":53},{"x":-102,"y":21},{"x":7,"y":34},{"x":-26,"y":6},{"x":-23,"y":-54},{"x":-140,"y":99},{"x":-61,"y":-7},{"x":-38,"y":130},{"x":-91,"y":104},{"x":-19,"y":65},{"x":-82,"y":52},{"x":-46,"y":-13},{"x":-89,"y":112},{"x":-31,"y":-7},{"x":-82,"y":-127},{"x":-92,"y":-1},{"x":-17,"y":-57},{"x":-56,"y":-6},{"x":87,"y":-175},{"x":-34,"y":-21},{"x":5,"y":-53},{"x":-64,"y":3},{"x":14,"y":-71},{"x":-40,"y":-77},{"x":-61,"y":18},{"x":-26,"y":-19},{"x":-112,"y":144},{"x":-74,"y":12},{"x":-58,"y":53}],"type":"area"},{"arc":[{"x":139253,"y":134711},{"x":-43,"y":-45},{"x":-59,"y":67},{"x":-65,"y":-41},{"x":-77,"y":119},{"x":-80,"y":-39},{"x":-11,"y":17},{"x":-30,"y":-20},{"x":-44,"y":42},{"x":-35,"y":-21},{"x":-85,"y":124},{"x":-12,"y":79},{"x":-58,"y":20},{"x":-78,"y":74},{"x":-104,"y":-34},{"x":32,"y":-55},{"x":-55,"y":-13},{"x":-51,"y":21},{"x":-39,"y":-20}],"type":"area"},{"arc":[{"x":139726,"y":134301},{"x":-133,"y":223},{"x":-182,"y":37},{"x":-54,"y":128},{"x":-36,"y":-1},{"x":-18,"y":39},{"x":-50,"y":-16}],"type":"area"},{"arc":[{"x":139253,"y":135260},{"x":-39,"y":-46},{"x":29,"y":-45},{"x":-151,"y":-101},{"x":-14,"y":-43},{"x":36,"y":-52},{"x":-21,"y":-22},{"x":95,"y":-95},{"x":-14,"y":-21},{"x":79,"y":-124}],"type":"area"},{"arc":[{"x":140474,"y":134674},{"x":-207,"y":86},{"x":-110,"y":180},{"x":-25,"y":0},{"x":-32,"y":89},{"x":-88,"y":-23},{"x":-9,"y":79},{"x":-86,"y":45},{"x":-133,"y":3},{"x":-29,"y":-21},{"x":-52,"y":83},{"x":-112,"y":6},{"x":-91,"y":-32},{"x":-15,"y":-54},{"x":-75,"y":-53},{"x":-56,"y":78},{"x":8,"y":35},{"x":-109,"y":85}],"type":"area"},{"arc":[{"x":139253,"y":135260},{"x":-221,"y":124},{"x":-89,"y":113}],"type":"area"},{"arc":[{"x":138943,"y":135497},{"x":-62,"y":-23},{"x":-36,"y":31},{"x":-84,"y":-35},{"x":-56,"y":35},{"x":-33,"y":-24},{"x":-87,"y":12},{"x":-38,"y":82},{"x":-117,"y":-41},{"x":-120,"y":110},{"x":-152,"y":84}],"type":"area"},{"arc":[{"x":138158,"y":135728},{"x":-65,"y":-121},{"x":-112,"y":-46},{"x":-48,"y":12},{"x":-14,"y":-53}],"type":"area"},{"arc":[{"x":138820,"y":136963},{"x":-95,"y":31},{"x":-82,"y":-20},{"x":-129,"y":201},{"x":-43,"y":-11},{"x":0,"y":62},{"x":-45,"y":17},{"x":-13,"y":36},{"x":17,"y":44},{"x":-102,"y":52},{"x":-64,"y":-25},{"x":-48,"y":20},{"x":21,"y":85},{"x":-92,"y":37},{"x":-85,"y":172},{"x":62,"y":159},{"x":31,"y":15},{"x":-31,"y":44},{"x":45,"y":84},{"x":74,"y":70},{"x":34,"y":-4},{"x":4,"y":69},{"x":125,"y":109},{"x":-12,"y":150},{"x":-63,"y":78},{"x":61,"y":60},{"x":15,"y":74},{"x":170,"y":74},{"x":145,"y":20},{"x":71,"y":-43},{"x":30,"y":13}],"type":"admin"},{"arc":[{"x":138821,"y":138636},{"x":87,"y":129},{"x":-21,"y":87},{"x":-68,"y":12},{"x":-17,"y":103},{"x":94,"y":139},{"x":-68,"y":68},{"x":-42,"y":96},{"x":55,"y":149}],"type":"area"},{"arc":[{"x":135974,"y":135326},{"x":39,"y":-61},{"x":40,"y":-6},{"x":-25,"y":-48},{"x":49,"y":-11},{"x":144,"y":68},{"x":48,"y":110},{"x":54,"y":11}],"type":"admin"},{"arc":[{"x":136323,"y":135389},{"x":34,"y":-7},{"x":90,"y":-118},{"x":-48,"y":-43},{"x":16,"y":-69},{"x":80,"y":-33},{"x":128,"y":31},{"x":19,"y":-13},{"x":8,"y":-50},{"x":-36,"y":-48},{"x":-55,"y":-255},{"x":104,"y":22},{"x":56,"y":-96},{"x":54,"y":-14},{"x":-37,"y":-157}],"type":"admin"},{"arc":[{"x":136736,"y":134539},{"x":86,"y":-10},{"x":67,"y":-45},{"x":181,"y":24}],"type":"admin"},{"arc":[{"x":138158,"y":135728},{"x":-19,"y":40},{"x":38,"y":52},{"x":-39,"y":15},{"x":-1,"y":50},{"x":-111,"y":104},{"x":8,"y":53},{"x":38,"y":18},{"x":-35,"y":14},{"x":-101,"y":155},{"x":14,"y":41},{"x":87,"y":62},{"x":4,"y":38},{"x":77,"y":24},{"x":31,"y":65},{"x":30,"y":-26},{"x":27,"y":24},{"x":135,"y":-39},{"x":66,"y":-40},{"x":96,"y":32},{"x":55,"y":-49},{"x":91,"y":173},{"x":136,"y":-22},{"x":86,"y":49},{"x":57,"y":4}],"type":"area"},{"arc":[{"x":138928,"y":136565},{"x":-73,"y":116},{"x":38,"y":60},{"x":106,"y":45}],"type":"admin"},{"arc":[{"x":138999,"y":136786},{"x":-177,"y":100},{"x":60,"y":35},{"x":-62,"y":42}],"type":"area"},{"arc":[{"x":139776,"y":135901},{"x":-109,"y":-22},{"x":-57,"y":40},{"x":-229,"y":0},{"x":-59,"y":-65},{"x":-49,"y":-2}],"type":"admin"},{"arc":[{"x":139273,"y":135852},{"x":46,"y":-186},{"x":-135,"y":9},{"x":-171,"y":-50},{"x":-81,"y":-103},{"x":11,"y":-25}],"type":"area"},{"arc":[{"x":139273,"y":135852},{"x":-31,"y":59},{"x":-244,"y":71},{"x":-20,"y":53},{"x":-58,"y":30},{"x":6,"y":39},{"x":-44,"y":51},{"x":40,"y":22},{"x":39,"y":85},{"x":-7,"y":42},{"x":-65,"y":21},{"x":-5,"y":31},{"x":46,"y":17},{"x":141,"y":-54},{"x":11,"y":58},{"x":-37,"y":77},{"x":-48,"y":56},{"x":-44,"y":3},{"x":-25,"y":52}],"type":"admin"},{"arc":[{"x":142192,"y":133656},{"x":77,"y":-39},{"x":-39,"y":-55},{"x":-79,"y":-26},{"x":-24,"y":-85},{"x":-29,"y":-9},{"x":-18,"y":-57},{"x":33,"y":-51},{"x":178,"y":-99},{"x":79,"y":13},{"x":50,"y":-65},{"x":76,"y":-6},{"x":28,"y":-45},{"x":55,"y":11},{"x":37,"y":-20},{"x":60,"y":-145}],"type":"admin"},{"arc":[{"x":141018,"y":137077},{"x":-71,"y":44},{"x":-189,"y":9},{"x":-113,"y":57},{"x":11,"y":23},{"x":-171,"y":-3},{"x":15,"y":60},{"x":-57,"y":44},{"x":42,"y":22},{"x":-57,"y":109},{"x":53,"y":47},{"x":51,"y":7},{"x":38,"y":-41},{"x":44,"y":6},{"x":-15,"y":26},{"x":33,"y":20},{"x":-32,"y":67},{"x":-31,"y":-7},{"x":-33,"y":33},{"x":-14,"y":47},{"x":65,"y":12},{"x":-37,"y":57},{"x":76,"y":55},{"x":-85,"y":237},{"x":66,"y":226},{"x":-145,"y":185},{"x":-97,"y":-26},{"x":-21,"y":64},{"x":75,"y":60},{"x":1,"y":49}],"type":"admin"},{"arc":[{"x":140420,"y":138566},{"x":-41,"y":15},{"x":-10,"y":35},{"x":-36,"y":2},{"x":-63,"y":145},{"x":69,"y":46},{"x":-5,"y":96},{"x":107,"y":188},{"x":115,"y":47},{"x":108,"y":-112},{"x":92,"y":-46},{"x":101,"y":-15},{"x":108,"y":21},{"x":44,"y":30},{"x":16,"y":84},{"x":77,"y":16},{"x":-117,"y":147},{"x":-5,"y":55}],"type":"admin"},{"arc":[{"x":138821,"y":138636},{"x":108,"y":-53},{"x":5,"y":-25},{"x":89,"y":-29},{"x":57,"y":-57},{"x":18,"y":-92},{"x":46,"y":-3},{"x":63,"y":-73},{"x":-17,"y":-42},{"x":146,"y":-107},{"x":9,"y":-211},{"x":65,"y":-27},{"x":-49,"y":-25},{"x":-15,"y":-61},{"x":86,"y":-71},{"x":41,"y":-74},{"x":16,"y":-127},{"x":-7,"y":-44},{"x":-41,"y":-2},{"x":-8,"y":-114},{"x":-65,"y":-85},{"x":-41,"y":24},{"x":-156,"y":-4},{"x":1,"y":-19},{"x":-41,"y":-5},{"x":-32,"y":11},{"x":20,"y":43},{"x":-32,"y":11},{"x":-76,"y":-157},{"x":-58,"y":-64},{"x":-36,"y":12},{"x":-20,"y":-37},{"x":32,"y":-129},{"x":-109,"y":-37}],"type":"admin"},{"arc":[{"x":138999,"y":136786},{"x":-31,"y":-60},{"x":33,"y":-32},{"x":239,"y":-57},{"x":19,"y":37},{"x":34,"y":4},{"x":83,"y":-94},{"x":56,"y":34},{"x":16,"y":42},{"x":50,"y":-39},{"x":40,"y":20},{"x":41,"y":-39}],"type":"admin"},{"arc":[{"x":142244,"y":139145},{"x":-3,"y":-67},{"x":-35,"y":-45},{"x":46,"y":-39},{"x":-72,"y":-74},{"x":-11,"y":-61},{"x":-89,"y":-129}],"type":"admin"},{"arc":[{"x":141062,"y":137329},{"x":-40,"y":2},{"x":-46,"y":86},{"x":-99,"y":6},{"x":-28,"y":45},{"x":21,"y":13},{"x":-27,"y":42},{"x":44,"y":27},{"x":58,"y":-49},{"x":25,"y":14},{"x":75,"y":-43},{"x":56,"y":-2},{"x":-49,"y":68},{"x":-57,"y":206}],"type":"area"},{"arc":[{"x":140995,"y":137744},{"x":-66,"y":190},{"x":-43,"y":2},{"x":1,"y":105},{"x":35,"y":57}],"type":"area"},{"arc":[{"x":140922,"y":138098},{"x":-133,"y":55},{"x":-59,"y":-6},{"x":-58,"y":121},{"x":-102,"y":69},{"x":-5,"y":146},{"x":-79,"y":71},{"x":-66,"y":12}],"type":"area"},{"arc":[{"x":141305,"y":137551},{"x":-46,"y":77},{"x":-85,"y":-31},{"x":-12,"y":25},{"x":-51,"y":-13},{"x":-46,"y":64},{"x":30,"y":16},{"x":-15,"y":52},{"x":-85,"y":3}],"type":"area"},{"arc":[{"x":141501,"y":137759},{"x":-165,"y":159},{"x":-155,"y":88},{"x":-41,"y":79},{"x":-27,"y":-37},{"x":-67,"y":52},{"x":-57,"y":-27},{"x":-67,"y":25}],"type":"area"},{"arc":[{"x":140511,"y":132455},{"x":-37,"y":-22},{"x":-93,"y":32},{"x":-101,"y":-77},{"x":-102,"y":38},{"x":-26,"y":-16},{"x":-28,"y":18},{"x":-257,"y":-4},{"x":-37,"y":19},{"x":-10,"y":48},{"x":-55,"y":-50},{"x":-8,"y":-47},{"x":-65,"y":29},{"x":35,"y":69},{"x":-35,"y":102},{"x":-33,"y":-36},{"x":16,"y":51},{"x":-26,"y":6},{"x":-65,"y":-77},{"x":7,"y":58},{"x":57,"y":36},{"x":-54,"y":1},{"x":-24,"y":36},{"x":-17,"y":-67},{"x":-19,"y":22},{"x":26,"y":36},{"x":-55,"y":6},{"x":16,"y":31},{"x":-37,"y":-36},{"x":-15,"y":47},{"x":-69,"y":-34},{"x":-5,"y":64},{"x":-57,"y":5},{"x":-1,"y":-38},{"x":-77,"y":-13},{"x":-15,"y":-95},{"x":-221,"y":118}],"type":"area"},{"arc":[{"x":139024,"y":132715},{"x":61,"y":-57},{"x":20,"y":-172},{"x":-45,"y":-6},{"x":6,"y":-75},{"x":-41,"y":-19},{"x":24,"y":-24},{"x":-154,"y":-26}],"type":"area"},{"arc":[{"x":138895,"y":132336},{"x":2,"y":-65}],"type":"area"},{"arc":[{"x":138897,"y":132271},{"x":65,"y":-47},{"x":104,"y":-1},{"x":46,"y":-72},{"x":39,"y":-11},{"x":-8,"y":-34},{"x":102,"y":36},{"x":43,"y":-8},{"x":-3,"y":-48},{"x":100,"y":17},{"x":8,"y":-53},{"x":102,"y":-68},{"x":-43,"y":-40},{"x":56,"y":7},{"x":134,"y":-76},{"x":-68,"y":-46},{"x":43,"y":-82},{"x":49,"y":12},{"x":27,"y":-60},{"x":-39,"y":-32},{"x":82,"y":-1},{"x":70,"y":49},{"x":51,"y":-87},{"x":-101,"y":-86},{"x":142,"y":-62},{"x":52,"y":44},{"x":38,"y":1},{"x":15,"y":-56},{"x":56,"y":7},{"x":46,"y":-29},{"x":14,"y":17},{"x":-56,"y":58},{"x":104,"y":166},{"x":141,"y":56},{"x":141,"y":-33},{"x":161,"y":1},{"x":103,"y":34},{"x":-8,"y":87},{"x":30,"y":28},{"x":-47,"y":235},{"x":61,"y":42},{"x":-9,"y":67},{"x":42,"y":37},{"x":-8,"y":49},{"x":-115,"y":60},{"x":-45,"y":76},{"x":-103,"y":30}],"type":"area"},{"arc":[{"x":139024,"y":132715},{"x":-201,"y":19}],"type":"area"},{"arc":[{"x":138823,"y":132734},{"x":18,"y":-154},{"x":-39,"y":-144},{"x":63,"y":-17},{"x":-16,"y":-57},{"x":46,"y":-26}],"type":"area"},{"arc":[{"x":138776,"y":133237},{"x":45,"y":-112},{"x":-24,"y":-50},{"x":-89,"y":-40},{"x":1,"y":-104}],"type":"area"},{"arc":[{"x":138709,"y":132931},{"x":21,"y":2},{"x":19,"y":-66},{"x":-16,"y":-131}],"type":"area"},{"arc":[{"x":138733,"y":132736},{"x":90,"y":-2}],"type":"area"},{"arc":[{"x":140511,"y":132455},{"x":-40,"y":90},{"x":89,"y":184},{"x":43,"y":22},{"x":170,"y":-31},{"x":102,"y":52},{"x":60,"y":-60},{"x":42,"y":-1},{"x":113,"y":-131},{"x":84,"y":-34},{"x":64,"y":9},{"x":94,"y":85},{"x":238,"y":-15},{"x":144,"y":-71},{"x":-26,"y":-149},{"x":87,"y":-120},{"x":68,"y":49},{"x":36,"y":-20},{"x":99,"y":13},{"x":22,"y":-51}],"type":"area"},{"arc":[{"x":138733,"y":132736},{"x":-71,"y":-3}],"type":"area"},{"arc":[{"x":138662,"y":132733},{"x":-2,"y":-243},{"x":-36,"y":-24},{"x":0,"y":24},{"x":-30,"y":3},{"x":-1,"y":-126},{"x":-27,"y":-1},{"x":0,"y":-32}],"type":"area"},{"arc":[{"x":138566,"y":132334},{"x":150,"y":-1},{"x":4,"y":-91},{"x":95,"y":0},{"x":82,"y":29}],"type":"area"},{"arc":[{"x":138709,"y":132931},{"x":-26,"y":-41},{"x":-107,"y":46},{"x":-154,"y":-40},{"x":-32,"y":20},{"x":-48,"y":-26},{"x":-89,"y":11}],"type":"area"},{"arc":[{"x":138253,"y":132901},{"x":-5,"y":-35},{"x":75,"y":-97},{"x":-42,"y":20},{"x":-2,"y":-58},{"x":-48,"y":2},{"x":38,"y":-12},{"x":1,"y":-59}],"type":"area"},{"arc":[{"x":138270,"y":132662},{"x":48,"y":31},{"x":65,"y":1}],"type":"area"},{"arc":[{"x":138383,"y":132694},{"x":137,"y":-5},{"x":142,"y":44}],"type":"area"},{"arc":[{"x":138383,"y":132694},{"x":27,"y":-11},{"x":15,"y":-132},{"x":-48,"y":-203},{"x":55,"y":-72}],"type":"area"},{"arc":[{"x":138432,"y":132276},{"x":101,"y":18},{"x":3,"y":40},{"x":30,"y":0}],"type":"area"},{"arc":[{"x":138270,"y":132662},{"x":-75,"y":-52},{"x":2,"y":-74},{"x":-71,"y":2},{"x":-104,"y":-104},{"x":-142,"y":-30},{"x":-5,"y":-24},{"x":121,"y":-48},{"x":-35,"y":-106},{"x":-70,"y":25},{"x":-12,"y":-68}],"type":"area"},{"arc":[{"x":137879,"y":132183},{"x":107,"y":-9},{"x":65,"y":-82},{"x":86,"y":5},{"x":12,"y":-51}],"type":"admin"},{"arc":[{"x":138149,"y":132046},{"x":65,"y":-2},{"x":1,"y":177},{"x":58,"y":-1},{"x":86,"y":-68}],"type":"area"},{"arc":[{"x":138359,"y":132152},{"x":50,"y":33},{"x":23,"y":91}],"type":"area"},{"arc":[{"x":138359,"y":132152},{"x":214,"y":-74},{"x":27,"y":-65},{"x":-12,"y":-107},{"x":122,"y":-24},{"x":60,"y":-43},{"x":-14,"y":-80},{"x":69,"y":-115},{"x":15,"y":-83},{"x":158,"y":-71},{"x":-90,"y":-118}],"type":"area"},{"arc":[{"x":138908,"y":131372},{"x":202,"y":-138},{"x":-17,"y":-49},{"x":60,"y":-47},{"x":160,"y":2},{"x":112,"y":48},{"x":49,"y":-34},{"x":-21,"y":-108},{"x":-55,"y":-41},{"x":104,"y":-45},{"x":85,"y":-103},{"x":218,"y":81}],"type":"admin"},{"arc":[{"x":138253,"y":132901},{"x":-84,"y":36},{"x":-88,"y":-7},{"x":-98,"y":31},{"x":67,"y":73},{"x":-34,"y":85},{"x":30,"y":51},{"x":47,"y":-7},{"x":-19,"y":47},{"x":93,"y":22},{"x":-8,"y":88},{"x":71,"y":80},{"x":-45,"y":29},{"x":23,"y":60},{"x":-38,"y":23},{"x":-64,"y":171}],"type":"area"},{"arc":[{"x":137947,"y":133838},{"x":46,"y":-169},{"x":76,"y":-27},{"x":3,"y":-89},{"x":-113,"y":-39},{"x":-1,"y":-26},{"x":-55,"y":38},{"x":-47,"y":-7},{"x":-13,"y":25},{"x":-107,"y":-28},{"x":-5,"y":-75},{"x":65,"y":49},{"x":4,"y":-90},{"x":-20,"y":3},{"x":24,"y":-60},{"x":-111,"y":-12},{"x":-10,"y":-116},{"x":43,"y":-54},{"x":82,"y":-21},{"x":14,"y":-35},{"x":-29,"y":-14},{"x":14,"y":-31},{"x":-29,"y":-52},{"x":26,"y":11},{"x":22,"y":-24},{"x":-102,"y":-51},{"x":-163,"y":-22},{"x":-11,"y":-141},{"x":-102,"y":-158}],"type":"admin"},{"arc":[{"x":137448,"y":132623},{"x":-49,"y":-81},{"x":94,"y":-75},{"x":-86,"y":-57},{"x":-25,"y":-148},{"x":-48,"y":-78},{"x":-12,"y":12},{"x":43,"y":-59},{"x":-28,"y":21}],"type":"admin"},{"arc":[{"x":137337,"y":132158},{"x":-66,"y":27},{"x":-8,"y":-23},{"x":-21,"y":9},{"x":14,"y":30}],"type":"admin"},{"arc":[{"x":137256,"y":132201},{"x":-45,"y":14}],"type":"admin"},{"arc":[{"x":137211,"y":132215},{"x":-14,"y":-21},{"x":-3,"y":33}],"type":"admin"},{"arc":[{"x":137194,"y":132227},{"x":-36,"y":63}],"type":"admin"},{"arc":[{"x":137158,"y":132290},{"x":-25,"y":-12},{"x":-62,"y":54}],"type":"admin"},{"arc":[{"x":137071,"y":132332},{"x":-42,"y":-3}],"type":"admin"},{"arc":[{"x":137029,"y":132329},{"x":99,"y":-176},{"x":56,"y":3},{"x":1,"y":-39},{"x":75,"y":0},{"x":-6,"y":-19},{"x":36,"y":-11},{"x":-11,"y":-37},{"x":51,"y":-24}],"type":"admin"},{"arc":[{"x":137330,"y":132026},{"x":21,"y":25},{"x":98,"y":10}],"type":"admin"},{"arc":[{"x":137449,"y":132061},{"x":100,"y":79},{"x":114,"y":33},{"x":1,"y":-29},{"x":50,"y":0}],"type":"admin"},{"arc":[{"x":137714,"y":132144},{"x":83,"y":-8},{"x":15,"y":30},{"x":67,"y":17}],"type":"admin"},{"arc":[{"x":138149,"y":132046},{"x":28,"y":-55},{"x":38,"y":-1},{"x":-24,"y":-123},{"x":30,"y":-47},{"x":-64,"y":0},{"x":-197,"y":128},{"x":-23,"y":-7}],"type":"admin"},{"arc":[{"x":137937,"y":131941},{"x":-13,"y":-210},{"x":-81,"y":-104},{"x":-39,"y":-7},{"x":-9,"y":-43},{"x":-32,"y":-4},{"x":15,"y":-55},{"x":-56,"y":-112}],"type":"admin"},{"arc":[{"x":137722,"y":131406},{"x":18,"y":-71},{"x":45,"y":-36},{"x":-12,"y":-49}],"type":"admin"},{"arc":[{"x":137773,"y":131250},{"x":15,"y":-45},{"x":-92,"y":-88},{"x":8,"y":-164},{"x":98,"y":42},{"x":-12,"y":28},{"x":90,"y":50},{"x":-6,"y":22},{"x":28,"y":-16},{"x":26,"y":25},{"x":147,"y":26},{"x":7,"y":23},{"x":165,"y":-56}],"type":"admin"},{"arc":[{"x":138247,"y":131097},{"x":41,"y":98},{"x":-23,"y":47},{"x":36,"y":144},{"x":86,"y":-38},{"x":196,"y":14},{"x":45,"y":74},{"x":78,"y":7},{"x":145,"y":-107},{"x":57,"y":36}],"type":"admin"},{"arc":[{"x":144377,"y":128004},{"x":-4,"y":-16},{"x":12,"y":37},{"x":24,"y":-7},{"x":-25,"y":8},{"x":-7,"y":-22}],"type":"coastline"},{"arc":[{"x":144618,"y":128212},{"x":-19,"y":18},{"x":-30,"y":-19},{"x":-6,"y":-48},{"x":55,"y":49}],"type":"coastline"},{"arc":[{"x":144809,"y":128316},{"x":-14,"y":18},{"x":-8,"y":-19},{"x":22,"y":1}],"type":"coastline"},{"arc":[{"x":144907,"y":128296},{"x":-16,"y":55},{"x":-35,"y":-97},{"x":61,"y":9},{"x":-10,"y":33}],"type":"coastline"},{"arc":[{"x":145800,"y":129693},{"x":-19,"y":39},{"x":5,"y":-51},{"x":14,"y":12}],"type":"coastline"},{"arc":[{"x":145924,"y":128814},{"x":-19,"y":29},{"x":-38,"y":-15},{"x":57,"y":-14}],"type":"coastline"},{"arc":[{"x":144362,"y":129619},{"x":-30,"y":-40},{"x":-88,"y":-38},{"x":-3,"y":-41},{"x":-54,"y":-10},{"x":-12,"y":-44},{"x":-104,"y":-90},{"x":-33,"y":-107},{"x":62,"y":-71},{"x":-99,"y":-80},{"x":-15,"y":-55},{"x":40,"y":-62},{"x":-119,"y":-35},{"x":-36,"y":10},{"x":-48,"y":-33},{"x":-146,"y":69},{"x":-75,"y":-16},{"x":4,"y":-51},{"x":-134,"y":-96},{"x":-51,"y":-96},{"x":32,"y":-38},{"x":41,"y":15},{"x":104,"y":-49},{"x":-22,"y":-98},{"x":55,"y":-85},{"x":-43,"y":-94},{"x":-60,"y":-6},{"x":-25,"y":-29},{"x":87,"y":-89},{"x":-87,"y":-101},{"x":13,"y":-62},{"x":-59,"y":-132},{"x":86,"y":-138},{"x":90,"y":-17},{"x":21,"y":-75},{"x":-27,"y":-180},{"x":41,"y":-43},{"x":-1,"y":-59},{"x":-6,"y":-68},{"x":-45,"y":-38},{"x":6,"y":-121},{"x":31,"y":-47},{"x":-27,"y":-54}],"type":"area"},{"arc":[{"x":144374,"y":126404},{"x":26,"y":25},{"x":-8,"y":128},{"x":71,"y":111},{"x":94,"y":11},{"x":48,"y":79},{"x":101,"y":81},{"x":106,"y":-4},{"x":40,"y":87},{"x":-3,"y":96},{"x":99,"y":26},{"x":132,"y":134},{"x":-49,"y":77},{"x":40,"y":129},{"x":-50,"y":64},{"x":-107,"y":57},{"x":-25,"y":60},{"x":-50,"y":20},{"x":-30,"y":108},{"x":124,"y":38},{"x":211,"y":9}],"type":"area"},{"arc":[{"x":145144,"y":127740},{"x":-50,"y":228},{"x":131,"y":66},{"x":40,"y":65},{"x":-98,"y":36},{"x":-26,"y":52},{"x":-78,"y":-3},{"x":-66,"y":34},{"x":-120,"y":-29},{"x":-58,"y":-42},{"x":-5,"y":-38},{"x":-45,"y":-14},{"x":-73,"y":20},{"x":-16,"y":-84},{"x":-44,"y":1},{"x":27,"y":32},{"x":-31,"y":21},{"x":-55,"y":-70},{"x":-24,"y":44},{"x":23,"y":8},{"x":-159,"y":-42},{"x":-9,"y":-54},{"x":-72,"y":25},{"x":16,"y":19},{"x":-32,"y":16},{"x":31,"y":10},{"x":-15,"y":41},{"x":71,"y":-7},{"x":-18,"y":51},{"x":31,"y":-12},{"x":27,"y":16},{"x":-16,"y":12},{"x":49,"y":-21},{"x":20,"y":48},{"x":42,"y":9},{"x":20,"y":45},{"x":35,"y":21},{"x":28,"y":105},{"x":50,"y":-19},{"x":31,"y":34},{"x":-23,"y":-84},{"x":43,"y":15},{"x":40,"y":75},{"x":39,"y":-15},{"x":17,"y":23},{"x":46,"y":-30},{"x":-36,"y":37},{"x":9,"y":35},{"x":-24,"y":-16},{"x":-25,"y":18},{"x":-12,"y":62},{"x":35,"y":65},{"x":-21,"y":63},{"x":39,"y":20},{"x":-16,"y":48},{"x":-32,"y":-9},{"x":-40,"y":42},{"x":-48,"y":-58},{"x":6,"y":-46},{"x":-57,"y":-8},{"x":16,"y":117},{"x":-38,"y":30},{"x":44,"y":-7},{"x":53,"y":67},{"x":-66,"y":22},{"x":16,"y":43},{"x":74,"y":-34},{"x":94,"y":27},{"x":27,"y":35},{"x":26,"y":-31},{"x":52,"y":30},{"x":-10,"y":-71},{"x":102,"y":-35},{"x":12,"y":38},{"x":76,"y":33},{"x":28,"y":-24},{"x":-6,"y":-65},{"x":-61,"y":-43},{"x":-94,"y":-9},{"x":-23,"y":-39},{"x":50,"y":-78},{"x":-28,"y":-88},{"x":16,"y":-52},{"x":-38,"y":-35},{"x":32,"y":-52},{"x":-10,"y":-73},{"x":31,"y":20},{"x":11,"y":-34},{"x":30,"y":55},{"x":75,"y":-36},{"x":9,"y":42},{"x":35,"y":18},{"x":29,"y":-11},{"x":-14,"y":-30},{"x":32,"y":-74},{"x":-22,"y":64},{"x":51,"y":-74},{"x":91,"y":-14},{"x":195,"y":25},{"x":52,"y":39},{"x":-17,"y":19},{"x":-76,"y":-4},{"x":-20,"y":44},{"x":82,"y":95},{"x":30,"y":108},{"x":129,"y":119},{"x":-10,"y":56},{"x":-59,"y":56},{"x":54,"y":94},{"x":22,"y":-12},{"x":8,"y":18},{"x":14,"y":-19},{"x":-21,"y":-4},{"x":36,"y":-6},{"x":15,"y":16},{"x":-69,"y":38},{"x":114,"y":113},{"x":-47,"y":140},{"x":47,"y":7},{"x":-13,"y":-31},{"x":66,"y":8},{"x":36,"y":38},{"x":39,"y":-27},{"x":-18,"y":45},{"x":39,"y":51},{"x":111,"y":-15},{"x":1,"y":109},{"x":35,"y":17},{"x":-2,"y":35},{"x":75,"y":12},{"x":-13,"y":39},{"x":69,"y":82},{"x":-47,"y":18},{"x":-55,"y":-36},{"x":-40,"y":24},{"x":39,"y":-55},{"x":-47,"y":-7},{"x":-15,"y":-55},{"x":-76,"y":45},{"x":-79,"y":-85},{"x":-20,"y":23},{"x":-104,"y":11},{"x":-17,"y":22},{"x":13,"y":26},{"x":24,"y":-27},{"x":-16,"y":31},{"x":26,"y":9},{"x":-22,"y":15},{"x":23,"y":68},{"x":-63,"y":36},{"x":-24,"y":-37},{"x":-30,"y":9},{"x":19,"y":75},{"x":-33,"y":-22},{"x":-48,"y":24},{"x":11,"y":137}],"type":"coastline"},{"arc":[{"x":146269,"y":129707},{"x":-41,"y":26},{"x":-114,"y":-12},{"x":27,"y":-60},{"x":14,"y":23},{"x":114,"y":23}],"type":"coastline"},{"arc":[{"x":147310,"y":129152},{"x":-77,"y":26},{"x":-63,"y":-44},{"x":49,"y":-22},{"x":91,"y":40}],"type":"coastline"},{"arc":[{"x":137247,"y":133716},{"x":-17,"y":-51},{"x":-90,"y":-31},{"x":-21,"y":-100},{"x":-67,"y":-45},{"x":-75,"y":-13},{"x":-6,"y":-57},{"x":-38,"y":-10},{"x":-32,"y":-77}],"type":"admin"},{"arc":[{"x":136901,"y":133332},{"x":7,"y":-27},{"x":-31,"y":-12},{"x":-38,"y":41}],"type":"admin"},{"arc":[{"x":136839,"y":133334},{"x":-20,"y":-92},{"x":63,"y":-149},{"x":49,"y":-50},{"x":-15,"y":-131},{"x":50,"y":-99},{"x":-18,"y":-201}],"type":"area"},{"arc":[{"x":136948,"y":132612},{"x":75,"y":-2},{"x":0,"y":77},{"x":149,"y":-13},{"x":-1,"y":-63},{"x":92,"y":3},{"x":10,"y":39},{"x":-31,"y":13},{"x":23,"y":18},{"x":100,"y":-37},{"x":12,"y":19},{"x":71,"y":-43}],"type":"admin"},{"arc":[{"x":147055,"y":127593},{"x":4,"y":-52},{"x":-34,"y":-43},{"x":-53,"y":-18},{"x":11,"y":26},{"x":-160,"y":-135},{"x":-235,"y":-74},{"x":-57,"y":15},{"x":-69,"y":-27},{"x":-52,"y":-96},{"x":-63,"y":-20},{"x":-132,"y":-111},{"x":19,"y":10},{"x":-56,"y":-99},{"x":-200,"y":-92},{"x":-161,"y":-140},{"x":-145,"y":-52},{"x":-83,"y":21},{"x":-51,"y":-13},{"x":-56,"y":58},{"x":19,"y":-21},{"x":-54,"y":16},{"x":-11,"y":57},{"x":-31,"y":9},{"x":45,"y":81},{"x":117,"y":43},{"x":47,"y":-21},{"x":24,"y":-50},{"x":55,"y":3},{"x":112,"y":180},{"x":-7,"y":38},{"x":110,"y":49},{"x":113,"y":-22},{"x":-50,"y":102},{"x":44,"y":44},{"x":31,"y":-13},{"x":8,"y":40},{"x":40,"y":12},{"x":33,"y":53},{"x":76,"y":28},{"x":-21,"y":26},{"x":-127,"y":1},{"x":13,"y":-62},{"x":-30,"y":-30},{"x":-41,"y":20},{"x":-12,"y":-25},{"x":-58,"y":30},{"x":-7,"y":37},{"x":-30,"y":-32},{"x":-55,"y":4},{"x":-41,"y":45},{"x":-2,"y":135},{"x":-92,"y":70},{"x":-83,"y":-137},{"x":26,"y":-77},{"x":-41,"y":-4},{"x":36,"y":-46},{"x":35,"y":28},{"x":34,"y":-9},{"x":-1,"y":-81},{"x":-97,"y":-65},{"x":-118,"y":10},{"x":-105,"y":74},{"x":-24,"y":247},{"x":-40,"y":4},{"x":-21,"y":39},{"x":-50,"y":-12},{"x":-107,"y":171}],"type":"coastline"},{"arc":[{"x":147331,"y":126963},{"x":-30,"y":57},{"x":31,"y":80},{"x":-54,"y":124},{"x":49,"y":78},{"x":-28,"y":40},{"x":104,"y":177},{"x":-48,"y":62},{"x":11,"y":30},{"x":-111,"y":6},{"x":-87,"y":-102},{"x":-47,"y":64},{"x":-36,"y":-26},{"x":-30,"y":40}],"type":"admin"},{"arc":[{"x":138247,"y":131097},{"x":-19,"y":-192},{"x":-46,"y":-25},{"x":15,"y":-32},{"x":120,"y":-69},{"x":-88,"y":-120},{"x":-78,"y":4},{"x":-34,"y":24},{"x":-4,"y":48},{"x":-59,"y":3},{"x":-29,"y":-160},{"x":-125,"y":-8},{"x":-64,"y":-53},{"x":-49,"y":1},{"x":-23,"y":19},{"x":109,"y":34},{"x":9,"y":24},{"x":-62,"y":8},{"x":-51,"y":-28},{"x":71,"y":93},{"x":-26,"y":97},{"x":-184,"y":1},{"x":-71,"y":-84}],"type":"admin"},{"arc":[{"x":137559,"y":130682},{"x":14,"y":-131},{"x":-30,"y":-73},{"x":38,"y":-41},{"x":-42,"y":-84},{"x":66,"y":-54},{"x":63,"y":21},{"x":43,"y":-132}],"type":"admin"},{"arc":[{"x":137711,"y":130188},{"x":60,"y":-44},{"x":3,"y":-43},{"x":130,"y":-25},{"x":29,"y":-107},{"x":-64,"y":-47},{"x":-6,"y":-55},{"x":83,"y":-101}],"type":"admin"},{"arc":[{"x":137946,"y":129766},{"x":38,"y":-38},{"x":86,"y":66},{"x":66,"y":-63},{"x":24,"y":4},{"x":31,"y":57},{"x":-36,"y":-8},{"x":52,"y":48},{"x":-9,"y":-28},{"x":103,"y":-9},{"x":81,"y":-44},{"x":91,"y":103},{"x":47,"y":-104},{"x":30,"y":-12},{"x":-4,"y":-110},{"x":85,"y":-117},{"x":3,"y":-82},{"x":75,"y":-122},{"x":3,"y":-69},{"x":-73,"y":-129},{"x":118,"y":-116},{"x":-61,"y":-68},{"x":50,"y":-60},{"x":-24,"y":-35},{"x":34,"y":-52},{"x":-15,"y":-76},{"x":128,"y":-41},{"x":77,"y":43},{"x":56,"y":2}],"type":"admin"},{"arc":[{"x":136839,"y":133334},{"x":-20,"y":36}],"type":"admin"},{"arc":[{"x":136819,"y":133370},{"x":-125,"y":6},{"x":-25,"y":80},{"x":-75,"y":1},{"x":-55,"y":69},{"x":-55,"y":-26},{"x":-89,"y":21}],"type":"admin"},{"arc":[{"x":136395,"y":133521},{"x":19,"y":-279},{"x":-52,"y":-127},{"x":-8,"y":-184}],"type":"admin"},{"arc":[{"x":136354,"y":132931},{"x":118,"y":-91},{"x":50,"y":-197},{"x":179,"y":-103}],"type":"area"},{"arc":[{"x":136701,"y":132540},{"x":208,"y":-5},{"x":35,"y":-30}],"type":"area"},{"arc":[{"x":136944,"y":132505},{"x":4,"y":107}],"type":"admin"},{"arc":[{"x":137714,"y":132144},{"x":1,"y":-148},{"x":154,"y":-13},{"x":68,"y":-42}],"type":"area"},{"arc":[{"x":137449,"y":132061},{"x":36,"y":-105},{"x":-43,"y":-16},{"x":0,"y":-41},{"x":66,"y":-33},{"x":15,"y":-111},{"x":-123,"y":-102}],"type":"admin"},{"arc":[{"x":137400,"y":131653},{"x":-26,"y":-33},{"x":37,"y":-2},{"x":-17,"y":-20},{"x":73,"y":-83},{"x":0,"y":-54},{"x":92,"y":-3},{"x":12,"y":55},{"x":96,"y":-44},{"x":55,"y":-63}],"type":"admin"},{"arc":[{"x":136367,"y":132315},{"x":8,"y":-71},{"x":38,"y":-10}],"type":"admin"},{"arc":[{"x":136413,"y":132234},{"x":32,"y":23},{"x":-15,"y":48},{"x":-63,"y":10}],"type":"area"},{"arc":[{"x":137158,"y":132290},{"x":-87,"y":42}],"type":"admin"},{"arc":[{"x":137211,"y":132215},{"x":-17,"y":12}],"type":"admin"},{"arc":[{"x":137029,"y":132329},{"x":-46,"y":160},{"x":-39,"y":16}],"type":"admin"},{"arc":[{"x":136701,"y":132540},{"x":-1,"y":-66},{"x":27,"y":-10},{"x":-16,"y":-60},{"x":53,"y":-65},{"x":-43,"y":-47},{"x":-79,"y":-22},{"x":-59,"y":-65},{"x":-44,"y":21},{"x":-55,"y":-39}],"type":"area"},{"arc":[{"x":136484,"y":132187},{"x":120,"y":-79},{"x":68,"y":-10},{"x":54,"y":-50},{"x":9,"y":-31},{"x":-43,"y":-76},{"x":104,"y":-44},{"x":61,"y":41},{"x":0,"y":-34},{"x":95,"y":-2},{"x":43,"y":-90},{"x":68,"y":11},{"x":47,"y":-37}],"type":"admin"},{"arc":[{"x":137110,"y":131786},{"x":82,"y":29}],"type":"admin"},{"arc":[{"x":137192,"y":131815},{"x":138,"y":211}],"type":"admin"},{"arc":[{"x":137337,"y":132158},{"x":-81,"y":43}],"type":"admin"},{"arc":[{"x":136354,"y":132931},{"x":-149,"y":119},{"x":-184,"y":-46},{"x":-66,"y":28}],"type":"admin"},{"arc":[{"x":135955,"y":133032},{"x":-31,"y":-50},{"x":32,"y":-27},{"x":-15,"y":-69},{"x":-57,"y":2},{"x":-55,"y":-46},{"x":-8,"y":-82},{"x":24,"y":-31},{"x":-24,"y":-116},{"x":-131,"y":-62},{"x":-69,"y":82},{"x":4,"y":-63},{"x":-47,"y":-61},{"x":-38,"y":-5},{"x":-5,"y":-77},{"x":-64,"y":-54}],"type":"admin"},{"arc":[{"x":135471,"y":132373},{"x":44,"y":-1},{"x":-6,"y":-34},{"x":32,"y":-13},{"x":262,"y":-35}],"type":"admin"},{"arc":[{"x":135803,"y":132290},{"x":132,"y":125},{"x":37,"y":-13},{"x":31,"y":40},{"x":94,"y":33},{"x":157,"y":-101},{"x":79,"y":-18},{"x":34,"y":-41}],"type":"admin"},{"arc":[{"x":136413,"y":132234},{"x":71,"y":-47}],"type":"admin"},{"arc":[{"x":137192,"y":131815},{"x":90,"y":-79},{"x":57,"y":6},{"x":61,"y":-89}],"type":"admin"},{"arc":[{"x":136901,"y":133332},{"x":-33,"y":33},{"x":-49,"y":5}],"type":"area"},{"arc":[{"x":136395,"y":133521},{"x":13,"y":55},{"x":-40,"y":13},{"x":-17,"y":57},{"x":-97,"y":13}],"type":"area"},{"arc":[{"x":136254,"y":133659},{"x":-37,"y":-7},{"x":27,"y":26},{"x":1,"y":40},{"x":-103,"y":110},{"x":41,"y":-51},{"x":-115,"y":-42},{"x":119,"y":37},{"x":52,"y":-56},{"x":-1,"y":-37},{"x":-21,"y":-17},{"x":-40,"y":60},{"x":-63,"y":5}],"type":"area"},{"arc":[{"x":136736,"y":134539},{"x":-89,"y":-141},{"x":-148,"y":-88},{"x":18,"y":-129},{"x":-47,"y":-74},{"x":-46,"y":25},{"x":4,"y":-31},{"x":-63,"y":-66},{"x":44,"y":-117},{"x":-65,"y":35},{"x":-22,"y":-35},{"x":-68,"y":-259}],"type":"area"},{"arc":[{"x":135328,"y":134783},{"x":34,"y":-39},{"x":-40,"y":-40},{"x":3,"y":-37},{"x":101,"y":-41},{"x":-88,"y":-112},{"x":-48,"y":-9},{"x":34,"y":-66},{"x":-31,"y":-47},{"x":55,"y":-89},{"x":37,"y":-2},{"x":87,"y":59},{"x":33,"y":-16},{"x":30,"y":17},{"x":10,"y":-47},{"x":-37,"y":-24}],"type":"admin"},{"arc":[{"x":135635,"y":134197},{"x":-5,"y":72},{"x":71,"y":-13},{"x":54,"y":78},{"x":-8,"y":157},{"x":51,"y":18},{"x":25,"y":-24},{"x":118,"y":88},{"x":115,"y":21}],"type":"area"},{"arc":[{"x":136056,"y":134594},{"x":-46,"y":88},{"x":24,"y":60},{"x":-105,"y":33},{"x":-57,"y":-31},{"x":-26,"y":129},{"x":-241,"y":-15},{"x":-14,"y":-53},{"x":-103,"y":-25},{"x":-58,"y":26},{"x":-102,"y":-23}],"type":"area"},{"arc":[{"x":136323,"y":135389},{"x":86,"y":-349},{"x":-150,"y":-229},{"x":-65,"y":-44},{"x":25,"y":-86},{"x":-43,"y":-66},{"x":-72,"y":6},{"x":-48,"y":-27}],"type":"area"},{"arc":[{"x":135109,"y":132801},{"x":33,"y":-50},{"x":22,"y":-184}],"type":"admin"},{"arc":[{"x":135164,"y":132567},{"x":108,"y":15},{"x":68,"y":-81},{"x":58,"y":-14},{"x":28,"y":-88},{"x":45,"y":-26}],"type":"admin"},{"arc":[{"x":135303,"y":135669},{"x":-31,"y":-129},{"x":-201,"y":-37},{"x":-84,"y":-107},{"x":-95,"y":-15},{"x":25,"y":-148},{"x":65,"y":1},{"x":44,"y":-42},{"x":9,"y":-46},{"x":-56,"y":-54},{"x":-10,"y":-78},{"x":32,"y":2},{"x":7,"y":-63},{"x":243,"y":-26},{"x":38,"y":-63},{"x":47,"y":-16},{"x":-8,"y":-65}],"type":"admin"},{"arc":[{"x":148347,"y":127166},{"x":-40,"y":35},{"x":7,"y":29},{"x":-39,"y":-2},{"x":-49,"y":73},{"x":-33,"y":6},{"x":22,"y":87},{"x":-57,"y":-1},{"x":14,"y":-23},{"x":-35,"y":5},{"x":-18,"y":-25},{"x":-87,"y":63},{"x":4,"y":93},{"x":-41,"y":46},{"x":15,"y":43},{"x":-87,"y":-10},{"x":-14,"y":19},{"x":-2,"y":-19},{"x":-46,"y":-2},{"x":9,"y":55},{"x":-48,"y":28},{"x":21,"y":34},{"x":-65,"y":43},{"x":-116,"y":5},{"x":-126,"y":-35},{"x":11,"y":65},{"x":-71,"y":71},{"x":-17,"y":76},{"x":-41,"y":19},{"x":-30,"y":3},{"x":-16,"y":-43},{"x":-118,"y":-22},{"x":-45,"y":-40},{"x":-38,"y":23},{"x":-36,"y":-23},{"x":-145,"y":44},{"x":15,"y":-21},{"x":-45,"y":-62},{"x":65,"y":-38},{"x":-4,"y":-34},{"x":83,"y":75},{"x":43,"y":-13},{"x":-21,"y":-16},{"x":13,"y":-50},{"x":24,"y":0},{"x":-98,"y":-78},{"x":13,"y":-22},{"x":18,"y":23},{"x":18,"y":-51},{"x":-59,"y":-6}],"type":"coastline"},{"arc":[{"x":132142,"y":128424},{"x":-77,"y":12},{"x":-31,"y":-31},{"x":-82,"y":69},{"x":35,"y":16},{"x":51,"y":-12},{"x":-1,"y":10},{"x":50,"y":-12},{"x":29,"y":-27},{"x":-3,"y":10},{"x":-44,"y":25},{"x":-85,"y":7},{"x":-111,"y":-66},{"x":-23,"y":-39},{"x":49,"y":-34},{"x":-8,"y":39},{"x":34,"y":-13},{"x":97,"y":28},{"x":-102,"y":-77},{"x":146,"y":95},{"x":76,"y":0}],"type":"coastline"},{"arc":[{"x":131950,"y":129047},{"x":-91,"y":96},{"x":51,"y":55},{"x":-125,"y":130},{"x":-122,"y":-21},{"x":-65,"y":33},{"x":-130,"y":5},{"x":-39,"y":51},{"x":-48,"y":-7},{"x":-60,"y":36},{"x":-113,"y":-20},{"x":-5,"y":25},{"x":-112,"y":35},{"x":-185,"y":-58},{"x":-12,"y":42},{"x":-57,"y":24},{"x":-26,"y":51},{"x":-74,"y":26},{"x":-39,"y":-41},{"x":-67,"y":-6},{"x":-27,"y":-29},{"x":-109,"y":-20},{"x":-68,"y":26},{"x":-42,"y":-39}],"type":"area"},{"arc":[{"x":130385,"y":129441},{"x":-27,"y":-93}],"type":"admin"},{"arc":[{"x":130358,"y":129348},{"x":6,"y":-102}],"type":"admin"},{"arc":[{"x":130364,"y":129246},{"x":75,"y":-36},{"x":256,"y":-38},{"x":64,"y":-110},{"x":47,"y":-4},{"x":130,"y":-77},{"x":48,"y":8},{"x":90,"y":-44},{"x":56,"y":61},{"x":61,"y":-19},{"x":-31,"y":-89},{"x":101,"y":-38},{"x":-35,"y":-22},{"x":46,"y":-27},{"x":-29,"y":-45},{"x":259,"y":-104},{"x":92,"y":35},{"x":141,"y":-206},{"x":22,"y":9},{"x":19,"y":-28}],"type":"area"},{"arc":[{"x":131776,"y":128472},{"x":22,"y":15},{"x":13,"y":-20},{"x":-21,"y":-14},{"x":20,"y":-48},{"x":125,"y":101},{"x":-28,"y":23},{"x":-22,"y":-29},{"x":7,"y":24},{"x":-30,"y":-24},{"x":-10,"y":15},{"x":29,"y":32},{"x":38,"y":-3},{"x":-40,"y":5},{"x":-6,"y":28},{"x":53,"y":28},{"x":-7,"y":-46},{"x":83,"y":-42},{"x":30,"y":15},{"x":-52,"y":97},{"x":-34,"y":13},{"x":28,"y":-9},{"x":-2,"y":22},{"x":42,"y":-3},{"x":34,"y":-52},{"x":26,"y":7},{"x":-12,"y":35},{"x":52,"y":16},{"x":44,"y":-79},{"x":55,"y":28},{"x":77,"y":-17}],"type":"coastline"},{"arc":[{"x":132290,"y":128590},{"x":-146,"y":247},{"x":-194,"y":210}],"type":"admin"},{"arc":[{"x":136219,"y":129400},{"x":-14,"y":-6}],"type":"area"},{"arc":[{"x":136205,"y":129394},{"x":1,"y":-16},{"x":13,"y":22}],"type":"area"},{"arc":[{"x":135235,"y":129515},{"x":37,"y":-18},{"x":189,"y":14},{"x":8,"y":-34},{"x":108,"y":-2},{"x":-25,"y":-46},{"x":23,"y":-20},{"x":80,"y":4},{"x":28,"y":-59}],"type":"admin"},{"arc":[{"x":135683,"y":129354},{"x":108,"y":15},{"x":187,"y":-52}],"type":"admin"},{"arc":[{"x":135978,"y":129317},{"x":56,"y":26},{"x":46,"y":-8},{"x":-5,"y":53},{"x":60,"y":-15},{"x":13,"y":58},{"x":10,"y":-42},{"x":30,"y":0}],"type":"area"},{"arc":[{"x":136188,"y":129389},{"x":-16,"y":56},{"x":176,"y":234},{"x":-51,"y":76},{"x":-4,"y":82},{"x":64,"y":19},{"x":39,"y":45}],"type":"area"},{"arc":[{"x":136396,"y":129901},{"x":-181,"y":110},{"x":-39,"y":-46},{"x":-92,"y":11},{"x":-48,"y":-87},{"x":-50,"y":3},{"x":-39,"y":-56},{"x":-18,"y":24},{"x":-83,"y":-17},{"x":-62,"y":82},{"x":-66,"y":-37},{"x":-6,"y":-49},{"x":-44,"y":-32},{"x":-222,"y":-6}],"type":"area"},{"arc":[{"x":136205,"y":129394},{"x":-17,"y":-5}],"type":"area"},{"arc":[{"x":135978,"y":129317},{"x":1,"y":-27},{"x":80,"y":-42},{"x":3,"y":-33},{"x":59,"y":-27},{"x":-14,"y":-51}],"type":"admin"},{"arc":[{"x":136107,"y":129137},{"x":198,"y":-80},{"x":137,"y":76},{"x":109,"y":10},{"x":191,"y":-77},{"x":-1,"y":74},{"x":54,"y":76},{"x":61,"y":-13},{"x":201,"y":76}],"type":"admin"},{"arc":[{"x":137057,"y":129279},{"x":-35,"y":10},{"x":0,"y":53},{"x":-93,"y":59},{"x":-29,"y":73},{"x":-57,"y":33},{"x":-200,"y":4},{"x":-21,"y":-64},{"x":-117,"y":1},{"x":-112,"y":-36},{"x":-72,"y":17},{"x":-39,"y":-43},{"x":-63,"y":14}],"type":"area"},{"arc":[{"x":136413,"y":130174},{"x":-22,"y":-13},{"x":-55,"y":64},{"x":-48,"y":11},{"x":-4,"y":67},{"x":-109,"y":188},{"x":-54,"y":-15},{"x":-43,"y":18},{"x":-78,"y":-31}],"type":"area"},{"arc":[{"x":136000,"y":130463},{"x":-95,"y":-158},{"x":-217,"y":151},{"x":-6,"y":-26}],"type":"area"},{"arc":[{"x":136396,"y":129901},{"x":42,"y":35},{"x":25,"y":-7},{"x":8,"y":49},{"x":-53,"y":76},{"x":18,"y":59},{"x":-24,"y":10},{"x":1,"y":51}],"type":"area"},{"arc":[{"x":132632,"y":128903},{"x":-24,"y":17},{"x":-79,"y":-24},{"x":-9,"y":-68},{"x":-4,"y":39},{"x":-12,"y":-27},{"x":22,"y":-18},{"x":29,"y":34},{"x":4,"y":-61},{"x":28,"y":34},{"x":15,"y":-13},{"x":-29,"y":-33},{"x":26,"y":-25},{"x":-10,"y":13},{"x":94,"y":57}],"type":"coastline"},{"arc":[{"x":132683,"y":128828},{"x":-68,"y":47},{"x":17,"y":28}],"type":"area"},{"arc":[{"x":132531,"y":129087},{"x":-85,"y":82},{"x":49,"y":51},{"x":-33,"y":17}],"type":"area"},{"arc":[{"x":132462,"y":129237},{"x":-17,"y":-14},{"x":-17,"y":19},{"x":-1,"y":-20},{"x":-29,"y":32},{"x":-105,"y":-115},{"x":-36,"y":43},{"x":-79,"y":14},{"x":-45,"y":-135},{"x":-42,"y":10},{"x":-40,"y":-21}],"type":"area"},{"arc":[{"x":132051,"y":129050},{"x":7,"y":-40},{"x":66,"y":-53},{"x":96,"y":-29},{"x":51,"y":-142},{"x":113,"y":-124}],"type":"admin"},{"arc":[{"x":132384,"y":128662},{"x":38,"y":9},{"x":20,"y":-21},{"x":-20,"y":-12},{"x":78,"y":-86},{"x":202,"y":122},{"x":-196,"y":73},{"x":-73,"y":-44},{"x":-23,"y":25},{"x":57,"y":35},{"x":-15,"y":15},{"x":-61,"y":-29},{"x":-37,"y":40},{"x":85,"y":27},{"x":14,"y":33},{"x":-16,"y":-28},{"x":9,"y":34},{"x":-47,"y":6},{"x":23,"y":36},{"x":39,"y":-33},{"x":59,"y":49},{"x":-56,"y":-7},{"x":11,"y":44},{"x":-41,"y":-19},{"x":-18,"y":15},{"x":41,"y":48},{"x":43,"y":-35},{"x":75,"y":40},{"x":-44,"y":88}],"type":"coastline"},{"arc":[{"x":137773,"y":131250},{"x":-95,"y":2},{"x":-31,"y":47},{"x":-74,"y":-39},{"x":-139,"y":11},{"x":42,"y":66},{"x":-78,"y":-3},{"x":-28,"y":-28},{"x":-121,"y":12},{"x":-65,"y":121},{"x":-57,"y":-16},{"x":-23,"y":56},{"x":-79,"y":56},{"x":-27,"y":-6},{"x":34,"y":62},{"x":-36,"y":20},{"x":-29,"y":101}],"type":"admin"},{"arc":[{"x":136967,"y":131712},{"x":-196,"y":-87},{"x":-88,"y":-148},{"x":-111,"y":-37},{"x":-108,"y":0},{"x":-72,"y":-43},{"x":-107,"y":-21},{"x":-124,"y":-204},{"x":-93,"y":-56},{"x":-95,"y":-9}],"type":"area"},{"arc":[{"x":135973,"y":131107},{"x":-75,"y":-41},{"x":-64,"y":-83}],"type":"area"},{"arc":[{"x":135834,"y":130983},{"x":67,"y":-44},{"x":163,"y":-4}],"type":"area"},{"arc":[{"x":136064,"y":130935},{"x":183,"y":10},{"x":39,"y":74},{"x":29,"y":5},{"x":3,"y":-76},{"x":25,"y":0},{"x":37,"y":-128},{"x":74,"y":4},{"x":81,"y":-41},{"x":71,"y":28},{"x":72,"y":-39},{"x":18,"y":-101},{"x":34,"y":-24},{"x":69,"y":-32},{"x":35,"y":27},{"x":114,"y":-6},{"x":42,"y":-63},{"x":38,"y":46},{"x":28,"y":-17},{"x":-2,"y":40},{"x":17,"y":-20},{"x":34,"y":66},{"x":57,"y":-76},{"x":30,"y":-3},{"x":42,"y":44},{"x":61,"y":-13},{"x":24,"y":20},{"x":28,"y":-54},{"x":71,"y":98},{"x":18,"y":-14},{"x":70,"y":27},{"x":53,"y":-35}],"type":"area"},{"arc":[{"x":131009,"y":128647},{"x":-16,"y":10},{"x":105,"y":-58},{"x":-89,"y":48}],"type":"admin"},{"arc":[{"x":130364,"y":129246},{"x":-31,"y":-56},{"x":-73,"y":-41},{"x":25,"y":-162}],"type":"admin"},{"arc":[{"x":130285,"y":128987},{"x":77,"y":-32},{"x":-10,"y":-143},{"x":103,"y":-41}],"type":"area"},{"arc":[{"x":130455,"y":128771},{"x":79,"y":-7},{"x":70,"y":-59},{"x":30,"y":52},{"x":70,"y":-19},{"x":134,"y":29},{"x":-6,"y":-41},{"x":49,"y":-2},{"x":26,"y":-46},{"x":153,"y":-26},{"x":106,"y":-105},{"x":34,"y":23},{"x":-21,"y":-20},{"x":18,"y":-21},{"x":16,"y":18},{"x":3,"y":-44},{"x":13,"y":42},{"x":-19,"y":17},{"x":26,"y":-6},{"x":14,"y":-107}],"type":"admin"},{"arc":[{"x":131250,"y":128449},{"x":43,"y":-78},{"x":134,"y":-124},{"x":27,"y":-89}],"type":"area"},{"arc":[{"x":131454,"y":128158},{"x":4,"y":33},{"x":50,"y":27},{"x":38,"y":13},{"x":9,"y":-21},{"x":-5,"y":42},{"x":48,"y":-10},{"x":55,"y":66},{"x":-26,"y":31},{"x":49,"y":38},{"x":138,"y":12},{"x":-151,"y":21},{"x":113,"y":62}],"type":"coastline"},{"arc":[{"x":131896,"y":128262},{"x":-134,"y":84},{"x":-96,"y":-49},{"x":-80,"y":-104},{"x":65,"y":-43},{"x":-31,"y":4},{"x":12,"y":-17},{"x":234,"y":143},{"x":30,"y":-19},{"x":80,"y":0},{"x":-80,"y":1}],"type":"coastline"},{"arc":[{"x":135451,"y":131024},{"x":-62,"y":-18},{"x":31,"y":-242},{"x":-96,"y":-58},{"x":2,"y":-39},{"x":-28,"y":-7},{"x":-13,"y":47},{"x":-187,"y":90}],"type":"area"},{"arc":[{"x":135499,"y":130551},{"x":58,"y":159},{"x":113,"y":115}],"type":"area"},{"arc":[{"x":135670,"y":130825},{"x":-57,"y":105},{"x":-76,"y":-2},{"x":-13,"y":75},{"x":-49,"y":-3},{"x":-24,"y":24}],"type":"area"},{"arc":[{"x":135803,"y":132290},{"x":-45,"y":-82},{"x":87,"y":-91}],"type":"admin"},{"arc":[{"x":135845,"y":132117},{"x":25,"y":36},{"x":71,"y":13},{"x":60,"y":-22},{"x":24,"y":-57},{"x":31,"y":-5},{"x":32,"y":-133},{"x":-7,"y":-134},{"x":43,"y":-67},{"x":-49,"y":-29},{"x":-51,"y":-95},{"x":-124,"y":80},{"x":-8,"y":-16},{"x":-82,"y":13},{"x":-46,"y":-126}],"type":"area"},{"arc":[{"x":135764,"y":131575},{"x":15,"y":-21},{"x":-34,"y":-59},{"x":126,"y":-32},{"x":27,"y":-55},{"x":-2,"y":-119},{"x":60,"y":-11},{"x":17,"y":-171}],"type":"area"},{"arc":[{"x":136967,"y":131712},{"x":143,"y":74}],"type":"admin"},{"arc":[{"x":136064,"y":130935},{"x":-294,"y":-318},{"x":129,"y":14},{"x":-29,"y":-57},{"x":120,"y":1},{"x":-16,"y":-65},{"x":26,"y":-47}],"type":"area"},{"arc":[{"x":136413,"y":130174},{"x":107,"y":21},{"x":13,"y":-57},{"x":40,"y":-21},{"x":25,"y":66},{"x":85,"y":4},{"x":-1,"y":-25},{"x":112,"y":-29},{"x":48,"y":-59},{"x":49,"y":16},{"x":49,"y":-42},{"x":41,"y":15},{"x":41,"y":-16},{"x":10,"y":-33},{"x":-65,"y":-53},{"x":95,"y":-40}],"type":"area"},{"arc":[{"x":137062,"y":129921},{"x":57,"y":-39},{"x":74,"y":50},{"x":102,"y":0},{"x":29,"y":116},{"x":46,"y":6},{"x":36,"y":61},{"x":82,"y":-16},{"x":16,"y":34},{"x":33,"y":-1},{"x":64,"y":51},{"x":110,"y":5}],"type":"admin"},{"arc":[{"x":134098,"y":131624},{"x":-93,"y":-13},{"x":-4,"y":-19},{"x":-77,"y":21},{"x":-81,"y":-45},{"x":-107,"y":-1}],"type":"admin"},{"arc":[{"x":133736,"y":131567},{"x":-39,"y":-21},{"x":-24,"y":-62},{"x":-37,"y":11}],"type":"admin"},{"arc":[{"x":133636,"y":131495},{"x":-96,"y":-42},{"x":23,"y":-138},{"x":-29,"y":-142},{"x":-42,"y":18},{"x":-31,"y":-35},{"x":0,"y":-85},{"x":-22,"y":-32},{"x":-32,"y":8}],"type":"area"},{"arc":[{"x":133407,"y":131047},{"x":-68,"y":-36},{"x":2,"y":-40},{"x":39,"y":-24},{"x":-21,"y":-27},{"x":14,"y":-91},{"x":38,"y":-3},{"x":-7,"y":-25}],"type":"area"},{"arc":[{"x":133404,"y":130801},{"x":20,"y":11},{"x":39,"y":-92}],"type":"area"},{"arc":[{"x":133957,"y":130698},{"x":3,"y":146},{"x":19,"y":12},{"x":69,"y":-49},{"x":30,"y":110},{"x":113,"y":-15},{"x":-5,"y":231},{"x":-30,"y":12},{"x":30,"y":0},{"x":1,"y":79},{"x":-72,"y":-1},{"x":-4,"y":65},{"x":-49,"y":-4},{"x":50,"y":12},{"x":2,"y":25},{"x":-16,"y":303}],"type":"area"},{"arc":[{"x":131473,"y":128043},{"x":-31,"y":-26},{"x":-29,"y":15},{"x":29,"y":-16},{"x":31,"y":27}],"type":"coastline"},{"arc":[{"x":131250,"y":128449},{"x":-26,"y":-23},{"x":-129,"y":-13},{"x":57,"y":-65},{"x":-35,"y":-22},{"x":-13,"y":-77},{"x":-97,"y":-25},{"x":-43,"y":14},{"x":-74,"y":67},{"x":-34,"y":-6},{"x":-78,"y":58},{"x":-24,"y":67},{"x":-80,"y":9},{"x":-105,"y":153},{"x":-13,"y":111},{"x":-85,"y":-5},{"x":-16,"y":79}],"type":"admin"},{"arc":[{"x":130285,"y":128987},{"x":-102,"y":-38},{"x":-44,"y":-88},{"x":25,"y":-91},{"x":-41,"y":-15},{"x":-9,"y":-66},{"x":33,"y":-56},{"x":-27,"y":-129},{"x":56,"y":-51},{"x":-36,"y":-121},{"x":58,"y":-38},{"x":-1,"y":-34}],"type":"admin"},{"arc":[{"x":130197,"y":128260},{"x":76,"y":2},{"x":14,"y":-48},{"x":-28,"y":-50},{"x":131,"y":-29},{"x":65,"y":-50},{"x":103,"y":33},{"x":9,"y":-33},{"x":155,"y":-87},{"x":71,"y":-82},{"x":-40,"y":-166},{"x":57,"y":0}],"type":"area"},{"arc":[{"x":130810,"y":127750},{"x":38,"y":57},{"x":-12,"y":38},{"x":47,"y":-16},{"x":10,"y":33},{"x":29,"y":-34},{"x":23,"y":13},{"x":47,"y":-34},{"x":16,"y":16},{"x":57,"y":-81}],"type":"admin"},{"arc":[{"x":131065,"y":127742},{"x":44,"y":43},{"x":101,"y":16},{"x":10,"y":78},{"x":91,"y":85},{"x":-45,"y":-40},{"x":-31,"y":32},{"x":66,"y":56},{"x":-26,"y":-8},{"x":24,"y":16},{"x":-34,"y":11},{"x":34,"y":8},{"x":-20,"y":16},{"x":18,"y":7},{"x":15,"y":-45},{"x":-6,"y":44},{"x":51,"y":-61},{"x":55,"y":48},{"x":-30,"y":52},{"x":-36,"y":-29},{"x":-18,"y":23},{"x":69,"y":57},{"x":20,"y":-23},{"x":-22,"y":-17},{"x":44,"y":-35},{"x":48,"y":39},{"x":-33,"y":43}],"type":"coastline"},{"arc":[{"x":131397,"y":127361},{"x":95,"y":-107}],"type":"admin"},{"arc":[{"x":131492,"y":127254},{"x":109,"y":133},{"x":-3,"y":29},{"x":-20,"y":-56},{"x":-9,"y":80},{"x":-75,"y":58},{"x":-97,"y":-137}],"type":"coastline"},{"arc":[{"x":131507,"y":127236},{"x":95,"y":-109}],"type":"admin"},{"arc":[{"x":131602,"y":127127},{"x":116,"y":127},{"x":-50,"y":40},{"x":-2,"y":90},{"x":-30,"y":-37},{"x":-23,"y":19},{"x":-106,"y":-130}],"type":"coastline"},{"arc":[{"x":132607,"y":131240},{"x":-44,"y":1},{"x":25,"y":-12},{"x":-18,"y":-48},{"x":-98,"y":-11}],"type":"admin"},{"arc":[{"x":132472,"y":131170},{"x":-26,"y":-25},{"x":-72,"y":-3},{"x":-88,"y":44},{"x":-27,"y":60},{"x":-99,"y":1},{"x":-52,"y":-21},{"x":99,"y":-46},{"x":-3,"y":-27},{"x":-45,"y":-8},{"x":4,"y":-51},{"x":-100,"y":-4},{"x":-59,"y":49},{"x":-44,"y":-5}],"type":"admin"},{"arc":[{"x":131960,"y":131134},{"x":-51,"y":-21},{"x":-101,"y":31},{"x":-64,"y":-30},{"x":-66,"y":12},{"x":-162,"y":-140}],"type":"admin"},{"arc":[{"x":131516,"y":130986},{"x":19,"y":-73},{"x":97,"y":-84},{"x":16,"y":-50},{"x":46,"y":6},{"x":19,"y":-54},{"x":113,"y":10},{"x":57,"y":38},{"x":83,"y":-58},{"x":34,"y":-100},{"x":-18,"y":-44},{"x":43,"y":-33}],"type":"area"},{"arc":[{"x":132025,"y":130544},{"x":128,"y":-15},{"x":44,"y":58},{"x":54,"y":-45},{"x":181,"y":7},{"x":24,"y":64}],"type":"area"},{"arc":[{"x":132687,"y":130827},{"x":-40,"y":113},{"x":8,"y":128},{"x":-40,"y":20},{"x":-8,"y":152}],"type":"area"},{"arc":[{"x":135764,"y":131575},{"x":-104,"y":26},{"x":-114,"y":-42},{"x":-98,"y":19}],"type":"area"},{"arc":[{"x":135448,"y":131578},{"x":-23,"y":-35},{"x":-23,"y":9},{"x":43,"y":-67},{"x":-1,"y":-210},{"x":-35,"y":-1},{"x":-21,"y":-39},{"x":-135,"y":-22},{"x":-30,"y":77}],"type":"area"},{"arc":[{"x":135223,"y":131290},{"x":-51,"y":17},{"x":12,"y":-133}],"type":"area"},{"arc":[{"x":135184,"y":131174},{"x":91,"y":28},{"x":83,"y":-32},{"x":17,"y":-85},{"x":76,"y":-61}],"type":"area"},{"arc":[{"x":135670,"y":130825},{"x":164,"y":158}],"type":"area"},{"arc":[{"x":131516,"y":130986},{"x":-96,"y":59},{"x":-13,"y":75},{"x":-122,"y":109},{"x":-37,"y":140},{"x":-218,"y":124},{"x":-21,"y":48},{"x":-41,"y":-7},{"x":8,"y":81}],"type":"admin"},{"arc":[{"x":130807,"y":131488},{"x":3,"y":-125},{"x":-25,"y":-28},{"x":38,"y":-170},{"x":-99,"y":-64},{"x":8,"y":-97},{"x":39,"y":-68},{"x":-70,"y":-47},{"x":15,"y":-166},{"x":-50,"y":-45},{"x":-35,"y":-97},{"x":-124,"y":-90},{"x":-37,"y":-76},{"x":12,"y":-79},{"x":-69,"y":-54},{"x":-8,"y":-55}],"type":"admin"},{"arc":[{"x":130405,"y":130227},{"x":-166,"y":-177},{"x":-25,"y":-82},{"x":24,"y":-19},{"x":38,"y":27},{"x":113,"y":-32},{"x":65,"y":-123},{"x":95,"y":-47}],"type":"admin"},{"arc":[{"x":130549,"y":129774},{"x":35,"y":42},{"x":96,"y":17},{"x":28,"y":96},{"x":79,"y":35},{"x":0,"y":84},{"x":84,"y":81},{"x":105,"y":-4},{"x":91,"y":52},{"x":25,"y":-12},{"x":104,"y":39},{"x":142,"y":-5},{"x":54,"y":-21},{"x":22,"y":-50}],"type":"area"},{"arc":[{"x":131861,"y":130361},{"x":69,"y":113},{"x":61,"y":11},{"x":34,"y":59}],"type":"area"},{"arc":[{"x":133404,"y":130801},{"x":-81,"y":-35}],"type":"area"},{"arc":[{"x":133323,"y":130766},{"x":-17,"y":-43},{"x":-42,"y":-7},{"x":-9,"y":-96},{"x":-148,"y":27},{"x":-63,"y":-27}],"type":"area"},{"arc":[{"x":134838,"y":131715},{"x":-22,"y":1}],"type":"admin"},{"arc":[{"x":134816,"y":131716},{"x":-15,"y":-101},{"x":48,"y":-118},{"x":-8,"y":-134},{"x":-33,"y":-2},{"x":-9,"y":-51},{"x":36,"y":-5},{"x":1,"y":-46},{"x":36,"y":-20},{"x":-42,"y":-5},{"x":-2,"y":-90},{"x":-64,"y":10},{"x":33,"y":-51},{"x":-4,"y":-62},{"x":41,"y":-24},{"x":-11,"y":-91},{"x":37,"y":-18}],"type":"area"},{"arc":[{"x":135001,"y":130953},{"x":47,"y":77},{"x":47,"y":22},{"x":-41,"y":111},{"x":36,"y":44},{"x":94,"y":-33}],"type":"area"},{"arc":[{"x":135223,"y":131290},{"x":-8,"y":158},{"x":-59,"y":64},{"x":12,"y":34},{"x":-72,"y":5},{"x":-92,"y":170},{"x":-47,"y":18},{"x":-119,"y":-24}],"type":"area"},{"arc":[{"x":130549,"y":129774},{"x":-59,"y":-63},{"x":-62,"y":-18},{"x":-6,"y":-54},{"x":-69,"y":-68},{"x":0,"y":-84},{"x":32,"y":-46}],"type":"admin"},{"arc":[{"x":131950,"y":129047},{"x":55,"y":38},{"x":46,"y":-35}],"type":"admin"},{"arc":[{"x":132462,"y":129237},{"x":-34,"y":148},{"x":31,"y":31},{"x":-15,"y":33},{"x":32,"y":8}],"type":"area"},{"arc":[{"x":137057,"y":129279},{"x":168,"y":36},{"x":10,"y":30},{"x":54,"y":13}],"type":"admin"},{"arc":[{"x":137289,"y":129358},{"x":-8,"y":80},{"x":27,"y":51},{"x":61,"y":5},{"x":18,"y":57},{"x":80,"y":20},{"x":12,"y":79},{"x":-91,"y":25},{"x":-60,"y":68},{"x":-2,"y":47},{"x":-33,"y":3},{"x":-74,"y":-98},{"x":-192,"y":44},{"x":-13,"y":52},{"x":73,"y":73},{"x":-25,"y":57}],"type":"admin"},{"arc":[{"x":133358,"y":131805},{"x":-66,"y":-65},{"x":4,"y":-41},{"x":-60,"y":-9},{"x":-56,"y":25}],"type":"admin"},{"arc":[{"x":133180,"y":131715},{"x":-107,"y":-167},{"x":-74,"y":4},{"x":-32,"y":-31},{"x":-25,"y":25},{"x":-63,"y":-37}],"type":"admin"},{"arc":[{"x":132879,"y":131509},{"x":49,"y":-176},{"x":83,"y":4},{"x":-72,"y":-69},{"x":22,"y":-46},{"x":-23,"y":-30},{"x":160,"y":-9}],"type":"area"},{"arc":[{"x":133098,"y":131183},{"x":74,"y":5},{"x":96,"y":57},{"x":91,"y":-137},{"x":39,"y":1},{"x":9,"y":-62}],"type":"area"},{"arc":[{"x":133636,"y":131495},{"x":-47,"y":23},{"x":8,"y":177},{"x":-25,"y":47},{"x":-134,"y":36},{"x":-24,"y":-21},{"x":-56,"y":48}],"type":"admin"},{"arc":[{"x":132879,"y":131509},{"x":-36,"y":-30},{"x":-21,"y":15},{"x":-10,"y":48},{"x":28,"y":33},{"x":-35,"y":6}],"type":"admin"},{"arc":[{"x":132805,"y":131581},{"x":-94,"y":-89},{"x":12,"y":-45},{"x":-56,"y":-43},{"x":11,"y":-34},{"x":-49,"y":-51},{"x":-22,"y":-79}],"type":"admin"},{"arc":[{"x":133323,"y":130766},{"x":-8,"y":40},{"x":-49,"y":1},{"x":-9,"y":24},{"x":-70,"y":-8},{"x":-50,"y":46},{"x":-55,"y":-3},{"x":10,"y":56},{"x":-30,"y":-4},{"x":7,"y":-37},{"x":-13,"y":33},{"x":-54,"y":-3},{"x":-28,"y":25},{"x":-12,"y":40},{"x":57,"y":14},{"x":5,"y":22},{"x":32,"y":13},{"x":63,"y":-22},{"x":-1,"y":75},{"x":-38,"y":38},{"x":18,"y":67}],"type":"area"},{"arc":[{"x":132683,"y":128828},{"x":12,"y":27},{"x":-63,"y":48}],"type":"coastline"},{"arc":[{"x":132531,"y":129087},{"x":144,"y":133},{"x":129,"y":61}],"type":"coastline"},{"arc":[{"x":132824,"y":129268},{"x":-221,"y":-150},{"x":-12,"y":-43},{"x":75,"y":-136},{"x":62,"y":29},{"x":15,"y":-31},{"x":-25,"y":-34},{"x":28,"y":-20},{"x":136,"y":63}],"type":"coastline"},{"arc":[{"x":132835,"y":129018},{"x":-19,"y":-9},{"x":-51,"y":92},{"x":116,"y":62}],"type":"coastline"},{"arc":[{"x":134816,"y":131716},{"x":-125,"y":-1},{"x":-73,"y":52},{"x":-78,"y":7},{"x":-143,"y":-80},{"x":-68,"y":1}],"type":"admin"},{"arc":[{"x":134329,"y":131695},{"x":-130,"y":-71},{"x":-28,"y":16},{"x":-73,"y":-16}],"type":"admin"},{"arc":[{"x":130961,"y":127649},{"x":-60,"y":45},{"x":-13,"y":-30},{"x":-73,"y":41},{"x":18,"y":24},{"x":-23,"y":21}],"type":"admin"},{"arc":[{"x":130197,"y":128260},{"x":-70,"y":2},{"x":-69,"y":-114},{"x":-93,"y":24}],"type":"admin"},{"arc":[{"x":129965,"y":128172},{"x":31,"y":-64},{"x":-70,"y":-133},{"x":2,"y":-76},{"x":-115,"y":-15},{"x":-69,"y":-99},{"x":72,"y":-53},{"x":107,"y":-16},{"x":57,"y":-39}],"type":"admin"},{"arc":[{"x":129980,"y":127677},{"x":109,"y":-31},{"x":129,"y":-100},{"x":257,"y":-105},{"x":75,"y":-98},{"x":79,"y":-8},{"x":49,"y":25},{"x":16,"y":-16},{"x":3,"y":34},{"x":31,"y":-30}],"type":"area"},{"arc":[{"x":130728,"y":127348},{"x":78,"y":89},{"x":-27,"y":-24},{"x":1,"y":70},{"x":181,"y":166}],"type":"coastline"},{"arc":[{"x":131309,"y":127241},{"x":-119,"y":-131},{"x":110,"y":-88},{"x":97,"y":117}],"type":"coastline"},{"arc":[{"x":131397,"y":127139},{"x":-88,"y":102}],"type":"admin"},{"arc":[{"x":131411,"y":127123},{"x":-30,"y":-23},{"x":62,"y":-53},{"x":-131,"y":-159},{"x":-38,"y":29},{"x":101,"y":-81},{"x":132,"y":174}],"type":"coastline"},{"arc":[{"x":131507,"y":127010},{"x":-96,"y":113}],"type":"admin"},{"arc":[{"x":135371,"y":131961},{"x":-255,"y":75},{"x":-157,"y":-171},{"x":-11,"y":-62},{"x":-110,"y":-88}],"type":"admin"},{"arc":[{"x":135448,"y":131578},{"x":-69,"y":90},{"x":27,"y":36},{"x":-42,"y":75},{"x":27,"y":34},{"x":-44,"y":19},{"x":34,"y":52},{"x":-10,"y":77}],"type":"area"},{"arc":[{"x":135845,"y":132117},{"x":-113,"y":-55},{"x":-12,"y":35},{"x":-64,"y":-16},{"x":-163,"y":17},{"x":-63,"y":-36},{"x":28,"y":-47},{"x":-14,"y":-43},{"x":-50,"y":13},{"x":-23,"y":-24}],"type":"admin"},{"arc":[{"x":129980,"y":127677},{"x":-68,"y":-119}],"type":"admin"},{"arc":[{"x":129912,"y":127558},{"x":1,"y":-97},{"x":40,"y":-76},{"x":-31,"y":-79},{"x":-122,"y":-115},{"x":-35,"y":-109},{"x":52,"y":-55},{"x":41,"y":-120}],"type":"admin"},{"arc":[{"x":129858,"y":126907},{"x":9,"y":-51},{"x":44,"y":-14},{"x":-19,"y":-72},{"x":19,"y":-33},{"x":75,"y":-10},{"x":15,"y":-22},{"x":21,"y":53},{"x":49,"y":2},{"x":58,"y":-16},{"x":-7,"y":-30},{"x":35,"y":-13},{"x":54,"y":60},{"x":26,"y":-8}],"type":"admin"},{"arc":[{"x":130237,"y":126753},{"x":63,"y":97},{"x":-24,"y":15},{"x":22,"y":17},{"x":-10,"y":12},{"x":12,"y":-10},{"x":8,"y":5},{"x":13,"y":27},{"x":-21,"y":-30},{"x":-11,"y":9},{"x":24,"y":19},{"x":0,"y":86},{"x":39,"y":60},{"x":229,"y":172},{"x":13,"y":-5},{"x":32,"y":15},{"x":-32,"y":-12},{"x":18,"y":19},{"x":-14,"y":20},{"x":22,"y":-21},{"x":108,"y":100}],"type":"coastline"},{"arc":[{"x":137289,"y":129358},{"x":44,"y":-16},{"x":-90,"y":-107},{"x":7,"y":-26},{"x":45,"y":18},{"x":128,"y":-54},{"x":6,"y":-76},{"x":38,"y":-10},{"x":139,"y":211},{"x":-28,"y":251},{"x":77,"y":25},{"x":14,"y":27},{"x":41,"y":-16}],"type":"admin"},{"arc":[{"x":137710,"y":129585},{"x":20,"y":82},{"x":176,"y":42},{"x":40,"y":57}],"type":"area"},{"arc":[{"x":137710,"y":129585},{"x":-31,"y":-63},{"x":44,"y":-87},{"x":122,"y":-113},{"x":-31,"y":-32},{"x":13,"y":-57},{"x":-52,"y":-150}],"type":"admin"},{"arc":[{"x":137775,"y":129083},{"x":100,"y":-11},{"x":-23,"y":-74},{"x":21,"y":-9},{"x":17,"y":28},{"x":32,"y":-31},{"x":-36,"y":16},{"x":22,"y":-152},{"x":-38,"y":-37},{"x":33,"y":-40},{"x":87,"y":-10},{"x":65,"y":-51},{"x":4,"y":-69},{"x":-36,"y":-30},{"x":34,"y":-56},{"x":-22,"y":-75},{"x":104,"y":-63},{"x":23,"y":-81},{"x":30,"y":-14},{"x":65,"y":38},{"x":88,"y":8},{"x":47,"y":103},{"x":98,"y":-72},{"x":133,"y":10},{"x":43,"y":-21},{"x":31,"y":34},{"x":228,"y":-1},{"x":27,"y":-58},{"x":-13,"y":-96}],"type":"admin"},{"arc":[{"x":138939,"y":128269},{"x":86,"y":-34},{"x":32,"y":-65},{"x":106,"y":82},{"x":30,"y":111},{"x":64,"y":8},{"x":-11,"y":102},{"x":-46,"y":23},{"x":-32,"y":61},{"x":17,"y":37}],"type":"admin"},{"arc":[{"x":132290,"y":128590},{"x":87,"y":30},{"x":-16,"y":22},{"x":23,"y":20}],"type":"coastline"},{"arc":[{"x":130961,"y":127649},{"x":44,"y":27},{"x":-37,"y":56},{"x":48,"y":-31},{"x":-31,"y":36},{"x":54,"y":-27},{"x":26,"y":32}],"type":"coastline"},{"arc":[{"x":131397,"y":127361},{"x":-88,"y":-120}],"type":"coastline"},{"arc":[{"x":131397,"y":127139},{"x":14,"y":-16}],"type":"coastline"},{"arc":[{"x":131507,"y":127010},{"x":95,"y":117}],"type":"coastline"},{"arc":[{"x":131507,"y":127236},{"x":-75,"y":-81},{"x":60,"y":99}],"type":"coastline"},{"arc":[{"x":129858,"y":126907},{"x":-68,"y":4},{"x":-62,"y":-43},{"x":-121,"y":9},{"x":-23,"y":-138},{"x":-97,"y":-75},{"x":13,"y":-183},{"x":-72,"y":-137},{"x":86,"y":13},{"x":35,"y":-84},{"x":-43,"y":-35},{"x":19,"y":-38},{"x":-106,"y":-32},{"x":-13,"y":-55},{"x":63,"y":-58},{"x":-46,"y":-50},{"x":7,"y":-72},{"x":-32,"y":-23},{"x":84,"y":-44},{"x":69,"y":13},{"x":23,"y":-75},{"x":138,"y":-48},{"x":115,"y":100},{"x":36,"y":-3},{"x":32,"y":-26},{"x":-41,"y":-65},{"x":52,"y":-46}],"type":"admin"},{"arc":[{"x":129906,"y":125716},{"x":24,"y":18},{"x":15,"y":-27},{"x":-7,"y":64},{"x":67,"y":41},{"x":38,"y":144},{"x":-21,"y":25},{"x":28,"y":16},{"x":-44,"y":27},{"x":49,"y":-22},{"x":30,"y":104},{"x":-40,"y":27},{"x":-32,"y":-32},{"x":-23,"y":94},{"x":22,"y":24},{"x":-34,"y":-14},{"x":19,"y":37},{"x":24,"y":-17},{"x":28,"y":62},{"x":16,"y":-32},{"x":86,"y":87},{"x":2,"y":108},{"x":63,"y":50},{"x":0,"y":32},{"x":-18,"y":-9},{"x":14,"y":20},{"x":16,"y":-20},{"x":-12,"y":24},{"x":54,"y":71},{"x":-25,"y":34},{"x":24,"y":-31},{"x":-20,"y":-21},{"x":-8,"y":7},{"x":8,"y":-8},{"x":-20,"y":-16},{"x":18,"y":56},{"x":-29,"y":-42},{"x":-5,"y":47},{"x":24,"y":109}],"type":"coastline"},{"arc":[{"x":132675,"y":131658},{"x":-72,"y":99},{"x":-195,"y":4},{"x":-51,"y":-23}],"type":"admin"},{"arc":[{"x":132357,"y":131738},{"x":-24,"y":-114},{"x":-70,"y":-51},{"x":-8,"y":-113},{"x":34,"y":9},{"x":46,"y":-69},{"x":-15,"y":11},{"x":14,"y":-19},{"x":-25,"y":-17},{"x":76,"y":-21},{"x":-12,"y":-24},{"x":23,"y":6},{"x":68,"y":-61},{"x":8,"y":-105}],"type":"area"},{"arc":[{"x":132805,"y":131581},{"x":-139,"y":21},{"x":9,"y":56}],"type":"admin"},{"arc":[{"x":132357,"y":131738},{"x":-39,"y":-23},{"x":-40,"y":54},{"x":-133,"y":23},{"x":-45,"y":44},{"x":-65,"y":-37},{"x":-53,"y":22},{"x":-137,"y":-12}],"type":"admin"},{"arc":[{"x":131845,"y":131809},{"x":53,"y":-70},{"x":-5,"y":-91},{"x":-39,"y":4},{"x":9,"y":-94},{"x":-35,"y":-14},{"x":-28,"y":27},{"x":-25,"y":-54},{"x":-28,"y":62},{"x":-54,"y":1},{"x":-77,"y":89},{"x":-10,"y":-30},{"x":122,"y":-118},{"x":-16,"y":-74},{"x":41,"y":-3},{"x":131,"y":-132},{"x":-11,"y":-63},{"x":111,"y":-10},{"x":-24,"y":-105}],"type":"area"},{"arc":[{"x":131845,"y":131809},{"x":-5,"y":0}],"type":"admin"},{"arc":[{"x":131840,"y":131809},{"x":-110,"y":2},{"x":-51,"y":46},{"x":-43,"y":-1},{"x":-85,"y":-59},{"x":-117,"y":-21},{"x":-87,"y":-69},{"x":11,"y":-36},{"x":-45,"y":-47},{"x":-121,"y":53},{"x":2,"y":82},{"x":-69,"y":28}],"type":"admin"},{"arc":[{"x":133509,"y":119188},{"x":-16,"y":14},{"x":-16,"y":-17},{"x":32,"y":3}],"type":"coastline"},{"arc":[{"x":133549,"y":119421},{"x":-17,"y":16},{"x":-55,"y":-30},{"x":-12,"y":-67},{"x":81,"y":34},{"x":3,"y":47}],"type":"coastline"},{"arc":[{"x":133580,"y":119251},{"x":4,"y":-18},{"x":21,"y":10},{"x":-25,"y":8}],"type":"coastline"},{"arc":[{"x":133710,"y":119299},{"x":-23,"y":25},{"x":-21,"y":-27},{"x":44,"y":2}],"type":"coastline"},{"arc":[{"x":134007,"y":119596},{"x":-68,"y":-7},{"x":-13,"y":-32},{"x":72,"y":6},{"x":28,"y":32},{"x":-19,"y":1}],"type":"coastline"},{"arc":[{"x":134098,"y":120471},{"x":-74,"y":24},{"x":86,"y":-48},{"x":-12,"y":24}],"type":"coastline"},{"arc":[{"x":134139,"y":119935},{"x":-41,"y":6},{"x":-8,"y":-52},{"x":49,"y":46}],"type":"coastline"},{"arc":[{"x":134232,"y":118977},{"x":-63,"y":4},{"x":-8,"y":-84},{"x":48,"y":15},{"x":23,"y":65}],"type":"coastline"},{"arc":[{"x":134272,"y":119877},{"x":-23,"y":14},{"x":-7,"y":-30},{"x":30,"y":16}],"type":"coastline"},{"arc":[{"x":134304,"y":119748},{"x":-52,"y":7},{"x":40,"y":14},{"x":-57,"y":15},{"x":-65,"y":-8},{"x":16,"y":-19},{"x":-26,"y":-13},{"x":36,"y":-15},{"x":-34,"y":3},{"x":-7,"y":-45},{"x":-2,"y":33},{"x":-50,"y":-14},{"x":10,"y":65},{"x":-29,"y":-36},{"x":-14,"y":45},{"x":-30,"y":-36},{"x":-42,"y":2},{"x":107,"y":-151},{"x":49,"y":33},{"x":11,"y":-17},{"x":34,"y":13},{"x":37,"y":106},{"x":-2,"y":-28},{"x":70,"y":46}],"type":"coastline"},{"arc":[{"x":134456,"y":119455},{"x":-23,"y":59},{"x":-26,"y":-12},{"x":4,"y":43},{"x":-122,"y":-61},{"x":12,"y":52},{"x":-84,"y":-17},{"x":1,"y":49},{"x":-111,"y":19},{"x":15,"y":-75},{"x":-43,"y":-30},{"x":-8,"y":-60},{"x":82,"y":69},{"x":22,"y":-25},{"x":-38,"y":-58},{"x":45,"y":-17},{"x":-121,"y":-140},{"x":62,"y":-94},{"x":22,"y":33},{"x":147,"y":-6},{"x":-23,"y":40},{"x":94,"y":-13},{"x":36,"y":64},{"x":-69,"y":-29},{"x":-5,"y":59},{"x":-41,"y":25},{"x":74,"y":36},{"x":-70,"y":37},{"x":57,"y":51},{"x":104,"y":-30},{"x":7,"y":31}],"type":"coastline"},{"arc":[{"x":134520,"y":120345},{"x":-31,"y":64},{"x":-61,"y":32},{"x":8,"y":54},{"x":-58,"y":34},{"x":-131,"y":-66},{"x":14,"y":-63},{"x":-67,"y":-29},{"x":19,"y":-51},{"x":78,"y":-29},{"x":68,"y":-64},{"x":61,"y":-4},{"x":40,"y":81},{"x":50,"y":-2},{"x":10,"y":43}],"type":"coastline"},{"arc":[{"x":134554,"y":120702},{"x":-18,"y":31},{"x":-35,"y":-1},{"x":35,"y":-23},{"x":-13,"y":-22},{"x":31,"y":15}],"type":"coastline"},{"arc":[{"x":134645,"y":119954},{"x":-24,"y":22},{"x":-21,"y":-38},{"x":-39,"y":1},{"x":20,"y":-55},{"x":-54,"y":-13},{"x":-6,"y":49},{"x":-38,"y":-17},{"x":-12,"y":17},{"x":85,"y":36},{"x":-28,"y":53},{"x":32,"y":52},{"x":-86,"y":-5},{"x":-37,"y":-26},{"x":-95,"y":32},{"x":-55,"y":-42},{"x":3,"y":-62},{"x":40,"y":-20},{"x":41,"y":-81},{"x":23,"y":2},{"x":-27,"y":-41},{"x":40,"y":1},{"x":6,"y":-52},{"x":46,"y":-51},{"x":37,"y":14},{"x":32,"y":-60},{"x":54,"y":85},{"x":-8,"y":73},{"x":59,"y":55},{"x":-25,"y":41},{"x":37,"y":30}],"type":"coastline"},{"arc":[{"x":134657,"y":121012},{"x":-28,"y":34},{"x":-24,"y":-14},{"x":27,"y":-38},{"x":25,"y":18}],"type":"coastline"},{"arc":[{"x":134670,"y":121808},{"x":-42,"y":-9},{"x":34,"y":-11},{"x":8,"y":20}],"type":"coastline"},{"arc":[{"x":135711,"y":121674},{"x":-137,"y":-41},{"x":3,"y":-84},{"x":-33,"y":-34},{"x":33,"y":33},{"x":0,"y":12},{"x":102,"y":18},{"x":32,"y":96}],"type":"coastline"},{"arc":[{"x":135729,"y":120678},{"x":-73,"y":7},{"x":-59,"y":-108},{"x":-27,"y":9},{"x":1,"y":57},{"x":-3,"y":-59},{"x":126,"y":-35},{"x":-17,"y":-34},{"x":14,"y":19},{"x":38,"y":144}],"type":"coastline"},{"arc":[{"x":135643,"y":121276},{"x":-27,"y":-110},{"x":24,"y":46},{"x":93,"y":52},{"x":-30,"y":54},{"x":-60,"y":-42}],"type":"coastline"},{"arc":[{"x":139284,"y":121864},{"x":-110,"y":-22},{"x":-31,"y":34},{"x":-50,"y":7},{"x":-32,"y":-15},{"x":-50,"y":-107},{"x":-148,"y":-45}],"type":"admin"},{"arc":[{"x":138863,"y":121716},{"x":-29,"y":-80},{"x":-76,"y":-33},{"x":-26,"y":36},{"x":-108,"y":26},{"x":-20,"y":73},{"x":-71,"y":43},{"x":-130,"y":-29},{"x":-43,"y":-47},{"x":-75,"y":15},{"x":-16,"y":67},{"x":-53,"y":33},{"x":-83,"y":23},{"x":-63,"y":-32},{"x":-77,"y":33},{"x":7,"y":25},{"x":-48,"y":45},{"x":-44,"y":-2},{"x":-20,"y":43},{"x":-59,"y":-1},{"x":-7,"y":184},{"x":-42,"y":17},{"x":40,"y":78},{"x":-24,"y":47},{"x":-29,"y":-1},{"x":27,"y":8},{"x":4,"y":63},{"x":-134,"y":12},{"x":-25,"y":109},{"x":-70,"y":58},{"x":33,"y":61},{"x":-30,"y":33}],"type":"admin"},{"arc":[{"x":137572,"y":122623},{"x":-158,"y":31},{"x":-52,"y":-31},{"x":-74,"y":3},{"x":-102,"y":-81},{"x":-41,"y":35},{"x":-39,"y":-2},{"x":-60,"y":99},{"x":-23,"y":100},{"x":-33,"y":21},{"x":-14,"y":-23},{"x":-46,"y":54}],"type":"area"},{"arc":[{"x":136930,"y":122829},{"x":-67,"y":-89},{"x":49,"y":-110},{"x":-63,"y":13},{"x":-70,"y":60},{"x":-106,"y":-4},{"x":-39,"y":40},{"x":10,"y":-64},{"x":-59,"y":1},{"x":-20,"y":-64},{"x":24,"y":-24},{"x":-45,"y":-45},{"x":30,"y":-103},{"x":-99,"y":-32},{"x":-15,"y":31},{"x":-16,"y":-10},{"x":20,"y":-107},{"x":-63,"y":-10},{"x":-44,"y":52},{"x":19,"y":76},{"x":-95,"y":26}],"type":"area"},{"arc":[{"x":136281,"y":122466},{"x":-34,"y":-73},{"x":-62,"y":21},{"x":-46,"y":-55},{"x":-101,"y":-40},{"x":-15,"y":-133},{"x":42,"y":-47},{"x":81,"y":17},{"x":13,"y":-22},{"x":-92,"y":-38},{"x":-105,"y":60},{"x":-36,"y":-36},{"x":-97,"y":53},{"x":-81,"y":-1},{"x":1,"y":22},{"x":120,"y":0},{"x":58,"y":75},{"x":72,"y":-21},{"x":-146,"y":101},{"x":-66,"y":3},{"x":-185,"y":-64}],"type":"area"},{"arc":[{"x":135602,"y":122288},{"x":-48,"y":-28},{"x":48,"y":23},{"x":18,"y":-13},{"x":-20,"y":-4},{"x":54,"y":-65},{"x":-21,"y":-5},{"x":21,"y":4},{"x":32,"y":-68},{"x":7,"y":-30},{"x":-24,"y":-9},{"x":24,"y":-3},{"x":-36,"y":-9},{"x":32,"y":-72},{"x":-39,"y":-12},{"x":16,"y":3},{"x":19,"y":-19},{"x":26,"y":21},{"x":-15,"y":-22},{"x":-21,"y":-3},{"x":29,"y":-10},{"x":32,"y":-84},{"x":-23,"y":2},{"x":24,"y":-3},{"x":52,"y":-147},{"x":-55,"y":-44},{"x":47,"y":28},{"x":-21,"y":-15},{"x":39,"y":-47},{"x":-66,"y":27},{"x":-27,"y":-81},{"x":10,"y":-77},{"x":75,"y":19},{"x":14,"y":-39},{"x":-77,"y":-23},{"x":17,"y":-67},{"x":-49,"y":-14},{"x":-47,"y":57},{"x":47,"y":-57},{"x":66,"y":10},{"x":21,"y":-30},{"x":-74,"y":-60},{"x":42,"y":-103},{"x":0,"y":19},{"x":46,"y":6},{"x":-14,"y":62},{"x":45,"y":41},{"x":63,"y":-72},{"x":-182,"y":-111},{"x":-1,"y":-23},{"x":49,"y":-3},{"x":162,"y":82},{"x":16,"y":-24},{"x":-72,"y":-14},{"x":-42,"y":-85},{"x":-161,"y":-5},{"x":7,"y":-126},{"x":-43,"y":-48},{"x":44,"y":47},{"x":128,"y":-15},{"x":35,"y":124},{"x":40,"y":0},{"x":4,"y":-222},{"x":-42,"y":0},{"x":-25,"y":65},{"x":-67,"y":-1},{"x":0,"y":-48},{"x":-47,"y":-1},{"x":32,"y":-2},{"x":-4,"y":-34},{"x":-48,"y":-93},{"x":90,"y":-27},{"x":38,"y":46},{"x":-8,"y":-67},{"x":27,"y":-13},{"x":-9,"y":-19},{"x":-48,"y":16},{"x":14,"y":-22},{"x":-34,"y":-36},{"x":23,"y":-9},{"x":-30,"y":-2},{"x":-52,"y":-141},{"x":-87,"y":16},{"x":-48,"y":-171}],"type":"coastline"},{"arc":[{"x":135550,"y":120309},{"x":185,"y":6},{"x":84,"y":35},{"x":130,"y":-10},{"x":86,"y":-33},{"x":164,"y":-126}],"type":"area"},{"arc":[{"x":136199,"y":120181},{"x":-35,"y":100},{"x":20,"y":116},{"x":65,"y":-5},{"x":2,"y":36},{"x":52,"y":7},{"x":37,"y":71},{"x":-2,"y":-78},{"x":25,"y":-3},{"x":22,"y":97},{"x":46,"y":52},{"x":-17,"y":91},{"x":-50,"y":20},{"x":-29,"y":-33},{"x":-32,"y":111},{"x":46,"y":142},{"x":70,"y":27},{"x":96,"y":-23},{"x":34,"y":39},{"x":26,"y":-81},{"x":41,"y":7},{"x":51,"y":-98},{"x":33,"y":39},{"x":42,"y":-12},{"x":1,"y":-78},{"x":-35,"y":-41},{"x":36,"y":-68},{"x":37,"y":5},{"x":53,"y":-37},{"x":-43,"y":-76},{"x":37,"y":-7},{"x":14,"y":-39}],"type":"admin"},{"arc":[{"x":136842,"y":120462},{"x":49,"y":-2},{"x":59,"y":42},{"x":22,"y":-12},{"x":34,"y":44},{"x":39,"y":-2},{"x":53,"y":72},{"x":34,"y":-18},{"x":150,"y":14},{"x":44,"y":-51},{"x":-47,"y":-53},{"x":21,"y":-77},{"x":-25,"y":-71},{"x":33,"y":-7},{"x":-28,"y":-36},{"x":42,"y":9},{"x":60,"y":-71},{"x":83,"y":33},{"x":25,"y":54},{"x":70,"y":-34},{"x":52,"y":16},{"x":83,"y":-24},{"x":39,"y":1},{"x":84,"y":60},{"x":216,"y":-34}],"type":"area"},{"arc":[{"x":138034,"y":120315},{"x":120,"y":48},{"x":53,"y":-18},{"x":36,"y":-84},{"x":81,"y":-11},{"x":108,"y":64},{"x":32,"y":56},{"x":-16,"y":30},{"x":89,"y":6},{"x":75,"y":55},{"x":74,"y":-16},{"x":133,"y":97},{"x":82,"y":20},{"x":150,"y":-32},{"x":80,"y":30},{"x":35,"y":-28},{"x":83,"y":68},{"x":67,"y":27},{"x":43,"y":-14},{"x":-11,"y":82},{"x":38,"y":60},{"x":-7,"y":-70},{"x":108,"y":-2},{"x":202,"y":127},{"x":16,"y":55},{"x":-54,"y":14},{"x":-2,"y":24},{"x":72,"y":86},{"x":10,"y":128},{"x":-11,"y":32},{"x":-45,"y":4},{"x":-38,"y":80},{"x":81,"y":41},{"x":29,"y":-10},{"x":44,"y":99}],"type":"area"},{"arc":[{"x":139791,"y":121363},{"x":-7,"y":137},{"x":-92,"y":-19},{"x":-42,"y":24},{"x":-69,"y":152},{"x":-91,"y":-21},{"x":-63,"y":42},{"x":-44,"y":-21},{"x":-32,"y":13},{"x":-66,"y":92},{"x":42,"y":72},{"x":-43,"y":30}],"type":"admin"},{"arc":[{"x":134779,"y":128967},{"x":-216,"y":-158},{"x":-44,"y":-164},{"x":25,"y":-24},{"x":122,"y":196},{"x":137,"y":86},{"x":22,"y":-30},{"x":-25,"y":-36},{"x":32,"y":-24},{"x":-55,"y":15},{"x":-64,"y":-47},{"x":11,"y":-42},{"x":46,"y":1},{"x":-67,"y":-38},{"x":20,"y":-42},{"x":-68,"y":-24},{"x":-31,"y":25},{"x":-52,"y":-67},{"x":30,"y":-28},{"x":132,"y":41}],"type":"coastline"},{"arc":[{"x":134734,"y":128607},{"x":357,"y":123},{"x":101,"y":-47},{"x":109,"y":9},{"x":235,"y":-75},{"x":307,"y":0}],"type":"area"},{"arc":[{"x":135843,"y":128617},{"x":-91,"y":105},{"x":-67,"y":4},{"x":27,"y":58},{"x":-68,"y":5},{"x":-46,"y":64},{"x":-6,"y":47},{"x":55,"y":21},{"x":-113,"y":130},{"x":72,"y":8},{"x":1,"y":28},{"x":38,"y":-11},{"x":28,"y":40},{"x":48,"y":-2},{"x":-29,"y":66},{"x":65,"y":122},{"x":-47,"y":37},{"x":-8,"y":-61},{"x":-19,"y":76}],"type":"area"},{"arc":[{"x":134067,"y":124602},{"x":-6,"y":35},{"x":7,"y":-53},{"x":-1,"y":18}],"type":"coastline"},{"arc":[{"x":134688,"y":123338},{"x":81,"y":39}],"type":"admin"},{"arc":[{"x":134769,"y":123377},{"x":-7,"y":24},{"x":34,"y":14},{"x":9,"y":-20}],"type":"coastline"},{"arc":[{"x":134805,"y":123395},{"x":28,"y":14}],"type":"admin"},{"arc":[{"x":134833,"y":123409},{"x":-150,"y":171},{"x":18,"y":-31},{"x":-83,"y":-59},{"x":70,"y":-152}],"type":"coastline"},{"arc":[{"x":134331,"y":124184},{"x":148,"y":-217},{"x":33,"y":-152},{"x":-33,"y":17},{"x":197,"y":-155},{"x":49,"y":-65},{"x":-28,"y":-28},{"x":32,"y":21},{"x":15,"y":-24},{"x":-14,"y":13},{"x":-17,"y":-22},{"x":13,"y":17},{"x":7,"y":-11},{"x":-6,"y":-12},{"x":13,"y":7},{"x":52,"y":-57},{"x":60,"y":-98}],"type":"coastline"},{"arc":[{"x":134852,"y":123418},{"x":71,"y":51},{"x":22,"y":52},{"x":109,"y":48},{"x":14,"y":66},{"x":16,"y":-9}],"type":"admin"},{"arc":[{"x":135084,"y":123626},{"x":42,"y":26},{"x":13,"y":70}],"type":"area"},{"arc":[{"x":135139,"y":123722},{"x":-4,"y":62},{"x":-39,"y":22},{"x":-11,"y":45}],"type":"admin"},{"arc":[{"x":134096,"y":124949},{"x":-27,"y":-15},{"x":21,"y":-30},{"x":-14,"y":-238},{"x":33,"y":41},{"x":19,"y":-68},{"x":-56,"y":18},{"x":12,"y":-93},{"x":-21,"y":15},{"x":5,"y":-28},{"x":-10,"y":36},{"x":0,"y":-18},{"x":7,"y":-21},{"x":24,"y":3},{"x":14,"y":-47},{"x":-2,"y":-31},{"x":-19,"y":8},{"x":36,"y":-72},{"x":-13,"y":64},{"x":46,"y":-60},{"x":-21,"y":-36},{"x":-24,"y":31},{"x":24,"y":-32},{"x":43,"y":-3},{"x":158,"y":-189}],"type":"coastline"},{"arc":[{"x":134465,"y":128475},{"x":52,"y":-62},{"x":15,"y":-379},{"x":-14,"y":380},{"x":-53,"y":61}],"type":"coastline"},{"arc":[{"x":134910,"y":128192},{"x":-2,"y":27},{"x":1,"y":-98},{"x":21,"y":-10},{"x":-20,"y":10},{"x":0,"y":71}],"type":"coastline"},{"arc":[{"x":135010,"y":128305},{"x":-19,"y":47},{"x":-83,"y":54},{"x":-56,"y":-61},{"x":158,"y":-40}],"type":"coastline"},{"arc":[{"x":135095,"y":128171},{"x":-51,"y":108},{"x":-90,"y":-20},{"x":-3,"y":-44},{"x":-32,"y":0},{"x":-5,"y":53},{"x":-57,"y":14},{"x":56,"y":-15},{"x":6,"y":-53},{"x":28,"y":0},{"x":0,"y":-98},{"x":-23,"y":4},{"x":106,"y":-6},{"x":65,"y":57}],"type":"coastline"},{"arc":[{"x":135884,"y":128606},{"x":-41,"y":11}],"type":"area"},{"arc":[{"x":134734,"y":128607},{"x":-7,"y":-31},{"x":17,"y":15},{"x":25,"y":-25},{"x":-29,"y":15},{"x":21,"y":-23},{"x":-23,"y":-26},{"x":-15,"y":38},{"x":-54,"y":-59},{"x":106,"y":-96},{"x":60,"y":94},{"x":56,"y":1},{"x":0,"y":-29},{"x":207,"y":-220},{"x":43,"y":-33},{"x":17,"y":17},{"x":2,"y":-18},{"x":-69,"y":-11},{"x":52,"y":-107}],"type":"coastline"},{"arc":[{"x":135143,"y":128109},{"x":59,"y":-4},{"x":131,"y":-78},{"x":69,"y":10},{"x":215,"y":-131},{"x":38,"y":-55},{"x":87,"y":-24},{"x":50,"y":-104},{"x":45,"y":-25},{"x":3,"y":-176}],"type":"area"},{"arc":[{"x":136857,"y":127794},{"x":-27,"y":-4},{"x":-2,"y":87},{"x":-42,"y":-23},{"x":-21,"y":14},{"x":45,"y":141},{"x":-64,"y":15},{"x":-49,"y":-24},{"x":-198,"y":115},{"x":-86,"y":-18},{"x":-24,"y":27},{"x":25,"y":35},{"x":-132,"y":90},{"x":-106,"y":-169},{"x":-7,"y":-33},{"x":32,"y":-10},{"x":-51,"y":-50},{"x":-41,"y":-109},{"x":-93,"y":32},{"x":-26,"y":50},{"x":-63,"y":-93},{"x":2,"y":163},{"x":-90,"y":100},{"x":20,"y":63},{"x":-18,"y":68},{"x":-19,"y":28},{"x":-53,"y":8},{"x":-42,"y":115},{"x":53,"y":105},{"x":-23,"y":79},{"x":82,"y":-24},{"x":45,"y":34}],"type":"area"},{"arc":[{"x":129729,"y":124216},{"x":-69,"y":50},{"x":-50,"y":10},{"x":-73,"y":45},{"x":-62,"y":7},{"x":-20,"y":-15},{"x":10,"y":-11},{"x":10,"y":11},{"x":48,"y":10},{"x":76,"y":-59},{"x":58,"y":-3},{"x":9,"y":-51},{"x":30,"y":-18},{"x":32,"y":-3},{"x":1,"y":27}],"type":"coastline"},{"arc":[{"x":131006,"y":123668},{"x":-385,"y":35},{"x":-37,"y":-26},{"x":-135,"y":-12},{"x":-20,"y":25},{"x":15,"y":-19},{"x":-29,"y":-15},{"x":14,"y":16},{"x":-59,"y":21},{"x":17,"y":41},{"x":-42,"y":-41},{"x":-2,"y":48},{"x":-9,"y":-29},{"x":-20,"y":15},{"x":36,"y":29},{"x":-41,"y":-22},{"x":-38,"y":30},{"x":-6,"y":86},{"x":-54,"y":28},{"x":-65,"y":-26},{"x":-15,"y":24},{"x":48,"y":0},{"x":-262,"y":51},{"x":-97,"y":90},{"x":-77,"y":153},{"x":-63,"y":6},{"x":-93,"y":59},{"x":-46,"y":-24},{"x":-112,"y":17},{"x":-3,"y":51},{"x":42,"y":7},{"x":-27,"y":9},{"x":-111,"y":-40},{"x":-181,"y":-549},{"x":-101,"y":-143},{"x":-54,"y":-136}],"type":"coastline"},{"arc":[{"x":128994,"y":123427},{"x":157,"y":-148},{"x":55,"y":-16},{"x":23,"y":-61},{"x":90,"y":-25},{"x":51,"y":-131},{"x":99,"y":26},{"x":33,"y":45},{"x":125,"y":28},{"x":22,"y":-34},{"x":52,"y":-14},{"x":56,"y":20},{"x":36,"y":-27},{"x":38,"y":6},{"x":22,"y":-39},{"x":83,"y":-9},{"x":56,"y":12},{"x":-39,"y":46},{"x":49,"y":36},{"x":90,"y":-10},{"x":-19,"y":-7},{"x":23,"y":-20},{"x":73,"y":79},{"x":2,"y":-71},{"x":47,"y":-56},{"x":27,"y":-101},{"x":47,"y":6},{"x":61,"y":-76},{"x":112,"y":-41},{"x":-97,"y":-151},{"x":-10,"y":-94},{"x":46,"y":-78},{"x":-39,"y":-71},{"x":96,"y":-29},{"x":-56,"y":-25},{"x":-46,"y":-106},{"x":7,"y":-32},{"x":70,"y":-21},{"x":-18,"y":-164}],"type":"area"},{"arc":[{"x":130418,"y":122074},{"x":209,"y":81},{"x":51,"y":-2},{"x":-15,"y":13},{"x":29,"y":10},{"x":13,"y":-17},{"x":-37,"y":-18},{"x":61,"y":24},{"x":-25,"y":12},{"x":132,"y":45},{"x":13,"y":41},{"x":-17,"y":-17},{"x":-8,"y":27},{"x":30,"y":40},{"x":310,"y":123},{"x":54,"y":-3},{"x":41,"y":20},{"x":-31,"y":-15},{"x":-23,"y":28},{"x":17,"y":13},{"x":-34,"y":-13},{"x":16,"y":28},{"x":160,"y":69}],"type":"coastline"},{"arc":[{"x":131364,"y":122563},{"x":-53,"y":193},{"x":44,"y":61},{"x":-58,"y":18},{"x":-23,"y":74},{"x":23,"y":188},{"x":-43,"y":50},{"x":-85,"y":-27},{"x":-70,"y":37},{"x":-59,"y":74},{"x":28,"y":58},{"x":123,"y":59},{"x":-20,"y":109},{"x":-106,"y":71},{"x":-124,"y":-20},{"x":65,"y":160}],"type":"area"},{"arc":[{"x":134968,"y":128086},{"x":-46,"y":0},{"x":46,"y":-17},{"x":-46,"y":-47},{"x":-6,"y":64},{"x":-39,"y":-12},{"x":12,"y":-105},{"x":24,"y":-16},{"x":-20,"y":-23},{"x":90,"y":-9},{"x":40,"y":164},{"x":-55,"y":1}],"type":"coastline"},{"arc":[{"x":135143,"y":128109},{"x":-1,"y":-20},{"x":-99,"y":15},{"x":-44,"y":-183},{"x":51,"y":-7},{"x":4,"y":-20},{"x":1,"y":0},{"x":2,"y":-1}],"type":"coastline"},{"arc":[{"x":136186,"y":128899},{"x":-100,"y":36},{"x":21,"y":202}],"type":"area"},{"arc":[{"x":135884,"y":128606},{"x":92,"y":-27},{"x":28,"y":14},{"x":-45,"y":54},{"x":68,"y":73},{"x":190,"y":-83},{"x":60,"y":132},{"x":-123,"y":69},{"x":32,"y":61}],"type":"area"},{"arc":[{"x":135514,"y":119320},{"x":91,"y":-16},{"x":56,"y":-37},{"x":-2,"y":23},{"x":23,"y":-22},{"x":81,"y":33},{"x":45,"y":-28},{"x":74,"y":0},{"x":3,"y":65},{"x":37,"y":14},{"x":67,"y":-96},{"x":63,"y":21},{"x":70,"y":-53},{"x":73,"y":9},{"x":-57,"y":-13},{"x":-17,"y":-52},{"x":-59,"y":86},{"x":-100,"y":-15},{"x":-52,"y":-20},{"x":26,"y":-35},{"x":-35,"y":-10},{"x":0,"y":-29},{"x":-69,"y":11},{"x":1,"y":-18},{"x":-143,"y":42},{"x":-25,"y":-10},{"x":-22,"y":40},{"x":24,"y":-7},{"x":-40,"y":15},{"x":-52,"y":-66},{"x":-50,"y":-11},{"x":-30,"y":-63}],"type":"coastline"},{"arc":[{"x":135495,"y":119078},{"x":107,"y":70},{"x":83,"y":19},{"x":59,"y":-69},{"x":24,"y":-126},{"x":115,"y":8},{"x":43,"y":44},{"x":37,"y":-34},{"x":-12,"y":-81},{"x":-43,"y":-49},{"x":33,"y":-43},{"x":110,"y":-34},{"x":148,"y":32},{"x":191,"y":-168},{"x":75,"y":45},{"x":66,"y":-13},{"x":37,"y":-39},{"x":131,"y":5},{"x":34,"y":33}],"type":"area"},{"arc":[{"x":136733,"y":118678},{"x":41,"y":36},{"x":126,"y":2},{"x":105,"y":56},{"x":41,"y":-10},{"x":35,"y":43},{"x":36,"y":-56},{"x":66,"y":9},{"x":64,"y":69},{"x":32,"y":-4},{"x":18,"y":77},{"x":49,"y":-16},{"x":60,"y":28},{"x":-21,"y":53},{"x":80,"y":57},{"x":-5,"y":32}],"type":"admin"},{"arc":[{"x":137460,"y":119054},{"x":16,"y":198},{"x":-33,"y":31},{"x":172,"y":44},{"x":9,"y":116},{"x":-55,"y":-10},{"x":-11,"y":-55},{"x":-65,"y":-2},{"x":-87,"y":122},{"x":-59,"y":-28},{"x":-83,"y":76},{"x":-59,"y":-84},{"x":-74,"y":44},{"x":-10,"y":-40},{"x":-42,"y":-20},{"x":5,"y":-37},{"x":-27,"y":14},{"x":-99,"y":-34},{"x":-53,"y":-54},{"x":-18,"y":-105},{"x":-29,"y":-17},{"x":-167,"y":12},{"x":-7,"y":98},{"x":-66,"y":1},{"x":-15,"y":57},{"x":-102,"y":1},{"x":-94,"y":76},{"x":57,"y":111},{"x":-98,"y":-2},{"x":-118,"y":57},{"x":-41,"y":-28},{"x":-104,"y":11},{"x":-68,"y":-45},{"x":-154,"y":53},{"x":-163,"y":-273},{"x":-83,"y":15},{"x":-121,"y":-37}],"type":"area"},{"arc":[{"x":143767,"y":124077},{"x":162,"y":-132},{"x":20,"y":-51},{"x":-56,"y":-38},{"x":-47,"y":-103},{"x":-119,"y":-9},{"x":-8,"y":-240},{"x":81,"y":-152},{"x":-31,"y":-75}],"type":"area"},{"arc":[{"x":143769,"y":123277},{"x":40,"y":-116},{"x":193,"y":-67},{"x":14,"y":-38},{"x":79,"y":-43},{"x":39,"y":-128},{"x":127,"y":-17},{"x":68,"y":-90},{"x":-38,"y":-176},{"x":-95,"y":0},{"x":79,"y":-203},{"x":-23,"y":-23},{"x":17,"y":-27},{"x":-45,"y":-41},{"x":17,"y":-55},{"x":-21,"y":-96},{"x":-85,"y":-36},{"x":-76,"y":64},{"x":-25,"y":-28},{"x":-55,"y":3},{"x":-34,"y":-58},{"x":22,"y":-160},{"x":66,"y":-63},{"x":-51,"y":-51},{"x":7,"y":-102},{"x":46,"y":-39},{"x":-8,"y":-40},{"x":30,"y":-40},{"x":-47,"y":-82},{"x":17,"y":-44},{"x":-22,"y":-42},{"x":37,"y":-120},{"x":54,"y":-46},{"x":-45,"y":-66},{"x":-4,"y":-123},{"x":-20,"y":-3}],"type":"area"},{"arc":[{"x":144027,"y":121081},{"x":58,"y":-91},{"x":178,"y":-51},{"x":27,"y":21},{"x":83,"y":-16},{"x":55,"y":48},{"x":81,"y":-5},{"x":161,"y":90},{"x":126,"y":-75},{"x":69,"y":-3},{"x":47,"y":-102},{"x":41,"y":-27},{"x":10,"y":-59},{"x":109,"y":-21},{"x":35,"y":31},{"x":124,"y":-27},{"x":-8,"y":82},{"x":57,"y":128},{"x":88,"y":21},{"x":60,"y":-21},{"x":41,"y":31},{"x":3,"y":60},{"x":49,"y":30},{"x":237,"y":51},{"x":91,"y":84},{"x":-4,"y":54},{"x":43,"y":76},{"x":-26,"y":28},{"x":27,"y":112},{"x":287,"y":181},{"x":45,"y":85},{"x":38,"y":10},{"x":6,"y":-34},{"x":76,"y":-18},{"x":133,"y":101},{"x":168,"y":-69},{"x":34,"y":53},{"x":123,"y":52},{"x":66,"y":81},{"x":78,"y":26}],"type":"admin"},{"arc":[{"x":146943,"y":121998},{"x":0,"y":24},{"x":33,"y":4},{"x":-19,"y":82},{"x":33,"y":11},{"x":29,"y":-26},{"x":22,"y":34},{"x":-81,"y":33},{"x":22,"y":38},{"x":33,"y":-5},{"x":-33,"y":32},{"x":12,"y":59},{"x":12,"y":-45},{"x":9,"y":24},{"x":134,"y":50},{"x":-66,"y":8},{"x":-67,"y":-36},{"x":28,"y":24},{"x":-37,"y":-16},{"x":-35,"y":35},{"x":-23,"y":56},{"x":2,"y":41},{"x":36,"y":23},{"x":-16,"y":72},{"x":51,"y":-11},{"x":25,"y":18},{"x":1,"y":91},{"x":37,"y":23},{"x":8,"y":43},{"x":-41,"y":-9},{"x":-39,"y":60},{"x":-6,"y":107},{"x":-42,"y":14},{"x":-13,"y":64},{"x":-37,"y":-11},{"x":-6,"y":185},{"x":-88,"y":-59},{"x":-19,"y":20},{"x":37,"y":41},{"x":-37,"y":-41},{"x":-61,"y":54},{"x":22,"y":34},{"x":52,"y":7},{"x":72,"y":51},{"x":25,"y":-14},{"x":0,"y":32},{"x":46,"y":10},{"x":-22,"y":27},{"x":26,"y":26},{"x":-22,"y":104}],"type":"coastline"},{"arc":[{"x":136584,"y":123543},{"x":-141,"y":78},{"x":-2,"y":77},{"x":-46,"y":32},{"x":19,"y":147},{"x":-25,"y":59},{"x":-55,"y":-8},{"x":-122,"y":78}],"type":"area"},{"arc":[{"x":136212,"y":124006},{"x":-47,"y":11},{"x":-136,"y":-29},{"x":-213,"y":97}],"type":"area"},{"arc":[{"x":135816,"y":124085},{"x":-19,"y":-21},{"x":-115,"y":-10},{"x":97,"y":-139},{"x":-15,"y":-116},{"x":-34,"y":0},{"x":66,"y":-118},{"x":-51,"y":-10},{"x":-28,"y":-34},{"x":-73,"y":27},{"x":-35,"y":-44},{"x":17,"y":-59},{"x":-46,"y":-40},{"x":-96,"y":2},{"x":-33,"y":60},{"x":-64,"y":25},{"x":5,"y":-20},{"x":-35,"y":17},{"x":30,"y":-35},{"x":-28,"y":-18},{"x":-49,"y":44},{"x":-22,"y":-21},{"x":-74,"y":55},{"x":13,"y":21},{"x":-36,"y":49},{"x":-52,"y":22}],"type":"admin"},{"arc":[{"x":135084,"y":123626},{"x":115,"y":-112},{"x":-51,"y":9},{"x":-5,"y":-16},{"x":39,"y":-22},{"x":-25,"y":-31},{"x":15,"y":-96},{"x":-32,"y":-118},{"x":-131,"y":-63}],"type":"admin"},{"arc":[{"x":135009,"y":123177},{"x":54,"y":10},{"x":-51,"y":-33},{"x":44,"y":17},{"x":30,"y":-31},{"x":-27,"y":-11},{"x":-9,"y":18},{"x":8,"y":-19},{"x":-149,"y":-62},{"x":35,"y":-83},{"x":-47,"y":-19},{"x":-105,"y":51},{"x":104,"y":-52},{"x":153,"y":-184},{"x":156,"y":43},{"x":5,"y":25},{"x":23,"y":-34},{"x":-209,"y":-59},{"x":191,"y":50},{"x":6,"y":-26}],"type":"coastline"},{"arc":[{"x":135221,"y":122778},{"x":183,"y":19},{"x":118,"y":-20},{"x":10,"y":-21},{"x":115,"y":30},{"x":72,"y":48},{"x":-5,"y":94},{"x":39,"y":-4},{"x":2,"y":-20},{"x":73,"y":-13},{"x":15,"y":-77},{"x":41,"y":-33},{"x":-6,"y":41},{"x":34,"y":14},{"x":21,"y":-39},{"x":-17,"y":-19},{"x":55,"y":-55},{"x":23,"y":12},{"x":31,"y":-35},{"x":43,"y":22},{"x":28,"y":-57},{"x":54,"y":14},{"x":90,"y":-47},{"x":41,"y":-166}],"type":"area"},{"arc":[{"x":136930,"y":122829},{"x":-33,"y":34},{"x":-38,"y":-2},{"x":-62,"y":-50},{"x":-47,"y":48},{"x":15,"y":86},{"x":45,"y":62},{"x":-13,"y":59},{"x":-27,"y":10},{"x":7,"y":51},{"x":-24,"y":-7},{"x":7,"y":65},{"x":-47,"y":19},{"x":41,"y":29},{"x":12,"y":52},{"x":-34,"y":75},{"x":-68,"y":6},{"x":-37,"y":25},{"x":6,"y":34},{"x":-44,"y":14},{"x":-5,"y":104}],"type":"area"},{"arc":[{"x":135114,"y":118378},{"x":28,"y":-53},{"x":-28,"y":49},{"x":31,"y":25},{"x":-31,"y":-21}],"type":"coastline"},{"arc":[{"x":135624,"y":118963},{"x":-33,"y":-15},{"x":25,"y":-30},{"x":28,"y":30},{"x":-20,"y":15}],"type":"coastline"},{"arc":[{"x":135495,"y":119078},{"x":55,"y":-13},{"x":40,"y":39},{"x":87,"y":22},{"x":-24,"y":-232},{"x":-46,"y":-34},{"x":-22,"y":34},{"x":-53,"y":-5},{"x":9,"y":-47},{"x":-38,"y":-22},{"x":-85,"y":88},{"x":-35,"y":-76},{"x":-97,"y":-42},{"x":-140,"y":-147},{"x":45,"y":-38},{"x":-3,"y":-33},{"x":-25,"y":0},{"x":25,"y":-6},{"x":14,"y":-143},{"x":-56,"y":-23},{"x":60,"y":-120},{"x":68,"y":65},{"x":-42,"y":-68},{"x":81,"y":-10},{"x":-19,"y":-50},{"x":20,"y":50},{"x":68,"y":-40},{"x":79,"y":-80},{"x":0,"y":-32},{"x":-56,"y":5},{"x":-18,"y":-59},{"x":15,"y":106},{"x":-87,"y":13},{"x":11,"y":-53},{"x":-54,"y":-75},{"x":-9,"y":-98},{"x":39,"y":26},{"x":1,"y":-29},{"x":-34,"y":-1},{"x":42,"y":-21},{"x":-130,"y":-130},{"x":-50,"y":5},{"x":14,"y":-25},{"x":-12,"y":15},{"x":-40,"y":-51}],"type":"coastline"},{"arc":[{"x":135093,"y":117743},{"x":89,"y":-8},{"x":41,"y":29},{"x":78,"y":-111},{"x":295,"y":88},{"x":32,"y":65},{"x":30,"y":-4},{"x":-11,"y":60},{"x":43,"y":17},{"x":21,"y":-42},{"x":44,"y":-13},{"x":0,"y":-68},{"x":49,"y":-54},{"x":37,"y":-20},{"x":79,"y":37},{"x":59,"y":-35},{"x":17,"y":22},{"x":109,"y":-11},{"x":10,"y":-64},{"x":75,"y":-47},{"x":32,"y":10},{"x":45,"y":-53},{"x":-14,"y":-42},{"x":56,"y":-26}],"type":"admin"},{"arc":[{"x":136309,"y":117473},{"x":64,"y":32},{"x":-15,"y":58},{"x":43,"y":38},{"x":-34,"y":60},{"x":45,"y":9},{"x":9,"y":78},{"x":113,"y":-5},{"x":33,"y":-46},{"x":6,"y":41},{"x":30,"y":-8},{"x":2,"y":23},{"x":101,"y":37},{"x":1,"y":77},{"x":34,"y":22},{"x":-19,"y":46},{"x":-66,"y":40},{"x":24,"y":111},{"x":-70,"y":101},{"x":58,"y":21},{"x":126,"y":-10},{"x":1,"y":35},{"x":41,"y":-1},{"x":-128,"y":104},{"x":-112,"y":40},{"x":-12,"y":31},{"x":72,"y":126},{"x":110,"y":93},{"x":-33,"y":52}],"type":"admin"},{"arc":[{"x":139307,"y":125748},{"x":-81,"y":50},{"x":-51,"y":-50},{"x":-44,"y":-6},{"x":-59,"y":-76},{"x":3,"y":-36},{"x":-115,"y":-69},{"x":-22,"y":-72},{"x":-67,"y":-56},{"x":-45,"y":1},{"x":-102,"y":-63}],"type":"area"},{"arc":[{"x":138724,"y":125371},{"x":-156,"y":-150},{"x":-121,"y":2},{"x":-16,"y":51},{"x":-54,"y":24},{"x":-60,"y":-11},{"x":-41,"y":-67},{"x":-61,"y":-37},{"x":-42,"y":-100},{"x":11,"y":-169},{"x":-49,"y":-55},{"x":29,"y":-62},{"x":-62,"y":-28},{"x":2,"y":-173},{"x":-89,"y":-118},{"x":26,"y":-67},{"x":78,"y":-34},{"x":-30,"y":-73},{"x":24,"y":-232},{"x":-34,"y":-40}],"type":"area"},{"arc":[{"x":138079,"y":124032},{"x":-17,"y":-42},{"x":38,"y":-94},{"x":-16,"y":-49},{"x":87,"y":-123},{"x":-11,"y":-56},{"x":213,"y":-29}],"type":"area"},{"arc":[{"x":138373,"y":123639},{"x":74,"y":73},{"x":-82,"y":51},{"x":39,"y":69},{"x":-14,"y":113},{"x":127,"y":64},{"x":186,"y":-1},{"x":61,"y":67},{"x":60,"y":-1},{"x":65,"y":90},{"x":8,"y":61},{"x":32,"y":-41},{"x":104,"y":48},{"x":28,"y":-74},{"x":29,"y":38},{"x":-3,"y":84},{"x":-90,"y":61},{"x":81,"y":48},{"x":18,"y":76},{"x":119,"y":-11},{"x":87,"y":-73},{"x":90,"y":131},{"x":107,"y":23}],"type":"admin"},{"arc":[{"x":139499,"y":124535},{"x":-19,"y":161},{"x":47,"y":329},{"x":-182,"y":0},{"x":-70,"y":129},{"x":-11,"y":144},{"x":27,"y":84},{"x":-86,"y":28},{"x":-2,"y":90},{"x":90,"y":116},{"x":14,"y":132}],"type":"area"},{"arc":[{"x":136888,"y":128487},{"x":-81,"y":132},{"x":-38,"y":4},{"x":8,"y":-39},{"x":-40,"y":-23},{"x":-31,"y":25},{"x":-29,"y":71},{"x":41,"y":26},{"x":-84,"y":78},{"x":-7,"y":80},{"x":33,"y":45},{"x":-50,"y":130},{"x":-56,"y":-22},{"x":-40,"y":13},{"x":-10,"y":-39},{"x":-15,"y":61},{"x":3,"y":-82},{"x":-38,"y":9},{"x":1,"y":-27},{"x":-57,"y":-16},{"x":-8,"y":-37},{"x":-20,"y":29},{"x":-127,"y":0},{"x":-29,"y":27},{"x":-28,"y":-33}],"type":"area"},{"arc":[{"x":137166,"y":127655},{"x":111,"y":-62},{"x":111,"y":37},{"x":203,"y":-23},{"x":112,"y":193},{"x":-28,"y":53},{"x":-60,"y":32},{"x":29,"y":30},{"x":110,"y":35},{"x":59,"y":-20},{"x":39,"y":24},{"x":81,"y":-11},{"x":50,"y":-61},{"x":49,"y":28},{"x":104,"y":2}],"type":"area"},{"arc":[{"x":138136,"y":127912},{"x":-42,"y":100},{"x":-76,"y":-9},{"x":-11,"y":26},{"x":-102,"y":43},{"x":-37,"y":60},{"x":-88,"y":-16},{"x":-27,"y":60},{"x":-188,"y":23},{"x":-11,"y":70},{"x":-68,"y":25},{"x":-101,"y":-34},{"x":-8,"y":-68},{"x":-57,"y":-30},{"x":5,"y":-95},{"x":-15,"y":37},{"x":-41,"y":-2},{"x":-30,"y":130},{"x":-199,"y":31},{"x":-27,"y":59},{"x":-117,"y":54},{"x":-8,"y":111}],"type":"admin"},{"arc":[{"x":136570,"y":128813},{"x":-22,"y":0},{"x":20,"y":-26},{"x":-54,"y":-7},{"x":17,"y":87},{"x":58,"y":-52},{"x":-19,"y":-2}],"type":"area"},{"arc":[{"x":135613,"y":124357},{"x":80,"y":-22},{"x":102,"y":36},{"x":29,"y":-107},{"x":-31,"y":-54},{"x":34,"y":-57},{"x":-27,"y":-39},{"x":16,"y":-29}],"type":"admin"},{"arc":[{"x":136212,"y":124006},{"x":-1,"y":94},{"x":-60,"y":49},{"x":59,"y":45},{"x":-6,"y":46},{"x":58,"y":22},{"x":-20,"y":44},{"x":35,"y":113},{"x":97,"y":81},{"x":37,"y":92},{"x":-31,"y":3},{"x":-1,"y":29},{"x":56,"y":58},{"x":4,"y":62},{"x":55,"y":36},{"x":69,"y":1},{"x":55,"y":-59},{"x":117,"y":98},{"x":35,"y":39},{"x":9,"y":85},{"x":-27,"y":68}],"type":"area"},{"arc":[{"x":136752,"y":125012},{"x":39,"y":115},{"x":72,"y":56},{"x":-10,"y":79},{"x":82,"y":102},{"x":61,"y":42},{"x":18,"y":-19},{"x":45,"y":29},{"x":90,"y":-17},{"x":43,"y":85},{"x":-33,"y":113},{"x":51,"y":104},{"x":35,"y":31},{"x":128,"y":29},{"x":31,"y":47},{"x":114,"y":31},{"x":28,"y":35},{"x":76,"y":16},{"x":90,"y":91}],"type":"area"},{"arc":[{"x":137712,"y":125981},{"x":174,"y":282},{"x":-160,"y":33},{"x":-65,"y":40},{"x":-130,"y":-22},{"x":-37,"y":53},{"x":-226,"y":37},{"x":-59,"y":84}],"type":"area"},{"arc":[{"x":135221,"y":122778},{"x":-1,"y":-65},{"x":22,"y":-3},{"x":-25,"y":-15},{"x":53,"y":-15},{"x":-77,"y":-20},{"x":33,"y":-2},{"x":98,"y":-102},{"x":58,"y":50},{"x":28,"y":-27},{"x":-81,"y":-42},{"x":122,"y":-182},{"x":16,"y":17},{"x":14,"y":-31},{"x":-52,"y":-32},{"x":42,"y":-63},{"x":87,"y":37},{"x":15,"y":55},{"x":29,"y":-50}],"type":"coastline"},{"arc":[{"x":136888,"y":128487},{"x":128,"y":41},{"x":-48,"y":72},{"x":39,"y":-16},{"x":9,"y":53},{"x":37,"y":1},{"x":-19,"y":45},{"x":28,"y":40},{"x":104,"y":-45},{"x":75,"y":18},{"x":16,"y":45},{"x":15,"y":-22},{"x":45,"y":59},{"x":59,"y":18},{"x":-6,"y":38},{"x":50,"y":24},{"x":42,"y":-21},{"x":84,"y":125},{"x":57,"y":-5},{"x":35,"y":57},{"x":64,"y":-49},{"x":21,"y":95},{"x":52,"y":23}],"type":"admin"},{"arc":[{"x":136584,"y":123543},{"x":17,"y":67},{"x":52,"y":-23},{"x":45,"y":25},{"x":63,"y":-21},{"x":34,"y":1},{"x":-1,"y":28},{"x":99,"y":-3},{"x":132,"y":125},{"x":76,"y":28},{"x":37,"y":6},{"x":91,"y":-73},{"x":59,"y":59},{"x":171,"y":31}],"type":"area"},{"arc":[{"x":137459,"y":123793},{"x":29,"y":32},{"x":75,"y":-10},{"x":-64,"y":18},{"x":-5,"y":40},{"x":-18,"y":-33},{"x":-50,"y":18},{"x":23,"y":41},{"x":11,"y":-23},{"x":34,"y":12},{"x":25,"y":62},{"x":24,"y":-16},{"x":-35,"y":99},{"x":-55,"y":-15},{"x":-64,"y":86},{"x":-60,"y":11},{"x":-101,"y":-20},{"x":-136,"y":-74},{"x":69,"y":138},{"x":-26,"y":117},{"x":42,"y":35},{"x":-34,"y":74},{"x":99,"y":32},{"x":23,"y":63},{"x":44,"y":-4},{"x":48,"y":294},{"x":-145,"y":37},{"x":-10,"y":56},{"x":-72,"y":15},{"x":25,"y":50},{"x":-73,"y":71},{"x":-40,"y":-18},{"x":-130,"y":53},{"x":-85,"y":-4},{"x":-3,"y":-25},{"x":-72,"y":7}],"type":"area"},{"arc":[{"x":138757,"y":127731},{"x":-37,"y":25},{"x":-92,"y":-22},{"x":-26,"y":-32},{"x":-21,"y":11},{"x":-31,"y":175},{"x":-69,"y":16},{"x":-62,"y":61},{"x":-31,"y":-90},{"x":-47,"y":-28},{"x":-29,"y":10},{"x":-7,"y":-20},{"x":-161,"y":40},{"x":-8,"y":35}],"type":"admin"},{"arc":[{"x":137712,"y":125981},{"x":14,"y":-115},{"x":186,"y":-55},{"x":37,"y":17},{"x":24,"y":-77},{"x":92,"y":-39},{"x":98,"y":2}],"type":"area"},{"arc":[{"x":138163,"y":125714},{"x":-80,"y":79},{"x":81,"y":164},{"x":-114,"y":59},{"x":4,"y":52},{"x":177,"y":133},{"x":65,"y":15},{"x":45,"y":-30},{"x":143,"y":13},{"x":31,"y":62},{"x":-49,"y":51},{"x":-5,"y":92},{"x":66,"y":47},{"x":99,"y":25},{"x":-72,"y":40},{"x":13,"y":50},{"x":19,"y":20},{"x":35,"y":-23},{"x":106,"y":7},{"x":-4,"y":39},{"x":71,"y":98},{"x":163,"y":84},{"x":-13,"y":139},{"x":17,"y":40},{"x":94,"y":47},{"x":1,"y":19},{"x":-62,"y":24},{"x":-25,"y":91},{"x":5,"y":38},{"x":106,"y":36},{"x":-27,"y":51},{"x":-71,"y":6},{"x":-50,"y":77},{"x":-28,"y":-34},{"x":-20,"y":52},{"x":-67,"y":12},{"x":-10,"y":-33},{"x":-50,"y":36},{"x":55,"y":311},{"x":-55,"y":28}],"type":"area"},{"arc":[{"x":138079,"y":124032},{"x":-104,"y":43},{"x":-205,"y":-5},{"x":-65,"y":-156},{"x":71,"y":-138},{"x":-63,"y":-34},{"x":-138,"y":72},{"x":-44,"y":-18},{"x":32,"y":-34},{"x":-21,"y":-45},{"x":-52,"y":-24},{"x":13,"y":108},{"x":-44,"y":-8}],"type":"area"},{"arc":[{"x":137572,"y":122623},{"x":23,"y":21},{"x":124,"y":-15},{"x":68,"y":65},{"x":152,"y":-11},{"x":83,"y":-36},{"x":102,"y":82},{"x":103,"y":15}],"type":"admin"},{"arc":[{"x":138227,"y":122744},{"x":54,"y":58},{"x":134,"y":23},{"x":44,"y":92},{"x":46,"y":-10},{"x":-19,"y":96},{"x":98,"y":40},{"x":95,"y":-19},{"x":166,"y":147}],"type":"admin"},{"arc":[{"x":138845,"y":123171},{"x":-104,"y":50},{"x":-54,"y":94},{"x":-78,"y":-9},{"x":-36,"y":23},{"x":-76,"y":-16},{"x":-41,"y":27},{"x":-39,"y":-10},{"x":-42,"y":40},{"x":30,"y":35},{"x":-41,"y":42},{"x":36,"y":126},{"x":-27,"y":66}],"type":"admin"},{"arc":[{"x":138939,"y":128269},{"x":-1,"y":-95},{"x":-31,"y":-33},{"x":17,"y":-47},{"x":-56,"y":-18},{"x":-53,"y":22},{"x":-25,"y":-19},{"x":23,"y":-59},{"x":-55,"y":-14},{"x":-24,"y":-56},{"x":44,"y":-100},{"x":-21,"y":-119}],"type":"admin"},{"arc":[{"x":138163,"y":125714},{"x":334,"y":10},{"x":-34,"y":-144},{"x":81,"y":4},{"x":-17,"y":-78},{"x":71,"y":7},{"x":54,"y":-29},{"x":-5,"y":-46},{"x":77,"y":-67}],"type":"area"},{"arc":[{"x":139307,"y":125748},{"x":24,"y":36},{"x":-16,"y":28},{"x":70,"y":101},{"x":-134,"y":146},{"x":15,"y":52},{"x":91,"y":-38},{"x":103,"y":14},{"x":66,"y":-73},{"x":91,"y":35},{"x":28,"y":37},{"x":-22,"y":-71},{"x":37,"y":2},{"x":36,"y":-52},{"x":59,"y":-30},{"x":70,"y":19},{"x":16,"y":-44},{"x":74,"y":3},{"x":71,"y":-33},{"x":49,"y":6},{"x":20,"y":64},{"x":132,"y":71},{"x":-18,"y":79},{"x":21,"y":57},{"x":-28,"y":73},{"x":30,"y":62},{"x":73,"y":24},{"x":-60,"y":222},{"x":38,"y":144},{"x":-1,"y":232},{"x":90,"y":113},{"x":57,"y":-19},{"x":121,"y":111},{"x":174,"y":-37}],"type":"area"},{"arc":[{"x":143769,"y":123277},{"x":-173,"y":62},{"x":-97,"y":-11},{"x":-139,"y":-121},{"x":-19,"y":-128},{"x":27,"y":-42},{"x":-28,"y":-110},{"x":-59,"y":-42},{"x":8,"y":-47},{"x":-122,"y":-61},{"x":-34,"y":-111},{"x":-86,"y":-32},{"x":-65,"y":38},{"x":-71,"y":4},{"x":-46,"y":59},{"x":-136,"y":-106},{"x":-15,"y":-123},{"x":-69,"y":-98},{"x":-133,"y":44},{"x":-63,"y":122},{"x":-90,"y":76},{"x":-38,"y":-28},{"x":-128,"y":15},{"x":-34,"y":-42},{"x":-60,"y":-14},{"x":-53,"y":-170},{"x":-14,"y":-21},{"x":-42,"y":3},{"x":-23,"y":-105},{"x":148,"y":-105},{"x":40,"y":-118},{"x":-11,"y":-81},{"x":24,"y":-49},{"x":-74,"y":-99},{"x":49,"y":-103},{"x":54,"y":-43},{"x":76,"y":7},{"x":-44,"y":-83},{"x":-38,"y":6},{"x":-104,"y":-63},{"x":-27,"y":-55},{"x":-59,"y":74},{"x":-117,"y":76},{"x":-63,"y":1},{"x":-13,"y":-40},{"x":-48,"y":-16}],"type":"area"},{"arc":[{"x":141760,"y":121597},{"x":-91,"y":-129},{"x":109,"y":-121},{"x":76,"y":-20},{"x":-6,"y":-56},{"x":-49,"y":-20},{"x":19,"y":-75},{"x":50,"y":-34},{"x":57,"y":8},{"x":130,"y":-105},{"x":28,"y":3},{"x":81,"y":-141},{"x":-35,"y":-82},{"x":-108,"y":-66},{"x":-36,"y":-132},{"x":146,"y":-181},{"x":226,"y":-36},{"x":26,"y":-77},{"x":118,"y":-113},{"x":26,"y":-116},{"x":88,"y":-58},{"x":11,"y":-91},{"x":62,"y":-14},{"x":9,"y":-60},{"x":45,"y":-49},{"x":38,"y":-2},{"x":115,"y":-173}],"type":"area"},{"arc":[{"x":142895,"y":119657},{"x":58,"y":31},{"x":98,"y":4},{"x":33,"y":38},{"x":80,"y":-100},{"x":78,"y":-14}],"type":"admin"},{"arc":[{"x":143242,"y":119616},{"x":165,"y":51},{"x":9,"y":43},{"x":111,"y":69},{"x":75,"y":110},{"x":6,"y":76},{"x":-43,"y":12},{"x":-28,"y":62},{"x":50,"y":120},{"x":-16,"y":107},{"x":48,"y":124},{"x":-38,"y":8},{"x":-40,"y":126},{"x":-20,"y":-3},{"x":3,"y":109},{"x":-79,"y":49},{"x":120,"y":-19},{"x":34,"y":36},{"x":70,"y":9},{"x":7,"y":44},{"x":82,"y":57},{"x":37,"y":77},{"x":2,"y":101},{"x":-32,"y":47},{"x":46,"y":53},{"x":125,"y":46},{"x":91,"y":-49}],"type":"admin"},{"arc":[{"x":139499,"y":124535},{"x":19,"y":-99},{"x":-70,"y":-71},{"x":44,"y":-58},{"x":-7,"y":-104},{"x":233,"y":-32},{"x":77,"y":26},{"x":127,"y":-125},{"x":76,"y":-37},{"x":80,"y":24},{"x":22,"y":55},{"x":80,"y":54},{"x":54,"y":17},{"x":56,"y":-25},{"x":150,"y":131},{"x":32,"y":64},{"x":66,"y":-6},{"x":42,"y":-134},{"x":135,"y":32},{"x":122,"y":-44},{"x":184,"y":112},{"x":75,"y":-92},{"x":87,"y":35},{"x":36,"y":-25},{"x":56,"y":12},{"x":53,"y":-35},{"x":18,"y":-119},{"x":-51,"y":-176}],"type":"admin"},{"arc":[{"x":141295,"y":123915},{"x":32,"y":-45},{"x":69,"y":-22},{"x":78,"y":-133},{"x":34,"y":76},{"x":72,"y":25},{"x":51,"y":-55},{"x":118,"y":-24},{"x":159,"y":59},{"x":76,"y":83},{"x":80,"y":4},{"x":57,"y":77},{"x":147,"y":21},{"x":34,"y":43},{"x":66,"y":22},{"x":45,"y":71},{"x":91,"y":-6}],"type":"area"},{"arc":[{"x":128230,"y":122910},{"x":-98,"y":97},{"x":-93,"y":-2},{"x":-59,"y":-74},{"x":-32,"y":-4},{"x":-13,"y":-109},{"x":113,"y":-10},{"x":60,"y":51},{"x":-29,"y":2},{"x":5,"y":29},{"x":25,"y":3},{"x":-19,"y":-29},{"x":47,"y":26},{"x":-18,"y":28},{"x":65,"y":-33},{"x":46,"y":25}],"type":"coastline"},{"arc":[{"x":128480,"y":122703},{"x":-12,"y":-50},{"x":14,"y":49},{"x":22,"y":20},{"x":-24,"y":-19}],"type":"coastline"},{"arc":[{"x":129116,"y":121772},{"x":-28,"y":14},{"x":22,"y":-32},{"x":6,"y":18}],"type":"coastline"},{"arc":[{"x":128994,"y":123427},{"x":-196,"y":-396},{"x":-209,"y":-189},{"x":-59,"y":-132},{"x":-24,"y":4},{"x":-24,"y":-28},{"x":0,"y":-54},{"x":-27,"y":29},{"x":28,"y":-30},{"x":12,"y":-197},{"x":-149,"y":-427},{"x":13,"y":-50},{"x":115,"y":33},{"x":110,"y":-27},{"x":56,"y":-76},{"x":-13,"y":-17},{"x":21,"y":13},{"x":41,"y":-60},{"x":15,"y":-159},{"x":54,"y":-11},{"x":239,"y":112},{"x":3,"y":42},{"x":36,"y":3},{"x":-22,"y":69},{"x":140,"y":-17},{"x":38,"y":26},{"x":15,"y":-47},{"x":-31,"y":-18},{"x":-27,"y":-89},{"x":-56,"y":-47},{"x":-10,"y":41},{"x":-31,"y":-1},{"x":-40,"y":-63},{"x":82,"y":-61},{"x":7,"y":-145},{"x":-47,"y":-72},{"x":27,"y":-21},{"x":-6,"y":-44},{"x":-72,"y":-99},{"x":117,"y":142},{"x":76,"y":42},{"x":47,"y":-39},{"x":74,"y":9},{"x":41,"y":-15},{"x":1,"y":-34},{"x":38,"y":7},{"x":7,"y":-99},{"x":199,"y":37},{"x":68,"y":-39},{"x":-23,"y":-29},{"x":36,"y":-18},{"x":31,"y":77},{"x":261,"y":122},{"x":36,"y":84},{"x":137,"y":55},{"x":-20,"y":43},{"x":-9,"y":-18},{"x":-56,"y":38},{"x":8,"y":80},{"x":-51,"y":56},{"x":54,"y":126},{"x":32,"y":-16},{"x":69,"y":70},{"x":-62,"y":-8},{"x":39,"y":28},{"x":-17,"y":1},{"x":9,"y":19},{"x":-32,"y":-12},{"x":15,"y":29},{"x":13,"y":0},{"x":26,"y":-45},{"x":-13,"y":25},{"x":38,"y":34},{"x":226,"y":100}],"type":"coastline"},{"arc":[{"x":141295,"y":123915},{"x":-85,"y":-33},{"x":-48,"y":-93},{"x":-31,"y":2},{"x":-58,"y":-54}],"type":"admin"},{"arc":[{"x":141073,"y":123737},{"x":14,"y":-122},{"x":-260,"y":-106},{"x":-49,"y":-116},{"x":-39,"y":-18},{"x":-75,"y":-228},{"x":-77,"y":19},{"x":-90,"y":-19},{"x":-94,"y":-71},{"x":-89,"y":-122},{"x":58,"y":-76},{"x":61,"y":-15},{"x":-49,"y":-119},{"x":30,"y":-156},{"x":-215,"y":-167},{"x":137,"y":-78},{"x":115,"y":9},{"x":-42,"y":-86},{"x":-45,"y":-33},{"x":-21,"y":24},{"x":-3,"y":-32},{"x":57,"y":-206},{"x":42,"y":-34},{"x":196,"y":-88},{"x":74,"y":53},{"x":170,"y":-115},{"x":92,"y":35}],"type":"admin"},{"arc":[{"x":140971,"y":121870},{"x":31,"y":66},{"x":55,"y":10},{"x":32,"y":-72},{"x":82,"y":-11},{"x":37,"y":-64},{"x":87,"y":-37},{"x":-17,"y":-71},{"x":48,"y":-60},{"x":178,"y":0},{"x":78,"y":-76},{"x":89,"y":69},{"x":89,"y":-27}],"type":"area"},{"arc":[{"x":131364,"y":122563},{"x":269,"y":99},{"x":12,"y":57},{"x":136,"y":80},{"x":23,"y":47},{"x":93,"y":33},{"x":-29,"y":58},{"x":44,"y":63},{"x":-55,"y":-39},{"x":28,"y":26},{"x":-11,"y":20},{"x":25,"y":-6},{"x":-12,"y":12},{"x":-30,"y":-3},{"x":1,"y":34},{"x":79,"y":86},{"x":12,"y":-13},{"x":55,"y":19},{"x":-53,"y":-6},{"x":36,"y":39},{"x":14,"y":-25},{"x":-9,"y":30},{"x":186,"y":95},{"x":88,"y":18},{"x":-29,"y":11},{"x":216,"y":107},{"x":26,"y":47},{"x":128,"y":42},{"x":-93,"y":-27},{"x":82,"y":34},{"x":3,"y":43},{"x":83,"y":50},{"x":10,"y":58},{"x":-24,"y":-57},{"x":-13,"y":113},{"x":101,"y":111},{"x":-45,"y":-29},{"x":30,"y":71},{"x":133,"y":91},{"x":57,"y":107},{"x":-41,"y":-42},{"x":20,"y":68},{"x":331,"y":259},{"x":280,"y":163},{"x":118,"y":169},{"x":20,"y":119},{"x":-92,"y":74},{"x":-6,"y":-15},{"x":-122,"y":71},{"x":-3,"y":51},{"x":-38,"y":13},{"x":16,"y":11},{"x":-79,"y":-7},{"x":-87,"y":28},{"x":-202,"y":-126},{"x":-124,"y":-119},{"x":6,"y":-38},{"x":-17,"y":37},{"x":-80,"y":-78},{"x":-23,"y":0},{"x":-1,"y":18},{"x":27,"y":7},{"x":-32,"y":-9},{"x":-1,"y":-14},{"x":-77,"y":-8},{"x":-126,"y":7},{"x":-96,"y":-56},{"x":-9,"y":16},{"x":-48,"y":-47},{"x":-13,"y":29},{"x":-13,"y":-54},{"x":-132,"y":-74},{"x":-142,"y":-185},{"x":-295,"y":-161},{"x":-92,"y":-89},{"x":10,"y":65},{"x":-169,"y":-153},{"x":67,"y":-22},{"x":-50,"y":-13},{"x":-16,"y":-21},{"x":23,"y":22},{"x":7,"y":-22},{"x":-43,"y":-41},{"x":-9,"y":87},{"x":-134,"y":-104},{"x":16,"y":11},{"x":32,"y":-53},{"x":-41,"y":-2},{"x":14,"y":-16},{"x":-33,"y":-2},{"x":11,"y":-23},{"x":-42,"y":-30},{"x":-5,"y":78},{"x":-118,"y":-90},{"x":20,"y":-18},{"x":-29,"y":-18},{"x":-4,"y":41},{"x":-76,"y":-34},{"x":51,"y":-46},{"x":-53,"y":9},{"x":-7,"y":22},{"x":5,"y":-26},{"x":-23,"y":12},{"x":13,"y":25},{"x":-169,"y":-47}],"type":"coastline"},{"arc":[{"x":140971,"y":121870},{"x":-37,"y":-238},{"x":-126,"y":-52},{"x":-44,"y":-54},{"x":-21,"y":-62},{"x":30,"y":-64},{"x":-33,"y":-59},{"x":-56,"y":-7},{"x":-74,"y":48},{"x":17,"y":-45},{"x":-34,"y":22},{"x":-72,"y":-9},{"x":-149,"y":-71},{"x":-82,"y":-72},{"x":-67,"y":0},{"x":-14,"y":54},{"x":-37,"y":13},{"x":-165,"y":-73},{"x":-70,"y":97},{"x":-81,"y":-16},{"x":-65,"y":81}],"type":"admin"},{"arc":[{"x":138034,"y":120315},{"x":18,"y":-82},{"x":-36,"y":-83},{"x":36,"y":-59},{"x":153,"y":-6},{"x":57,"y":55},{"x":38,"y":-16},{"x":1,"y":-31},{"x":-84,"y":-79},{"x":-11,"y":-57},{"x":65,"y":-80},{"x":24,"y":-119},{"x":75,"y":-16},{"x":85,"y":-69},{"x":67,"y":21},{"x":47,"y":-18},{"x":35,"y":41},{"x":19,"y":-10},{"x":28,"y":-86},{"x":-38,"y":-165},{"x":63,"y":57},{"x":45,"y":-44},{"x":-18,"y":-40}],"type":"area"},{"arc":[{"x":138703,"y":119429},{"x":97,"y":9},{"x":112,"y":-87},{"x":54,"y":3},{"x":29,"y":-63},{"x":62,"y":-29},{"x":14,"y":-35},{"x":-48,"y":-79},{"x":33,"y":-150},{"x":53,"y":-78},{"x":38,"y":32},{"x":84,"y":10},{"x":62,"y":-33},{"x":39,"y":23},{"x":257,"y":-38},{"x":62,"y":58},{"x":66,"y":-9},{"x":38,"y":20},{"x":63,"y":-43},{"x":116,"y":83},{"x":86,"y":-94},{"x":117,"y":-49},{"x":13,"y":-72},{"x":-26,"y":-43},{"x":51,"y":-81},{"x":104,"y":-16},{"x":81,"y":51},{"x":97,"y":-33},{"x":25,"y":-44}],"type":"admin"},{"arc":[{"x":140482,"y":118642},{"x":137,"y":46},{"x":87,"y":-72},{"x":153,"y":67},{"x":106,"y":-9},{"x":21,"y":-125},{"x":64,"y":-78},{"x":22,"y":-95}],"type":"admin"},{"arc":[{"x":141072,"y":118376},{"x":59,"y":7},{"x":141,"y":-38},{"x":132,"y":21},{"x":86,"y":155},{"x":171,"y":60}],"type":"admin"},{"arc":[{"x":141661,"y":118581},{"x":-48,"y":208},{"x":-70,"y":46},{"x":-31,"y":79},{"x":110,"y":132},{"x":-14,"y":163},{"x":91,"y":-18},{"x":67,"y":99},{"x":2,"y":63},{"x":168,"y":92},{"x":-17,"y":38},{"x":69,"y":53},{"x":132,"y":209},{"x":212,"y":-63},{"x":143,"y":25},{"x":30,"y":32},{"x":137,"y":-117},{"x":99,"y":-16},{"x":137,"y":27},{"x":17,"y":24}],"type":"admin"},{"arc":[{"x":136842,"y":120462},{"x":-88,"y":-61},{"x":-104,"y":-23},{"x":-34,"y":-88},{"x":29,"y":-21},{"x":-85,"y":-62},{"x":-60,"y":11},{"x":-62,"y":-47},{"x":-239,"y":10}],"type":"admin"},{"arc":[{"x":135550,"y":120309},{"x":38,"y":-48},{"x":-48,"y":8},{"x":48,"y":-10},{"x":40,"y":-70},{"x":77,"y":-1},{"x":37,"y":-106},{"x":-38,"y":-74},{"x":60,"y":-35},{"x":7,"y":-50},{"x":41,"y":-8},{"x":26,"y":-44},{"x":12,"y":34},{"x":15,"y":-34},{"x":-139,"y":-96},{"x":-59,"y":-88},{"x":-52,"y":-8},{"x":-17,"y":-72},{"x":19,"y":16},{"x":57,"y":-29},{"x":-22,"y":48},{"x":36,"y":-49},{"x":51,"y":29},{"x":19,"y":-36},{"x":-47,"y":-38},{"x":5,"y":-34},{"x":-64,"y":-18},{"x":39,"y":-40},{"x":-25,"y":-54},{"x":-92,"y":-10},{"x":-60,"y":-72}],"type":"coastline"},{"arc":[{"x":137460,"y":119054},{"x":84,"y":-7},{"x":1,"y":22},{"x":55,"y":18},{"x":94,"y":-59},{"x":52,"y":30},{"x":-4,"y":-32},{"x":117,"y":-23},{"x":-15,"y":-51},{"x":75,"y":-53},{"x":2,"y":-41}],"type":"admin"},{"arc":[{"x":137921,"y":118858},{"x":29,"y":8},{"x":33,"y":-38},{"x":63,"y":17},{"x":140,"y":114},{"x":52,"y":128},{"x":6,"y":86},{"x":-29,"y":32},{"x":113,"y":43},{"x":17,"y":90},{"x":113,"y":-25},{"x":34,"y":34},{"x":38,"y":-10},{"x":40,"y":40},{"x":133,"y":52}],"type":"admin"},{"arc":[{"x":138845,"y":123171},{"x":74,"y":15},{"x":32,"y":-50},{"x":136,"y":-56},{"x":123,"y":106},{"x":131,"y":-68},{"x":30,"y":-55}],"type":"admin"},{"arc":[{"x":139371,"y":123063},{"x":53,"y":-13},{"x":76,"y":77},{"x":70,"y":-5},{"x":38,"y":34},{"x":65,"y":-4},{"x":67,"y":118},{"x":187,"y":-69},{"x":112,"y":39},{"x":61,"y":125},{"x":39,"y":18},{"x":48,"y":-15},{"x":54,"y":71},{"x":136,"y":29},{"x":83,"y":113},{"x":2,"y":45},{"x":114,"y":53},{"x":72,"y":80},{"x":99,"y":-11},{"x":37,"y":-50},{"x":131,"y":57},{"x":8,"y":43},{"x":77,"y":2},{"x":73,"y":-63}],"type":"admin"},{"arc":[{"x":134688,"y":123338},{"x":27,"y":-57},{"x":65,"y":45},{"x":-11,"y":51}],"type":"coastline"},{"arc":[{"x":134805,"y":123395},{"x":19,"y":-47},{"x":28,"y":11},{"x":-19,"y":50}],"type":"coastline"},{"arc":[{"x":134945,"y":123263},{"x":-35,"y":67},{"x":-169,"y":-91},{"x":40,"y":-174},{"x":-7,"y":37},{"x":146,"y":61},{"x":-32,"y":74},{"x":32,"y":14},{"x":32,"y":-76},{"x":19,"y":8},{"x":-26,"y":80}],"type":"coastline"},{"arc":[{"x":134852,"y":123418},{"x":82,"y":-64},{"x":-26,"y":-9},{"x":58,"y":-57},{"x":24,"y":4},{"x":-26,"y":-9},{"x":54,"y":-76},{"x":-25,"y":14},{"x":16,"y":-44}],"type":"coastline"},{"arc":[{"x":138227,"y":122744},{"x":22,"y":-66},{"x":-21,"y":-50},{"x":34,"y":-60},{"x":-70,"y":-124},{"x":12,"y":-69},{"x":-50,"y":-80},{"x":117,"y":26},{"x":62,"y":-16},{"x":27,"y":-163},{"x":82,"y":-66},{"x":-1,"y":-83},{"x":138,"y":-20},{"x":71,"y":-58},{"x":44,"y":-1},{"x":31,"y":-43},{"x":51,"y":1},{"x":87,"y":-156}],"type":"area"},{"arc":[{"x":139284,"y":121864},{"x":11,"y":96},{"x":-24,"y":57},{"x":-34,"y":29},{"x":-53,"y":-12},{"x":-65,"y":63},{"x":-12,"y":55},{"x":47,"y":62},{"x":12,"y":74},{"x":-111,"y":60},{"x":63,"y":9},{"x":13,"y":65},{"x":-44,"y":92},{"x":37,"y":71},{"x":-29,"y":42},{"x":58,"y":93},{"x":166,"y":105},{"x":27,"y":87},{"x":-19,"y":42},{"x":44,"y":109}],"type":"area"},{"arc":[{"x":136309,"y":117473},{"x":45,"y":-79},{"x":92,"y":-8},{"x":-28,"y":-242},{"x":116,"y":-21},{"x":59,"y":37},{"x":40,"y":-36},{"x":26,"y":8},{"x":34,"y":-74},{"x":44,"y":-28},{"x":193,"y":76},{"x":41,"y":-12},{"x":10,"y":46},{"x":54,"y":38},{"x":34,"y":-32},{"x":78,"y":-12},{"x":-8,"y":74},{"x":69,"y":-7},{"x":77,"y":88},{"x":32,"y":117},{"x":32,"y":-8},{"x":33,"y":60},{"x":58,"y":9}],"type":"admin"},{"arc":[{"x":137440,"y":117467},{"x":94,"y":55},{"x":75,"y":-25},{"x":68,"y":89},{"x":22,"y":81},{"x":67,"y":-4},{"x":-37,"y":41},{"x":47,"y":70},{"x":49,"y":18},{"x":5,"y":75},{"x":-69,"y":-58},{"x":-46,"y":-6},{"x":-54,"y":113},{"x":72,"y":55},{"x":42,"y":87},{"x":84,"y":22},{"x":24,"y":60},{"x":-26,"y":84},{"x":11,"y":138},{"x":-89,"y":76},{"x":49,"y":57},{"x":-1,"y":212},{"x":94,"y":151}],"type":"admin"},{"arc":[{"x":137440,"y":117467},{"x":51,"y":-22},{"x":-8,"y":-32},{"x":78,"y":-60},{"x":51,"y":5},{"x":42,"y":-100},{"x":68,"y":13},{"x":36,"y":-31},{"x":50,"y":-59},{"x":15,"y":-48},{"x":-46,"y":-40},{"x":46,"y":-49},{"x":105,"y":1}],"type":"admin"},{"arc":[{"x":137928,"y":117045},{"x":80,"y":60},{"x":24,"y":67},{"x":43,"y":10},{"x":71,"y":99},{"x":53,"y":-38},{"x":118,"y":37},{"x":23,"y":-75},{"x":60,"y":10},{"x":38,"y":24},{"x":7,"y":47},{"x":54,"y":16},{"x":63,"y":79},{"x":8,"y":-47},{"x":59,"y":-36},{"x":50,"y":-139},{"x":36,"y":15},{"x":40,"y":-34},{"x":14,"y":54},{"x":52,"y":-44},{"x":19,"y":44},{"x":44,"y":-11},{"x":25,"y":82},{"x":174,"y":63},{"x":4,"y":114},{"x":70,"y":49},{"x":-37,"y":82},{"x":18,"y":24},{"x":54,"y":2},{"x":-30,"y":94},{"x":47,"y":2},{"x":43,"y":-29},{"x":130,"y":3},{"x":100,"y":74},{"x":183,"y":-29},{"x":53,"y":131},{"x":-16,"y":13},{"x":66,"y":45},{"x":-34,"y":34},{"x":29,"y":102},{"x":67,"y":8},{"x":37,"y":41},{"x":91,"y":-27},{"x":89,"y":5},{"x":86,"y":81},{"x":39,"y":-10},{"x":14,"y":-37},{"x":59,"y":43},{"x":63,"y":-2},{"x":18,"y":32},{"x":57,"y":-9},{"x":88,"y":51},{"x":51,"y":78},{"x":-23,"y":48},{"x":43,"y":39},{"x":2,"y":117},{"x":-62,"y":145}],"type":"admin"},{"arc":[{"x":146974,"y":120996},{"x":-11,"y":28},{"x":-20,"y":-7},{"x":8,"y":-29},{"x":23,"y":8}],"type":"coastline"},{"arc":[{"x":147040,"y":121369},{"x":-37,"y":19},{"x":-33,"y":-21},{"x":18,"y":-17},{"x":52,"y":19}],"type":"coastline"},{"arc":[{"x":143242,"y":119616},{"x":25,"y":-144},{"x":65,"y":-63},{"x":20,"y":-83},{"x":66,"y":-35},{"x":384,"y":104},{"x":52,"y":-50},{"x":86,"y":17},{"x":31,"y":-25},{"x":43,"y":44},{"x":26,"y":-29}],"type":"admin"},{"arc":[{"x":144040,"y":119352},{"x":61,"y":90},{"x":63,"y":-5},{"x":43,"y":37},{"x":81,"y":17},{"x":36,"y":-32},{"x":136,"y":20},{"x":65,"y":-47},{"x":35,"y":20},{"x":54,"y":-16},{"x":62,"y":47},{"x":17,"y":-18},{"x":20,"y":32},{"x":54,"y":11},{"x":5,"y":50},{"x":49,"y":-3},{"x":216,"y":211},{"x":-25,"y":19},{"x":27,"y":61},{"x":-38,"y":40},{"x":46,"y":67},{"x":-22,"y":55},{"x":47,"y":86},{"x":47,"y":25},{"x":22,"y":-45},{"x":132,"y":20},{"x":-8,"y":-54},{"x":116,"y":-10},{"x":56,"y":34},{"x":57,"y":-33},{"x":73,"y":19},{"x":79,"y":-22},{"x":41,"y":61},{"x":62,"y":20},{"x":52,"y":193},{"x":88,"y":70},{"x":27,"y":81},{"x":58,"y":18},{"x":54,"y":-26},{"x":83,"y":36},{"x":48,"y":-73},{"x":58,"y":-3},{"x":111,"y":-60},{"x":91,"y":8},{"x":51,"y":-107},{"x":-8,"y":-59},{"x":69,"y":-101},{"x":-38,"y":-42},{"x":23,"y":-96},{"x":137,"y":-126},{"x":95,"y":29},{"x":69,"y":-15},{"x":65,"y":39},{"x":113,"y":-51},{"x":-6,"y":-39},{"x":52,"y":-20}],"type":"area"},{"arc":[{"x":147041,"y":119765},{"x":-48,"y":24},{"x":58,"y":37},{"x":12,"y":52},{"x":-31,"y":44},{"x":62,"y":77},{"x":-252,"y":208},{"x":15,"y":34},{"x":65,"y":7},{"x":-17,"y":29},{"x":29,"y":31},{"x":-69,"y":74},{"x":79,"y":-9},{"x":31,"y":21},{"x":-29,"y":64},{"x":14,"y":34},{"x":-34,"y":4},{"x":-24,"y":47},{"x":36,"y":85},{"x":-33,"y":64},{"x":-30,"y":8},{"x":-13,"y":-26},{"x":-13,"y":27},{"x":-30,"y":-10},{"x":-3,"y":78},{"x":-59,"y":-17},{"x":-56,"y":37},{"x":28,"y":115},{"x":62,"y":3},{"x":-32,"y":14},{"x":-17,"y":-16},{"x":-6,"y":20},{"x":68,"y":15},{"x":-9,"y":-47},{"x":41,"y":12},{"x":14,"y":63},{"x":57,"y":37},{"x":-102,"y":-36},{"x":30,"y":55},{"x":50,"y":-11},{"x":-46,"y":44},{"x":142,"y":64},{"x":-22,"y":3},{"x":74,"y":91},{"x":-24,"y":32},{"x":40,"y":33},{"x":-52,"y":32},{"x":-31,"y":-29},{"x":-57,"y":8},{"x":30,"y":-74},{"x":-28,"y":33},{"x":-59,"y":-17},{"x":-39,"y":35},{"x":59,"y":51},{"x":27,"y":-4},{"x":-7,"y":19},{"x":44,"y":-4},{"x":-14,"y":30},{"x":30,"y":-9},{"x":23,"y":39},{"x":-76,"y":44},{"x":36,"y":35},{"x":-27,"y":46},{"x":124,"y":18},{"x":-11,"y":67},{"x":-35,"y":14},{"x":-52,"y":-40},{"x":-48,"y":43},{"x":20,"y":64},{"x":-32,"y":18},{"x":13,"y":41},{"x":71,"y":4},{"x":6,"y":22},{"x":17,"y":-24},{"x":69,"y":-10},{"x":-28,"y":67},{"x":28,"y":19},{"x":-31,"y":27},{"x":32,"y":73},{"x":-61,"y":21},{"x":2,"y":46},{"x":-49,"y":13}],"type":"coastline"},{"arc":[{"x":144040,"y":119352},{"x":12,"y":-54},{"x":45,"y":-24},{"x":-5,"y":-40},{"x":46,"y":-33},{"x":-4,"y":-108},{"x":70,"y":-63},{"x":10,"y":-63}],"type":"admin"},{"arc":[{"x":144569,"y":118909},{"x":67,"y":38},{"x":257,"y":-111},{"x":76,"y":36},{"x":79,"y":-34},{"x":1,"y":-33},{"x":68,"y":-61},{"x":10,"y":-60},{"x":340,"y":133},{"x":37,"y":-48},{"x":91,"y":43},{"x":135,"y":-34},{"x":3,"y":-122},{"x":97,"y":-52},{"x":85,"y":22},{"x":95,"y":-15},{"x":55,"y":27},{"x":9,"y":-32},{"x":74,"y":-44},{"x":32,"y":-81},{"x":42,"y":-2},{"x":23,"y":-115},{"x":67,"y":-106},{"x":76,"y":-16}],"type":"admin"},{"arc":[{"x":146388,"y":118242},{"x":-1,"y":42},{"x":-38,"y":-3},{"x":34,"y":58},{"x":-32,"y":26},{"x":47,"y":39},{"x":-21,"y":18},{"x":50,"y":-9},{"x":-8,"y":33},{"x":31,"y":9},{"x":6,"y":35},{"x":-53,"y":73},{"x":-1,"y":45},{"x":53,"y":61},{"x":-23,"y":43},{"x":24,"y":25},{"x":27,"y":-17},{"x":33,"y":38},{"x":-44,"y":45},{"x":38,"y":41},{"x":-23,"y":29},{"x":15,"y":-17},{"x":-8,"y":-8},{"x":-7,"y":6},{"x":-12,"y":-14},{"x":-5,"y":6},{"x":-5,"y":52},{"x":36,"y":25},{"x":19,"y":-40},{"x":40,"y":26},{"x":21,"y":-26},{"x":75,"y":69},{"x":1,"y":19},{"x":-37,"y":-4},{"x":3,"y":27},{"x":-7,"y":-21},{"x":-52,"y":5},{"x":-11,"y":31},{"x":28,"y":-29},{"x":19,"y":16},{"x":-34,"y":29},{"x":47,"y":-29},{"x":-41,"y":38},{"x":-3,"y":66},{"x":86,"y":42},{"x":-10,"y":30},{"x":66,"y":15},{"x":-12,"y":69},{"x":23,"y":20},{"x":-28,"y":23},{"x":46,"y":15},{"x":-32,"y":36},{"x":84,"y":23},{"x":101,"y":130},{"x":-10,"y":32},{"x":35,"y":6},{"x":-21,"y":34},{"x":30,"y":-4},{"x":9,"y":22},{"x":-28,"y":20},{"x":22,"y":28},{"x":23,"y":-18},{"x":26,"y":14},{"x":-40,"y":79},{"x":35,"y":62},{"x":67,"y":-13}],"type":"coastline"},{"arc":[{"x":134853,"y":135662},{"x":-74,"y":-88},{"x":74,"y":-38},{"x":-26,"y":-31},{"x":25,"y":-28},{"x":-35,"y":-7},{"x":20,"y":-29},{"x":-33,"y":-12},{"x":-30,"y":27},{"x":30,"y":3},{"x":-62,"y":2},{"x":-3,"y":-52},{"x":36,"y":-30},{"x":-28,"y":-15},{"x":27,"y":-22},{"x":-144,"y":-64},{"x":-26,"y":-40},{"x":30,"y":-117},{"x":-22,"y":-42},{"x":37,"y":-22},{"x":-20,"y":-72},{"x":176,"y":-31},{"x":-18,"y":-37},{"x":21,"y":-24},{"x":-108,"y":-12},{"x":-68,"y":-102},{"x":13,"y":-92},{"x":-61,"y":-73},{"x":-104,"y":10},{"x":-37,"y":58},{"x":-128,"y":-16},{"x":-47,"y":25},{"x":-26,"y":-61},{"x":-11,"y":22},{"x":25,"y":222},{"x":28,"y":21},{"x":19,"y":-58},{"x":-4,"y":86},{"x":50,"y":2},{"x":3,"y":-29},{"x":52,"y":34},{"x":-1,"y":99},{"x":-120,"y":-35},{"x":-21,"y":-36},{"x":-42,"y":78},{"x":-41,"y":-16},{"x":-11,"y":31},{"x":-97,"y":45},{"x":-43,"y":-11},{"x":-33,"y":-59},{"x":-53,"y":6},{"x":-10,"y":-32},{"x":-26,"y":20}],"type":"admin"},{"arc":[{"x":133906,"y":135020},{"x":-25,"y":-14},{"x":-49,"y":83},{"x":-49,"y":1},{"x":-49,"y":-51},{"x":-53,"y":-9},{"x":-34,"y":-102},{"x":-44,"y":5},{"x":-4,"y":-59},{"x":-50,"y":10},{"x":-6,"y":-45},{"x":-3,"y":52},{"x":-28,"y":6},{"x":-12,"y":-52},{"x":4,"y":55},{"x":-42,"y":-87},{"x":-56,"y":-32},{"x":-50,"y":23},{"x":1,"y":49},{"x":-49,"y":15},{"x":-29,"y":-48},{"x":-168,"y":33},{"x":-74,"y":-30},{"x":-18,"y":-152},{"x":29,"y":-133}],"type":"area"},{"arc":[{"x":133048,"y":134538},{"x":52,"y":-38},{"x":33,"y":21},{"x":93,"y":-51},{"x":-1,"y":-31},{"x":60,"y":-5},{"x":60,"y":-64},{"x":65,"y":-13},{"x":18,"y":-39}],"type":"area"},{"arc":[{"x":133428,"y":134318},{"x":15,"y":51},{"x":54,"y":27},{"x":-17,"y":51},{"x":25,"y":19},{"x":75,"y":-33},{"x":26,"y":45},{"x":33,"y":3},{"x":72,"y":-73},{"x":5,"y":49},{"x":91,"y":66},{"x":22,"y":64},{"x":111,"y":-34},{"x":6,"y":-40},{"x":79,"y":-3},{"x":31,"y":-43},{"x":26,"y":3},{"x":-3,"y":-91},{"x":38,"y":-41},{"x":-201,"y":-21},{"x":3,"y":-132},{"x":26,"y":-12},{"x":47,"y":-147},{"x":-31,"y":-23},{"x":-58,"y":13},{"x":-42,"y":-22},{"x":-18,"y":18},{"x":-63,"y":-34},{"x":-94,"y":24},{"x":-16,"y":-25},{"x":46,"y":-134},{"x":-40,"y":-59},{"x":-35,"y":-5},{"x":32,"y":-16},{"x":-23,"y":-5},{"x":22,"y":-35},{"x":40,"y":27},{"x":98,"y":-12},{"x":-13,"y":-139},{"x":45,"y":-37},{"x":14,"y":25},{"x":32,"y":-10},{"x":-1,"y":-77},{"x":79,"y":40},{"x":16,"y":-44},{"x":59,"y":16},{"x":-34,"y":-128},{"x":-33,"y":-5},{"x":46,"y":-47},{"x":1,"y":-61}],"type":"area"},{"arc":[{"x":134021,"y":133271},{"x":-2,"y":-72},{"x":35,"y":0},{"x":6,"y":-27},{"x":11,"y":24},{"x":81,"y":-1},{"x":18,"y":-111},{"x":50,"y":-1},{"x":-12,"y":-109},{"x":118,"y":-7},{"x":1,"y":-239},{"x":-49,"y":-64},{"x":-4,"y":-107},{"x":44,"y":-131},{"x":69,"y":-83},{"x":-13,"y":-69}],"type":"area"},{"arc":[{"x":134374,"y":132274},{"x":94,"y":-3},{"x":18,"y":-34},{"x":204,"y":-66},{"x":59,"y":7},{"x":35,"y":-23},{"x":53,"y":23},{"x":17,"y":-43},{"x":32,"y":-5},{"x":54,"y":165},{"x":29,"y":-15},{"x":46,"y":36},{"x":-14,"y":31},{"x":45,"y":5},{"x":4,"y":21},{"x":30,"y":-8},{"x":39,"y":32},{"x":59,"y":-10},{"x":-102,"y":26},{"x":94,"y":0},{"x":1,"y":40},{"x":-42,"y":-16},{"x":35,"y":19},{"x":-37,"y":78},{"x":30,"y":-6},{"x":-25,"y":19},{"x":32,"y":20}],"type":"area"},{"arc":[{"x":132658,"y":132660},{"x":-148,"y":16},{"x":-41,"y":-74},{"x":-124,"y":13},{"x":-1,"y":-19},{"x":-92,"y":-18},{"x":-9,"y":34},{"x":-103,"y":-10},{"x":-2,"y":73},{"x":-58,"y":-1},{"x":-3,"y":-49},{"x":-86,"y":-22},{"x":-1,"y":-53}],"type":"area"},{"arc":[{"x":131990,"y":132550},{"x":64,"y":1},{"x":-1,"y":-34}],"type":"area"},{"arc":[{"x":132053,"y":132517},{"x":0,"y":-90},{"x":126,"y":50},{"x":-1,"y":-121},{"x":95,"y":-4},{"x":0,"y":-44},{"x":142,"y":-2},{"x":0,"y":-122},{"x":63,"y":-2},{"x":1,"y":-39},{"x":50,"y":0}],"type":"area"},{"arc":[{"x":132529,"y":132143},{"x":0,"y":23},{"x":92,"y":0},{"x":1,"y":35},{"x":51,"y":2},{"x":7,"y":86}],"type":"area"},{"arc":[{"x":132680,"y":132289},{"x":-7,"y":26},{"x":-37,"y":0},{"x":26,"y":17},{"x":-34,"y":31},{"x":28,"y":55},{"x":-12,"y":45},{"x":26,"y":0},{"x":20,"y":55},{"x":3,"y":93},{"x":-35,"y":49}],"type":"admin"},{"arc":[{"x":134021,"y":133271},{"x":-153,"y":3},{"x":-27,"y":-109},{"x":-82,"y":10},{"x":-14,"y":73},{"x":-24,"y":0},{"x":-40,"y":-95},{"x":0,"y":-52},{"x":33,"y":-3},{"x":-8,"y":-122},{"x":-136,"y":2},{"x":-2,"y":-41},{"x":-59,"y":-18},{"x":-12,"y":-32}],"type":"area"},{"arc":[{"x":133497,"y":132887},{"x":22,"y":-2},{"x":-26,"y":-88},{"x":21,"y":-106}],"type":"admin"},{"arc":[{"x":133514,"y":132691},{"x":83,"y":-14},{"x":76,"y":29},{"x":-6,"y":-36},{"x":-54,"y":3},{"x":38,"y":-51},{"x":133,"y":6},{"x":3,"y":-46}],"type":"admin"},{"arc":[{"x":133787,"y":132582},{"x":-37,"y":-52},{"x":124,"y":-46},{"x":40,"y":-100},{"x":46,"y":-37},{"x":6,"y":-71},{"x":31,"y":-13},{"x":64,"y":41},{"x":53,"y":-32},{"x":-19,"y":-48},{"x":47,"y":-8}],"type":"admin"},{"arc":[{"x":134142,"y":132216},{"x":50,"y":65},{"x":100,"y":18},{"x":82,"y":-25}],"type":"area"},{"arc":[{"x":133428,"y":134318},{"x":17,"y":-50},{"x":-28,"y":-66},{"x":25,"y":-49},{"x":-85,"y":-14},{"x":-10,"y":24},{"x":-106,"y":-111},{"x":-42,"y":19},{"x":-43,"y":-47},{"x":-14,"y":-92},{"x":-68,"y":-5},{"x":-44,"y":-55},{"x":26,"y":-80},{"x":-97,"y":-16},{"x":-56,"y":-51},{"x":21,"y":-145},{"x":-20,"y":-97},{"x":45,"y":-70},{"x":-1,"y":-58},{"x":-49,"y":0},{"x":0,"y":-57}],"type":"area"},{"arc":[{"x":132899,"y":133298},{"x":63,"y":-17},{"x":13,"y":-34},{"x":77,"y":-4},{"x":2,"y":-77},{"x":43,"y":-20},{"x":103,"y":15},{"x":65,"y":-55},{"x":152,"y":-2},{"x":3,"y":-23},{"x":-82,"y":-12},{"x":7,"y":-48},{"x":-87,"y":-4},{"x":37,"y":-39},{"x":-25,"y":-51}],"type":"admin"},{"arc":[{"x":133270,"y":132927},{"x":27,"y":-38}],"type":"admin"},{"arc":[{"x":133297,"y":132889},{"x":71,"y":0},{"x":2,"y":68},{"x":62,"y":20},{"x":1,"y":-50},{"x":49,"y":-2},{"x":15,"y":-38}],"type":"admin"},{"arc":[{"x":132728,"y":133218},{"x":-113,"y":30},{"x":-7,"y":39},{"x":-33,"y":-66},{"x":-148,"y":1},{"x":0,"y":77},{"x":-90,"y":2},{"x":-16,"y":55},{"x":-103,"y":-63},{"x":-45,"y":59},{"x":-30,"y":-4},{"x":-31,"y":-46}],"type":"area"},{"arc":[{"x":132112,"y":133302},{"x":40,"y":-23},{"x":-39,"y":-24},{"x":41,"y":-12},{"x":-6,"y":-40},{"x":40,"y":-12},{"x":40,"y":-66},{"x":-79,"y":37},{"x":6,"y":-26},{"x":-75,"y":17},{"x":-18,"y":-48},{"x":-147,"y":8},{"x":-45,"y":-205}],"type":"admin"},{"arc":[{"x":131870,"y":132908},{"x":54,"y":-134},{"x":-55,"y":-51},{"x":2,"y":-64},{"x":-24,"y":-8}],"type":"admin"},{"arc":[{"x":131847,"y":132651},{"x":-29,"y":-33},{"x":32,"y":-101},{"x":28,"y":0},{"x":0,"y":36},{"x":112,"y":-3}],"type":"area"},{"arc":[{"x":132658,"y":132660},{"x":74,"y":56}],"type":"admin"},{"arc":[{"x":132732,"y":132716},{"x":1,"y":134},{"x":-74,"y":10},{"x":16,"y":123},{"x":76,"y":-1},{"x":9,"y":36},{"x":0,"y":53},{"x":-37,"y":38},{"x":5,"y":109}],"type":"admin"},{"arc":[{"x":133048,"y":134538},{"x":-75,"y":6},{"x":-52,"y":-68},{"x":-138,"y":20},{"x":-69,"y":-67},{"x":-39,"y":-3},{"x":-3,"y":-65},{"x":-69,"y":2},{"x":-83,"y":-193},{"x":-103,"y":-22},{"x":-57,"y":54},{"x":-47,"y":-72},{"x":-140,"y":-53},{"x":-178,"y":-152},{"x":-53,"y":36},{"x":-131,"y":27},{"x":-116,"y":-57}],"type":"area"},{"arc":[{"x":131695,"y":133931},{"x":-27,"y":-83},{"x":-85,"y":-50},{"x":-16,"y":-76}],"type":"admin"},{"arc":[{"x":131567,"y":133722},{"x":120,"y":-56},{"x":73,"y":75},{"x":-10,"y":-99},{"x":38,"y":-12},{"x":-32,"y":-11},{"x":35,"y":-11},{"x":29,"y":-54},{"x":23,"y":13},{"x":34,"y":-54},{"x":39,"y":20},{"x":5,"y":-93},{"x":99,"y":-84},{"x":40,"y":-82},{"x":25,"y":33},{"x":27,"y":-5}],"type":"admin"},{"arc":[{"x":132728,"y":133218},{"x":119,"y":5},{"x":17,"y":68},{"x":35,"y":7}],"type":"admin"},{"arc":[{"x":131847,"y":132651},{"x":-132,"y":-1},{"x":-44,"y":50},{"x":-73,"y":3},{"x":-25,"y":37},{"x":-41,"y":-17},{"x":14,"y":-53},{"x":-112,"y":-53},{"x":-107,"y":4},{"x":-50,"y":49}],"type":"admin"},{"arc":[{"x":131277,"y":132670},{"x":-13,"y":-39},{"x":-85,"y":-61},{"x":13,"y":-65},{"x":-64,"y":19},{"x":-28,"y":-30},{"x":25,"y":-55},{"x":-73,"y":-37},{"x":-120,"y":51},{"x":-48,"y":-17}],"type":"admin"},{"arc":[{"x":131840,"y":131809},{"x":6,"y":208},{"x":67,"y":107},{"x":-8,"y":45},{"x":-33,"y":3},{"x":14,"y":65},{"x":64,"y":35},{"x":-37,"y":146},{"x":49,"y":12},{"x":-12,"y":76},{"x":103,"y":11}],"type":"area"},{"arc":[{"x":134142,"y":132216},{"x":-4,"y":-14}],"type":"admin"},{"arc":[{"x":134138,"y":132202},{"x":35,"y":-79},{"x":0,"y":-129},{"x":67,"y":-79},{"x":-30,"y":-13},{"x":14,"y":-23},{"x":88,"y":-31},{"x":17,"y":-153}],"type":"admin"},{"arc":[{"x":133180,"y":131715},{"x":34,"y":59},{"x":-15,"y":26},{"x":36,"y":-4},{"x":7,"y":44},{"x":-46,"y":90},{"x":22,"y":114}],"type":"admin"},{"arc":[{"x":133218,"y":132044},{"x":-50,"y":-8},{"x":-26,"y":29},{"x":-41,"y":-30},{"x":-206,"y":22},{"x":42,"y":142}],"type":"admin"},{"arc":[{"x":132937,"y":132199},{"x":-64,"y":9},{"x":-29,"y":74},{"x":-61,"y":-21},{"x":-29,"y":38},{"x":-44,"y":-26},{"x":-30,"y":16}],"type":"admin"},{"arc":[{"x":132529,"y":132143},{"x":0,"y":-82},{"x":77,"y":-4},{"x":-5,"y":-96},{"x":142,"y":-18},{"x":-35,"y":-175},{"x":66,"y":30},{"x":22,"y":-11},{"x":-19,"y":-33},{"x":31,"y":-12},{"x":-61,"y":-22},{"x":7,"y":-55},{"x":-27,"y":-23},{"x":-52,"y":16}],"type":"area"},{"arc":[{"x":132997,"y":136201},{"x":-58,"y":-10},{"x":-138,"y":-85},{"x":-46,"y":46},{"x":-60,"y":-19},{"x":-57,"y":17},{"x":-24,"y":-126},{"x":-63,"y":-14},{"x":-59,"y":51},{"x":-81,"y":-75},{"x":-60,"y":16},{"x":-146,"y":-79},{"x":-23,"y":-94},{"x":-43,"y":-24},{"x":-144,"y":42}],"type":"admin"},{"arc":[{"x":131995,"y":135847},{"x":32,"y":-363},{"x":-117,"y":128},{"x":-93,"y":-82},{"x":-56,"y":-115},{"x":-35,"y":-6},{"x":-28,"y":-178},{"x":-127,"y":-62},{"x":9,"y":-153},{"x":-98,"y":-174}],"type":"admin"},{"arc":[{"x":131482,"y":134842},{"x":18,"y":-44},{"x":-34,"y":-79},{"x":13,"y":-40},{"x":-71,"y":-47},{"x":61,"y":-76},{"x":-50,"y":-33},{"x":-56,"y":3},{"x":3,"y":-57},{"x":116,"y":-145},{"x":98,"y":-51},{"x":45,"y":-145},{"x":-72,"y":-84},{"x":64,"y":-17},{"x":1,"y":-42},{"x":77,"y":-54}],"type":"admin"},{"arc":[{"x":133906,"y":135020},{"x":-38,"y":121},{"x":134,"y":200},{"x":-104,"y":118},{"x":17,"y":17},{"x":-72,"y":47},{"x":47,"y":20},{"x":-58,"y":4},{"x":-29,"y":194}],"type":"admin"},{"arc":[{"x":134138,"y":132202},{"x":-78,"y":-43},{"x":-39,"y":33},{"x":-29,"y":-15},{"x":-100,"y":35},{"x":-109,"y":-36},{"x":-110,"y":-80}],"type":"area"},{"arc":[{"x":133673,"y":132096},{"x":18,"y":-71},{"x":36,"y":-12},{"x":26,"y":-60},{"x":-31,"y":-59},{"x":-36,"y":-2},{"x":-22,"y":-35},{"x":28,"y":-35},{"x":-2,"y":64},{"x":27,"y":-20},{"x":-7,"y":-111},{"x":-53,"y":-43},{"x":-28,"y":12},{"x":9,"y":22},{"x":-12,"y":-16},{"x":28,"y":-56},{"x":55,"y":-36},{"x":-3,"y":-43},{"x":30,"y":-28}],"type":"area"},{"arc":[{"x":133673,"y":132096},{"x":-23,"y":-12},{"x":-47,"y":35},{"x":-66,"y":-29}],"type":"area"},{"arc":[{"x":133537,"y":132090},{"x":24,"y":-24},{"x":-6,"y":-97},{"x":-53,"y":-31},{"x":-49,"y":15},{"x":-95,"y":-148}],"type":"admin"},{"arc":[{"x":133787,"y":132582},{"x":-141,"y":-51},{"x":-4,"y":-48},{"x":-48,"y":-11},{"x":-32,"y":-51},{"x":-47,"y":-15},{"x":1,"y":32},{"x":-52,"y":-15}],"type":"area"},{"arc":[{"x":133464,"y":132423},{"x":-32,"y":-156},{"x":64,"y":-47},{"x":-11,"y":-64}],"type":"admin"},{"arc":[{"x":133485,"y":132156},{"x":52,"y":-66}],"type":"admin"},{"arc":[{"x":133514,"y":132691},{"x":-23,"y":-51},{"x":-43,"y":-10},{"x":4,"y":-42},{"x":-41,"y":-15},{"x":37,"y":-46}],"type":"area"},{"arc":[{"x":133448,"y":132527},{"x":16,"y":-104}],"type":"admin"},{"arc":[{"x":133297,"y":132889},{"x":-17,"y":-273},{"x":36,"y":-35},{"x":-12,"y":-38}],"type":"area"},{"arc":[{"x":133304,"y":132543},{"x":14,"y":-27},{"x":51,"y":27},{"x":63,"y":-29},{"x":16,"y":13}],"type":"admin"},{"arc":[{"x":133276,"y":132537},{"x":28,"y":6}],"type":"admin"},{"arc":[{"x":133270,"y":132927},{"x":-138,"y":34},{"x":5,"y":-57},{"x":33,"y":-15},{"x":-35,"y":-35},{"x":35,"y":-17},{"x":12,"y":-96},{"x":-72,"y":15},{"x":-15,"y":-86},{"x":-32,"y":-22}],"type":"area"},{"arc":[{"x":133063,"y":132648},{"x":73,"y":10},{"x":29,"y":-32},{"x":40,"y":23},{"x":71,"y":-112}],"type":"admin"},{"arc":[{"x":132732,"y":132716},{"x":28,"y":-43},{"x":27,"y":28},{"x":58,"y":-3},{"x":115,"y":-63},{"x":103,"y":13}],"type":"admin"},{"arc":[{"x":132540,"y":136826},{"x":-56,"y":-38},{"x":-28,"y":-64},{"x":-75,"y":2},{"x":-41,"y":-65},{"x":-61,"y":3},{"x":-38,"y":-44},{"x":-38,"y":-150},{"x":21,"y":-169},{"x":-53,"y":-30},{"x":-17,"y":-66},{"x":-170,"y":-89},{"x":-37,"y":-173}],"type":"area"},{"arc":[{"x":131947,"y":135943},{"x":48,"y":-96}],"type":"admin"},{"arc":[{"x":131465,"y":136087},{"x":79,"y":-11},{"x":128,"y":-71},{"x":154,"y":-17},{"x":89,"y":-61},{"x":32,"y":16}],"type":"admin"},{"arc":[{"x":131870,"y":132908},{"x":-59,"y":-82},{"x":-25,"y":3},{"x":-28,"y":86},{"x":24,"y":88},{"x":-52,"y":7},{"x":-53,"y":50},{"x":-79,"y":-3},{"x":-32,"y":26},{"x":-16,"y":80},{"x":56,"y":80},{"x":-17,"y":55},{"x":-19,"y":-5},{"x":-117,"y":169},{"x":-67,"y":49}],"type":"area"},{"arc":[{"x":131386,"y":133511},{"x":-55,"y":-46},{"x":22,"y":-132},{"x":-47,"y":-45},{"x":-51,"y":2},{"x":-77,"y":-81},{"x":47,"y":-56},{"x":82,"y":-3},{"x":-52,"y":-173},{"x":37,"y":-72},{"x":-51,"y":-86},{"x":4,"y":-73},{"x":44,"y":-23},{"x":-12,"y":-53}],"type":"area"},{"arc":[{"x":131567,"y":133722},{"x":-19,"y":-75},{"x":-90,"y":-50},{"x":-72,"y":-86}],"type":"area"},{"arc":[{"x":133218,"y":132044},{"x":41,"y":7},{"x":69,"y":67}],"type":"area"},{"arc":[{"x":133328,"y":132118},{"x":-69,"y":155},{"x":-85,"y":-20},{"x":-57,"y":43},{"x":-131,"y":-34}],"type":"area"},{"arc":[{"x":132986,"y":132262},{"x":-49,"y":-63}],"type":"area"},{"arc":[{"x":133485,"y":132156},{"x":-57,"y":2},{"x":4,"y":-49},{"x":-26,"y":-18},{"x":-64,"y":0},{"x":-14,"y":27}],"type":"area"},{"arc":[{"x":132986,"y":132262},{"x":36,"y":129},{"x":33,"y":-20},{"x":19,"y":27},{"x":16,"y":-25},{"x":10,"y":46},{"x":64,"y":-60},{"x":2,"y":24},{"x":97,"y":3},{"x":13,"y":151}],"type":"area"},{"arc":[{"x":133065,"y":132420},{"x":-46,"y":-22},{"x":46,"y":38},{"x":0,"y":-16}],"type":"area"},{"arc":[{"x":131482,"y":134842},{"x":-96,"y":41},{"x":-55,"y":-35},{"x":-15,"y":-78},{"x":-48,"y":-3},{"x":-15,"y":-63},{"x":-49,"y":-40},{"x":-112,"y":13},{"x":-8,"y":-61},{"x":-102,"y":-153},{"x":-96,"y":-15},{"x":-58,"y":48},{"x":-126,"y":-55}],"type":"area"},{"arc":[{"x":130702,"y":134441},{"x":5,"y":-18},{"x":-78,"y":-29},{"x":92,"y":-107},{"x":-145,"y":34},{"x":15,"y":-49},{"x":-36,"y":-84},{"x":-68,"y":-25},{"x":-106,"y":-142},{"x":-123,"y":-80}],"type":"area"},{"arc":[{"x":130258,"y":133941},{"x":-89,"y":-105},{"x":22,"y":-19},{"x":71,"y":8},{"x":37,"y":-81},{"x":34,"y":-14}],"type":"area"},{"arc":[{"x":130333,"y":133730},{"x":73,"y":17},{"x":26,"y":-16},{"x":48,"y":-195},{"x":55,"y":-42},{"x":-37,"y":-39},{"x":34,"y":0},{"x":13,"y":-28},{"x":73,"y":8},{"x":-27,"y":-67},{"x":90,"y":-118},{"x":179,"y":-37}],"type":"area"},{"arc":[{"x":130860,"y":133213},{"x":73,"y":262},{"x":96,"y":23},{"x":-23,"y":54},{"x":25,"y":52},{"x":184,"y":27},{"x":72,"y":-76},{"x":34,"y":11},{"x":65,"y":-55}],"type":"area"},{"arc":[{"x":130860,"y":133213},{"x":-24,"y":-201},{"x":-78,"y":-120},{"x":53,"y":-55},{"x":-46,"y":-101}],"type":"area"},{"arc":[{"x":130333,"y":133730},{"x":-56,"y":-93},{"x":-70,"y":-9},{"x":-74,"y":-58},{"x":23,"y":-169},{"x":-23,"y":-47},{"x":-60,"y":-32},{"x":-28,"y":-71},{"x":-140,"y":-69},{"x":-43,"y":11},{"x":-52,"y":80},{"x":-109,"y":-38},{"x":-93,"y":29},{"x":-110,"y":-7}],"type":"area"},{"arc":[{"x":130258,"y":133941},{"x":-63,"y":43},{"x":-51,"y":111},{"x":-96,"y":27},{"x":-33,"y":41},{"x":-81,"y":30},{"x":-44,"y":-18},{"x":-149,"y":20},{"x":-114,"y":39},{"x":-67,"y":-23}],"type":"area"},{"arc":[{"x":129560,"y":134211},{"x":101,"y":-131},{"x":-51,"y":-95},{"x":17,"y":-60},{"x":-29,"y":-129},{"x":-48,"y":-43},{"x":-20,"y":-179},{"x":-96,"y":-16},{"x":-12,"y":-57},{"x":-49,"y":-27}],"type":"area"},{"arc":[{"x":129560,"y":134211},{"x":-78,"y":124},{"x":-2,"y":89},{"x":-40,"y":38},{"x":29,"y":154},{"x":-41,"y":98},{"x":-75,"y":-53},{"x":-29,"y":20},{"x":25,"y":45},{"x":-108,"y":11},{"x":-36,"y":81},{"x":-142,"y":-29},{"x":-123,"y":-77},{"x":-24,"y":24},{"x":-75,"y":-24}],"type":"area"},{"arc":[{"x":128841,"y":134712},{"x":-28,"y":-74},{"x":-188,"y":-44},{"x":-77,"y":-64},{"x":-121,"y":-15},{"x":-67,"y":22},{"x":-59,"y":-32},{"x":-65,"y":2},{"x":-21,"y":-119},{"x":17,"y":-189},{"x":-122,"y":-102}],"type":"area"},{"arc":[{"x":127025,"y":131632},{"x":-54,"y":-58},{"x":-53,"y":-189},{"x":-97,"y":-69},{"x":-5,"y":-81},{"x":-37,"y":-49},{"x":176,"y":-249},{"x":-4,"y":-245},{"x":-127,"y":-236}],"type":"area"},{"arc":[{"x":126820,"y":130424},{"x":92,"y":-88},{"x":82,"y":36},{"x":39,"y":68},{"x":150,"y":-11},{"x":15,"y":-25}],"type":"admin"},{"arc":[{"x":127198,"y":130404},{"x":30,"y":11},{"x":38,"y":114},{"x":60,"y":-11},{"x":56,"y":82},{"x":39,"y":135},{"x":393,"y":103},{"x":97,"y":169}],"type":"admin"},{"arc":[{"x":127911,"y":131007},{"x":51,"y":179},{"x":55,"y":11},{"x":73,"y":-25},{"x":106,"y":83},{"x":31,"y":94},{"x":46,"y":43},{"x":98,"y":34},{"x":96,"y":-114},{"x":78,"y":4},{"x":60,"y":69},{"x":57,"y":2},{"x":67,"y":69},{"x":-34,"y":75},{"x":26,"y":74},{"x":74,"y":56},{"x":1,"y":47},{"x":-30,"y":112},{"x":-58,"y":47},{"x":-3,"y":63},{"x":-67,"y":41},{"x":-38,"y":122}],"type":"admin"},{"arc":[{"x":127783,"y":134114},{"x":-103,"y":36},{"x":-21,"y":46},{"x":-101,"y":23}],"type":"area"},{"arc":[{"x":127558,"y":134219},{"x":-100,"y":-52},{"x":-59,"y":-89},{"x":-98,"y":5},{"x":-88,"y":45},{"x":-66,"y":-59},{"x":-100,"y":-27},{"x":-105,"y":29},{"x":-33,"y":-51},{"x":-101,"y":-54},{"x":-111,"y":63},{"x":-85,"y":-50},{"x":-42,"y":11},{"x":-87,"y":41},{"x":-150,"y":144},{"x":-67,"y":-14},{"x":-57,"y":-82},{"x":-122,"y":49},{"x":-72,"y":-15},{"x":-59,"y":39},{"x":-69,"y":-57},{"x":-95,"y":-5},{"x":-52,"y":-44},{"x":-129,"y":177}],"type":"area"},{"arc":[{"x":125611,"y":134223},{"x":-82,"y":-7},{"x":-38,"y":-86},{"x":-96,"y":-20},{"x":-16,"y":-77},{"x":-106,"y":-50},{"x":-88,"y":6},{"x":-62,"y":52},{"x":-111,"y":12},{"x":4,"y":57},{"x":-36,"y":52},{"x":-54,"y":-7}],"type":"admin"},{"arc":[{"x":124811,"y":133862},{"x":107,"y":-3},{"x":-9,"y":-34},{"x":63,"y":-117},{"x":-99,"y":32},{"x":-165,"y":-105},{"x":-175,"y":21},{"x":17,"y":110},{"x":-61,"y":33},{"x":2,"y":39},{"x":-66,"y":44},{"x":-106,"y":-97},{"x":-112,"y":16}],"type":"admin"},{"arc":[{"x":124353,"y":133626},{"x":45,"y":-46},{"x":60,"y":-13},{"x":80,"y":32},{"x":80,"y":-39},{"x":31,"y":-46},{"x":-13,"y":-114},{"x":128,"y":-204},{"x":10,"y":-80},{"x":-44,"y":-54},{"x":-90,"y":-16}],"type":"admin"},{"arc":[{"x":126083,"y":135133},{"x":-49,"y":-27},{"x":-31,"y":-107},{"x":-148,"y":-59},{"x":-27,"y":-79},{"x":-45,"y":-24},{"x":-20,"y":-144},{"x":-53,"y":-71},{"x":3,"y":-72},{"x":-63,"y":-61},{"x":64,"y":-18},{"x":9,"y":-135},{"x":-112,"y":-113}],"type":"admin"},{"arc":[{"x":127558,"y":134219},{"x":16,"y":85},{"x":-51,"y":107},{"x":-154,"y":107},{"x":-10,"y":110},{"x":-63,"y":41},{"x":-51,"y":86},{"x":-83,"y":23},{"x":-100,"y":-27},{"x":-43,"y":34},{"x":-126,"y":-13},{"x":-38,"y":23},{"x":-35,"y":-25},{"x":-65,"y":30},{"x":-27,"y":94},{"x":74,"y":81},{"x":40,"y":102},{"x":57,"y":27},{"x":14,"y":62},{"x":-62,"y":49},{"x":-47,"y":-12},{"x":-113,"y":141},{"x":-35,"y":66},{"x":7,"y":36},{"x":48,"y":22},{"x":-27,"y":55},{"x":-50,"y":-11},{"x":-41,"y":58},{"x":-73,"y":18},{"x":-5,"y":31},{"x":-53,"y":5},{"x":-22,"y":40},{"x":-37,"y":6}],"type":"area"},{"arc":[{"x":128841,"y":134712},{"x":-33,"y":29},{"x":-9,"y":72},{"x":52,"y":244},{"x":61,"y":75},{"x":9,"y":138},{"x":33,"y":33},{"x":-26,"y":51},{"x":-90,"y":23},{"x":-39,"y":-25},{"x":-111,"y":37},{"x":-97,"y":68},{"x":-13,"y":236},{"x":-96,"y":64},{"x":20,"y":104},{"x":-33,"y":75},{"x":8,"y":65},{"x":-43,"y":60}],"type":"area"},{"arc":[{"x":130702,"y":134441},{"x":18,"y":69},{"x":-25,"y":124},{"x":45,"y":36},{"x":-7,"y":62},{"x":49,"y":50},{"x":-50,"y":52},{"x":-99,"y":19},{"x":-94,"y":54},{"x":-95,"y":-4},{"x":-60,"y":173},{"x":56,"y":59},{"x":-14,"y":61},{"x":41,"y":79},{"x":-60,"y":103},{"x":-73,"y":34},{"x":-26,"y":162},{"x":35,"y":182},{"x":109,"y":48},{"x":68,"y":-33},{"x":46,"y":35},{"x":-21,"y":228}],"type":"area"},{"arc":[{"x":127889,"y":126656},{"x":-25,"y":-15},{"x":24,"y":-9},{"x":-29,"y":2},{"x":24,"y":-49},{"x":37,"y":7},{"x":9,"y":28},{"x":-8,"y":43},{"x":-32,"y":-7}],"type":"coastline"},{"arc":[{"x":127971,"y":126591},{"x":-2,"y":36},{"x":-39,"y":13},{"x":-7,"y":-35},{"x":33,"y":0},{"x":0,"y":-26},{"x":15,"y":12}],"type":"coastline"},{"arc":[{"x":127943,"y":126564},{"x":2,"y":16},{"x":-25,"y":0},{"x":0,"y":10},{"x":-23,"y":-1},{"x":-18,"y":-8},{"x":32,"y":-27},{"x":-49,"y":-15},{"x":119,"y":31},{"x":-38,"y":-6}],"type":"coastline"},{"arc":[{"x":128654,"y":126089},{"x":-5,"y":22},{"x":10,"y":-48},{"x":-5,"y":26}],"type":"coastline"},{"arc":[{"x":129667,"y":124970},{"x":-5,"y":31},{"x":-19,"y":-33},{"x":-67,"y":-3},{"x":-76,"y":-43},{"x":-6,"y":-44},{"x":-46,"y":-9},{"x":49,"y":-123},{"x":63,"y":48},{"x":-11,"y":94},{"x":118,"y":82}],"type":"coastline"},{"arc":[{"x":129674,"y":125036},{"x":-33,"y":-6},{"x":20,"y":-29},{"x":13,"y":35}],"type":"coastline"},{"arc":[{"x":129744,"y":125328},{"x":-23,"y":51},{"x":-62,"y":-133},{"x":34,"y":-155},{"x":43,"y":49},{"x":8,"y":188}],"type":"coastline"},{"arc":[{"x":129912,"y":127558},{"x":-102,"y":-15},{"x":-31,"y":30},{"x":-64,"y":8},{"x":-84,"y":-20},{"x":-137,"y":50},{"x":-102,"y":-24},{"x":-3,"y":32},{"x":-96,"y":-12},{"x":-78,"y":-44},{"x":-49,"y":13},{"x":24,"y":248},{"x":-40,"y":113},{"x":-42,"y":-2},{"x":-45,"y":67},{"x":-15,"y":-18},{"x":-37,"y":14},{"x":-22,"y":-32},{"x":-8,"y":44}],"type":"area"},{"arc":[{"x":128981,"y":128010},{"x":-21,"y":-7},{"x":20,"y":-49},{"x":-34,"y":-79},{"x":-65,"y":-57},{"x":-21,"y":-115},{"x":-94,"y":-109},{"x":-64,"y":1},{"x":-46,"y":67},{"x":-72,"y":-12},{"x":-58,"y":48}],"type":"area"},{"arc":[{"x":128526,"y":127698},{"x":-74,"y":-3},{"x":-122,"y":-68},{"x":-60,"y":75},{"x":-54,"y":-1},{"x":-35,"y":-81},{"x":0,"y":-99},{"x":93,"y":-266},{"x":-52,"y":-84},{"x":1,"y":-56},{"x":-58,"y":-14},{"x":-15,"y":-253},{"x":-73,"y":18},{"x":-58,"y":-120},{"x":-28,"y":20},{"x":-22,"y":-26}],"type":"area"},{"arc":[{"x":127969,"y":126740},{"x":-31,"y":-52},{"x":23,"y":-44},{"x":172,"y":-6},{"x":98,"y":-45},{"x":92,"y":24},{"x":17,"y":-66},{"x":-58,"y":-15},{"x":-182,"y":85},{"x":201,"y":-125},{"x":2,"y":-37},{"x":23,"y":10},{"x":0,"y":-55},{"x":-32,"y":27},{"x":28,"y":-31},{"x":-44,"y":-68},{"x":15,"y":-20},{"x":-19,"y":18},{"x":-10,"y":-18},{"x":-2,"y":22},{"x":0,"y":-37},{"x":11,"y":-25},{"x":61,"y":10},{"x":-19,"y":-14},{"x":40,"y":-6},{"x":-28,"y":-30},{"x":-10,"y":25},{"x":19,"y":-61},{"x":30,"y":1},{"x":0,"y":-20},{"x":22,"y":26},{"x":135,"y":-46},{"x":-21,"y":8},{"x":14,"y":42},{"x":-46,"y":35},{"x":-43,"y":-20},{"x":-4,"y":78},{"x":69,"y":-2},{"x":5,"y":-47},{"x":-22,"y":-2},{"x":128,"y":-42},{"x":39,"y":33},{"x":28,"y":-100},{"x":6,"y":104},{"x":54,"y":-12},{"x":24,"y":-36},{"x":-68,"y":-66},{"x":26,"y":8},{"x":18,"y":-11},{"x":-27,"y":-62},{"x":57,"y":133},{"x":50,"y":-9},{"x":-6,"y":-187},{"x":26,"y":-115},{"x":109,"y":-103},{"x":19,"y":35},{"x":-24,"y":148},{"x":-99,"y":105},{"x":32,"y":46},{"x":19,"y":-12},{"x":-25,"y":-37},{"x":25,"y":36},{"x":131,"y":-85},{"x":-17,"y":-28},{"x":21,"y":-15},{"x":13,"y":19},{"x":42,"y":-48},{"x":-27,"y":-21},{"x":-52,"y":50},{"x":-31,"y":-4},{"x":93,"y":-78},{"x":119,"y":-173},{"x":24,"y":56},{"x":17,"y":-30},{"x":-36,"y":-18},{"x":34,"y":10},{"x":41,"y":-68},{"x":-21,"y":-23},{"x":25,"y":-11},{"x":-7,"y":-144},{"x":36,"y":-113},{"x":217,"y":59},{"x":-72,"y":1},{"x":29,"y":31},{"x":-21,"y":-2},{"x":-4,"y":24},{"x":39,"y":19},{"x":-22,"y":-34},{"x":35,"y":-3},{"x":-7,"y":28},{"x":46,"y":8},{"x":38,"y":-64},{"x":36,"y":41},{"x":36,"y":-40},{"x":177,"y":62},{"x":40,"y":53},{"x":-10,"y":85},{"x":58,"y":57}],"type":"coastline"},{"arc":[{"x":128407,"y":128045},{"x":-67,"y":-38},{"x":-125,"y":-19},{"x":-25,"y":-129},{"x":-51,"y":-6},{"x":-78,"y":-98},{"x":-52,"y":15},{"x":-6,"y":34},{"x":50,"y":85},{"x":-244,"y":-8},{"x":-27,"y":-45},{"x":-103,"y":-8}],"type":"admin"},{"arc":[{"x":127679,"y":127828},{"x":-129,"y":-54},{"x":-19,"y":-53},{"x":-61,"y":-21},{"x":-49,"y":-227},{"x":88,"y":-142},{"x":-5,"y":-102},{"x":-191,"y":-84},{"x":39,"y":-138},{"x":-39,"y":-14},{"x":-87,"y":-114},{"x":-27,"y":-184}],"type":"admin"},{"arc":[{"x":127199,"y":126695},{"x":47,"y":-70},{"x":-99,"y":-149},{"x":4,"y":-272},{"x":84,"y":-16},{"x":12,"y":-35},{"x":26,"y":4},{"x":8,"y":-33},{"x":39,"y":-12},{"x":77,"y":-132},{"x":-10,"y":-66}],"type":"area"},{"arc":[{"x":127387,"y":125914},{"x":78,"y":23},{"x":9,"y":39},{"x":-28,"y":46},{"x":-34,"y":4},{"x":-25,"y":144},{"x":-40,"y":8},{"x":49,"y":21},{"x":-52,"y":25},{"x":31,"y":15},{"x":-15,"y":27},{"x":85,"y":-43},{"x":8,"y":-92},{"x":49,"y":-21},{"x":51,"y":36},{"x":51,"y":-28},{"x":54,"y":8},{"x":-81,"y":-53},{"x":26,"y":-62},{"x":86,"y":48},{"x":29,"y":296},{"x":-41,"y":41},{"x":11,"y":104},{"x":-30,"y":-20},{"x":-14,"y":35},{"x":51,"y":21},{"x":67,"y":125},{"x":25,"y":2},{"x":-26,"y":18},{"x":25,"y":75},{"x":-20,"y":45},{"x":9,"y":25},{"x":44,"y":-7},{"x":36,"y":29},{"x":-6,"y":75},{"x":30,"y":-11},{"x":-3,"y":-76},{"x":-32,"y":-27},{"x":-25,"y":-163},{"x":110,"y":40},{"x":15,"y":62},{"x":25,"y":-8}],"type":"coastline"},{"arc":[{"x":128526,"y":127698},{"x":-4,"y":70},{"x":-97,"y":152},{"x":44,"y":32},{"x":50,"y":-4},{"x":6,"y":28},{"x":-101,"y":38},{"x":-17,"y":31}],"type":"area"},{"arc":[{"x":129460,"y":130463},{"x":56,"y":-83},{"x":113,"y":126},{"x":-28,"y":9},{"x":-141,"y":-52}],"type":"admin"},{"arc":[{"x":129396,"y":131799},{"x":-96,"y":-101},{"x":-77,"y":31},{"x":-33,"y":-16},{"x":-177,"y":-183},{"x":19,"y":-44},{"x":54,"y":24},{"x":-22,"y":-41},{"x":45,"y":-55},{"x":-2,"y":-120}],"type":"admin"},{"arc":[{"x":129107,"y":131294},{"x":64,"y":-17},{"x":50,"y":71},{"x":66,"y":-13},{"x":6,"y":56},{"x":45,"y":40},{"x":51,"y":-103},{"x":67,"y":-14},{"x":-10,"y":-32},{"x":107,"y":-43},{"x":-35,"y":-109},{"x":15,"y":-153},{"x":-54,"y":-121},{"x":102,"y":-64},{"x":-32,"y":-38},{"x":26,"y":-43},{"x":-34,"y":-11},{"x":80,"y":-41},{"x":59,"y":19},{"x":75,"y":-20},{"x":-78,"y":-117},{"x":130,"y":-180}],"type":"admin"},{"arc":[{"x":129807,"y":130361},{"x":93,"y":6},{"x":102,"y":-40},{"x":106,"y":-96},{"x":-8,"y":-22},{"x":67,"y":-5},{"x":41,"y":33},{"x":115,"y":-36},{"x":82,"y":26}],"type":"admin"},{"arc":[{"x":127199,"y":126695},{"x":-49,"y":-9},{"x":-215,"y":66},{"x":-141,"y":-26},{"x":-57,"y":-43}],"type":"admin"},{"arc":[{"x":126737,"y":126683},{"x":1,"y":-34},{"x":-63,"y":-33},{"x":-16,"y":-68},{"x":98,"y":-83},{"x":-60,"y":-175},{"x":23,"y":-61},{"x":-42,"y":-36}],"type":"admin"},{"arc":[{"x":126678,"y":126193},{"x":102,"y":-39},{"x":-4,"y":-121},{"x":38,"y":-23},{"x":4,"y":-93},{"x":31,"y":-9},{"x":11,"y":-72},{"x":-36,"y":-39},{"x":22,"y":-14},{"x":-40,"y":-114},{"x":67,"y":-51},{"x":15,"y":-51},{"x":30,"y":38},{"x":-39,"y":21},{"x":4,"y":53},{"x":17,"y":12},{"x":35,"y":-25},{"x":11,"y":29},{"x":-34,"y":-11},{"x":69,"y":68},{"x":-43,"y":-100},{"x":52,"y":97},{"x":49,"y":-15},{"x":98,"y":19},{"x":30,"y":29},{"x":-55,"y":-4},{"x":-6,"y":24},{"x":107,"y":43},{"x":-30,"y":56},{"x":16,"y":8},{"x":3,"y":-38},{"x":140,"y":56},{"x":45,"y":-13}],"type":"coastline"},{"arc":[{"x":127415,"y":125555},{"x":-10,"y":63},{"x":-22,"y":1},{"x":-33,"y":-51},{"x":39,"y":-38},{"x":26,"y":25}],"type":"coastline"},{"arc":[{"x":127453,"y":125819},{"x":-49,"y":-13},{"x":-57,"y":40},{"x":-13,"y":-73},{"x":84,"y":-5},{"x":35,"y":51}],"type":"coastline"},{"arc":[{"x":124229,"y":126237},{"x":-36,"y":32},{"x":22,"y":94},{"x":-35,"y":7},{"x":-34,"y":-87},{"x":83,"y":-46}],"type":"coastline"},{"arc":[{"x":124465,"y":126819},{"x":-110,"y":16},{"x":-2,"y":135},{"x":-51,"y":19},{"x":-52,"y":-12},{"x":-11,"y":-51},{"x":56,"y":-132},{"x":-22,"y":-16},{"x":14,"y":-45},{"x":-21,"y":1},{"x":52,"y":-44},{"x":0,"y":-90},{"x":-55,"y":80},{"x":-101,"y":-20},{"x":-54,"y":168},{"x":-101,"y":34},{"x":-47,"y":-13},{"x":-56,"y":63},{"x":-93,"y":-69},{"x":-82,"y":12},{"x":-135,"y":-39}],"type":"admin"},{"arc":[{"x":123594,"y":126816},{"x":80,"y":-136},{"x":76,"y":-43},{"x":-13,"y":26},{"x":33,"y":4},{"x":-14,"y":-21},{"x":23,"y":4},{"x":55,"y":-89},{"x":99,"y":0},{"x":67,"y":-123},{"x":37,"y":47},{"x":49,"y":-38},{"x":7,"y":21},{"x":81,"y":-77},{"x":38,"y":-8},{"x":-26,"y":28},{"x":49,"y":-12},{"x":-6,"y":-47},{"x":26,"y":-9},{"x":24,"y":57},{"x":100,"y":-55},{"x":-16,"y":-27},{"x":20,"y":14}],"type":"coastline"},{"arc":[{"x":124383,"y":126332},{"x":68,"y":18},{"x":417,"y":-132}],"type":"admin"},{"arc":[{"x":124868,"y":126218},{"x":62,"y":75},{"x":-2,"y":29},{"x":-17,"y":-12},{"x":35,"y":81},{"x":156,"y":17},{"x":49,"y":-40},{"x":68,"y":7},{"x":103,"y":48},{"x":38,"y":131}],"type":"admin"},{"arc":[{"x":125360,"y":126554},{"x":-71,"y":31},{"x":-55,"y":-21},{"x":-100,"y":29},{"x":-78,"y":-65},{"x":-66,"y":9},{"x":-23,"y":29},{"x":-31,"y":-27},{"x":-71,"y":4},{"x":-28,"y":80},{"x":-29,"y":-5},{"x":-32,"y":30},{"x":-60,"y":101},{"x":-119,"y":64},{"x":-100,"y":-13},{"x":-32,"y":19}],"type":"admin"},{"arc":[{"x":121846,"y":134972},{"x":-57,"y":-14},{"x":81,"y":26},{"x":-24,"y":-12}],"type":"coastline"},{"arc":[{"x":122457,"y":135218},{"x":-282,"y":-201},{"x":-68,"y":8},{"x":-80,"y":-67},{"x":-48,"y":12},{"x":-2,"y":37},{"x":-40,"y":-4},{"x":-16,"y":-12},{"x":-15,"y":2},{"x":11,"y":-45},{"x":19,"y":20},{"x":-11,"y":9},{"x":7,"y":24},{"x":22,"y":2},{"x":2,"y":-9},{"x":4,"y":8},{"x":18,"y":-11},{"x":-26,"y":-1},{"x":-2,"y":-49},{"x":-21,"y":9},{"x":13,"y":-35},{"x":-118,"y":-66},{"x":-9,"y":-45},{"x":-52,"y":44},{"x":20,"y":-31}],"type":"coastline"},{"arc":[{"x":121783,"y":134817},{"x":30,"y":-177},{"x":78,"y":-27},{"x":58,"y":-54},{"x":28,"y":-59},{"x":-9,"y":-72},{"x":76,"y":-42},{"x":-32,"y":-62},{"x":-93,"y":-52},{"x":-10,"y":-125},{"x":23,"y":-25},{"x":85,"y":1},{"x":98,"y":-63},{"x":25,"y":-43},{"x":-17,"y":-26},{"x":57,"y":-93},{"x":106,"y":-29},{"x":52,"y":-175},{"x":51,"y":20},{"x":64,"y":-26},{"x":-27,"y":-103},{"x":-31,"y":-42},{"x":-49,"y":-7},{"x":-14,"y":-48},{"x":-35,"y":3},{"x":-59,"y":-115},{"x":-49,"y":-15},{"x":-24,"y":68},{"x":-47,"y":7},{"x":-27,"y":-5},{"x":14,"y":-54},{"x":-38,"y":-26},{"x":20,"y":-31},{"x":-31,"y":-54},{"x":107,"y":-132},{"x":124,"y":-27},{"x":-107,"y":-72},{"x":4,"y":-42},{"x":75,"y":-55},{"x":-95,"y":-32},{"x":-6,"y":-59},{"x":37,"y":-43}],"type":"admin"},{"arc":[{"x":122195,"y":132804},{"x":16,"y":-48},{"x":-44,"y":-21},{"x":-3,"y":-59},{"x":39,"y":-42},{"x":-27,"y":-50},{"x":-36,"y":2},{"x":-4,"y":-64},{"x":54,"y":-26},{"x":80,"y":26},{"x":92,"y":-41},{"x":-4,"y":-52},{"x":24,"y":-28},{"x":66,"y":-11},{"x":29,"y":-44},{"x":36,"y":-121}],"type":"admin"},{"arc":[{"x":130358,"y":129348},{"x":-157,"y":30},{"x":-8,"y":83},{"x":-177,"y":67},{"x":-90,"y":78},{"x":-36,"y":-51},{"x":-41,"y":0},{"x":-154,"y":-111},{"x":-129,"y":-60},{"x":-64,"y":4},{"x":-100,"y":71},{"x":-11,"y":55},{"x":-59,"y":58},{"x":-70,"y":-12},{"x":-104,"y":24},{"x":-8,"y":51},{"x":-81,"y":54},{"x":-53,"y":75},{"x":-72,"y":25},{"x":-88,"y":2},{"x":-48,"y":-40},{"x":-15,"y":22},{"x":-49,"y":-1},{"x":-39,"y":-41},{"x":-191,"y":-9}],"type":"admin"},{"arc":[{"x":128514,"y":129722},{"x":-58,"y":-137},{"x":-80,"y":-11},{"x":-148,"y":-135},{"x":-37,"y":-195},{"x":63,"y":-79},{"x":-34,"y":-26},{"x":47,"y":-26},{"x":18,"y":19},{"x":-11,"y":-66},{"x":31,"y":-100},{"x":51,"y":-14},{"x":-5,"y":-66},{"x":-65,"y":-79},{"x":28,"y":-22},{"x":6,"y":-95},{"x":-44,"y":-189},{"x":15,"y":-65},{"x":93,"y":-75},{"x":44,"y":13},{"x":15,"y":-23},{"x":-34,"y":-49},{"x":24,"y":-26},{"x":-20,"y":-56},{"x":-71,"y":-75},{"x":27,"y":-45},{"x":-21,"y":-14},{"x":59,"y":-41}],"type":"admin"},{"arc":[{"x":128981,"y":128010},{"x":50,"y":114},{"x":76,"y":-68},{"x":-11,"y":151},{"x":201,"y":47},{"x":81,"y":3},{"x":74,"y":-53},{"x":240,"y":11},{"x":55,"y":-24},{"x":57,"y":45},{"x":122,"y":-97},{"x":39,"y":33}],"type":"area"},{"arc":[{"x":128514,"y":129722},{"x":-132,"y":51},{"x":-68,"y":97},{"x":-163,"y":142},{"x":-41,"y":-32},{"x":12,"y":-30},{"x":-51,"y":-28},{"x":-26,"y":-78},{"x":-77,"y":6},{"x":-50,"y":-39}],"type":"area"},{"arc":[{"x":127918,"y":129811},{"x":-208,"y":-282},{"x":-75,"y":-36},{"x":-88,"y":-94},{"x":-24,"y":-85},{"x":-104,"y":-101},{"x":79,"y":-282},{"x":-11,"y":-302},{"x":-106,"y":-12},{"x":34,"y":-151},{"x":-21,"y":-28},{"x":37,"y":-102},{"x":-38,"y":-86},{"x":-106,"y":-35},{"x":1,"y":-187},{"x":64,"y":-47},{"x":57,"y":-3},{"x":27,"y":-57},{"x":60,"y":27},{"x":97,"y":-71},{"x":68,"y":13},{"x":18,"y":-62}],"type":"area"},{"arc":[{"x":129807,"y":130361},{"x":-1,"y":-41},{"x":-72,"y":-63},{"x":-98,"y":87},{"x":-83,"y":28},{"x":-25,"y":-8},{"x":13,"y":-66},{"x":-66,"y":-40},{"x":-145,"y":-6},{"x":-140,"y":-57},{"x":-74,"y":44},{"x":-131,"y":28}],"type":"area"},{"arc":[{"x":128985,"y":130267},{"x":-12,"y":-115},{"x":-84,"y":-21},{"x":-89,"y":-4},{"x":-43,"y":44},{"x":-15,"y":-42},{"x":-71,"y":4},{"x":-13,"y":-49},{"x":-52,"y":34},{"x":-62,"y":105},{"x":-76,"y":-80},{"x":-94,"y":-8},{"x":-84,"y":-82},{"x":-72,"y":32},{"x":-43,"y":-21},{"x":-66,"y":19},{"x":-111,"y":83},{"x":-55,"y":136},{"x":73,"y":189},{"x":30,"y":34},{"x":35,"y":-5},{"x":90,"y":48},{"x":22,"y":-17},{"x":199,"y":6},{"x":9,"y":60},{"x":-112,"y":4},{"x":-66,"y":51},{"x":-61,"y":-22},{"x":-48,"y":20},{"x":-44,"y":89},{"x":-79,"y":-68},{"x":9,"y":38},{"x":-50,"y":52},{"x":15,"y":191},{"x":-54,"y":35}],"type":"area"},{"arc":[{"x":127198,"y":130404},{"x":-6,"y":-45},{"x":48,"y":-95},{"x":45,"y":18},{"x":124,"y":-16},{"x":52,"y":-101},{"x":111,"y":-96},{"x":41,"y":18},{"x":80,"y":-54},{"x":12,"y":-39},{"x":69,"y":-1},{"x":102,"y":-85},{"x":42,"y":-97}],"type":"area"},{"arc":[{"x":129107,"y":131294},{"x":-72,"y":-103},{"x":-108,"y":-52},{"x":12,"y":-110},{"x":104,"y":-67},{"x":20,"y":-113},{"x":97,"y":-48},{"x":229,"y":-35},{"x":24,"y":-39},{"x":-46,"y":-21},{"x":48,"y":-17},{"x":-199,"y":-29},{"x":-97,"y":34},{"x":-28,"y":-12},{"x":-15,"y":-37},{"x":33,"y":-82},{"x":-28,"y":-86},{"x":-91,"y":-32},{"x":-24,"y":-87},{"x":37,"y":-28},{"x":-18,"y":-63}],"type":"area"},{"arc":[{"x":126737,"y":126683},{"x":-88,"y":40},{"x":-75,"y":0},{"x":-16,"y":38},{"x":-152,"y":6},{"x":21,"y":161},{"x":-81,"y":72},{"x":30,"y":113},{"x":-113,"y":98},{"x":-54,"y":-9},{"x":-39,"y":35}],"type":"area"},{"arc":[{"x":126170,"y":127237},{"x":-34,"y":17},{"x":-62,"y":-31},{"x":-13,"y":-212},{"x":41,"y":-91},{"x":85,"y":-40},{"x":3,"y":-29},{"x":60,"y":-13},{"x":23,"y":-43},{"x":-13,"y":-79},{"x":29,"y":-74},{"x":43,"y":-17},{"x":28,"y":-103}],"type":"area"},{"arc":[{"x":126360,"y":126522},{"x":70,"y":-33},{"x":-30,"y":0},{"x":27,"y":-14},{"x":11,"y":-81},{"x":17,"y":32},{"x":33,"y":-5},{"x":-19,"y":16},{"x":73,"y":-17},{"x":-11,"y":-153},{"x":133,"y":5},{"x":14,"y":-79}],"type":"coastline"},{"arc":[{"x":126207,"y":126011},{"x":-26,"y":76},{"x":-28,"y":-65},{"x":38,"y":-39},{"x":16,"y":28}],"type":"coastline"},{"arc":[{"x":126170,"y":127237},{"x":-39,"y":82},{"x":22,"y":217},{"x":-69,"y":13},{"x":-72,"y":94}],"type":"area"},{"arc":[{"x":126012,"y":127643},{"x":-82,"y":-61},{"x":-102,"y":-147},{"x":-138,"y":-28},{"x":-70,"y":30},{"x":-108,"y":-48},{"x":-64,"y":-179},{"x":-153,"y":-45},{"x":6,"y":-96},{"x":60,"y":-18},{"x":11,"y":-253},{"x":51,"y":-130},{"x":-21,"y":-72}],"type":"area"},{"arc":[{"x":125402,"y":126596},{"x":101,"y":-3},{"x":13,"y":-31},{"x":100,"y":-14},{"x":78,"y":48},{"x":61,"y":-27}],"type":"area"},{"arc":[{"x":125755,"y":126569},{"x":135,"y":-5},{"x":18,"y":-109},{"x":-85,"y":-212},{"x":135,"y":-96}],"type":"area"},{"arc":[{"x":125958,"y":126147},{"x":96,"y":92},{"x":-33,"y":11},{"x":23,"y":-3},{"x":-21,"y":36},{"x":27,"y":40},{"x":80,"y":-57},{"x":39,"y":-94},{"x":32,"y":25},{"x":-21,"y":102},{"x":20,"y":28},{"x":30,"y":-21},{"x":51,"y":17},{"x":-14,"y":66},{"x":66,"y":118},{"x":-52,"y":-17},{"x":27,"y":40},{"x":2,"y":-19},{"x":50,"y":11}],"type":"coastline"},{"arc":[{"x":126490,"y":129978},{"x":14,"y":-65},{"x":-91,"y":-45},{"x":-55,"y":-279},{"x":86,"y":-88},{"x":30,"y":-79},{"x":-126,"y":-146},{"x":-6,"y":-68},{"x":-40,"y":-42},{"x":0,"y":-94},{"x":-32,"y":-7},{"x":-69,"y":-148},{"x":-54,"y":-15},{"x":-61,"y":-96},{"x":45,"y":-209},{"x":-11,"y":-49},{"x":-97,"y":-66},{"x":-3,"y":-211},{"x":48,"y":-158},{"x":-25,"y":-54},{"x":13,"y":-67},{"x":-32,"y":-24},{"x":-21,"y":-88},{"x":47,"y":-77},{"x":-74,"y":-44},{"x":28,"y":-26},{"x":8,"y":-90}],"type":"area"},{"arc":[{"x":124383,"y":126332},{"x":129,"y":-128},{"x":98,"y":-271},{"x":-85,"y":-253},{"x":3,"y":-78},{"x":17,"y":-13},{"x":-4,"y":25},{"x":26,"y":-3},{"x":11,"y":-27},{"x":-110,"y":-121},{"x":-30,"y":-111}],"type":"coastline"},{"arc":[{"x":124438,"y":125352},{"x":48,"y":61},{"x":59,"y":22},{"x":15,"y":69},{"x":92,"y":-3},{"x":38,"y":63},{"x":36,"y":96},{"x":-35,"y":36},{"x":19,"y":128},{"x":11,"y":51},{"x":28,"y":1},{"x":-16,"y":222},{"x":52,"y":37},{"x":96,"y":-12},{"x":22,"y":48},{"x":-35,"y":47}],"type":"area"},{"arc":[{"x":125335,"y":125521},{"x":-27,"y":24},{"x":-19,"y":-30},{"x":41,"y":-17},{"x":5,"y":23}],"type":"coastline"},{"arc":[{"x":125402,"y":126596},{"x":-42,"y":-42}],"type":"area"},{"arc":[{"x":124438,"y":125352},{"x":105,"y":-13},{"x":46,"y":82},{"x":48,"y":7},{"x":68,"y":-73},{"x":49,"y":10},{"x":17,"y":127},{"x":-10,"y":51},{"x":-26,"y":-37},{"x":-4,"y":37},{"x":93,"y":81},{"x":43,"y":-58},{"x":40,"y":47},{"x":34,"y":-4},{"x":-6,"y":-25},{"x":-23,"y":10},{"x":4,"y":-60},{"x":48,"y":23},{"x":17,"y":-22},{"x":15,"y":45},{"x":45,"y":-25},{"x":6,"y":-29},{"x":-54,"y":-39},{"x":43,"y":-63},{"x":55,"y":34},{"x":-2,"y":56},{"x":46,"y":23},{"x":3,"y":98},{"x":54,"y":16},{"x":25,"y":-55},{"x":27,"y":47},{"x":-15,"y":41},{"x":24,"y":13},{"x":21,"y":-30},{"x":40,"y":4},{"x":3,"y":65},{"x":-21,"y":5},{"x":24,"y":55},{"x":61,"y":22}],"type":"coastline"},{"arc":[{"x":125381,"y":125818},{"x":-124,"y":57},{"x":8,"y":140},{"x":155,"y":175},{"x":77,"y":23},{"x":150,"y":131},{"x":-1,"y":56},{"x":83,"y":91},{"x":26,"y":78}],"type":"area"},{"arc":[{"x":125853,"y":125657},{"x":-61,"y":25},{"x":31,"y":-82},{"x":30,"y":57}],"type":"coastline"},{"arc":[{"x":125381,"y":125818},{"x":28,"y":121},{"x":22,"y":-7},{"x":-13,"y":-24},{"x":16,"y":27},{"x":11,"y":-11},{"x":9,"y":53},{"x":-14,"y":-104},{"x":23,"y":38},{"x":25,"y":-10},{"x":-4,"y":-91},{"x":54,"y":1},{"x":-44,"y":-24},{"x":-20,"y":21},{"x":-54,"y":-62},{"x":16,"y":-94},{"x":-19,"y":-24},{"x":-14,"y":33},{"x":-4,"y":-82},{"x":41,"y":-81},{"x":31,"y":125},{"x":91,"y":19},{"x":12,"y":-64},{"x":88,"y":-60},{"x":3,"y":-62},{"x":32,"y":72},{"x":-1,"y":139},{"x":53,"y":31},{"x":42,"y":-14},{"x":21,"y":48},{"x":21,"y":-33},{"x":39,"y":19},{"x":-5,"y":148},{"x":-38,"y":-19},{"x":-10,"y":41},{"x":13,"y":-22},{"x":9,"y":54},{"x":60,"y":-3},{"x":43,"y":64},{"x":-18,"y":76},{"x":41,"y":26},{"x":-9,"y":64}],"type":"coastline"},{"arc":[{"x":126057,"y":125725},{"x":-48,"y":90},{"x":-14,"y":-96},{"x":28,"y":-19},{"x":34,"y":25}],"type":"coastline"},{"arc":[{"x":124539,"y":128901},{"x":-43,"y":-75},{"x":43,"y":-386},{"x":-116,"y":-88},{"x":13,"y":-128},{"x":-74,"y":-142},{"x":-69,"y":-2},{"x":-71,"y":-61},{"x":-24,"y":-65},{"x":-49,"y":5},{"x":-6,"y":34},{"x":-40,"y":9},{"x":-124,"y":-69},{"x":-99,"y":19},{"x":-43,"y":-78},{"x":-130,"y":-22},{"x":-63,"y":-120},{"x":5,"y":-134},{"x":-73,"y":-82},{"x":-202,"y":-79},{"x":-163,"y":70}],"type":"area"},{"arc":[{"x":123211,"y":127507},{"x":-36,"y":-223},{"x":18,"y":-100},{"x":97,"y":-14},{"x":54,"y":40},{"x":72,"y":-27},{"x":71,"y":-146},{"x":43,"y":3},{"x":26,"y":-66},{"x":17,"y":40},{"x":34,"y":-14},{"x":-21,"y":4},{"x":19,"y":-17},{"x":-25,"y":-24},{"x":6,"y":22},{"x":-17,"y":-8},{"x":16,"y":-22},{"x":-46,"y":-41},{"x":45,"y":-34},{"x":10,"y":-64}],"type":"coastline"},{"arc":[{"x":124465,"y":126819},{"x":-1,"y":82},{"x":-49,"y":92},{"x":-2,"y":208},{"x":-67,"y":111},{"x":18,"y":52},{"x":-25,"y":131},{"x":81,"y":78},{"x":120,"y":32},{"x":2,"y":63},{"x":53,"y":78},{"x":-5,"y":100},{"x":55,"y":25},{"x":52,"y":98},{"x":46,"y":24},{"x":1,"y":125},{"x":105,"y":106},{"x":52,"y":338},{"x":-12,"y":69},{"x":47,"y":52},{"x":-33,"y":31},{"x":3,"y":108}],"type":"area"},{"arc":[{"x":122738,"y":128233},{"x":-32,"y":-18},{"x":23,"y":-1},{"x":-20,"y":-48},{"x":-13,"y":49},{"x":-2,"y":-75},{"x":69,"y":16},{"x":48,"y":-58},{"x":107,"y":15},{"x":102,"y":-81},{"x":18,"y":-92},{"x":-70,"y":-122},{"x":50,"y":18},{"x":49,"y":-33},{"x":20,"y":-78},{"x":90,"y":-99},{"x":34,"y":-119}],"type":"coastline"},{"arc":[{"x":122017,"y":128547},{"x":-30,"y":-1},{"x":9,"y":-29},{"x":21,"y":30}],"type":"coastline"},{"arc":[{"x":122129,"y":128523},{"x":-35,"y":-9},{"x":31,"y":-13},{"x":4,"y":22}],"type":"coastline"},{"arc":[{"x":121613,"y":131556},{"x":-42,"y":93},{"x":-39,"y":14},{"x":-144,"y":-122},{"x":-45,"y":-150},{"x":-58,"y":-18},{"x":-96,"y":38}],"type":"area"},{"arc":[{"x":121189,"y":131411},{"x":-31,"y":-79},{"x":26,"y":-104},{"x":-35,"y":-75},{"x":164,"y":-82},{"x":3,"y":-49},{"x":-75,"y":-93},{"x":49,"y":-121},{"x":-13,"y":-76},{"x":31,"y":-81},{"x":40,"y":-25},{"x":-21,"y":-62},{"x":26,"y":-40},{"x":-33,"y":-59},{"x":30,"y":-88},{"x":-62,"y":-3},{"x":-56,"y":-42},{"x":-25,"y":-97},{"x":-84,"y":-21},{"x":-27,"y":37},{"x":-91,"y":-36},{"x":52,"y":-245},{"x":-71,"y":-52},{"x":-26,"y":-63},{"x":-66,"y":-24},{"x":-35,"y":-48},{"x":-158,"y":45},{"x":-77,"y":-72},{"x":-96,"y":-24},{"x":-33,"y":-58},{"x":-64,"y":3},{"x":-141,"y":-67},{"x":-52,"y":-87}],"type":"area"},{"arc":[{"x":120238,"y":129523},{"x":0,"y":-1},{"x":-3,"y":-4},{"x":-2,"y":-1},{"x":-5,"y":-5},{"x":-2,"y":-2},{"x":-12,"y":-10},{"x":91,"y":0},{"x":-58,"y":-72},{"x":4,"y":-58},{"x":95,"y":30},{"x":-2,"y":-43},{"x":30,"y":-12},{"x":3,"y":28},{"x":74,"y":-51},{"x":24,"y":-100},{"x":51,"y":-37},{"x":-20,"y":-37},{"x":31,"y":13},{"x":-22,"y":-28},{"x":35,"y":-8},{"x":-44,"y":-31},{"x":52,"y":10},{"x":-28,"y":-17},{"x":57,"y":0},{"x":13,"y":-24},{"x":50,"y":16},{"x":-29,"y":-45},{"x":-37,"y":-8},{"x":29,"y":-11},{"x":-23,"y":-33},{"x":32,"y":-5},{"x":6,"y":-37},{"x":32,"y":18},{"x":-2,"y":-38},{"x":99,"y":10},{"x":-67,"y":-35},{"x":26,"y":-45},{"x":40,"y":-3},{"x":-4,"y":-32},{"x":42,"y":-16},{"x":9,"y":33},{"x":6,"y":-43},{"x":28,"y":26},{"x":-13,"y":-33},{"x":23,"y":-6},{"x":27,"y":44},{"x":24,"y":-73},{"x":46,"y":38},{"x":13,"y":-23},{"x":24,"y":21},{"x":19,"y":-17},{"x":-2,"y":54},{"x":27,"y":6},{"x":1,"y":-24},{"x":51,"y":14},{"x":23,"y":53},{"x":29,"y":-18},{"x":-33,"y":-21},{"x":14,"y":-35},{"x":62,"y":-9},{"x":8,"y":42},{"x":38,"y":5},{"x":-8,"y":30},{"x":21,"y":-14},{"x":23,"y":19},{"x":20,"y":-17},{"x":18,"y":36},{"x":2,"y":-29},{"x":-20,"y":-15},{"x":-24,"y":6},{"x":-9,"y":-26},{"x":36,"y":9},{"x":38,"y":-39},{"x":15,"y":26},{"x":32,"y":-25},{"x":6,"y":27},{"x":73,"y":-18},{"x":49,"y":-57},{"x":-15,"y":-32},{"x":53,"y":4},{"x":3,"y":-53},{"x":39,"y":-8},{"x":-21,"y":-17},{"x":9,"y":-89},{"x":46,"y":-34},{"x":-35,"y":-12},{"x":21,"y":-99},{"x":44,"y":-101},{"x":34,"y":-8},{"x":9,"y":-36},{"x":24,"y":4},{"x":53,"y":-93},{"x":29,"y":17},{"x":7,"y":-26},{"x":26,"y":38},{"x":15,"y":-12},{"x":-1,"y":30},{"x":41,"y":18},{"x":-5,"y":43},{"x":59,"y":36},{"x":35,"y":-41},{"x":55,"y":48},{"x":57,"y":-121},{"x":30,"y":25},{"x":-27,"y":170},{"x":29,"y":42},{"x":-26,"y":13},{"x":-74,"y":-25},{"x":10,"y":46},{"x":-65,"y":-64},{"x":-14,"y":30},{"x":51,"y":24},{"x":-83,"y":20},{"x":2,"y":48},{"x":36,"y":-22},{"x":10,"y":43},{"x":35,"y":-7},{"x":-42,"y":117},{"x":87,"y":-54},{"x":18,"y":103}],"type":"coastline"},{"arc":[{"x":121998,"y":128859},{"x":-19,"y":47},{"x":-29,"y":-27},{"x":-35,"y":61},{"x":-53,"y":10},{"x":145,"y":133},{"x":-39,"y":4},{"x":-135,"y":220},{"x":-13,"y":60},{"x":28,"y":26},{"x":9,"y":91},{"x":-115,"y":157},{"x":35,"y":151},{"x":-27,"y":29},{"x":-4,"y":88},{"x":118,"y":6},{"x":80,"y":-29},{"x":91,"y":115},{"x":56,"y":11},{"x":17,"y":36},{"x":64,"y":1}],"type":"area"},{"arc":[{"x":119656,"y":131229},{"x":-26,"y":-2},{"x":25,"y":-16},{"x":1,"y":18}],"type":"coastline"},{"arc":[{"x":119662,"y":130867},{"x":-29,"y":28},{"x":-31,"y":-9},{"x":29,"y":-38},{"x":31,"y":19}],"type":"coastline"},{"arc":[{"x":121189,"y":131411},{"x":-153,"y":104},{"x":-170,"y":65},{"x":-34,"y":69},{"x":-42,"y":16},{"x":-33,"y":-44},{"x":39,"y":-2},{"x":-27,"y":-16},{"x":-126,"y":4},{"x":-54,"y":-23},{"x":5,"y":-138},{"x":44,"y":-62},{"x":2,"y":-95},{"x":-40,"y":-20},{"x":-50,"y":21}],"type":"area"},{"arc":[{"x":120550,"y":131290},{"x":-61,"y":-46},{"x":-175,"y":18},{"x":14,"y":96},{"x":-71,"y":48},{"x":-4,"y":-71},{"x":-59,"y":36},{"x":30,"y":-44},{"x":-57,"y":12},{"x":-151,"y":-154},{"x":-80,"y":163},{"x":-77,"y":10},{"x":-144,"y":-31}],"type":"area"},{"arc":[{"x":119715,"y":131327},{"x":31,"y":-67},{"x":-81,"y":-20},{"x":-4,"y":-24},{"x":10,"y":-54},{"x":67,"y":-78},{"x":-32,"y":-18},{"x":48,"y":-42},{"x":-27,"y":-42},{"x":-25,"y":11},{"x":-31,"y":-33},{"x":51,"y":-35},{"x":-19,"y":-31},{"x":21,"y":-30},{"x":-61,"y":-8},{"x":71,"y":-57},{"x":-9,"y":-64},{"x":41,"y":-8},{"x":1,"y":17},{"x":3,"y":-28},{"x":65,"y":-22},{"x":16,"y":-51},{"x":-41,"y":-99},{"x":28,"y":-26},{"x":-2,"y":-110},{"x":23,"y":6},{"x":37,"y":-38},{"x":-25,"y":-40},{"x":20,"y":-44},{"x":-34,"y":-15},{"x":35,"y":-7},{"x":-15,"y":-27},{"x":44,"y":-50},{"x":-11,"y":-85},{"x":48,"y":-76},{"x":66,"y":43},{"x":48,"y":-42},{"x":5,"y":-95},{"x":45,"y":-27},{"x":24,"y":14},{"x":-7,"y":-91},{"x":37,"y":-19},{"x":-3,"y":-24},{"x":21,"y":-3},{"x":-2,"y":35},{"x":-22,"y":-1},{"x":28,"y":38},{"x":43,"y":-13},{"x":-8,"y":-34},{"x":15,"y":25},{"x":-9,"y":-19},{"x":33,"y":-18},{"x":-31,"y":-13},{"x":-23,"y":19},{"x":28,"y":-27},{"x":-51,"y":-57},{"x":18,"y":-19},{"x":53,"y":17},{"x":14,"y":-34},{"x":-64,"y":-96},{"x":22,"y":-68}],"type":"coastline"},{"arc":[{"x":121176,"y":134538},{"x":-34,"y":33},{"x":-1,"y":-30},{"x":35,"y":-3}],"type":"coastline"},{"arc":[{"x":121783,"y":134817},{"x":-30,"y":19},{"x":-50,"y":-12},{"x":-5,"y":29},{"x":-26,"y":-20},{"x":-31,"y":32},{"x":28,"y":83},{"x":53,"y":13},{"x":-55,"y":21},{"x":1,"y":-32},{"x":-73,"y":2},{"x":-83,"y":-73},{"x":83,"y":0},{"x":30,"y":-42},{"x":-31,"y":-70},{"x":-36,"y":44},{"x":18,"y":50},{"x":-16,"y":-10},{"x":-14,"y":-54},{"x":39,"y":-109},{"x":-69,"y":-39},{"x":8,"y":-80},{"x":-73,"y":-74},{"x":24,"y":5},{"x":-4,"y":-35},{"x":-58,"y":-25},{"x":-54,"y":12},{"x":-33,"y":34},{"x":-15,"y":119},{"x":-65,"y":-10},{"x":-72,"y":22},{"x":-55,"y":-21},{"x":124,"y":-26},{"x":33,"y":16},{"x":4,"y":-17},{"x":-42,"y":-10},{"x":12,"y":-34},{"x":-27,"y":5},{"x":-25,"y":-38},{"x":-19,"y":19},{"x":-7,"y":-22},{"x":-15,"y":19},{"x":-21,"y":-13},{"x":-20,"y":42},{"x":-32,"y":-61},{"x":39,"y":-13},{"x":-8,"y":-24}],"type":"coastline"},{"arc":[{"x":121115,"y":134439},{"x":19,"y":-60},{"x":-118,"y":-30}],"type":"area"},{"arc":[{"x":121016,"y":134349},{"x":-22,"y":-28},{"x":-20,"y":25},{"x":-22,"y":-11},{"x":2,"y":31},{"x":-18,"y":-26},{"x":-10,"y":35},{"x":-32,"y":-11}],"type":"coastline"},{"arc":[{"x":120894,"y":134364},{"x":-21,"y":-4},{"x":26,"y":-47},{"x":-18,"y":-24},{"x":-50,"y":-5},{"x":-52,"y":38},{"x":-49,"y":-24},{"x":42,"y":118},{"x":-31,"y":25},{"x":-6,"y":-37},{"x":-32,"y":63},{"x":-54,"y":-25},{"x":-29,"y":31}],"type":"area"},{"arc":[{"x":120620,"y":134473},{"x":-57,"y":-7},{"x":39,"y":-154},{"x":-28,"y":-31},{"x":-66,"y":0},{"x":17,"y":-75},{"x":-65,"y":-85},{"x":-36,"y":-1},{"x":5,"y":-61},{"x":-39,"y":-45},{"x":-22,"y":10},{"x":-2,"y":-50},{"x":-28,"y":3},{"x":19,"y":79},{"x":77,"y":151},{"x":-37,"y":105},{"x":-33,"y":-87},{"x":-62,"y":7},{"x":-7,"y":-48},{"x":-38,"y":1},{"x":-6,"y":-58},{"x":-49,"y":-47},{"x":12,"y":-27}],"type":"coastline"},{"arc":[{"x":120214,"y":134053},{"x":80,"y":-49},{"x":-22,"y":-115},{"x":80,"y":-3},{"x":43,"y":-33},{"x":40,"y":63},{"x":202,"y":-68},{"x":28,"y":-74},{"x":-37,"y":-99},{"x":76,"y":-16},{"x":-15,"y":-20},{"x":51,"y":8},{"x":-22,"y":-43},{"x":22,"y":-26},{"x":-79,"y":-142}],"type":"area"},{"arc":[{"x":120661,"y":133436},{"x":48,"y":-151},{"x":42,"y":-36},{"x":93,"y":36},{"x":146,"y":-72},{"x":23,"y":-2},{"x":17,"y":63},{"x":66,"y":-40},{"x":58,"y":7},{"x":192,"y":-163},{"x":83,"y":-3},{"x":15,"y":-31},{"x":37,"y":14},{"x":105,"y":-23},{"x":55,"y":-36},{"x":106,"y":5},{"x":21,"y":-7},{"x":-15,"y":-40},{"x":87,"y":36},{"x":107,"y":-181},{"x":47,"y":19},{"x":39,"y":-18},{"x":63,"y":30},{"x":30,"y":-54},{"x":69,"y":15}],"type":"area"},{"arc":[{"x":120894,"y":134364},{"x":-2,"y":36},{"x":-54,"y":-20},{"x":-21,"y":55},{"x":64,"y":1},{"x":77,"y":91},{"x":-19,"y":37},{"x":-55,"y":-35},{"x":0,"y":19},{"x":-33,"y":-9},{"x":-64,"y":45},{"x":31,"y":-80},{"x":-38,"y":27},{"x":-14,"y":52},{"x":67,"y":121},{"x":-138,"y":-47},{"x":-26,"y":20},{"x":-51,"y":-57},{"x":21,"y":-69},{"x":-19,"y":-78}],"type":"coastline"},{"arc":[{"x":121115,"y":134439},{"x":-46,"y":16},{"x":20,"y":-25},{"x":-33,"y":1},{"x":11,"y":-22},{"x":-29,"y":1},{"x":-23,"y":-61}],"type":"coastline"},{"arc":[{"x":121015,"y":134349},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":120661,"y":133436},{"x":-83,"y":6},{"x":-59,"y":-46},{"x":-82,"y":-6},{"x":-56,"y":-62},{"x":-260,"y":78},{"x":-37,"y":-20},{"x":-2,"y":-92},{"x":-44,"y":-11},{"x":-45,"y":22},{"x":-68,"y":-34},{"x":24,"y":-49},{"x":151,"y":-105},{"x":-123,"y":-127},{"x":-28,"y":-98},{"x":33,"y":-26},{"x":-33,"y":-2},{"x":-51,"y":-65},{"x":20,"y":-213},{"x":-74,"y":-122},{"x":48,"y":-87},{"x":66,"y":-9},{"x":50,"y":-54},{"x":27,"y":-107},{"x":-44,"y":6},{"x":-49,"y":-52},{"x":39,"y":-118},{"x":-103,"y":-40},{"x":31,"y":-85},{"x":-14,"y":-72},{"x":31,"y":-41},{"x":47,"y":-8},{"x":41,"y":-148},{"x":322,"y":-45},{"x":42,"y":-76},{"x":90,"y":-41},{"x":9,"y":-93},{"x":73,"y":-104}],"type":"area"},{"arc":[{"x":119032,"y":133221},{"x":-43,"y":14},{"x":-45,"y":-42},{"x":53,"y":-38},{"x":35,"y":66}],"type":"coastline"},{"arc":[{"x":119395,"y":133149},{"x":-64,"y":25},{"x":14,"y":195},{"x":-8,"y":43},{"x":-36,"y":4},{"x":14,"y":77},{"x":-51,"y":57},{"x":23,"y":-17},{"x":-32,"y":89},{"x":18,"y":56},{"x":-70,"y":-98},{"x":-79,"y":1},{"x":24,"y":-43},{"x":-48,"y":-52},{"x":29,"y":-40},{"x":-31,"y":-19},{"x":-55,"y":9},{"x":27,"y":-15},{"x":-36,"y":-16},{"x":42,"y":-76},{"x":-37,"y":31},{"x":-10,"y":-23},{"x":-45,"y":19},{"x":60,"y":-92},{"x":-34,"y":3},{"x":15,"y":-15},{"x":94,"y":33},{"x":27,"y":-18},{"x":-12,"y":-94},{"x":43,"y":11},{"x":-13,"y":-60},{"x":35,"y":-13},{"x":-29,"y":-27},{"x":12,"y":-41},{"x":-37,"y":0},{"x":25,"y":-41},{"x":96,"y":27},{"x":-5,"y":20},{"x":20,"y":-18},{"x":30,"y":58},{"x":7,"y":-23},{"x":25,"y":14},{"x":52,"y":69}],"type":"coastline"},{"arc":[{"x":119421,"y":131921},{"x":-22,"y":2},{"x":-6,"y":-43},{"x":28,"y":41}],"type":"coastline"},{"arc":[{"x":120214,"y":134053},{"x":-50,"y":-58},{"x":-36,"y":-1},{"x":8,"y":-56},{"x":-53,"y":-15},{"x":0,"y":-48},{"x":-90,"y":-37},{"x":25,"y":-44},{"x":16,"y":29},{"x":-11,"y":-22},{"x":22,"y":10},{"x":15,"y":-30},{"x":-15,"y":-12},{"x":28,"y":-8},{"x":-23,"y":-4},{"x":-14,"y":18},{"x":-124,"y":-203},{"x":-61,"y":24},{"x":44,"y":-80},{"x":-46,"y":-14},{"x":21,"y":-11},{"x":-35,"y":-9},{"x":10,"y":-24},{"x":-60,"y":16},{"x":14,"y":-35},{"x":-31,"y":-40},{"x":13,"y":13},{"x":27,"y":-13},{"x":-20,"y":6},{"x":18,"y":-47},{"x":-20,"y":-11},{"x":27,"y":-67},{"x":-153,"y":-127},{"x":8,"y":-64},{"x":-45,"y":-36},{"x":4,"y":-35},{"x":-98,"y":-43},{"x":-89,"y":-4},{"x":-5,"y":-43},{"x":-49,"y":-7},{"x":-81,"y":-64},{"x":13,"y":22},{"x":-54,"y":-15},{"x":-43,"y":30},{"x":32,"y":-50},{"x":-38,"y":20},{"x":-4,"y":-25},{"x":-14,"y":25},{"x":-22,"y":-32},{"x":-7,"y":24},{"x":25,"y":2},{"x":-37,"y":4},{"x":-1,"y":20},{"x":32,"y":2},{"x":-57,"y":-2},{"x":-27,"y":37},{"x":46,"y":73},{"x":-22,"y":3},{"x":-29,"y":-79},{"x":-71,"y":37},{"x":-17,"y":36},{"x":-20,"y":-28},{"x":-52,"y":45},{"x":40,"y":-73},{"x":-51,"y":20},{"x":8,"y":-45},{"x":-91,"y":-9},{"x":17,"y":-28},{"x":23,"y":9},{"x":-10,"y":-34},{"x":75,"y":-42},{"x":11,"y":-91},{"x":-111,"y":-48},{"x":-18,"y":12},{"x":-21,"y":-40},{"x":-26,"y":3},{"x":32,"y":-16},{"x":15,"y":-79},{"x":94,"y":27},{"x":74,"y":-60},{"x":136,"y":262},{"x":46,"y":10},{"x":21,"y":-31},{"x":39,"y":-4},{"x":-36,"y":21},{"x":60,"y":-8},{"x":40,"y":-29},{"x":27,"y":3},{"x":-13,"y":31},{"x":40,"y":-1},{"x":2,"y":-53},{"x":-60,"y":-9},{"x":-20,"y":-28},{"x":24,"y":-22},{"x":85,"y":38},{"x":8,"y":-75},{"x":36,"y":-15},{"x":-52,"y":-72},{"x":26,"y":-56},{"x":-34,"y":-6},{"x":-39,"y":-75},{"x":53,"y":-25},{"x":52,"y":24},{"x":-8,"y":-23},{"x":23,"y":-1},{"x":-112,"y":-112},{"x":9,"y":-45},{"x":98,"y":-87},{"x":-98,"y":-39},{"x":23,"y":-10},{"x":-16,"y":-12},{"x":39,"y":15},{"x":8,"y":-20},{"x":70,"y":40},{"x":7,"y":-16},{"x":-36,"y":-2},{"x":31,"y":-48},{"x":68,"y":-20},{"x":-42,"y":-51},{"x":-43,"y":0},{"x":45,"y":-152},{"x":-29,"y":-71},{"x":50,"y":-56},{"x":-16,"y":-67},{"x":28,"y":8},{"x":13,"y":-35},{"x":43,"y":-2},{"x":-17,"y":-26},{"x":59,"y":-37},{"x":26,"y":-150},{"x":32,"y":-2},{"x":20,"y":-44}],"type":"coastline"},{"arc":[{"x":144385,"y":107945},{"x":-277,"y":-67},{"x":-29,"y":76},{"x":23,"y":16},{"x":-42,"y":7},{"x":-8,"y":28},{"x":26,"y":48},{"x":84,"y":-4},{"x":5,"y":29},{"x":86,"y":37},{"x":101,"y":11}],"type":"admin"},{"arc":[{"x":144354,"y":108126},{"x":-13,"y":108},{"x":75,"y":222},{"x":56,"y":23},{"x":-23,"y":6},{"x":20,"y":15},{"x":26,"y":-6},{"x":-9,"y":-41},{"x":18,"y":53},{"x":53,"y":10}],"type":"coastline"},{"arc":[{"x":144557,"y":108516},{"x":-14,"y":55},{"x":-116,"y":-6},{"x":1,"y":81},{"x":36,"y":3},{"x":-13,"y":127},{"x":-124,"y":49},{"x":-56,"y":-9},{"x":6,"y":62},{"x":-98,"y":71},{"x":-40,"y":97},{"x":-93,"y":-10},{"x":-84,"y":-112},{"x":-85,"y":-28},{"x":-20,"y":-250},{"x":-212,"y":39}],"type":"admin"},{"arc":[{"x":143404,"y":107934},{"x":29,"y":-134},{"x":67,"y":-44},{"x":-17,"y":-42},{"x":40,"y":0},{"x":-36,"y":-44},{"x":43,"y":-46},{"x":-177,"y":-147},{"x":-5,"y":-45}],"type":"admin"},{"arc":[{"x":143348,"y":107432},{"x":116,"y":-56},{"x":43,"y":-56},{"x":65,"y":17},{"x":47,"y":62},{"x":45,"y":-15},{"x":14,"y":19},{"x":92,"y":0},{"x":293,"y":-134},{"x":69,"y":-82},{"x":123,"y":-297},{"x":394,"y":-467}],"type":"admin"},{"arc":[{"x":144649,"y":106423},{"x":217,"y":186},{"x":85,"y":186}],"type":"area"},{"arc":[{"x":144951,"y":106795},{"x":-228,"y":230},{"x":-144,"y":232},{"x":-95,"y":247},{"x":-99,"y":441}],"type":"coastline"},{"arc":[{"x":144665,"y":112831},{"x":-24,"y":82},{"x":58,"y":14},{"x":-97,"y":91},{"x":-125,"y":20},{"x":-56,"y":-40},{"x":-199,"y":-25},{"x":-35,"y":77},{"x":-69,"y":31},{"x":-33,"y":108},{"x":-67,"y":64},{"x":-48,"y":0}],"type":"admin"},{"arc":[{"x":143970,"y":113253},{"x":-54,"y":-132},{"x":33,"y":-80},{"x":-149,"y":-74},{"x":-27,"y":-30},{"x":2,"y":-62},{"x":-61,"y":-59},{"x":-142,"y":-35},{"x":-18,"y":-40},{"x":-166,"y":-59},{"x":-69,"y":-16},{"x":-61,"y":40},{"x":-32,"y":-32},{"x":-115,"y":-23},{"x":-35,"y":-75},{"x":-55,"y":-22},{"x":-15,"y":-126},{"x":-132,"y":-97},{"x":-34,"y":-122},{"x":-107,"y":-46},{"x":10,"y":-68},{"x":-71,"y":-24},{"x":-54,"y":-96},{"x":-70,"y":-15}],"type":"admin"},{"arc":[{"x":142548,"y":111960},{"x":-37,"y":-56},{"x":42,"y":-66},{"x":71,"y":-20},{"x":32,"y":-38},{"x":-39,"y":-28},{"x":31,"y":-49},{"x":-6,"y":-25},{"x":-32,"y":-1},{"x":9,"y":-63},{"x":38,"y":-44},{"x":3,"y":-77},{"x":65,"y":-86},{"x":-3,"y":-77},{"x":29,"y":-43},{"x":-39,"y":-58},{"x":-50,"y":-4},{"x":-15,"y":-134},{"x":56,"y":-44},{"x":23,"y":-109},{"x":140,"y":-144},{"x":46,"y":-173},{"x":-40,"y":-111},{"x":53,"y":-62},{"x":2,"y":-109},{"x":49,"y":-95}],"type":"admin"},{"arc":[{"x":142976,"y":110244},{"x":80,"y":-28},{"x":6,"y":-83},{"x":92,"y":-55},{"x":12,"y":-39}],"type":"admin"},{"arc":[{"x":143166,"y":110039},{"x":76,"y":-3},{"x":55,"y":254},{"x":79,"y":113},{"x":13,"y":103},{"x":92,"y":153},{"x":262,"y":121},{"x":68,"y":118},{"x":20,"y":-8},{"x":79,"y":72},{"x":19,"y":49}],"type":"admin"},{"arc":[{"x":143929,"y":111011},{"x":18,"y":167},{"x":243,"y":457},{"x":74,"y":61},{"x":95,"y":145},{"x":80,"y":-40},{"x":69,"y":48},{"x":65,"y":97},{"x":-46,"y":44},{"x":11,"y":72},{"x":45,"y":37},{"x":-110,"y":89},{"x":84,"y":126},{"x":-59,"y":79},{"x":-58,"y":-3},{"x":11,"y":58},{"x":-27,"y":7},{"x":-19,"y":85},{"x":70,"y":27},{"x":6,"y":45},{"x":222,"y":22},{"x":-18,"y":88},{"x":-22,"y":-8},{"x":-12,"y":35},{"x":14,"y":82}],"type":"admin"},{"arc":[{"x":145555,"y":106919},{"x":-159,"y":-145},{"x":-182,"y":63},{"x":182,"y":-65},{"x":159,"y":147}],"type":"coastline"},{"arc":[{"x":144649,"y":106423},{"x":54,"y":-50}],"type":"admin"},{"arc":[{"x":144703,"y":106373},{"x":602,"y":-247},{"x":79,"y":30},{"x":143,"y":186},{"x":33,"y":265}],"type":"admin"},{"arc":[{"x":145560,"y":106607},{"x":-38,"y":13},{"x":24,"y":11},{"x":-21,"y":30},{"x":49,"y":89},{"x":26,"y":138},{"x":-47,"y":-45},{"x":26,"y":-21},{"x":-94,"y":-48},{"x":-76,"y":-108},{"x":-28,"y":13},{"x":-19,"y":-40},{"x":-29,"y":18},{"x":3,"y":-12},{"x":52,"y":-12},{"x":-23,"y":-7},{"x":18,"y":-20},{"x":-47,"y":7},{"x":4,"y":19},{"x":-12,"y":-21},{"x":-5,"y":30},{"x":-6,"y":-22},{"x":-28,"y":5},{"x":2,"y":42},{"x":28,"y":-6},{"x":-28,"y":6},{"x":5,"y":56},{"x":-108,"y":50},{"x":-35,"y":-78},{"x":-31,"y":14},{"x":21,"y":-11},{"x":-11,"y":-24},{"x":-4,"y":25},{"x":-177,"y":97}],"type":"coastline"},{"arc":[{"x":145863,"y":117287},{"x":1,"y":0},{"x":-1,"y":0}],"type":"coastline"},{"arc":[{"x":145858,"y":117289},{"x":22,"y":124},{"x":23,"y":12},{"x":36,"y":-53},{"x":28,"y":20},{"x":-25,"y":-14},{"x":-23,"y":33},{"x":28,"y":20},{"x":18,"y":-21},{"x":-13,"y":75},{"x":22,"y":-53},{"x":18,"y":-8},{"x":-17,"y":9},{"x":-8,"y":55},{"x":19,"y":-52},{"x":23,"y":0},{"x":-17,"y":-20},{"x":-10,"y":-45},{"x":12,"y":45},{"x":17,"y":1},{"x":3,"y":13},{"x":12,"y":-4},{"x":7,"y":14},{"x":15,"y":-13},{"x":23,"y":31},{"x":-2,"y":83},{"x":32,"y":-3},{"x":14,"y":28},{"x":-15,"y":60},{"x":59,"y":64},{"x":-5,"y":26},{"x":-36,"y":-64},{"x":-8,"y":28},{"x":22,"y":5},{"x":-27,"y":30},{"x":33,"y":-3},{"x":-35,"y":9},{"x":-19,"y":50},{"x":35,"y":130},{"x":46,"y":2},{"x":15,"y":37},{"x":30,"y":-35},{"x":26,"y":34},{"x":47,"y":-23},{"x":25,"y":13},{"x":-15,"y":37},{"x":26,"y":22},{"x":-34,"y":20},{"x":3,"y":-29},{"x":-9,"y":21},{"x":-18,"y":-20},{"x":-48,"y":50},{"x":17,"y":175},{"x":49,"y":48},{"x":109,"y":-11}],"type":"coastline"},{"arc":[{"x":141661,"y":118581},{"x":64,"y":-12},{"x":83,"y":-84},{"x":-48,"y":-125}],"type":"admin"},{"arc":[{"x":141760,"y":118360},{"x":28,"y":-6},{"x":29,"y":46},{"x":74,"y":25},{"x":23,"y":-23},{"x":223,"y":22},{"x":99,"y":-56},{"x":70,"y":14},{"x":52,"y":-78},{"x":-14,"y":-71},{"x":66,"y":-88},{"x":69,"y":-16},{"x":21,"y":-51}],"type":"area"},{"arc":[{"x":142500,"y":118078},{"x":59,"y":19},{"x":20,"y":-16},{"x":80,"y":52},{"x":149,"y":20},{"x":71,"y":-34},{"x":4,"y":68},{"x":63,"y":111},{"x":234,"y":-4},{"x":5,"y":32},{"x":-106,"y":92},{"x":27,"y":2},{"x":-1,"y":32},{"x":104,"y":-31},{"x":116,"y":48},{"x":59,"y":-38},{"x":36,"y":38},{"x":-1,"y":62},{"x":59,"y":86},{"x":41,"y":16},{"x":42,"y":191},{"x":66,"y":81},{"x":149,"y":44},{"x":55,"y":57},{"x":82,"y":19},{"x":56,"y":-12},{"x":111,"y":28},{"x":97,"y":-67}],"type":"area"},{"arc":[{"x":141760,"y":118360},{"x":-40,"y":-89},{"x":-101,"y":21},{"x":-75,"y":-61},{"x":-64,"y":-146},{"x":-49,"y":-45},{"x":-41,"y":-142},{"x":-81,"y":-18},{"x":-143,"y":-141},{"x":0,"y":-231},{"x":-66,"y":-183}],"type":"admin"},{"arc":[{"x":141100,"y":117325},{"x":53,"y":-107},{"x":96,"y":-31},{"x":32,"y":-77},{"x":-34,"y":-66},{"x":-96,"y":-45},{"x":-44,"y":-227},{"x":-53,"y":-23},{"x":-45,"y":-94}],"type":"admin"},{"arc":[{"x":141009,"y":116655},{"x":-2,"y":-234},{"x":-170,"y":-41},{"x":-85,"y":-127},{"x":34,"y":-104}],"type":"admin"},{"arc":[{"x":140786,"y":116149},{"x":105,"y":14},{"x":90,"y":-35},{"x":114,"y":-130},{"x":137,"y":21},{"x":158,"y":88},{"x":45,"y":-19},{"x":61,"y":26},{"x":83,"y":-61},{"x":-38,"y":-148},{"x":92,"y":-69},{"x":53,"y":85},{"x":98,"y":-25},{"x":92,"y":78},{"x":144,"y":-134},{"x":43,"y":5},{"x":25,"y":33},{"x":54,"y":-22}],"type":"admin"},{"arc":[{"x":142522,"y":117214},{"x":-73,"y":43},{"x":-16,"y":91},{"x":20,"y":51},{"x":75,"y":27},{"x":9,"y":138},{"x":47,"y":36},{"x":-27,"y":97},{"x":29,"y":28},{"x":-92,"y":200},{"x":6,"y":153}],"type":"area"},{"arc":[{"x":143045,"y":114570},{"x":-10,"y":-55},{"x":42,"y":-122},{"x":-59,"y":-54},{"x":-62,"y":-132},{"x":57,"y":-104},{"x":-74,"y":-144},{"x":-48,"y":-20},{"x":-71,"y":-88},{"x":32,"y":-116},{"x":-134,"y":-63},{"x":-104,"y":41},{"x":-119,"y":-69},{"x":4,"y":-177},{"x":-28,"y":-17},{"x":-10,"y":-87},{"x":-126,"y":-124},{"x":22,"y":-18},{"x":-26,"y":-31},{"x":17,"y":-49},{"x":-37,"y":-65},{"x":2,"y":-85},{"x":-72,"y":-12},{"x":-25,"y":56},{"x":-98,"y":-30},{"x":-61,"y":26},{"x":-81,"y":-130},{"x":-155,"y":-100},{"x":-52,"y":9},{"x":21,"y":-59},{"x":-22,"y":-125},{"x":40,"y":-89}],"type":"admin"},{"arc":[{"x":141808,"y":112537},{"x":84,"y":0},{"x":71,"y":-31},{"x":70,"y":-80},{"x":82,"y":19},{"x":98,"y":-81},{"x":65,"y":-26},{"x":36,"y":11},{"x":12,"y":-108},{"x":51,"y":2},{"x":-36,"y":-64},{"x":40,"y":-12},{"x":21,"y":-69},{"x":146,"y":-138}],"type":"admin"},{"arc":[{"x":143970,"y":113253},{"x":-17,"y":115},{"x":82,"y":109},{"x":-24,"y":127},{"x":63,"y":230},{"x":-45,"y":80}],"type":"area"},{"arc":[{"x":144665,"y":112831},{"x":146,"y":70},{"x":19,"y":-14},{"x":165,"y":37}],"type":"area"},{"arc":[{"x":144995,"y":112924},{"x":19,"y":191},{"x":43,"y":17},{"x":-36,"y":-6},{"x":28,"y":25},{"x":-19,"y":-11},{"x":24,"y":117},{"x":-22,"y":96},{"x":41,"y":94},{"x":-38,"y":18},{"x":21,"y":-4},{"x":18,"y":194},{"x":-24,"y":1},{"x":24,"y":1},{"x":46,"y":92},{"x":-19,"y":15},{"x":29,"y":-20},{"x":19,"y":18},{"x":-31,"y":-1},{"x":3,"y":28},{"x":19,"y":-19},{"x":8,"y":24},{"x":7,"y":-25},{"x":16,"y":22},{"x":14,"y":95},{"x":-40,"y":29},{"x":32,"y":84},{"x":83,"y":1},{"x":-33,"y":57}],"type":"coastline"},{"arc":[{"x":144989,"y":111495},{"x":-69,"y":37},{"x":-36,"y":-13},{"x":-4,"y":23},{"x":-227,"y":-39},{"x":-133,"y":71},{"x":-62,"y":-11},{"x":-85,"y":-100},{"x":-65,"y":-34},{"x":-62,"y":-110},{"x":-170,"y":-135},{"x":-98,"y":-152},{"x":-49,"y":-21}],"type":"area"},{"arc":[{"x":143166,"y":110039},{"x":-61,"y":-50},{"x":78,"y":-51},{"x":30,"y":-82}],"type":"admin"},{"arc":[{"x":143213,"y":109856},{"x":220,"y":20},{"x":-27,"y":183},{"x":43,"y":-20},{"x":75,"y":62},{"x":100,"y":-18},{"x":76,"y":31},{"x":82,"y":-2},{"x":267,"y":-92},{"x":0,"y":62},{"x":-30,"y":29},{"x":161,"y":60},{"x":115,"y":95},{"x":120,"y":-6},{"x":-1,"y":21},{"x":202,"y":-25},{"x":379,"y":58},{"x":88,"y":-51},{"x":70,"y":87},{"x":24,"y":-13},{"x":42,"y":28}],"type":"area"},{"arc":[{"x":145219,"y":110365},{"x":-35,"y":259},{"x":-70,"y":174},{"x":23,"y":6},{"x":-47,"y":79},{"x":0,"y":-27},{"x":-36,"y":15},{"x":35,"y":19},{"x":-30,"y":28},{"x":26,"y":9},{"x":-34,"y":-11},{"x":-29,"y":76},{"x":-1,"y":309},{"x":23,"y":64},{"x":-55,"y":130}],"type":"coastline"},{"arc":[{"x":144989,"y":111495},{"x":-43,"y":656},{"x":49,"y":773}],"type":"coastline"},{"arc":[{"x":144385,"y":107945},{"x":-31,"y":181}],"type":"coastline"},{"arc":[{"x":143213,"y":109856},{"x":-89,"y":-29},{"x":-5,"y":-32},{"x":-129,"y":-37},{"x":51,"y":-45},{"x":33,"y":2},{"x":-39,"y":-28},{"x":73,"y":-58},{"x":54,"y":-98}],"type":"admin"},{"arc":[{"x":144557,"y":108516},{"x":108,"y":54},{"x":32,"y":-15},{"x":-7,"y":-21},{"x":89,"y":121},{"x":93,"y":45},{"x":50,"y":137},{"x":3,"y":126},{"x":118,"y":186},{"x":53,"y":25},{"x":1,"y":26},{"x":21,"y":-22},{"x":20,"y":46},{"x":21,"y":176},{"x":43,"y":50},{"x":-17,"y":119},{"x":57,"y":51},{"x":-32,"y":103},{"x":34,"y":112},{"x":75,"y":70},{"x":-4,"y":24},{"x":12,"y":-22},{"x":16,"y":275},{"x":-9,"y":34},{"x":1,"y":-27},{"x":-59,"y":38},{"x":-4,"y":58},{"x":-53,"y":80}],"type":"coastline"},{"arc":[{"x":141915,"y":107780},{"x":-48,"y":-58},{"x":-127,"y":81},{"x":-25,"y":-46},{"x":-66,"y":14},{"x":-47,"y":-55}],"type":"admin"},{"arc":[{"x":141602,"y":107716},{"x":24,"y":-54},{"x":-74,"y":-37},{"x":26,"y":-71},{"x":130,"y":-62},{"x":58,"y":36},{"x":104,"y":-15},{"x":66,"y":-50},{"x":11,"y":-77},{"x":60,"y":-98}],"type":"admin"},{"arc":[{"x":142007,"y":107288},{"x":169,"y":-32},{"x":129,"y":-82},{"x":145,"y":77},{"x":27,"y":-47},{"x":170,"y":-102},{"x":78,"y":62},{"x":33,"y":-29},{"x":133,"y":15},{"x":109,"y":-21},{"x":240,"y":129},{"x":-4,"y":86},{"x":44,"y":35},{"x":55,"y":-8},{"x":13,"y":61}],"type":"admin"},{"arc":[{"x":141602,"y":107716},{"x":-125,"y":-4},{"x":-24,"y":24},{"x":-61,"y":1},{"x":-62,"y":-36},{"x":3,"y":-163},{"x":-105,"y":-76},{"x":-3,"y":-102},{"x":-49,"y":-60},{"x":12,"y":-50},{"x":95,"y":4},{"x":25,"y":-38},{"x":-127,"y":-101},{"x":-126,"y":20},{"x":-44,"y":45},{"x":0,"y":50},{"x":-65,"y":39},{"x":-99,"y":211},{"x":-138,"y":59},{"x":-39,"y":103},{"x":58,"y":83},{"x":-5,"y":41},{"x":-63,"y":26},{"x":-40,"y":62},{"x":26,"y":47},{"x":190,"y":53},{"x":17,"y":33},{"x":-35,"y":87},{"x":37,"y":84}],"type":"area"},{"arc":[{"x":140855,"y":108158},{"x":-61,"y":23},{"x":-61,"y":-38},{"x":-37,"y":50},{"x":-271,"y":70},{"x":-58,"y":66},{"x":-223,"y":6},{"x":-86,"y":-87},{"x":-20,"y":-160},{"x":29,"y":-63},{"x":-26,"y":-92},{"x":-154,"y":-187},{"x":62,"y":-81},{"x":11,"y":-90},{"x":-166,"y":-132},{"x":5,"y":-63},{"x":54,"y":-66},{"x":-24,"y":-27},{"x":41,"y":-21},{"x":2,"y":-58},{"x":54,"y":-41},{"x":-29,"y":-59},{"x":-95,"y":-56},{"x":-47,"y":26},{"x":-191,"y":-18},{"x":-55,"y":25},{"x":-70,"y":-68},{"x":9,"y":-76},{"x":-107,"y":-81}],"type":"admin"},{"arc":[{"x":139341,"y":106860},{"x":73,"y":-86},{"x":198,"y":-116},{"x":-21,"y":-178},{"x":-95,"y":11},{"x":-24,"y":-35},{"x":79,"y":-198},{"x":-88,"y":-324},{"x":25,"y":-66},{"x":-23,"y":-51},{"x":85,"y":-74},{"x":-119,"y":-196},{"x":61,"y":-61},{"x":59,"y":2}],"type":"admin"},{"arc":[{"x":139551,"y":105488},{"x":25,"y":51},{"x":38,"y":-19},{"x":26,"y":28},{"x":49,"y":-49},{"x":69,"y":-9},{"x":87,"y":45},{"x":32,"y":-12},{"x":64,"y":59},{"x":164,"y":-55},{"x":71,"y":66},{"x":97,"y":-15},{"x":110,"y":34},{"x":50,"y":67},{"x":63,"y":26},{"x":2,"y":88},{"x":55,"y":48},{"x":42,"y":138},{"x":76,"y":82},{"x":89,"y":32},{"x":96,"y":-13},{"x":91,"y":-45},{"x":45,"y":-75},{"x":92,"y":27},{"x":90,"y":-39},{"x":87,"y":-125},{"x":-35,"y":-94},{"x":-34,"y":-17},{"x":-2,"y":-55},{"x":157,"y":-11}],"type":"admin"},{"arc":[{"x":141347,"y":105646},{"x":65,"y":44},{"x":17,"y":77},{"x":149,"y":188},{"x":19,"y":112},{"x":78,"y":144},{"x":-5,"y":59},{"x":94,"y":111},{"x":-30,"y":108},{"x":46,"y":104},{"x":122,"y":103},{"x":17,"y":55},{"x":-38,"y":57},{"x":-7,"y":120},{"x":58,"y":67},{"x":-21,"y":99},{"x":43,"y":40},{"x":-13,"y":72},{"x":66,"y":82}],"type":"admin"},{"arc":[{"x":142036,"y":108674},{"x":-53,"y":3},{"x":-151,"y":107},{"x":38,"y":58},{"x":-110,"y":74},{"x":-44,"y":16},{"x":-30,"y":-40},{"x":-166,"y":45},{"x":44,"y":127},{"x":-14,"y":53},{"x":96,"y":83},{"x":-48,"y":107},{"x":-38,"y":24}],"type":"area"},{"arc":[{"x":141560,"y":109331},{"x":-70,"y":-25},{"x":-76,"y":58},{"x":-15,"y":45},{"x":-151,"y":70},{"x":-30,"y":-18},{"x":-121,"y":24},{"x":-32,"y":39},{"x":-43,"y":-6},{"x":-41,"y":30},{"x":-55,"y":-31}],"type":"admin"},{"arc":[{"x":140926,"y":109517},{"x":-1,"y":-70},{"x":100,"y":-33},{"x":-12,"y":-47},{"x":42,"y":-37},{"x":-7,"y":-77},{"x":-75,"y":-47},{"x":13,"y":-65},{"x":-16,"y":-44},{"x":-50,"y":-30},{"x":-6,"y":-81},{"x":-62,"y":-27},{"x":-23,"y":-47},{"x":33,"y":-78},{"x":-60,"y":-37},{"x":-23,"y":-91},{"x":77,"y":-200},{"x":-16,"y":-63},{"x":60,"y":-13},{"x":47,"y":-52},{"x":17,"y":-85},{"x":-57,"y":-63},{"x":-8,"y":-55},{"x":-44,"y":-17}],"type":"admin"},{"arc":[{"x":142976,"y":110244},{"x":-52,"y":-20},{"x":-49,"y":-63},{"x":-80,"y":41},{"x":-120,"y":-101},{"x":-53,"y":-13},{"x":-32,"y":-47},{"x":-178,"y":-11},{"x":-39,"y":19},{"x":-108,"y":-41},{"x":-23,"y":-32},{"x":-72,"y":18},{"x":-56,"y":-37},{"x":-53,"y":33},{"x":-80,"y":-52},{"x":-91,"y":15},{"x":-45,"y":-17}],"type":"admin"},{"arc":[{"x":141845,"y":109936},{"x":-14,"y":-44},{"x":-95,"y":-15},{"x":-65,"y":-62},{"x":20,"y":-109},{"x":-84,"y":-99},{"x":-2,"y":-65},{"x":35,"y":-26},{"x":18,"y":-93},{"x":-67,"y":-26},{"x":-31,"y":-66}],"type":"admin"},{"arc":[{"x":145802,"y":104625},{"x":7,"y":19},{"x":-60,"y":-31},{"x":41,"y":-37},{"x":12,"y":22},{"x":-27,"y":11},{"x":34,"y":0},{"x":-7,"y":16}],"type":"coastline"},{"arc":[{"x":145919,"y":106273},{"x":-24,"y":10},{"x":2,"y":-29},{"x":22,"y":19}],"type":"coastline"},{"arc":[{"x":145982,"y":106566},{"x":-13,"y":43},{"x":-18,"y":-35},{"x":-19,"y":17},{"x":10,"y":-83},{"x":40,"y":58}],"type":"coastline"},{"arc":[{"x":146156,"y":105384},{"x":-7,"y":26},{"x":-41,"y":-50},{"x":-56,"y":17},{"x":15,"y":-66},{"x":71,"y":31},{"x":18,"y":42}],"type":"coastline"},{"arc":[{"x":144703,"y":106373},{"x":-189,"y":-225},{"x":-71,"y":-156},{"x":-207,"y":23},{"x":-56,"y":40},{"x":-94,"y":0},{"x":-159,"y":-96},{"x":-36,"y":39},{"x":-8,"y":-51},{"x":-47,"y":-18},{"x":-21,"y":26},{"x":-70,"y":-15},{"x":-24,"y":19},{"x":-60,"y":-39},{"x":-49,"y":-80},{"x":-66,"y":-20},{"x":-37,"y":-45},{"x":-103,"y":-245},{"x":-115,"y":-47},{"x":-64,"y":-72},{"x":-56,"y":-88},{"x":-17,"y":-153},{"x":-39,"y":-55},{"x":-81,"y":-101},{"x":-119,"y":-74},{"x":-132,"y":-190}],"type":"area"},{"arc":[{"x":142783,"y":104750},{"x":125,"y":-123},{"x":122,"y":-35},{"x":44,"y":-49},{"x":103,"y":1},{"x":68,"y":47},{"x":105,"y":-16},{"x":-27,"y":-116},{"x":32,"y":-20},{"x":50,"y":-136},{"x":-48,"y":-45},{"x":42,"y":-64},{"x":-62,"y":-26},{"x":-46,"y":32},{"x":-60,"y":-88},{"x":96,"y":-79},{"x":-37,"y":-161},{"x":26,"y":-38},{"x":-24,"y":-116},{"x":93,"y":-235},{"x":-81,"y":-59},{"x":69,"y":-39},{"x":-18,"y":-50},{"x":-106,"y":-39},{"x":42,"y":-16},{"x":20,"y":-86},{"x":66,"y":-5},{"x":54,"y":-46},{"x":-119,"y":-65},{"x":41,"y":-206}],"type":"area"},{"arc":[{"x":143353,"y":102872},{"x":21,"y":-16},{"x":54,"y":31},{"x":83,"y":-42},{"x":-9,"y":-41},{"x":144,"y":-20},{"x":63,"y":134},{"x":112,"y":77},{"x":290,"y":363},{"x":136,"y":41},{"x":276,"y":-238},{"x":53,"y":-15},{"x":41,"y":19},{"x":69,"y":-42},{"x":113,"y":-23},{"x":92,"y":-6},{"x":45,"y":22},{"x":108,"y":-45},{"x":46,"y":5}],"type":"area"},{"arc":[{"x":145090,"y":103076},{"x":25,"y":114},{"x":76,"y":66},{"x":-9,"y":22},{"x":-15,"y":-25},{"x":-27,"y":52},{"x":15,"y":83},{"x":-33,"y":67},{"x":56,"y":152},{"x":-50,"y":91},{"x":12,"y":83},{"x":47,"y":35},{"x":61,"y":-31},{"x":-34,"y":29},{"x":74,"y":-1},{"x":-31,"y":-34},{"x":30,"y":4},{"x":17,"y":-30},{"x":-43,"y":-5},{"x":-2,"y":-19},{"x":57,"y":25},{"x":23,"y":-14},{"x":6,"y":24},{"x":46,"y":-19},{"x":64,"y":15},{"x":11,"y":-20},{"x":37,"y":39},{"x":-27,"y":46},{"x":-26,"y":0},{"x":2,"y":48},{"x":18,"y":16},{"x":48,"y":-40},{"x":13,"y":47},{"x":-49,"y":72},{"x":55,"y":4},{"x":-39,"y":15},{"x":-5,"y":86},{"x":-56,"y":-14},{"x":0,"y":23},{"x":38,"y":13},{"x":-60,"y":64},{"x":21,"y":66},{"x":32,"y":-6},{"x":-26,"y":75},{"x":15,"y":48},{"x":-32,"y":27},{"x":57,"y":31},{"x":95,"y":-25},{"x":15,"y":-31},{"x":51,"y":30},{"x":-31,"y":28},{"x":30,"y":26},{"x":27,"y":-24},{"x":-11,"y":30},{"x":26,"y":0},{"x":11,"y":62},{"x":-24,"y":-9},{"x":-12,"y":22},{"x":-26,"y":-18},{"x":-12,"y":83},{"x":29,"y":22},{"x":44,"y":-38},{"x":6,"y":68},{"x":55,"y":-1},{"x":1,"y":72},{"x":94,"y":5},{"x":39,"y":-119},{"x":37,"y":-12},{"x":-6,"y":68},{"x":59,"y":56},{"x":-30,"y":55},{"x":-50,"y":19},{"x":104,"y":20},{"x":-54,"y":161},{"x":21,"y":51},{"x":-41,"y":40},{"x":23,"y":52},{"x":41,"y":-9},{"x":12,"y":-49},{"x":29,"y":15},{"x":1,"y":-41},{"x":26,"y":84},{"x":29,"y":-49},{"x":93,"y":-4},{"x":-29,"y":-29},{"x":34,"y":-12},{"x":0,"y":-42},{"x":27,"y":-12},{"x":45,"y":114},{"x":-6,"y":41},{"x":-13,"y":-23},{"x":-65,"y":15},{"x":12,"y":74},{"x":-37,"y":22},{"x":23,"y":48},{"x":-40,"y":-5},{"x":-2,"y":29},{"x":-39,"y":-11},{"x":-25,"y":19},{"x":17,"y":-20},{"x":-22,"y":-11},{"x":-83,"y":68},{"x":23,"y":8},{"x":-51,"y":-7},{"x":-19,"y":62},{"x":-30,"y":1},{"x":51,"y":41},{"x":9,"y":120},{"x":-24,"y":5},{"x":-24,"y":-114},{"x":-3,"y":31},{"x":-67,"y":14},{"x":-49,"y":64},{"x":-62,"y":-16},{"x":-27,"y":30},{"x":19,"y":70},{"x":-36,"y":32},{"x":52,"y":30},{"x":-36,"y":21},{"x":40,"y":15},{"x":-20,"y":-6},{"x":8,"y":26},{"x":33,"y":-39},{"x":83,"y":51},{"x":-9,"y":36},{"x":-22,"y":-15},{"x":-22,"y":33},{"x":-59,"y":-1},{"x":39,"y":41},{"x":-33,"y":4},{"x":12,"y":51},{"x":52,"y":-7},{"x":-17,"y":37},{"x":21,"y":17},{"x":-38,"y":6},{"x":11,"y":38},{"x":-20,"y":-19},{"x":4,"y":25},{"x":-25,"y":-5},{"x":8,"y":52},{"x":-31,"y":-13},{"x":4,"y":39},{"x":30,"y":8},{"x":22,"y":-35},{"x":71,"y":2},{"x":7,"y":-30},{"x":16,"y":34},{"x":50,"y":-32},{"x":0,"y":48},{"x":33,"y":3},{"x":-42,"y":15},{"x":1,"y":36},{"x":-118,"y":-16},{"x":35,"y":25},{"x":-42,"y":145},{"x":41,"y":48},{"x":65,"y":-28},{"x":2,"y":34},{"x":50,"y":-14},{"x":25,"y":17},{"x":-49,"y":32},{"x":39,"y":62},{"x":-39,"y":12},{"x":18,"y":78},{"x":-41,"y":-37},{"x":-3,"y":-58},{"x":-10,"y":21},{"x":-22,"y":-41},{"x":-32,"y":7},{"x":22,"y":8},{"x":11,"y":112},{"x":-42,"y":7},{"x":5,"y":80},{"x":69,"y":73},{"x":-36,"y":25},{"x":-30,"y":-41},{"x":-11,"y":62},{"x":71,"y":31},{"x":-4,"y":51},{"x":-34,"y":16},{"x":67,"y":7},{"x":-4,"y":37},{"x":21,"y":3},{"x":-26,"y":50},{"x":-41,"y":-15},{"x":15,"y":37},{"x":-42,"y":35},{"x":7,"y":15},{"x":47,"y":-34},{"x":20,"y":16},{"x":2,"y":46},{"x":-39,"y":18},{"x":-8,"y":42},{"x":27,"y":22},{"x":23,"y":-16},{"x":2,"y":31},{"x":-25,"y":-10},{"x":-1,"y":44},{"x":-62,"y":9},{"x":45,"y":22},{"x":-44,"y":46},{"x":65,"y":29},{"x":-86,"y":84},{"x":-19,"y":115},{"x":-125,"y":-185},{"x":26,"y":21},{"x":33,"y":-23},{"x":-28,"y":-20},{"x":-28,"y":15},{"x":-12,"y":-90},{"x":21,"y":-20},{"x":-62,"y":-462},{"x":-62,"y":-85}],"type":"coastline"},{"arc":[{"x":137344,"y":94276},{"x":-25,"y":15},{"x":-20,"y":-47},{"x":45,"y":32}],"type":"coastline"},{"arc":[{"x":137406,"y":94374},{"x":-85,"y":17},{"x":-6,"y":-27},{"x":23,"y":-27},{"x":58,"y":2},{"x":-31,"y":-15},{"x":30,"y":-6},{"x":11,"y":56}],"type":"coastline"},{"arc":[{"x":137423,"y":94263},{"x":-44,"y":4},{"x":-11,"y":-68},{"x":36,"y":14},{"x":19,"y":50}],"type":"coastline"},{"arc":[{"x":137297,"y":96926},{"x":-34,"y":-21},{"x":-87,"y":40},{"x":-156,"y":213},{"x":-162,"y":87},{"x":-45,"y":122},{"x":32,"y":33},{"x":24,"y":119},{"x":-60,"y":156},{"x":-92,"y":-4},{"x":-21,"y":37},{"x":-153,"y":95},{"x":-82,"y":-38},{"x":-133,"y":11},{"x":-108,"y":-73},{"x":-28,"y":21},{"x":-177,"y":-25}],"type":"admin"},{"arc":[{"x":136015,"y":97699},{"x":76,"y":-85},{"x":3,"y":-71},{"x":-13,"y":-76},{"x":-40,"y":-41},{"x":15,"y":-49},{"x":-58,"y":-53},{"x":-43,"y":-135},{"x":44,"y":-108},{"x":98,"y":-44},{"x":2,"y":-33},{"x":-56,"y":-30},{"x":-48,"y":-75},{"x":-44,"y":10},{"x":-66,"y":-62},{"x":-101,"y":-29},{"x":88,"y":-183},{"x":81,"y":-9},{"x":26,"y":-49},{"x":89,"y":37},{"x":-9,"y":-86},{"x":56,"y":-28},{"x":53,"y":-78},{"x":-3,"y":-175},{"x":-64,"y":-45},{"x":-29,"y":11},{"x":-6,"y":44},{"x":-142,"y":-25},{"x":-58,"y":15},{"x":-88,"y":-102},{"x":-30,"y":16},{"x":-5,"y":-54},{"x":-32,"y":-5},{"x":-11,"y":-36},{"x":-63,"y":18},{"x":-59,"y":-49},{"x":-35,"y":27},{"x":-66,"y":-35},{"x":-35,"y":11},{"x":-59,"y":-130},{"x":48,"y":-76},{"x":-53,"y":-71},{"x":-76,"y":9},{"x":-14,"y":-48},{"x":-47,"y":-28},{"x":40,"y":-115},{"x":-71,"y":-42},{"x":-103,"y":-192},{"x":-65,"y":-43},{"x":-21,"y":-82},{"x":-78,"y":-19},{"x":-38,"y":-59},{"x":12,"y":-52}],"type":"admin"},{"arc":[{"x":134917,"y":95090},{"x":60,"y":-10},{"x":28,"y":-81},{"x":-44,"y":-69},{"x":88,"y":-49},{"x":6,"y":-32},{"x":-53,"y":-62},{"x":-17,"y":-82},{"x":-102,"y":-94},{"x":24,"y":-52},{"x":-10,"y":-101},{"x":22,"y":-41},{"x":48,"y":-4},{"x":-31,"y":-47},{"x":59,"y":-27},{"x":-11,"y":-87},{"x":57,"y":-42},{"x":19,"y":-72},{"x":-42,"y":-36},{"x":-116,"y":47},{"x":-13,"y":-103},{"x":-64,"y":-95},{"x":46,"y":-57},{"x":118,"y":-61},{"x":24,"y":-51},{"x":46,"y":0},{"x":-86,"y":-67},{"x":42,"y":-83},{"x":-43,"y":-13},{"x":-3,"y":-55},{"x":8,"y":-22},{"x":36,"y":19},{"x":-12,"y":-85},{"x":43,"y":-92},{"x":29,"y":9},{"x":-24,"y":-76},{"x":25,"y":-16},{"x":33,"y":22},{"x":51,"y":-28},{"x":-43,"y":-96},{"x":154,"y":-19},{"x":15,"y":-35},{"x":36,"y":-4},{"x":-51,"y":-54},{"x":24,"y":-45},{"x":142,"y":-11},{"x":11,"y":-62},{"x":48,"y":-56},{"x":4,"y":-171},{"x":64,"y":-91},{"x":44,"y":-8}],"type":"area"},{"arc":[{"x":135606,"y":92643},{"x":56,"y":11},{"x":29,"y":-19},{"x":81,"y":39},{"x":-30,"y":144},{"x":48,"y":26},{"x":-43,"y":-16},{"x":6,"y":26},{"x":119,"y":23},{"x":141,"y":135},{"x":-78,"y":-72},{"x":-95,"y":31},{"x":48,"y":40},{"x":-17,"y":23},{"x":34,"y":-12},{"x":-17,"y":15},{"x":65,"y":30},{"x":-15,"y":45},{"x":47,"y":69},{"x":111,"y":23},{"x":54,"y":56},{"x":67,"y":-27},{"x":27,"y":52},{"x":45,"y":-15},{"x":4,"y":68},{"x":46,"y":25},{"x":-5,"y":50},{"x":40,"y":29},{"x":-25,"y":48},{"x":76,"y":81},{"x":11,"y":59},{"x":91,"y":23},{"x":-3,"y":25},{"x":83,"y":0},{"x":66,"y":138},{"x":143,"y":76},{"x":33,"y":-6},{"x":-20,"y":-6},{"x":28,"y":-48},{"x":28,"y":2},{"x":-5,"y":-24},{"x":64,"y":10},{"x":57,"y":140},{"x":-65,"y":-43},{"x":27,"y":31},{"x":-41,"y":10},{"x":69,"y":8},{"x":38,"y":89},{"x":49,"y":-23},{"x":-11,"y":59},{"x":52,"y":19},{"x":-54,"y":87},{"x":15,"y":36},{"x":-35,"y":-59},{"x":-23,"y":12},{"x":9,"y":-31},{"x":-20,"y":11},{"x":-31,"y":104},{"x":23,"y":54},{"x":60,"y":33},{"x":5,"y":-63},{"x":13,"y":20},{"x":57,"y":-26},{"x":11,"y":59},{"x":114,"y":-32},{"x":-21,"y":29},{"x":-35,"y":-10},{"x":26,"y":59},{"x":35,"y":-23},{"x":-34,"y":24},{"x":15,"y":21},{"x":49,"y":-15},{"x":-68,"y":33},{"x":17,"y":36},{"x":87,"y":-68},{"x":76,"y":-6},{"x":42,"y":64},{"x":-37,"y":38},{"x":18,"y":15},{"x":-28,"y":-7},{"x":8,"y":36},{"x":85,"y":6},{"x":-2,"y":44},{"x":12,"y":-54},{"x":-58,"y":-23},{"x":73,"y":-43},{"x":10,"y":34},{"x":45,"y":-13},{"x":29,"y":63},{"x":25,"y":-12},{"x":-7,"y":34},{"x":48,"y":18},{"x":0,"y":27},{"x":38,"y":-21},{"x":25,"y":12},{"x":2,"y":62},{"x":27,"y":-5},{"x":-8,"y":30},{"x":28,"y":9},{"x":-33,"y":78},{"x":25,"y":-6},{"x":-10,"y":26},{"x":52,"y":43},{"x":48,"y":-10},{"x":-15,"y":21},{"x":75,"y":-40},{"x":21,"y":55},{"x":71,"y":25},{"x":-27,"y":15},{"x":3,"y":38},{"x":161,"y":275}],"type":"coastline"},{"arc":[{"x":138156,"y":95229},{"x":-23,"y":32},{"x":-51,"y":-41},{"x":-144,"y":60},{"x":14,"y":91},{"x":32,"y":-20},{"x":15,"y":15},{"x":-64,"y":73},{"x":1,"y":87},{"x":18,"y":62},{"x":101,"y":52},{"x":-16,"y":34},{"x":-113,"y":86},{"x":-22,"y":-28},{"x":-71,"y":21},{"x":-40,"y":-40},{"x":-78,"y":-4},{"x":-84,"y":149},{"x":12,"y":65},{"x":-58,"y":27},{"x":-2,"y":78},{"x":-40,"y":26},{"x":39,"y":40},{"x":99,"y":14},{"x":90,"y":70},{"x":90,"y":-1},{"x":4,"y":35},{"x":-61,"y":36},{"x":8,"y":69},{"x":-36,"y":13},{"x":-43,"y":-22},{"x":-74,"y":13},{"x":-17,"y":24},{"x":-50,"y":-13},{"x":-9,"y":78},{"x":-107,"y":55},{"x":-37,"y":1},{"x":10,"y":-41},{"x":-36,"y":10},{"x":-41,"y":-37},{"x":-40,"y":32},{"x":-34,"y":-9},{"x":13,"y":36},{"x":78,"y":32},{"x":-39,"y":84},{"x":97,"y":26},{"x":-24,"y":51},{"x":28,"y":69},{"x":-56,"y":46},{"x":0,"y":33},{"x":-37,"y":3},{"x":-43,"y":46},{"x":-18,"y":79}],"type":"area"},{"arc":[{"x":142055,"y":99687},{"x":2,"y":-3}],"type":"coastline"},{"arc":[{"x":142057,"y":99684},{"x":-2,"y":3}],"type":"coastline"},{"arc":[{"x":144090,"y":100350},{"x":-12,"y":-13},{"x":26,"y":-4},{"x":-14,"y":17}],"type":"coastline"},{"arc":[{"x":143353,"y":102872},{"x":-51,"y":-44},{"x":-52,"y":70},{"x":-31,"y":-133},{"x":-122,"y":-53},{"x":-12,"y":-41},{"x":-118,"y":57},{"x":-53,"y":-66},{"x":-107,"y":88},{"x":-52,"y":-39},{"x":-41,"y":5},{"x":6,"y":-27},{"x":-37,"y":-28},{"x":19,"y":-28},{"x":-65,"y":-71},{"x":34,"y":-24},{"x":-60,"y":-32},{"x":35,"y":-79},{"x":-77,"y":-39},{"x":-36,"y":42},{"x":-146,"y":20},{"x":8,"y":-304},{"x":-29,"y":-28},{"x":-31,"y":41},{"x":-55,"y":10},{"x":-33,"y":-136},{"x":-81,"y":-31},{"x":6,"y":-37},{"x":-107,"y":-11},{"x":-160,"y":-85},{"x":-81,"y":73},{"x":-94,"y":-12},{"x":-72,"y":-111},{"x":-60,"y":-4},{"x":-72,"y":-50},{"x":-61,"y":-130},{"x":-109,"y":-11},{"x":-20,"y":44},{"x":-190,"y":-29},{"x":-45,"y":-76},{"x":-177,"y":-74},{"x":-3,"y":-83},{"x":-92,"y":-48},{"x":-79,"y":41},{"x":37,"y":-217},{"x":-52,"y":-93},{"x":-78,"y":-11},{"x":22,"y":-70},{"x":-22,"y":-24}],"type":"area"},{"arc":[{"x":140657,"y":100984},{"x":-21,"y":-59},{"x":25,"y":-49},{"x":99,"y":-8},{"x":61,"y":-155},{"x":-52,"y":-85}],"type":"admin"},{"arc":[{"x":140769,"y":100628},{"x":77,"y":18},{"x":60,"y":-29},{"x":57,"y":11},{"x":78,"y":-58},{"x":96,"y":-11},{"x":37,"y":-52},{"x":31,"y":9},{"x":23,"y":-55},{"x":52,"y":-13},{"x":-34,"y":-92},{"x":-36,"y":-12},{"x":-63,"y":28},{"x":40,"y":-76},{"x":-20,"y":-32},{"x":86,"y":-50},{"x":9,"y":-89},{"x":49,"y":-27},{"x":-17,"y":-57},{"x":69,"y":-11},{"x":-3,"y":-84},{"x":113,"y":-81},{"x":-12,"y":-17},{"x":34,"y":-9},{"x":48,"y":-87},{"x":63,"y":-17},{"x":124,"y":47},{"x":47,"y":-37},{"x":176,"y":-17},{"x":13,"y":-28},{"x":88,"y":-11}],"type":"area"},{"arc":[{"x":142054,"y":99689},{"x":-2,"y":37},{"x":36,"y":30},{"x":-32,"y":-25},{"x":-11,"y":17},{"x":53,"y":51},{"x":3,"y":110},{"x":43,"y":52},{"x":-24,"y":-22},{"x":44,"y":160},{"x":20,"y":19},{"x":0,"y":-23},{"x":70,"y":142},{"x":181,"y":154},{"x":187,"y":116},{"x":400,"y":153},{"x":301,"y":55},{"x":342,"y":-23},{"x":44,"y":-39},{"x":-24,"y":-50},{"x":21,"y":34},{"x":101,"y":-113},{"x":3,"y":-68},{"x":68,"y":-52},{"x":-2,"y":-48},{"x":39,"y":-46},{"x":-24,"y":-49},{"x":12,"y":-80},{"x":61,"y":2},{"x":9,"y":22},{"x":20,"y":-18},{"x":29,"y":42},{"x":95,"y":14},{"x":-14,"y":52},{"x":-27,"y":3},{"x":-7,"y":75},{"x":45,"y":0},{"x":-24,"y":43},{"x":28,"y":-5},{"x":5,"y":24},{"x":50,"y":-64},{"x":24,"y":4},{"x":-45,"y":89},{"x":18,"y":-21},{"x":27,"y":21},{"x":-34,"y":8},{"x":7,"y":25},{"x":29,"y":-4},{"x":-15,"y":62},{"x":56,"y":-7},{"x":-1,"y":28},{"x":-44,"y":-2},{"x":45,"y":41},{"x":-73,"y":2},{"x":47,"y":3},{"x":-33,"y":30},{"x":49,"y":-13},{"x":-3,"y":42},{"x":13,"y":20},{"x":14,"y":-20},{"x":24,"y":41},{"x":-7,"y":38},{"x":-53,"y":-6},{"x":14,"y":55},{"x":-45,"y":30},{"x":30,"y":14},{"x":83,"y":-50},{"x":28,"y":18},{"x":-40,"y":171},{"x":-27,"y":5},{"x":5,"y":30},{"x":-32,"y":-23},{"x":-39,"y":75},{"x":74,"y":141},{"x":1,"y":207},{"x":17,"y":31},{"x":43,"y":4},{"x":-27,"y":39},{"x":-28,"y":-6},{"x":0,"y":35},{"x":37,"y":44},{"x":15,"y":-34},{"x":56,"y":24},{"x":5,"y":26},{"x":46,"y":-108},{"x":-44,"y":-12},{"x":57,"y":0},{"x":120,"y":-215},{"x":-17,"y":48},{"x":30,"y":46},{"x":-1,"y":104},{"x":31,"y":64},{"x":40,"y":14},{"x":-24,"y":50},{"x":67,"y":174},{"x":0,"y":47},{"x":-10,"y":-25},{"x":-11,"y":26},{"x":67,"y":161},{"x":-10,"y":53},{"x":64,"y":11},{"x":109,"y":119},{"x":0,"y":128},{"x":102,"y":65},{"x":-5,"y":61},{"x":-30,"y":16},{"x":55,"y":87},{"x":-4,"y":53},{"x":46,"y":36},{"x":-36,"y":40},{"x":75,"y":50},{"x":-39,"y":120},{"x":24,"y":275}],"type":"coastline"},{"arc":[{"x":134917,"y":95090},{"x":-72,"y":13},{"x":-38,"y":-25},{"x":-27,"y":64},{"x":-35,"y":13},{"x":-36,"y":54},{"x":30,"y":22},{"x":-16,"y":137},{"x":-58,"y":36},{"x":-78,"y":1},{"x":-38,"y":-65},{"x":-53,"y":-5},{"x":-112,"y":-78},{"x":-48,"y":7},{"x":-100,"y":-75}],"type":"admin"},{"arc":[{"x":134236,"y":95189},{"x":-50,"y":-42},{"x":-26,"y":10},{"x":-2,"y":-38},{"x":-50,"y":1},{"x":-29,"y":-61},{"x":-35,"y":-10},{"x":-56,"y":38},{"x":-69,"y":4},{"x":-69,"y":-78},{"x":-77,"y":-16},{"x":-65,"y":-56},{"x":-136,"y":13},{"x":-79,"y":125},{"x":-78,"y":-53},{"x":-78,"y":10}],"type":"admin"},{"arc":[{"x":133337,"y":95036},{"x":-59,"y":-78},{"x":-77,"y":11},{"x":-123,"y":-54},{"x":-98,"y":-143},{"x":-220,"y":-166},{"x":-45,"y":-209},{"x":-56,"y":-61},{"x":9,"y":-56},{"x":-115,"y":-48},{"x":-73,"y":11},{"x":-168,"y":-126},{"x":-34,"y":27},{"x":-7,"y":134},{"x":-84,"y":78},{"x":-128,"y":-26},{"x":-80,"y":80},{"x":-103,"y":37}],"type":"admin"},{"arc":[{"x":131876,"y":94447},{"x":1,"y":-138}],"type":"admin"},{"arc":[{"x":131877,"y":94309},{"x":83,"y":-57},{"x":8,"y":-108},{"x":-105,"y":-184},{"x":8,"y":-54},{"x":-96,"y":-90},{"x":-74,"y":-11},{"x":-44,"y":-114},{"x":29,"y":-2},{"x":-7,"y":-44},{"x":34,"y":-11},{"x":183,"y":69},{"x":46,"y":-15},{"x":25,"y":-115},{"x":-47,"y":-100},{"x":40,"y":-67},{"x":44,"y":-7}],"type":"admin"},{"arc":[{"x":132004,"y":93399},{"x":50,"y":3},{"x":22,"y":33},{"x":86,"y":-53},{"x":71,"y":15},{"x":67,"y":-26},{"x":52,"y":18},{"x":139,"y":-93},{"x":-12,"y":-96},{"x":-86,"y":-51},{"x":-3,"y":-39},{"x":41,"y":-171},{"x":62,"y":-31},{"x":24,"y":-68},{"x":47,"y":-12},{"x":33,"y":-71},{"x":139,"y":31},{"x":125,"y":-38},{"x":115,"y":82},{"x":14,"y":71},{"x":103,"y":69},{"x":103,"y":-48},{"x":-53,"y":-19},{"x":4,"y":-65},{"x":85,"y":9},{"x":59,"y":80},{"x":78,"y":-102},{"x":-17,"y":-100},{"x":61,"y":15},{"x":94,"y":-34},{"x":29,"y":23},{"x":34,"y":-41},{"x":-44,"y":-117},{"x":-31,"y":-18},{"x":34,"y":-68},{"x":-53,"y":-70},{"x":22,"y":-40},{"x":-118,"y":4},{"x":-33,"y":-25},{"x":33,"y":-39},{"x":-13,"y":-24},{"x":-97,"y":43},{"x":-70,"y":-13},{"x":-36,"y":-37},{"x":68,"y":-66},{"x":-13,"y":-109},{"x":55,"y":-116},{"x":62,"y":-57},{"x":44,"y":33},{"x":31,"y":-27},{"x":-90,"y":-58},{"x":-20,"y":-57},{"x":-38,"y":-7},{"x":113,"y":-79},{"x":18,"y":-51},{"x":-28,"y":-93},{"x":-30,"y":-1},{"x":47,"y":-37},{"x":-55,"y":-18},{"x":2,"y":-67},{"x":-41,"y":-61},{"x":40,"y":-50},{"x":4,"y":-67},{"x":-76,"y":41},{"x":-80,"y":-52},{"x":-26,"y":-46},{"x":7,"y":-99},{"x":-63,"y":-46},{"x":-38,"y":-71},{"x":27,"y":-54},{"x":42,"y":-4},{"x":2,"y":-45},{"x":68,"y":-33}],"type":"admin"},{"arc":[{"x":133196,"y":90889},{"x":57,"y":33},{"x":45,"y":-19},{"x":37,"y":-60},{"x":113,"y":3},{"x":88,"y":-30},{"x":23,"y":26},{"x":67,"y":-30},{"x":94,"y":15},{"x":-7,"y":-122},{"x":99,"y":-122},{"x":27,"y":14},{"x":62,"y":-20},{"x":51,"y":42},{"x":33,"y":-19},{"x":116,"y":6},{"x":72,"y":36},{"x":-5,"y":-58},{"x":90,"y":3},{"x":11,"y":-67},{"x":81,"y":12},{"x":71,"y":-62},{"x":38,"y":47},{"x":117,"y":23}],"type":"admin"},{"arc":[{"x":134576,"y":90540},{"x":-50,"y":3},{"x":-23,"y":127},{"x":-5,"y":-33},{"x":-31,"y":39},{"x":44,"y":57},{"x":-36,"y":64},{"x":53,"y":75},{"x":-47,"y":24},{"x":12,"y":145},{"x":252,"y":804},{"x":214,"y":335},{"x":84,"y":65},{"x":61,"y":-13},{"x":-3,"y":73},{"x":29,"y":32},{"x":40,"y":-2},{"x":57,"y":69},{"x":93,"y":-22},{"x":-4,"y":34},{"x":20,"y":14},{"x":25,"y":-24},{"x":6,"y":35},{"x":29,"y":-60},{"x":42,"y":3},{"x":80,"y":-44},{"x":58,"y":97},{"x":-43,"y":137},{"x":33,"y":37},{"x":51,"y":-22},{"x":-11,"y":54}],"type":"coastline"},{"arc":[{"x":136554,"y":92017},{"x":-18,"y":84},{"x":-22,"y":5},{"x":-10,"y":-42},{"x":39,"y":-87},{"x":11,"y":40}],"type":"coastline"},{"arc":[{"x":139910,"y":97230},{"x":-8,"y":20},{"x":-28,"y":-13},{"x":36,"y":-7}],"type":"coastline"},{"arc":[{"x":140770,"y":97888},{"x":-25,"y":-18},{"x":26,"y":-4},{"x":-1,"y":22}],"type":"coastline"},{"arc":[{"x":142055,"y":99687},{"x":-1,"y":2}],"type":"coastline"},{"arc":[{"x":140769,"y":100628},{"x":-1,"y":-57},{"x":-107,"y":-32},{"x":-22,"y":-47},{"x":-119,"y":-25},{"x":-53,"y":-135},{"x":-129,"y":-91},{"x":-147,"y":220},{"x":-42,"y":25},{"x":-22,"y":-16},{"x":-18,"y":28},{"x":-3,"y":99},{"x":37,"y":38},{"x":-39,"y":48},{"x":-77,"y":-11},{"x":-61,"y":-73},{"x":-58,"y":51},{"x":-64,"y":-19},{"x":-92,"y":-82}],"type":"admin"},{"arc":[{"x":139752,"y":100549},{"x":32,"y":-65},{"x":-21,"y":-101},{"x":92,"y":-120},{"x":-96,"y":-89},{"x":-12,"y":-99},{"x":43,"y":-31},{"x":43,"y":34},{"x":141,"y":21},{"x":74,"y":-106},{"x":40,"y":1},{"x":7,"y":-44},{"x":-61,"y":-24},{"x":46,"y":-78},{"x":49,"y":-23},{"x":-33,"y":-151},{"x":41,"y":-68},{"x":-41,"y":-63},{"x":79,"y":-134},{"x":-69,"y":-31},{"x":-8,"y":-66},{"x":-59,"y":-23},{"x":26,"y":-44},{"x":-110,"y":-53},{"x":3,"y":-33},{"x":-37,"y":5},{"x":-8,"y":-34},{"x":-32,"y":-9},{"x":16,"y":-92},{"x":-34,"y":-5},{"x":-10,"y":-62},{"x":-47,"y":-38},{"x":58,"y":-100},{"x":-38,"y":-57},{"x":-103,"y":-5},{"x":-73,"y":-78},{"x":-59,"y":58},{"x":-31,"y":-5},{"x":-1,"y":-95},{"x":-101,"y":60},{"x":-33,"y":51},{"x":-76,"y":-14}],"type":"admin"},{"arc":[{"x":139349,"y":98739},{"x":-112,"y":-89},{"x":-85,"y":11},{"x":-88,"y":-31},{"x":-42,"y":-68},{"x":-31,"y":-4},{"x":12,"y":-53},{"x":-24,"y":-22},{"x":-156,"y":-3},{"x":84,"y":-128},{"x":2,"y":-99},{"x":-59,"y":20},{"x":-32,"y":-70},{"x":71,"y":-83},{"x":-47,"y":-45},{"x":8,"y":-95},{"x":-43,"y":-67},{"x":-74,"y":-40},{"x":13,"y":-65},{"x":-24,"y":-54},{"x":-130,"y":-49}],"type":"admin"},{"arc":[{"x":138592,"y":97705},{"x":114,"y":-90},{"x":-8,"y":-65},{"x":39,"y":0},{"x":39,"y":-41},{"x":114,"y":-40},{"x":72,"y":35},{"x":26,"y":-22},{"x":44,"y":17},{"x":57,"y":-79},{"x":47,"y":-17},{"x":45,"y":16},{"x":74,"y":-121},{"x":-22,"y":-61},{"x":121,"y":-114},{"x":-88,"y":-38},{"x":161,"y":-102}],"type":"area"},{"arc":[{"x":139427,"y":96983},{"x":20,"y":27},{"x":35,"y":-11},{"x":32,"y":31},{"x":32,"y":-4},{"x":29,"y":92},{"x":59,"y":10},{"x":12,"y":-35},{"x":82,"y":-9},{"x":63,"y":79},{"x":53,"y":13},{"x":-33,"y":62},{"x":-32,"y":-1},{"x":-4,"y":69},{"x":34,"y":-11},{"x":17,"y":-53},{"x":23,"y":20},{"x":13,"y":-36},{"x":12,"y":50},{"x":2,"y":-30},{"x":32,"y":8},{"x":5,"y":69},{"x":40,"y":-1},{"x":-33,"y":25},{"x":20,"y":14},{"x":36,"y":-22},{"x":-15,"y":24},{"x":38,"y":9},{"x":-44,"y":31},{"x":28,"y":-1},{"x":3,"y":24},{"x":17,"y":-17},{"x":21,"y":44},{"x":26,"y":-20},{"x":-15,"y":49},{"x":24,"y":31},{"x":44,"y":11},{"x":-9,"y":-23},{"x":21,"y":14},{"x":14,"y":-16},{"x":5,"y":29},{"x":18,"y":-21},{"x":-34,"y":61},{"x":53,"y":-14},{"x":0,"y":70},{"x":35,"y":-29},{"x":5,"y":106},{"x":63,"y":59},{"x":102,"y":25},{"x":89,"y":-103},{"x":17,"y":55},{"x":-21,"y":40},{"x":79,"y":38},{"x":39,"y":-11},{"x":24,"y":64},{"x":-40,"y":-8},{"x":53,"y":44},{"x":-5,"y":-36},{"x":14,"y":48},{"x":29,"y":5},{"x":0,"y":-17},{"x":32,"y":20},{"x":14,"y":-36},{"x":17,"y":19},{"x":19,"y":-18},{"x":-15,"y":28},{"x":37,"y":-11},{"x":58,"y":34},{"x":32,"y":105},{"x":46,"y":-30},{"x":-3,"y":22},{"x":47,"y":1},{"x":-8,"y":64},{"x":26,"y":-22},{"x":29,"y":17},{"x":-23,"y":-37},{"x":63,"y":-4},{"x":-23,"y":43},{"x":13,"y":85},{"x":111,"y":207},{"x":78,"y":58},{"x":59,"y":102},{"x":50,"y":-3},{"x":-22,"y":17},{"x":37,"y":17},{"x":15,"y":-9},{"x":-9,"y":-6},{"x":10,"y":5},{"x":7,"y":-9},{"x":-25,"y":-11},{"x":34,"y":15},{"x":70,"y":197},{"x":30,"y":20},{"x":68,"y":-11},{"x":-27,"y":145},{"x":39,"y":8},{"x":-31,"y":6},{"x":20,"y":23},{"x":40,"y":-21},{"x":52,"y":59},{"x":54,"y":198},{"x":34,"y":13},{"x":0,"y":-28},{"x":100,"y":40},{"x":9,"y":51},{"x":77,"y":95},{"x":9,"y":78},{"x":57,"y":40},{"x":-2,"y":66},{"x":38,"y":11},{"x":-4,"y":38},{"x":64,"y":89}],"type":"coastline"},{"arc":[{"x":141347,"y":105646},{"x":-60,"y":-67},{"x":9,"y":-79},{"x":-40,"y":-80},{"x":69,"y":-233},{"x":111,"y":-47},{"x":113,"y":55},{"x":83,"y":-3},{"x":29,"y":-93},{"x":116,"y":-75},{"x":-4,"y":-188}],"type":"admin"},{"arc":[{"x":141773,"y":104836},{"x":73,"y":-30},{"x":103,"y":28},{"x":37,"y":-38},{"x":119,"y":-5},{"x":32,"y":-38},{"x":142,"y":17},{"x":33,"y":-44},{"x":82,"y":16},{"x":58,"y":-36},{"x":86,"y":54},{"x":205,"y":-35},{"x":40,"y":25}],"type":"area"},{"arc":[{"x":139270,"y":96656},{"x":-16,"y":17},{"x":-4,"y":-24},{"x":20,"y":7}],"type":"coastline"},{"arc":[{"x":138592,"y":97705},{"x":-87,"y":59},{"x":-76,"y":-1},{"x":-38,"y":-35},{"x":-67,"y":14},{"x":14,"y":64},{"x":-73,"y":203},{"x":39,"y":32},{"x":16,"y":95},{"x":-100,"y":33},{"x":-52,"y":94},{"x":-94,"y":15},{"x":98,"y":45},{"x":-9,"y":98},{"x":-63,"y":74},{"x":-114,"y":20},{"x":-24,"y":32}],"type":"admin"},{"arc":[{"x":137962,"y":98547},{"x":-22,"y":-20},{"x":40,"y":-45},{"x":-54,"y":-58},{"x":25,"y":-76},{"x":-42,"y":-35},{"x":13,"y":-18},{"x":-52,"y":-17},{"x":-4,"y":-40},{"x":-173,"y":-68},{"x":-19,"y":-78},{"x":48,"y":-50},{"x":-21,"y":-43},{"x":114,"y":-125},{"x":-17,"y":-163},{"x":90,"y":-71},{"x":-30,"y":-26},{"x":1,"y":-70},{"x":-93,"y":-31},{"x":-75,"y":-66},{"x":-8,"y":-57},{"x":-58,"y":-23},{"x":-24,"y":-46},{"x":-4,"y":-80},{"x":-46,"y":19},{"x":57,"y":-125},{"x":-42,"y":5},{"x":-7,"y":-55},{"x":-39,"y":-25},{"x":-51,"y":25},{"x":15,"y":-93},{"x":-26,"y":-45},{"x":-55,"y":-14},{"x":-15,"y":24},{"x":-56,"y":-55},{"x":-35,"y":24}],"type":"admin"},{"arc":[{"x":138156,"y":95229},{"x":51,"y":51},{"x":119,"y":29},{"x":-13,"y":26},{"x":45,"y":95},{"x":179,"y":262},{"x":65,"y":52},{"x":31,"y":-6},{"x":46,"y":90},{"x":237,"y":233},{"x":87,"y":13},{"x":-74,"y":-3},{"x":18,"y":55},{"x":90,"y":3},{"x":50,"y":35},{"x":-75,"y":-34},{"x":46,"y":57},{"x":35,"y":162},{"x":43,"y":23},{"x":-43,"y":78},{"x":42,"y":136},{"x":87,"y":105},{"x":12,"y":79},{"x":37,"y":3},{"x":-24,"y":31},{"x":35,"y":74},{"x":28,"y":6},{"x":40,"y":73},{"x":77,"y":26}],"type":"coastline"},{"arc":[{"x":141512,"y":103793},{"x":30,"y":-51},{"x":51,"y":-10},{"x":-16,"y":59},{"x":-65,"y":2}],"type":"admin"},{"arc":[{"x":141773,"y":104836},{"x":-70,"y":-219},{"x":59,"y":-211},{"x":-42,"y":-44},{"x":10,"y":-56},{"x":-31,"y":-39},{"x":78,"y":-278},{"x":-6,"y":-80},{"x":-50,"y":-58},{"x":36,"y":-42},{"x":-21,"y":-34},{"x":19,"y":-33},{"x":-31,"y":-21},{"x":16,"y":-57},{"x":-100,"y":-7},{"x":-24,"y":39},{"x":-57,"y":-5},{"x":-42,"y":-34},{"x":-54,"y":15},{"x":1,"y":54},{"x":-46,"y":-19},{"x":-6,"y":20},{"x":-36,"y":-4},{"x":-26,"y":-40},{"x":19,"y":-64},{"x":-91,"y":-61},{"x":-61,"y":16},{"x":-66,"y":-86},{"x":-94,"y":25},{"x":-58,"y":-22},{"x":-117,"y":47},{"x":-76,"y":-66},{"x":-9,"y":27},{"x":-65,"y":-3},{"x":-14,"y":32},{"x":-83,"y":34},{"x":-75,"y":-90},{"x":-1,"y":-78},{"x":-70,"y":-82},{"x":3,"y":-94},{"x":43,"y":-23},{"x":35,"y":-90},{"x":-110,"y":-80},{"x":-88,"y":18},{"x":-59,"y":107},{"x":-60,"y":-5},{"x":-51,"y":-31},{"x":-31,"y":-98},{"x":-230,"y":-48}],"type":"admin"},{"arc":[{"x":139941,"y":102968},{"x":-35,"y":-202},{"x":-83,"y":-123},{"x":-43,"y":-16}],"type":"admin"},{"arc":[{"x":139780,"y":102627},{"x":229,"y":-182},{"x":-87,"y":-122},{"x":16,"y":-173},{"x":119,"y":-32},{"x":129,"y":12},{"x":86,"y":-27},{"x":-9,"y":-195},{"x":-72,"y":-94},{"x":-6,"y":-48},{"x":-153,"y":-77},{"x":16,"y":-117},{"x":52,"y":-45},{"x":-58,"y":-85},{"x":13,"y":-33},{"x":72,"y":-11},{"x":36,"y":-42},{"x":9,"y":-82},{"x":34,"y":-33},{"x":-26,"y":-107},{"x":48,"y":-33},{"x":50,"y":38},{"x":36,"y":-47},{"x":56,"y":-17},{"x":59,"y":16},{"x":85,"y":-113},{"x":97,"y":37},{"x":5,"y":-27},{"x":41,"y":-4}],"type":"admin"},{"arc":[{"x":139551,"y":105488},{"x":33,"y":-102},{"x":57,"y":-10},{"x":44,"y":-63},{"x":-12,"y":-58},{"x":21,"y":-27},{"x":-40,"y":-46},{"x":-1,"y":-48},{"x":39,"y":-60},{"x":-93,"y":-108},{"x":52,"y":-138},{"x":-28,"y":-43},{"x":19,"y":-79},{"x":-150,"y":-99},{"x":-17,"y":-187},{"x":58,"y":-18},{"x":57,"y":-63},{"x":14,"y":-92},{"x":117,"y":-19},{"x":33,"y":-114},{"x":87,"y":-36},{"x":13,"y":-79},{"x":40,"y":-16},{"x":-47,"y":-87},{"x":-82,"y":-39},{"x":-56,"y":12},{"x":-48,"y":-54},{"x":-96,"y":-252},{"x":109,"y":-166},{"x":-43,"y":-83},{"x":47,"y":-27},{"x":24,"y":-145},{"x":195,"y":-127},{"x":31,"y":1},{"x":13,"y":-48}],"type":"admin"},{"arc":[{"x":139780,"y":102627},{"x":-43,"y":-14},{"x":-102,"y":-128},{"x":-132,"y":-71},{"x":-106,"y":-114},{"x":-121,"y":93},{"x":-70,"y":-4},{"x":1,"y":-96},{"x":-82,"y":-142},{"x":-152,"y":-50},{"x":-162,"y":-209},{"x":-87,"y":-22},{"x":-52,"y":13},{"x":-19,"y":-65},{"x":-61,"y":-52},{"x":-20,"y":-111},{"x":-51,"y":-24},{"x":-21,"y":37}],"type":"admin"},{"arc":[{"x":138500,"y":101668},{"x":-24,"y":-17},{"x":-67,"y":35},{"x":-85,"y":-132},{"x":21,"y":-73},{"x":-27,"y":-39},{"x":-127,"y":81},{"x":-12,"y":-38},{"x":-10,"y":17},{"x":-60,"y":-12},{"x":-50,"y":-74},{"x":77,"y":-38},{"x":-35,"y":-16},{"x":-41,"y":-100},{"x":-47,"y":-4},{"x":-60,"y":-71},{"x":69,"y":-63},{"x":21,"y":-73},{"x":-46,"y":-54},{"x":28,"y":-39},{"x":-39,"y":-136}],"type":"admin"},{"arc":[{"x":137986,"y":100822},{"x":24,"y":-25},{"x":91,"y":-10},{"x":85,"y":37},{"x":-26,"y":-160},{"x":38,"y":-29},{"x":16,"y":-102},{"x":83,"y":-27},{"x":71,"y":31},{"x":17,"y":-58},{"x":50,"y":-30},{"x":45,"y":69},{"x":-49,"y":69},{"x":13,"y":29},{"x":68,"y":27},{"x":37,"y":-47},{"x":64,"y":20},{"x":67,"y":-27},{"x":37,"y":15},{"x":33,"y":109},{"x":90,"y":49},{"x":29,"y":85},{"x":58,"y":-13},{"x":54,"y":98},{"x":-57,"y":52},{"x":19,"y":101},{"x":-45,"y":18},{"x":4,"y":50},{"x":79,"y":-22},{"x":55,"y":30},{"x":84,"y":-63},{"x":121,"y":68},{"x":18,"y":41},{"x":72,"y":-51},{"x":10,"y":-141},{"x":185,"y":-128},{"x":12,"y":-37},{"x":-51,"y":-56},{"x":96,"y":-52},{"x":-9,"y":-73},{"x":84,"y":17},{"x":20,"y":-26},{"x":-20,"y":-39},{"x":44,"y":-38},{"x":-9,"y":-43},{"x":59,"y":9}],"type":"admin"},{"arc":[{"x":138205,"y":99649},{"x":-87,"y":-107},{"x":-112,"y":13},{"x":-51,"y":-77},{"x":4,"y":-26},{"x":120,"y":-10},{"x":-5,"y":-103},{"x":33,"y":9},{"x":25,"y":-25},{"x":-39,"y":-43},{"x":19,"y":-87},{"x":-54,"y":-79},{"x":-103,"y":14},{"x":-74,"y":-55},{"x":-2,"y":-111},{"x":116,"y":-146},{"x":-76,"y":-127},{"x":34,"y":-94},{"x":-13,"y":-42},{"x":22,"y":-6}],"type":"area"},{"arc":[{"x":139349,"y":98739},{"x":-52,"y":52},{"x":17,"y":54},{"x":-37,"y":72},{"x":-79,"y":-3},{"x":-22,"y":-24},{"x":-51,"y":25},{"x":-24,"y":-83},{"x":-43,"y":0},{"x":-73,"y":134},{"x":-87,"y":-45},{"x":-89,"y":134},{"x":-78,"y":44},{"x":-3,"y":54},{"x":-169,"y":-1},{"x":-73,"y":34},{"x":-23,"y":73},{"x":103,"y":181},{"x":-35,"y":132},{"x":-104,"y":-1},{"x":-64,"y":59},{"x":-73,"y":2},{"x":-33,"y":-36},{"x":-52,"y":53}],"type":"area"},{"arc":[{"x":137986,"y":100822},{"x":-227,"y":-97},{"x":-25,"y":-94},{"x":-93,"y":-60},{"x":-36,"y":-99},{"x":-117,"y":-35},{"x":-28,"y":-52},{"x":-66,"y":-17},{"x":13,"y":-74}],"type":"admin"},{"arc":[{"x":137407,"y":100294},{"x":101,"y":-27},{"x":60,"y":15},{"x":36,"y":-86},{"x":61,"y":22},{"x":25,"y":-16},{"x":-19,"y":-34},{"x":37,"y":-38},{"x":-28,"y":-32},{"x":72,"y":-2},{"x":-10,"y":-128},{"x":23,"y":-20},{"x":-75,"y":-92},{"x":40,"y":-22},{"x":27,"y":29},{"x":73,"y":1},{"x":43,"y":-93},{"x":43,"y":-13},{"x":-1,"y":-41},{"x":54,"y":24},{"x":52,"y":-41},{"x":40,"y":15},{"x":61,"y":-25},{"x":60,"y":19},{"x":23,"y":-60}],"type":"area"},{"arc":[{"x":137407,"y":100294},{"x":-49,"y":-6},{"x":-28,"y":23},{"x":25,"y":161},{"x":-23,"y":54},{"x":-108,"y":51},{"x":0,"y":55},{"x":52,"y":87},{"x":-124,"y":52},{"x":-35,"y":213},{"x":-235,"y":52},{"x":-60,"y":44},{"x":-110,"y":5}],"type":"admin"},{"arc":[{"x":136712,"y":101085},{"x":-33,"y":-83},{"x":-57,"y":-46},{"x":17,"y":-53},{"x":82,"y":-16},{"x":14,"y":-114},{"x":-80,"y":-81},{"x":-158,"y":-30},{"x":-8,"y":-22},{"x":2,"y":-84},{"x":57,"y":-63},{"x":46,"y":-10},{"x":-39,"y":-87},{"x":42,"y":-75},{"x":-23,"y":-5},{"x":13,"y":-34},{"x":40,"y":-18},{"x":-2,"y":-171},{"x":-68,"y":-39},{"x":-58,"y":14},{"x":-31,"y":-81},{"x":38,"y":-54},{"x":-83,"y":-73},{"x":-76,"y":-22},{"x":25,"y":-43},{"x":-76,"y":-36},{"x":-68,"y":-135},{"x":-69,"y":-16},{"x":27,"y":-141},{"x":-72,"y":-78},{"x":-77,"y":-30},{"x":-19,"y":-58}],"type":"admin"},{"arc":[{"x":136018,"y":99301},{"x":113,"y":-189},{"x":-32,"y":-88},{"x":-68,"y":-58},{"x":68,"y":-110},{"x":-54,"y":-115},{"x":65,"y":-128},{"x":3,"y":-143},{"x":-23,"y":-35},{"x":26,"y":-11},{"x":20,"y":36},{"x":38,"y":0},{"x":62,"y":-108},{"x":37,"y":-2},{"x":73,"y":-97},{"x":-85,"y":-70},{"x":-22,"y":-46},{"x":16,"y":-47},{"x":-87,"y":36},{"x":-98,"y":4},{"x":-17,"y":-105},{"x":-177,"y":-163},{"x":-48,"y":-6},{"x":47,"y":-56},{"x":-15,"y":-48},{"x":42,"y":-70},{"x":113,"y":17}],"type":"admin"},{"arc":[{"x":132004,"y":93399},{"x":-85,"y":-186},{"x":-105,"y":-110},{"x":54,"y":-59},{"x":21,"y":-79},{"x":99,"y":-81},{"x":-47,"y":-78},{"x":-50,"y":-28},{"x":26,"y":-50},{"x":-14,"y":-47},{"x":112,"y":-72},{"x":-40,"y":-75},{"x":38,"y":-32},{"x":16,"y":-115},{"x":52,"y":-67},{"x":1,"y":-138},{"x":-74,"y":9},{"x":-43,"y":-24},{"x":11,"y":-84},{"x":-129,"y":-30},{"x":-42,"y":-50},{"x":-77,"y":-23},{"x":-2,"y":-112},{"x":-45,"y":-27},{"x":-54,"y":-171},{"x":-149,"y":-64}],"type":"area"},{"arc":[{"x":131478,"y":91606},{"x":-18,"y":-179},{"x":29,"y":-59},{"x":-44,"y":-97},{"x":32,"y":-46},{"x":41,"y":4},{"x":12,"y":-20},{"x":-65,"y":-105},{"x":-76,"y":-38},{"x":-8,"y":-38},{"x":52,"y":-87},{"x":-48,"y":-69},{"x":-5,"y":-102},{"x":94,"y":-110},{"x":-8,"y":-50},{"x":108,"y":-37},{"x":30,"y":34},{"x":77,"y":20},{"x":30,"y":-37},{"x":138,"y":-17},{"x":58,"y":52},{"x":87,"y":2},{"x":58,"y":-59},{"x":-33,"y":-114},{"x":79,"y":-18},{"x":101,"y":15},{"x":1,"y":-23},{"x":99,"y":-47},{"x":38,"y":-76}],"type":"admin"},{"arc":[{"x":132337,"y":90305},{"x":82,"y":14},{"x":4,"y":40},{"x":96,"y":85},{"x":-19,"y":46},{"x":54,"y":19},{"x":32,"y":79},{"x":86,"y":63},{"x":29,"y":55},{"x":61,"y":-61},{"x":91,"y":49},{"x":77,"y":-48},{"x":109,"y":46},{"x":69,"y":-26},{"x":-29,"y":107},{"x":97,"y":38},{"x":20,"y":78}],"type":"admin"},{"arc":[{"x":131877,"y":94309},{"x":-20,"y":-48},{"x":40,"y":-33},{"x":-6,"y":-87},{"x":-69,"y":-43},{"x":-29,"y":-119},{"x":-114,"y":-81},{"x":-186,"y":8},{"x":-77,"y":-67},{"x":12,"y":-40},{"x":-56,"y":-86},{"x":-183,"y":-80},{"x":-80,"y":80},{"x":-124,"y":28},{"x":-87,"y":73},{"x":-52,"y":-3},{"x":-53,"y":67},{"x":-89,"y":-18},{"x":-47,"y":18},{"x":-50,"y":-15},{"x":-33,"y":-47},{"x":1,"y":-100},{"x":-158,"y":-85},{"x":-35,"y":-79},{"x":-79,"y":-14},{"x":-26,"y":-67},{"x":-157,"y":0},{"x":-69,"y":-41},{"x":-4,"y":-78},{"x":-30,"y":-20},{"x":-91,"y":29},{"x":-70,"y":-26},{"x":-22,"y":-21},{"x":21,"y":-34},{"x":161,"y":-113},{"x":38,"y":7},{"x":53,"y":-128},{"x":68,"y":-32},{"x":28,"y":-87},{"x":34,"y":-24},{"x":-34,"y":-43},{"x":-99,"y":-37},{"x":-120,"y":-123},{"x":115,"y":-124},{"x":-75,"y":-37},{"x":-131,"y":18},{"x":-30,"y":-46}],"type":"admin"},{"arc":[{"x":129863,"y":92511},{"x":1,"y":-82},{"x":-47,"y":-39},{"x":-4,"y":-99},{"x":25,"y":-96},{"x":55,"y":-57},{"x":-33,"y":-43},{"x":37,"y":-71},{"x":-110,"y":-29},{"x":34,"y":-82},{"x":-36,"y":-32},{"x":101,"y":-42},{"x":25,"y":-103},{"x":58,"y":-40},{"x":10,"y":-51},{"x":116,"y":-17},{"x":82,"y":-196},{"x":52,"y":-24},{"x":80,"y":48},{"x":80,"y":-3},{"x":49,"y":-14},{"x":27,"y":-69}],"type":"admin"},{"arc":[{"x":130465,"y":91370},{"x":100,"y":-59},{"x":39,"y":23},{"x":91,"y":-1},{"x":35,"y":-39},{"x":48,"y":-2},{"x":82,"y":98},{"x":78,"y":10},{"x":62,"y":49},{"x":18,"y":64},{"x":106,"y":33},{"x":62,"y":-9},{"x":154,"y":73},{"x":99,"y":14},{"x":39,"y":-18}],"type":"admin"},{"arc":[{"x":152155,"y":105487},{"x":-18,"y":19},{"x":-21,"y":-18},{"x":39,"y":-1}],"type":"coastline"},{"arc":[{"x":152708,"y":105776},{"x":-21,"y":32},{"x":-78,"y":-24},{"x":-7,"y":38},{"x":-41,"y":-18},{"x":-19,"y":16},{"x":-17,"y":-29},{"x":67,"y":-96},{"x":116,"y":81}],"type":"coastline"},{"arc":[{"x":152785,"y":105241},{"x":-19,"y":19},{"x":-19,"y":-43},{"x":8,"y":52},{"x":-38,"y":-6},{"x":8,"y":72},{"x":-55,"y":50},{"x":2,"y":63},{"x":-33,"y":16},{"x":19,"y":-18},{"x":-57,"y":-63},{"x":4,"y":42},{"x":-49,"y":58},{"x":-50,"y":-97},{"x":-53,"y":-11},{"x":-16,"y":28},{"x":-27,"y":-5},{"x":-13,"y":-41},{"x":-21,"y":18},{"x":-35,"y":-29},{"x":-4,"y":-53},{"x":-41,"y":14},{"x":18,"y":139},{"x":34,"y":-14},{"x":10,"y":45},{"x":-50,"y":106},{"x":-37,"y":3},{"x":-63,"y":70},{"x":2,"y":-81},{"x":93,"y":-47},{"x":4,"y":-24},{"x":-70,"y":-38},{"x":-1,"y":-24},{"x":-42,"y":-3},{"x":6,"y":-33},{"x":40,"y":-3},{"x":-34,"y":-50},{"x":61,"y":-57},{"x":-7,"y":-50},{"x":-59,"y":46},{"x":-14,"y":-25},{"x":-28,"y":33},{"x":-21,"y":-22},{"x":-61,"y":10},{"x":72,"y":-161},{"x":31,"y":1},{"x":-1,"y":-48},{"x":-102,"y":118},{"x":-42,"y":-7},{"x":2,"y":-80},{"x":-40,"y":45},{"x":-10,"y":-85},{"x":-57,"y":39},{"x":10,"y":53},{"x":-41,"y":-11},{"x":-11,"y":-68},{"x":45,"y":-102},{"x":-36,"y":-19},{"x":19,"y":30},{"x":-75,"y":-10},{"x":17,"y":-70},{"x":-45,"y":-15},{"x":28,"y":-4},{"x":-8,"y":-31},{"x":-30,"y":5},{"x":-15,"y":58},{"x":-42,"y":-16},{"x":-41,"y":-122},{"x":25,"y":-7},{"x":19,"y":27},{"x":47,"y":-25},{"x":48,"y":31},{"x":48,"y":-11},{"x":8,"y":25},{"x":101,"y":-27},{"x":18,"y":10},{"x":-25,"y":30},{"x":35,"y":-3},{"x":21,"y":49},{"x":18,"y":-35},{"x":47,"y":-4},{"x":19,"y":55},{"x":81,"y":-32},{"x":-30,"y":-57},{"x":39,"y":-39},{"x":18,"y":68},{"x":32,"y":-20},{"x":6,"y":30},{"x":37,"y":-54},{"x":26,"y":31},{"x":53,"y":-49},{"x":32,"y":12},{"x":23,"y":-39},{"x":90,"y":-13},{"x":-5,"y":50},{"x":63,"y":21},{"x":13,"y":39},{"x":-19,"y":31},{"x":-30,"y":-10},{"x":-1,"y":46},{"x":57,"y":-4},{"x":21,"y":-39},{"x":16,"y":41},{"x":32,"y":-13},{"x":23,"y":33},{"x":-74,"y":58},{"x":-69,"y":-34},{"x":-36,"y":29},{"x":-36,"y":-18},{"x":-12,"y":48},{"x":71,"y":13},{"x":13,"y":-18},{"x":39,"y":53},{"x":37,"y":-39},{"x":-16,"y":51},{"x":28,"y":7},{"x":14,"y":-74},{"x":84,"y":33},{"x":-11,"y":114},{"x":42,"y":82}],"type":"coastline"},{"arc":[{"x":153144,"y":105346},{"x":-20,"y":23},{"x":-1,"y":-28},{"x":21,"y":5}],"type":"coastline"},{"arc":[{"x":151884,"y":104127},{"x":-19,"y":4},{"x":10,"y":-19},{"x":9,"y":15}],"type":"coastline"},{"arc":[{"x":153071,"y":104793},{"x":-34,"y":7},{"x":27,"y":121},{"x":-55,"y":-15},{"x":13,"y":46},{"x":-24,"y":33},{"x":27,"y":54},{"x":-21,"y":-28},{"x":-61,"y":-3},{"x":-4,"y":-26},{"x":-29,"y":10},{"x":-5,"y":-25},{"x":-53,"y":14},{"x":-1,"y":-38},{"x":-72,"y":-40},{"x":0,"y":-36},{"x":-76,"y":-63},{"x":14,"y":-49},{"x":-41,"y":-109},{"x":21,"y":-74},{"x":-44,"y":-70},{"x":-39,"y":26},{"x":10,"y":-33},{"x":-30,"y":-4},{"x":-74,"y":65},{"x":-46,"y":-19},{"x":6,"y":59},{"x":-99,"y":61},{"x":-66,"y":11},{"x":-52,"y":-70},{"x":-109,"y":5},{"x":-16,"y":20},{"x":-43,"y":-25},{"x":9,"y":-33},{"x":-68,"y":-10},{"x":18,"y":-87},{"x":38,"y":-13},{"x":-26,"y":-29},{"x":22,"y":-35},{"x":-22,"y":-80},{"x":134,"y":-77},{"x":4,"y":-79},{"x":48,"y":33},{"x":58,"y":-52},{"x":35,"y":27},{"x":64,"y":-29},{"x":52,"y":75},{"x":42,"y":3},{"x":99,"y":-69},{"x":-88,"y":18},{"x":-73,"y":-31},{"x":-15,"y":-43},{"x":19,"y":-2},{"x":-8,"y":-17},{"x":-19,"y":18},{"x":-8,"y":-29},{"x":26,"y":-82},{"x":-51,"y":27},{"x":-61,"y":-9},{"x":40,"y":-71},{"x":42,"y":-3},{"x":33,"y":28},{"x":7,"y":-17},{"x":-121,"y":-96},{"x":10,"y":21},{"x":-68,"y":2},{"x":-9,"y":45},{"x":-26,"y":-24},{"x":-85,"y":48},{"x":-15,"y":-24},{"x":-28,"y":41},{"x":-15,"y":-10},{"x":13,"y":21},{"x":-132,"y":61},{"x":-51,"y":-9},{"x":-100,"y":81},{"x":-73,"y":-26},{"x":67,"y":-91},{"x":53,"y":-45},{"x":6,"y":21},{"x":14,"y":-13},{"x":44,"y":-117},{"x":61,"y":-16},{"x":37,"y":-113},{"x":-21,"y":-81},{"x":48,"y":-49},{"x":32,"y":58},{"x":-1,"y":-95},{"x":148,"y":80},{"x":-4,"y":-59},{"x":44,"y":-24},{"x":4,"y":50},{"x":34,"y":17},{"x":33,"y":-16},{"x":9,"y":42},{"x":55,"y":11},{"x":27,"y":130},{"x":35,"y":11},{"x":21,"y":-80},{"x":171,"y":154},{"x":53,"y":11},{"x":-17,"y":24},{"x":21,"y":27},{"x":29,"y":-6},{"x":-12,"y":41},{"x":-65,"y":13},{"x":-4,"y":-21},{"x":-38,"y":-2},{"x":17,"y":51},{"x":54,"y":14},{"x":12,"y":33},{"x":-4,"y":55},{"x":-55,"y":54},{"x":-14,"y":-21},{"x":-11,"y":34},{"x":62,"y":3},{"x":47,"y":68},{"x":243,"y":-8},{"x":25,"y":21},{"x":-44,"y":91},{"x":21,"y":43},{"x":18,"y":-15},{"x":17,"y":18},{"x":-45,"y":88},{"x":2,"y":78},{"x":-29,"y":21},{"x":-27,"y":-16},{"x":0,"y":22},{"x":-39,"y":-22},{"x":58,"y":108},{"x":-70,"y":7},{"x":75,"y":43},{"x":36,"y":62},{"x":92,"y":38}],"type":"coastline"},{"arc":[{"x":151199,"y":104384},{"x":-30,"y":-27},{"x":27,"y":1},{"x":3,"y":26}],"type":"coastline"},{"arc":[{"x":151236,"y":104472},{"x":-33,"y":39},{"x":-6,"y":-25},{"x":39,"y":-14}],"type":"coastline"},{"arc":[{"x":151265,"y":104876},{"x":-40,"y":28},{"x":-48,"y":-23},{"x":68,"y":-21},{"x":20,"y":16}],"type":"coastline"},{"arc":[{"x":151293,"y":104639},{"x":-101,"y":-19},{"x":-16,"y":-24},{"x":43,"y":5},{"x":2,"y":-20},{"x":25,"y":24},{"x":1,"y":-26},{"x":35,"y":-6},{"x":11,"y":66}],"type":"coastline"},{"arc":[{"x":151682,"y":104117},{"x":-41,"y":198},{"x":1,"y":30},{"x":35,"y":12},{"x":-45,"y":34},{"x":-20,"y":75},{"x":-56,"y":36},{"x":51,"y":-4},{"x":-58,"y":36},{"x":-24,"y":-17},{"x":-97,"y":129},{"x":-32,"y":74},{"x":22,"y":70},{"x":-23,"y":44},{"x":-25,"y":-38},{"x":-30,"y":2},{"x":5,"y":-43},{"x":-132,"y":2},{"x":-25,"y":-49},{"x":40,"y":-61},{"x":102,"y":28},{"x":-25,"y":-41},{"x":18,"y":-71},{"x":26,"y":-14},{"x":28,"y":29},{"x":15,"y":-52},{"x":11,"y":13},{"x":28,"y":-30},{"x":-63,"y":3},{"x":-93,"y":-37},{"x":73,"y":-56},{"x":-9,"y":-23},{"x":-19,"y":20},{"x":-56,"y":-28},{"x":21,"y":-29},{"x":40,"y":7},{"x":24,"y":-47},{"x":-61,"y":-143},{"x":30,"y":-40},{"x":74,"y":40},{"x":78,"y":-65},{"x":32,"y":47},{"x":22,"y":-56},{"x":34,"y":37},{"x":44,"y":-49},{"x":58,"y":-15},{"x":22,"y":42}],"type":"coastline"},{"arc":[{"x":153038,"y":105887},{"x":-39,"y":48},{"x":-48,"y":-117},{"x":28,"y":46},{"x":59,"y":23}],"type":"coastline"},{"arc":[{"x":153267,"y":106541},{"x":-27,"y":4},{"x":2,"y":-22},{"x":25,"y":18}],"type":"coastline"},{"arc":[{"x":153263,"y":106711},{"x":-25,"y":-25},{"x":53,"y":10},{"x":-28,"y":15}],"type":"coastline"},{"arc":[{"x":155680,"y":106962},{"x":-26,"y":53},{"x":-33,"y":-11},{"x":-24,"y":42},{"x":-24,"y":-16},{"x":-54,"y":27},{"x":-47,"y":57},{"x":16,"y":20},{"x":-77,"y":19},{"x":-26,"y":58},{"x":50,"y":35},{"x":-13,"y":35},{"x":-40,"y":-19},{"x":-33,"y":20},{"x":14,"y":-44},{"x":-21,"y":34},{"x":-16,"y":-22},{"x":-22,"y":22},{"x":108,"y":124},{"x":-97,"y":-30},{"x":-56,"y":37},{"x":3,"y":42},{"x":-89,"y":-12},{"x":2,"y":47},{"x":50,"y":61},{"x":-35,"y":43},{"x":9,"y":48},{"x":-54,"y":-72},{"x":-3,"y":41},{"x":-40,"y":-12},{"x":-26,"y":53},{"x":-49,"y":-1},{"x":26,"y":125},{"x":-24,"y":8},{"x":19,"y":20},{"x":-21,"y":46},{"x":-55,"y":-17},{"x":29,"y":1},{"x":1,"y":-31},{"x":-49,"y":-35},{"x":-34,"y":24},{"x":18,"y":56},{"x":-80,"y":-41},{"x":-2,"y":23},{"x":-58,"y":7},{"x":19,"y":39},{"x":-28,"y":23},{"x":44,"y":28},{"x":-57,"y":24},{"x":-15,"y":58},{"x":-75,"y":-36},{"x":16,"y":49},{"x":-32,"y":12},{"x":14,"y":42},{"x":-23,"y":2},{"x":-28,"y":-45},{"x":-26,"y":8},{"x":-28,"y":-65},{"x":-41,"y":18},{"x":-90,"y":-25},{"x":-9,"y":-30},{"x":-31,"y":35},{"x":-68,"y":-29},{"x":-15,"y":36},{"x":-23,"y":-15},{"x":-100,"y":28},{"x":-79,"y":-39},{"x":-23,"y":14},{"x":-28,"y":-40},{"x":-204,"y":-15},{"x":-39,"y":-109},{"x":14,"y":-51},{"x":-52,"y":12},{"x":2,"y":-30},{"x":-32,"y":-4},{"x":-15,"y":-135},{"x":28,"y":-7},{"x":106,"y":110},{"x":27,"y":-44},{"x":45,"y":71},{"x":26,"y":-70},{"x":34,"y":-5},{"x":11,"y":50},{"x":32,"y":-62},{"x":54,"y":16},{"x":-52,"y":-80},{"x":-56,"y":30},{"x":-64,"y":-27},{"x":25,"y":-10},{"x":-15,"y":-13},{"x":-57,"y":34},{"x":-58,"y":-40},{"x":-22,"y":14},{"x":18,"y":-17},{"x":-22,"y":-51},{"x":41,"y":-33},{"x":-22,"y":-39},{"x":38,"y":-67},{"x":-78,"y":-102},{"x":-72,"y":39},{"x":78,"y":-8},{"x":-11,"y":87},{"x":-39,"y":40},{"x":52,"y":10},{"x":13,"y":25},{"x":-45,"y":111},{"x":-60,"y":-12},{"x":-60,"y":45},{"x":-75,"y":-23},{"x":-116,"y":26},{"x":-24,"y":29},{"x":-45,"y":-171},{"x":63,"y":-148},{"x":87,"y":-29},{"x":-76,"y":5},{"x":15,"y":-19},{"x":-35,"y":-42},{"x":55,"y":-36},{"x":8,"y":17},{"x":30,"y":-54},{"x":-39,"y":-13},{"x":52,"y":-40},{"x":-67,"y":-23},{"x":-38,"y":29},{"x":-9,"y":-40},{"x":98,"y":-25},{"x":1,"y":-27},{"x":-47,"y":5},{"x":2,"y":-19},{"x":92,"y":-15},{"x":51,"y":29},{"x":23,"y":-27},{"x":-100,"y":-39},{"x":-16,"y":23},{"x":-119,"y":-3},{"x":-4,"y":-102},{"x":-75,"y":-83},{"x":14,"y":-19},{"x":94,"y":58},{"x":-30,"y":-46},{"x":43,"y":-13},{"x":-97,"y":-22},{"x":-50,"y":-41},{"x":-1,"y":-36},{"x":-26,"y":10},{"x":28,"y":-24},{"x":59,"y":10},{"x":67,"y":53},{"x":53,"y":-40},{"x":20,"y":-37},{"x":-19,"y":-29},{"x":-40,"y":52},{"x":-61,"y":-34},{"x":-10,"y":-42},{"x":-11,"y":24},{"x":19,"y":-50},{"x":-24,"y":-12},{"x":51,"y":-29},{"x":-2,"y":-41},{"x":13,"y":62},{"x":62,"y":49},{"x":22,"y":5},{"x":2,"y":-38},{"x":33,"y":-10},{"x":44,"y":19},{"x":-17,"y":40},{"x":20,"y":33},{"x":83,"y":-10},{"x":19,"y":-67},{"x":-26,"y":-37},{"x":-22,"y":20},{"x":22,"y":-21},{"x":-15,"y":-109},{"x":120,"y":-160},{"x":148,"y":-4},{"x":-16,"y":-40},{"x":30,"y":-8},{"x":6,"y":-89},{"x":43,"y":-18},{"x":-48,"y":-90},{"x":18,"y":-24},{"x":32,"y":32},{"x":118,"y":-17},{"x":86,"y":73},{"x":58,"y":-16},{"x":74,"y":27},{"x":32,"y":-22},{"x":-18,"y":27},{"x":34,"y":4},{"x":55,"y":-46},{"x":15,"y":-114},{"x":87,"y":-2},{"x":89,"y":80},{"x":126,"y":32},{"x":109,"y":2},{"x":63,"y":-91},{"x":19,"y":67},{"x":-40,"y":61},{"x":-55,"y":29},{"x":-9,"y":43},{"x":-1,"y":-23},{"x":-23,"y":18},{"x":2,"y":65},{"x":47,"y":-50},{"x":53,"y":-1},{"x":19,"y":30},{"x":-23,"y":117},{"x":32,"y":23},{"x":-20,"y":-65},{"x":42,"y":-50},{"x":-34,"y":-113},{"x":21,"y":-28},{"x":14,"y":32},{"x":130,"y":18},{"x":-8,"y":41},{"x":-31,"y":11},{"x":23,"y":95},{"x":38,"y":6},{"x":65,"y":-38},{"x":28,"y":72},{"x":48,"y":23},{"x":-15,"y":93},{"x":58,"y":70},{"x":57,"y":-67},{"x":77,"y":-10},{"x":-4,"y":79},{"x":45,"y":50},{"x":31,"y":107},{"x":-23,"y":55},{"x":-40,"y":-7},{"x":-25,"y":45},{"x":33,"y":26},{"x":-27,"y":46},{"x":43,"y":7},{"x":11,"y":69},{"x":106,"y":96},{"x":64,"y":9},{"x":37,"y":-52},{"x":5,"y":32}],"type":"coastline"},{"arc":[{"x":155707,"y":106934},{"x":-26,"y":0},{"x":19,"y":-18},{"x":7,"y":18}],"type":"coastline"},{"arc":[{"x":155743,"y":106987},{"x":-46,"y":-15},{"x":19,"y":-13},{"x":51,"y":27},{"x":-24,"y":1}],"type":"coastline"},{"arc":[{"x":155772,"y":106947},{"x":-45,"y":2},{"x":24,"y":-18},{"x":21,"y":16}],"type":"coastline"},{"arc":[{"x":166975,"y":92398},{"x":-21,"y":19},{"x":-23,"y":-23},{"x":15,"y":-22},{"x":29,"y":26}],"type":"coastline"},{"arc":[{"x":166990,"y":92355},{"x":-21,"y":9},{"x":-4,"y":-42},{"x":27,"y":-5},{"x":17,"y":27},{"x":-19,"y":11}],"type":"coastline"},{"arc":[{"x":131342,"y":112729},{"x":-100,"y":-61},{"x":78,"y":-31},{"x":22,"y":92}],"type":"coastline"},{"arc":[{"x":131348,"y":112527},{"x":-23,"y":8},{"x":19,"y":-42},{"x":4,"y":34}],"type":"coastline"},{"arc":[{"x":131415,"y":111947},{"x":-70,"y":80},{"x":12,"y":61},{"x":-64,"y":22},{"x":-37,"y":-72},{"x":14,"y":-62},{"x":90,"y":-40},{"x":55,"y":11}],"type":"coastline"},{"arc":[{"x":131634,"y":111866},{"x":-20,"y":7},{"x":27,"y":-28},{"x":-7,"y":21}],"type":"coastline"},{"arc":[{"x":131655,"y":112900},{"x":-28,"y":20},{"x":-39,"y":-18},{"x":54,"y":-29},{"x":13,"y":27}],"type":"coastline"},{"arc":[{"x":131835,"y":111224},{"x":-27,"y":18},{"x":-24,"y":-29},{"x":15,"y":-19},{"x":36,"y":30}],"type":"coastline"},{"arc":[{"x":131834,"y":111473},{"x":-41,"y":15},{"x":-7,"y":-64},{"x":41,"y":-33},{"x":30,"y":43},{"x":-23,"y":39}],"type":"coastline"},{"arc":[{"x":132339,"y":111154},{"x":-174,"y":-9},{"x":2,"y":-150},{"x":-39,"y":0},{"x":-3,"y":126},{"x":2,"y":-128},{"x":183,"y":4},{"x":29,"y":157}],"type":"coastline"},{"arc":[{"x":133903,"y":112662},{"x":-116,"y":-167},{"x":-75,"y":-2},{"x":-17,"y":-101},{"x":-34,"y":-25},{"x":-153,"y":56},{"x":28,"y":81},{"x":-33,"y":97},{"x":-72,"y":2},{"x":109,"y":142}],"type":"admin"},{"arc":[{"x":132519,"y":113036},{"x":-97,"y":-1},{"x":-22,"y":27},{"x":-115,"y":13},{"x":-51,"y":-32},{"x":-1,"y":24},{"x":-36,"y":10},{"x":-33,"y":-36},{"x":26,"y":1},{"x":19,"y":-38},{"x":-13,"y":-28},{"x":-8,"y":30},{"x":-71,"y":-5},{"x":-61,"y":-48},{"x":12,"y":35},{"x":-27,"y":-12},{"x":-55,"y":30},{"x":1,"y":76},{"x":-43,"y":71},{"x":-65,"y":-16},{"x":-75,"y":61},{"x":-65,"y":-20}],"type":"area"},{"arc":[{"x":131739,"y":113178},{"x":132,"y":-135},{"x":9,"y":-76},{"x":-37,"y":6},{"x":55,"y":-45},{"x":18,"y":-90},{"x":-24,"y":-71},{"x":16,"y":-48},{"x":26,"y":20},{"x":29,"y":-13},{"x":-4,"y":-27},{"x":-41,"y":9},{"x":-11,"y":-33},{"x":71,"y":-20},{"x":-67,"y":-19},{"x":-35,"y":-77},{"x":20,"y":-14},{"x":-42,"y":-16},{"x":24,"y":-25},{"x":-44,"y":29},{"x":-47,"y":-27},{"x":13,"y":-61},{"x":-51,"y":-18},{"x":11,"y":36},{"x":-108,"y":-17},{"x":-59,"y":14},{"x":-2,"y":22},{"x":3,"y":-17},{"x":-44,"y":13},{"x":5,"y":-12},{"x":-20,"y":4},{"x":-2,"y":27},{"x":37,"y":-8},{"x":-54,"y":28},{"x":16,"y":-20},{"x":-24,"y":-4},{"x":0,"y":22},{"x":-112,"y":66},{"x":28,"y":-102},{"x":58,"y":-67},{"x":-3,"y":-117},{"x":41,"y":-39},{"x":-43,"y":-17},{"x":-1,"y":-44},{"x":43,"y":-40},{"x":47,"y":-3},{"x":-28,"y":-5},{"x":55,"y":1},{"x":-22,"y":-9},{"x":43,"y":-4},{"x":105,"y":-83},{"x":23,"y":-5},{"x":15,"y":45},{"x":51,"y":-10},{"x":3,"y":-74},{"x":123,"y":-4},{"x":5,"y":-33},{"x":-33,"y":-5},{"x":-20,"y":-50},{"x":53,"y":5},{"x":8,"y":-24},{"x":-6,"y":20},{"x":31,"y":8},{"x":9,"y":-30},{"x":125,"y":36},{"x":45,"y":-116},{"x":151,"y":-60},{"x":134,"y":29},{"x":72,"y":-65},{"x":95,"y":5},{"x":-25,"y":-23},{"x":-311,"y":-24},{"x":29,"y":-138},{"x":38,"y":0},{"x":0,"y":-28},{"x":-95,"y":0},{"x":-73,"y":188},{"x":-253,"y":65},{"x":-7,"y":-24},{"x":57,"y":-86},{"x":-45,"y":-16},{"x":24,"y":-63},{"x":-17,"y":-7},{"x":-37,"y":94},{"x":36,"y":-95},{"x":18,"y":7},{"x":20,"y":-52},{"x":-24,"y":9},{"x":66,"y":-174},{"x":573,"y":13},{"x":-5,"y":-150},{"x":37,"y":-33},{"x":-17,"y":-90},{"x":-59,"y":122},{"x":-187,"y":-5},{"x":96,"y":2},{"x":1,"y":-67},{"x":-69,"y":1},{"x":4,"y":-143},{"x":68,"y":1},{"x":12,"y":70},{"x":59,"y":-1},{"x":-7,"y":-74},{"x":38,"y":-107},{"x":-65,"y":-26},{"x":-45,"y":-92},{"x":-26,"y":33},{"x":-76,"y":-27},{"x":14,"y":-73},{"x":-25,"y":4},{"x":-13,"y":-20},{"x":13,"y":18},{"x":-3,"y":-17},{"x":26,"y":4},{"x":-58,"y":-35},{"x":13,"y":-111},{"x":-94,"y":-44},{"x":-35,"y":-49},{"x":48,"y":-28},{"x":1,"y":-113}],"type":"coastline"},{"arc":[{"x":132223,"y":110320},{"x":98,"y":-13},{"x":50,"y":71},{"x":6,"y":84},{"x":72,"y":57},{"x":79,"y":-15},{"x":37,"y":57},{"x":-18,"y":41},{"x":179,"y":59},{"x":131,"y":139},{"x":37,"y":-77},{"x":115,"y":53},{"x":40,"y":-96},{"x":50,"y":12},{"x":19,"y":-28},{"x":45,"y":-3},{"x":78,"y":-110},{"x":62,"y":-29}],"type":"area"},{"arc":[{"x":133303,"y":110522},{"x":36,"y":132},{"x":70,"y":26},{"x":94,"y":112},{"x":150,"y":-121},{"x":252,"y":-60},{"x":146,"y":21},{"x":28,"y":-19}],"type":"admin"},{"arc":[{"x":134079,"y":110613},{"x":61,"y":134},{"x":-18,"y":47},{"x":72,"y":127},{"x":-33,"y":23},{"x":151,"y":116},{"x":5,"y":34},{"x":-38,"y":34},{"x":86,"y":117},{"x":-64,"y":36},{"x":-30,"y":53},{"x":17,"y":35},{"x":-33,"y":59},{"x":43,"y":60},{"x":-165,"y":70},{"x":10,"y":38},{"x":-203,"y":-9},{"x":-109,"y":50},{"x":28,"y":82},{"x":-27,"y":70},{"x":116,"y":117},{"x":37,"y":-61},{"x":131,"y":117},{"x":-57,"y":70},{"x":55,"y":70},{"x":-24,"y":149},{"x":-53,"y":31},{"x":25,"y":54},{"x":32,"y":22},{"x":62,"y":-28},{"x":14,"y":23},{"x":60,"y":-17},{"x":112,"y":26}],"type":"area"},{"arc":[{"x":140786,"y":116149},{"x":-117,"y":-274},{"x":-117,"y":26},{"x":-153,"y":-2},{"x":-303,"y":-99},{"x":-180,"y":-25}],"type":"admin"},{"arc":[{"x":139916,"y":115775},{"x":-44,"y":-62},{"x":-35,"y":-4},{"x":-135,"y":-121},{"x":-32,"y":-94},{"x":-162,"y":-38},{"x":-46,"y":49},{"x":-210,"y":-31},{"x":-2,"y":-41},{"x":49,"y":-67},{"x":-50,"y":-134},{"x":-39,"y":17},{"x":-6,"y":46},{"x":-174,"y":-36},{"x":-11,"y":24},{"x":-78,"y":-16},{"x":-85,"y":22}],"type":"admin"},{"arc":[{"x":138856,"y":115289},{"x":75,"y":-80},{"x":-60,"y":-139},{"x":64,"y":-80},{"x":3,"y":-117},{"x":-85,"y":-50},{"x":-41,"y":-53},{"x":10,"y":-44},{"x":-181,"y":108},{"x":-3,"y":-89},{"x":47,"y":-71},{"x":5,"y":-81},{"x":111,"y":-70},{"x":40,"y":7},{"x":-32,"y":-65},{"x":97,"y":-74},{"x":42,"y":-91},{"x":-82,"y":-121},{"x":-64,"y":-50},{"x":-41,"y":8},{"x":-1,"y":-107},{"x":-53,"y":-21},{"x":19,"y":-94},{"x":115,"y":-38},{"x":139,"y":23},{"x":68,"y":44},{"x":130,"y":27},{"x":82,"y":-43},{"x":4,"y":-45},{"x":-101,"y":11},{"x":-45,"y":-209},{"x":-45,"y":82},{"x":-43,"y":8},{"x":-129,"y":-33},{"x":-49,"y":-54},{"x":-59,"y":9},{"x":-49,"y":-57},{"x":8,"y":-62},{"x":-88,"y":4},{"x":-65,"y":-91},{"x":-65,"y":-14},{"x":-57,"y":-83},{"x":-42,"y":-16},{"x":-25,"y":-55},{"x":120,"y":-84},{"x":-42,"y":-73},{"x":210,"y":-71},{"x":59,"y":21},{"x":27,"y":62},{"x":165,"y":-33},{"x":121,"y":5},{"x":17,"y":-44},{"x":56,"y":15},{"x":7,"y":-70},{"x":-43,"y":-110},{"x":12,"y":-103},{"x":-28,"y":-45},{"x":121,"y":-80},{"x":-39,"y":-37},{"x":3,"y":-57}],"type":"admin"},{"arc":[{"x":139176,"y":112619},{"x":41,"y":-42},{"x":142,"y":24},{"x":109,"y":-34},{"x":185,"y":148},{"x":59,"y":4},{"x":28,"y":-39},{"x":120,"y":47},{"x":36,"y":93}],"type":"area"},{"arc":[{"x":139896,"y":112820},{"x":49,"y":110},{"x":-42,"y":115},{"x":-146,"y":75},{"x":-62,"y":-13},{"x":-21,"y":55},{"x":-41,"y":17},{"x":-11,"y":162},{"x":-174,"y":220},{"x":-33,"y":8},{"x":-7,"y":201},{"x":74,"y":25},{"x":27,"y":42},{"x":80,"y":-14},{"x":12,"y":24},{"x":45,"y":0},{"x":28,"y":-25},{"x":49,"y":65},{"x":89,"y":17},{"x":4,"y":39},{"x":98,"y":17},{"x":80,"y":96},{"x":81,"y":-24},{"x":129,"y":65},{"x":143,"y":-3},{"x":74,"y":66},{"x":97,"y":-10},{"x":105,"y":38},{"x":50,"y":87},{"x":113,"y":21},{"x":79,"y":80},{"x":257,"y":43},{"x":146,"y":-35},{"x":59,"y":18},{"x":48,"y":-17},{"x":84,"y":46},{"x":77,"y":114},{"x":111,"y":-82},{"x":60,"y":15},{"x":53,"y":-47},{"x":90,"y":-13},{"x":10,"y":48},{"x":86,"y":39},{"x":73,"y":112},{"x":94,"y":28},{"x":66,"y":-14},{"x":29,"y":-35},{"x":89,"y":15},{"x":64,"y":69},{"x":115,"y":48}],"type":"admin"},{"arc":[{"x":131257,"y":113644},{"x":-4,"y":-53}],"type":"admin"},{"arc":[{"x":131253,"y":113591},{"x":42,"y":33},{"x":-38,"y":20}],"type":"coastline"},{"arc":[{"x":132371,"y":114664},{"x":-45,"y":-47},{"x":-62,"y":-2},{"x":-31,"y":-27},{"x":27,"y":-93}],"type":"admin"},{"arc":[{"x":132260,"y":114495},{"x":112,"y":105},{"x":-1,"y":64}],"type":"coastline"},{"arc":[{"x":133218,"y":114770},{"x":-117,"y":-49},{"x":-46,"y":31},{"x":12,"y":-21},{"x":-41,"y":-3},{"x":-9,"y":41},{"x":-25,"y":-54},{"x":-36,"y":1},{"x":-2,"y":36},{"x":-27,"y":-9},{"x":26,"y":-71},{"x":-53,"y":-37},{"x":-41,"y":11},{"x":-20,"y":-49},{"x":26,"y":-23},{"x":55,"y":0},{"x":-18,"y":-44},{"x":16,"y":17},{"x":10,"y":-24},{"x":-15,"y":-4},{"x":12,"y":-3},{"x":-15,"y":-12},{"x":-12,"y":20},{"x":15,"y":-24},{"x":-86,"y":-86},{"x":-120,"y":-45},{"x":-49,"y":62},{"x":-10,"y":-54},{"x":-34,"y":-6},{"x":-87,"y":43},{"x":9,"y":30},{"x":-33,"y":-10},{"x":-10,"y":58},{"x":-63,"y":-40},{"x":60,"y":-41},{"x":29,"y":-66},{"x":148,"y":-52},{"x":34,"y":-89},{"x":-31,"y":-103},{"x":-98,"y":-103},{"x":-1,"y":20},{"x":-50,"y":9},{"x":-12,"y":-41},{"x":-38,"y":-15},{"x":-15,"y":49},{"x":26,"y":8},{"x":-79,"y":-23},{"x":-43,"y":-38},{"x":-75,"y":67},{"x":-65,"y":19},{"x":-36,"y":-33},{"x":16,"y":-70},{"x":-38,"y":12},{"x":0,"y":-32},{"x":30,"y":0},{"x":6,"y":-57},{"x":-4,"y":29},{"x":-64,"y":0},{"x":-17,"y":-11},{"x":24,"y":-32},{"x":-44,"y":17},{"x":-46,"y":-100},{"x":-27,"y":4},{"x":-6,"y":-31},{"x":0,"y":32},{"x":-12,"y":-30},{"x":1,"y":32},{"x":-29,"y":5},{"x":-15,"y":-50},{"x":-23,"y":24},{"x":-52,"y":-5},{"x":15,"y":16},{"x":-25,"y":-12},{"x":18,"y":24},{"x":-44,"y":15},{"x":-14,"y":33},{"x":-65,"y":-20},{"x":-51,"y":16},{"x":-6,"y":-53},{"x":-48,"y":-34},{"x":27,"y":-44},{"x":28,"y":6},{"x":-18,"y":-8},{"x":30,"y":-35},{"x":-29,"y":-14},{"x":-20,"y":43},{"x":-33,"y":-108},{"x":36,"y":-56},{"x":-21,"y":-6},{"x":11,"y":-60},{"x":71,"y":-101},{"x":-16,"y":14},{"x":9,"y":-195}],"type":"coastline"},{"arc":[{"x":132495,"y":113985},{"x":-9,"y":29},{"x":-9,"y":-36},{"x":18,"y":7}],"type":"coastline"},{"arc":[{"x":129877,"y":109642},{"x":-28,"y":25},{"x":-114,"y":-68},{"x":54,"y":-82},{"x":68,"y":10},{"x":-8,"y":94},{"x":28,"y":21}],"type":"coastline"},{"arc":[{"x":130395,"y":109229},{"x":-47,"y":23},{"x":-44,"y":96},{"x":-109,"y":-16},{"x":20,"y":-54},{"x":49,"y":-22},{"x":1,"y":-38},{"x":55,"y":23},{"x":10,"y":-27},{"x":65,"y":15}],"type":"coastline"},{"arc":[{"x":130416,"y":109419},{"x":-54,"y":62},{"x":-63,"y":1},{"x":9,"y":-41},{"x":29,"y":10},{"x":27,"y":-30},{"x":52,"y":-2}],"type":"coastline"},{"arc":[{"x":130561,"y":110148},{"x":-26,"y":41},{"x":-35,"y":1},{"x":-10,"y":-70},{"x":-91,"y":-38},{"x":-41,"y":-74},{"x":42,"y":-67},{"x":28,"y":-5},{"x":80,"y":70},{"x":-43,"y":13},{"x":13,"y":50},{"x":-24,"y":-20},{"x":-1,"y":18},{"x":94,"y":27},{"x":14,"y":54}],"type":"coastline"},{"arc":[{"x":130667,"y":110140},{"x":0,"y":-27},{"x":47,"y":24},{"x":-47,"y":3}],"type":"coastline"},{"arc":[{"x":130782,"y":110166},{"x":-56,"y":-32},{"x":23,"y":-37},{"x":28,"y":8},{"x":5,"y":61}],"type":"coastline"},{"arc":[{"x":130828,"y":109200},{"x":-26,"y":57},{"x":-8,"y":-42},{"x":34,"y":-15}],"type":"coastline"},{"arc":[{"x":131045,"y":109688},{"x":-19,"y":46},{"x":-94,"y":49},{"x":28,"y":6},{"x":10,"y":55},{"x":-36,"y":4},{"x":12,"y":-22},{"x":-45,"y":-25},{"x":4,"y":-35},{"x":-48,"y":-1},{"x":-89,"y":-55},{"x":-33,"y":33},{"x":19,"y":-28},{"x":-21,"y":-3},{"x":-25,"y":36},{"x":28,"y":24},{"x":-35,"y":42},{"x":25,"y":53},{"x":-30,"y":-24},{"x":-52,"y":27},{"x":-40,"y":-14},{"x":24,"y":-113},{"x":-28,"y":-34},{"x":87,"y":-87},{"x":-10,"y":-37},{"x":71,"y":-48},{"x":50,"y":-115},{"x":46,"y":-4},{"x":61,"y":45},{"x":8,"y":29},{"x":-24,"y":23},{"x":-17,"y":-13},{"x":-4,"y":29},{"x":28,"y":34},{"x":9,"y":-39},{"x":24,"y":27},{"x":2,"y":34},{"x":41,"y":19},{"x":-26,"y":16},{"x":89,"y":14},{"x":10,"y":52}],"type":"coastline"},{"arc":[{"x":131227,"y":109503},{"x":-8,"y":25},{"x":-36,"y":-30},{"x":-79,"y":15},{"x":26,"y":-18},{"x":-25,"y":13},{"x":-9,"y":-18},{"x":-87,"y":24},{"x":-1,"y":-40},{"x":-62,"y":-31},{"x":-52,"y":-73},{"x":214,"y":-72},{"x":-5,"y":75},{"x":60,"y":46},{"x":-36,"y":21},{"x":69,"y":10},{"x":31,"y":53}],"type":"coastline"},{"arc":[{"x":131466,"y":109373},{"x":-28,"y":27},{"x":23,"y":27},{"x":-55,"y":-25},{"x":-22,"y":12},{"x":-62,"y":-169},{"x":91,"y":12},{"x":-15,"y":27},{"x":24,"y":-5},{"x":20,"y":38},{"x":-20,"y":42},{"x":44,"y":14}],"type":"coastline"},{"arc":[{"x":131474,"y":109242},{"x":-65,"y":-6},{"x":3,"y":-31},{"x":62,"y":37}],"type":"coastline"},{"arc":[{"x":133361,"y":109972},{"x":-14,"y":22},{"x":-194,"y":-112},{"x":-76,"y":11},{"x":-90,"y":-36},{"x":-70,"y":-81},{"x":9,"y":-108},{"x":-47,"y":2},{"x":-23,"y":50},{"x":-128,"y":-33},{"x":-90,"y":72}],"type":"area"},{"arc":[{"x":132638,"y":109759},{"x":-63,"y":-33},{"x":-56,"y":3},{"x":2,"y":-30},{"x":-34,"y":19},{"x":-57,"y":-16},{"x":-57,"y":-79},{"x":-128,"y":-68},{"x":-72,"y":181},{"x":30,"y":135}],"type":"admin"},{"arc":[{"x":132203,"y":109871},{"x":-51,"y":19},{"x":-19,"y":-19},{"x":-46,"y":91},{"x":-234,"y":42}],"type":"area"},{"arc":[{"x":131853,"y":110004},{"x":31,"y":-130},{"x":-14,"y":-34},{"x":-28,"y":3},{"x":-45,"y":-180},{"x":128,"y":-111},{"x":78,"y":-2},{"x":14,"y":-50},{"x":-53,"y":0},{"x":52,"y":-60},{"x":37,"y":7},{"x":92,"y":-40},{"x":18,"y":17},{"x":-5,"y":-24},{"x":91,"y":-68},{"x":34,"y":12},{"x":-10,"y":-50},{"x":73,"y":-11},{"x":-48,"y":-24},{"x":58,"y":-79},{"x":108,"y":-70},{"x":-11,"y":-17},{"x":-56,"y":54},{"x":-27,"y":-15},{"x":-88,"y":127},{"x":-277,"y":176},{"x":-60,"y":13},{"x":-24,"y":78},{"x":-38,"y":11},{"x":-124,"y":-35},{"x":-63,"y":26},{"x":-57,"y":-135},{"x":39,"y":-51},{"x":-23,"y":3},{"x":10,"y":-22},{"x":-21,"y":21},{"x":11,"y":-19},{"x":20,"y":-4},{"x":1,"y":-62},{"x":-96,"y":-63},{"x":-42,"y":-61},{"x":31,"y":-119},{"x":-25,"y":-40},{"x":117,"y":-5},{"x":80,"y":160},{"x":37,"y":16},{"x":76,"y":-62},{"x":-145,"y":-223},{"x":1,"y":-67},{"x":289,"y":-11},{"x":1,"y":-62},{"x":35,"y":-24}],"type":"coastline"},{"arc":[{"x":132035,"y":108698},{"x":44,"y":-8},{"x":141,"y":96},{"x":64,"y":11},{"x":86,"y":-32},{"x":-11,"y":-87},{"x":75,"y":16},{"x":6,"y":36},{"x":105,"y":-29},{"x":139,"y":74},{"x":103,"y":-58},{"x":39,"y":7}],"type":"admin"},{"arc":[{"x":132826,"y":108724},{"x":26,"y":54},{"x":-57,"y":61},{"x":25,"y":49},{"x":46,"y":14},{"x":13,"y":109},{"x":55,"y":49},{"x":21,"y":63},{"x":46,"y":20},{"x":79,"y":153},{"x":107,"y":-9},{"x":25,"y":29},{"x":70,"y":-19},{"x":46,"y":51},{"x":105,"y":14},{"x":17,"y":127},{"x":47,"y":4},{"x":49,"y":58}],"type":"area"},{"arc":[{"x":133546,"y":109551},{"x":-7,"y":50},{"x":53,"y":110},{"x":-44,"y":75},{"x":-81,"y":35},{"x":-15,"y":57},{"x":-68,"y":29},{"x":-23,"y":65}],"type":"admin"},{"arc":[{"x":135059,"y":110093},{"x":-10,"y":27},{"x":-48,"y":-14},{"x":-50,"y":24},{"x":24,"y":110},{"x":-82,"y":129}],"type":"area"},{"arc":[{"x":134893,"y":110369},{"x":-44,"y":-26},{"x":13,"y":-35},{"x":-69,"y":-101},{"x":-141,"y":15},{"x":-60,"y":-67},{"x":-34,"y":-48},{"x":25,"y":-72},{"x":-22,"y":-56},{"x":-126,"y":-13},{"x":-131,"y":-86},{"x":-127,"y":32},{"x":-43,"y":-36},{"x":-37,"y":-70},{"x":67,"y":-105},{"x":-33,"y":-36},{"x":-5,"y":-100},{"x":64,"y":-47},{"x":-1,"y":-40},{"x":-62,"y":13},{"x":11,"y":31},{"x":-70,"y":-11},{"x":26,"y":89},{"x":-33,"y":24},{"x":-51,"y":-14},{"x":-47,"y":23},{"x":-34,"y":-36},{"x":32,"y":-78},{"x":-35,"y":-77},{"x":-66,"y":36},{"x":-28,"y":48},{"x":-59,"y":12},{"x":-24,"y":47},{"x":-30,"y":-22},{"x":-75,"y":18},{"x":-31,"y":-47},{"x":-67,"y":17}],"type":"admin"},{"arc":[{"x":132826,"y":108724},{"x":90,"y":-41},{"x":82,"y":8},{"x":38,"y":-61},{"x":80,"y":-53},{"x":44,"y":-88},{"x":215,"y":-41},{"x":6,"y":-98},{"x":33,"y":-4},{"x":1,"y":-73},{"x":70,"y":-91},{"x":35,"y":13},{"x":98,"y":-25},{"x":35,"y":-36},{"x":45,"y":4},{"x":65,"y":-83},{"x":105,"y":0},{"x":78,"y":75},{"x":64,"y":-49},{"x":90,"y":13},{"x":5,"y":23},{"x":74,"y":13},{"x":30,"y":47},{"x":251,"y":71},{"x":45,"y":-68},{"x":-22,"y":-23},{"x":83,"y":-122},{"x":58,"y":40},{"x":92,"y":-60},{"x":35,"y":-67},{"x":80,"y":2},{"x":48,"y":-25},{"x":28,"y":13},{"x":30,"y":-37},{"x":28,"y":8}],"type":"admin"},{"arc":[{"x":134965,"y":107909},{"x":36,"y":8},{"x":44,"y":-29},{"x":59,"y":12},{"x":51,"y":-83},{"x":82,"y":-36},{"x":143,"y":118}],"type":"admin"},{"arc":[{"x":135380,"y":107899},{"x":-33,"y":9},{"x":18,"y":145},{"x":-68,"y":33},{"x":-40,"y":56},{"x":8,"y":52},{"x":-29,"y":30},{"x":30,"y":27},{"x":-90,"y":7},{"x":-31,"y":58},{"x":-150,"y":27},{"x":-76,"y":85},{"x":-58,"y":3},{"x":-93,"y":59},{"x":0,"y":68},{"x":-74,"y":48},{"x":7,"y":38},{"x":-64,"y":53},{"x":-21,"y":70},{"x":9,"y":24},{"x":83,"y":7},{"x":-12,"y":32},{"x":-85,"y":34},{"x":49,"y":32},{"x":31,"y":74},{"x":-22,"y":40},{"x":21,"y":39},{"x":31,"y":-1},{"x":42,"y":97},{"x":-31,"y":55},{"x":18,"y":51},{"x":51,"y":36},{"x":81,"y":0},{"x":87,"y":211},{"x":71,"y":59},{"x":71,"y":-40},{"x":25,"y":-48},{"x":101,"y":-12},{"x":76,"y":69},{"x":42,"y":96},{"x":-39,"y":108},{"x":7,"y":137},{"x":-106,"y":-58},{"x":-59,"y":22},{"x":-3,"y":35},{"x":-106,"y":32},{"x":36,"y":127},{"x":-26,"y":68}],"type":"area"},{"arc":[{"x":134079,"y":110613},{"x":47,"y":-31},{"x":-14,"y":-108},{"x":59,"y":39},{"x":115,"y":11},{"x":28,"y":-49},{"x":91,"y":-7},{"x":44,"y":-57},{"x":65,"y":60},{"x":16,"y":-30},{"x":71,"y":-8},{"x":37,"y":90},{"x":129,"y":43},{"x":60,"y":-4},{"x":12,"y":-69},{"x":53,"y":-18},{"x":1,"y":-106}],"type":"admin"},{"arc":[{"x":135059,"y":110093},{"x":67,"y":27},{"x":15,"y":73},{"x":124,"y":91},{"x":1,"y":39},{"x":188,"y":184},{"x":43,"y":-16},{"x":65,"y":42},{"x":32,"y":52},{"x":-38,"y":27},{"x":4,"y":43},{"x":91,"y":108},{"x":54,"y":-5},{"x":119,"y":75},{"x":24,"y":82}],"type":"area"},{"arc":[{"x":135848,"y":110915},{"x":-194,"y":135},{"x":-190,"y":58},{"x":-67,"y":78},{"x":-34,"y":-7},{"x":179,"y":64},{"x":2,"y":48},{"x":47,"y":20},{"x":-18,"y":5},{"x":42,"y":130},{"x":41,"y":-3},{"x":42,"y":69},{"x":74,"y":12},{"x":-19,"y":93},{"x":-33,"y":-9},{"x":-26,"y":30},{"x":-16,"y":91}],"type":"admin"},{"arc":[{"x":138046,"y":111490},{"x":-37,"y":-29},{"x":-89,"y":50},{"x":-152,"y":14},{"x":-53,"y":-34},{"x":-31,"y":12},{"x":-4,"y":-27},{"x":-75,"y":-37},{"x":-144,"y":60},{"x":-50,"y":-65},{"x":-152,"y":-64},{"x":-23,"y":-124},{"x":-99,"y":-85},{"x":7,"y":-35},{"x":-74,"y":6},{"x":3,"y":-93},{"x":-57,"y":-107},{"x":-116,"y":17},{"x":-170,"y":-101},{"x":-48,"y":-73},{"x":-143,"y":-76},{"x":-72,"y":1},{"x":-42,"y":71},{"x":-100,"y":4},{"x":-10,"y":37},{"x":4,"y":-32},{"x":-62,"y":-4},{"x":-11,"y":31},{"x":-35,"y":-4},{"x":-132,"y":96},{"x":-100,"y":-6},{"x":-65,"y":33},{"x":-66,"y":-11}],"type":"admin"},{"arc":[{"x":135380,"y":107899},{"x":109,"y":-22},{"x":30,"y":-58},{"x":75,"y":60},{"x":73,"y":-32},{"x":16,"y":24},{"x":73,"y":5},{"x":94,"y":98},{"x":46,"y":-66},{"x":48,"y":-8},{"x":100,"y":81},{"x":143,"y":6},{"x":70,"y":-37},{"x":12,"y":-62},{"x":52,"y":-7},{"x":11,"y":-95},{"x":136,"y":-59},{"x":13,"y":-61},{"x":-37,"y":11},{"x":77,"y":-126},{"x":71,"y":-35},{"x":53,"y":30},{"x":36,"y":-10},{"x":71,"y":-58}],"type":"admin"},{"arc":[{"x":136752,"y":107478},{"x":36,"y":18}],"type":"admin"},{"arc":[{"x":136788,"y":107496},{"x":108,"y":83},{"x":65,"y":-19},{"x":-1,"y":76},{"x":104,"y":92},{"x":-38,"y":54},{"x":-15,"y":223},{"x":-55,"y":107},{"x":75,"y":86},{"x":-15,"y":62},{"x":75,"y":64},{"x":-35,"y":56},{"x":119,"y":87},{"x":-80,"y":110},{"x":52,"y":68},{"x":-128,"y":93},{"x":34,"y":150},{"x":115,"y":75},{"x":-178,"y":98},{"x":85,"y":106},{"x":-55,"y":34},{"x":29,"y":47},{"x":-49,"y":1},{"x":-47,"y":131},{"x":-38,"y":14},{"x":52,"y":79},{"x":85,"y":21},{"x":2,"y":121},{"x":63,"y":82},{"x":-14,"y":70},{"x":46,"y":44},{"x":22,"y":103},{"x":85,"y":14},{"x":49,"y":-19},{"x":15,"y":60},{"x":100,"y":-41},{"x":20,"y":13},{"x":89,"y":-57},{"x":83,"y":67},{"x":43,"y":-15},{"x":2,"y":27},{"x":57,"y":-9},{"x":25,"y":135},{"x":-20,"y":47},{"x":89,"y":42},{"x":78,"y":-56},{"x":56,"y":-5},{"x":11,"y":59},{"x":41,"y":10},{"x":21,"y":106}],"type":"area"},{"arc":[{"x":138015,"y":110292},{"x":-10,"y":35},{"x":-50,"y":-13},{"x":-109,"y":41},{"x":-122,"y":113},{"x":-273,"y":36},{"x":-87,"y":-45},{"x":-15,"y":22},{"x":27,"y":118},{"x":93,"y":29},{"x":71,"y":171},{"x":202,"y":-19},{"x":80,"y":-42},{"x":62,"y":57},{"x":-54,"y":84},{"x":51,"y":143},{"x":41,"y":-6},{"x":15,"y":47},{"x":60,"y":-9},{"x":8,"y":66},{"x":-58,"y":70},{"x":17,"y":71},{"x":68,"y":88},{"x":72,"y":23},{"x":-58,"y":118}],"type":"area"},{"arc":[{"x":140926,"y":109517},{"x":-71,"y":38},{"x":-15,"y":60},{"x":-67,"y":-14},{"x":-35,"y":73},{"x":-77,"y":-6},{"x":-53,"y":-51},{"x":-78,"y":25},{"x":0,"y":164},{"x":-48,"y":77},{"x":16,"y":67}],"type":"admin"},{"arc":[{"x":140498,"y":109950},{"x":-157,"y":240},{"x":-116,"y":-53},{"x":-172,"y":-34},{"x":-36,"y":-79},{"x":-199,"y":-6},{"x":-58,"y":18},{"x":-51,"y":45},{"x":-4,"y":40},{"x":-76,"y":49},{"x":-100,"y":3},{"x":-44,"y":-28},{"x":-73,"y":11},{"x":-107,"y":-29},{"x":-102,"y":62},{"x":-66,"y":-73},{"x":-101,"y":-11},{"x":-65,"y":61},{"x":-57,"y":-12},{"x":-23,"y":118},{"x":-25,"y":13},{"x":-38,"y":-26},{"x":-43,"y":12},{"x":-72,"y":-55},{"x":-9,"y":-47},{"x":-109,"y":-64},{"x":-72,"y":63},{"x":106,"y":85},{"x":-69,"y":94},{"x":-74,"y":21},{"x":-26,"y":-15},{"x":19,"y":-59},{"x":-43,"y":2},{"x":-70,"y":108},{"x":-39,"y":-16},{"x":-61,"y":91},{"x":-51,"y":-9},{"x":-84,"y":39},{"x":-21,"y":-128},{"x":-75,"y":-54},{"x":4,"y":-35},{"x":57,"y":-11},{"x":-7,"y":-34},{"x":-20,"y":-12},{"x":-54,"y":57}],"type":"area"},{"arc":[{"x":136788,"y":107496},{"x":40,"y":-75},{"x":69,"y":6},{"x":34,"y":-74},{"x":71,"y":-25},{"x":13,"y":-48},{"x":102,"y":-40},{"x":32,"y":-50},{"x":69,"y":-43},{"x":77,"y":-18},{"x":52,"y":18},{"x":39,"y":-29},{"x":46,"y":45},{"x":34,"y":-9},{"x":52,"y":60},{"x":105,"y":13},{"x":89,"y":-28},{"x":103,"y":78},{"x":240,"y":-126},{"x":57,"y":48},{"x":35,"y":-5},{"x":21,"y":36},{"x":91,"y":-19},{"x":32,"y":80},{"x":88,"y":39},{"x":26,"y":58},{"x":61,"y":17},{"x":126,"y":-27},{"x":97,"y":26},{"x":80,"y":-63},{"x":37,"y":-115},{"x":65,"y":-14},{"x":53,"y":-65},{"x":145,"y":-63},{"x":57,"y":-58},{"x":8,"y":-57},{"x":110,"y":-111},{"x":38,"y":-22},{"x":59,"y":24}],"type":"admin"},{"arc":[{"x":134632,"y":117433},{"x":-19,"y":16},{"x":23,"y":41},{"x":-28,"y":15},{"x":39,"y":24},{"x":-53,"y":16},{"x":-30,"y":-79},{"x":54,"y":-54},{"x":34,"y":10},{"x":-20,"y":11}],"type":"coastline"},{"arc":[{"x":134795,"y":117741},{"x":-32,"y":28},{"x":-38,"y":-30},{"x":53,"y":-21},{"x":17,"y":23}],"type":"coastline"},{"arc":[{"x":134868,"y":117377},{"x":-13,"y":47},{"x":-84,"y":13},{"x":7,"y":-89},{"x":20,"y":27},{"x":-18,"y":-31},{"x":25,"y":-15},{"x":10,"y":26},{"x":-5,"y":-25},{"x":43,"y":-24},{"x":15,"y":71}],"type":"coastline"},{"arc":[{"x":134904,"y":117095},{"x":-11,"y":52},{"x":-38,"y":-23},{"x":-25,"y":71},{"x":-64,"y":30},{"x":-13,"y":-34},{"x":26,"y":-1},{"x":20,"y":-53},{"x":-34,"y":-22},{"x":-24,"y":12},{"x":-9,"y":-35},{"x":-23,"y":32},{"x":-17,"y":-68},{"x":29,"y":-47},{"x":27,"y":46},{"x":13,"y":-59},{"x":81,"y":39},{"x":45,"y":-30},{"x":17,"y":90}],"type":"coastline"},{"arc":[{"x":134993,"y":117154},{"x":-69,"y":42},{"x":17,"y":-221},{"x":35,"y":45},{"x":17,"y":134}],"type":"coastline"},{"arc":[{"x":135143,"y":116620},{"x":-58,"y":64},{"x":-14,"y":-48},{"x":24,"y":-27},{"x":-31,"y":-27},{"x":74,"y":18},{"x":5,"y":20}],"type":"coastline"},{"arc":[{"x":135197,"y":117501},{"x":-38,"y":132},{"x":-134,"y":71},{"x":-31,"y":51},{"x":112,"y":90},{"x":-7,"y":37},{"x":-181,"y":122},{"x":-21,"y":-43},{"x":-41,"y":-11},{"x":48,"y":-17},{"x":5,"y":-31},{"x":48,"y":-2},{"x":3,"y":-28},{"x":-38,"y":-25},{"x":49,"y":-57},{"x":-52,"y":-35},{"x":-49,"y":21},{"x":-18,"y":-85},{"x":29,"y":-18},{"x":-21,"y":-21},{"x":28,"y":-44},{"x":47,"y":-4},{"x":15,"y":22},{"x":15,"y":-36},{"x":44,"y":-11},{"x":-35,"y":-43},{"x":-55,"y":12},{"x":7,"y":-81},{"x":-32,"y":-55},{"x":14,"y":-86},{"x":41,"y":54},{"x":34,"y":4},{"x":-49,"y":-76},{"x":52,"y":-51},{"x":103,"y":19},{"x":9,"y":39},{"x":-52,"y":64},{"x":75,"y":-12},{"x":71,"y":78},{"x":5,"y":56}],"type":"coastline"},{"arc":[{"x":135093,"y":117743},{"x":81,"y":-23},{"x":48,"y":-43},{"x":56,"y":-178},{"x":-30,"y":-125},{"x":-54,"y":-35},{"x":59,"y":-74},{"x":-80,"y":8},{"x":-25,"y":-53},{"x":64,"y":-8},{"x":-14,"y":-28},{"x":-98,"y":33},{"x":-42,"y":-23},{"x":-9,"y":-176},{"x":-40,"y":-81},{"x":40,"y":-24},{"x":33,"y":-75},{"x":-24,"y":-5},{"x":7,"y":-87},{"x":44,"y":37},{"x":-1,"y":37},{"x":104,"y":-36},{"x":5,"y":-58},{"x":-34,"y":-34},{"x":22,"y":6},{"x":-4,"y":-173},{"x":95,"y":-179},{"x":37,"y":17},{"x":29,"y":-23},{"x":-90,"y":-73},{"x":-38,"y":5},{"x":25,"y":25},{"x":-9,"y":58},{"x":-94,"y":180},{"x":-53,"y":-5},{"x":-35,"y":-125},{"x":-39,"y":23},{"x":6,"y":31},{"x":-33,"y":4},{"x":-2,"y":41},{"x":32,"y":28},{"x":-26,"y":44},{"x":15,"y":55},{"x":-108,"y":-173},{"x":38,"y":84},{"x":-14,"y":135},{"x":-23,"y":-6},{"x":88,"y":117}],"type":"coastline"},{"arc":[{"x":135002,"y":116788},{"x":-93,"y":25},{"x":-26,"y":-25},{"x":-47,"y":-274},{"x":-103,"y":-120},{"x":6,"y":-38},{"x":-62,"y":-34},{"x":-53,"y":-101},{"x":-11,"y":-105},{"x":21,"y":-34},{"x":65,"y":-9},{"x":13,"y":31},{"x":26,"y":-29},{"x":88,"y":-20},{"x":175,"y":70},{"x":81,"y":-121},{"x":67,"y":-16},{"x":-6,"y":-82},{"x":-108,"y":-110},{"x":4,"y":-70},{"x":-99,"y":-52},{"x":-24,"y":33},{"x":-75,"y":-25},{"x":105,"y":-95},{"x":27,"y":-60},{"x":72,"y":32},{"x":117,"y":7},{"x":-9,"y":-92}],"type":"area"},{"arc":[{"x":135485,"y":115683},{"x":43,"y":5},{"x":31,"y":100},{"x":95,"y":94},{"x":6,"y":50}],"type":"area"},{"arc":[{"x":135660,"y":115932},{"x":-64,"y":28},{"x":-29,"y":62},{"x":25,"y":47},{"x":-27,"y":95},{"x":15,"y":83},{"x":62,"y":54},{"x":-31,"y":126},{"x":53,"y":74},{"x":114,"y":-43},{"x":35,"y":-66},{"x":36,"y":5},{"x":25,"y":59},{"x":85,"y":27},{"x":42,"y":-73},{"x":86,"y":-24},{"x":65,"y":32},{"x":43,"y":-12},{"x":44,"y":55},{"x":59,"y":-3},{"x":59,"y":81},{"x":157,"y":49},{"x":73,"y":65},{"x":49,"y":-81},{"x":54,"y":28},{"x":112,"y":-58},{"x":7,"y":-116},{"x":50,"y":-54},{"x":-24,"y":-93},{"x":223,"y":43},{"x":-32,"y":43},{"x":85,"y":49},{"x":-12,"y":19},{"x":53,"y":-9},{"x":80,"y":29}],"type":"admin"},{"arc":[{"x":137232,"y":116453},{"x":59,"y":32},{"x":71,"y":-53},{"x":56,"y":22},{"x":112,"y":-12},{"x":5,"y":62},{"x":-60,"y":41},{"x":13,"y":97},{"x":-65,"y":61},{"x":12,"y":27},{"x":26,"y":36},{"x":77,"y":-35},{"x":24,"y":31},{"x":81,"y":-5},{"x":56,"y":92},{"x":121,"y":4},{"x":51,"y":108},{"x":68,"y":-24},{"x":21,"y":20},{"x":10,"y":46},{"x":-42,"y":42}],"type":"area"},{"arc":[{"x":133557,"y":116066},{"x":-14,"y":38},{"x":-30,"y":-55},{"x":44,"y":17}],"type":"coastline"},{"arc":[{"x":133579,"y":116390},{"x":-25,"y":18},{"x":17,"y":73},{"x":-31,"y":16},{"x":-54,"y":-80},{"x":29,"y":-3},{"x":3,"y":-36},{"x":61,"y":12}],"type":"coastline"},{"arc":[{"x":133768,"y":116474},{"x":-32,"y":25},{"x":-116,"y":-107},{"x":11,"y":-99},{"x":-38,"y":-46},{"x":-15,"y":-94},{"x":23,"y":-38},{"x":61,"y":0},{"x":-25,"y":5},{"x":10,"y":21},{"x":13,"y":-17},{"x":52,"y":89},{"x":-39,"y":-1},{"x":-12,"y":40},{"x":32,"y":82},{"x":43,"y":28},{"x":32,"y":112}],"type":"coastline"},{"arc":[{"x":134399,"y":116642},{"x":-31,"y":4},{"x":-11,"y":-33},{"x":42,"y":29}],"type":"coastline"},{"arc":[{"x":134541,"y":116920},{"x":-8,"y":32},{"x":-67,"y":-8},{"x":11,"y":-73},{"x":-47,"y":-43},{"x":27,"y":-32},{"x":-49,"y":-53},{"x":83,"y":-69},{"x":31,"y":63},{"x":-69,"y":19},{"x":98,"y":30},{"x":-10,"y":134}],"type":"coastline"},{"arc":[{"x":134585,"y":116748},{"x":-27,"y":-3},{"x":22,"y":-14},{"x":5,"y":17}],"type":"coastline"},{"arc":[{"x":134656,"y":117073},{"x":-11,"y":39},{"x":-59,"y":37},{"x":21,"y":89},{"x":-38,"y":6},{"x":-73,"y":-120},{"x":63,"y":-58},{"x":-28,"y":-46},{"x":29,"y":-23},{"x":4,"y":-71},{"x":19,"y":49},{"x":31,"y":-3},{"x":4,"y":34},{"x":-32,"y":20},{"x":63,"y":18},{"x":7,"y":29}],"type":"coastline"},{"arc":[{"x":135002,"y":116788},{"x":0,"y":69},{"x":-57,"y":-2},{"x":-94,"y":95},{"x":-44,"y":-28},{"x":-23,"y":9},{"x":12,"y":19},{"x":-21,"y":-8},{"x":-20,"y":-33},{"x":62,"y":-36},{"x":-63,"y":4},{"x":-45,"y":-26},{"x":2,"y":-94},{"x":-52,"y":9},{"x":-49,"y":-93},{"x":13,"y":-50},{"x":-29,"y":17},{"x":8,"y":70},{"x":-29,"y":14},{"x":-1,"y":-39},{"x":-25,"y":19},{"x":-39,"y":-75},{"x":-34,"y":-2},{"x":17,"y":-96},{"x":-72,"y":23},{"x":17,"y":44},{"x":-46,"y":-11},{"x":24,"y":-42},{"x":-63,"y":-45},{"x":25,"y":-96},{"x":-24,"y":-11},{"x":-53,"y":76},{"x":-50,"y":-67},{"x":-41,"y":-9},{"x":-11,"y":-82},{"x":30,"y":4},{"x":-9,"y":-35},{"x":53,"y":-25},{"x":-44,"y":-15},{"x":-12,"y":-62},{"x":-38,"y":10},{"x":19,"y":19},{"x":-221,"y":25},{"x":-29,"y":-17},{"x":2,"y":48},{"x":55,"y":17},{"x":13,"y":39},{"x":-73,"y":31},{"x":-14,"y":-86},{"x":-75,"y":-14},{"x":-59,"y":-45},{"x":-35,"y":5},{"x":-12,"y":-35},{"x":-27,"y":-1},{"x":-6,"y":-34},{"x":45,"y":-56},{"x":-16,"y":-76},{"x":24,"y":-77},{"x":-38,"y":7},{"x":2,"y":25},{"x":-2,"y":-25},{"x":-28,"y":15},{"x":-53,"y":-74},{"x":44,"y":-25},{"x":-44,"y":-48},{"x":-109,"y":39},{"x":-31,"y":-46},{"x":23,"y":-59},{"x":-124,"y":-81},{"x":-4,"y":-82}],"type":"coastline"},{"arc":[{"x":137642,"y":115436},{"x":-59,"y":19},{"x":-84,"y":-31},{"x":-186,"y":-130},{"x":-32,"y":41},{"x":32,"y":83},{"x":-53,"y":10},{"x":-98,"y":-49},{"x":-44,"y":106},{"x":-37,"y":3},{"x":-70,"y":-153},{"x":49,"y":-89},{"x":-133,"y":6},{"x":-91,"y":-90},{"x":13,"y":-75},{"x":-51,"y":-6},{"x":-32,"y":-45},{"x":42,"y":-54},{"x":5,"y":-116},{"x":-118,"y":16},{"x":-50,"y":-83},{"x":-26,"y":24},{"x":-81,"y":-10},{"x":-16,"y":22},{"x":-30,"y":-18},{"x":-58,"y":75},{"x":60,"y":30},{"x":-1,"y":59},{"x":-33,"y":1},{"x":-67,"y":65},{"x":45,"y":53},{"x":-47,"y":77},{"x":18,"y":62},{"x":-31,"y":59},{"x":-139,"y":44},{"x":-20,"y":50},{"x":-45,"y":-6},{"x":-58,"y":76},{"x":-6,"y":77},{"x":-52,"y":29},{"x":-28,"y":75},{"x":-30,"y":1},{"x":-8,"y":162},{"x":-30,"y":3},{"x":0,"y":40},{"x":-87,"y":115},{"x":-143,"y":26},{"x":-72,"y":-58}],"type":"admin"},{"arc":[{"x":137001,"y":113955},{"x":55,"y":175},{"x":117,"y":75},{"x":15,"y":110},{"x":92,"y":149},{"x":106,"y":-42},{"x":73,"y":28},{"x":26,"y":-14},{"x":14,"y":48},{"x":65,"y":45},{"x":154,"y":29},{"x":26,"y":-14},{"x":87,"y":39}],"type":"admin"},{"arc":[{"x":137831,"y":114583},{"x":37,"y":35},{"x":57,"y":-10},{"x":10,"y":37},{"x":55,"y":32},{"x":-77,"y":74},{"x":-18,"y":90},{"x":-85,"y":85},{"x":35,"y":101},{"x":-33,"y":86},{"x":56,"y":55},{"x":18,"y":157},{"x":-66,"y":37},{"x":-99,"y":-37},{"x":-79,"y":111}],"type":"admin"},{"arc":[{"x":141808,"y":112537},{"x":-132,"y":25},{"x":-139,"y":-62},{"x":-26,"y":-45},{"x":-138,"y":62},{"x":20,"y":-82},{"x":-68,"y":-89},{"x":99,"y":-220},{"x":-118,"y":31},{"x":-97,"y":-93},{"x":-189,"y":92},{"x":-52,"y":-34},{"x":-127,"y":12},{"x":-64,"y":-90},{"x":-89,"y":10},{"x":-66,"y":-57},{"x":-74,"y":155},{"x":-64,"y":11},{"x":-93,"y":98},{"x":-68,"y":30},{"x":-56,"y":125},{"x":18,"y":107},{"x":-63,"y":49},{"x":12,"y":125},{"x":-65,"y":-15},{"x":-85,"y":121},{"x":-92,"y":8},{"x":-38,"y":-19},{"x":-58,"y":28}],"type":"admin"},{"arc":[{"x":139176,"y":112619},{"x":-33,"y":-41},{"x":36,"y":-31},{"x":-16,"y":-39},{"x":-100,"y":41},{"x":-111,"y":-84},{"x":-7,"y":-63},{"x":-62,"y":-51},{"x":-19,"y":-157},{"x":-36,"y":-11},{"x":-36,"y":45},{"x":-58,"y":13},{"x":-77,"y":-37},{"x":-185,"y":15},{"x":-82,"y":69},{"x":-53,"y":100},{"x":-121,"y":15},{"x":-38,"y":-30},{"x":-86,"y":56},{"x":-95,"y":11},{"x":26,"y":-89},{"x":80,"y":-25},{"x":-10,"y":-69},{"x":-54,"y":-49},{"x":84,"y":-68},{"x":-8,"y":-78},{"x":-105,"y":-107}],"type":"admin"},{"arc":[{"x":138010,"y":111955},{"x":-5,"y":-67},{"x":-27,"y":5},{"x":-62,"y":-80},{"x":67,"y":-152},{"x":-17,"y":-121},{"x":49,"y":-3},{"x":31,"y":-47}],"type":"admin"},{"arc":[{"x":140498,"y":109950},{"x":18,"y":89},{"x":89,"y":102},{"x":94,"y":-49},{"x":105,"y":3},{"x":32,"y":65},{"x":106,"y":6},{"x":36,"y":45},{"x":-22,"y":133},{"x":57,"y":-4},{"x":41,"y":38},{"x":160,"y":-32},{"x":127,"y":-101},{"x":116,"y":33},{"x":134,"y":-75},{"x":72,"y":41},{"x":39,"y":-31},{"x":38,"y":-130},{"x":63,"y":-51},{"x":42,"y":-96}],"type":"admin"},{"arc":[{"x":141100,"y":117325},{"x":-74,"y":-10},{"x":-44,"y":37},{"x":-65,"y":-10},{"x":-65,"y":69},{"x":-64,"y":-23},{"x":-171,"y":66},{"x":-84,"y":244},{"x":-63,"y":33},{"x":13,"y":30},{"x":-44,"y":109},{"x":48,"y":53},{"x":91,"y":19},{"x":76,"y":49},{"x":50,"y":94},{"x":110,"y":61},{"x":43,"y":82},{"x":113,"y":108},{"x":102,"y":40}],"type":"admin"},{"arc":[{"x":137232,"y":116453},{"x":-9,"y":-47},{"x":32,"y":-42},{"x":76,"y":-9},{"x":-21,"y":-23},{"x":26,"y":-135},{"x":-73,"y":-1},{"x":-52,"y":-39},{"x":-106,"y":-27},{"x":2,"y":-52},{"x":85,"y":-74},{"x":24,"y":-117},{"x":-35,"y":-44},{"x":35,"y":-47},{"x":-18,"y":-46},{"x":30,"y":-48},{"x":287,"y":34},{"x":45,"y":-55},{"x":-77,"y":-128},{"x":37,"y":-4},{"x":18,"y":-36},{"x":84,"y":-7},{"x":11,"y":-30}],"type":"admin"},{"arc":[{"x":137633,"y":115476},{"x":36,"y":66},{"x":35,"y":-13},{"x":28,"y":50},{"x":27,"y":-2},{"x":-16,"y":86},{"x":40,"y":14},{"x":79,"y":-125},{"x":150,"y":-74},{"x":39,"y":-98},{"x":96,"y":-11},{"x":6,"y":-39},{"x":29,"y":111},{"x":45,"y":22},{"x":36,"y":60},{"x":54,"y":-11},{"x":-21,"y":-58},{"x":77,"y":14},{"x":8,"y":40},{"x":53,"y":-66},{"x":48,"y":27},{"x":-12,"y":54},{"x":45,"y":40},{"x":-14,"y":-46},{"x":65,"y":-67},{"x":-59,"y":-54},{"x":-70,"y":-9},{"x":18,"y":-70},{"x":43,"y":12},{"x":46,"y":-21},{"x":114,"y":48},{"x":101,"y":-28}],"type":"admin"},{"arc":[{"x":138759,"y":115328},{"x":71,"y":125},{"x":-34,"y":111},{"x":58,"y":114},{"x":-9,"y":172},{"x":50,"y":17},{"x":144,"y":-7},{"x":19,"y":-30},{"x":32,"y":20},{"x":114,"y":-30},{"x":22,"y":15},{"x":-24,"y":129},{"x":39,"y":97},{"x":-51,"y":45},{"x":-25,"y":93},{"x":19,"y":38},{"x":98,"y":51},{"x":117,"y":-44},{"x":-1,"y":82},{"x":27,"y":14},{"x":47,"y":-35},{"x":7,"y":-56},{"x":68,"y":-6},{"x":35,"y":-68},{"x":197,"y":65}],"type":"admin"},{"arc":[{"x":139779,"y":116240},{"x":-37,"y":71},{"x":30,"y":78},{"x":76,"y":-6},{"x":79,"y":91},{"x":-48,"y":1},{"x":50,"y":92},{"x":-61,"y":-16},{"x":-41,"y":19},{"x":51,"y":103},{"x":54,"y":10},{"x":71,"y":120},{"x":44,"y":18},{"x":40,"y":-71},{"x":47,"y":-24},{"x":51,"y":75},{"x":49,"y":14},{"x":112,"y":-88},{"x":80,"y":-4},{"x":3,"y":25},{"x":66,"y":33},{"x":36,"y":-24},{"x":61,"y":24},{"x":104,"y":-77},{"x":109,"y":3},{"x":42,"y":32},{"x":110,"y":-79},{"x":52,"y":-5}],"type":"admin"},{"arc":[{"x":132223,"y":110320},{"x":-30,"y":-62},{"x":-25,"y":5},{"x":18,"y":-15},{"x":-39,"y":-28},{"x":17,"y":10},{"x":0,"y":-18},{"x":-101,"y":-48},{"x":-117,"y":135},{"x":-50,"y":-81},{"x":16,"y":-157},{"x":-17,"y":11},{"x":-43,"y":-33},{"x":1,"y":-35}],"type":"coastline"},{"arc":[{"x":132203,"y":109871},{"x":40,"y":33},{"x":-23,"y":19},{"x":17,"y":23},{"x":119,"y":-47},{"x":75,"y":41},{"x":74,"y":109},{"x":91,"y":-28},{"x":40,"y":93},{"x":42,"y":24},{"x":17,"y":-11},{"x":-45,"y":-26},{"x":3,"y":-24},{"x":60,"y":23},{"x":-48,"y":-97},{"x":74,"y":-45},{"x":34,"y":-68},{"x":-23,"y":-27},{"x":-68,"y":11},{"x":-10,"y":-101},{"x":-34,"y":-14}],"type":"admin"},{"arc":[{"x":133361,"y":109972},{"x":52,"y":45},{"x":13,"y":100},{"x":-110,"y":6},{"x":-63,"y":105},{"x":15,"y":113},{"x":-52,"y":47},{"x":75,"y":77},{"x":12,"y":57}],"type":"admin"},{"arc":[{"x":137642,"y":115436},{"x":-9,"y":40}],"type":"admin"},{"arc":[{"x":138759,"y":115328},{"x":97,"y":-39}],"type":"area"},{"arc":[{"x":139916,"y":115775},{"x":-59,"y":53},{"x":65,"y":30},{"x":-6,"y":83},{"x":-55,"y":-1},{"x":-43,"y":36},{"x":0,"y":132},{"x":-39,"y":132}],"type":"area"},{"arc":[{"x":137901,"y":113488},{"x":93,"y":125},{"x":98,"y":43},{"x":56,"y":0},{"x":50,"y":86},{"x":83,"y":2},{"x":19,"y":35},{"x":-118,"y":95},{"x":-79,"y":169},{"x":58,"y":154},{"x":2,"y":264},{"x":-31,"y":-14},{"x":-44,"y":22},{"x":-62,"y":-47},{"x":-88,"y":39},{"x":-56,"y":-12},{"x":-67,"y":38},{"x":16,"y":96}],"type":"area"},{"arc":[{"x":137781,"y":112868},{"x":132,"y":-59},{"x":2,"y":-91},{"x":78,"y":-33},{"x":24,"y":-107},{"x":-86,"y":-80},{"x":-7,"y":-41},{"x":-71,"y":-37},{"x":-8,"y":-87},{"x":-68,"y":6},{"x":-21,"y":-55},{"x":-45,"y":-12},{"x":4,"y":-131},{"x":78,"y":-22},{"x":-23,"y":-28},{"x":37,"y":-28},{"x":10,"y":-61},{"x":193,"y":-47}],"type":"area"},{"arc":[{"x":126506,"y":99121},{"x":-57,"y":11},{"x":34,"y":-27},{"x":23,"y":16}],"type":"coastline"},{"arc":[{"x":126534,"y":98845},{"x":-9,"y":22},{"x":-57,"y":-40},{"x":-75,"y":-93},{"x":38,"y":-10},{"x":103,"y":121}],"type":"coastline"},{"arc":[{"x":126734,"y":98519},{"x":-25,"y":15},{"x":17,"y":24},{"x":-46,"y":17},{"x":20,"y":-50},{"x":34,"y":-6}],"type":"coastline"},{"arc":[{"x":126897,"y":99252},{"x":-31,"y":8},{"x":-14,"y":41},{"x":-28,"y":-7},{"x":18,"y":20},{"x":-43,"y":2},{"x":-225,"y":-47},{"x":-30,"y":-56},{"x":46,"y":-92},{"x":35,"y":-10},{"x":4,"y":32},{"x":64,"y":41},{"x":82,"y":0},{"x":2,"y":25},{"x":111,"y":23},{"x":9,"y":20}],"type":"coastline"},{"arc":[{"x":126964,"y":99419},{"x":-25,"y":5},{"x":-14,"y":-24},{"x":-50,"y":15},{"x":35,"y":76},{"x":-53,"y":25},{"x":-37,"y":-55},{"x":36,"y":-46},{"x":-32,"y":-25},{"x":4,"y":-58},{"x":124,"y":60},{"x":12,"y":27}],"type":"coastline"},{"arc":[{"x":127508,"y":101901},{"x":-6,"y":30},{"x":-36,"y":9},{"x":30,"y":42},{"x":-13,"y":34},{"x":-78,"y":-54},{"x":-7,"y":-86},{"x":18,"y":-13},{"x":92,"y":38}],"type":"coastline"},{"arc":[{"x":127951,"y":99551},{"x":-34,"y":9},{"x":8,"y":-21},{"x":26,"y":12}],"type":"coastline"},{"arc":[{"x":127957,"y":100548},{"x":-77,"y":-34},{"x":-13,"y":-38},{"x":67,"y":2},{"x":-5,"y":45},{"x":28,"y":25}],"type":"coastline"},{"arc":[{"x":127927,"y":101751},{"x":-36,"y":-19},{"x":-57,"y":-142},{"x":76,"y":-4},{"x":-4,"y":56},{"x":58,"y":82},{"x":-37,"y":27}],"type":"coastline"},{"arc":[{"x":127979,"y":100679},{"x":-5,"y":23},{"x":-79,"y":5},{"x":-32,"y":-28},{"x":46,"y":-59},{"x":70,"y":59}],"type":"coastline"},{"arc":[{"x":128087,"y":99714},{"x":-117,"y":13},{"x":1,"y":-32},{"x":-50,"y":-40},{"x":30,"y":-27},{"x":38,"y":3},{"x":98,"y":83}],"type":"coastline"},{"arc":[{"x":128082,"y":101959},{"x":-73,"y":-86},{"x":-14,"y":-149},{"x":195,"y":-11},{"x":139,"y":102},{"x":17,"y":62},{"x":-72,"y":86},{"x":22,"y":-40},{"x":-103,"y":85},{"x":19,"y":-17},{"x":-37,"y":18},{"x":-54,"y":-24},{"x":9,"y":14},{"x":-48,"y":-40}],"type":"coastline"},{"arc":[{"x":128352,"y":102648},{"x":-28,"y":16},{"x":9,"y":-31},{"x":19,"y":15}],"type":"coastline"},{"arc":[{"x":128426,"y":102585},{"x":-8,"y":30},{"x":-41,"y":6},{"x":7,"y":-32},{"x":42,"y":-4}],"type":"coastline"},{"arc":[{"x":128426,"y":102555},{"x":-38,"y":0},{"x":8,"y":-38},{"x":30,"y":38}],"type":"coastline"},{"arc":[{"x":128442,"y":102517},{"x":-52,"y":-13},{"x":-73,"y":105},{"x":-43,"y":-25},{"x":15,"y":30},{"x":-17,"y":9},{"x":-8,"y":-23},{"x":-26,"y":115},{"x":-85,"y":1},{"x":3,"y":-33},{"x":-173,"y":-191},{"x":4,"y":-78},{"x":-55,"y":-46},{"x":-64,"y":-151},{"x":50,"y":-180},{"x":23,"y":6},{"x":24,"y":-38},{"x":30,"y":64},{"x":44,"y":-6},{"x":-22,"y":15},{"x":112,"y":-36},{"x":82,"y":37},{"x":114,"y":167},{"x":1,"y":53},{"x":-43,"y":5},{"x":80,"y":41},{"x":18,"y":101},{"x":61,"y":71}],"type":"coastline"},{"arc":[{"x":128424,"y":102216},{"x":-35,"y":14},{"x":-25,"y":-67},{"x":-18,"y":-17},{"x":-18,"y":16},{"x":7,"y":-98},{"x":23,"y":49},{"x":53,"y":-15},{"x":39,"y":113},{"x":-26,"y":5}],"type":"coastline"},{"arc":[{"x":128480,"y":99058},{"x":-51,"y":8},{"x":-41,"y":-41},{"x":55,"y":3},{"x":37,"y":30}],"type":"coastline"},{"arc":[{"x":128495,"y":99268},{"x":-21,"y":34},{"x":-92,"y":-50},{"x":-34,"y":6},{"x":-19,"y":93},{"x":29,"y":43},{"x":-31,"y":52},{"x":-66,"y":-1},{"x":-26,"y":50},{"x":-67,"y":-4},{"x":-18,"y":27},{"x":-34,"y":-21},{"x":73,"y":-59},{"x":4,"y":-46},{"x":-55,"y":-64},{"x":-27,"y":16},{"x":-75,"y":-24},{"x":-33,"y":-63},{"x":47,"y":-14},{"x":-10,"y":-46},{"x":-89,"y":-67},{"x":-41,"y":3},{"x":16,"y":38},{"x":-23,"y":45},{"x":-46,"y":-27},{"x":0,"y":36},{"x":-43,"y":14},{"x":60,"y":169},{"x":-129,"y":4},{"x":95,"y":35},{"x":24,"y":58},{"x":-134,"y":-93},{"x":-193,"y":-36},{"x":-46,"y":-79},{"x":-74,"y":41},{"x":-98,"y":-26},{"x":56,"y":87},{"x":67,"y":17},{"x":-3,"y":118},{"x":84,"y":75},{"x":-5,"y":52},{"x":58,"y":35},{"x":-53,"y":79},{"x":-55,"y":-33},{"x":-92,"y":24},{"x":-17,"y":60},{"x":57,"y":44},{"x":-83,"y":-33},{"x":-26,"y":-78},{"x":51,"y":-52},{"x":65,"y":-15},{"x":-3,"y":-59},{"x":-233,"y":-23},{"x":-36,"y":-48},{"x":-94,"y":-25},{"x":-50,"y":-49},{"x":-37,"y":4},{"x":-3,"y":-74},{"x":65,"y":-2},{"x":11,"y":-26},{"x":17,"y":21},{"x":38,"y":-10},{"x":25,"y":-51},{"x":74,"y":30},{"x":21,"y":-43},{"x":-24,"y":-22},{"x":-16,"y":29},{"x":-14,"y":-72},{"x":96,"y":-5},{"x":13,"y":-26},{"x":-23,"y":10},{"x":-11,"y":-43},{"x":-82,"y":-43},{"x":11,"y":-33},{"x":-33,"y":-30},{"x":31,"y":-42},{"x":-56,"y":-18},{"x":56,"y":-12},{"x":46,"y":20},{"x":53,"y":-42},{"x":1,"y":-80},{"x":-157,"y":-36},{"x":20,"y":-69},{"x":-38,"y":-14},{"x":27,"y":-18},{"x":-6,"y":-41},{"x":-37,"y":5},{"x":8,"y":27},{"x":-46,"y":-59},{"x":48,"y":-16},{"x":6,"y":-30},{"x":-92,"y":-178},{"x":35,"y":-37},{"x":114,"y":-29},{"x":0,"y":-64},{"x":129,"y":-4},{"x":30,"y":19},{"x":22,"y":-21},{"x":86,"y":82},{"x":16,"y":111},{"x":51,"y":-6},{"x":16,"y":20},{"x":6,"y":23},{"x":-46,"y":31},{"x":30,"y":25},{"x":18,"y":-23},{"x":41,"y":10},{"x":-25,"y":38},{"x":90,"y":118},{"x":26,"y":107},{"x":30,"y":-3},{"x":-26,"y":17},{"x":6,"y":41},{"x":79,"y":34},{"x":54,"y":-28},{"x":-38,"y":29},{"x":39,"y":2},{"x":42,"y":-33},{"x":-4,"y":-27},{"x":-24,"y":14},{"x":33,"y":-88},{"x":66,"y":-22},{"x":119,"y":3},{"x":91,"y":23},{"x":38,"y":36},{"x":25,"y":-2},{"x":-13,"y":-16},{"x":83,"y":28},{"x":96,"y":60},{"x":59,"y":133},{"x":87,"y":68},{"x":-14,"y":72},{"x":29,"y":28}],"type":"coastline"},{"arc":[{"x":128518,"y":100717},{"x":2,"y":26},{"x":-86,"y":-26},{"x":-23,"y":19},{"x":31,"y":33},{"x":-21,"y":17},{"x":18,"y":-17},{"x":-24,"y":-17},{"x":-5,"y":45},{"x":-77,"y":18},{"x":-164,"y":-88},{"x":-66,"y":-137},{"x":37,"y":-17},{"x":-13,"y":17},{"x":29,"y":5},{"x":16,"y":-22},{"x":-27,"y":-1},{"x":42,"y":-44},{"x":-70,"y":-63},{"x":5,"y":-65},{"x":114,"y":45},{"x":84,"y":0},{"x":123,"y":77},{"x":37,"y":136},{"x":53,"y":29},{"x":-15,"y":30}],"type":"coastline"},{"arc":[{"x":128537,"y":101100},{"x":-86,"y":94},{"x":40,"y":39},{"x":-64,"y":170},{"x":35,"y":-47},{"x":-8,"y":35},{"x":-54,"y":47},{"x":8,"y":130},{"x":-38,"y":25},{"x":-108,"y":-59},{"x":-21,"y":22},{"x":22,"y":89},{"x":-66,"y":6},{"x":-163,"y":-110},{"x":-26,"y":-66},{"x":21,"y":-69},{"x":-74,"y":-30},{"x":44,"y":-33},{"x":81,"y":81},{"x":72,"y":-50},{"x":-13,"y":-142},{"x":-39,"y":-23},{"x":42,"y":-61},{"x":106,"y":-36},{"x":-21,"y":-102},{"x":41,"y":-181},{"x":61,"y":8},{"x":9,"y":21},{"x":7,"y":-17},{"x":27,"y":15},{"x":72,"y":-20},{"x":1,"y":32},{"x":98,"y":94},{"x":-6,"y":138}],"type":"coastline"},{"arc":[{"x":128786,"y":100945},{"x":-64,"y":42},{"x":-12,"y":-79},{"x":60,"y":-13},{"x":16,"y":50}],"type":"coastline"},{"arc":[{"x":129259,"y":101756},{"x":-39,"y":41},{"x":18,"y":-52},{"x":21,"y":11}],"type":"coastline"},{"arc":[{"x":129264,"y":101836},{"x":-9,"y":48},{"x":-36,"y":-20},{"x":-25,"y":16},{"x":25,"y":-69},{"x":45,"y":25}],"type":"coastline"},{"arc":[{"x":129355,"y":101745},{"x":-43,"y":7},{"x":-14,"y":-42},{"x":57,"y":35}],"type":"coastline"},{"arc":[{"x":129463,"y":101856},{"x":-17,"y":-9},{"x":64,"y":-93},{"x":-19,"y":-58},{"x":43,"y":-83},{"x":-36,"y":-61},{"x":22,"y":13},{"x":11,"y":-28},{"x":-84,"y":-6},{"x":-105,"y":62},{"x":-100,"y":-69},{"x":-32,"y":31},{"x":60,"y":45},{"x":11,"y":47},{"x":-42,"y":32},{"x":-5,"y":41},{"x":-45,"y":15},{"x":-69,"y":-50},{"x":-42,"y":-106},{"x":-77,"y":23},{"x":8,"y":-37},{"x":-31,"y":-39},{"x":48,"y":-47},{"x":10,"y":-86},{"x":-28,"y":-51},{"x":17,"y":-41},{"x":-36,"y":-31},{"x":19,"y":-89},{"x":-72,"y":-201},{"x":27,"y":9},{"x":-55,"y":-20},{"x":24,"y":-12},{"x":-20,"y":6},{"x":20,"y":-26},{"x":-27,"y":7},{"x":26,"y":-8},{"x":-20,"y":-22},{"x":-23,"y":30},{"x":-47,"y":-48},{"x":21,"y":-5},{"x":-74,"y":-26},{"x":-15,"y":-43},{"x":-104,"y":13},{"x":-51,"y":-23},{"x":53,"y":-120},{"x":65,"y":-54},{"x":-3,"y":-73},{"x":-44,"y":-29},{"x":-83,"y":41},{"x":-28,"y":-23},{"x":-64,"y":-246},{"x":31,"y":-23},{"x":-4,"y":30},{"x":33,"y":-38},{"x":-5,"y":-59},{"x":66,"y":-13},{"x":24,"y":-49},{"x":-20,"y":6},{"x":-14,"y":-40},{"x":51,"y":-22},{"x":121,"y":5},{"x":-4,"y":-41},{"x":-70,"y":-28},{"x":20,"y":-66},{"x":81,"y":31},{"x":59,"y":-105},{"x":-45,"y":4},{"x":17,"y":-8},{"x":-116,"y":-54},{"x":-38,"y":63},{"x":-65,"y":-37},{"x":-24,"y":-45},{"x":35,"y":55},{"x":20,"y":-55},{"x":-30,"y":-17},{"x":-14,"y":25},{"x":11,"y":-51},{"x":-173,"y":-165},{"x":18,"y":-57},{"x":-61,"y":-93},{"x":7,"y":-83},{"x":-22,"y":-19},{"x":12,"y":-60},{"x":151,"y":60},{"x":64,"y":-4},{"x":139,"y":-121},{"x":82,"y":68},{"x":-45,"y":106},{"x":25,"y":22},{"x":19,"y":-22},{"x":22,"y":19},{"x":-23,"y":28},{"x":55,"y":-10},{"x":28,"y":23},{"x":-15,"y":17},{"x":55,"y":28},{"x":54,"y":-70},{"x":-31,"y":-6},{"x":23,"y":-32},{"x":-20,"y":-31},{"x":28,"y":-35},{"x":22,"y":17},{"x":-17,"y":20},{"x":27,"y":-16},{"x":10,"y":20},{"x":25,"y":-62},{"x":-33,"y":19},{"x":-28,"y":-22},{"x":10,"y":-40},{"x":-28,"y":-41},{"x":60,"y":-73},{"x":47,"y":64},{"x":67,"y":-8},{"x":47,"y":-57},{"x":-43,"y":-64},{"x":17,"y":-38},{"x":82,"y":28},{"x":53,"y":-30},{"x":182,"y":49},{"x":49,"y":-65},{"x":45,"y":21},{"x":-5,"y":-26},{"x":69,"y":-69},{"x":29,"y":22}],"type":"coastline"},{"arc":[{"x":129713,"y":98988},{"x":36,"y":50},{"x":-33,"y":66},{"x":78,"y":79},{"x":-8,"y":75},{"x":39,"y":-48},{"x":54,"y":3},{"x":47,"y":16},{"x":15,"y":55}],"type":"admin"},{"arc":[{"x":130043,"y":99494},{"x":33,"y":83},{"x":-77,"y":34},{"x":-40,"y":182},{"x":-10,"y":18},{"x":-48,"y":-9},{"x":-4,"y":40},{"x":-82,"y":64},{"x":150,"y":106}],"type":"admin"},{"arc":[{"x":129965,"y":100012},{"x":-52,"y":150},{"x":15,"y":55},{"x":-30,"y":31},{"x":47,"y":101},{"x":-66,"y":58},{"x":18,"y":48},{"x":-290,"y":149},{"x":149,"y":176},{"x":34,"y":101},{"x":130,"y":130},{"x":-64,"y":114},{"x":124,"y":78},{"x":5,"y":38},{"x":51,"y":14},{"x":10,"y":61},{"x":95,"y":100},{"x":33,"y":98},{"x":-194,"y":48},{"x":-83,"y":7},{"x":-6,"y":-27},{"x":-57,"y":13},{"x":-85,"y":60},{"x":-45,"y":-26},{"x":-116,"y":110},{"x":17,"y":53},{"x":-27,"y":61},{"x":-63,"y":0},{"x":-52,"y":43}],"type":"area"},{"arc":[{"x":129888,"y":103861},{"x":-27,"y":32},{"x":-48,"y":-19},{"x":75,"y":-13}],"type":"coastline"},{"arc":[{"x":129956,"y":103965},{"x":-33,"y":61},{"x":-70,"y":40},{"x":-70,"y":-52},{"x":57,"y":-39},{"x":116,"y":-10}],"type":"coastline"},{"arc":[{"x":130064,"y":103428},{"x":-8,"y":57},{"x":-100,"y":63},{"x":-84,"y":-1},{"x":192,"y":-119}],"type":"coastline"},{"arc":[{"x":130123,"y":104187},{"x":106,"y":-167},{"x":-60,"y":-47},{"x":-20,"y":-70},{"x":81,"y":-209},{"x":-36,"y":3},{"x":-9,"y":-30},{"x":37,"y":-104},{"x":42,"y":1},{"x":-45,"y":-19},{"x":-14,"y":-68},{"x":-125,"y":-131},{"x":1,"y":-106},{"x":50,"y":-25},{"x":8,"y":36},{"x":31,"y":-35},{"x":-64,"y":-53},{"x":-9,"y":33},{"x":-7,"y":-218},{"x":-18,"y":-20},{"x":-34,"y":16},{"x":20,"y":-47},{"x":-27,"y":-29},{"x":-43,"y":17},{"x":39,"y":41},{"x":-78,"y":-63},{"x":19,"y":-73},{"x":-49,"y":-11},{"x":33,"y":-22},{"x":-43,"y":-18},{"x":1,"y":-44},{"x":-74,"y":33},{"x":4,"y":42},{"x":-58,"y":-25},{"x":38,"y":-57},{"x":-95,"y":-65},{"x":35,"y":-36},{"x":-6,"y":-28},{"x":-43,"y":-15}],"type":"coastline"},{"arc":[{"x":129711,"y":102574},{"x":234,"y":-36},{"x":39,"y":26},{"x":116,"y":-4},{"x":68,"y":36},{"x":127,"y":1},{"x":39,"y":24},{"x":23,"y":-28},{"x":36,"y":23},{"x":20,"y":-35},{"x":55,"y":-13},{"x":-21,"y":-48},{"x":45,"y":-20},{"x":53,"y":-95},{"x":20,"y":-83},{"x":-20,"y":-15},{"x":51,"y":-54},{"x":32,"y":-113},{"x":64,"y":-35},{"x":-34,"y":-92},{"x":31,"y":-30},{"x":-51,"y":-8},{"x":6,"y":-108},{"x":67,"y":-13},{"x":81,"y":38},{"x":51,"y":43},{"x":-4,"y":37},{"x":40,"y":-2},{"x":41,"y":43},{"x":-1,"y":161},{"x":31,"y":17},{"x":11,"y":-26},{"x":92,"y":-16},{"x":67,"y":-57},{"x":-23,"y":-44},{"x":30,"y":-53},{"x":-5,"y":-82},{"x":149,"y":-88},{"x":46,"y":69},{"x":-43,"y":57},{"x":3,"y":115},{"x":52,"y":77},{"x":-76,"y":96},{"x":52,"y":134},{"x":-55,"y":37},{"x":11,"y":116},{"x":-58,"y":19},{"x":4,"y":83},{"x":-115,"y":194},{"x":72,"y":139},{"x":-10,"y":30},{"x":68,"y":-42},{"x":113,"y":72},{"x":41,"y":-8}],"type":"area"},{"arc":[{"x":131376,"y":103013},{"x":16,"y":71},{"x":-46,"y":28},{"x":-38,"y":-13},{"x":-200,"y":35},{"x":-63,"y":-50},{"x":-41,"y":9},{"x":-88,"y":85},{"x":-67,"y":-17},{"x":-21,"y":59},{"x":24,"y":57},{"x":-18,"y":48},{"x":-67,"y":-11},{"x":24,"y":60},{"x":-18,"y":28},{"x":-47,"y":8},{"x":-40,"y":52},{"x":-40,"y":-21},{"x":-63,"y":36},{"x":-65,"y":-23},{"x":-58,"y":20},{"x":29,"y":39},{"x":-76,"y":49},{"x":2,"y":49},{"x":67,"y":56},{"x":-81,"y":126},{"x":-65,"y":34},{"x":26,"y":38},{"x":-18,"y":60},{"x":69,"y":54},{"x":-36,"y":36},{"x":3,"y":88},{"x":-79,"y":83},{"x":-47,"y":10},{"x":-11,"y":-22},{"x":-62,"y":-7},{"x":-58,"y":20}],"type":"area"},{"arc":[{"x":130515,"y":105291},{"x":-62,"y":-4},{"x":29,"y":24},{"x":-54,"y":34},{"x":-178,"y":15},{"x":-20,"y":32},{"x":-176,"y":-73},{"x":-82,"y":-103},{"x":28,"y":-55},{"x":43,"y":0},{"x":10,"y":-91},{"x":89,"y":-13},{"x":-12,"y":36},{"x":-49,"y":6},{"x":6,"y":48},{"x":40,"y":-40},{"x":59,"y":7},{"x":76,"y":-31},{"x":68,"y":67},{"x":137,"y":-2},{"x":38,"y":53},{"x":10,"y":90}],"type":"coastline"},{"arc":[{"x":130619,"y":105188},{"x":-22,"y":19},{"x":-49,"y":-13},{"x":-39,"y":-92},{"x":61,"y":3},{"x":49,"y":83}],"type":"coastline"},{"arc":[{"x":132781,"y":104968},{"x":-52,"y":-63},{"x":-80,"y":-1},{"x":0,"y":-121},{"x":-70,"y":4},{"x":-205,"y":-165},{"x":-121,"y":-6},{"x":-84,"y":85},{"x":43,"y":49},{"x":2,"y":60},{"x":-85,"y":26},{"x":-65,"y":85},{"x":71,"y":47},{"x":-36,"y":34},{"x":59,"y":65},{"x":90,"y":33},{"x":-23,"y":87},{"x":-105,"y":91},{"x":-53,"y":3},{"x":-30,"y":-27},{"x":-121,"y":7},{"x":-7,"y":71},{"x":-123,"y":26},{"x":-70,"y":105},{"x":-105,"y":9},{"x":-20,"y":161},{"x":-101,"y":59},{"x":5,"y":34},{"x":-30,"y":-2},{"x":-3,"y":-59},{"x":-35,"y":-35},{"x":-23,"y":-8},{"x":-45,"y":38},{"x":-39,"y":-88},{"x":-129,"y":-70},{"x":-34,"y":9},{"x":-8,"y":74},{"x":-94,"y":-16},{"x":-10,"y":77},{"x":54,"y":49},{"x":-44,"y":63},{"x":-103,"y":-90}],"type":"area"},{"arc":[{"x":130952,"y":105668},{"x":-150,"y":-262},{"x":-11,"y":-123},{"x":7,"y":-31},{"x":30,"y":12},{"x":43,"y":-32},{"x":0,"y":-54},{"x":38,"y":-38},{"x":-14,"y":-43},{"x":69,"y":-142},{"x":-28,"y":0},{"x":-58,"y":86},{"x":-75,"y":-27},{"x":-45,"y":64},{"x":-26,"y":-40},{"x":38,"y":-39},{"x":-21,"y":-30},{"x":-46,"y":10},{"x":-120,"y":-35},{"x":-42,"y":15},{"x":-215,"y":-66},{"x":-29,"y":-65},{"x":28,"y":-120},{"x":-25,"y":-82},{"x":-33,"y":-7},{"x":7,"y":-26},{"x":-8,"y":25},{"x":-27,"y":-15},{"x":-27,"y":-29},{"x":12,"y":-35},{"x":-41,"y":11},{"x":-33,"y":-59},{"x":28,"y":39},{"x":-14,"y":-47},{"x":44,"y":-16},{"x":-36,"y":-25},{"x":-49,"y":-255}],"type":"coastline"},{"arc":[{"x":131376,"y":103013},{"x":113,"y":-29},{"x":64,"y":55},{"x":-16,"y":45},{"x":47,"y":5},{"x":30,"y":-25},{"x":11,"y":19},{"x":13,"y":-41},{"x":125,"y":-76},{"x":19,"y":37},{"x":28,"y":-65},{"x":35,"y":-3},{"x":2,"y":94},{"x":-71,"y":63},{"x":3,"y":80},{"x":-39,"y":64},{"x":23,"y":11},{"x":18,"y":-29},{"x":91,"y":41},{"x":44,"y":-16},{"x":60,"y":-78},{"x":120,"y":0},{"x":-4,"y":-78},{"x":93,"y":-22},{"x":45,"y":-46},{"x":52,"y":3},{"x":32,"y":-40},{"x":51,"y":18},{"x":151,"y":-98},{"x":23,"y":-192},{"x":51,"y":-116},{"x":113,"y":-18},{"x":22,"y":-38},{"x":47,"y":21},{"x":22,"y":-59},{"x":30,"y":52},{"x":30,"y":-13},{"x":65,"y":24},{"x":-40,"y":65},{"x":103,"y":225},{"x":50,"y":28},{"x":212,"y":-61},{"x":6,"y":52},{"x":-32,"y":38},{"x":118,"y":92}],"type":"area"},{"arc":[{"x":133336,"y":103002},{"x":-24,"y":10},{"x":-1,"y":53},{"x":81,"y":7},{"x":20,"y":48},{"x":39,"y":-3},{"x":18,"y":23},{"x":-31,"y":43},{"x":-9,"y":113},{"x":-74,"y":-11},{"x":11,"y":116},{"x":-87,"y":101},{"x":17,"y":48},{"x":-42,"y":97},{"x":-111,"y":23},{"x":30,"y":110},{"x":-106,"y":64},{"x":5,"y":35},{"x":-59,"y":34},{"x":-11,"y":47},{"x":-124,"y":91},{"x":47,"y":25},{"x":42,"y":120},{"x":-26,"y":130},{"x":47,"y":77},{"x":111,"y":64},{"x":0,"y":39},{"x":-65,"y":159},{"x":-84,"y":91},{"x":-27,"y":143},{"x":-142,"y":69}],"type":"admin"},{"arc":[{"x":129567,"y":104602},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":129567,"y":104593},{"x":0,"y":9}],"type":"coastline"},{"arc":[{"x":129968,"y":105457},{"x":-28,"y":76},{"x":-154,"y":82},{"x":-59,"y":14},{"x":-132,"y":-32},{"x":-61,"y":-124},{"x":-38,"y":-13},{"x":-11,"y":-89},{"x":-44,"y":-37},{"x":-11,"y":-63},{"x":-81,"y":-19},{"x":-33,"y":-40},{"x":-8,"y":14},{"x":11,"y":-47},{"x":-59,"y":-41},{"x":-11,"y":-70},{"x":-44,"y":-22},{"x":23,"y":-35},{"x":-31,"y":-81},{"x":80,"y":-133},{"x":60,"y":-25},{"x":150,"y":28},{"x":-1,"y":23},{"x":5,"y":-26},{"x":28,"y":39},{"x":61,"y":0},{"x":156,"y":87},{"x":123,"y":24},{"x":59,"y":51},{"x":14,"y":45},{"x":-9,"y":41},{"x":2,"y":-26},{"x":-82,"y":12},{"x":-9,"y":66},{"x":7,"y":36},{"x":47,"y":25},{"x":-5,"y":92},{"x":56,"y":52},{"x":29,"y":116}],"type":"coastline"},{"arc":[{"x":130173,"y":104891},{"x":-12,"y":23},{"x":-166,"y":28},{"x":-73,"y":37},{"x":-44,"y":-45},{"x":-80,"y":-11},{"x":-26,"y":-54},{"x":15,"y":-77},{"x":66,"y":-65},{"x":130,"y":0},{"x":98,"y":35},{"x":66,"y":59},{"x":-7,"y":40},{"x":46,"y":8},{"x":-13,"y":22}],"type":"coastline"},{"arc":[{"x":130480,"y":105516},{"x":-17,"y":37},{"x":-25,"y":-25},{"x":-33,"y":15},{"x":63,"y":-41},{"x":12,"y":14}],"type":"coastline"},{"arc":[{"x":130495,"y":105646},{"x":4,"y":14},{"x":-15,"y":4},{"x":-5,"y":-11},{"x":-11,"y":36},{"x":36,"y":61},{"x":-17,"y":122},{"x":-59,"y":40},{"x":-33,"y":-28},{"x":-113,"y":38},{"x":-76,"y":109},{"x":29,"y":86},{"x":-25,"y":-17},{"x":-67,"y":18},{"x":11,"y":28},{"x":-157,"y":35},{"x":-4,"y":77},{"x":-62,"y":6},{"x":-81,"y":-135},{"x":-89,"y":-51},{"x":-38,"y":10},{"x":-1,"y":31},{"x":29,"y":-12},{"x":-48,"y":69},{"x":13,"y":76},{"x":-88,"y":-98},{"x":-41,"y":2},{"x":-10,"y":-49},{"x":-85,"y":33},{"x":-49,"y":-36},{"x":-6,"y":-47},{"x":72,"y":-112},{"x":148,"y":-68},{"x":47,"y":-56},{"x":-21,"y":-4},{"x":54,"y":-127},{"x":203,"y":-66},{"x":122,"y":-70},{"x":57,"y":-86},{"x":85,"y":0},{"x":45,"y":23},{"x":16,"y":51},{"x":37,"y":-23},{"x":-10,"y":-29},{"x":47,"y":11},{"x":19,"y":81},{"x":-33,"y":17},{"x":125,"y":24},{"x":25,"y":-27},{"x":12,"y":8},{"x":16,"y":71},{"x":-8,"y":-29}],"type":"coastline"},{"arc":[{"x":130651,"y":105583},{"x":-30,"y":15},{"x":-66,"y":-20},{"x":-2,"y":-55},{"x":-49,"y":-42},{"x":19,"y":-26},{"x":86,"y":44},{"x":42,"y":84}],"type":"coastline"},{"arc":[{"x":130762,"y":106576},{"x":-56,"y":50},{"x":-55,"y":-22},{"x":44,"y":-65},{"x":67,"y":37}],"type":"coastline"},{"arc":[{"x":130822,"y":106776},{"x":-29,"y":16},{"x":-6,"y":58},{"x":-46,"y":28},{"x":29,"y":21},{"x":-24,"y":5},{"x":36,"y":38},{"x":-13,"y":24},{"x":-95,"y":-12},{"x":-150,"y":-83},{"x":58,"y":-64},{"x":8,"y":-51},{"x":55,"y":22},{"x":58,"y":-44},{"x":119,"y":42}],"type":"coastline"},{"arc":[{"x":130912,"y":105756},{"x":-24,"y":62},{"x":-30,"y":-12},{"x":-99,"y":57},{"x":-83,"y":-16},{"x":39,"y":-66},{"x":-20,"y":-91},{"x":74,"y":-5},{"x":20,"y":-40},{"x":53,"y":17},{"x":23,"y":68},{"x":47,"y":26}],"type":"coastline"},{"arc":[{"x":131134,"y":106305},{"x":-32,"y":64},{"x":-13,"y":161},{"x":-34,"y":-23},{"x":-58,"y":46},{"x":-18,"y":-24},{"x":-70,"y":-2},{"x":-21,"y":-16},{"x":40,"y":-9},{"x":18,"y":-42},{"x":-33,"y":13},{"x":-68,"y":-31},{"x":-73,"y":-100},{"x":-185,"y":-30},{"x":-27,"y":17},{"x":-7,"y":-54},{"x":-33,"y":16},{"x":-55,"y":-21},{"x":68,"y":-47},{"x":-59,"y":-189},{"x":28,"y":-16},{"x":-8,"y":-41},{"x":68,"y":-19},{"x":33,"y":-78},{"x":61,"y":22},{"x":203,"y":-67},{"x":69,"y":22},{"x":-19,"y":12},{"x":23,"y":-7},{"x":38,"y":66},{"x":-23,"y":54},{"x":121,"y":146},{"x":66,"y":177}],"type":"coastline"},{"arc":[{"x":130867,"y":107027},{"x":-11,"y":-5},{"x":-6,"y":-3},{"x":57,"y":4},{"x":2,"y":-30},{"x":13,"y":25},{"x":34,"y":-43},{"x":19,"y":29},{"x":64,"y":-16},{"x":-26,"y":-44},{"x":-17,"y":12},{"x":-37,"y":-25},{"x":-14,"y":30},{"x":-29,"y":-82},{"x":39,"y":-93},{"x":-84,"y":-84},{"x":36,"y":-96},{"x":115,"y":-9},{"x":-27,"y":43},{"x":43,"y":59},{"x":-63,"y":45},{"x":8,"y":17},{"x":85,"y":6},{"x":17,"y":38},{"x":-22,"y":29},{"x":40,"y":56},{"x":88,"y":10}],"type":"coastline"},{"arc":[{"x":131191,"y":106900},{"x":-14,"y":33},{"x":35,"y":18},{"x":-33,"y":30},{"x":-9,"y":86},{"x":-122,"y":79},{"x":-93,"y":-28},{"x":-88,"y":-91}],"type":"area"},{"arc":[{"x":132686,"y":106366},{"x":-100,"y":-26},{"x":-54,"y":-75},{"x":-135,"y":25},{"x":11,"y":85},{"x":59,"y":60},{"x":-2,"y":70},{"x":-44,"y":48},{"x":-61,"y":-17},{"x":-50,"y":25},{"x":-32,"y":-77},{"x":-96,"y":34},{"x":-26,"y":-49},{"x":-62,"y":-15},{"x":-8,"y":-39},{"x":-96,"y":22},{"x":-37,"y":-66},{"x":24,"y":-43},{"x":-67,"y":-72},{"x":-91,"y":59},{"x":10,"y":38},{"x":-59,"y":30},{"x":-6,"y":39},{"x":-43,"y":26},{"x":51,"y":62},{"x":-57,"y":49},{"x":-100,"y":-29},{"x":8,"y":-57},{"x":62,"y":-47},{"x":-12,"y":-14},{"x":-39,"y":33},{"x":-6,"y":-31},{"x":-59,"y":30},{"x":14,"y":35},{"x":-47,"y":70},{"x":-220,"y":57}],"type":"area"},{"arc":[{"x":131316,"y":106606},{"x":-25,"y":-64},{"x":-64,"y":-13},{"x":-1,"y":-48},{"x":-60,"y":16},{"x":-33,"y":-135},{"x":21,"y":-118},{"x":-109,"y":-194},{"x":-79,"y":-219},{"x":-4,"y":-39},{"x":23,"y":8},{"x":-37,"y":-72},{"x":4,"y":-60}],"type":"coastline"},{"arc":[{"x":132781,"y":104968},{"x":-23,"y":68},{"x":26,"y":97},{"x":93,"y":139},{"x":5,"y":108},{"x":36,"y":27},{"x":-22,"y":6},{"x":199,"y":49},{"x":21,"y":60},{"x":94,"y":24}],"type":"admin"},{"arc":[{"x":133210,"y":105546},{"x":-38,"y":41},{"x":-6,"y":66},{"x":-59,"y":15},{"x":7,"y":84},{"x":-49,"y":-8},{"x":-129,"y":45},{"x":-54,"y":64},{"x":31,"y":55},{"x":-114,"y":1},{"x":15,"y":45},{"x":-49,"y":6},{"x":17,"y":63},{"x":-78,"y":13},{"x":-31,"y":65},{"x":86,"y":1},{"x":32,"y":48},{"x":-80,"y":103},{"x":50,"y":86},{"x":-75,"y":27}],"type":"area"},{"arc":[{"x":129967,"y":108903},{"x":-20,"y":40},{"x":-62,"y":-6},{"x":29,"y":-47},{"x":-39,"y":-45},{"x":66,"y":-36},{"x":26,"y":94}],"type":"coastline"},{"arc":[{"x":130405,"y":108590},{"x":-22,"y":50},{"x":-103,"y":72},{"x":6,"y":49},{"x":-55,"y":17},{"x":27,"y":-56},{"x":-54,"y":-35},{"x":42,"y":-77},{"x":3,"y":-82},{"x":69,"y":-27},{"x":41,"y":27},{"x":22,"y":-32},{"x":1,"y":53},{"x":-12,"y":-18},{"x":10,"y":23},{"x":-21,"y":3},{"x":46,"y":33}],"type":"coastline"},{"arc":[{"x":130472,"y":108907},{"x":-31,"y":6},{"x":4,"y":-24},{"x":27,"y":18}],"type":"coastline"},{"arc":[{"x":130485,"y":107035},{"x":-7,"y":26},{"x":-41,"y":-21},{"x":7,"y":17},{"x":-56,"y":-5},{"x":4,"y":28},{"x":-30,"y":-43},{"x":-122,"y":-4},{"x":-44,"y":-69},{"x":7,"y":-74},{"x":-40,"y":-100},{"x":72,"y":45},{"x":69,"y":-12},{"x":12,"y":-37},{"x":42,"y":19},{"x":127,"y":230}],"type":"coastline"},{"arc":[{"x":130661,"y":107572},{"x":-24,"y":-1},{"x":10,"y":-20},{"x":14,"y":21}],"type":"coastline"},{"arc":[{"x":130672,"y":107376},{"x":-63,"y":9},{"x":-23,"y":56},{"x":-73,"y":-2},{"x":72,"y":67},{"x":61,"y":3},{"x":13,"y":23},{"x":-34,"y":-9},{"x":-6,"y":34},{"x":33,"y":59},{"x":-182,"y":-42},{"x":-37,"y":-176},{"x":-143,"y":-191},{"x":30,"y":-68},{"x":61,"y":-19},{"x":10,"y":-29},{"x":3,"y":16},{"x":34,"y":-6},{"x":35,"y":-38},{"x":79,"y":50},{"x":95,"y":114},{"x":35,"y":149}],"type":"coastline"},{"arc":[{"x":130783,"y":108118},{"x":-23,"y":-5},{"x":15,"y":-15},{"x":8,"y":20}],"type":"coastline"},{"arc":[{"x":130875,"y":108205},{"x":-45,"y":2},{"x":2,"y":41},{"x":-30,"y":7},{"x":-63,"y":-30},{"x":-1,"y":-34},{"x":30,"y":-12},{"x":-17,"y":-18},{"x":38,"y":-11},{"x":23,"y":-66},{"x":10,"y":30},{"x":51,"y":13},{"x":2,"y":78}],"type":"coastline"},{"arc":[{"x":131230,"y":106706},{"x":7,"y":20},{"x":12,"y":-28},{"x":-19,"y":8}],"type":"coastline"},{"arc":[{"x":131404,"y":106808},{"x":-153,"y":-45},{"x":-8,"y":-20},{"x":159,"y":63},{"x":-24,"y":-64},{"x":26,"y":66}],"type":"coastline"},{"arc":[{"x":132035,"y":108698},{"x":78,"y":-29},{"x":-81,"y":-13},{"x":-36,"y":30},{"x":-347,"y":-2},{"x":-58,"y":-29},{"x":178,"y":-292},{"x":242,"y":8},{"x":1,"y":-70},{"x":-101,"y":30},{"x":-110,"y":-49},{"x":-57,"y":16},{"x":-178,"y":276},{"x":-43,"y":-20},{"x":-45,"y":78},{"x":-154,"y":-95},{"x":175,"y":-216},{"x":-30,"y":-58},{"x":-92,"y":30},{"x":-19,"y":-122},{"x":-63,"y":-49},{"x":-13,"y":-46},{"x":23,"y":-2},{"x":-347,"y":-66},{"x":-60,"y":9},{"x":-31,"y":32},{"x":-79,"y":-2},{"x":-18,"y":-27},{"x":35,"y":3},{"x":-12,"y":-34},{"x":-22,"y":-9},{"x":-16,"y":22},{"x":-37,"y":-45},{"x":-2,"y":41},{"x":-20,"y":-83},{"x":-72,"y":-42},{"x":7,"y":-97},{"x":-48,"y":-120},{"x":93,"y":22},{"x":72,"y":-48},{"x":31,"y":-90},{"x":-32,"y":-23},{"x":22,"y":-15},{"x":-9,"y":-72},{"x":-31,"y":5},{"x":-7,"y":-20},{"x":51,"y":-42},{"x":58,"y":-99},{"x":-20,"y":-12},{"x":21,"y":11},{"x":-10,"y":-22},{"x":19,"y":11},{"x":21,"y":-22},{"x":-21,"y":3},{"x":19,"y":-14},{"x":-25,"y":-51},{"x":-30,"y":11},{"x":36,"y":-45},{"x":-37,"y":-9},{"x":29,"y":-58},{"x":-24,"y":4},{"x":58,"y":-54}],"type":"coastline"},{"arc":[{"x":131191,"y":106900},{"x":68,"y":9},{"x":88,"y":-46},{"x":42,"y":24},{"x":44,"y":-14},{"x":41,"y":-134},{"x":32,"y":3},{"x":7,"y":-33},{"x":38,"y":28},{"x":-8,"y":-62},{"x":-171,"y":54},{"x":-55,"y":-25},{"x":-11,"y":-27},{"x":173,"y":-43},{"x":-6,"y":-54},{"x":-157,"y":26}],"type":"coastline"},{"arc":[{"x":132686,"y":106366},{"x":-57,"y":61},{"x":23,"y":78},{"x":46,"y":8},{"x":73,"y":112},{"x":93,"y":47},{"x":29,"y":127},{"x":98,"y":69},{"x":142,"y":-75},{"x":36,"y":41},{"x":81,"y":-5},{"x":60,"y":-86},{"x":79,"y":-11},{"x":26,"y":-62},{"x":69,"y":-37},{"x":89,"y":-104},{"x":41,"y":12},{"x":116,"y":-61},{"x":47,"y":33},{"x":68,"y":7},{"x":118,"y":-70},{"x":49,"y":65},{"x":63,"y":1}],"type":"area"},{"arc":[{"x":134075,"y":106516},{"x":-3,"y":54},{"x":76,"y":57},{"x":-4,"y":66},{"x":65,"y":18},{"x":-40,"y":52},{"x":26,"y":26},{"x":1,"y":-26},{"x":89,"y":48},{"x":63,"y":4},{"x":37,"y":52},{"x":-22,"y":112},{"x":-64,"y":36},{"x":126,"y":28},{"x":-119,"y":52},{"x":-180,"y":-16},{"x":-19,"y":65},{"x":55,"y":80},{"x":-56,"y":4},{"x":-76,"y":46},{"x":-17,"y":50},{"x":45,"y":46},{"x":39,"y":-17},{"x":81,"y":13},{"x":82,"y":44},{"x":124,"y":161},{"x":63,"y":21},{"x":74,"y":-38},{"x":37,"y":22},{"x":-18,"y":76},{"x":21,"y":19},{"x":24,"y":-12},{"x":28,"y":62},{"x":72,"y":45},{"x":-13,"y":71},{"x":24,"y":50},{"x":45,"y":-35},{"x":25,"y":8},{"x":-12,"y":30},{"x":65,"y":-21},{"x":148,"y":-106},{"x":-26,"y":91},{"x":24,"y":55}],"type":"admin"},{"arc":[{"x":135509,"y":105791},{"x":-91,"y":-13},{"x":-89,"y":17},{"x":-66,"y":-20},{"x":-38,"y":-47},{"x":-61,"y":-5},{"x":1,"y":39},{"x":-42,"y":-2},{"x":-15,"y":33},{"x":-35,"y":-17},{"x":-67,"y":61},{"x":-13,"y":29},{"x":41,"y":35},{"x":-99,"y":54},{"x":0,"y":80},{"x":-24,"y":-5},{"x":-20,"y":43},{"x":-145,"y":82},{"x":-36,"y":-4},{"x":-18,"y":-49},{"x":-48,"y":10},{"x":-19,"y":-97},{"x":-88,"y":-48},{"x":-63,"y":2},{"x":10,"y":61},{"x":-28,"y":33},{"x":-74,"y":-29},{"x":-31,"y":-42},{"x":-77,"y":173},{"x":-116,"y":117},{"x":7,"y":41},{"x":-33,"y":27},{"x":40,"y":57},{"x":-13,"y":50},{"x":-84,"y":59}],"type":"admin"},{"arc":[{"x":133210,"y":105546},{"x":65,"y":7},{"x":45,"y":-84},{"x":29,"y":2},{"x":57,"y":123},{"x":52,"y":-8},{"x":45,"y":67},{"x":95,"y":60},{"x":98,"y":-31},{"x":12,"y":45},{"x":105,"y":25},{"x":124,"y":-45},{"x":107,"y":-158},{"x":-33,"y":-39},{"x":16,"y":-159},{"x":87,"y":7},{"x":3,"y":-58},{"x":25,"y":4},{"x":60,"y":-78},{"x":70,"y":-33},{"x":71,"y":-228}],"type":"admin"},{"arc":[{"x":134343,"y":104965},{"x":72,"y":-24},{"x":97,"y":25},{"x":34,"y":61},{"x":136,"y":21},{"x":46,"y":80},{"x":132,"y":-50},{"x":95,"y":54},{"x":50,"y":-1},{"x":54,"y":-39},{"x":112,"y":16},{"x":85,"y":57}],"type":"area"},{"arc":[{"x":135256,"y":105165},{"x":7,"y":145},{"x":70,"y":8},{"x":49,"y":73},{"x":27,"y":-11},{"x":51,"y":26},{"x":60,"y":69},{"x":-21,"y":149},{"x":44,"y":105},{"x":-32,"y":17},{"x":-2,"y":45}],"type":"area"},{"arc":[{"x":134343,"y":104965},{"x":-56,"y":-51},{"x":-6,"y":-82},{"x":-53,"y":-36},{"x":23,"y":-27},{"x":-43,"y":-46},{"x":88,"y":-23},{"x":-20,"y":-128},{"x":46,"y":-15},{"x":87,"y":-114},{"x":61,"y":-148},{"x":64,"y":-19},{"x":28,"y":-42},{"x":-47,"y":-60},{"x":22,"y":-61},{"x":-32,"y":-72},{"x":21,"y":-116},{"x":-103,"y":-30},{"x":5,"y":-61},{"x":-56,"y":-72},{"x":-39,"y":-14},{"x":-43,"y":37},{"x":-3,"y":-37},{"x":-13,"y":29},{"x":-36,"y":0},{"x":72,"y":-131},{"x":-106,"y":-43},{"x":41,"y":-5},{"x":29,"y":-89},{"x":61,"y":24},{"x":18,"y":-70},{"x":76,"y":29},{"x":39,"y":-31},{"x":125,"y":-21},{"x":-36,"y":-97},{"x":-51,"y":-35},{"x":68,"y":-113},{"x":33,"y":-247},{"x":-34,"y":-31},{"x":-18,"y":31},{"x":-56,"y":-12},{"x":-13,"y":-44},{"x":-78,"y":-8},{"x":-55,"y":-67},{"x":-229,"y":34},{"x":36,"y":-71},{"x":-21,"y":-21},{"x":-119,"y":-4},{"x":-73,"y":66},{"x":-66,"y":-65},{"x":-51,"y":12},{"x":28,"y":-31},{"x":-40,"y":-31},{"x":-11,"y":38},{"x":-79,"y":55}],"type":"admin"},{"arc":[{"x":133728,"y":102799},{"x":-2,"y":-60},{"x":-59,"y":-79},{"x":54,"y":-36},{"x":-41,"y":-74},{"x":25,"y":-44},{"x":-22,"y":-29},{"x":-53,"y":2},{"x":-13,"y":-92},{"x":68,"y":-17},{"x":5,"y":-105},{"x":41,"y":-8},{"x":39,"y":-90},{"x":85,"y":-59},{"x":-31,"y":-118}],"type":"area"},{"arc":[{"x":133824,"y":101990},{"x":105,"y":-11},{"x":136,"y":-149},{"x":193,"y":43},{"x":12,"y":38},{"x":171,"y":70},{"x":19,"y":61},{"x":79,"y":-40},{"x":51,"y":67},{"x":126,"y":13},{"x":76,"y":-200},{"x":9,"y":-117},{"x":53,"y":-77},{"x":235,"y":47},{"x":96,"y":100},{"x":132,"y":16},{"x":34,"y":48},{"x":51,"y":-59},{"x":34,"y":0},{"x":2,"y":-167},{"x":78,"y":-26},{"x":36,"y":60},{"x":44,"y":-48},{"x":43,"y":41},{"x":63,"y":14},{"x":44,"y":67},{"x":42,"y":-17},{"x":166,"y":35},{"x":91,"y":-16},{"x":111,"y":35},{"x":24,"y":-216},{"x":126,"y":-483},{"x":-38,"y":-104},{"x":20,"y":-75},{"x":36,"y":-11},{"x":114,"y":53},{"x":10,"y":187},{"x":57,"y":46},{"x":125,"y":-22},{"x":13,"y":-62},{"x":69,"y":-46}],"type":"area"},{"arc":[{"x":138500,"y":101668},{"x":-11,"y":45},{"x":63,"y":130},{"x":-23,"y":74},{"x":-64,"y":40},{"x":-12,"y":179},{"x":77,"y":42},{"x":139,"y":169},{"x":-8,"y":84},{"x":-113,"y":22},{"x":-21,"y":-45},{"x":-68,"y":23},{"x":-58,"y":-11},{"x":-12,"y":-34},{"x":-29,"y":12},{"x":-30,"y":-73},{"x":-205,"y":20},{"x":-40,"y":53},{"x":-87,"y":-45},{"x":-26,"y":53},{"x":-68,"y":17},{"x":-27,"y":37},{"x":40,"y":57},{"x":-16,"y":18},{"x":-68,"y":29},{"x":-11,"y":-30},{"x":-69,"y":-3},{"x":-48,"y":-61},{"x":-26,"y":5},{"x":-68,"y":65},{"x":23,"y":42},{"x":-11,"y":75},{"x":-113,"y":108},{"x":-169,"y":44},{"x":-94,"y":-12},{"x":-39,"y":171},{"x":-138,"y":-27},{"x":-78,"y":-85},{"x":-129,"y":43},{"x":-76,"y":-22},{"x":-252,"y":279},{"x":-61,"y":22},{"x":-53,"y":82},{"x":-32,"y":-30},{"x":-62,"y":135},{"x":-135,"y":75},{"x":21,"y":40},{"x":-27,"y":33},{"x":-60,"y":49},{"x":-95,"y":-14},{"x":-38,"y":27},{"x":61,"y":31},{"x":117,"y":137},{"x":84,"y":8},{"x":126,"y":100},{"x":-96,"y":11},{"x":-53,"y":52},{"x":-37,"y":-8},{"x":-2,"y":90},{"x":-75,"y":60},{"x":-48,"y":99},{"x":-38,"y":23},{"x":-23,"y":-23},{"x":-20,"y":68},{"x":-75,"y":-3},{"x":24,"y":66},{"x":-41,"y":109},{"x":-28,"y":4},{"x":-30,"y":-56},{"x":-67,"y":26},{"x":-24,"y":-48},{"x":-53,"y":-6},{"x":-13,"y":-74},{"x":-67,"y":-1},{"x":-46,"y":169},{"x":-85,"y":15},{"x":-26,"y":28},{"x":27,"y":98},{"x":-18,"y":32},{"x":46,"y":27},{"x":6,"y":52},{"x":107,"y":46},{"x":37,"y":-47},{"x":56,"y":-9},{"x":27,"y":53},{"x":-36,"y":71},{"x":-26,"y":-5},{"x":-10,"y":77},{"x":3,"y":46},{"x":64,"y":15},{"x":9,"y":30},{"x":-67,"y":18},{"x":-49,"y":230},{"x":-99,"y":-11},{"x":-6,"y":36},{"x":-97,"y":-4},{"x":-90,"y":-57},{"x":-39,"y":30},{"x":-47,"y":-15}],"type":"area"},{"arc":[{"x":136752,"y":107478},{"x":0,"y":-83},{"x":-69,"y":-70},{"x":-3,"y":-46},{"x":24,"y":-60},{"x":-16,"y":-52},{"x":73,"y":-100},{"x":-27,"y":-44},{"x":28,"y":-77},{"x":-49,"y":-50},{"x":-31,"y":48},{"x":-115,"y":-46},{"x":-34,"y":34},{"x":-100,"y":-124},{"x":-35,"y":-107},{"x":-37,"y":-2},{"x":-19,"y":-72},{"x":-125,"y":-14},{"x":114,"y":-64},{"x":0,"y":-72},{"x":33,"y":5},{"x":3,"y":-24},{"x":62,"y":53},{"x":87,"y":-10},{"x":26,"y":-48},{"x":43,"y":-15},{"x":47,"y":25},{"x":9,"y":-54},{"x":17,"y":22},{"x":71,"y":-60},{"x":27,"y":11},{"x":23,"y":-32},{"x":19,"y":17},{"x":17,"y":-57},{"x":44,"y":-1},{"x":-5,"y":-58},{"x":-125,"y":-160},{"x":10,"y":-82},{"x":-40,"y":-111},{"x":64,"y":-135},{"x":-124,"y":-73},{"x":-64,"y":-141},{"x":-28,"y":22},{"x":-94,"y":-22},{"x":-42,"y":-75},{"x":-144,"y":46},{"x":-62,"y":57},{"x":-74,"y":-38},{"x":-75,"y":-6},{"x":18,"y":-30},{"x":-64,"y":-26},{"x":-26,"y":31},{"x":-76,"y":-3},{"x":-53,"y":117},{"x":-194,"y":190},{"x":-152,"y":-21}],"type":"admin"},{"arc":[{"x":127463,"y":97040},{"x":41,"y":-62}],"type":"admin"},{"arc":[{"x":127504,"y":96978},{"x":24,"y":48},{"x":-65,"y":14}],"type":"coastline"},{"arc":[{"x":128480,"y":96804},{"x":-72,"y":63},{"x":43,"y":19},{"x":23,"y":70},{"x":-47,"y":27},{"x":2,"y":-15},{"x":-11,"y":51},{"x":-57,"y":23},{"x":-42,"y":-29},{"x":7,"y":-88},{"x":-35,"y":-29},{"x":2,"y":-48},{"x":60,"y":0},{"x":-28,"y":-57},{"x":25,"y":-29},{"x":130,"y":42}],"type":"coastline"},{"arc":[{"x":128498,"y":97043},{"x":-50,"y":8},{"x":-22,"y":-48},{"x":24,"y":15},{"x":28,"y":-18},{"x":20,"y":43}],"type":"coastline"},{"arc":[{"x":128942,"y":96487},{"x":-29,"y":4},{"x":-1,"y":-20},{"x":30,"y":16}],"type":"coastline"},{"arc":[{"x":129769,"y":95634},{"x":-21,"y":32},{"x":-30,"y":-24},{"x":30,"y":14},{"x":21,"y":-22}],"type":"area"},{"arc":[{"x":129788,"y":95615},{"x":-82,"y":-81},{"x":-2,"y":-46},{"x":-71,"y":-35},{"x":93,"y":6},{"x":5,"y":65},{"x":57,"y":91}],"type":"area"},{"arc":[{"x":129761,"y":95723},{"x":-26,"y":33},{"x":9,"y":-36},{"x":-68,"y":-29},{"x":135,"y":23},{"x":-50,"y":9}],"type":"area"},{"arc":[{"x":129813,"y":96020},{"x":-68,"y":9},{"x":38,"y":49},{"x":-28,"y":44},{"x":-20,"y":-56},{"x":-49,"y":24},{"x":36,"y":-40},{"x":-16,"y":-28},{"x":-117,"y":14},{"x":11,"y":-21},{"x":149,"y":-13},{"x":0,"y":-56},{"x":24,"y":14},{"x":-6,"y":47},{"x":73,"y":0},{"x":-27,"y":13}],"type":"area"},{"arc":[{"x":129265,"y":96208},{"x":-69,"y":-81},{"x":-21,"y":-2},{"x":21,"y":29},{"x":-26,"y":-19},{"x":34,"y":27},{"x":-132,"y":-86},{"x":-20,"y":29},{"x":-115,"y":-16},{"x":13,"y":-43},{"x":-47,"y":-26},{"x":-89,"y":159},{"x":18,"y":29},{"x":-153,"y":89},{"x":-16,"y":-26},{"x":-39,"y":6}],"type":"coastline"},{"arc":[{"x":128624,"y":96277},{"x":-32,"y":-257},{"x":-71,"y":-109},{"x":66,"y":-78},{"x":-44,"y":-65},{"x":34,"y":-31}],"type":"admin"},{"arc":[{"x":128577,"y":95737},{"x":234,"y":124},{"x":40,"y":-5},{"x":-44,"y":-53},{"x":28,"y":-30},{"x":41,"y":11},{"x":-2,"y":-49},{"x":-50,"y":4},{"x":43,"y":-132},{"x":-60,"y":-91},{"x":35,"y":-48},{"x":15,"y":37},{"x":57,"y":0},{"x":4,"y":-114},{"x":-51,"y":5},{"x":-8,"y":-35},{"x":100,"y":-70},{"x":-4,"y":-61},{"x":172,"y":32},{"x":80,"y":-11},{"x":49,"y":-64},{"x":144,"y":-68},{"x":164,"y":67},{"x":120,"y":-107},{"x":-44,"y":-43},{"x":65,"y":31},{"x":8,"y":-47},{"x":92,"y":57},{"x":22,"y":-43}],"type":"admin"},{"arc":[{"x":129827,"y":95034},{"x":128,"y":42},{"x":-20,"y":27},{"x":39,"y":60},{"x":-83,"y":64},{"x":101,"y":48},{"x":148,"y":0},{"x":-10,"y":129},{"x":21,"y":26},{"x":-66,"y":15},{"x":-29,"y":53},{"x":-93,"y":-1},{"x":-54,"y":-28},{"x":-68,"y":43},{"x":-34,"y":-44},{"x":-109,"y":-39},{"x":-88,"y":18},{"x":-114,"y":237},{"x":13,"y":54},{"x":97,"y":36},{"x":26,"y":37},{"x":-25,"y":54},{"x":48,"y":99},{"x":-70,"y":48},{"x":-31,"y":-5},{"x":26,"y":22},{"x":-38,"y":-1},{"x":-79,"y":115},{"x":-78,"y":4},{"x":-120,"y":61}],"type":"area"},{"arc":[{"x":130144,"y":95784},{"x":-127,"y":-47},{"x":125,"y":13},{"x":2,"y":34}],"type":"area"},{"arc":[{"x":129520,"y":102073},{"x":-25,"y":-11},{"x":26,"y":42},{"x":-72,"y":22},{"x":-93,"y":-83},{"x":64,"y":-140},{"x":52,"y":50},{"x":48,"y":120}],"type":"coastline"},{"arc":[{"x":129619,"y":102197},{"x":-32,"y":-36},{"x":24,"y":-10},{"x":32,"y":38},{"x":-24,"y":8}],"type":"coastline"},{"arc":[{"x":129698,"y":102065},{"x":-40,"y":8},{"x":27,"y":-42},{"x":13,"y":34}],"type":"coastline"},{"arc":[{"x":133728,"y":102799},{"x":-18,"y":99},{"x":-117,"y":-86},{"x":-9,"y":79},{"x":-61,"y":20},{"x":-34,"y":67},{"x":-29,"y":13},{"x":13,"y":-13},{"x":-26,"y":-3},{"x":-5,"y":31},{"x":-53,"y":-18},{"x":-53,"y":14}],"type":"admin"},{"arc":[{"x":129711,"y":102574},{"x":-10,"y":-28},{"x":-32,"y":8},{"x":-19,"y":-61},{"x":100,"y":-6},{"x":-18,"y":-37},{"x":81,"y":-81},{"x":103,"y":28},{"x":-2,"y":-50},{"x":44,"y":17},{"x":-27,"y":-29},{"x":26,"y":-82},{"x":-22,"y":22},{"x":-1,"y":-20},{"x":36,"y":-39},{"x":-14,"y":13},{"x":11,"y":-44},{"x":-26,"y":22},{"x":26,"y":-51},{"x":-28,"y":-30},{"x":-40,"y":23},{"x":-35,"y":-131},{"x":49,"y":-19},{"x":-25,"y":-28},{"x":-27,"y":43},{"x":-29,"y":-43},{"x":-21,"y":15},{"x":-107,"y":-26},{"x":21,"y":-16},{"x":-127,"y":-38},{"x":-17,"y":-28},{"x":-104,"y":14},{"x":19,"y":-26},{"x":-33,"y":-10}],"type":"coastline"},{"arc":[{"x":129965,"y":100012},{"x":68,"y":-12},{"x":35,"y":67},{"x":36,"y":13},{"x":183,"y":-53},{"x":15,"y":45},{"x":119,"y":91},{"x":6,"y":63}],"type":"admin"},{"arc":[{"x":132738,"y":100935},{"x":37,"y":73},{"x":96,"y":27},{"x":38,"y":-34},{"x":19,"y":48},{"x":44,"y":25},{"x":-12,"y":130},{"x":64,"y":49},{"x":-32,"y":32},{"x":19,"y":61},{"x":105,"y":104},{"x":67,"y":16},{"x":42,"y":65},{"x":19,"y":189},{"x":54,"y":119},{"x":41,"y":16},{"x":174,"y":-9},{"x":87,"y":65},{"x":14,"y":-21},{"x":23,"y":41},{"x":86,"y":1},{"x":101,"y":58}],"type":"area"},{"arc":[{"x":129897,"y":97188},{"x":-80,"y":10},{"x":6,"y":41},{"x":-35,"y":26},{"x":-64,"y":-10},{"x":-59,"y":87},{"x":-155,"y":-14},{"x":-36,"y":-64},{"x":-64,"y":-7},{"x":-4,"y":-51},{"x":-187,"y":-220},{"x":-177,"y":-116},{"x":-154,"y":-298},{"x":140,"y":-53},{"x":64,"y":8},{"x":52,"y":-78},{"x":58,"y":17},{"x":21,"y":65},{"x":-22,"y":14},{"x":66,"y":14},{"x":19,"y":47},{"x":106,"y":62},{"x":113,"y":13},{"x":89,"y":57},{"x":115,"y":204},{"x":-13,"y":106},{"x":23,"y":-13},{"x":61,"y":28},{"x":117,"y":125}],"type":"coastline"},{"arc":[{"x":130470,"y":97326},{"x":-24,"y":10},{"x":-23,"y":-49},{"x":16,"y":-51},{"x":-31,"y":49},{"x":22,"y":73}],"type":"coastline"},{"arc":[{"x":130372,"y":97409},{"x":-17,"y":-21},{"x":44,"y":-19},{"x":-61,"y":-130},{"x":16,"y":-30},{"x":-69,"y":33},{"x":33,"y":74},{"x":-36,"y":16},{"x":45,"y":114},{"x":41,"y":-18},{"x":-17,"y":-38},{"x":18,"y":39},{"x":-42,"y":18},{"x":-96,"y":-227},{"x":82,"y":-36},{"x":-19,"y":-42},{"x":18,"y":-25},{"x":-74,"y":-44},{"x":13,"y":-26},{"x":-22,"y":-4},{"x":-5,"y":40},{"x":-10,"y":-39},{"x":-53,"y":15},{"x":-112,"y":-23},{"x":-73,"y":-63},{"x":-10,"y":-43},{"x":-16,"y":15},{"x":16,"y":-15},{"x":-36,"y":-37},{"x":-18,"y":12},{"x":35,"y":37},{"x":-71,"y":-50},{"x":3,"y":-34},{"x":-57,"y":-11},{"x":-53,"y":-102},{"x":-233,"y":-123},{"x":-33,"y":-45},{"x":19,"y":-27},{"x":-35,"y":21},{"x":-29,"y":-36},{"x":19,"y":-35},{"x":38,"y":-5},{"x":-39,"y":-25},{"x":-5,"y":29},{"x":-30,"y":-1},{"x":-34,"y":-27},{"x":16,"y":-49},{"x":-18,"y":10},{"x":-38,"y":-78},{"x":-60,"y":-35},{"x":-42,"y":-111}],"type":"coastline"},{"arc":[{"x":129827,"y":95034},{"x":71,"y":-27},{"x":41,"y":21},{"x":65,"y":-8},{"x":32,"y":54},{"x":136,"y":-20},{"x":6,"y":-58},{"x":-38,"y":-26},{"x":-31,"y":-120},{"x":108,"y":-67},{"x":108,"y":4},{"x":79,"y":-87},{"x":7,"y":-54},{"x":76,"y":-26},{"x":-30,"y":-88},{"x":10,"y":-72},{"x":114,"y":23},{"x":70,"y":-17},{"x":36,"y":46},{"x":44,"y":-24},{"x":135,"y":54},{"x":40,"y":-83},{"x":141,"y":51},{"x":176,"y":-61},{"x":121,"y":90},{"x":7,"y":-24},{"x":71,"y":-3},{"x":145,"y":64},{"x":190,"y":-99},{"x":58,"y":-5},{"x":26,"y":-32},{"x":35,"y":7}],"type":"admin"},{"arc":[{"x":133337,"y":95036},{"x":-131,"y":88},{"x":-7,"y":42},{"x":-112,"y":47},{"x":15,"y":72},{"x":-85,"y":56},{"x":-110,"y":12},{"x":-86,"y":75},{"x":3,"y":223},{"x":-93,"y":-35},{"x":-70,"y":-98},{"x":-84,"y":-57},{"x":-48,"y":49},{"x":-28,"y":-8},{"x":-54,"y":85},{"x":-38,"y":0},{"x":-146,"y":104}],"type":"admin"},{"arc":[{"x":133343,"y":99363},{"x":104,"y":164},{"x":1,"y":74},{"x":76,"y":51},{"x":53,"y":23},{"x":15,"y":-29},{"x":116,"y":-18},{"x":97,"y":62},{"x":47,"y":-30},{"x":96,"y":22},{"x":79,"y":81},{"x":89,"y":18},{"x":17,"y":41},{"x":47,"y":1},{"x":37,"y":39},{"x":83,"y":-55},{"x":46,"y":3},{"x":29,"y":-39},{"x":65,"y":59},{"x":58,"y":6},{"x":3,"y":84},{"x":78,"y":2},{"x":48,"y":60},{"x":53,"y":-29},{"x":2,"y":-74},{"x":-69,"y":-64},{"x":120,"y":-31},{"x":44,"y":-102},{"x":78,"y":8},{"x":61,"y":53},{"x":134,"y":-37},{"x":121,"y":46},{"x":9,"y":50},{"x":58,"y":5},{"x":111,"y":-81},{"x":35,"y":-109},{"x":91,"y":-26},{"x":9,"y":36},{"x":45,"y":15},{"x":99,"y":-15},{"x":83,"y":-107},{"x":75,"y":-41},{"x":41,"y":22},{"x":0,"y":-77},{"x":85,"y":-5},{"x":61,"y":-123},{"x":45,"y":5}],"type":"admin"},{"arc":[{"x":127652,"y":98102},{"x":-61,"y":-34},{"x":17,"y":-30},{"x":48,"y":30},{"x":-4,"y":34}],"type":"coastline"},{"arc":[{"x":127989,"y":98280},{"x":-45,"y":-3},{"x":-48,"y":39},{"x":-83,"y":-136},{"x":54,"y":-22},{"x":21,"y":39},{"x":25,"y":-21},{"x":76,"y":104}],"type":"coastline"},{"arc":[{"x":128204,"y":97724},{"x":-46,"y":106},{"x":-40,"y":23},{"x":32,"y":44},{"x":-49,"y":12},{"x":-18,"y":35},{"x":23,"y":66},{"x":-35,"y":-25},{"x":-109,"y":68},{"x":-99,"y":-38},{"x":-54,"y":-166},{"x":41,"y":-104},{"x":52,"y":-5},{"x":36,"y":-40},{"x":112,"y":9},{"x":76,"y":-26},{"x":69,"y":15},{"x":9,"y":26}],"type":"coastline"},{"arc":[{"x":129017,"y":97407},{"x":-37,"y":36},{"x":-39,"y":-6},{"x":48,"y":-47},{"x":28,"y":17}],"type":"coastline"},{"arc":[{"x":129499,"y":97570},{"x":-8,"y":80},{"x":-42,"y":8},{"x":-30,"y":-21},{"x":25,"y":-75},{"x":-28,"y":-52},{"x":39,"y":-39},{"x":44,"y":99}],"type":"coastline"},{"arc":[{"x":129650,"y":97484},{"x":-45,"y":10},{"x":9,"y":-25},{"x":36,"y":15}],"type":"coastline"},{"arc":[{"x":129707,"y":98698},{"x":-105,"y":24},{"x":-61,"y":86},{"x":-21,"y":-12},{"x":-103,"y":77},{"x":-79,"y":24},{"x":-82,"y":-34},{"x":-74,"y":14},{"x":-98,"y":-65},{"x":-68,"y":37},{"x":8,"y":34},{"x":-57,"y":-18},{"x":-4,"y":-23},{"x":-67,"y":23},{"x":-16,"y":-26},{"x":-24,"y":6},{"x":22,"y":-13},{"x":-30,"y":-11},{"x":-1,"y":24},{"x":-2,"y":-25},{"x":-108,"y":-23},{"x":-220,"y":4},{"x":-31,"y":-37},{"x":12,"y":-28},{"x":-113,"y":-40},{"x":45,"y":-28},{"x":-10,"y":-36},{"x":-58,"y":15},{"x":-91,"y":-30},{"x":-21,"y":28},{"x":10,"y":-19},{"x":-30,"y":-7},{"x":-6,"y":26},{"x":-2,"y":-34},{"x":-6,"y":66},{"x":-91,"y":20},{"x":-20,"y":38},{"x":-12,"y":-22},{"x":-9,"y":32},{"x":-49,"y":-2},{"x":-44,"y":41},{"x":-141,"y":30},{"x":-15,"y":-37},{"x":-25,"y":25},{"x":-32,"y":-36},{"x":-21,"y":38},{"x":-7,"y":-42},{"x":40,"y":-40},{"x":-134,"y":-223},{"x":-5,"y":-65},{"x":35,"y":-50},{"x":-53,"y":-33},{"x":91,"y":-1},{"x":-53,"y":-27},{"x":-87,"y":-152},{"x":138,"y":91},{"x":45,"y":-8},{"x":119,"y":91},{"x":22,"y":-28},{"x":99,"y":38},{"x":62,"y":-9},{"x":-30,"y":16},{"x":33,"y":13},{"x":11,"y":-23},{"x":-4,"y":36},{"x":22,"y":-39},{"x":-28,"y":-10},{"x":30,"y":-14},{"x":122,"y":12},{"x":22,"y":66},{"x":-34,"y":-1},{"x":3,"y":42},{"x":-38,"y":10},{"x":30,"y":11},{"x":151,"y":-154},{"x":35,"y":-15},{"x":-30,"y":32},{"x":65,"y":-14},{"x":8,"y":-51},{"x":-28,"y":-23},{"x":-180,"y":-19},{"x":-81,"y":-49},{"x":83,"y":-13},{"x":13,"y":-55},{"x":149,"y":8},{"x":71,"y":-30},{"x":-6,"y":-35},{"x":43,"y":-20},{"x":44,"y":-76},{"x":-30,"y":9},{"x":307,"y":-247},{"x":46,"y":7},{"x":18,"y":47},{"x":99,"y":-21},{"x":12,"y":15},{"x":104,"y":-43},{"x":57,"y":-70},{"x":-7,"y":34},{"x":19,"y":-68},{"x":60,"y":-28},{"x":77,"y":53},{"x":-56,"y":6},{"x":-21,"y":47},{"x":2,"y":-21},{"x":-28,"y":0},{"x":7,"y":36},{"x":25,"y":-15},{"x":23,"y":75},{"x":-1,"y":183},{"x":-29,"y":-15},{"x":24,"y":69},{"x":-30,"y":75},{"x":-44,"y":58},{"x":-160,"y":58},{"x":-59,"y":53},{"x":-23,"y":-13},{"x":12,"y":23},{"x":-18,"y":-15},{"x":-21,"y":32},{"x":-28,"y":-16},{"x":-13,"y":23},{"x":-10,"y":-20},{"x":5,"y":19},{"x":-59,"y":-2},{"x":-27,"y":43},{"x":12,"y":58},{"x":48,"y":10},{"x":-14,"y":46},{"x":56,"y":35},{"x":-185,"y":72},{"x":-31,"y":53},{"x":-62,"y":7},{"x":-6,"y":37},{"x":293,"y":58},{"x":163,"y":-91},{"x":81,"y":-122},{"x":-10,"y":16},{"x":26,"y":-17},{"x":-1,"y":20},{"x":59,"y":-50},{"x":-22,"y":-45},{"x":-102,"y":-16},{"x":-20,"y":-105},{"x":62,"y":-72},{"x":46,"y":-4},{"x":92,"y":107},{"x":69,"y":28},{"x":46,"y":-17},{"x":64,"y":-86},{"x":135,"y":-17},{"x":2,"y":53},{"x":40,"y":27},{"x":-58,"y":66},{"x":39,"y":136},{"x":-10,"y":122},{"x":-45,"y":16},{"x":21,"y":59},{"x":106,"y":-10},{"x":5,"y":-19},{"x":30,"y":21}],"type":"coastline"},{"arc":[{"x":130697,"y":99722},{"x":-232,"y":-43},{"x":-163,"y":-141},{"x":10,"y":-68}],"type":"area"},{"arc":[{"x":130486,"y":99104},{"x":20,"y":61},{"x":43,"y":-25},{"x":-14,"y":-44}],"type":"coastline"},{"arc":[{"x":129713,"y":98988},{"x":78,"y":-30},{"x":-1,"y":-28},{"x":52,"y":-11},{"x":44,"y":-48},{"x":73,"y":-22},{"x":92,"y":46},{"x":25,"y":44},{"x":139,"y":14},{"x":20,"y":-50},{"x":-50,"y":-28},{"x":1,"y":-34},{"x":58,"y":-21},{"x":28,"y":33},{"x":91,"y":17},{"x":31,"y":68},{"x":-21,"y":49},{"x":-65,"y":40},{"x":0,"y":51},{"x":21,"y":9},{"x":0,"y":-34},{"x":92,"y":-55},{"x":10,"y":16}],"type":"coastline"},{"arc":[{"x":134236,"y":95189},{"x":-174,"y":81},{"x":44,"y":124},{"x":-32,"y":26},{"x":56,"y":133},{"x":-26,"y":35},{"x":98,"y":-30},{"x":134,"y":98},{"x":150,"y":36},{"x":-12,"y":95},{"x":-129,"y":73},{"x":14,"y":107},{"x":54,"y":18},{"x":12,"y":39},{"x":41,"y":-18},{"x":110,"y":78},{"x":-28,"y":206},{"x":-53,"y":51},{"x":-39,"y":-21},{"x":-24,"y":33},{"x":19,"y":54},{"x":-65,"y":13},{"x":-64,"y":60},{"x":6,"y":25},{"x":82,"y":21},{"x":35,"y":51},{"x":105,"y":54},{"x":6,"y":53},{"x":74,"y":57},{"x":-109,"y":109},{"x":24,"y":31},{"x":42,"y":6},{"x":23,"y":50},{"x":20,"y":-20},{"x":40,"y":22},{"x":30,"y":-18},{"x":15,"y":34},{"x":211,"y":78},{"x":8,"y":64},{"x":35,"y":4},{"x":4,"y":33},{"x":33,"y":-10},{"x":-2,"y":55},{"x":-40,"y":21},{"x":-5,"y":42},{"x":-126,"y":64},{"x":-54,"y":135},{"x":-96,"y":-64},{"x":-140,"y":29},{"x":-19,"y":39},{"x":-34,"y":3},{"x":-75,"y":-41},{"x":-58,"y":-1},{"x":-95,"y":-101},{"x":-120,"y":93},{"x":-54,"y":-37},{"x":-107,"y":97},{"x":-153,"y":5},{"x":-71,"y":-39},{"x":-29,"y":34},{"x":1,"y":78},{"x":-87,"y":55},{"x":52,"y":56},{"x":-30,"y":119},{"x":42,"y":39},{"x":-13,"y":84},{"x":-113,"y":33}],"type":"area"},{"arc":[{"x":128871,"y":102036},{"x":-21,"y":20},{"x":-36,"y":-35},{"x":57,"y":15}],"type":"coastline"},{"arc":[{"x":129184,"y":102657},{"x":-63,"y":-8},{"x":40,"y":-13},{"x":23,"y":21}],"type":"coastline"},{"arc":[{"x":129191,"y":102426},{"x":-27,"y":-10},{"x":9,"y":-41},{"x":18,"y":51}],"type":"coastline"},{"arc":[{"x":129392,"y":102729},{"x":-38,"y":15},{"x":-4,"y":56},{"x":-19,"y":-26},{"x":-67,"y":-4},{"x":-37,"y":46},{"x":-46,"y":-29},{"x":35,"y":-43},{"x":-8,"y":-23},{"x":33,"y":-24},{"x":-24,"y":29},{"x":21,"y":-15},{"x":53,"y":13},{"x":6,"y":-59},{"x":64,"y":23},{"x":-16,"y":37},{"x":47,"y":4}],"type":"coastline"},{"arc":[{"x":129397,"y":102916},{"x":-25,"y":30},{"x":-13,"y":-31},{"x":38,"y":1}],"type":"coastline"},{"arc":[{"x":129482,"y":103148},{"x":-20,"y":18},{"x":-47,"y":-12},{"x":-27,"y":-45},{"x":82,"y":2},{"x":12,"y":37}],"type":"coastline"},{"arc":[{"x":129559,"y":103363},{"x":-91,"y":117},{"x":-56,"y":-39},{"x":-316,"y":-89},{"x":-141,"y":-105},{"x":-25,"y":-65},{"x":-12,"y":34},{"x":-80,"y":13},{"x":-99,"y":-24},{"x":-71,"y":53},{"x":-34,"y":-67},{"x":37,"y":-89},{"x":-41,"y":-108},{"x":12,"y":13},{"x":3,"y":-34},{"x":-19,"y":9},{"x":-7,"y":-72},{"x":-42,"y":-22},{"x":-14,"y":-55},{"x":28,"y":-130},{"x":-21,"y":-31},{"x":37,"y":-30},{"x":-14,"y":-55},{"x":39,"y":11},{"x":-23,"y":-23},{"x":41,"y":-43},{"x":133,"y":-88},{"x":63,"y":-22},{"x":24,"y":69},{"x":47,"y":1},{"x":105,"y":-87},{"x":-12,"y":54},{"x":52,"y":59},{"x":-69,"y":89},{"x":43,"y":28},{"x":21,"y":-35},{"x":52,"y":-14},{"x":-56,"y":60},{"x":47,"y":33},{"x":13,"y":130},{"x":-28,"y":2},{"x":18,"y":44},{"x":-56,"y":18},{"x":77,"y":-10},{"x":-15,"y":-31},{"x":34,"y":-26},{"x":134,"y":108},{"x":-7,"y":39},{"x":-59,"y":32},{"x":-30,"y":-26},{"x":-64,"y":-2},{"x":27,"y":28},{"x":-56,"y":58},{"x":18,"y":34},{"x":31,"y":3},{"x":19,"y":-27},{"x":94,"y":81},{"x":50,"y":-14},{"x":118,"y":88},{"x":1,"y":33},{"x":41,"y":-4},{"x":-12,"y":15},{"x":87,"y":69},{"x":-21,"y":30},{"x":45,"y":12}],"type":"coastline"},{"arc":[{"x":129599,"y":103483},{"x":-54,"y":17},{"x":14,"y":-87},{"x":40,"y":70}],"type":"coastline"},{"arc":[{"x":129628,"y":102875},{"x":-36,"y":30},{"x":-41,"y":-10},{"x":-55,"y":24},{"x":-51,"y":-38},{"x":62,"y":-37},{"x":-13,"y":26},{"x":38,"y":14},{"x":63,"y":-31},{"x":33,"y":22}],"type":"coastline"},{"arc":[{"x":129734,"y":103079},{"x":-51,"y":-20},{"x":44,"y":-2},{"x":7,"y":22}],"type":"coastline"},{"arc":[{"x":129757,"y":103206},{"x":-15,"y":28},{"x":-25,"y":-40},{"x":-84,"y":21},{"x":90,"y":77},{"x":-37,"y":23},{"x":-116,"y":-12},{"x":-73,"y":-89},{"x":7,"y":-24},{"x":41,"y":12},{"x":-19,"y":-33},{"x":32,"y":17},{"x":6,"y":-23},{"x":-24,"y":-19},{"x":57,"y":-25},{"x":-35,"y":-25},{"x":125,"y":26},{"x":7,"y":40},{"x":63,"y":46}],"type":"coastline"},{"arc":[{"x":125150,"y":82664},{"x":-24,"y":30},{"x":-44,"y":-13},{"x":68,"y":-17}],"type":"coastline"},{"arc":[{"x":125379,"y":82491},{"x":-43,"y":57},{"x":-103,"y":-50},{"x":-55,"y":19},{"x":-19,"y":103},{"x":-12,"y":-30},{"x":-17,"y":23},{"x":-10,"y":-22},{"x":7,"y":23},{"x":-101,"y":44},{"x":-152,"y":-51},{"x":-40,"y":-129},{"x":44,"y":-86},{"x":38,"y":-17},{"x":47,"y":82},{"x":62,"y":12},{"x":-56,"y":-112},{"x":80,"y":3},{"x":54,"y":-63},{"x":14,"y":36},{"x":72,"y":-35},{"x":-28,"y":-19},{"x":14,"y":-35},{"x":105,"y":-143},{"x":0,"y":32},{"x":25,"y":-9},{"x":8,"y":7},{"x":-8,"y":17},{"x":20,"y":-3},{"x":-14,"y":15},{"x":61,"y":25},{"x":-120,"y":132},{"x":18,"y":58},{"x":72,"y":20},{"x":-11,"y":56},{"x":48,"y":40}],"type":"coastline"},{"arc":[{"x":125389,"y":82134},{"x":-46,"y":16},{"x":-18,"y":-19},{"x":-34,"y":-16},{"x":33,"y":-31},{"x":24,"y":42},{"x":41,"y":8}],"type":"coastline"},{"arc":[{"x":125717,"y":81998},{"x":-36,"y":42},{"x":-42,"y":0},{"x":13,"y":-19},{"x":-72,"y":-6},{"x":-1,"y":-57},{"x":75,"y":-7},{"x":63,"y":47}],"type":"coastline"},{"arc":[{"x":125871,"y":82316},{"x":-32,"y":31},{"x":-8,"y":73},{"x":6,"y":-67},{"x":-69,"y":-6},{"x":2,"y":-33},{"x":33,"y":9},{"x":66,"y":-13},{"x":-60,"y":-51},{"x":-63,"y":-6},{"x":83,"y":8},{"x":50,"y":47},{"x":-8,"y":8}],"type":"coastline"},{"arc":[{"x":125910,"y":83676},{"x":-10,"y":19},{"x":4,"y":-42},{"x":6,"y":23}],"type":"coastline"},{"arc":[{"x":127416,"y":81112},{"x":-30,"y":40},{"x":-84,"y":11},{"x":31,"y":63},{"x":-36,"y":16},{"x":-14,"y":46},{"x":-45,"y":11},{"x":-15,"y":34},{"x":-31,"y":-27},{"x":-55,"y":22},{"x":-8,"y":-44},{"x":92,"y":-34},{"x":12,"y":-38},{"x":-19,"y":-13},{"x":2,"y":22},{"x":-24,"y":-69},{"x":55,"y":-16},{"x":10,"y":-38},{"x":121,"y":-27},{"x":38,"y":41}],"type":"coastline"},{"arc":[{"x":128192,"y":82379},{"x":-50,"y":48},{"x":-28,"y":-13},{"x":15,"y":-75},{"x":63,"y":40}],"type":"coastline"},{"arc":[{"x":128238,"y":82384},{"x":-32,"y":-9},{"x":-12,"y":-41},{"x":31,"y":5},{"x":13,"y":45}],"type":"coastline"},{"arc":[{"x":130557,"y":83197},{"x":-69,"y":137},{"x":-69,"y":39},{"x":1,"y":37},{"x":-89,"y":17},{"x":-69,"y":112},{"x":-112,"y":65},{"x":-74,"y":5},{"x":-46,"y":128},{"x":-130,"y":29},{"x":-81,"y":232},{"x":-61,"y":5},{"x":-107,"y":93},{"x":18,"y":75},{"x":-115,"y":92},{"x":-67,"y":21},{"x":-66,"y":-15},{"x":-80,"y":31},{"x":-10,"y":72},{"x":-59,"y":85},{"x":74,"y":37},{"x":-49,"y":60},{"x":24,"y":58},{"x":-19,"y":59},{"x":36,"y":19},{"x":66,"y":151},{"x":-34,"y":60},{"x":19,"y":100},{"x":-114,"y":97},{"x":25,"y":84}],"type":"area"},{"arc":[{"x":129300,"y":85182},{"x":-100,"y":-3},{"x":-155,"y":-78},{"x":-28,"y":-40},{"x":-47,"y":-8},{"x":-48,"y":24},{"x":-41,"y":-24},{"x":13,"y":-116},{"x":-85,"y":-41},{"x":4,"y":-50},{"x":-41,"y":-35},{"x":-22,"y":-80},{"x":-63,"y":-83},{"x":-35,"y":9},{"x":-31,"y":-30},{"x":5,"y":-35},{"x":-69,"y":-86},{"x":-94,"y":21},{"x":-134,"y":-107},{"x":-249,"y":168},{"x":-100,"y":19},{"x":-33,"y":-60},{"x":5,"y":-65},{"x":67,"y":-24},{"x":-13,"y":-35},{"x":58,"y":-19},{"x":5,"y":-59},{"x":-86,"y":-26},{"x":-82,"y":13},{"x":-81,"y":-79},{"x":-76,"y":28},{"x":-81,"y":-25},{"x":-49,"y":15},{"x":-77,"y":76},{"x":-21,"y":100},{"x":-63,"y":-13},{"x":-126,"y":137},{"x":-109,"y":-35},{"x":-43,"y":31}],"type":"area"},{"arc":[{"x":127175,"y":84567},{"x":-47,"y":-15},{"x":2,"y":-45},{"x":-29,"y":-15},{"x":-191,"y":63},{"x":-52,"y":-105},{"x":44,"y":-43},{"x":-46,"y":-14},{"x":51,"y":-91},{"x":-58,"y":-139},{"x":-37,"y":52},{"x":20,"y":32},{"x":-65,"y":22},{"x":-60,"y":-45},{"x":8,"y":-32},{"x":-69,"y":-68},{"x":-195,"y":-24}],"type":"area"},{"arc":[{"x":126451,"y":84100},{"x":42,"y":-210},{"x":103,"y":3},{"x":42,"y":-51},{"x":46,"y":6},{"x":-25,"y":-13},{"x":21,"y":-55},{"x":-144,"y":-87},{"x":-36,"y":34},{"x":-45,"y":-11},{"x":-84,"y":-125},{"x":-25,"y":2},{"x":-14,"y":-34},{"x":-6,"y":6},{"x":-11,"y":-12},{"x":-9,"y":12},{"x":-17,"y":-5},{"x":20,"y":1},{"x":-15,"y":-10},{"x":5,"y":-26},{"x":-34,"y":65},{"x":-53,"y":29},{"x":-102,"y":-69},{"x":-30,"y":-30},{"x":22,"y":-37},{"x":27,"y":15},{"x":38,"y":-64},{"x":-26,"y":11},{"x":-71,"y":-41},{"x":-43,"y":11},{"x":-30,"y":49},{"x":-50,"y":-29},{"x":36,"y":-60},{"x":27,"y":-1},{"x":-40,"y":-14},{"x":-15,"y":26},{"x":-59,"y":-21},{"x":2,"y":-39},{"x":-25,"y":10},{"x":12,"y":28},{"x":-68,"y":-9},{"x":-282,"y":-387},{"x":-136,"y":-130},{"x":2,"y":-30},{"x":-12,"y":15},{"x":-74,"y":-66},{"x":-20,"y":-50},{"x":40,"y":11},{"x":-15,"y":-35},{"x":-27,"y":8},{"x":0,"y":-71},{"x":-27,"y":-6},{"x":-23,"y":33},{"x":-8,"y":-40},{"x":-16,"y":60},{"x":-40,"y":-9},{"x":5,"y":-135},{"x":73,"y":2},{"x":101,"y":47},{"x":34,"y":-72},{"x":-17,"y":-73},{"x":120,"y":80},{"x":89,"y":-11},{"x":107,"y":44},{"x":51,"y":-15},{"x":12,"y":-34},{"x":27,"y":7},{"x":56,"y":-38},{"x":20,"y":15},{"x":6,"y":-20},{"x":111,"y":13},{"x":103,"y":60},{"x":14,"y":-19},{"x":4,"y":23},{"x":5,"y":-21},{"x":-4,"y":21},{"x":123,"y":0},{"x":35,"y":-20},{"x":11,"y":-46},{"x":11,"y":23},{"x":13,"y":-23},{"x":-12,"y":-17},{"x":-19,"y":14},{"x":21,"y":-61},{"x":229,"y":111},{"x":197,"y":-23},{"x":61,"y":-57},{"x":-26,"y":-16},{"x":12,"y":-34},{"x":-31,"y":-4},{"x":81,"y":-4},{"x":19,"y":18},{"x":-15,"y":-31},{"x":47,"y":-43},{"x":-29,"y":-16},{"x":-8,"y":22},{"x":-56,"y":-43},{"x":25,"y":-37},{"x":85,"y":-3},{"x":31,"y":-62},{"x":58,"y":-4},{"x":21,"y":-63},{"x":51,"y":60},{"x":65,"y":-74},{"x":-20,"y":-16},{"x":-12,"y":18},{"x":-12,"y":-36},{"x":-26,"y":31},{"x":25,"y":-37},{"x":54,"y":39},{"x":102,"y":-14},{"x":67,"y":-114},{"x":86,"y":-15},{"x":41,"y":51},{"x":288,"y":14},{"x":22,"y":78},{"x":-29,"y":49},{"x":73,"y":21},{"x":-4,"y":58},{"x":-43,"y":13},{"x":17,"y":-19},{"x":-28,"y":-21},{"x":-25,"y":38},{"x":25,"y":-3},{"x":-31,"y":6},{"x":-2,"y":58},{"x":49,"y":74},{"x":55,"y":34},{"x":52,"y":-14},{"x":3,"y":20},{"x":0,"y":-44},{"x":64,"y":-7},{"x":9,"y":-38},{"x":19,"y":27},{"x":-24,"y":59},{"x":76,"y":46},{"x":14,"y":76},{"x":133,"y":104},{"x":45,"y":19},{"x":37,"y":-19},{"x":0,"y":27},{"x":18,"y":-31},{"x":-21,"y":-5},{"x":43,"y":7},{"x":39,"y":55},{"x":76,"y":24},{"x":195,"y":-44},{"x":5,"y":19},{"x":84,"y":-14},{"x":43,"y":-140},{"x":104,"y":29},{"x":31,"y":36},{"x":178,"y":-11},{"x":186,"y":-216},{"x":147,"y":-44},{"x":64,"y":-86},{"x":19,"y":16},{"x":-9,"y":-28},{"x":202,"y":-207},{"x":97,"y":62},{"x":-2,"y":95},{"x":91,"y":42},{"x":49,"y":-32},{"x":-1,"y":20},{"x":3,"y":-17},{"x":19,"y":24},{"x":36,"y":-7},{"x":30,"y":29},{"x":-21,"y":-11},{"x":-23,"y":64},{"x":100,"y":-21},{"x":-5,"y":70},{"x":21,"y":-65},{"x":13,"y":44},{"x":61,"y":25},{"x":-29,"y":-56},{"x":22,"y":10},{"x":1,"y":-22},{"x":89,"y":4},{"x":13,"y":20},{"x":-1,"y":-43},{"x":79,"y":23},{"x":73,"y":-22},{"x":83,"y":99},{"x":46,"y":3},{"x":-15,"y":26},{"x":26,"y":-28},{"x":96,"y":17},{"x":5,"y":55},{"x":-115,"y":55},{"x":-9,"y":31},{"x":-27,"y":-5},{"x":28,"y":75},{"x":-33,"y":-6},{"x":-29,"y":45},{"x":-23,"y":-13},{"x":13,"y":23},{"x":-71,"y":-10},{"x":-13,"y":28},{"x":15,"y":33},{"x":61,"y":5},{"x":11,"y":36},{"x":50,"y":0},{"x":-12,"y":54},{"x":36,"y":43},{"x":-22,"y":45},{"x":32,"y":46},{"x":9,"y":67},{"x":38,"y":39},{"x":-13,"y":37},{"x":27,"y":20},{"x":48,"y":119}],"type":"coastline"},{"arc":[{"x":130562,"y":83132},{"x":-34,"y":-16},{"x":-5,"y":-36},{"x":-32,"y":-31},{"x":17,"y":-21},{"x":44,"y":29},{"x":10,"y":75}],"type":"coastline"},{"arc":[{"x":130687,"y":82027},{"x":-19,"y":42},{"x":-73,"y":10},{"x":17,"y":47},{"x":-48,"y":36},{"x":-134,"y":-28},{"x":26,"y":-54},{"x":-13,"y":-16},{"x":-15,"y":37},{"x":-2,"y":-161},{"x":-41,"y":-40},{"x":-25,"y":10},{"x":3,"y":-47},{"x":-41,"y":12},{"x":-49,"y":-54},{"x":38,"y":-5},{"x":18,"y":-70},{"x":74,"y":-21},{"x":49,"y":20},{"x":-7,"y":174},{"x":33,"y":16},{"x":28,"y":76},{"x":73,"y":49},{"x":82,"y":-22},{"x":13,"y":-25},{"x":13,"y":14}],"type":"coastline"},{"arc":[{"x":127700,"y":87220},{"x":-29,"y":28},{"x":-29,"y":-9},{"x":-16,"y":51},{"x":-68,"y":-14},{"x":-12,"y":31},{"x":-52,"y":14},{"x":-81,"y":-35},{"x":-46,"y":-97},{"x":-51,"y":32},{"x":6,"y":-61},{"x":-37,"y":-28},{"x":59,"y":-91},{"x":-23,"y":-73},{"x":-73,"y":18},{"x":-41,"y":51},{"x":-119,"y":-4},{"x":-22,"y":19},{"x":-59,"y":-77},{"x":-70,"y":39},{"x":-72,"y":-16},{"x":-61,"y":-99},{"x":-153,"y":-25},{"x":-43,"y":-33},{"x":-64,"y":-73},{"x":-16,"y":-53},{"x":22,"y":-22},{"x":-70,"y":-45},{"x":-18,"y":27},{"x":-45,"y":-20},{"x":-56,"y":-86},{"x":-81,"y":8},{"x":-15,"y":-51},{"x":-67,"y":-10},{"x":-14,"y":45},{"x":-37,"y":-10},{"x":-52,"y":-104},{"x":-40,"y":8},{"x":-82,"y":-37},{"x":-65,"y":48},{"x":32,"y":107},{"x":-37,"y":-12},{"x":-4,"y":39},{"x":-18,"y":-7},{"x":48,"y":160},{"x":28,"y":6},{"x":-32,"y":72},{"x":68,"y":173},{"x":-52,"y":57},{"x":-19,"y":-12},{"x":-2,"y":104}],"type":"area"},{"arc":[{"x":125920,"y":87153},{"x":-78,"y":-27},{"x":-50,"y":11},{"x":3,"y":-89},{"x":-80,"y":-54},{"x":-51,"y":39},{"x":-68,"y":-4},{"x":8,"y":32},{"x":-27,"y":9},{"x":-2,"y":-29},{"x":-21,"y":31},{"x":21,"y":9},{"x":-42,"y":-3},{"x":-5,"y":-78},{"x":-134,"y":-118},{"x":-41,"y":-73},{"x":28,"y":-143},{"x":-29,"y":-35},{"x":-34,"y":13},{"x":1,"y":-76},{"x":-12,"y":21},{"x":4,"y":-32},{"x":-103,"y":-55},{"x":15,"y":-46},{"x":-43,"y":-47},{"x":-39,"y":41},{"x":35,"y":-43},{"x":-11,"y":-70},{"x":-29,"y":5},{"x":24,"y":66},{"x":-18,"y":28},{"x":-160,"y":-262},{"x":12,"y":-66},{"x":23,"y":26},{"x":15,"y":-15},{"x":-23,"y":-9},{"x":29,"y":-10},{"x":-40,"y":2},{"x":27,"y":-29},{"x":-14,"y":-52},{"x":-58,"y":-51},{"x":-10,"y":-68},{"x":73,"y":24},{"x":-28,"y":-9},{"x":-25,"y":27},{"x":-8,"y":26},{"x":36,"y":20},{"x":68,"y":-23},{"x":-32,"y":-37},{"x":32,"y":37},{"x":31,"y":-18},{"x":39,"y":57},{"x":-32,"y":39},{"x":61,"y":-36},{"x":-123,"y":-206},{"x":42,"y":-23},{"x":48,"y":48},{"x":29,"y":-9},{"x":23,"y":96},{"x":25,"y":-13},{"x":8,"y":6},{"x":-29,"y":5},{"x":55,"y":59},{"x":12,"y":-26},{"x":-31,"y":-32},{"x":17,"y":-15},{"x":42,"y":45},{"x":-22,"y":-38},{"x":26,"y":9},{"x":8,"y":-37},{"x":21,"y":25},{"x":34,"y":-33},{"x":-41,"y":-60},{"x":-61,"y":17},{"x":-72,"y":-36},{"x":-49,"y":-91},{"x":37,"y":-75},{"x":41,"y":14},{"x":61,"y":109},{"x":117,"y":62},{"x":43,"y":-23},{"x":-51,"y":-1},{"x":-84,"y":-50},{"x":222,"y":17},{"x":-67,"y":-36},{"x":-126,"y":-2},{"x":10,"y":-65},{"x":98,"y":14},{"x":10,"y":-62},{"x":-30,"y":-13},{"x":28,"y":10},{"x":9,"y":-40},{"x":-57,"y":27},{"x":-125,"y":-11},{"x":-21,"y":-115}],"type":"coastline"},{"arc":[{"x":125235,"y":85460},{"x":190,"y":-66},{"x":3,"y":-55},{"x":152,"y":14},{"x":113,"y":-27},{"x":-13,"y":27},{"x":64,"y":-13},{"x":15,"y":25},{"x":-7,"y":-22},{"x":33,"y":7},{"x":32,"y":-27},{"x":44,"y":62},{"x":75,"y":15},{"x":20,"y":80},{"x":73,"y":12},{"x":67,"y":51},{"x":-14,"y":35},{"x":45,"y":68},{"x":76,"y":51},{"x":85,"y":4},{"x":22,"y":44},{"x":43,"y":-78},{"x":64,"y":-49},{"x":-17,"y":-53},{"x":54,"y":-32},{"x":-22,"y":-77},{"x":72,"y":-10},{"x":10,"y":-68},{"x":105,"y":-82},{"x":172,"y":140},{"x":15,"y":80},{"x":49,"y":10},{"x":60,"y":108},{"x":85,"y":-54},{"x":36,"y":30},{"x":47,"y":-2},{"x":19,"y":-27},{"x":41,"y":57},{"x":72,"y":-17},{"x":132,"y":33},{"x":44,"y":-81}],"type":"area"},{"arc":[{"x":127391,"y":85573},{"x":86,"y":47},{"x":-8,"y":46},{"x":41,"y":40},{"x":-6,"y":40},{"x":61,"y":109},{"x":122,"y":1},{"x":57,"y":39},{"x":-19,"y":50},{"x":67,"y":94},{"x":-62,"y":77},{"x":21,"y":124},{"x":255,"y":95},{"x":-3,"y":53},{"x":64,"y":48},{"x":-14,"y":103},{"x":-56,"y":73},{"x":28,"y":58},{"x":41,"y":-10},{"x":3,"y":30},{"x":-77,"y":72},{"x":-114,"y":-79},{"x":-18,"y":9},{"x":22,"y":40},{"x":-21,"y":71},{"x":-59,"y":95},{"x":-75,"y":34},{"x":-33,"y":60},{"x":32,"y":53},{"x":-20,"y":79},{"x":30,"y":25},{"x":-42,"y":33},{"x":6,"y":38}],"type":"area"},{"arc":[{"x":125587,"y":87764},{"x":-2,"y":21},{"x":-37,"y":-42},{"x":39,"y":21}],"type":"coastline"},{"arc":[{"x":130465,"y":91370},{"x":-126,"y":-155},{"x":-74,"y":8},{"x":-50,"y":-25},{"x":-69,"y":21},{"x":-20,"y":-120},{"x":-155,"y":24},{"x":-39,"y":-33},{"x":-107,"y":58},{"x":-34,"y":-12},{"x":-41,"y":20},{"x":-35,"y":-62},{"x":-50,"y":-23},{"x":-245,"y":176},{"x":-24,"y":-48},{"x":-112,"y":-12},{"x":-60,"y":-110},{"x":-121,"y":-36},{"x":-47,"y":24},{"x":-8,"y":35},{"x":-40,"y":-15},{"x":-100,"y":41},{"x":-75,"y":-13},{"x":-60,"y":57},{"x":-110,"y":-7},{"x":-126,"y":92},{"x":-68,"y":0},{"x":11,"y":28},{"x":-69,"y":14},{"x":-56,"y":-54},{"x":-13,"y":-57},{"x":37,"y":-142},{"x":-22,"y":-52},{"x":-44,"y":12},{"x":-52,"y":-34},{"x":-63,"y":3},{"x":-1,"y":70},{"x":-113,"y":-13},{"x":-35,"y":-72},{"x":-32,"y":4},{"x":18,"y":-41},{"x":-39,"y":-44},{"x":-181,"y":37},{"x":-71,"y":-15},{"x":-59,"y":-54},{"x":-1,"y":-54},{"x":-46,"y":-18},{"x":2,"y":-55},{"x":114,"y":-97},{"x":2,"y":-62},{"x":-126,"y":-84},{"x":59,"y":-319}],"type":"area"},{"arc":[{"x":127689,"y":90156},{"x":192,"y":71},{"x":73,"y":-47},{"x":27,"y":-206},{"x":-61,"y":-51},{"x":-69,"y":23},{"x":-1,"y":-51},{"x":-42,"y":10},{"x":-45,"y":-25},{"x":-51,"y":-74},{"x":57,"y":-7},{"x":2,"y":-63},{"x":52,"y":-56},{"x":-11,"y":-89},{"x":79,"y":-118},{"x":-23,"y":-13},{"x":12,"y":-42},{"x":-36,"y":-14},{"x":-81,"y":36},{"x":-77,"y":-44},{"x":-2,"y":-50},{"x":-31,"y":-24},{"x":-72,"y":-7},{"x":-36,"y":9},{"x":-4,"y":32},{"x":-33,"y":-2},{"x":-30,"y":-56},{"x":27,"y":-75},{"x":-101,"y":-61},{"x":-93,"y":11},{"x":-19,"y":-40},{"x":-106,"y":-34},{"x":-49,"y":-192},{"x":-42,"y":-7},{"x":-7,"y":-79},{"x":-39,"y":-57},{"x":120,"y":-74},{"x":11,"y":-39},{"x":28,"y":5},{"x":6,"y":-90},{"x":-66,"y":-93},{"x":-49,"y":-2},{"x":-28,"y":-44},{"x":-164,"y":-58},{"x":-58,"y":-148},{"x":-105,"y":-114},{"x":-218,"y":41},{"x":14,"y":72},{"x":-107,"y":97}],"type":"area"},{"arc":[{"x":126433,"y":88317},{"x":-41,"y":-79},{"x":-29,"y":27},{"x":-22,"y":-3},{"x":36,"y":-11},{"x":1,"y":-25},{"x":-8,"y":20},{"x":-27,"y":-29},{"x":6,"y":32},{"x":-15,"y":10},{"x":8,"y":-35},{"x":-36,"y":-11},{"x":-112,"y":44},{"x":34,"y":20},{"x":-45,"y":43},{"x":5,"y":33},{"x":-80,"y":6},{"x":-27,"y":-85},{"x":-76,"y":-96},{"x":24,"y":-51},{"x":-22,"y":-22},{"x":-51,"y":13},{"x":-81,"y":74},{"x":-71,"y":-27},{"x":4,"y":-59},{"x":68,"y":4},{"x":25,"y":-46},{"x":-50,"y":-95},{"x":-110,"y":-1},{"x":3,"y":-56},{"x":58,"y":-4},{"x":32,"y":-30},{"x":-13,"y":-94},{"x":88,"y":8},{"x":-31,"y":20},{"x":37,"y":12},{"x":3,"y":-20},{"x":-2,"y":20},{"x":123,"y":40},{"x":34,"y":-46},{"x":-19,"y":37},{"x":53,"y":-19},{"x":-23,"y":-12},{"x":51,"y":-1},{"x":20,"y":-78},{"x":-24,"y":-27},{"x":20,"y":-13},{"x":-50,"y":24},{"x":-20,"y":-26},{"x":13,"y":-31},{"x":29,"y":0},{"x":-12,"y":-17},{"x":-25,"y":16},{"x":24,"y":-18},{"x":-45,"y":18},{"x":-21,"y":-17},{"x":11,"y":35},{"x":-32,"y":-59},{"x":-57,"y":-15},{"x":-44,"y":18},{"x":-39,"y":-91},{"x":-32,"y":-19},{"x":-69,"y":12},{"x":-23,"y":-36},{"x":122,"y":3},{"x":48,"y":-25},{"x":7,"y":72},{"x":200,"y":42},{"x":-8,"y":30},{"x":87,"y":42},{"x":13,"y":49},{"x":63,"y":-156},{"x":-12,"y":-77},{"x":146,"y":8},{"x":71,"y":92},{"x":18,"y":-78},{"x":68,"y":20},{"x":24,"y":-140},{"x":-53,"y":12},{"x":-146,"y":-37},{"x":-44,"y":39},{"x":-66,"y":-162},{"x":-58,"y":129},{"x":-175,"y":-52},{"x":-61,"y":-45},{"x":18,"y":-10},{"x":-61,"y":-24},{"x":-10,"y":-36},{"x":-15,"y":26},{"x":14,"y":-26},{"x":-29,"y":-42}],"type":"coastline"},{"arc":[{"x":127700,"y":87220},{"x":90,"y":82},{"x":54,"y":-23},{"x":23,"y":-62},{"x":84,"y":101},{"x":113,"y":-3},{"x":85,"y":108},{"x":94,"y":26},{"x":22,"y":63},{"x":-17,"y":35},{"x":102,"y":-30},{"x":102,"y":74},{"x":45,"y":-47},{"x":30,"y":43},{"x":84,"y":-1},{"x":17,"y":48}],"type":"area"},{"arc":[{"x":128628,"y":87634},{"x":-5,"y":67},{"x":100,"y":64},{"x":-12,"y":52},{"x":60,"y":58},{"x":-1,"y":140},{"x":117,"y":98},{"x":6,"y":70},{"x":76,"y":11},{"x":87,"y":184},{"x":-9,"y":38},{"x":-55,"y":25},{"x":30,"y":145},{"x":73,"y":-13},{"x":42,"y":72},{"x":92,"y":-35},{"x":83,"y":64},{"x":50,"y":5},{"x":56,"y":58},{"x":56,"y":-25},{"x":26,"y":16},{"x":-8,"y":86},{"x":29,"y":27},{"x":95,"y":-48},{"x":62,"y":109},{"x":66,"y":8},{"x":13,"y":48},{"x":57,"y":33},{"x":-7,"y":26},{"x":-55,"y":20},{"x":-11,"y":44},{"x":90,"y":29},{"x":26,"y":57},{"x":121,"y":23},{"x":102,"y":66},{"x":49,"y":-10},{"x":55,"y":-75},{"x":90,"y":31},{"x":53,"y":-7},{"x":204,"y":-69},{"x":64,"y":-132},{"x":-12,"y":-24},{"x":44,"y":-50},{"x":110,"y":-7},{"x":100,"y":84},{"x":41,"y":71},{"x":66,"y":-16},{"x":2,"y":-30},{"x":77,"y":-57},{"x":129,"y":-18},{"x":58,"y":44},{"x":-79,"y":24},{"x":3,"y":118},{"x":55,"y":152},{"x":-77,"y":93},{"x":-1,"y":91},{"x":40,"y":56},{"x":-35,"y":95},{"x":25,"y":49},{"x":106,"y":-9},{"x":93,"y":95},{"x":84,"y":23},{"x":14,"y":56},{"x":100,"y":57},{"x":30,"y":-5},{"x":19,"y":70},{"x":134,"y":3},{"x":4,"y":40},{"x":47,"y":22},{"x":60,"y":-22},{"x":28,"y":86},{"x":44,"y":34},{"x":85,"y":-6},{"x":39,"y":36},{"x":94,"y":-72},{"x":44,"y":49},{"x":106,"y":-45},{"x":13,"y":78},{"x":57,"y":38},{"x":-27,"y":80},{"x":22,"y":28}],"type":"area"},{"arc":[{"x":131435,"y":86697},{"x":-25,"y":31},{"x":-58,"y":-17},{"x":16,"y":-40},{"x":67,"y":26}],"type":"coastline"},{"arc":[{"x":131864,"y":87285},{"x":-10,"y":33},{"x":-48,"y":8},{"x":4,"y":-48},{"x":36,"y":-14},{"x":18,"y":21}],"type":"coastline"},{"arc":[{"x":132131,"y":87335},{"x":-46,"y":9},{"x":-32,"y":-58},{"x":37,"y":-4},{"x":41,"y":53}],"type":"coastline"},{"arc":[{"x":132331,"y":86952},{"x":-20,"y":28},{"x":-42,"y":-9},{"x":-13,"y":-39},{"x":25,"y":-32},{"x":49,"y":13},{"x":1,"y":39}],"type":"coastline"},{"arc":[{"x":132450,"y":87664},{"x":-31,"y":43},{"x":-42,"y":-17},{"x":-63,"y":40},{"x":-104,"y":1},{"x":-35,"y":-27},{"x":-13,"y":-35},{"x":11,"y":24},{"x":19,"y":-22},{"x":-19,"y":3},{"x":-6,"y":-49},{"x":-15,"y":23},{"x":-3,"y":-35},{"x":105,"y":-72},{"x":126,"y":34},{"x":64,"y":47},{"x":6,"y":42}],"type":"coastline"},{"arc":[{"x":132513,"y":86269},{"x":-44,"y":23},{"x":6,"y":33},{"x":-42,"y":5},{"x":21,"y":38},{"x":-26,"y":71},{"x":-80,"y":-24},{"x":-37,"y":-117},{"x":-63,"y":-28},{"x":113,"y":-71},{"x":152,"y":70}],"type":"coastline"},{"arc":[{"x":132585,"y":87426},{"x":-20,"y":31},{"x":-99,"y":-14},{"x":-26,"y":-45},{"x":43,"y":-28},{"x":70,"y":-3},{"x":32,"y":59}],"type":"coastline"},{"arc":[{"x":128628,"y":87634},{"x":82,"y":-129},{"x":93,"y":37},{"x":133,"y":-9},{"x":72,"y":39},{"x":138,"y":-37},{"x":81,"y":54},{"x":129,"y":-38},{"x":-38,"y":-87},{"x":74,"y":-67},{"x":86,"y":-6},{"x":64,"y":-61},{"x":165,"y":12},{"x":66,"y":-62},{"x":96,"y":-29},{"x":17,"y":-48},{"x":-42,"y":-18},{"x":-3,"y":-49},{"x":-53,"y":-49},{"x":18,"y":-42},{"x":-27,"y":-47},{"x":95,"y":-124},{"x":114,"y":61}],"type":"area"},{"arc":[{"x":129988,"y":86935},{"x":75,"y":3},{"x":81,"y":38},{"x":99,"y":-34},{"x":97,"y":38},{"x":59,"y":-14},{"x":27,"y":45},{"x":81,"y":-63},{"x":-22,"y":-77},{"x":45,"y":-112},{"x":111,"y":-54},{"x":-95,"y":-187},{"x":77,"y":-77},{"x":90,"y":11},{"x":57,"y":-22}],"type":"area"},{"arc":[{"x":130770,"y":86430},{"x":45,"y":37},{"x":-13,"y":99},{"x":58,"y":11},{"x":-7,"y":52},{"x":55,"y":49},{"x":18,"y":84},{"x":82,"y":41},{"x":73,"y":-21},{"x":23,"y":31},{"x":24,"y":-13},{"x":74,"y":24},{"x":9,"y":40},{"x":39,"y":22},{"x":-33,"y":17},{"x":-8,"y":59},{"x":32,"y":33},{"x":-79,"y":48},{"x":-10,"y":41},{"x":63,"y":204},{"x":39,"y":30},{"x":52,"y":-14},{"x":-5,"y":67},{"x":-71,"y":35},{"x":41,"y":92},{"x":106,"y":49},{"x":-3,"y":108},{"x":-36,"y":9},{"x":53,"y":33},{"x":-5,"y":-17},{"x":34,"y":-4},{"x":-37,"y":-27},{"x":57,"y":-17},{"x":30,"y":23},{"x":-21,"y":27},{"x":24,"y":33},{"x":33,"y":-44},{"x":29,"y":10},{"x":-44,"y":65},{"x":58,"y":6},{"x":-20,"y":-14},{"x":39,"y":1},{"x":26,"y":-81},{"x":11,"y":24},{"x":14,"y":-29},{"x":1,"y":-26},{"x":-25,"y":-6},{"x":-2,"y":31},{"x":-10,"y":-31},{"x":47,"y":-127},{"x":97,"y":-18},{"x":54,"y":27},{"x":-36,"y":78},{"x":-60,"y":27},{"x":-18,"y":82},{"x":2,"y":-49},{"x":-22,"y":19},{"x":-7,"y":48},{"x":45,"y":4},{"x":21,"y":82},{"x":43,"y":6},{"x":111,"y":98},{"x":75,"y":-33},{"x":-16,"y":97},{"x":48,"y":39},{"x":41,"y":-17},{"x":-20,"y":41},{"x":53,"y":-63},{"x":36,"y":-5},{"x":26,"y":67},{"x":-69,"y":65},{"x":72,"y":86}],"type":"coastline"},{"arc":[{"x":132106,"y":88175},{"x":-5,"y":58},{"x":88,"y":111},{"x":-54,"y":45},{"x":3,"y":73},{"x":-55,"y":45},{"x":-12,"y":88},{"x":112,"y":35},{"x":-49,"y":28},{"x":17,"y":48},{"x":26,"y":11},{"x":64,"y":-36},{"x":32,"y":27},{"x":94,"y":129},{"x":-19,"y":41},{"x":138,"y":86},{"x":12,"y":50},{"x":-32,"y":5},{"x":-2,"y":34},{"x":-102,"y":-13},{"x":-53,"y":47},{"x":-63,"y":-3},{"x":-6,"y":54},{"x":-69,"y":31},{"x":-20,"y":40},{"x":-119,"y":48},{"x":-1,"y":63},{"x":74,"y":227},{"x":102,"y":36},{"x":53,"y":47},{"x":26,"y":60},{"x":-46,"y":83},{"x":78,"y":61},{"x":4,"y":68},{"x":50,"y":28},{"x":86,"y":167},{"x":36,"y":-44},{"x":78,"y":-17},{"x":41,"y":-62},{"x":41,"y":16},{"x":33,"y":-38},{"x":-39,"y":-84},{"x":29,"y":-66},{"x":39,"y":-16},{"x":31,"y":24},{"x":43,"y":-56},{"x":89,"y":-4},{"x":-21,"y":-58},{"x":60,"y":-46},{"x":10,"y":-42},{"x":79,"y":-46},{"x":8,"y":-66},{"x":116,"y":66},{"x":76,"y":-4},{"x":27,"y":36},{"x":65,"y":18},{"x":106,"y":-39},{"x":47,"y":-124},{"x":132,"y":-32},{"x":57,"y":-189},{"x":-50,"y":-58}],"type":"admin"},{"arc":[{"x":133591,"y":89166},{"x":54,"y":-30},{"x":76,"y":34},{"x":26,"y":-12},{"x":75,"y":85},{"x":-15,"y":153},{"x":67,"y":-6},{"x":-23,"y":84},{"x":-31,"y":-7},{"x":5,"y":-24},{"x":-33,"y":49},{"x":47,"y":33},{"x":2,"y":109},{"x":23,"y":-12},{"x":-17,"y":-30},{"x":59,"y":35},{"x":-2,"y":49},{"x":78,"y":-46},{"x":-59,"y":5},{"x":25,"y":-42},{"x":-40,"y":-9},{"x":77,"y":-30},{"x":-74,"y":-33},{"x":60,"y":-32},{"x":55,"y":57},{"x":55,"y":-2},{"x":9,"y":-37},{"x":42,"y":-3},{"x":9,"y":59},{"x":139,"y":34},{"x":55,"y":45},{"x":8,"y":53},{"x":55,"y":41},{"x":-46,"y":79},{"x":27,"y":69},{"x":-31,"y":36},{"x":19,"y":40},{"x":-24,"y":2},{"x":-19,"y":61},{"x":-64,"y":8},{"x":-5,"y":24},{"x":-58,"y":-39},{"x":-42,"y":15},{"x":-23,"y":-33},{"x":-22,"y":59},{"x":-45,"y":2},{"x":3,"y":65},{"x":20,"y":-29},{"x":51,"y":45},{"x":8,"y":-84},{"x":76,"y":21},{"x":3,"y":99},{"x":55,"y":5},{"x":-29,"y":76},{"x":47,"y":7},{"x":6,"y":65},{"x":67,"y":17},{"x":-3,"y":31},{"x":86,"y":-73},{"x":57,"y":0},{"x":12,"y":48},{"x":-47,"y":4},{"x":-2,"y":45},{"x":44,"y":23},{"x":-26,"y":2},{"x":3,"y":51},{"x":36,"y":5},{"x":0,"y":30},{"x":44,"y":28}],"type":"coastline"},{"arc":[{"x":136064,"y":84750},{"x":-81,"y":48},{"x":-50,"y":68},{"x":19,"y":73},{"x":-53,"y":15},{"x":0,"y":-38},{"x":-41,"y":-4},{"x":-13,"y":-29},{"x":-1,"y":27},{"x":32,"y":33},{"x":-59,"y":-33},{"x":-53,"y":114},{"x":41,"y":68},{"x":-48,"y":-27},{"x":-139,"y":-3},{"x":-24,"y":-44},{"x":23,"y":-33},{"x":-44,"y":-7},{"x":-2,"y":28},{"x":-11,"y":-45},{"x":33,"y":-7},{"x":-40,"y":-20},{"x":4,"y":-123},{"x":139,"y":-60},{"x":168,"y":-6},{"x":132,"y":-33},{"x":68,"y":38}],"type":"coastline"},{"arc":[{"x":125323,"y":90604},{"x":-139,"y":44},{"x":-49,"y":-63},{"x":95,"y":-67},{"x":46,"y":40},{"x":-34,"y":2},{"x":-2,"y":25},{"x":83,"y":19}],"type":"coastline"},{"arc":[{"x":125389,"y":90632},{"x":-56,"y":-10},{"x":35,"y":-12},{"x":21,"y":22}],"type":"coastline"},{"arc":[{"x":125442,"y":90650},{"x":-43,"y":-25},{"x":18,"y":-15},{"x":25,"y":40}],"type":"coastline"},{"arc":[{"x":126256,"y":89460},{"x":-110,"y":157},{"x":-52,"y":-70},{"x":-51,"y":5},{"x":-93,"y":-37},{"x":-84,"y":-99},{"x":-46,"y":-133},{"x":-35,"y":-18},{"x":96,"y":-35},{"x":-56,"y":-79},{"x":71,"y":-7},{"x":35,"y":22},{"x":33,"y":38},{"x":-23,"y":-13},{"x":10,"y":41},{"x":53,"y":41},{"x":60,"y":-19},{"x":55,"y":18},{"x":88,"y":142},{"x":53,"y":10},{"x":-4,"y":36}],"type":"coastline"},{"arc":[{"x":127689,"y":90156},{"x":-32,"y":-83},{"x":-85,"y":5},{"x":-33,"y":-43},{"x":-156,"y":47},{"x":-71,"y":-26},{"x":-20,"y":-52},{"x":-136,"y":44},{"x":-66,"y":-7},{"x":-30,"y":-80},{"x":-54,"y":16},{"x":-43,"y":-18},{"x":-30,"y":15},{"x":8,"y":52},{"x":-45,"y":34},{"x":13,"y":113},{"x":-39,"y":82},{"x":-60,"y":-18},{"x":-30,"y":42},{"x":-45,"y":-35},{"x":-49,"y":22},{"x":-57,"y":-41},{"x":-11,"y":87},{"x":-103,"y":51}],"type":"area"},{"arc":[{"x":126515,"y":90363},{"x":10,"y":-65},{"x":-54,"y":-52},{"x":-44,"y":-181},{"x":54,"y":28},{"x":36,"y":-48},{"x":40,"y":24},{"x":6,"y":-23},{"x":-46,"y":-16},{"x":34,"y":3},{"x":-22,"y":-9},{"x":22,"y":-64},{"x":-91,"y":-117},{"x":-148,"y":-55},{"x":-91,"y":-83},{"x":84,"y":-79},{"x":94,"y":-9},{"x":-1,"y":28},{"x":30,"y":0},{"x":19,"y":-49},{"x":-83,"y":-119},{"x":-86,"y":-25},{"x":-13,"y":-36},{"x":-50,"y":-14},{"x":-97,"y":-185},{"x":-71,"y":-10},{"x":-120,"y":-223},{"x":21,"y":-138},{"x":75,"y":-8},{"x":6,"y":-34},{"x":13,"y":25},{"x":14,"y":-26},{"x":-62,"y":-58},{"x":25,"y":-31},{"x":-15,"y":-51},{"x":67,"y":10},{"x":22,"y":-18},{"x":42,"y":77},{"x":32,"y":-16},{"x":-11,"y":-21},{"x":33,"y":10},{"x":-14,"y":-31},{"x":15,"y":31},{"x":58,"y":-46},{"x":46,"y":-170},{"x":52,"y":-49},{"x":-32,"y":-34},{"x":119,"y":-89}],"type":"coastline"},{"arc":[{"x":125489,"y":91678},{"x":-12,"y":19},{"x":-57,"y":-24},{"x":69,"y":5}],"type":"coastline"},{"arc":[{"x":125832,"y":92271},{"x":-91,"y":16},{"x":-60,"y":72},{"x":47,"y":31},{"x":-136,"y":39},{"x":-6,"y":45},{"x":-36,"y":-53},{"x":21,"y":-22},{"x":-20,"y":-76},{"x":-48,"y":-48},{"x":-169,"y":35},{"x":25,"y":-51},{"x":-58,"y":-23},{"x":-30,"y":-86},{"x":-49,"y":-48},{"x":-104,"y":-62},{"x":-33,"y":-96},{"x":-4,"y":-71},{"x":70,"y":-13},{"x":39,"y":-127},{"x":92,"y":-18},{"x":68,"y":34},{"x":92,"y":143},{"x":-82,"y":-50},{"x":-40,"y":47},{"x":-61,"y":-5},{"x":6,"y":40},{"x":47,"y":10},{"x":-12,"y":80},{"x":50,"y":-18},{"x":58,"y":21},{"x":-23,"y":32},{"x":26,"y":42},{"x":-86,"y":69},{"x":50,"y":-5},{"x":-26,"y":16},{"x":45,"y":22},{"x":35,"y":-23},{"x":46,"y":26},{"x":7,"y":-46},{"x":17,"y":36},{"x":48,"y":-9},{"x":-10,"y":-79},{"x":10,"y":26},{"x":47,"y":-4},{"x":-19,"y":46},{"x":80,"y":75},{"x":36,"y":-1},{"x":18,"y":-32},{"x":7,"y":47},{"x":116,"y":16}],"type":"coastline"},{"arc":[{"x":126068,"y":93060},{"x":-39,"y":-11},{"x":-87,"y":-108},{"x":-23,"y":-146},{"x":-71,"y":-46},{"x":-3,"y":-54},{"x":-76,"y":3},{"x":-84,"y":-81}],"type":"area"},{"arc":[{"x":125685,"y":92617},{"x":34,"y":-92},{"x":118,"y":-78},{"x":-29,"y":-140},{"x":70,"y":71},{"x":68,"y":5},{"x":24,"y":-19},{"x":-12,"y":-26},{"x":42,"y":-20},{"x":47,"y":16},{"x":-36,"y":-15},{"x":13,"y":-31},{"x":-18,"y":-8},{"x":-13,"y":29},{"x":-25,"y":-26},{"x":12,"y":-26},{"x":62,"y":27},{"x":22,"y":-32},{"x":-60,"y":-34},{"x":22,"y":-26},{"x":26,"y":38},{"x":21,"y":-30},{"x":4,"y":-140}],"type":"coastline"},{"arc":[{"x":126077,"y":92060},{"x":139,"y":46},{"x":97,"y":-21},{"x":18,"y":72},{"x":109,"y":70},{"x":-20,"y":28},{"x":46,"y":68},{"x":83,"y":4},{"x":113,"y":104},{"x":13,"y":-33},{"x":37,"y":21},{"x":94,"y":-6},{"x":81,"y":-54},{"x":66,"y":5},{"x":77,"y":-33},{"x":45,"y":-130},{"x":40,"y":0},{"x":140,"y":108},{"x":7,"y":39},{"x":-37,"y":26},{"x":187,"y":171},{"x":-29,"y":-3},{"x":-19,"y":33},{"x":16,"y":107},{"x":-87,"y":-50},{"x":-79,"y":-1},{"x":-37,"y":-66},{"x":-58,"y":13},{"x":-33,"y":86},{"x":31,"y":48},{"x":-48,"y":52},{"x":43,"y":23},{"x":-45,"y":85},{"x":18,"y":34},{"x":-122,"y":-63},{"x":-87,"y":128},{"x":-55,"y":26},{"x":-46,"y":-20},{"x":-14,"y":97},{"x":-80,"y":-10},{"x":-37,"y":-68},{"x":-94,"y":47},{"x":-106,"y":6},{"x":-29,"y":-35},{"x":-79,"y":-24},{"x":-52,"y":55},{"x":-216,"y":15}],"type":"area"},{"arc":[{"x":125741,"y":98197},{"x":-39,"y":0},{"x":26,"y":-22},{"x":30,"y":11},{"x":-17,"y":11}],"type":"coastline"},{"arc":[{"x":125828,"y":97387},{"x":-26,"y":11},{"x":-15,"y":-46},{"x":29,"y":1},{"x":12,"y":34}],"type":"coastline"},{"arc":[{"x":125835,"y":98204},{"x":-27,"y":-1},{"x":29,"y":-24},{"x":38,"y":7},{"x":-40,"y":18}],"type":"coastline"},{"arc":[{"x":126004,"y":97161},{"x":-57,"y":27},{"x":-1,"y":28},{"x":-95,"y":-21},{"x":29,"y":-57},{"x":124,"y":23}],"type":"coastline"},{"arc":[{"x":126079,"y":98201},{"x":-72,"y":-13},{"x":-8,"y":50},{"x":-21,"y":-44},{"x":40,"y":-19},{"x":61,"y":26}],"type":"coastline"},{"arc":[{"x":126246,"y":97103},{"x":-25,"y":14},{"x":22,"y":-29},{"x":30,"y":4},{"x":-27,"y":11}],"type":"coastline"},{"arc":[{"x":126342,"y":98029},{"x":-126,"y":73},{"x":-66,"y":90},{"x":-2,"y":-38},{"x":-53,"y":4},{"x":44,"y":-225},{"x":113,"y":-40},{"x":51,"y":10},{"x":39,"y":126}],"type":"coastline"},{"arc":[{"x":126430,"y":98080},{"x":-43,"y":78},{"x":-22,"y":-52},{"x":31,"y":-58},{"x":34,"y":32}],"type":"coastline"},{"arc":[{"x":126499,"y":97788},{"x":-48,"y":-10},{"x":-28,"y":-48},{"x":-34,"y":2},{"x":-17,"y":33},{"x":-76,"y":-56},{"x":100,"y":-12},{"x":25,"y":-72},{"x":20,"y":54},{"x":45,"y":18},{"x":-33,"y":47},{"x":46,"y":44}],"type":"coastline"},{"arc":[{"x":126719,"y":97826},{"x":-34,"y":53},{"x":-48,"y":-31},{"x":35,"y":-66},{"x":47,"y":44}],"type":"coastline"},{"arc":[{"x":126869,"y":97814},{"x":-22,"y":10},{"x":-26,"y":-46},{"x":41,"y":8},{"x":7,"y":28}],"type":"coastline"},{"arc":[{"x":127463,"y":97040},{"x":-1,"y":-66},{"x":42,"y":4}],"type":"coastline"},{"arc":[{"x":128577,"y":95737},{"x":-59,"y":-9},{"x":-64,"y":-93},{"x":-66,"y":56},{"x":-81,"y":-18},{"x":3,"y":40},{"x":-84,"y":23},{"x":10,"y":121},{"x":35,"y":31},{"x":-19,"y":98},{"x":48,"y":65},{"x":53,"y":-7},{"x":24,"y":32},{"x":102,"y":-39},{"x":57,"y":67},{"x":-29,"y":21},{"x":9,"y":63},{"x":-75,"y":7}],"type":"admin"},{"arc":[{"x":128441,"y":96195},{"x":-29,"y":-31},{"x":29,"y":12},{"x":-1,"y":-36},{"x":-90,"y":-15},{"x":-22,"y":12},{"x":35,"y":57},{"x":-32,"y":18},{"x":-32,"y":-85},{"x":-51,"y":29},{"x":40,"y":50},{"x":-43,"y":11},{"x":19,"y":16},{"x":-50,"y":-18},{"x":-15,"y":15},{"x":40,"y":33},{"x":-16,"y":16},{"x":-39,"y":-32},{"x":-9,"y":26},{"x":-53,"y":-10},{"x":12,"y":38},{"x":46,"y":-26},{"x":-9,"y":49},{"x":29,"y":-9},{"x":-6,"y":-22},{"x":7,"y":22},{"x":-30,"y":9},{"x":-12,"y":-29},{"x":-37,"y":22},{"x":-14,"y":-49},{"x":-50,"y":15},{"x":45,"y":7},{"x":6,"y":22},{"x":-150,"y":36},{"x":-257,"y":-41},{"x":-16,"y":103},{"x":-30,"y":-5},{"x":26,"y":4},{"x":19,"y":-103},{"x":-18,"y":15},{"x":-37,"y":-22},{"x":-2,"y":30},{"x":-41,"y":-7},{"x":18,"y":77},{"x":-25,"y":-40},{"x":30,"y":-178},{"x":-63,"y":-29},{"x":53,"y":-114},{"x":-50,"y":-26},{"x":-20,"y":-122},{"x":-24,"y":-8},{"x":24,"y":4},{"x":-11,"y":-59},{"x":-77,"y":-32},{"x":26,"y":55},{"x":-56,"y":1},{"x":-5,"y":-42},{"x":-33,"y":19},{"x":-3,"y":-24},{"x":-28,"y":18},{"x":-15,"y":-19},{"x":11,"y":21},{"x":-26,"y":-16},{"x":-76,"y":26},{"x":33,"y":8},{"x":-55,"y":-4},{"x":-220,"y":84},{"x":-22,"y":-15},{"x":-125,"y":19},{"x":-39,"y":-19},{"x":29,"y":-30},{"x":-32,"y":28},{"x":-75,"y":-9},{"x":-83,"y":31},{"x":-15,"y":-30},{"x":15,"y":34},{"x":-43,"y":18},{"x":-20,"y":-18},{"x":12,"y":21},{"x":-63,"y":69},{"x":-49,"y":-9},{"x":12,"y":-41},{"x":-25,"y":47},{"x":-426,"y":-51},{"x":-142,"y":-63},{"x":-110,"y":-93},{"x":-94,"y":-15}],"type":"coastline"},{"arc":[{"x":125716,"y":95796},{"x":34,"y":-54},{"x":66,"y":31},{"x":29,"y":-30},{"x":109,"y":-6},{"x":142,"y":35},{"x":89,"y":-64},{"x":28,"y":-60},{"x":-36,"y":-105},{"x":12,"y":-133},{"x":135,"y":-96},{"x":4,"y":-38},{"x":41,"y":-24},{"x":-7,"y":-40},{"x":135,"y":-37},{"x":23,"y":-42},{"x":-12,"y":-71},{"x":81,"y":-36},{"x":24,"y":-40},{"x":-25,"y":-75},{"x":39,"y":-53},{"x":-5,"y":-47},{"x":-50,"y":-50},{"x":-1,"y":-41},{"x":-151,"y":-112},{"x":-97,"y":-29},{"x":-96,"y":-146}],"type":"area"},{"arc":[{"x":126227,"y":94433},{"x":-33,"y":-73},{"x":-66,"y":2},{"x":12,"y":-37},{"x":-30,"y":-32}],"type":"admin"},{"arc":[{"x":126110,"y":94293},{"x":22,"y":-118},{"x":-36,"y":-50},{"x":45,"y":-107},{"x":140,"y":-50}],"type":"area"},{"arc":[{"x":126281,"y":93968},{"x":243,"y":88},{"x":276,"y":-40},{"x":43,"y":-48},{"x":-49,"y":-99},{"x":-46,"y":-5},{"x":66,"y":-64},{"x":-41,"y":-87},{"x":84,"y":-23},{"x":-1,"y":-46},{"x":40,"y":45},{"x":68,"y":5},{"x":109,"y":-141},{"x":-5,"y":-144},{"x":91,"y":10},{"x":8,"y":-45},{"x":80,"y":-10},{"x":149,"y":10},{"x":-4,"y":-38},{"x":139,"y":-22},{"x":44,"y":-29},{"x":3,"y":-38},{"x":73,"y":63},{"x":99,"y":-13},{"x":71,"y":-50},{"x":28,"y":57},{"x":75,"y":-13},{"x":39,"y":35},{"x":63,"y":-51},{"x":17,"y":31},{"x":58,"y":-16},{"x":90,"y":95},{"x":57,"y":-22},{"x":6,"y":-58},{"x":92,"y":-17},{"x":41,"y":46},{"x":74,"y":-8},{"x":36,"y":-158},{"x":41,"y":0},{"x":47,"y":-50},{"x":92,"y":23},{"x":19,"y":-34},{"x":36,"y":-4},{"x":44,"y":45},{"x":91,"y":-57},{"x":16,"y":-34},{"x":-86,"y":-76},{"x":-7,"y":-61},{"x":-28,"y":-12},{"x":106,"y":-75},{"x":64,"y":-218},{"x":58,"y":-29},{"x":92,"y":4},{"x":53,"y":55},{"x":102,"y":-48},{"x":42,"y":-55},{"x":134,"y":-32},{"x":20,"y":-29},{"x":55,"y":41},{"x":88,"y":-22},{"x":147,"y":27},{"x":48,"y":-40},{"x":92,"y":24}],"type":"area"},{"arc":[{"x":124327,"y":93571},{"x":-20,"y":20},{"x":-18,"y":-58},{"x":38,"y":38}],"type":"coastline"},{"arc":[{"x":124331,"y":93916},{"x":-73,"y":6},{"x":-46,"y":55},{"x":-36,"y":-23},{"x":-92,"y":30},{"x":26,"y":-88},{"x":-15,"y":-90},{"x":59,"y":-92},{"x":43,"y":-1},{"x":6,"y":29},{"x":5,"y":59},{"x":-38,"y":24},{"x":10,"y":80},{"x":27,"y":-18},{"x":26,"y":27},{"x":67,"y":-34},{"x":31,"y":36}],"type":"coastline"},{"arc":[{"x":125032,"y":93480},{"x":-9,"y":-18},{"x":32,"y":50},{"x":-23,"y":-32}],"type":"coastline"},{"arc":[{"x":125238,"y":92988},{"x":-96,"y":37},{"x":21,"y":-27},{"x":75,"y":-10}],"type":"coastline"},{"arc":[{"x":126110,"y":94293},{"x":-14,"y":43},{"x":-114,"y":-49},{"x":-65,"y":114}],"type":"admin"},{"arc":[{"x":125917,"y":94401},{"x":-87,"y":-10}],"type":"area"},{"arc":[{"x":125830,"y":94391},{"x":-2,"y":-79},{"x":-60,"y":-53},{"x":10,"y":-67},{"x":-46,"y":-102},{"x":19,"y":13},{"x":40,"y":-25},{"x":8,"y":-141},{"x":-121,"y":-112},{"x":-9,"y":42},{"x":-54,"y":-10},{"x":-22,"y":-48},{"x":44,"y":11},{"x":-44,"y":-34},{"x":-20,"y":-67},{"x":-66,"y":-4},{"x":-60,"y":-38},{"x":-19,"y":-106},{"x":-27,"y":5},{"x":-37,"y":-37},{"x":-42,"y":-7},{"x":-124,"y":46},{"x":-100,"y":104},{"x":14,"y":35},{"x":-33,"y":39},{"x":-57,"y":8},{"x":-54,"y":96},{"x":-90,"y":44},{"x":-22,"y":115},{"x":-141,"y":-21}],"type":"admin"},{"arc":[{"x":124715,"y":93998},{"x":66,"y":-65},{"x":48,"y":-127},{"x":60,"y":-40},{"x":-5,"y":-36},{"x":184,"y":-190},{"x":-14,"y":-64},{"x":-78,"y":-61},{"x":-39,"y":39},{"x":0,"y":29},{"x":36,"y":16},{"x":-60,"y":-11},{"x":12,"y":-107},{"x":31,"y":-33},{"x":31,"y":16},{"x":83,"y":-17},{"x":-12,"y":67},{"x":46,"y":8},{"x":169,"y":-67},{"x":55,"y":-87},{"x":-16,"y":16},{"x":5,"y":-56},{"x":-16,"y":13},{"x":24,"y":-40},{"x":-22,"y":17},{"x":6,"y":-38},{"x":-22,"y":14},{"x":3,"y":-114},{"x":67,"y":-84},{"x":63,"y":-12},{"x":56,"y":33},{"x":-71,"y":-63},{"x":-51,"y":13},{"x":48,"y":-23},{"x":42,"y":13},{"x":105,"y":-55},{"x":59,"y":-118},{"x":-6,"y":-57},{"x":65,"y":-39},{"x":18,"y":-71}],"type":"coastline"},{"arc":[{"x":126068,"y":93060},{"x":-6,"y":57},{"x":92,"y":217},{"x":84,"y":45},{"x":60,"y":-48},{"x":77,"y":52},{"x":-12,"y":62},{"x":-95,"y":114},{"x":9,"y":60},{"x":49,"y":31},{"x":-45,"y":318}],"type":"area"},{"arc":[{"x":130945,"y":86035},{"x":-9,"y":30},{"x":-39,"y":-53},{"x":48,"y":23}],"type":"coastline"},{"arc":[{"x":130980,"y":85491},{"x":-43,"y":23},{"x":-4,"y":-22},{"x":47,"y":-1}],"type":"coastline"},{"arc":[{"x":131150,"y":86248},{"x":-33,"y":20},{"x":-11,"y":-17},{"x":44,"y":-3}],"type":"coastline"},{"arc":[{"x":131253,"y":86166},{"x":-67,"y":60},{"x":-39,"y":-10},{"x":6,"y":-59},{"x":92,"y":-8},{"x":8,"y":17}],"type":"coastline"},{"arc":[{"x":131504,"y":85945},{"x":-31,"y":40},{"x":23,"y":35},{"x":-63,"y":10},{"x":-35,"y":71},{"x":-44,"y":1},{"x":-51,"y":-50},{"x":-51,"y":49},{"x":-20,"y":-10},{"x":14,"y":-83},{"x":73,"y":23},{"x":-16,"y":-24},{"x":42,"y":-40},{"x":-30,"y":-4},{"x":-16,"y":-54},{"x":20,"y":-107},{"x":-79,"y":-56},{"x":-10,"y":-47},{"x":135,"y":55},{"x":1,"y":-33},{"x":-47,"y":-19},{"x":-87,"y":-109},{"x":-49,"y":17},{"x":-14,"y":-64},{"x":-21,"y":4},{"x":23,"y":20},{"x":-34,"y":-10},{"x":-77,"y":62},{"x":-31,"y":-2},{"x":16,"y":-44},{"x":-52,"y":-65},{"x":2,"y":-86},{"x":38,"y":28},{"x":20,"y":-18},{"x":-47,"y":-26},{"x":-4,"y":-59},{"x":65,"y":-48},{"x":51,"y":-109},{"x":191,"y":-12},{"x":76,"y":-59},{"x":42,"y":6},{"x":-45,"y":13},{"x":38,"y":42},{"x":-51,"y":-1},{"x":-9,"y":44},{"x":24,"y":21},{"x":-53,"y":29},{"x":-15,"y":46},{"x":10,"y":71},{"x":64,"y":36},{"x":-46,"y":37},{"x":0,"y":181},{"x":16,"y":40},{"x":25,"y":-4},{"x":36,"y":137},{"x":62,"y":57},{"x":21,"y":68}],"type":"coastline"},{"arc":[{"x":129988,"y":86935},{"x":24,"y":-95},{"x":54,"y":-58},{"x":-30,"y":-49},{"x":14,"y":-62},{"x":-52,"y":-12},{"x":-14,"y":-38},{"x":-59,"y":-1},{"x":-40,"y":-61},{"x":84,"y":-70},{"x":149,"y":-59},{"x":99,"y":-95},{"x":-4,"y":-43},{"x":-125,"y":-123},{"x":21,"y":-30},{"x":-19,"y":-26},{"x":-29,"y":7},{"x":-110,"y":-67},{"x":10,"y":-56},{"x":-31,"y":-1},{"x":-74,"y":-69},{"x":-97,"y":-10},{"x":-77,"y":-116},{"x":-114,"y":-59},{"x":-51,"y":-87},{"x":27,"y":-40},{"x":-36,"y":-49},{"x":66,"y":-85},{"x":-37,"y":-164},{"x":-24,"y":-32},{"x":-185,"y":-65},{"x":-28,"y":-38}],"type":"area"},{"arc":[{"x":130557,"y":83197},{"x":62,"y":62},{"x":-8,"y":55},{"x":61,"y":36},{"x":19,"y":58},{"x":-45,"y":49},{"x":50,"y":65},{"x":-25,"y":32},{"x":30,"y":58},{"x":-49,"y":77},{"x":-5,"y":69},{"x":93,"y":17},{"x":4,"y":-19},{"x":8,"y":21},{"x":-8,"y":-28},{"x":85,"y":6},{"x":54,"y":-52},{"x":26,"y":-89},{"x":176,"y":-49},{"x":-71,"y":-135},{"x":-26,"y":-2},{"x":28,"y":-61},{"x":-3,"y":-175},{"x":62,"y":-74},{"x":42,"y":-7},{"x":-30,"y":-58},{"x":-1,"y":-75},{"x":14,"y":16},{"x":10,"y":-19},{"x":-21,"y":-21},{"x":31,"y":16},{"x":-65,"y":-89},{"x":-32,"y":5},{"x":-43,"y":64},{"x":-40,"y":-23},{"x":-61,"y":8},{"x":-16,"y":-105},{"x":60,"y":-107},{"x":96,"y":38},{"x":47,"y":-9},{"x":-4,"y":93},{"x":107,"y":128},{"x":105,"y":-17},{"x":82,"y":32},{"x":22,"y":103},{"x":47,"y":32},{"x":130,"y":-10},{"x":-90,"y":87},{"x":-91,"y":230},{"x":-163,"y":18},{"x":-52,"y":156},{"x":-1,"y":275},{"x":57,"y":68},{"x":0,"y":49},{"x":76,"y":58},{"x":-39,"y":55},{"x":71,"y":22},{"x":7,"y":37},{"x":-63,"y":134},{"x":8,"y":106},{"x":-139,"y":157},{"x":31,"y":47},{"x":6,"y":113},{"x":67,"y":7},{"x":5,"y":31},{"x":-86,"y":-12},{"x":-144,"y":91},{"x":-81,"y":-3},{"x":19,"y":-13},{"x":-26,"y":-8},{"x":7,"y":16},{"x":-32,"y":4},{"x":2,"y":-18},{"x":-55,"y":45},{"x":-75,"y":17},{"x":0,"y":50},{"x":-103,"y":76},{"x":1,"y":127},{"x":43,"y":85},{"x":61,"y":30},{"x":-69,"y":-18},{"x":7,"y":20},{"x":23,"y":-11},{"x":-1,"y":32},{"x":19,"y":-27},{"x":-4,"y":28},{"x":12,"y":3},{"x":6,"y":-23},{"x":-3,"y":22},{"x":-16,"y":16},{"x":24,"y":51},{"x":216,"y":116},{"x":-10,"y":25},{"x":-54,"y":-16},{"x":-32,"y":21},{"x":31,"y":28},{"x":-28,"y":-16},{"x":15,"y":14},{"x":-27,"y":8},{"x":-8,"y":-35},{"x":2,"y":45},{"x":-23,"y":-40},{"x":-85,"y":67},{"x":-70,"y":-40},{"x":-46,"y":80},{"x":-3,"y":43},{"x":114,"y":62},{"x":-15,"y":20},{"x":88,"y":-39},{"x":15,"y":29},{"x":80,"y":14},{"x":-59,"y":47},{"x":31,"y":60},{"x":-88,"y":72},{"x":-7,"y":68},{"x":-25,"y":-11},{"x":30,"y":83},{"x":73,"y":-3},{"x":-52,"y":23},{"x":-18,"y":40},{"x":72,"y":92},{"x":5,"y":46},{"x":-24,"y":45},{"x":-40,"y":-11},{"x":-21,"y":20},{"x":46,"y":63},{"x":-29,"y":5},{"x":1,"y":38},{"x":-48,"y":-1},{"x":-11,"y":25}],"type":"coastline"},{"arc":[{"x":123633,"y":96415},{"x":-109,"y":-36},{"x":-13,"y":-38},{"x":95,"y":-25},{"x":41,"y":67},{"x":-14,"y":32}],"type":"coastline"},{"arc":[{"x":123646,"y":95903},{"x":-31,"y":45},{"x":10,"y":79},{"x":-90,"y":19},{"x":-29,"y":36},{"x":6,"y":63},{"x":-54,"y":-3},{"x":-59,"y":39},{"x":7,"y":38},{"x":-50,"y":45},{"x":24,"y":42},{"x":-104,"y":83},{"x":-81,"y":26},{"x":14,"y":-25},{"x":-40,"y":32},{"x":-18,"y":54},{"x":18,"y":-20},{"x":32,"y":108},{"x":-27,"y":0},{"x":-171,"y":-176},{"x":60,"y":3},{"x":37,"y":-73},{"x":103,"y":-98},{"x":18,"y":-71},{"x":-29,"y":-36},{"x":21,"y":-68},{"x":-25,"y":-81},{"x":83,"y":-27},{"x":70,"y":-111},{"x":109,"y":-35},{"x":-16,"y":30},{"x":46,"y":-45},{"x":0,"y":-70},{"x":-118,"y":-166},{"x":27,"y":-16},{"x":87,"y":-5},{"x":54,"y":49},{"x":35,"y":89},{"x":-40,"y":23},{"x":2,"y":69},{"x":38,"y":5},{"x":43,"y":50},{"x":-9,"y":38},{"x":47,"y":26},{"x":0,"y":35}],"type":"coastline"},{"arc":[{"x":125716,"y":95796},{"x":-247,"y":-148},{"x":21,"y":-74},{"x":-13,"y":5},{"x":-10,"y":-40},{"x":-3,"y":30},{"x":-4,"y":-29},{"x":17,"y":-9},{"x":-53,"y":-92},{"x":-20,"y":-127},{"x":-12,"y":-180},{"x":24,"y":-22},{"x":-21,"y":-23},{"x":24,"y":5},{"x":3,"y":-30},{"x":-66,"y":16},{"x":-69,"y":-51},{"x":86,"y":-43},{"x":-9,"y":-18},{"x":-140,"y":40},{"x":-14,"y":47},{"x":-34,"y":-23},{"x":3,"y":16},{"x":-151,"y":-17},{"x":-95,"y":33},{"x":-27,"y":-11},{"x":-92,"y":54},{"x":-62,"y":-5},{"x":-66,"y":-51},{"x":-29,"y":3},{"x":-40,"y":60},{"x":-36,"y":-58},{"x":-12,"y":19},{"x":-28,"y":-13},{"x":-21,"y":39},{"x":-41,"y":-8},{"x":-10,"y":59},{"x":-40,"y":0},{"x":-55,"y":122},{"x":-100,"y":-22},{"x":-88,"y":123},{"x":-181,"y":-1},{"x":-32,"y":-56}],"type":"coastline"},{"arc":[{"x":123973,"y":95316},{"x":86,"y":-95},{"x":42,"y":-12},{"x":5,"y":-51},{"x":105,"y":-41}],"type":"admin"},{"arc":[{"x":124211,"y":95117},{"x":146,"y":10},{"x":227,"y":-251},{"x":83,"y":-14},{"x":38,"y":-48},{"x":60,"y":-8},{"x":34,"y":-68},{"x":56,"y":-21},{"x":36,"y":76},{"x":87,"y":58},{"x":132,"y":5},{"x":71,"y":-25},{"x":50,"y":45},{"x":15,"y":-47},{"x":95,"y":9},{"x":46,"y":-101},{"x":49,"y":-27},{"x":-27,"y":-50},{"x":26,"y":-40},{"x":-41,"y":-90},{"x":-11,"y":-98},{"x":24,"y":-30},{"x":-21,"y":-44}],"type":"admin"},{"arc":[{"x":125386,"y":94358},{"x":75,"y":-28},{"x":57,"y":71},{"x":250,"y":-35},{"x":62,"y":25}],"type":"admin"},{"arc":[{"x":125917,"y":94401},{"x":68,"y":31},{"x":25,"y":-12},{"x":155,"y":81},{"x":62,"y":-68}],"type":"admin"},{"arc":[{"x":127391,"y":85573},{"x":33,"y":-22},{"x":18,"y":-180},{"x":27,"y":-6},{"x":-15,"y":-95},{"x":-50,"y":-21},{"x":-37,"y":-56},{"x":-30,"y":5},{"x":-208,"y":-98},{"x":8,"y":-48},{"x":-47,"y":-36},{"x":23,"y":-95},{"x":-50,"y":-9},{"x":15,"y":-54},{"x":-38,"y":-110},{"x":-48,"y":-17},{"x":30,"y":-52},{"x":49,"y":-17},{"x":2,"y":-38},{"x":63,"y":5},{"x":39,"y":-62}],"type":"area"},{"arc":[{"x":125731,"y":91013},{"x":-41,"y":6},{"x":18,"y":-45},{"x":23,"y":39}],"type":"coastline"},{"arc":[{"x":125749,"y":91256},{"x":-39,"y":103},{"x":-68,"y":-88},{"x":71,"y":-27},{"x":36,"y":12}],"type":"coastline"},{"arc":[{"x":126264,"y":91649},{"x":-46,"y":-8},{"x":-6,"y":-30},{"x":33,"y":-3},{"x":19,"y":41}],"type":"coastline"},{"arc":[{"x":126403,"y":90731},{"x":-52,"y":65},{"x":-73,"y":-63},{"x":-49,"y":4},{"x":-13,"y":37},{"x":-60,"y":-29},{"x":-29,"y":46},{"x":-69,"y":-43},{"x":-103,"y":3},{"x":-97,"y":104},{"x":3,"y":-17},{"x":-25,"y":5},{"x":-59,"y":120},{"x":-43,"y":11},{"x":-35,"y":-142},{"x":128,"y":5},{"x":-10,"y":-46},{"x":110,"y":-57},{"x":3,"y":-36},{"x":69,"y":-36},{"x":10,"y":-78},{"x":50,"y":-36},{"x":20,"y":66},{"x":-19,"y":74},{"x":243,"y":-6},{"x":75,"y":21},{"x":1,"y":35},{"x":24,"y":-7}],"type":"coastline"},{"arc":[{"x":126595,"y":91391},{"x":-23,"y":75},{"x":-132,"y":-179},{"x":-120,"y":-84},{"x":46,"y":-24},{"x":-92,"y":-45},{"x":-57,"y":-96},{"x":27,"y":-105},{"x":73,"y":-24},{"x":89,"y":28},{"x":32,"y":53},{"x":-5,"y":142},{"x":-61,"y":50},{"x":195,"y":103},{"x":-20,"y":62},{"x":48,"y":44}],"type":"coastline"},{"arc":[{"x":126077,"y":92060},{"x":-31,"y":-35},{"x":33,"y":24},{"x":18,"y":-62},{"x":-36,"y":-6},{"x":-16,"y":39},{"x":-177,"y":-163},{"x":-65,"y":-242},{"x":-71,"y":41},{"x":-16,"y":60},{"x":43,"y":34},{"x":-27,"y":95},{"x":-79,"y":-10},{"x":27,"y":42},{"x":-26,"y":20},{"x":-81,"y":-53},{"x":-23,"y":-73},{"x":120,"y":-118},{"x":-47,"y":-94},{"x":28,"y":-76},{"x":-24,"y":-39},{"x":41,"y":4},{"x":9,"y":-67},{"x":37,"y":-16},{"x":58,"y":69},{"x":30,"y":106},{"x":20,"y":8},{"x":76,"y":-56},{"x":264,"y":224},{"x":18,"y":35},{"x":-21,"y":43},{"x":40,"y":43},{"x":47,"y":-14},{"x":10,"y":124},{"x":39,"y":-10},{"x":-23,"y":8},{"x":23,"y":13},{"x":37,"y":-5},{"x":-23,"y":-61},{"x":97,"y":-31},{"x":63,"y":-97},{"x":-21,"y":-26},{"x":30,"y":4},{"x":-5,"y":-30},{"x":28,"y":4},{"x":-28,"y":-18},{"x":32,"y":-3},{"x":-43,"y":-62},{"x":-36,"y":9},{"x":-116,"y":-110},{"x":-40,"y":19},{"x":36,"y":-76},{"x":189,"y":85},{"x":71,"y":66},{"x":5,"y":53},{"x":0,"y":-19},{"x":40,"y":-5},{"x":-26,"y":-22},{"x":13,"y":-37},{"x":57,"y":35},{"x":-21,"y":26},{"x":72,"y":-19},{"x":-61,"y":-38},{"x":-7,"y":-67},{"x":13,"y":-47},{"x":68,"y":5},{"x":7,"y":19},{"x":9,"y":-16},{"x":-15,"y":-23},{"x":-85,"y":-7},{"x":-2,"y":-53},{"x":2,"y":-100},{"x":66,"y":-17},{"x":-38,"y":-1},{"x":9,"y":-41},{"x":-33,"y":0},{"x":-10,"y":25},{"x":-60,"y":-38},{"x":-32,"y":-115},{"x":51,"y":-25},{"x":-7,"y":-27},{"x":41,"y":3},{"x":-53,"y":-19},{"x":-33,"y":-35},{"x":40,"y":-37},{"x":66,"y":69},{"x":15,"y":-15},{"x":63,"y":98},{"x":32,"y":1},{"x":-1,"y":70},{"x":66,"y":64},{"x":-30,"y":-101},{"x":66,"y":7},{"x":-64,"y":-33},{"x":1,"y":-39},{"x":71,"y":-15},{"x":7,"y":-22},{"x":-81,"y":19},{"x":-30,"y":-67},{"x":-19,"y":18},{"x":21,"y":28},{"x":-20,"y":-19},{"x":-10,"y":-49},{"x":15,"y":-60},{"x":-41,"y":-5},{"x":30,"y":-10},{"x":-17,"y":-17},{"x":-15,"y":14},{"x":7,"y":-47},{"x":-24,"y":6},{"x":39,"y":-146},{"x":-36,"y":9},{"x":-46,"y":-31},{"x":29,"y":-32},{"x":-37,"y":-62},{"x":-29,"y":18},{"x":-58,"y":-24},{"x":10,"y":-93},{"x":47,"y":40},{"x":41,"y":-18},{"x":-25,"y":-2},{"x":-5,"y":-74},{"x":32,"y":-12},{"x":1,"y":-36},{"x":-67,"y":-33},{"x":-42,"y":36},{"x":-3,"y":-23},{"x":-39,"y":0},{"x":19,"y":-33}],"type":"coastline"},{"arc":[{"x":126575,"y":90986},{"x":-16,"y":15},{"x":34,"y":34},{"x":-6,"y":16},{"x":35,"y":23},{"x":20,"y":-21},{"x":-67,"y":-67}],"type":"coastline"},{"arc":[{"x":126585,"y":91051},{"x":-5,"y":-26},{"x":-20,"y":18},{"x":25,"y":8}],"type":"coastline"},{"arc":[{"x":126559,"y":91042},{"x":20,"y":-18},{"x":-20,"y":-21},{"x":-20,"y":18},{"x":20,"y":21}],"type":"coastline"},{"arc":[{"x":125235,"y":85460},{"x":-49,"y":-151},{"x":-93,"y":8},{"x":-16,"y":-51},{"x":148,"y":-96},{"x":4,"y":-35},{"x":25,"y":6},{"x":41,"y":-60},{"x":33,"y":8},{"x":39,"y":-59},{"x":101,"y":8},{"x":28,"y":27},{"x":-26,"y":19},{"x":27,"y":70},{"x":5,"y":-38},{"x":27,"y":6},{"x":1,"y":-22},{"x":-20,"y":-4},{"x":-2,"y":-41},{"x":39,"y":1},{"x":-38,"y":2},{"x":-1,"y":16},{"x":9,"y":-12},{"x":60,"y":12},{"x":-6,"y":116},{"x":25,"y":-54},{"x":39,"y":69},{"x":6,"y":-54},{"x":43,"y":-3},{"x":-62,"y":-46},{"x":5,"y":-38},{"x":51,"y":5},{"x":13,"y":58},{"x":98,"y":-67},{"x":74,"y":94},{"x":55,"y":3},{"x":1,"y":-37},{"x":-25,"y":8},{"x":-8,"y":-49},{"x":-69,"y":-67},{"x":80,"y":-102},{"x":106,"y":47},{"x":10,"y":-171},{"x":-64,"y":18},{"x":18,"y":-18},{"x":-21,"y":-2},{"x":-82,"y":59},{"x":-27,"y":-65},{"x":77,"y":-12},{"x":83,"y":-112},{"x":135,"y":-58},{"x":53,"y":-56},{"x":93,"y":-25},{"x":96,"y":-79},{"x":51,"y":-65},{"x":-24,"y":-13},{"x":-3,"y":-36},{"x":21,"y":42},{"x":7,"y":-45},{"x":-21,"y":4},{"x":32,"y":-44},{"x":-52,"y":-19},{"x":66,"y":-160}],"type":"coastline"},{"arc":[{"x":123212,"y":97750},{"x":-27,"y":47},{"x":-44,"y":7},{"x":32,"y":-52},{"x":39,"y":-2}],"type":"coastline"},{"arc":[{"x":123612,"y":97884},{"x":-44,"y":-31},{"x":-91,"y":16},{"x":-25,"y":-58},{"x":75,"y":-21},{"x":85,"y":94}],"type":"coastline"},{"arc":[{"x":124057,"y":95605},{"x":-15,"y":47},{"x":-56,"y":-10},{"x":28,"y":-61},{"x":43,"y":24}],"type":"coastline"},{"arc":[{"x":124067,"y":95813},{"x":-16,"y":27},{"x":-36,"y":-25},{"x":31,"y":-26},{"x":21,"y":24}],"type":"coastline"},{"arc":[{"x":124169,"y":97454},{"x":-45,"y":64},{"x":-45,"y":-1},{"x":18,"y":66},{"x":-59,"y":10},{"x":-18,"y":-74},{"x":69,"y":-50},{"x":24,"y":-69},{"x":56,"y":54}],"type":"coastline"},{"arc":[{"x":124283,"y":96992},{"x":-23,"y":-23},{"x":-45,"y":10},{"x":30,"y":-53},{"x":38,"y":66}],"type":"coastline"},{"arc":[{"x":124707,"y":96700},{"x":-4,"y":21},{"x":-16,"y":-60},{"x":20,"y":39}],"type":"coastline"},{"arc":[{"x":124754,"y":97804},{"x":-14,"y":21},{"x":-41,"y":-31},{"x":49,"y":-11},{"x":6,"y":21}],"type":"coastline"},{"arc":[{"x":125035,"y":98439},{"x":-42,"y":83},{"x":-53,"y":4},{"x":-30,"y":45},{"x":-33,"y":-15},{"x":56,"y":-38},{"x":26,"y":-83},{"x":76,"y":4}],"type":"coastline"},{"arc":[{"x":125053,"y":96945},{"x":-23,"y":30},{"x":-7,"y":-35},{"x":30,"y":5}],"type":"coastline"},{"arc":[{"x":125292,"y":95459},{"x":-27,"y":25},{"x":-73,"y":-55},{"x":-24,"y":-69},{"x":25,"y":-25},{"x":82,"y":24},{"x":17,"y":100}],"type":"coastline"},{"arc":[{"x":125432,"y":98818},{"x":-64,"y":-6},{"x":17,"y":-46},{"x":41,"y":15},{"x":6,"y":37}],"type":"coastline"},{"arc":[{"x":125443,"y":97333},{"x":18,"y":37},{"x":-103,"y":44},{"x":-97,"y":-17},{"x":-43,"y":28},{"x":-28,"y":-41},{"x":65,"y":-24},{"x":19,"y":-47},{"x":3,"y":29},{"x":20,"y":-123},{"x":67,"y":29},{"x":40,"y":-12},{"x":67,"y":112},{"x":-28,"y":-15}],"type":"coastline"},{"arc":[{"x":125535,"y":98606},{"x":-93,"y":112},{"x":-5,"y":-24},{"x":-54,"y":-10},{"x":-12,"y":-47},{"x":75,"y":-39},{"x":58,"y":-118},{"x":-18,"y":87},{"x":49,"y":39}],"type":"coastline"},{"arc":[{"x":125549,"y":96157},{"x":-61,"y":114},{"x":-113,"y":42},{"x":-65,"y":139},{"x":-9,"y":56},{"x":19,"y":-27},{"x":-6,"y":59},{"x":29,"y":11},{"x":-20,"y":18},{"x":24,"y":36},{"x":25,"y":-3},{"x":21,"y":93},{"x":-189,"y":23},{"x":-70,"y":100},{"x":-63,"y":40},{"x":-66,"y":-13},{"x":-56,"y":22},{"x":3,"y":-18},{"x":-20,"y":53},{"x":-25,"y":-12},{"x":-20,"y":25},{"x":-7,"y":54},{"x":37,"y":54},{"x":63,"y":22},{"x":-73,"y":39},{"x":-43,"y":-4},{"x":-95,"y":-67},{"x":-41,"y":53},{"x":3,"y":21},{"x":45,"y":-4},{"x":-67,"y":79},{"x":48,"y":126},{"x":47,"y":-20},{"x":-56,"y":23},{"x":35,"y":107},{"x":48,"y":40},{"x":51,"y":-53},{"x":34,"y":6},{"x":10,"y":82},{"x":126,"y":89},{"x":-47,"y":83},{"x":29,"y":64},{"x":-24,"y":74},{"x":46,"y":112},{"x":54,"y":39},{"x":105,"y":-40},{"x":44,"y":84},{"x":107,"y":76},{"x":10,"y":77},{"x":-50,"y":72},{"x":22,"y":71},{"x":-86,"y":-11},{"x":-38,"y":80},{"x":20,"y":125},{"x":35,"y":63},{"x":24,"y":-1},{"x":-28,"y":12},{"x":6,"y":34},{"x":52,"y":34},{"x":-30,"y":10},{"x":-46,"y":-33},{"x":-43,"y":-119},{"x":-115,"y":-72},{"x":-9,"y":-73},{"x":-47,"y":-8},{"x":1,"y":-25},{"x":52,"y":-5},{"x":5,"y":-45},{"x":-76,"y":-37},{"x":-14,"y":-110},{"x":-73,"y":-13},{"x":-32,"y":-92},{"x":-54,"y":2},{"x":-38,"y":-32},{"x":19,"y":-25},{"x":58,"y":-7},{"x":27,"y":-63},{"x":-21,"y":-86},{"x":-60,"y":-2},{"x":2,"y":-39},{"x":31,"y":-18},{"x":9,"y":15},{"x":3,"y":-49},{"x":-53,"y":-102},{"x":-92,"y":1},{"x":-10,"y":-56},{"x":-82,"y":-42},{"x":-48,"y":49},{"x":-125,"y":-39},{"x":-49,"y":15},{"x":-26,"y":47},{"x":-110,"y":-11},{"x":-76,"y":40},{"x":24,"y":-27},{"x":-40,"y":-87},{"x":76,"y":-56},{"x":-9,"y":-44},{"x":25,"y":2},{"x":22,"y":-47},{"x":-8,"y":-23},{"x":-49,"y":-3},{"x":-40,"y":-104},{"x":-52,"y":-26},{"x":1,"y":-57},{"x":139,"y":-3},{"x":117,"y":120},{"x":54,"y":-1},{"x":51,"y":-65},{"x":-23,"y":10},{"x":-38,"y":-59},{"x":95,"y":-3},{"x":-16,"y":20},{"x":42,"y":-35},{"x":26,"y":-55},{"x":-15,"y":-108},{"x":32,"y":-7},{"x":24,"y":-78},{"x":0,"y":-52},{"x":-47,"y":-18},{"x":-26,"y":-47},{"x":32,"y":-14},{"x":61,"y":43},{"x":51,"y":-40},{"x":-27,"y":-97},{"x":-8,"y":33},{"x":-66,"y":-44},{"x":-58,"y":-104},{"x":-23,"y":23},{"x":-146,"y":-21},{"x":-68,"y":114},{"x":30,"y":-95},{"x":-55,"y":-61},{"x":61,"y":-14},{"x":55,"y":-61},{"x":-47,"y":-151},{"x":40,"y":-55},{"x":-38,"y":-175},{"x":-54,"y":-58},{"x":-59,"y":19},{"x":-112,"y":-85},{"x":184,"y":-90},{"x":9,"y":52},{"x":90,"y":-5},{"x":88,"y":-147},{"x":92,"y":-28},{"x":16,"y":-113},{"x":48,"y":40},{"x":57,"y":-52},{"x":205,"y":20},{"x":58,"y":-43},{"x":84,"y":34},{"x":-16,"y":64},{"x":69,"y":66},{"x":93,"y":-4},{"x":95,"y":-49},{"x":55,"y":11},{"x":17,"y":88},{"x":-75,"y":92},{"x":0,"y":37},{"x":46,"y":72},{"x":61,"y":6},{"x":38,"y":-24},{"x":45,"y":20},{"x":19,"y":33},{"x":-65,"y":21},{"x":-16,"y":87},{"x":24,"y":-6},{"x":-29,"y":41},{"x":37,"y":12},{"x":-7,"y":-17},{"x":82,"y":49}],"type":"coastline"},{"arc":[{"x":125626,"y":97344},{"x":-84,"y":70},{"x":-76,"y":-42},{"x":24,"y":-32},{"x":34,"y":18},{"x":52,"y":-18},{"x":23,"y":-48},{"x":27,"y":52}],"type":"coastline"},{"arc":[{"x":126082,"y":96465},{"x":-68,"y":69},{"x":-47,"y":-29},{"x":-19,"y":46},{"x":-41,"y":-4},{"x":-30,"y":-39},{"x":27,"y":-7},{"x":1,"y":-33},{"x":66,"y":11},{"x":29,"y":-68},{"x":47,"y":-1},{"x":35,"y":55}],"type":"coastline"},{"arc":[{"x":128624,"y":96277},{"x":-124,"y":12},{"x":24,"y":-17},{"x":-71,"y":-29},{"x":-12,"y":-48}],"type":"coastline"},{"arc":[{"x":122670,"y":94052},{"x":-50,"y":-3},{"x":-9,"y":-71},{"x":59,"y":74}],"type":"coastline"},{"arc":[{"x":122970,"y":95299},{"x":-63,"y":-5},{"x":-58,"y":-43},{"x":-69,"y":63},{"x":-115,"y":-65},{"x":-156,"y":71},{"x":-84,"y":-40},{"x":-100,"y":-161},{"x":84,"y":-72},{"x":96,"y":70},{"x":43,"y":119},{"x":89,"y":3},{"x":18,"y":-52},{"x":95,"y":-11},{"x":42,"y":42},{"x":57,"y":2},{"x":-1,"y":26},{"x":122,"y":53}],"type":"coastline"},{"arc":[{"x":123169,"y":94281},{"x":-53,"y":25},{"x":-47,"y":-37},{"x":46,"y":-42},{"x":-4,"y":36},{"x":58,"y":18}],"type":"coastline"},{"arc":[{"x":123364,"y":93058},{"x":-35,"y":53},{"x":-64,"y":-8},{"x":34,"y":-85},{"x":52,"y":6},{"x":13,"y":34}],"type":"coastline"},{"arc":[{"x":123402,"y":93435},{"x":-25,"y":71},{"x":-85,"y":107},{"x":-6,"y":-19},{"x":-16,"y":15},{"x":2,"y":32},{"x":-101,"y":30},{"x":-74,"y":-204},{"x":-68,"y":-100},{"x":36,"y":-130},{"x":120,"y":-46},{"x":18,"y":149},{"x":149,"y":5},{"x":50,"y":90}],"type":"coastline"},{"arc":[{"x":123728,"y":94972},{"x":-95,"y":32},{"x":-47,"y":-11},{"x":-18,"y":-34},{"x":74,"y":21},{"x":34,"y":-37},{"x":52,"y":29}],"type":"coastline"},{"arc":[{"x":124166,"y":94477},{"x":-62,"y":67},{"x":-58,"y":-3},{"x":-46,"y":51},{"x":-6,"y":56},{"x":51,"y":37},{"x":-32,"y":31},{"x":9,"y":-19},{"x":-24,"y":0},{"x":-21,"y":35},{"x":-1,"y":88},{"x":-108,"y":-1},{"x":32,"y":39},{"x":-74,"y":34},{"x":-18,"y":71},{"x":-31,"y":-35},{"x":6,"y":-73},{"x":-43,"y":-21},{"x":11,"y":-187},{"x":-58,"y":-29},{"x":-69,"y":3},{"x":-27,"y":-106},{"x":-16,"y":14},{"x":-49,"y":-29},{"x":-33,"y":18},{"x":-32,"y":-29},{"x":16,"y":-66},{"x":-33,"y":-75},{"x":-102,"y":-35},{"x":-58,"y":23},{"x":-58,"y":-82},{"x":70,"y":-79},{"x":-42,"y":-57},{"x":21,"y":-43},{"x":48,"y":12},{"x":31,"y":-60},{"x":16,"y":178},{"x":40,"y":17},{"x":-8,"y":82},{"x":65,"y":43},{"x":39,"y":7},{"x":25,"y":-23},{"x":64,"y":6},{"x":21,"y":31},{"x":50,"y":-5},{"x":-6,"y":67},{"x":45,"y":4},{"x":0,"y":54},{"x":69,"y":65},{"x":70,"y":-8},{"x":36,"y":32},{"x":99,"y":-88},{"x":-12,"y":-27},{"x":66,"y":-24},{"x":55,"y":8},{"x":35,"y":37},{"x":37,"y":-6}],"type":"coastline"},{"arc":[{"x":123973,"y":95316},{"x":-79,"y":-79},{"x":-41,"y":-4},{"x":-25,"y":-50},{"x":44,"y":-156},{"x":-37,"y":-83},{"x":37,"y":-11},{"x":7,"y":18},{"x":6,"y":-18},{"x":44,"y":22},{"x":-12,"y":-17},{"x":29,"y":-5},{"x":93,"y":31},{"x":28,"y":-6},{"x":-7,"y":-18},{"x":99,"y":11},{"x":18,"y":-16}],"type":"coastline"},{"arc":[{"x":124177,"y":94935},{"x":34,"y":182}],"type":"area"},{"arc":[{"x":124543,"y":94316},{"x":-10,"y":31},{"x":-39,"y":-18},{"x":53,"y":-31},{"x":-4,"y":18}],"type":"coastline"},{"arc":[{"x":124704,"y":94192},{"x":-74,"y":103},{"x":-14,"y":-25},{"x":-54,"y":28},{"x":-29,"y":-24},{"x":-3,"y":-25},{"x":50,"y":10},{"x":-4,"y":-31},{"x":38,"y":-5},{"x":29,"y":-57},{"x":61,"y":26}],"type":"coastline"},{"arc":[{"x":125386,"y":94358},{"x":-50,"y":-17},{"x":-254,"y":50},{"x":-126,"y":-72}],"type":"area"},{"arc":[{"x":124956,"y":94319},{"x":26,"y":-49},{"x":-89,"y":16},{"x":-112,"y":-235},{"x":-66,"y":-53}],"type":"coastline"},{"arc":[{"x":124486,"y":94407},{"x":-79,"y":5},{"x":-86,"y":54},{"x":-49,"y":-90},{"x":42,"y":-19},{"x":46,"y":15},{"x":39,"y":-50},{"x":67,"y":23},{"x":20,"y":62}],"type":"coastline"},{"arc":[{"x":124177,"y":94935},{"x":18,"y":-30},{"x":130,"y":81},{"x":60,"y":-8},{"x":34,"y":-32},{"x":-5,"y":-52},{"x":39,"y":-24},{"x":24,"y":-112},{"x":95,"y":-113},{"x":-17,"y":-49},{"x":20,"y":17},{"x":-17,"y":-20},{"x":32,"y":-35},{"x":-13,"y":20},{"x":18,"y":-5},{"x":-3,"y":-25},{"x":46,"y":-32},{"x":-20,"y":12},{"x":16,"y":3},{"x":-1,"y":-8},{"x":2,"y":10},{"x":67,"y":4},{"x":58,"y":-31},{"x":-13,"y":-54},{"x":45,"y":-21},{"x":28,"y":-76},{"x":-35,"y":-8},{"x":36,"y":-13},{"x":-18,"y":-132},{"x":57,"y":114},{"x":96,"y":3}],"type":"coastline"},{"arc":[{"x":132467,"y":88062},{"x":-27,"y":-1},{"x":28,"y":-25},{"x":-1,"y":26}],"type":"coastline"},{"arc":[{"x":133132,"y":88725},{"x":-36,"y":15},{"x":14,"y":-41},{"x":22,"y":26}],"type":"coastline"},{"arc":[{"x":133236,"y":88333},{"x":0,"y":36},{"x":-36,"y":-7},{"x":36,"y":-29}],"type":"coastline"},{"arc":[{"x":132106,"y":88175},{"x":129,"y":45},{"x":-12,"y":-20},{"x":33,"y":31},{"x":21,"y":-40},{"x":22,"y":38},{"x":-18,"y":-70},{"x":103,"y":-29},{"x":-11,"y":-78},{"x":54,"y":50},{"x":71,"y":-49},{"x":-3,"y":33},{"x":47,"y":5},{"x":2,"y":22},{"x":64,"y":-6},{"x":64,"y":82},{"x":99,"y":37},{"x":-65,"y":36},{"x":9,"y":81},{"x":-32,"y":30},{"x":26,"y":83},{"x":-25,"y":90},{"x":30,"y":64},{"x":107,"y":37},{"x":83,"y":75},{"x":51,"y":2},{"x":13,"y":55},{"x":40,"y":-6},{"x":-17,"y":40},{"x":54,"y":65},{"x":5,"y":57},{"x":44,"y":44},{"x":68,"y":8},{"x":29,"y":72},{"x":70,"y":58},{"x":69,"y":8},{"x":-27,"y":-16},{"x":89,"y":40},{"x":75,"y":-56},{"x":76,"y":68},{"x":48,"y":5}],"type":"coastline"},{"arc":[{"x":126540,"y":120592},{"x":-88,"y":-26},{"x":8,"y":-24},{"x":-6,"y":24},{"x":86,"y":26}],"type":"coastline"},{"arc":[{"x":126444,"y":120620},{"x":98,"y":52},{"x":3,"y":44},{"x":-4,"y":-43},{"x":-97,"y":-53}],"type":"coastline"},{"arc":[{"x":126602,"y":120519},{"x":-20,"y":61},{"x":-69,"y":-25},{"x":18,"y":-31},{"x":44,"y":13},{"x":27,"y":-18}],"type":"coastline"},{"arc":[{"x":126822,"y":120620},{"x":-22,"y":-10},{"x":-57,"y":78},{"x":-79,"y":-34},{"x":-61,"y":2},{"x":60,"y":-2},{"x":17,"y":-38},{"x":-46,"y":-20},{"x":-11,"y":-37},{"x":-24,"y":32},{"x":28,"y":-37},{"x":19,"y":13},{"x":6,"y":-58},{"x":19,"y":23},{"x":141,"y":54},{"x":-2,"y":27},{"x":26,"y":13},{"x":-14,"y":-6}],"type":"coastline"},{"arc":[{"x":127235,"y":120697},{"x":-115,"y":-27},{"x":-15,"y":32},{"x":1,"y":-29},{"x":-228,"y":-80},{"x":-38,"y":29},{"x":18,"y":-22},{"x":-38,"y":-11},{"x":-8,"y":15},{"x":6,"y":-17},{"x":-139,"y":-77},{"x":-14,"y":10},{"x":13,"y":-15},{"x":-58,"y":-33},{"x":-22,"y":42},{"x":-63,"y":-18},{"x":10,"y":-28},{"x":-45,"y":-14},{"x":-42,"y":20},{"x":76,"y":20},{"x":-12,"y":33},{"x":-77,"y":-19},{"x":6,"y":28},{"x":54,"y":16},{"x":-55,"y":-16},{"x":-47,"y":-51},{"x":-2,"y":92},{"x":-27,"y":4},{"x":-11,"y":-71},{"x":-41,"y":-9},{"x":-75,"y":105},{"x":-40,"y":-7},{"x":-12,"y":27}],"type":"coastline"},{"arc":[{"x":126195,"y":120626},{"x":-15,"y":-51},{"x":67,"y":-74},{"x":-40,"y":-212},{"x":28,"y":-41},{"x":90,"y":-21},{"x":-91,"y":-14},{"x":-16,"y":-49},{"x":-138,"y":14},{"x":-88,"y":-74},{"x":-192,"y":-32},{"x":-6,"y":45},{"x":36,"y":30},{"x":25,"y":95},{"x":-35,"y":39},{"x":-50,"y":3},{"x":-70,"y":54},{"x":-42,"y":-46},{"x":-41,"y":41},{"x":-110,"y":21},{"x":-27,"y":-76}],"type":"area"},{"arc":[{"x":125480,"y":120278},{"x":-34,"y":-118},{"x":23,"y":-27},{"x":-78,"y":-179},{"x":70,"y":-61},{"x":-7,"y":-59},{"x":37,"y":-48},{"x":-12,"y":-98},{"x":95,"y":-101},{"x":-22,"y":-140}],"type":"admin"},{"arc":[{"x":125552,"y":119447},{"x":189,"y":-48},{"x":22,"y":35},{"x":59,"y":18},{"x":52,"y":96},{"x":115,"y":3},{"x":77,"y":-24},{"x":63,"y":50},{"x":10,"y":-60},{"x":76,"y":-39},{"x":26,"y":-75},{"x":-84,"y":-153},{"x":-71,"y":-10},{"x":-48,"y":-55},{"x":27,"y":-120}],"type":"admin"},{"arc":[{"x":126065,"y":119065},{"x":84,"y":39},{"x":73,"y":-32},{"x":2,"y":-59},{"x":-43,"y":-27},{"x":4,"y":-63},{"x":42,"y":-14},{"x":56,"y":-74},{"x":178,"y":20},{"x":110,"y":-70},{"x":58,"y":40}],"type":"admin"},{"arc":[{"x":126629,"y":118825},{"x":-1,"y":193},{"x":116,"y":249},{"x":201,"y":-59},{"x":110,"y":-10},{"x":4,"y":36},{"x":31,"y":-53},{"x":-37,"y":-82},{"x":159,"y":15},{"x":-16,"y":22},{"x":33,"y":27},{"x":133,"y":-4}],"type":"admin"},{"arc":[{"x":127362,"y":119159},{"x":32,"y":116},{"x":-81,"y":159},{"x":1,"y":113},{"x":23,"y":92},{"x":119,"y":14},{"x":30,"y":73},{"x":44,"y":23},{"x":6,"y":141}],"type":"admin"},{"arc":[{"x":127536,"y":119890},{"x":5,"y":47},{"x":-153,"y":55},{"x":-60,"y":179},{"x":65,"y":20},{"x":34,"y":-35},{"x":74,"y":27},{"x":-14,"y":25},{"x":42,"y":17},{"x":79,"y":134}],"type":"admin"},{"arc":[{"x":127608,"y":120359},{"x":-6,"y":56},{"x":-65,"y":88},{"x":-126,"y":78},{"x":-154,"y":55},{"x":-22,"y":61}],"type":"admin"},{"arc":[{"x":128989,"y":121072},{"x":-48,"y":-4},{"x":-94,"y":-67},{"x":-50,"y":10},{"x":-89,"y":-69},{"x":-40,"y":-5},{"x":25,"y":21},{"x":-119,"y":-59},{"x":-254,"y":-13},{"x":-10,"y":-40},{"x":64,"y":-20},{"x":43,"y":-49},{"x":105,"y":-261},{"x":76,"y":-22},{"x":41,"y":29},{"x":-9,"y":133},{"x":60,"y":73},{"x":-20,"y":49},{"x":-55,"y":-2},{"x":6,"y":67},{"x":100,"y":31},{"x":8,"y":-96},{"x":53,"y":-23},{"x":61,"y":20},{"x":14,"y":33},{"x":38,"y":-15},{"x":6,"y":190},{"x":18,"y":35},{"x":6,"y":-29},{"x":24,"y":11},{"x":40,"y":72}],"type":"coastline"},{"arc":[{"x":127741,"y":120822},{"x":97,"y":-193},{"x":-45,"y":-98},{"x":49,"y":-64},{"x":52,"y":-22},{"x":30,"y":-64},{"x":-7,"y":-76},{"x":-65,"y":4},{"x":18,"y":-60},{"x":-93,"y":-45}],"type":"admin"},{"arc":[{"x":127777,"y":120204},{"x":-47,"y":-51},{"x":-2,"y":-144},{"x":-62,"y":-35},{"x":-51,"y":-77}],"type":"admin"},{"arc":[{"x":127615,"y":119897},{"x":85,"y":-134},{"x":48,"y":-31},{"x":33,"y":-113},{"x":-25,"y":-23},{"x":70,"y":-85},{"x":4,"y":-62}],"type":"admin"},{"arc":[{"x":127830,"y":119449},{"x":196,"y":-24},{"x":192,"y":-61},{"x":-30,"y":-142},{"x":120,"y":-94},{"x":85,"y":-9},{"x":-20,"y":-165}],"type":"admin"},{"arc":[{"x":128373,"y":118954},{"x":215,"y":14}],"type":"admin"},{"arc":[{"x":128588,"y":118968},{"x":-31,"y":128},{"x":42,"y":197},{"x":46,"y":73},{"x":96,"y":75},{"x":74,"y":209},{"x":14,"y":271},{"x":-75,"y":275},{"x":53,"y":68},{"x":-35,"y":34},{"x":27,"y":25},{"x":-26,"y":10},{"x":52,"y":9},{"x":7,"y":-46},{"x":45,"y":-29},{"x":58,"y":22},{"x":30,"y":39},{"x":32,"y":165},{"x":-7,"y":16},{"x":0,"y":-19},{"x":-26,"y":30},{"x":-66,"y":-42},{"x":-103,"y":44},{"x":-105,"y":-37},{"x":-43,"y":-55},{"x":-136,"y":39},{"x":-106,"y":152},{"x":-21,"y":120},{"x":4,"y":-52},{"x":-13,"y":53},{"x":-130,"y":131},{"x":16,"y":86},{"x":-23,"y":94},{"x":-190,"y":-81},{"x":-228,"y":-152},{"x":-19,"y":19},{"x":-15,"y":-51},{"x":-38,"y":36},{"x":12,"y":52},{"x":-19,"y":-54}],"type":"coastline"},{"arc":[{"x":129142,"y":120695},{"x":-43,"y":90},{"x":-54,"y":20},{"x":-20,"y":-25},{"x":-48,"y":2},{"x":-13,"y":35},{"x":-57,"y":-18},{"x":-5,"y":-48},{"x":-46,"y":-38},{"x":57,"y":16},{"x":-3,"y":-19},{"x":-105,"y":-94},{"x":-58,"y":3},{"x":13,"y":-28},{"x":-42,"y":-2},{"x":-52,"y":-60},{"x":106,"y":-8},{"x":12,"y":37},{"x":110,"y":-62},{"x":134,"y":57},{"x":114,"y":142}],"type":"coastline"},{"arc":[{"x":126195,"y":120626},{"x":-25,"y":-24},{"x":-34,"y":14},{"x":28,"y":-13},{"x":-3,"y":-67},{"x":-11,"y":22},{"x":-52,"y":-51},{"x":-28,"y":37},{"x":-10,"y":-45},{"x":-31,"y":24},{"x":22,"y":74},{"x":-24,"y":-16},{"x":-22,"y":32},{"x":-26,"y":-23},{"x":-52,"y":57},{"x":-4,"y":126},{"x":-55,"y":-56},{"x":12,"y":-44},{"x":-27,"y":46},{"x":-78,"y":-46},{"x":-29,"y":13},{"x":108,"y":46},{"x":-8,"y":63},{"x":50,"y":57},{"x":-11,"y":29},{"x":-19,"y":7},{"x":18,"y":-8},{"x":-37,"y":-49},{"x":-28,"y":16},{"x":30,"y":58},{"x":68,"y":-19},{"x":-43,"y":91},{"x":39,"y":-48},{"x":20,"y":9},{"x":22,"y":-23},{"x":-19,"y":20},{"x":19,"y":-1},{"x":-22,"y":15},{"x":27,"y":4},{"x":-6,"y":-42},{"x":12,"y":30},{"x":35,"y":-15},{"x":6,"y":-49},{"x":65,"y":12},{"x":31,"y":61},{"x":-52,"y":83},{"x":-131,"y":76},{"x":8,"y":15},{"x":-150,"y":35}],"type":"coastline"},{"arc":[{"x":125778,"y":121159},{"x":-47,"y":-80},{"x":-163,"y":-58},{"x":-23,"y":-35},{"x":-46,"y":4},{"x":33,"y":-103},{"x":43,"y":-11},{"x":-84,"y":-102},{"x":-65,"y":-12},{"x":-14,"y":-25},{"x":-79,"y":6},{"x":-74,"y":-384},{"x":-87,"y":-98},{"x":22,"y":-48}],"type":"area"},{"arc":[{"x":125194,"y":120213},{"x":65,"y":95},{"x":102,"y":2},{"x":119,"y":-32}],"type":"admin"},{"arc":[{"x":123979,"y":122714},{"x":6,"y":17},{"x":-59,"y":6},{"x":4,"y":-26},{"x":49,"y":3}],"type":"coastline"},{"arc":[{"x":124043,"y":122657},{"x":-73,"y":48},{"x":45,"y":-99},{"x":28,"y":51}],"type":"coastline"},{"arc":[{"x":124096,"y":122071},{"x":-15,"y":24},{"x":-25,"y":-20},{"x":-27,"y":-136},{"x":67,"y":132}],"type":"coastline"},{"arc":[{"x":124158,"y":122892},{"x":-20,"y":18},{"x":-55,"y":-20},{"x":-32,"y":14},{"x":-37,"y":-50},{"x":-36,"y":31},{"x":-44,"y":-101},{"x":54,"y":-46},{"x":-15,"y":19},{"x":37,"y":1},{"x":2,"y":-31},{"x":20,"y":51},{"x":29,"y":14},{"x":16,"y":-31},{"x":-4,"y":53},{"x":85,"y":78}],"type":"coastline"},{"arc":[{"x":124158,"y":121761},{"x":-23,"y":45},{"x":-40,"y":-55},{"x":63,"y":10}],"type":"coastline"},{"arc":[{"x":124282,"y":121207},{"x":-18,"y":64},{"x":-38,"y":-14},{"x":-22,"y":25},{"x":-2,"y":-46},{"x":-95,"y":-51},{"x":4,"y":-56},{"x":28,"y":2},{"x":26,"y":-37},{"x":43,"y":11},{"x":27,"y":13},{"x":0,"y":59},{"x":49,"y":-7},{"x":-2,"y":37}],"type":"coastline"},{"arc":[{"x":124309,"y":121445},{"x":-19,"y":19},{"x":-22,"y":-33},{"x":-60,"y":-3},{"x":-23,"y":-55},{"x":97,"y":-13},{"x":-32,"y":32},{"x":59,"y":53}],"type":"coastline"},{"arc":[{"x":124405,"y":121315},{"x":-11,"y":66},{"x":4,"y":-92},{"x":7,"y":26}],"type":"coastline"},{"arc":[{"x":124311,"y":119254},{"x":30,"y":-7},{"x":127,"y":73},{"x":45,"y":-54},{"x":79,"y":-7},{"x":58,"y":57},{"x":58,"y":14},{"x":12,"y":52},{"x":110,"y":127},{"x":-36,"y":120},{"x":75,"y":110},{"x":53,"y":19},{"x":-30,"y":53},{"x":21,"y":86},{"x":82,"y":17},{"x":4,"y":31},{"x":45,"y":10},{"x":72,"y":230},{"x":78,"y":28}],"type":"admin"},{"arc":[{"x":125778,"y":121159},{"x":-300,"y":167},{"x":-43,"y":160},{"x":-110,"y":136},{"x":55,"y":23},{"x":-75,"y":-21},{"x":-201,"y":67},{"x":-20,"y":78},{"x":10,"y":-65},{"x":-27,"y":-3},{"x":-48,"y":73},{"x":48,"y":-74},{"x":-46,"y":12},{"x":-19,"y":62},{"x":18,"y":-62},{"x":-48,"y":-41},{"x":-93,"y":-18},{"x":19,"y":21},{"x":-30,"y":13},{"x":-50,"y":-55},{"x":-45,"y":12},{"x":-66,"y":-55},{"x":33,"y":-6},{"x":-20,"y":-26},{"x":-14,"y":17},{"x":-13,"y":-50},{"x":-104,"y":-35},{"x":-58,"y":-69},{"x":-47,"y":10},{"x":-24,"y":-40},{"x":-24,"y":8},{"x":7,"y":-23},{"x":40,"y":25},{"x":4,"y":-18},{"x":0,"y":19},{"x":37,"y":-9},{"x":-30,"y":0},{"x":22,"y":-9},{"x":-9,"y":-48},{"x":-83,"y":-29},{"x":46,"y":-134},{"x":-83,"y":77},{"x":-65,"y":-91},{"x":41,"y":-46},{"x":-10,"y":-22},{"x":29,"y":-6},{"x":-48,"y":9},{"x":-27,"y":-59},{"x":44,"y":-27},{"x":-26,"y":-22},{"x":9,"y":27},{"x":-31,"y":8},{"x":2,"y":-38},{"x":-157,"y":-64},{"x":29,"y":102},{"x":56,"y":5},{"x":37,"y":78},{"x":-45,"y":2},{"x":-6,"y":-26},{"x":-93,"y":9},{"x":-26,"y":-26},{"x":-10,"y":56},{"x":-85,"y":-91},{"x":-35,"y":41},{"x":22,"y":107},{"x":53,"y":40},{"x":-66,"y":47},{"x":60,"y":14},{"x":-1,"y":39},{"x":-57,"y":20},{"x":80,"y":46},{"x":-2,"y":25},{"x":-41,"y":-11},{"x":-1,"y":32},{"x":59,"y":20},{"x":-16,"y":67},{"x":35,"y":7},{"x":-15,"y":32},{"x":35,"y":24},{"x":-77,"y":-3},{"x":29,"y":50},{"x":-31,"y":65},{"x":30,"y":80},{"x":-28,"y":69},{"x":-41,"y":26},{"x":-47,"y":-208},{"x":19,"y":-39},{"x":-56,"y":-49},{"x":11,"y":-31},{"x":-36,"y":-41},{"x":-31,"y":1},{"x":4,"y":-60},{"x":-50,"y":12},{"x":37,"y":104},{"x":-17,"y":49},{"x":57,"y":59},{"x":-27,"y":117},{"x":23,"y":43},{"x":-48,"y":7},{"x":-12,"y":29},{"x":105,"y":127},{"x":32,"y":100},{"x":-27,"y":25},{"x":-34,"y":-6},{"x":-43,"y":70},{"x":-59,"y":-136},{"x":-75,"y":-81},{"x":6,"y":-78},{"x":-48,"y":-28},{"x":-96,"y":-244},{"x":-88,"y":-65},{"x":-13,"y":-105}],"type":"coastline"},{"arc":[{"x":124172,"y":118853},{"x":73,"y":61},{"x":100,"y":8},{"x":31,"y":67},{"x":79,"y":64},{"x":108,"y":-45},{"x":117,"y":87},{"x":212,"y":-7},{"x":12,"y":19},{"x":39,"y":-16},{"x":67,"y":48},{"x":56,"y":-253},{"x":56,"y":16},{"x":14,"y":-45},{"x":73,"y":28},{"x":77,"y":-23},{"x":131,"y":17}],"type":"area"},{"arc":[{"x":125417,"y":118879},{"x":-43,"y":63},{"x":22,"y":90},{"x":-55,"y":186},{"x":25,"y":51},{"x":167,"y":75},{"x":-22,"y":55},{"x":41,"y":48}],"type":"area"},{"arc":[{"x":124824,"y":117505},{"x":193,"y":47},{"x":30,"y":33},{"x":-24,"y":80},{"x":106,"y":128},{"x":-120,"y":146},{"x":94,"y":122},{"x":14,"y":138},{"x":43,"y":25},{"x":-6,"y":56},{"x":69,"y":75},{"x":-18,"y":80},{"x":41,"y":24},{"x":13,"y":97},{"x":83,"y":5}],"type":"area"},{"arc":[{"x":125342,"y":118561},{"x":75,"y":318}],"type":"area"},{"arc":[{"x":125342,"y":118561},{"x":66,"y":-17},{"x":44,"y":14},{"x":26,"y":49},{"x":140,"y":8},{"x":46,"y":54},{"x":103,"y":-2},{"x":25,"y":61},{"x":109,"y":67},{"x":13,"y":37},{"x":-28,"y":32},{"x":49,"y":76},{"x":108,"y":-8},{"x":35,"y":38},{"x":-13,"y":95}],"type":"area"},{"arc":[{"x":126629,"y":118825},{"x":40,"y":-31},{"x":13,"y":-113},{"x":-61,"y":-87}],"type":"area"},{"arc":[{"x":127062,"y":118525},{"x":190,"y":276},{"x":48,"y":245},{"x":-24,"y":20},{"x":104,"y":91}],"type":"admin"},{"arc":[{"x":127380,"y":119157},{"x":-18,"y":2}],"type":"admin"},{"arc":[{"x":127741,"y":120822},{"x":-39,"y":-11},{"x":-16,"y":73},{"x":-106,"y":-22},{"x":7,"y":-74},{"x":-62,"y":-41},{"x":21,"y":-48},{"x":-108,"y":-41},{"x":-8,"y":34},{"x":0,"y":-37},{"x":-113,"y":-19},{"x":-44,"y":78},{"x":43,"y":-79},{"x":-61,"y":45},{"x":5,"y":40},{"x":-25,"y":-23}],"type":"coastline"},{"arc":[{"x":127608,"y":120359},{"x":23,"y":-94},{"x":97,"y":40},{"x":49,"y":-101}],"type":"area"},{"arc":[{"x":127536,"y":119890},{"x":20,"y":-18},{"x":59,"y":25}],"type":"area"},{"arc":[{"x":127380,"y":119157},{"x":52,"y":-7}],"type":"area"},{"arc":[{"x":127432,"y":119150},{"x":30,"y":137},{"x":134,"y":-8},{"x":15,"y":70},{"x":117,"y":5},{"x":102,"y":95}],"type":"area"},{"arc":[{"x":127432,"y":119150},{"x":-28,"y":-167},{"x":68,"y":-10},{"x":8,"y":-39},{"x":41,"y":-6},{"x":43,"y":-67},{"x":146,"y":-42},{"x":70,"y":9},{"x":36,"y":-64},{"x":127,"y":-78}],"type":"area"},{"arc":[{"x":127943,"y":118686},{"x":12,"y":67},{"x":100,"y":60},{"x":31,"y":83},{"x":125,"y":7},{"x":12,"y":-35},{"x":53,"y":-14},{"x":97,"y":100}],"type":"admin"},{"arc":[{"x":128132,"y":118301},{"x":5,"y":75},{"x":-88,"y":24},{"x":-19,"y":65},{"x":53,"y":113},{"x":-68,"y":51},{"x":-13,"y":42},{"x":-59,"y":15}],"type":"admin"},{"arc":[{"x":130492,"y":114416},{"x":-28,"y":-19},{"x":25,"y":-53},{"x":61,"y":2},{"x":-58,"y":70}],"type":"coastline"},{"arc":[{"x":130975,"y":113616},{"x":-30,"y":29},{"x":-29,"y":-10},{"x":23,"y":-34},{"x":36,"y":15}],"type":"coastline"},{"arc":[{"x":130966,"y":116231},{"x":-72,"y":3},{"x":36,"y":-35},{"x":62,"y":13},{"x":-26,"y":19}],"type":"coastline"},{"arc":[{"x":130084,"y":116130},{"x":-196,"y":-106}],"type":"area"},{"arc":[{"x":129888,"y":116024},{"x":52,"y":-140},{"x":-20,"y":-50},{"x":53,"y":-71},{"x":-78,"y":-61},{"x":-94,"y":23},{"x":-60,"y":-23},{"x":4,"y":21},{"x":-25,"y":-47},{"x":-66,"y":10},{"x":-22,"y":-37},{"x":-457,"y":-79},{"x":-29,"y":-22},{"x":-38,"y":21},{"x":-81,"y":-7},{"x":-54,"y":40},{"x":-49,"y":-41},{"x":-101,"y":38},{"x":-154,"y":-91},{"x":-48,"y":14},{"x":-109,"y":-18},{"x":-44,"y":43},{"x":-68,"y":11},{"x":-75,"y":-25},{"x":-81,"y":66},{"x":-45,"y":-17},{"x":-118,"y":98},{"x":-191,"y":62},{"x":-15,"y":73}],"type":"admin"},{"arc":[{"x":127444,"y":114933},{"x":124,"y":-145},{"x":130,"y":-36},{"x":30,"y":-30},{"x":-3,"y":-51}],"type":"admin"},{"arc":[{"x":127725,"y":114671},{"x":199,"y":-13},{"x":47,"y":-53},{"x":24,"y":77},{"x":57,"y":-2},{"x":46,"y":34},{"x":118,"y":-63},{"x":115,"y":30},{"x":30,"y":-22},{"x":-2,"y":-65},{"x":276,"y":-43},{"x":70,"y":-45},{"x":52,"y":-75},{"x":114,"y":-77},{"x":66,"y":-10},{"x":0,"y":-37},{"x":86,"y":-51},{"x":135,"y":39},{"x":93,"y":50},{"x":-10,"y":19},{"x":45,"y":4},{"x":2,"y":-31},{"x":46,"y":-31},{"x":-61,"y":-16},{"x":53,"y":-40},{"x":-32,"y":-78},{"x":20,"y":-46},{"x":-38,"y":-10},{"x":-16,"y":22},{"x":-9,"y":-41},{"x":40,"y":13},{"x":30,"y":-47},{"x":70,"y":-165},{"x":-13,"y":-48},{"x":104,"y":-12}],"type":"admin"},{"arc":[{"x":129482,"y":113838},{"x":53,"y":-32},{"x":73,"y":19},{"x":79,"y":-43},{"x":73,"y":8},{"x":193,"y":-146},{"x":64,"y":56},{"x":15,"y":109},{"x":44,"y":15},{"x":-32,"y":48},{"x":23,"y":20},{"x":-11,"y":45},{"x":38,"y":-24},{"x":65,"y":24},{"x":40,"y":-13},{"x":25,"y":-57},{"x":116,"y":-34},{"x":28,"y":-65},{"x":60,"y":5},{"x":24,"y":-30},{"x":73,"y":19},{"x":119,"y":-11},{"x":80,"y":-33},{"x":10,"y":-38},{"x":101,"y":11},{"x":53,"y":-23}],"type":"area"},{"arc":[{"x":130888,"y":113668},{"x":-14,"y":44},{"x":-89,"y":67},{"x":-79,"y":9},{"x":3,"y":63},{"x":15,"y":-22},{"x":8,"y":18},{"x":28,"y":-9},{"x":20,"y":46},{"x":-44,"y":111},{"x":-78,"y":28},{"x":-6,"y":24},{"x":-24,"y":-41},{"x":-52,"y":35},{"x":12,"y":16},{"x":-44,"y":3},{"x":36,"y":2},{"x":100,"y":114},{"x":-79,"y":39},{"x":-63,"y":94},{"x":-15,"y":-16},{"x":-1,"y":30},{"x":-14,"y":-13},{"x":-37,"y":31},{"x":-15,"y":80},{"x":-11,"y":-17},{"x":-41,"y":17},{"x":100,"y":31},{"x":-28,"y":152},{"x":-31,"y":-28},{"x":19,"y":-60},{"x":-18,"y":-4},{"x":-4,"y":63},{"x":-34,"y":-9},{"x":27,"y":11},{"x":-11,"y":38},{"x":44,"y":0},{"x":-22,"y":3},{"x":-16,"y":142},{"x":-43,"y":-3},{"x":-19,"y":-37},{"x":11,"y":88},{"x":23,"y":-49},{"x":21,"y":7},{"x":15,"y":82},{"x":-23,"y":-9},{"x":4,"y":21},{"x":114,"y":92},{"x":-77,"y":-46},{"x":-42,"y":32},{"x":-4,"y":72},{"x":-47,"y":-10},{"x":40,"y":35},{"x":-45,"y":0},{"x":64,"y":15},{"x":-10,"y":27},{"x":20,"y":1},{"x":35,"y":-93},{"x":52,"y":40},{"x":-49,"y":-22},{"x":13,"y":77},{"x":63,"y":-8},{"x":-5,"y":61},{"x":30,"y":3},{"x":-167,"y":-1},{"x":-1,"y":54},{"x":133,"y":3},{"x":-4,"y":50},{"x":1,"y":-23},{"x":-27,"y":-2},{"x":7,"y":24},{"x":-126,"y":-11},{"x":18,"y":64},{"x":25,"y":-1},{"x":-21,"y":10},{"x":96,"y":18},{"x":0,"y":23},{"x":65,"y":-5},{"x":-23,"y":16},{"x":25,"y":-12},{"x":11,"y":22},{"x":244,"y":-1},{"x":-159,"y":170},{"x":-142,"y":62},{"x":13,"y":41},{"x":-40,"y":-28},{"x":23,"y":73},{"x":28,"y":-33},{"x":168,"y":-29},{"x":43,"y":79},{"x":99,"y":10},{"x":-4,"y":42},{"x":59,"y":-30},{"x":-45,"y":-38},{"x":30,"y":11},{"x":82,"y":-42},{"x":17,"y":20},{"x":-30,"y":61},{"x":56,"y":93},{"x":-144,"y":241},{"x":-84,"y":43},{"x":-89,"y":4},{"x":-21,"y":-35},{"x":-55,"y":2},{"x":-49,"y":-39},{"x":-181,"y":23},{"x":-106,"y":-28},{"x":34,"y":-7},{"x":-25,"y":-28},{"x":-11,"y":25},{"x":-36,"y":10},{"x":-11,"y":-21},{"x":-48,"y":49},{"x":-57,"y":6},{"x":-58,"y":59}],"type":"coastline"},{"arc":[{"x":131136,"y":114974},{"x":-23,"y":28},{"x":-116,"y":5},{"x":-108,"y":-25},{"x":-2,"y":-61},{"x":-14,"y":17},{"x":6,"y":-24},{"x":-99,"y":-57},{"x":-21,"y":-49},{"x":49,"y":-23},{"x":46,"y":17},{"x":212,"y":130},{"x":58,"y":11},{"x":12,"y":31}],"type":"coastline"},{"arc":[{"x":131176,"y":115831},{"x":-31,"y":12},{"x":-1,"y":-41},{"x":32,"y":29}],"type":"coastline"},{"arc":[{"x":131179,"y":115668},{"x":-27,"y":19},{"x":-6,"y":-33},{"x":33,"y":14}],"type":"coastline"},{"arc":[{"x":131204,"y":115507},{"x":-13,"y":26},{"x":-39,"y":-10},{"x":-72,"y":50},{"x":-44,"y":-42},{"x":-13,"y":-74},{"x":14,"y":-15},{"x":42,"y":25},{"x":17,"y":43},{"x":81,"y":-23},{"x":27,"y":20}],"type":"coastline"},{"arc":[{"x":131257,"y":113644},{"x":-28,"y":-21},{"x":24,"y":-32}],"type":"coastline"},{"arc":[{"x":131287,"y":115722},{"x":-19,"y":17},{"x":-45,"y":-13},{"x":2,"y":-42},{"x":38,"y":2},{"x":24,"y":36}],"type":"coastline"},{"arc":[{"x":131440,"y":115064},{"x":-57,"y":34},{"x":-84,"y":-10},{"x":-73,"y":-101},{"x":82,"y":-22},{"x":113,"y":48},{"x":19,"y":51}],"type":"coastline"},{"arc":[{"x":129888,"y":112414},{"x":-83,"y":11},{"x":-38,"y":29},{"x":46,"y":57},{"x":-45,"y":67},{"x":-73,"y":45},{"x":-40,"y":-9},{"x":9,"y":30},{"x":-73,"y":46},{"x":31,"y":23},{"x":-44,"y":-4},{"x":23,"y":16}],"type":"admin"},{"arc":[{"x":129601,"y":112725},{"x":-22,"y":30},{"x":-27,"y":-10},{"x":-5,"y":32},{"x":-118,"y":45},{"x":90,"y":79},{"x":-18,"y":13},{"x":44,"y":100},{"x":-9,"y":63},{"x":89,"y":201},{"x":-198,"y":48},{"x":-41,"y":102},{"x":-87,"y":-7}],"type":"area"},{"arc":[{"x":129299,"y":113421},{"x":-90,"y":-10},{"x":-146,"y":-98},{"x":-22,"y":6},{"x":17,"y":37},{"x":-53,"y":33},{"x":-45,"y":-32},{"x":-208,"y":13},{"x":-92,"y":-33},{"x":-57,"y":53}],"type":"admin"},{"arc":[{"x":128603,"y":113390},{"x":-37,"y":-29},{"x":27,"y":-47},{"x":-52,"y":-97},{"x":-19,"y":-158},{"x":26,"y":-138},{"x":-48,"y":-16},{"x":49,"y":-37},{"x":40,"y":7},{"x":55,"y":-55},{"x":37,"y":3},{"x":23,"y":-67},{"x":25,"y":-1},{"x":20,"y":-143},{"x":65,"y":-38}],"type":"admin"},{"arc":[{"x":128814,"y":112574},{"x":197,"y":-53},{"x":-46,"y":-85},{"x":268,"y":-134},{"x":-55,"y":-96},{"x":7,"y":-37},{"x":52,"y":-15},{"x":-32,"y":-56}],"type":"area"},{"arc":[{"x":129205,"y":112098},{"x":46,"y":-17},{"x":32,"y":24},{"x":52,"y":-50},{"x":15,"y":23},{"x":52,"y":-12},{"x":155,"y":-87}],"type":"admin"},{"arc":[{"x":129557,"y":111979},{"x":54,"y":29},{"x":-21,"y":30},{"x":18,"y":28},{"x":46,"y":-58},{"x":99,"y":-53},{"x":63,"y":68},{"x":-198,"y":93},{"x":19,"y":15},{"x":73,"y":-37},{"x":44,"y":82},{"x":33,"y":-17},{"x":-30,"y":-30},{"x":73,"y":-68},{"x":60,"y":110},{"x":-150,"y":73},{"x":-22,"y":-25},{"x":-33,"y":5},{"x":17,"y":40},{"x":-24,"y":12},{"x":23,"y":19},{"x":-8,"y":-19},{"x":57,"y":-14},{"x":26,"y":53},{"x":63,"y":-42},{"x":-10,"y":-14},{"x":-51,"y":43},{"x":-1,"y":-17},{"x":61,"y":-32},{"x":5,"y":19},{"x":21,"y":-13},{"x":-24,"y":-14},{"x":16,"y":-10},{"x":24,"y":36},{"x":-50,"y":46},{"x":58,"y":97}],"type":"coastline"},{"arc":[{"x":130583,"y":112139},{"x":-28,"y":24},{"x":10,"y":36},{"x":-81,"y":12},{"x":-8,"y":-129},{"x":91,"y":19},{"x":16,"y":38}],"type":"coastline"},{"arc":[{"x":130808,"y":110793},{"x":-89,"y":47},{"x":-39,"y":-22},{"x":12,"y":-41},{"x":41,"y":-11},{"x":6,"y":-48},{"x":69,"y":75}],"type":"coastline"},{"arc":[{"x":131008,"y":111423},{"x":19,"y":24},{"x":-53,"y":63},{"x":-49,"y":-12},{"x":-103,"y":74},{"x":-176,"y":59},{"x":-102,"y":-82},{"x":12,"y":-111},{"x":-63,"y":-36},{"x":-64,"y":7},{"x":-22,"y":-99},{"x":65,"y":-47},{"x":-1,"y":-42},{"x":64,"y":-67},{"x":46,"y":13},{"x":5,"y":32},{"x":62,"y":13},{"x":38,"y":-19},{"x":75,"y":32},{"x":-23,"y":10},{"x":11,"y":52},{"x":104,"y":24},{"x":-18,"y":61},{"x":23,"y":38},{"x":166,"y":-5},{"x":-16,"y":18}],"type":"coastline"},{"arc":[{"x":131032,"y":112118},{"x":-76,"y":96},{"x":6,"y":36},{"x":-49,"y":-3},{"x":-46,"y":52},{"x":-8,"y":-65},{"x":-45,"y":-1},{"x":41,"y":-17},{"x":0,"y":-36},{"x":-1,"y":34},{"x":-44,"y":7},{"x":7,"y":-49},{"x":-26,"y":22},{"x":-16,"y":-78},{"x":-42,"y":-14},{"x":6,"y":-35},{"x":-26,"y":-12},{"x":9,"y":23},{"x":-56,"y":-41},{"x":-38,"y":-55},{"x":12,"y":-96},{"x":111,"y":52},{"x":119,"y":-78},{"x":58,"y":19},{"x":23,"y":-30},{"x":51,"y":11},{"x":-19,"y":41},{"x":-68,"y":12},{"x":-22,"y":37},{"x":24,"y":61},{"x":55,"y":16},{"x":-14,"y":27},{"x":74,"y":64}],"type":"coastline"},{"arc":[{"x":131111,"y":112183},{"x":-24,"y":59},{"x":-22,"y":-2},{"x":-28,"y":-107},{"x":53,"y":12},{"x":21,"y":38}],"type":"coastline"},{"arc":[{"x":131156,"y":111023},{"x":-19,"y":44},{"x":-107,"y":-44},{"x":-15,"y":17},{"x":-11,"y":-23},{"x":18,"y":63},{"x":-67,"y":7},{"x":-155,"y":-122},{"x":91,"y":-18},{"x":18,"y":-33},{"x":90,"y":6},{"x":130,"y":-113},{"x":-27,"y":86},{"x":54,"y":130}],"type":"coastline"},{"arc":[{"x":131211,"y":112145},{"x":-36,"y":38},{"x":23,"y":-92},{"x":13,"y":54}],"type":"coastline"},{"arc":[{"x":130688,"y":112892},{"x":-40,"y":23},{"x":29,"y":-49},{"x":11,"y":26}],"type":"coastline"},{"arc":[{"x":129482,"y":113838},{"x":-152,"y":-104},{"x":43,"y":-39},{"x":-57,"y":-73},{"x":-17,"y":-201}],"type":"admin"},{"arc":[{"x":129601,"y":112725},{"x":86,"y":57},{"x":79,"y":-26},{"x":70,"y":45},{"x":215,"y":-149}],"type":"admin"},{"arc":[{"x":130051,"y":112652},{"x":34,"y":-17}],"type":"coastline"},{"arc":[{"x":130085,"y":112635},{"x":144,"y":-19},{"x":5,"y":-51}],"type":"admin"},{"arc":[{"x":130234,"y":112565},{"x":117,"y":13},{"x":76,"y":-30},{"x":-35,"y":48},{"x":-24,"y":-11},{"x":19,"y":22},{"x":33,"y":-7},{"x":101,"y":170},{"x":-59,"y":-1},{"x":-105,"y":-116},{"x":-70,"y":-5},{"x":167,"y":187},{"x":-46,"y":8},{"x":77,"y":1},{"x":35,"y":60},{"x":-80,"y":59},{"x":-106,"y":-18},{"x":-84,"y":-93},{"x":-7,"y":-105},{"x":-48,"y":8},{"x":1,"y":32},{"x":-20,"y":-123},{"x":-24,"y":3},{"x":5,"y":34},{"x":-88,"y":3},{"x":10,"y":20},{"x":-25,"y":3},{"x":25,"y":1},{"x":57,"y":143},{"x":-48,"y":3},{"x":-19,"y":-29},{"x":42,"y":71},{"x":-25,"y":30},{"x":57,"y":-8},{"x":10,"y":27},{"x":-60,"y":38},{"x":7,"y":22},{"x":57,"y":-35},{"x":71,"y":61},{"x":29,"y":36},{"x":-14,"y":25},{"x":24,"y":-11},{"x":54,"y":59},{"x":-48,"y":38},{"x":8,"y":22},{"x":30,"y":-23},{"x":97,"y":88},{"x":30,"y":-23},{"x":45,"y":16},{"x":-64,"y":-1},{"x":19,"y":47},{"x":34,"y":-27},{"x":-27,"y":33},{"x":64,"y":-45},{"x":2,"y":24},{"x":7,"y":-20},{"x":52,"y":18},{"x":135,"y":-48},{"x":59,"y":29},{"x":38,"y":53},{"x":-65,"y":47},{"x":8,"y":72},{"x":12,"y":-18},{"x":35,"y":40},{"x":-63,"y":71},{"x":9,"y":46},{"x":150,"y":69}],"type":"coastline"},{"arc":[{"x":130956,"y":112653},{"x":-50,"y":33},{"x":-52,"y":-10},{"x":52,"y":-44},{"x":50,"y":21}],"type":"coastline"},{"arc":[{"x":130961,"y":112561},{"x":-66,"y":42},{"x":-79,"y":-2},{"x":17,"y":-14},{"x":-31,"y":-7},{"x":9,"y":20},{"x":-19,"y":-4},{"x":24,"y":-85},{"x":81,"y":-34},{"x":48,"y":25},{"x":16,"y":59}],"type":"coastline"},{"arc":[{"x":130983,"y":112472},{"x":-43,"y":-9},{"x":43,"y":-8},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":131129,"y":112474},{"x":-55,"y":-8},{"x":4,"y":-36},{"x":45,"y":10},{"x":6,"y":34}],"type":"coastline"},{"arc":[{"x":131366,"y":112397},{"x":-84,"y":46},{"x":-50,"y":-6},{"x":29,"y":-2},{"x":-28,"y":-31},{"x":-27,"y":9},{"x":-1,"y":42},{"x":-25,"y":-35},{"x":67,"y":-73},{"x":52,"y":2},{"x":40,"y":-46},{"x":20,"y":49},{"x":-19,"y":30},{"x":26,"y":15}],"type":"coastline"},{"arc":[{"x":128814,"y":112574},{"x":5,"y":-51},{"x":-43,"y":-29}],"type":"admin"},{"arc":[{"x":128776,"y":112494},{"x":-26,"y":-85},{"x":-46,"y":-19},{"x":-43,"y":38},{"x":-34,"y":-8},{"x":-170,"y":81},{"x":-41,"y":-1},{"x":-5,"y":-58},{"x":-74,"y":-92}],"type":"admin"},{"arc":[{"x":128337,"y":112350},{"x":10,"y":-42},{"x":123,"y":-109},{"x":-29,"y":-79},{"x":36,"y":-50},{"x":9,"y":-93},{"x":-26,"y":-83},{"x":72,"y":-1},{"x":67,"y":-61},{"x":35,"y":0},{"x":27,"y":-125},{"x":121,"y":-87},{"x":61,"y":-33},{"x":61,"y":24}],"type":"area"},{"arc":[{"x":128904,"y":111611},{"x":29,"y":70},{"x":55,"y":14},{"x":66,"y":65},{"x":-91,"y":77},{"x":31,"y":64},{"x":78,"y":-33},{"x":48,"y":82},{"x":11,"y":31},{"x":-49,"y":48},{"x":45,"y":31},{"x":-15,"y":21},{"x":23,"y":-6},{"x":-28,"y":28},{"x":86,"y":-25},{"x":12,"y":20}],"type":"admin"},{"arc":[{"x":127353,"y":108714},{"x":-38,"y":17},{"x":-9,"y":-16},{"x":14,"y":-21},{"x":33,"y":20}],"type":"coastline"},{"arc":[{"x":127687,"y":109528},{"x":-41,"y":88},{"x":4,"y":-32},{"x":-32,"y":35},{"x":22,"y":-6},{"x":-1,"y":56},{"x":-53,"y":11},{"x":-60,"y":-102},{"x":104,"y":-36},{"x":18,"y":-29},{"x":39,"y":15}],"type":"coastline"},{"arc":[{"x":127931,"y":108761},{"x":-18,"y":41},{"x":-15,"y":-38},{"x":33,"y":-3}],"type":"coastline"},{"arc":[{"x":126116,"y":111103},{"x":72,"y":-13},{"x":34,"y":-67},{"x":81,"y":-68},{"x":5,"y":-68},{"x":30,"y":-19},{"x":-52,"y":-179},{"x":150,"y":-132},{"x":-69,"y":-138},{"x":57,"y":-60},{"x":-12,"y":-35},{"x":98,"y":-59}],"type":"admin"},{"arc":[{"x":126510,"y":110265},{"x":14,"y":133},{"x":40,"y":20},{"x":-32,"y":0},{"x":29,"y":5},{"x":20,"y":90},{"x":49,"y":56},{"x":89,"y":35},{"x":142,"y":27},{"x":11,"y":-24},{"x":116,"y":-11},{"x":-43,"y":65},{"x":30,"y":-41},{"x":43,"y":-5},{"x":1,"y":30},{"x":5,"y":-19},{"x":32,"y":44},{"x":50,"y":6},{"x":51,"y":-52},{"x":-23,"y":62},{"x":24,"y":-47},{"x":236,"y":26},{"x":23,"y":-78},{"x":46,"y":-17},{"x":5,"y":52},{"x":57,"y":-14},{"x":-14,"y":37},{"x":26,"y":41},{"x":21,"y":-7},{"x":-24,"y":-78},{"x":35,"y":79},{"x":2,"y":-52},{"x":48,"y":65},{"x":223,"y":29},{"x":35,"y":-27},{"x":29,"y":24},{"x":-8,"y":-22},{"x":34,"y":-12},{"x":-29,"y":11},{"x":14,"y":52},{"x":15,"y":-33},{"x":38,"y":38},{"x":67,"y":4}],"type":"coastline"},{"arc":[{"x":128037,"y":110757},{"x":-31,"y":101},{"x":46,"y":62},{"x":-89,"y":67},{"x":-44,"y":-27},{"x":-146,"y":35},{"x":-101,"y":206},{"x":28,"y":36},{"x":-25,"y":66},{"x":-88,"y":138},{"x":-45,"y":-21},{"x":-13,"y":24},{"x":-63,"y":-10},{"x":-9,"y":17},{"x":-5,"y":-25},{"x":-42,"y":23},{"x":19,"y":-33},{"x":-66,"y":32},{"x":-71,"y":-18},{"x":-6,"y":-27},{"x":-29,"y":19},{"x":-4,"y":65},{"x":-87,"y":-19},{"x":-51,"y":29},{"x":-47,"y":-5},{"x":21,"y":50},{"x":-68,"y":106},{"x":-56,"y":-13},{"x":-59,"y":29},{"x":-149,"y":0},{"x":-70,"y":48},{"x":-94,"y":21}],"type":"area"},{"arc":[{"x":130049,"y":117245},{"x":-22,"y":16},{"x":0,"y":-27},{"x":22,"y":11}],"type":"coastline"},{"arc":[{"x":129442,"y":117396},{"x":-130,"y":-54},{"x":-21,"y":-68},{"x":-88,"y":-21},{"x":-56,"y":7},{"x":-42,"y":52},{"x":-18,"y":-19},{"x":-38,"y":39},{"x":-79,"y":-88},{"x":-36,"y":-7},{"x":-255,"y":33},{"x":70,"y":-122},{"x":-14,"y":-53},{"x":24,"y":-61},{"x":-168,"y":-251},{"x":14,"y":-122},{"x":-69,"y":0},{"x":-7,"y":-85},{"x":-38,"y":-21},{"x":-113,"y":66},{"x":-3,"y":30},{"x":-57,"y":-38},{"x":-74,"y":22},{"x":-75,"y":-60}],"type":"area"},{"arc":[{"x":128068,"y":116024},{"x":64,"y":7},{"x":95,"y":56},{"x":43,"y":-7},{"x":8,"y":36},{"x":128,"y":-9},{"x":57,"y":27},{"x":74,"y":-34},{"x":95,"y":5},{"x":-4,"y":20},{"x":52,"y":-17},{"x":60,"y":38},{"x":100,"y":18},{"x":62,"y":-41},{"x":41,"y":6},{"x":23,"y":41},{"x":89,"y":-18},{"x":42,"y":-53},{"x":62,"y":11},{"x":30,"y":34},{"x":117,"y":-52},{"x":180,"y":71},{"x":32,"y":-139},{"x":102,"y":13},{"x":64,"y":-20},{"x":103,"y":71},{"x":101,"y":-64}],"type":"admin"},{"arc":[{"x":130084,"y":116130},{"x":-11,"y":146},{"x":100,"y":-6},{"x":-24,"y":117},{"x":41,"y":-27},{"x":-12,"y":-32},{"x":52,"y":-2},{"x":30,"y":25},{"x":34,"y":-19},{"x":28,"y":22},{"x":29,"y":-44},{"x":71,"y":-4},{"x":-38,"y":76},{"x":-75,"y":22},{"x":37,"y":69},{"x":-46,"y":57},{"x":56,"y":73},{"x":41,"y":22},{"x":-6,"y":-25},{"x":96,"y":-14},{"x":31,"y":-37},{"x":81,"y":-20},{"x":37,"y":25},{"x":-4,"y":43},{"x":-47,"y":8},{"x":-1,"y":32},{"x":-48,"y":21},{"x":-161,"y":21},{"x":-15,"y":51},{"x":-32,"y":25},{"x":-32,"y":-8},{"x":-71,"y":86},{"x":8,"y":49},{"x":11,"y":-34},{"x":26,"y":64},{"x":137,"y":92},{"x":-65,"y":72},{"x":-91,"y":-9},{"x":-31,"y":19},{"x":-4,"y":82},{"x":-45,"y":5},{"x":-45,"y":-49},{"x":-129,"y":39},{"x":-8,"y":-52},{"x":-66,"y":-26},{"x":-73,"y":-119},{"x":-96,"y":17},{"x":-10,"y":20},{"x":-31,"y":22},{"x":36,"y":-35},{"x":-16,"y":-8},{"x":-5,"y":8},{"x":-13,"y":-16},{"x":12,"y":29},{"x":-136,"y":57},{"x":-42,"y":46},{"x":-15,"y":66},{"x":7,"y":-27},{"x":28,"y":14},{"x":-31,"y":31},{"x":37,"y":14},{"x":28,"y":-20},{"x":27,"y":34},{"x":-31,"y":49},{"x":-73,"y":12},{"x":-84,"y":117}],"type":"coastline"},{"arc":[{"x":129442,"y":117396},{"x":-16,"y":46},{"x":21,"y":6},{"x":-23,"y":7},{"x":27,"y":-2},{"x":-26,"y":25},{"x":59,"y":101},{"x":-93,"y":139},{"x":-73,"y":43},{"x":-86,"y":104},{"x":22,"y":23},{"x":-45,"y":57},{"x":16,"y":-21},{"x":-29,"y":7},{"x":17,"y":20},{"x":-28,"y":-13},{"x":-34,"y":27},{"x":46,"y":-6},{"x":-47,"y":53},{"x":21,"y":86},{"x":-50,"y":64},{"x":-2,"y":72},{"x":52,"y":81},{"x":33,"y":14},{"x":-3,"y":-27},{"x":40,"y":-4},{"x":28,"y":33},{"x":-128,"y":153},{"x":-117,"y":56},{"x":-58,"y":-18},{"x":7,"y":95},{"x":-34,"y":56},{"x":-38,"y":6},{"x":-25,"y":-80},{"x":-77,"y":71},{"x":38,"y":-55},{"x":-37,"y":21},{"x":-28,"y":40},{"x":18,"y":10},{"x":-56,"y":23},{"x":-118,"y":157},{"x":-28,"y":102}],"type":"coastline"},{"arc":[{"x":128423,"y":110626},{"x":-7,"y":32},{"x":-22,"y":-57},{"x":29,"y":25}],"type":"coastline"},{"arc":[{"x":128532,"y":110570},{"x":-37,"y":2},{"x":-19,"y":29},{"x":-39,"y":-12},{"x":40,"y":-33},{"x":-18,"y":-28},{"x":23,"y":13},{"x":22,"y":-34},{"x":28,"y":63}],"type":"coastline"},{"arc":[{"x":128754,"y":110379},{"x":-11,"y":15},{"x":-50,"y":-20},{"x":46,"y":-16},{"x":15,"y":21}],"type":"coastline"},{"arc":[{"x":129006,"y":111407},{"x":-136,"y":107},{"x":47,"y":76},{"x":-13,"y":21}],"type":"admin"},{"arc":[{"x":128337,"y":112350},{"x":-73,"y":72}],"type":"admin"},{"arc":[{"x":128264,"y":112422},{"x":-327,"y":-66},{"x":-44,"y":19},{"x":59,"y":100},{"x":-69,"y":-10},{"x":-69,"y":62},{"x":-54,"y":-14},{"x":-174,"y":26},{"x":-101,"y":-28},{"x":-142,"y":47},{"x":-87,"y":-19},{"x":-131,"y":40}],"type":"admin"},{"arc":[{"x":128037,"y":110757},{"x":162,"y":15},{"x":59,"y":-25},{"x":54,"y":44},{"x":90,"y":-7},{"x":-21,"y":-52},{"x":98,"y":-53},{"x":-9,"y":-17},{"x":18,"y":12},{"x":1,"y":-37},{"x":9,"y":31},{"x":46,"y":16},{"x":-24,"y":-46},{"x":47,"y":-20},{"x":-32,"y":13},{"x":14,"y":25},{"x":25,"y":-10},{"x":-11,"y":-20},{"x":12,"y":22},{"x":43,"y":-8},{"x":46,"y":-89},{"x":-26,"y":-25},{"x":19,"y":-32},{"x":25,"y":17},{"x":49,"y":-27},{"x":45,"y":-103},{"x":83,"y":-6},{"x":53,"y":-35},{"x":40,"y":-127},{"x":88,"y":-102},{"x":-7,"y":-109},{"x":28,"y":-2},{"x":44,"y":72},{"x":30,"y":-6},{"x":12,"y":-58},{"x":34,"y":23},{"x":36,"y":-10},{"x":55,"y":-185},{"x":33,"y":31},{"x":13,"y":127},{"x":-62,"y":89},{"x":0,"y":111},{"x":-25,"y":-4},{"x":5,"y":-26},{"x":-45,"y":24},{"x":-69,"y":231},{"x":-44,"y":8},{"x":-27,"y":43},{"x":-18,"y":-20},{"x":-69,"y":24},{"x":-13,"y":-17},{"x":-12,"y":55},{"x":50,"y":123},{"x":-80,"y":128},{"x":-1,"y":53},{"x":26,"y":10},{"x":-19,"y":21},{"x":16,"y":-15},{"x":49,"y":46},{"x":25,"y":96},{"x":82,"y":41},{"x":-4,"y":19},{"x":-49,"y":19},{"x":-32,"y":-24},{"x":-1,"y":28},{"x":1,"y":-49},{"x":-78,"y":-34},{"x":-99,"y":49},{"x":134,"y":37},{"x":-11,"y":33},{"x":-150,"y":-43},{"x":-15,"y":-35},{"x":-16,"y":31},{"x":32,"y":39},{"x":120,"y":39},{"x":-8,"y":67},{"x":48,"y":1},{"x":-2,"y":68},{"x":-34,"y":38},{"x":83,"y":109}],"type":"coastline"},{"arc":[{"x":129430,"y":111055},{"x":-19,"y":76},{"x":-33,"y":21},{"x":-5,"y":-29},{"x":-31,"y":-6},{"x":15,"y":-98},{"x":42,"y":-12},{"x":31,"y":48}],"type":"coastline"},{"arc":[{"x":129590,"y":110557},{"x":-18,"y":44},{"x":-45,"y":12},{"x":-47,"y":-36},{"x":-72,"y":69},{"x":-1,"y":62},{"x":108,"y":64},{"x":-24,"y":33},{"x":26,"y":58},{"x":-66,"y":-16},{"x":23,"y":-14},{"x":-30,"y":-11},{"x":-63,"y":28},{"x":-37,"y":-41},{"x":54,"y":-101},{"x":-49,"y":-70},{"x":22,"y":-10},{"x":-108,"y":-51},{"x":-5,"y":-39},{"x":-60,"y":-22},{"x":-3,"y":-25},{"x":37,"y":-6},{"x":4,"y":-25},{"x":51,"y":23},{"x":34,"y":-18},{"x":72,"y":97},{"x":57,"y":8},{"x":68,"y":-74},{"x":67,"y":30},{"x":5,"y":31}],"type":"coastline"},{"arc":[{"x":131941,"y":116375},{"x":-26,"y":10},{"x":-50,"y":-55},{"x":45,"y":-5},{"x":31,"y":50}],"type":"coastline"},{"arc":[{"x":132060,"y":115731},{"x":-35,"y":8},{"x":-42,"y":-24},{"x":-51,"y":-90},{"x":29,"y":-88},{"x":61,"y":12},{"x":6,"y":132},{"x":32,"y":50}],"type":"coastline"},{"arc":[{"x":132278,"y":115301},{"x":-25,"y":23},{"x":-35,"y":-7},{"x":-54,"y":67},{"x":-9,"y":66},{"x":29,"y":40},{"x":-30,"y":-12},{"x":-37,"y":20},{"x":-97,"y":-19},{"x":-101,"y":-117},{"x":-141,"y":-66},{"x":5,"y":-72},{"x":131,"y":-134},{"x":14,"y":-138},{"x":42,"y":-81},{"x":26,"y":11},{"x":28,"y":-26},{"x":-22,"y":-49},{"x":45,"y":-18},{"x":26,"y":55},{"x":78,"y":19},{"x":-26,"y":95},{"x":20,"y":65},{"x":-28,"y":-13},{"x":143,"y":121},{"x":-16,"y":73},{"x":34,"y":97}],"type":"coastline"},{"arc":[{"x":132547,"y":115980},{"x":-30,"y":16},{"x":-29,"y":-34},{"x":16,"y":-47},{"x":40,"y":1},{"x":3,"y":64}],"type":"coastline"},{"arc":[{"x":132565,"y":116120},{"x":-74,"y":-16},{"x":35,"y":-27},{"x":-16,"y":-49},{"x":55,"y":92}],"type":"coastline"},{"arc":[{"x":132673,"y":116096},{"x":-37,"y":-20},{"x":12,"y":-19},{"x":25,"y":39}],"type":"coastline"},{"arc":[{"x":133084,"y":117854},{"x":-91,"y":-37},{"x":-36,"y":-62},{"x":-68,"y":-37},{"x":-54,"y":9},{"x":-261,"y":-86},{"x":1,"y":-67},{"x":-66,"y":-56},{"x":22,"y":-214},{"x":-79,"y":-12},{"x":29,"y":-35},{"x":-48,"y":-99},{"x":13,"y":-64},{"x":52,"y":22},{"x":17,"y":-40},{"x":-79,"y":-51},{"x":-29,"y":72},{"x":-36,"y":-18},{"x":24,"y":-124},{"x":38,"y":-50},{"x":-14,"y":-41},{"x":-31,"y":-40},{"x":-65,"y":-16},{"x":-3,"y":-43},{"x":-99,"y":-37},{"x":-81,"y":-225},{"x":-74,"y":-21}],"type":"area"},{"arc":[{"x":132066,"y":116482},{"x":16,"y":-78},{"x":-44,"y":6},{"x":-11,"y":-13},{"x":22,"y":7},{"x":-15,"y":-25},{"x":40,"y":-10},{"x":-46,"y":-5},{"x":-6,"y":34},{"x":-19,"y":-29},{"x":-41,"y":-1},{"x":62,"y":-15},{"x":-12,"y":-41},{"x":-43,"y":-12},{"x":20,"y":-66},{"x":-38,"y":-50},{"x":-36,"y":9},{"x":-78,"y":-38},{"x":-61,"y":-172},{"x":94,"y":-28},{"x":32,"y":-82},{"x":124,"y":43},{"x":170,"y":125},{"x":10,"y":99},{"x":-91,"y":113},{"x":11,"y":35},{"x":161,"y":-162},{"x":59,"y":15},{"x":29,"y":-19},{"x":-28,"y":-93},{"x":103,"y":108},{"x":35,"y":-30},{"x":-24,"y":38},{"x":64,"y":-20},{"x":74,"y":20},{"x":51,"y":46},{"x":-7,"y":15},{"x":-38,"y":-17},{"x":-91,"y":68},{"x":-29,"y":92},{"x":73,"y":66},{"x":-26,"y":62},{"x":18,"y":98},{"x":106,"y":140},{"x":-32,"y":65},{"x":35,"y":107},{"x":69,"y":23},{"x":102,"y":157},{"x":54,"y":13},{"x":-24,"y":-15},{"x":23,"y":-4},{"x":34,"y":30},{"x":-15,"y":33},{"x":57,"y":26},{"x":-4,"y":55},{"x":-43,"y":-16},{"x":-25,"y":36},{"x":-11,"y":244},{"x":33,"y":102},{"x":119,"y":86},{"x":66,"y":162},{"x":-10,"y":35}],"type":"coastline"},{"arc":[{"x":131532,"y":118006},{"x":-39,"y":32},{"x":29,"y":-54},{"x":10,"y":22}],"type":"coastline"},{"arc":[{"x":131958,"y":117529},{"x":15,"y":-36},{"x":32,"y":15},{"x":-25,"y":37},{"x":-22,"y":-16}],"type":"coastline"},{"arc":[{"x":133084,"y":117854},{"x":11,"y":195},{"x":-47,"y":-17},{"x":2,"y":-38},{"x":-59,"y":14},{"x":21,"y":68},{"x":44,"y":25},{"x":4,"y":109},{"x":-47,"y":-42},{"x":0,"y":-84},{"x":-85,"y":-72},{"x":-84,"y":7},{"x":30,"y":-8},{"x":-31,"y":-22},{"x":12,"y":-20},{"x":-55,"y":14},{"x":20,"y":9},{"x":-50,"y":60},{"x":5,"y":35},{"x":39,"y":17},{"x":-3,"y":58},{"x":-31,"y":-72},{"x":-43,"y":9},{"x":-26,"y":41},{"x":-64,"y":-2},{"x":-66,"y":-55},{"x":-156,"y":19},{"x":-127,"y":-94},{"x":-35,"y":34},{"x":-83,"y":14},{"x":-33,"y":-63},{"x":26,"y":-11},{"x":-36,"y":-21},{"x":-7,"y":18},{"x":-66,"y":-6},{"x":-79,"y":102},{"x":-49,"y":-28},{"x":-29,"y":17},{"x":-130,"y":-41},{"x":-149,"y":-138},{"x":-130,"y":51},{"x":-62,"y":-27},{"x":33,"y":-51},{"x":89,"y":-38},{"x":41,"y":9},{"x":40,"y":-50},{"x":115,"y":-58},{"x":-45,"y":-58},{"x":42,"y":-113},{"x":-20,"y":-30},{"x":-76,"y":-20},{"x":-53,"y":-116},{"x":-53,"y":-29},{"x":26,"y":-36},{"x":54,"y":-25},{"x":-32,"y":63},{"x":49,"y":29},{"x":82,"y":-41},{"x":61,"y":11},{"x":20,"y":58},{"x":-20,"y":50},{"x":32,"y":17},{"x":-47,"y":51},{"x":44,"y":67},{"x":-54,"y":76},{"x":16,"y":18},{"x":33,"y":-21},{"x":5,"y":33},{"x":8,"y":-26},{"x":33,"y":28},{"x":21,"y":-6},{"x":11,"y":-25},{"x":20,"y":-3},{"x":-19,"y":8},{"x":18,"y":-3},{"x":11,"y":25},{"x":22,"y":-50},{"x":28,"y":13},{"x":29,"y":-42},{"x":10,"y":-85},{"x":-21,"y":-10},{"x":21,"y":-25},{"x":11,"y":3},{"x":8,"y":-26},{"x":-112,"y":-140},{"x":-35,"y":-156},{"x":-98,"y":-28},{"x":-71,"y":-56},{"x":-71,"y":31},{"x":-121,"y":-113},{"x":-49,"y":-1},{"x":-73,"y":-51},{"x":-41,"y":1},{"x":-40,"y":41},{"x":-92,"y":-99},{"x":-19,"y":-92},{"x":136,"y":-79},{"x":34,"y":86},{"x":51,"y":-3},{"x":-36,"y":24},{"x":11,"y":29},{"x":72,"y":1},{"x":31,"y":-20},{"x":-24,"y":-94},{"x":23,"y":-35},{"x":53,"y":44},{"x":22,"y":75},{"x":75,"y":44},{"x":68,"y":-16},{"x":38,"y":55},{"x":48,"y":-16},{"x":9,"y":-53},{"x":44,"y":23},{"x":54,"y":-29},{"x":-23,"y":-67},{"x":43,"y":2},{"x":25,"y":33},{"x":28,"y":-12},{"x":-2,"y":20},{"x":35,"y":-60},{"x":18,"y":8},{"x":-3,"y":-25},{"x":-27,"y":11},{"x":4,"y":-54},{"x":-68,"y":-57},{"x":104,"y":-40},{"x":22,"y":-56},{"x":-38,"y":-52},{"x":32,"y":-23}],"type":"coastline"},{"arc":[{"x":131555,"y":114558},{"x":-29,"y":7},{"x":-53,"y":-44},{"x":30,"y":-60},{"x":27,"y":-4},{"x":20,"y":30},{"x":5,"y":71}],"type":"coastline"},{"arc":[{"x":131802,"y":114060},{"x":-93,"y":22},{"x":21,"y":-113},{"x":56,"y":-3},{"x":-24,"y":53},{"x":40,"y":41}],"type":"coastline"},{"arc":[{"x":131945,"y":114462},{"x":-50,"y":-2},{"x":12,"y":61},{"x":-121,"y":-88},{"x":115,"y":-33},{"x":44,"y":62}],"type":"coastline"},{"arc":[{"x":132004,"y":113938},{"x":-118,"y":52},{"x":-3,"y":-40},{"x":36,"y":0},{"x":30,"y":-43},{"x":55,"y":31}],"type":"coastline"},{"arc":[{"x":132004,"y":114375},{"x":-25,"y":5},{"x":-1,"y":38},{"x":-66,"y":-27},{"x":82,"y":-59},{"x":10,"y":43}],"type":"coastline"},{"arc":[{"x":132006,"y":114105},{"x":-62,"y":27},{"x":48,"y":104},{"x":-62,"y":6},{"x":-139,"y":169},{"x":-127,"y":26},{"x":44,"y":94},{"x":-42,"y":11},{"x":-99,"y":-111},{"x":41,"y":-69},{"x":-52,"y":-32},{"x":54,"y":-44},{"x":12,"y":-59},{"x":-29,"y":6},{"x":5,"y":22},{"x":-9,"y":-27},{"x":61,"y":-27},{"x":-11,"y":-28},{"x":45,"y":-32},{"x":47,"y":20},{"x":64,"y":-64},{"x":95,"y":-14},{"x":18,"y":-23},{"x":68,"y":-6},{"x":30,"y":51}],"type":"coastline"},{"arc":[{"x":132038,"y":114131},{"x":-31,"y":14},{"x":3,"y":39},{"x":-57,"y":-48},{"x":85,"y":-5}],"type":"coastline"},{"arc":[{"x":132118,"y":114356},{"x":-44,"y":4},{"x":-48,"y":-55},{"x":71,"y":10},{"x":21,"y":41}],"type":"coastline"},{"arc":[{"x":132223,"y":114200},{"x":-38,"y":17},{"x":15,"y":49},{"x":-70,"y":-38},{"x":52,"y":-51},{"x":41,"y":23}],"type":"coastline"},{"arc":[{"x":132254,"y":114170},{"x":-23,"y":3},{"x":0,"y":-34},{"x":23,"y":31}],"type":"coastline"},{"arc":[{"x":132311,"y":114126},{"x":-49,"y":19},{"x":-31,"y":-26},{"x":73,"y":-11},{"x":7,"y":18}],"type":"coastline"},{"arc":[{"x":132338,"y":114189},{"x":-42,"y":12},{"x":-34,"y":-51},{"x":49,"y":-8},{"x":27,"y":47}],"type":"coastline"},{"arc":[{"x":132371,"y":114664},{"x":-226,"y":-39},{"x":-74,"y":-3},{"x":-47,"y":23},{"x":-13,"y":-15},{"x":113,"y":-100},{"x":96,"y":-5},{"x":40,"y":-30}],"type":"coastline"},{"arc":[{"x":132443,"y":114144},{"x":-76,"y":28},{"x":-34,"y":-73},{"x":40,"y":16},{"x":42,"y":-18},{"x":28,"y":47}],"type":"coastline"},{"arc":[{"x":129888,"y":112414},{"x":35,"y":9},{"x":50,"y":83},{"x":28,"y":-15},{"x":-34,"y":29},{"x":24,"y":43},{"x":29,"y":-15},{"x":35,"y":42},{"x":-15,"y":39},{"x":-36,"y":-4},{"x":47,"y":27}],"type":"coastline"},{"arc":[{"x":130085,"y":112635},{"x":-18,"y":-60},{"x":167,"y":-10}],"type":"coastline"},{"arc":[{"x":127725,"y":114671},{"x":-18,"y":-83},{"x":30,"y":-56},{"x":43,"y":-16},{"x":33,"y":-111},{"x":-28,"y":-90},{"x":131,"y":-79},{"x":-14,"y":-46},{"x":54,"y":-58},{"x":14,"y":-161},{"x":-21,"y":-69},{"x":54,"y":-36},{"x":109,"y":5},{"x":120,"y":-86},{"x":19,"y":-51},{"x":67,"y":-8},{"x":47,"y":-63},{"x":32,"y":15},{"x":50,"y":-108},{"x":40,"y":-13},{"x":30,"y":-111},{"x":28,"y":-39},{"x":58,"y":-17}],"type":"admin"},{"arc":[{"x":128776,"y":112494},{"x":-116,"y":63},{"x":-83,"y":-21},{"x":-13,"y":98},{"x":-39,"y":47},{"x":-32,"y":-36},{"x":-191,"y":77},{"x":-50,"y":-55},{"x":-7,"y":-64},{"x":-73,"y":-30},{"x":5,"y":-66},{"x":87,"y":-85}],"type":"area"},{"arc":[{"x":129241,"y":111332},{"x":-44,"y":6},{"x":30,"y":-28},{"x":14,"y":22}],"type":"coastline"},{"arc":[{"x":129006,"y":111407},{"x":90,"y":45},{"x":85,"y":121},{"x":98,"y":77},{"x":-24,"y":-13},{"x":-3,"y":24},{"x":19,"y":-9},{"x":-12,"y":20},{"x":36,"y":34},{"x":106,"y":-77},{"x":4,"y":18},{"x":28,"y":-20},{"x":51,"y":12},{"x":50,"y":53},{"x":-72,"y":37},{"x":-35,"y":-8},{"x":-31,"y":45},{"x":16,"y":18},{"x":-3,"y":-29},{"x":18,"y":14},{"x":22,"y":-23},{"x":4,"y":64},{"x":15,"y":-42},{"x":57,"y":-35},{"x":44,"y":66},{"x":-62,"y":37},{"x":0,"y":27},{"x":-22,"y":-14},{"x":42,"y":68},{"x":39,"y":-13},{"x":25,"y":40},{"x":-34,"y":35}],"type":"coastline"},{"arc":[{"x":130077,"y":110946},{"x":-152,"y":199},{"x":-1,"y":-18},{"x":-27,"y":17},{"x":-69,"y":-35},{"x":37,"y":-105},{"x":155,"y":-78},{"x":42,"y":-7},{"x":15,"y":27}],"type":"coastline"},{"arc":[{"x":130188,"y":110763},{"x":-10,"y":-58},{"x":28,"y":-28},{"x":23,"y":44},{"x":-41,"y":42}],"type":"coastline"},{"arc":[{"x":130442,"y":110502},{"x":-196,"y":107},{"x":-103,"y":-56},{"x":36,"y":-66},{"x":105,"y":9},{"x":116,"y":-35},{"x":45,"y":13},{"x":-3,"y":28}],"type":"coastline"},{"arc":[{"x":124095,"y":99259},{"x":-106,"y":-23},{"x":94,"y":-61},{"x":9,"y":-104},{"x":23,"y":26},{"x":-22,"y":61},{"x":39,"y":56},{"x":-37,"y":45}],"type":"coastline"},{"arc":[{"x":124626,"y":100344},{"x":-47,"y":74},{"x":-49,"y":-10},{"x":1,"y":-49},{"x":81,"y":-35},{"x":24,"y":3},{"x":-10,"y":17}],"type":"coastline"},{"arc":[{"x":124844,"y":99799},{"x":-23,"y":20},{"x":9,"y":-32},{"x":14,"y":12}],"type":"coastline"},{"arc":[{"x":125028,"y":100885},{"x":-5,"y":120},{"x":-43,"y":-9},{"x":13,"y":-43},{"x":-22,"y":-27},{"x":-117,"y":-18},{"x":24,"y":0},{"x":-13,"y":-29},{"x":-45,"y":9},{"x":20,"y":14},{"x":-97,"y":3},{"x":-3,"y":-64},{"x":-40,"y":-44},{"x":22,"y":6},{"x":9,"y":-56},{"x":-27,"y":-40},{"x":-73,"y":11},{"x":17,"y":-19},{"x":-27,"y":-10},{"x":-92,"y":53},{"x":-22,"y":57},{"x":-25,"y":-29},{"x":-34,"y":9},{"x":-61,"y":91},{"x":-34,"y":-76},{"x":29,"y":-30},{"x":-3,"y":-68},{"x":-61,"y":-49},{"x":35,"y":-53},{"x":52,"y":-16},{"x":54,"y":38},{"x":119,"y":4},{"x":44,"y":35},{"x":50,"y":-12},{"x":62,"y":-66},{"x":-61,"y":-71},{"x":21,"y":-16},{"x":71,"y":64},{"x":65,"y":9},{"x":-5,"y":193},{"x":51,"y":19},{"x":82,"y":-13},{"x":11,"y":100},{"x":59,"y":23}],"type":"coastline"},{"arc":[{"x":125049,"y":99517},{"x":-26,"y":38},{"x":25,"y":-68},{"x":1,"y":30}],"type":"coastline"},{"arc":[{"x":125176,"y":99422},{"x":-22,"y":48},{"x":-40,"y":-10},{"x":-13,"y":-110},{"x":-70,"y":-77},{"x":-10,"y":-78},{"x":44,"y":-65},{"x":-26,"y":-38},{"x":65,"y":-23},{"x":18,"y":51},{"x":35,"y":10},{"x":-34,"y":49},{"x":30,"y":46},{"x":-27,"y":89},{"x":-12,"y":-19},{"x":40,"y":67},{"x":-14,"y":34},{"x":36,"y":26}],"type":"coastline"},{"arc":[{"x":125579,"y":99569},{"x":-41,"y":-6},{"x":27,"y":-13},{"x":14,"y":19}],"type":"coastline"},{"arc":[{"x":125627,"y":100581},{"x":-48,"y":93},{"x":29,"y":23},{"x":-89,"y":-13},{"x":-171,"y":30},{"x":69,"y":-90},{"x":-70,"y":-42},{"x":-11,"y":-55},{"x":82,"y":-74},{"x":46,"y":-9},{"x":61,"y":24},{"x":52,"y":90},{"x":48,"y":1},{"x":2,"y":22}],"type":"coastline"},{"arc":[{"x":125660,"y":101654},{"x":-43,"y":17},{"x":-18,"y":-35},{"x":36,"y":-20},{"x":25,"y":38}],"type":"coastline"},{"arc":[{"x":125672,"y":100868},{"x":-16,"y":49},{"x":-43,"y":-12},{"x":-88,"y":48},{"x":-11,"y":-118},{"x":100,"y":-40},{"x":-9,"y":67},{"x":32,"y":11},{"x":3,"y":-34},{"x":32,"y":29}],"type":"coastline"},{"arc":[{"x":125836,"y":99037},{"x":-22,"y":46},{"x":17,"y":58},{"x":-43,"y":6},{"x":-49,"y":-32},{"x":-16,"y":-73},{"x":-77,"y":0},{"x":-10,"y":-72},{"x":-49,"y":-7},{"x":-31,"y":-95},{"x":-42,"y":-34},{"x":52,"y":1},{"x":17,"y":-21},{"x":-5,"y":71},{"x":55,"y":28},{"x":88,"y":-50},{"x":28,"y":53},{"x":77,"y":22},{"x":-28,"y":57},{"x":38,"y":42}],"type":"coastline"},{"arc":[{"x":125900,"y":99094},{"x":-55,"y":40},{"x":8,"y":-37},{"x":47,"y":-3}],"type":"coastline"},{"arc":[{"x":125885,"y":99546},{"x":6,"y":55},{"x":-59,"y":-42},{"x":-42,"y":20},{"x":16,"y":-46},{"x":-21,"y":-34},{"x":-95,"y":-12},{"x":-59,"y":-64},{"x":-56,"y":-4},{"x":-13,"y":-55},{"x":-95,"y":-36},{"x":99,"y":-74},{"x":66,"y":81},{"x":66,"y":-37},{"x":-8,"y":-28},{"x":48,"y":25},{"x":49,"y":-34},{"x":30,"y":8},{"x":3,"y":54},{"x":43,"y":47},{"x":-32,"y":66},{"x":60,"y":44},{"x":-6,"y":66}],"type":"coastline"},{"arc":[{"x":126189,"y":100414},{"x":-60,"y":71},{"x":-76,"y":-45},{"x":-35,"y":-75},{"x":-47,"y":14},{"x":-87,"y":-21},{"x":-84,"y":50},{"x":-79,"y":1},{"x":-28,"y":-12},{"x":-12,"y":-100},{"x":-53,"y":6},{"x":49,"y":-16},{"x":-41,"y":-37},{"x":-70,"y":37},{"x":44,"y":4},{"x":-23,"y":8},{"x":8,"y":59},{"x":-131,"y":41},{"x":-53,"y":-25},{"x":-18,"y":-15},{"x":22,"y":-34},{"x":-42,"y":-49},{"x":50,"y":-76},{"x":-14,"y":-33},{"x":-18,"y":22},{"x":23,"y":-102},{"x":-70,"y":-50},{"x":-15,"y":-49},{"x":-27,"y":-10},{"x":10,"y":27},{"x":-64,"y":-25},{"x":-12,"y":-44},{"x":93,"y":-84},{"x":96,"y":-1},{"x":136,"y":-138},{"x":29,"y":127},{"x":2,"y":-18},{"x":20,"y":31},{"x":25,"y":-7},{"x":125,"y":149},{"x":55,"y":18},{"x":34,"y":-21},{"x":48,"y":49},{"x":-43,"y":58},{"x":13,"y":77},{"x":47,"y":40},{"x":48,"y":1},{"x":18,"y":58},{"x":52,"y":8},{"x":49,"y":122},{"x":73,"y":-14},{"x":33,"y":23}],"type":"coastline"},{"arc":[{"x":124763,"y":103308},{"x":-67,"y":-57},{"x":-36,"y":9},{"x":-43,"y":-32},{"x":-62,"y":-119},{"x":-8,"y":-93},{"x":-92,"y":-128},{"x":-73,"y":-47},{"x":-45,"y":13},{"x":-105,"y":-59},{"x":-204,"y":88},{"x":-171,"y":-97},{"x":-89,"y":-15},{"x":-38,"y":-53},{"x":-95,"y":12},{"x":-29,"y":-32},{"x":-96,"y":-15},{"x":-121,"y":-230},{"x":-10,"y":-108},{"x":33,"y":-13},{"x":0,"y":-90},{"x":-27,"y":-1},{"x":-18,"y":79},{"x":-43,"y":0},{"x":-28,"y":-54},{"x":-57,"y":0},{"x":-32,"y":162},{"x":-40,"y":17},{"x":-11,"y":-59},{"x":-41,"y":9},{"x":-49,"y":59},{"x":-97,"y":54},{"x":-70,"y":-13},{"x":-22,"y":61},{"x":-75,"y":25},{"x":-40,"y":79},{"x":-102,"y":25},{"x":-86,"y":86},{"x":-58,"y":15}],"type":"area"},{"arc":[{"x":122516,"y":102786},{"x":-79,"y":-38},{"x":-100,"y":7},{"x":-123,"y":-162},{"x":-69,"y":-40},{"x":-89,"y":6},{"x":-37,"y":-46},{"x":-17,"y":-173}],"type":"admin"},{"arc":[{"x":122002,"y":102340},{"x":93,"y":-83},{"x":120,"y":7},{"x":54,"y":-34},{"x":89,"y":44},{"x":84,"y":-23},{"x":38,"y":-52},{"x":94,"y":-9},{"x":114,"y":-109},{"x":108,"y":-2},{"x":54,"y":-31},{"x":18,"y":-52},{"x":81,"y":-12},{"x":38,"y":-32},{"x":67,"y":30},{"x":101,"y":-6},{"x":46,"y":42},{"x":-24,"y":52},{"x":19,"y":11},{"x":17,"y":-57},{"x":38,"y":-24},{"x":16,"y":-130},{"x":106,"y":-164}],"type":"admin"},{"arc":[{"x":123373,"y":101706},{"x":123,"y":-223},{"x":-4,"y":-215},{"x":40,"y":-91},{"x":-42,"y":-348}],"type":"admin"},{"arc":[{"x":123490,"y":100829},{"x":40,"y":-2},{"x":4,"y":-23},{"x":89,"y":17},{"x":-83,"y":51},{"x":47,"y":-1},{"x":-19,"y":64},{"x":34,"y":-36},{"x":39,"y":3},{"x":7,"y":-49},{"x":85,"y":48},{"x":25,"y":-27},{"x":62,"y":12},{"x":39,"y":-41},{"x":35,"y":29},{"x":-31,"y":47},{"x":122,"y":-2},{"x":48,"y":-23},{"x":-52,"y":26},{"x":-51,"y":-1},{"x":0,"y":38},{"x":44,"y":-11},{"x":-56,"y":36},{"x":45,"y":2},{"x":13,"y":-27},{"x":34,"y":16},{"x":30,"y":-48},{"x":91,"y":6},{"x":-45,"y":4},{"x":3,"y":53},{"x":128,"y":-18},{"x":-128,"y":19},{"x":3,"y":44},{"x":20,"y":48},{"x":90,"y":-22},{"x":-31,"y":44},{"x":103,"y":-62},{"x":-26,"y":129},{"x":37,"y":-30},{"x":-6,"y":-62},{"x":91,"y":-27},{"x":41,"y":-92},{"x":59,"y":30},{"x":52,"y":-12},{"x":34,"y":49},{"x":67,"y":14},{"x":-21,"y":16},{"x":27,"y":-15},{"x":63,"y":31},{"x":87,"y":-1},{"x":-39,"y":109},{"x":1,"y":105},{"x":-54,"y":10},{"x":12,"y":15},{"x":51,"y":-25},{"x":0,"y":32},{"x":-22,"y":-15},{"x":25,"y":135},{"x":83,"y":108},{"x":87,"y":27},{"x":72,"y":-12},{"x":304,"y":119},{"x":85,"y":1},{"x":6,"y":25},{"x":-2,"y":-25},{"x":36,"y":6},{"x":56,"y":29},{"x":159,"y":-21},{"x":-6,"y":23},{"x":27,"y":8},{"x":-6,"y":-31},{"x":189,"y":53},{"x":33,"y":-39},{"x":40,"y":-4},{"x":23,"y":-52},{"x":26,"y":25},{"x":-9,"y":51},{"x":63,"y":43},{"x":53,"y":89},{"x":16,"y":151},{"x":106,"y":84}],"type":"coastline"},{"arc":[{"x":126194,"y":102097},{"x":-132,"y":129},{"x":-35,"y":-15},{"x":-86,"y":148},{"x":86,"y":89},{"x":-124,"y":161},{"x":5,"y":235},{"x":-58,"y":66},{"x":-39,"y":28},{"x":-101,"y":-25},{"x":-77,"y":5},{"x":-16,"y":21},{"x":-43,"y":-43},{"x":-234,"y":14},{"x":-75,"y":151},{"x":-93,"y":92},{"x":16,"y":36},{"x":-33,"y":66},{"x":-34,"y":-3},{"x":-74,"y":51},{"x":-178,"y":18},{"x":-75,"y":-30},{"x":-31,"y":17}],"type":"area"},{"arc":[{"x":126356,"y":99902},{"x":-63,"y":-6},{"x":-21,"y":-77},{"x":37,"y":7},{"x":47,"y":76}],"type":"coastline"},{"arc":[{"x":126441,"y":99965},{"x":-23,"y":3},{"x":-9,"y":-31},{"x":32,"y":28}],"type":"coastline"},{"arc":[{"x":126617,"y":101257},{"x":-40,"y":-3},{"x":2,"y":-23},{"x":38,"y":26}],"type":"coastline"},{"arc":[{"x":126876,"y":101082},{"x":-44,"y":13},{"x":9,"y":-60},{"x":-53,"y":-42},{"x":84,"y":33},{"x":4,"y":56}],"type":"coastline"},{"arc":[{"x":126259,"y":105156},{"x":-25,"y":4},{"x":5,"y":-32},{"x":20,"y":28}],"type":"coastline"},{"arc":[{"x":126265,"y":105100},{"x":-15,"y":13},{"x":-50,"y":-51},{"x":44,"y":-52},{"x":40,"y":80},{"x":-19,"y":10}],"type":"coastline"},{"arc":[{"x":126733,"y":105077},{"x":-33,"y":56},{"x":15,"y":28},{"x":-43,"y":3},{"x":19,"y":-90},{"x":42,"y":3}],"type":"coastline"},{"arc":[{"x":126747,"y":105207},{"x":-33,"y":35},{"x":9,"y":-41},{"x":24,"y":6}],"type":"coastline"},{"arc":[{"x":127332,"y":105877},{"x":-29,"y":12},{"x":15,"y":-24},{"x":14,"y":12}],"type":"coastline"},{"arc":[{"x":127374,"y":105952},{"x":-62,"y":106},{"x":-17,"y":-35},{"x":-37,"y":-3},{"x":9,"y":-55},{"x":28,"y":-15},{"x":33,"y":17},{"x":-7,"y":-51},{"x":53,"y":36}],"type":"coastline"},{"arc":[{"x":127455,"y":104104},{"x":-11,"y":30},{"x":-11,"y":-31},{"x":22,"y":1}],"type":"coastline"},{"arc":[{"x":127464,"y":103763},{"x":-21,"y":16},{"x":-11,"y":-17},{"x":32,"y":1}],"type":"coastline"},{"arc":[{"x":127502,"y":104012},{"x":-49,"y":28},{"x":-61,"y":-10},{"x":-14,"y":-45},{"x":83,"y":-21},{"x":41,"y":48}],"type":"coastline"},{"arc":[{"x":127519,"y":106056},{"x":-44,"y":-53},{"x":-42,"y":15},{"x":-4,"y":-76},{"x":76,"y":36},{"x":14,"y":78}],"type":"coastline"},{"arc":[{"x":127520,"y":104147},{"x":-26,"y":50},{"x":-11,"y":-29},{"x":37,"y":-21}],"type":"coastline"},{"arc":[{"x":127529,"y":105726},{"x":-32,"y":14},{"x":-47,"y":-22},{"x":62,"y":-37},{"x":17,"y":45}],"type":"coastline"},{"arc":[{"x":127589,"y":103889},{"x":-18,"y":22},{"x":-55,"y":-34},{"x":-13,"y":-74},{"x":68,"y":19},{"x":18,"y":67}],"type":"coastline"},{"arc":[{"x":125739,"y":104766},{"x":-9,"y":-133},{"x":-54,"y":-126},{"x":-77,"y":-28},{"x":-50,"y":20},{"x":-59,"y":-58},{"x":-37,"y":4},{"x":32,"y":-119},{"x":-26,"y":-19},{"x":16,"y":-44},{"x":-56,"y":-24},{"x":-35,"y":-77},{"x":44,"y":-47},{"x":-36,"y":-174},{"x":-129,"y":-98},{"x":-58,"y":16},{"x":-64,"y":-40},{"x":-120,"y":8},{"x":-37,"y":-23},{"x":-136,"y":23},{"x":-70,"y":-24},{"x":-20,"y":-30},{"x":18,"y":-63},{"x":-50,"y":-45}],"type":"area"},{"arc":[{"x":124726,"y":103665},{"x":41,"y":-25},{"x":31,"y":-91},{"x":-19,"y":-76},{"x":-63,"y":-49},{"x":47,"y":-116}],"type":"area"},{"arc":[{"x":126194,"y":102097},{"x":131,"y":198},{"x":84,"y":51},{"x":-25,"y":-15},{"x":-10,"y":39},{"x":69,"y":29},{"x":-46,"y":-13},{"x":-10,"y":17},{"x":103,"y":26},{"x":52,"y":97},{"x":-15,"y":45},{"x":123,"y":32},{"x":57,"y":79},{"x":-36,"y":52},{"x":29,"y":162},{"x":123,"y":147},{"x":-75,"y":124},{"x":23,"y":58},{"x":26,"y":-4},{"x":-4,"y":53},{"x":24,"y":-28},{"x":53,"y":22},{"x":7,"y":-32},{"x":0,"y":33},{"x":38,"y":-12},{"x":83,"y":24},{"x":23,"y":-15},{"x":-13,"y":-21},{"x":43,"y":-1},{"x":34,"y":64},{"x":-20,"y":38},{"x":62,"y":24},{"x":220,"y":-67},{"x":5,"y":19},{"x":-2,"y":-31},{"x":-32,"y":5},{"x":56,"y":-43},{"x":21,"y":-152},{"x":-54,"y":-73},{"x":41,"y":-37},{"x":15,"y":21},{"x":39,"y":-9},{"x":20,"y":-49},{"x":35,"y":91},{"x":-27,"y":100},{"x":31,"y":52},{"x":-58,"y":40},{"x":-3,"y":66},{"x":84,"y":32},{"x":45,"y":83},{"x":140,"y":17},{"x":63,"y":42},{"x":-64,"y":46},{"x":-95,"y":18},{"x":-88,"y":81},{"x":11,"y":-33},{"x":-73,"y":129},{"x":-145,"y":40},{"x":-3,"y":16},{"x":119,"y":29},{"x":-4,"y":53},{"x":-103,"y":31},{"x":-52,"y":-16},{"x":15,"y":19},{"x":-103,"y":36},{"x":30,"y":1},{"x":-125,"y":89},{"x":-87,"y":10},{"x":-30,"y":43},{"x":-31,"y":19},{"x":27,"y":-19},{"x":-25,"y":-12},{"x":-84,"y":75},{"x":-64,"y":16},{"x":63,"y":18},{"x":45,"y":-27},{"x":-168,"y":139},{"x":4,"y":20},{"x":44,"y":-11},{"x":-30,"y":26},{"x":-159,"y":24},{"x":23,"y":10},{"x":-15,"y":8},{"x":33,"y":58},{"x":45,"y":2},{"x":-46,"y":-1},{"x":-5,"y":-9},{"x":-48,"y":27},{"x":-43,"y":-44},{"x":-80,"y":75},{"x":-81,"y":6},{"x":-123,"y":90},{"x":8,"y":-34},{"x":-24,"y":30},{"x":-162,"y":44},{"x":-170,"y":106},{"x":-25,"y":-15},{"x":-139,"y":76}],"type":"coastline"},{"arc":[{"x":127814,"y":104165},{"x":-26,"y":33},{"x":-34,"y":-13},{"x":60,"y":-20}],"type":"coastline"},{"arc":[{"x":127965,"y":104056},{"x":-59,"y":59},{"x":-12,"y":74},{"x":-63,"y":-14},{"x":-14,"y":-34},{"x":55,"y":-167},{"x":42,"y":0},{"x":51,"y":82}],"type":"coastline"},{"arc":[{"x":128373,"y":103484},{"x":1,"y":20},{"x":-40,"y":-36},{"x":-3,"y":-54},{"x":32,"y":11},{"x":10,"y":59}],"type":"coastline"},{"arc":[{"x":128416,"y":103096},{"x":-20,"y":32},{"x":-47,"y":-10},{"x":-35,"y":-106},{"x":41,"y":-10},{"x":61,"y":94}],"type":"coastline"},{"arc":[{"x":128424,"y":104991},{"x":-38,"y":22},{"x":7,"y":37},{"x":-57,"y":-6},{"x":-68,"y":-48},{"x":-10,"y":-53},{"x":63,"y":-12},{"x":103,"y":60}],"type":"coastline"},{"arc":[{"x":128429,"y":104460},{"x":-45,"y":179},{"x":0,"y":147},{"x":-70,"y":75},{"x":-117,"y":4},{"x":-96,"y":74},{"x":29,"y":-8},{"x":-28,"y":41},{"x":32,"y":9},{"x":-3,"y":-33},{"x":4,"y":38},{"x":-27,"y":18},{"x":44,"y":27},{"x":13,"y":152},{"x":51,"y":35},{"x":2,"y":34},{"x":-23,"y":-27},{"x":-91,"y":-3},{"x":-6,"y":-27},{"x":-58,"y":-11},{"x":-27,"y":-53},{"x":-42,"y":-5},{"x":-23,"y":-151},{"x":-86,"y":-65},{"x":-70,"y":-13},{"x":-158,"y":-186},{"x":23,"y":16},{"x":2,"y":-18},{"x":-125,"y":-57},{"x":-52,"y":-103},{"x":-88,"y":-24},{"x":-7,"y":-60},{"x":-68,"y":-23},{"x":33,"y":-57},{"x":-29,"y":-48},{"x":19,"y":-107},{"x":59,"y":-17},{"x":63,"y":79},{"x":81,"y":25},{"x":35,"y":-26},{"x":-11,"y":-63},{"x":34,"y":35},{"x":79,"y":15},{"x":75,"y":-43},{"x":70,"y":83},{"x":133,"y":34},{"x":-27,"y":74},{"x":-20,"y":-24},{"x":-44,"y":22},{"x":9,"y":46},{"x":-52,"y":-37},{"x":30,"y":69},{"x":41,"y":1},{"x":1,"y":-24},{"x":83,"y":12},{"x":58,"y":-46},{"x":82,"y":-9},{"x":18,"y":-84},{"x":87,"y":-61},{"x":52,"y":14},{"x":30,"y":61},{"x":93,"y":20},{"x":28,"y":74}],"type":"coastline"},{"arc":[{"x":128441,"y":104861},{"x":-39,"y":13},{"x":34,"y":-52},{"x":5,"y":39}],"type":"coastline"},{"arc":[{"x":128455,"y":102766},{"x":-79,"y":94},{"x":13,"y":96},{"x":-24,"y":28},{"x":-46,"y":-18},{"x":-26,"y":16},{"x":-1,"y":-104},{"x":-21,"y":-14},{"x":0,"y":28},{"x":-38,"y":-42},{"x":-65,"y":-9},{"x":236,"y":-197},{"x":7,"y":87},{"x":44,"y":35}],"type":"coastline"},{"arc":[{"x":128515,"y":103290},{"x":-214,"y":107},{"x":-30,"y":-10},{"x":13,"y":-111},{"x":39,"y":-44},{"x":29,"y":-5},{"x":-14,"y":49},{"x":70,"y":-39},{"x":62,"y":4},{"x":45,"y":49}],"type":"coastline"},{"arc":[{"x":128559,"y":103421},{"x":-62,"y":13},{"x":-21,"y":-57},{"x":25,"y":-16},{"x":58,"y":60}],"type":"coastline"},{"arc":[{"x":129016,"y":105192},{"x":-102,"y":38},{"x":0,"y":-28},{"x":-30,"y":11},{"x":4,"y":-33},{"x":-55,"y":36},{"x":-77,"y":-28},{"x":14,"y":20},{"x":-52,"y":44},{"x":5,"y":47},{"x":-33,"y":12},{"x":36,"y":44},{"x":-33,"y":18},{"x":18,"y":20},{"x":-40,"y":64},{"x":82,"y":74},{"x":-72,"y":-33},{"x":-56,"y":8},{"x":24,"y":-68},{"x":-37,"y":-62},{"x":-49,"y":-13},{"x":29,"y":-19},{"x":-43,"y":-29},{"x":11,"y":-25},{"x":-39,"y":20},{"x":37,"y":28},{"x":-44,"y":-6},{"x":-33,"y":49},{"x":-51,"y":3},{"x":-10,"y":-124},{"x":-46,"y":-50},{"x":47,"y":-49},{"x":59,"y":-7},{"x":-4,"y":-44},{"x":47,"y":14},{"x":24,"y":-46},{"x":-151,"y":-159},{"x":31,"y":-37},{"x":135,"y":-41},{"x":43,"y":-43},{"x":-34,"y":-103},{"x":29,"y":-42},{"x":43,"y":-19},{"x":41,"y":36},{"x":18,"y":88},{"x":26,"y":13},{"x":109,"y":-84},{"x":99,"y":54},{"x":18,"y":65},{"x":-70,"y":24},{"x":-9,"y":16},{"x":25,"y":-3},{"x":-35,"y":57},{"x":26,"y":71},{"x":39,"y":4},{"x":43,"y":67},{"x":-34,"y":94},{"x":77,"y":56}],"type":"coastline"},{"arc":[{"x":129114,"y":103559},{"x":-23,"y":60},{"x":-56,"y":18},{"x":-17,"y":-133},{"x":22,"y":-9},{"x":38,"y":69},{"x":36,"y":-5}],"type":"coastline"},{"arc":[{"x":129152,"y":103585},{"x":-38,"y":6},{"x":40,"y":-23},{"x":-2,"y":17}],"type":"coastline"},{"arc":[{"x":129567,"y":104602},{"x":0,"y":-9}],"type":"coastline"},{"arc":[{"x":129750,"y":104197},{"x":-48,"y":158},{"x":-25,"y":-2},{"x":-9,"y":33},{"x":-95,"y":56},{"x":-109,"y":8},{"x":-128,"y":90},{"x":30,"y":-31},{"x":-40,"y":25},{"x":-11,"y":-22},{"x":-45,"y":39},{"x":-2,"y":-17},{"x":-14,"y":52},{"x":-23,"y":-8},{"x":-9,"y":94},{"x":-61,"y":-37},{"x":-71,"y":14},{"x":-82,"y":-19},{"x":11,"y":-19},{"x":-85,"y":25},{"x":-101,"y":-17},{"x":-91,"y":64},{"x":-74,"y":-86},{"x":9,"y":-48},{"x":-81,"y":-134},{"x":34,"y":-129},{"x":-23,"y":-204},{"x":-100,"y":-88},{"x":-18,"y":-100},{"x":-110,"y":-198},{"x":35,"y":-88},{"x":-15,"y":-64},{"x":32,"y":-4},{"x":23,"y":36},{"x":55,"y":-27},{"x":31,"y":22},{"x":4,"y":-101},{"x":63,"y":17},{"x":0,"y":38},{"x":96,"y":60},{"x":76,"y":18},{"x":8,"y":51},{"x":-53,"y":67},{"x":25,"y":-19},{"x":27,"y":18},{"x":-1,"y":-34},{"x":53,"y":21},{"x":-18,"y":108},{"x":32,"y":62},{"x":-57,"y":14},{"x":22,"y":46},{"x":-34,"y":3},{"x":1,"y":28},{"x":21,"y":12},{"x":128,"y":15},{"x":21,"y":-20},{"x":-8,"y":23},{"x":44,"y":-10},{"x":48,"y":30},{"x":58,"y":-73},{"x":-7,"y":86},{"x":24,"y":-21},{"x":34,"y":16},{"x":4,"y":-62},{"x":63,"y":36},{"x":44,"y":-13},{"x":33,"y":-46},{"x":-69,"y":-156},{"x":19,"y":-48},{"x":59,"y":-27},{"x":79,"y":62},{"x":-8,"y":148},{"x":130,"y":7},{"x":32,"y":-41},{"x":49,"y":-9},{"x":52,"y":36},{"x":-16,"y":125},{"x":132,"y":159}],"type":"coastline"},{"arc":[{"x":114691,"y":97176},{"x":-8,"y":35},{"x":-37,"y":9},{"x":-46,"y":-196},{"x":70,"y":20},{"x":21,"y":132}],"type":"coastline"},{"arc":[{"x":114744,"y":98103},{"x":-31,"y":47},{"x":-4,"y":-109},{"x":-35,"y":-12},{"x":-28,"y":35},{"x":-47,"y":-35},{"x":-3,"y":-31},{"x":44,"y":-42},{"x":61,"y":38},{"x":43,"y":109}],"type":"coastline"},{"arc":[{"x":115348,"y":97242},{"x":-26,"y":66},{"x":-16,"y":-104},{"x":-69,"y":-51},{"x":22,"y":-27},{"x":-22,"y":-55},{"x":111,"y":171}],"type":"coastline"},{"arc":[{"x":115378,"y":96932},{"x":-7,"y":28},{"x":-81,"y":-68},{"x":-51,"y":4},{"x":-32,"y":61},{"x":19,"y":-23},{"x":3,"y":62},{"x":-52,"y":-49},{"x":20,"y":-69},{"x":60,"y":-55},{"x":0,"y":-57},{"x":78,"y":-60},{"x":30,"y":24},{"x":-56,"y":39},{"x":6,"y":43},{"x":34,"y":-2},{"x":-34,"y":49},{"x":63,"y":73}],"type":"coastline"},{"arc":[{"x":115425,"y":97844},{"x":-31,"y":14},{"x":-36,"y":-25},{"x":17,"y":-39},{"x":50,"y":50}],"type":"coastline"},{"arc":[{"x":115626,"y":97909},{"x":-7,"y":40},{"x":-58,"y":-90},{"x":51,"y":4},{"x":14,"y":46}],"type":"coastline"},{"arc":[{"x":115641,"y":96461},{"x":-42,"y":35},{"x":-98,"y":-4},{"x":-11,"y":31},{"x":33,"y":-9},{"x":37,"y":31},{"x":-88,"y":62},{"x":67,"y":41},{"x":-39,"y":47},{"x":83,"y":88},{"x":-86,"y":-8},{"x":-21,"y":27},{"x":8,"y":-33},{"x":-80,"y":-43},{"x":-38,"y":10},{"x":82,"y":-80},{"x":-13,"y":-167},{"x":73,"y":-36},{"x":103,"y":21},{"x":24,"y":-37},{"x":6,"y":24}],"type":"coastline"},{"arc":[{"x":115675,"y":97547},{"x":-17,"y":51},{"x":-48,"y":9},{"x":-14,"y":-55},{"x":63,"y":-27},{"x":16,"y":22}],"type":"coastline"},{"arc":[{"x":115686,"y":96538},{"x":-23,"y":22},{"x":-3,"y":-22},{"x":26,"y":0}],"type":"coastline"},{"arc":[{"x":115718,"y":96444},{"x":-17,"y":92},{"x":-2,"y":-107},{"x":19,"y":15}],"type":"coastline"},{"arc":[{"x":115941,"y":98900},{"x":-49,"y":16},{"x":33,"y":-32},{"x":16,"y":16}],"type":"coastline"},{"arc":[{"x":116012,"y":98242},{"x":-19,"y":-14},{"x":32,"y":45},{"x":-13,"y":-31}],"type":"coastline"},{"arc":[{"x":116090,"y":98820},{"x":-64,"y":-35},{"x":18,"y":-43},{"x":-31,"y":-70},{"x":69,"y":65},{"x":-36,"y":19},{"x":44,"y":64}],"type":"coastline"},{"arc":[{"x":116109,"y":97616},{"x":-44,"y":53},{"x":-120,"y":25},{"x":-4,"y":-71},{"x":-62,"y":-64},{"x":-11,"y":-86},{"x":-63,"y":15},{"x":-3,"y":-36},{"x":-6,"y":40},{"x":-37,"y":-25},{"x":-51,"y":48},{"x":-27,"y":-16},{"x":18,"y":-63},{"x":133,"y":-1},{"x":0,"y":-44},{"x":24,"y":22},{"x":27,"y":-11},{"x":35,"y":-138},{"x":-8,"y":50},{"x":34,"y":28},{"x":-50,"y":78},{"x":39,"y":97},{"x":58,"y":5},{"x":68,"y":118},{"x":50,"y":-24}],"type":"coastline"},{"arc":[{"x":116240,"y":97480},{"x":-104,"y":26},{"x":66,"y":-89},{"x":38,"y":63}],"type":"coastline"},{"arc":[{"x":116319,"y":98696},{"x":-34,"y":62},{"x":6,"y":-51},{"x":28,"y":-11}],"type":"coastline"},{"arc":[{"x":116356,"y":99092},{"x":-42,"y":55},{"x":6,"y":34},{"x":-135,"y":83},{"x":-46,"y":-6},{"x":-13,"y":-80},{"x":-29,"y":-17},{"x":17,"y":-7},{"x":-52,"y":-42},{"x":84,"y":-54},{"x":49,"y":-69},{"x":34,"y":8},{"x":18,"y":48},{"x":109,"y":47}],"type":"coastline"},{"arc":[{"x":117510,"y":100530},{"x":-117,"y":116},{"x":-206,"y":-30},{"x":-158,"y":54},{"x":-46,"y":-14},{"x":-59,"y":41},{"x":-126,"y":-7},{"x":-12,"y":-51},{"x":70,"y":-16},{"x":34,"y":-62},{"x":-44,"y":-49},{"x":-64,"y":-13},{"x":11,"y":-138},{"x":-30,"y":-12},{"x":56,"y":-32},{"x":-13,"y":-101},{"x":25,"y":-60},{"x":-183,"y":-15},{"x":-43,"y":-30},{"x":7,"y":-85},{"x":-119,"y":-67},{"x":-79,"y":21},{"x":23,"y":13},{"x":-15,"y":44},{"x":-51,"y":-13},{"x":-85,"y":50},{"x":-195,"y":24},{"x":-217,"y":-29},{"x":-28,"y":46},{"x":26,"y":99},{"x":57,"y":85},{"x":71,"y":29},{"x":9,"y":220}],"type":"admin"},{"arc":[{"x":116009,"y":100548},{"x":-113,"y":103},{"x":-128,"y":-120},{"x":-5,"y":-57},{"x":-121,"y":-149}],"type":"admin"},{"arc":[{"x":115642,"y":100325},{"x":21,"y":-15},{"x":-58,"y":-157},{"x":-106,"y":-10},{"x":-62,"y":-46},{"x":-244,"y":179},{"x":-207,"y":-35},{"x":-6,"y":88},{"x":-213,"y":95},{"x":-65,"y":75},{"x":-16,"y":97}],"type":"admin"},{"arc":[{"x":114686,"y":100596},{"x":-213,"y":62},{"x":-87,"y":8},{"x":-60,"y":-35},{"x":-121,"y":29},{"x":-178,"y":-122}],"type":"admin"},{"arc":[{"x":114027,"y":100538},{"x":-2,"y":-62},{"x":83,"y":-147},{"x":-160,"y":-190},{"x":50,"y":-218},{"x":-92,"y":-121},{"x":-1,"y":-84},{"x":-70,"y":-39},{"x":23,"y":-19},{"x":-31,"y":-17},{"x":-17,"y":-71},{"x":42,"y":-196},{"x":-97,"y":-120},{"x":74,"y":-146},{"x":-32,"y":-135},{"x":64,"y":-34},{"x":6,"y":-94},{"x":108,"y":-131},{"x":-5,"y":-52},{"x":36,"y":-60},{"x":0,"y":-78},{"x":-36,"y":-27},{"x":-14,"y":-90},{"x":29,"y":-116},{"x":-21,"y":-65},{"x":62,"y":-109},{"x":38,"y":-14},{"x":10,"y":-73},{"x":-68,"y":-128},{"x":-142,"y":35},{"x":-244,"y":-96},{"x":-29,"y":-36},{"x":3,"y":-153}],"type":"admin"},{"arc":[{"x":113594,"y":97652},{"x":55,"y":62},{"x":-23,"y":77},{"x":48,"y":56},{"x":86,"y":13},{"x":35,"y":-38},{"x":37,"y":24},{"x":-33,"y":51},{"x":91,"y":28},{"x":65,"y":-15},{"x":36,"y":-68},{"x":39,"y":3},{"x":62,"y":96},{"x":90,"y":-29},{"x":33,"y":125},{"x":-91,"y":-35},{"x":-32,"y":52},{"x":64,"y":81},{"x":-66,"y":38},{"x":-46,"y":-31},{"x":-28,"y":70},{"x":-43,"y":6},{"x":47,"y":53},{"x":8,"y":57},{"x":105,"y":-2},{"x":5,"y":37},{"x":-61,"y":19},{"x":-46,"y":-22},{"x":-26,"y":19},{"x":19,"y":79},{"x":73,"y":58},{"x":-31,"y":105},{"x":60,"y":66},{"x":-109,"y":12},{"x":3,"y":45},{"x":84,"y":-18},{"x":34,"y":67},{"x":65,"y":-95},{"x":64,"y":67},{"x":-2,"y":-70},{"x":104,"y":-7},{"x":-35,"y":-65},{"x":-33,"y":27},{"x":-33,"y":-27},{"x":-37,"y":24},{"x":-41,"y":-25},{"x":77,"y":-24},{"x":7,"y":-44},{"x":-27,"y":-21},{"x":20,"y":-23},{"x":70,"y":94},{"x":59,"y":-36},{"x":-5,"y":-59},{"x":53,"y":30},{"x":42,"y":-16},{"x":-1,"y":39},{"x":-38,"y":-8},{"x":-7,"y":27},{"x":96,"y":134},{"x":19,"y":-17},{"x":-29,"y":-58},{"x":36,"y":-33},{"x":88,"y":46},{"x":66,"y":-101},{"x":25,"y":23},{"x":57,"y":-8},{"x":59,"y":-74},{"x":-15,"y":-107},{"x":5,"y":-30},{"x":29,"y":0},{"x":-15,"y":68},{"x":49,"y":91},{"x":-2,"y":74},{"x":-48,"y":5},{"x":-23,"y":38},{"x":-47,"y":-49},{"x":-34,"y":21},{"x":82,"y":36},{"x":10,"y":72},{"x":-32,"y":13},{"x":68,"y":16},{"x":0,"y":41},{"x":-57,"y":34},{"x":25,"y":40},{"x":-24,"y":43},{"x":86,"y":7},{"x":32,"y":31},{"x":-26,"y":-70},{"x":92,"y":47},{"x":31,"y":-7},{"x":-5,"y":-149},{"x":21,"y":-55},{"x":11,"y":14},{"x":30,"y":-35},{"x":-71,"y":1},{"x":-17,"y":-29},{"x":82,"y":-41},{"x":-50,"y":-120},{"x":64,"y":-68},{"x":-32,"y":-6},{"x":-43,"y":36},{"x":-61,"y":-44},{"x":79,"y":-117},{"x":64,"y":36},{"x":1,"y":-25},{"x":27,"y":-11},{"x":-27,"y":33},{"x":61,"y":-4},{"x":-23,"y":-17},{"x":31,"y":12},{"x":94,"y":-187},{"x":35,"y":37},{"x":-60,"y":27},{"x":-3,"y":25},{"x":128,"y":-4},{"x":42,"y":25},{"x":30,"y":-40},{"x":-21,"y":117},{"x":41,"y":50},{"x":67,"y":18},{"x":-58,"y":5},{"x":-7,"y":63},{"x":-43,"y":13},{"x":52,"y":75},{"x":47,"y":-68},{"x":41,"y":-4},{"x":71,"y":-109},{"x":103,"y":5},{"x":-95,"y":-95},{"x":64,"y":-14},{"x":36,"y":18},{"x":56,"y":-31},{"x":37,"y":-54},{"x":46,"y":-5},{"x":57,"y":-82},{"x":-60,"y":-77},{"x":17,"y":-117},{"x":-37,"y":17},{"x":-28,"y":-16},{"x":-4,"y":59},{"x":-52,"y":-18},{"x":29,"y":71},{"x":-21,"y":46},{"x":-95,"y":-31},{"x":8,"y":-87},{"x":-59,"y":-82},{"x":32,"y":-42},{"x":97,"y":34},{"x":36,"y":-35},{"x":2,"y":-60},{"x":49,"y":48},{"x":61,"y":6},{"x":-2,"y":176},{"x":37,"y":64},{"x":28,"y":-8},{"x":4,"y":33},{"x":37,"y":-1},{"x":-79,"y":75},{"x":19,"y":68},{"x":-39,"y":7},{"x":-7,"y":50},{"x":-38,"y":20},{"x":17,"y":23},{"x":-45,"y":1},{"x":-9,"y":30},{"x":22,"y":45},{"x":92,"y":38},{"x":9,"y":48},{"x":-38,"y":29},{"x":0,"y":-43},{"x":-46,"y":-36},{"x":-34,"y":61},{"x":-30,"y":-41},{"x":-33,"y":36},{"x":-10,"y":-51},{"x":-32,"y":-8},{"x":-10,"y":66},{"x":-21,"y":-38},{"x":-26,"y":20},{"x":-49,"y":-8},{"x":-33,"y":26},{"x":5,"y":47},{"x":-58,"y":4},{"x":26,"y":38},{"x":-41,"y":19},{"x":52,"y":10},{"x":3,"y":41},{"x":38,"y":-1},{"x":-14,"y":38},{"x":39,"y":35},{"x":-46,"y":24},{"x":-73,"y":-65},{"x":-7,"y":66},{"x":-71,"y":-87},{"x":-41,"y":48},{"x":8,"y":45},{"x":-15,"y":-18},{"x":-24,"y":26},{"x":17,"y":45},{"x":68,"y":-6},{"x":-35,"y":25},{"x":43,"y":43},{"x":29,"y":-21},{"x":52,"y":19},{"x":81,"y":-45},{"x":-15,"y":71},{"x":-40,"y":-6},{"x":-4,"y":61},{"x":-34,"y":-23},{"x":-26,"y":22},{"x":-62,"y":-39},{"x":-6,"y":47},{"x":35,"y":30},{"x":-33,"y":45},{"x":13,"y":28},{"x":67,"y":-61},{"x":86,"y":-14},{"x":53,"y":23},{"x":31,"y":-25},{"x":-26,"y":-37},{"x":42,"y":5},{"x":37,"y":40},{"x":-43,"y":-88},{"x":16,"y":-12},{"x":20,"y":-68},{"x":-16,"y":15},{"x":8,"y":-15},{"x":22,"y":-8},{"x":8,"y":-15},{"x":17,"y":1},{"x":19,"y":-21},{"x":23,"y":7},{"x":10,"y":23},{"x":-53,"y":-8},{"x":0,"y":85},{"x":-29,"y":39},{"x":46,"y":35},{"x":46,"y":-12},{"x":13,"y":-56},{"x":25,"y":7},{"x":-21,"y":36},{"x":58,"y":10},{"x":-3,"y":28},{"x":-21,"y":-13},{"x":12,"y":29},{"x":95,"y":31},{"x":-9,"y":31},{"x":41,"y":10},{"x":-42,"y":27},{"x":25,"y":5},{"x":-10,"y":129},{"x":41,"y":11},{"x":-24,"y":27},{"x":17,"y":24},{"x":-36,"y":0},{"x":27,"y":14},{"x":-30,"y":56},{"x":112,"y":-54},{"x":54,"y":9},{"x":0,"y":45},{"x":-73,"y":27},{"x":19,"y":21},{"x":-46,"y":49},{"x":15,"y":45},{"x":26,"y":-1},{"x":38,"y":-72},{"x":25,"y":32},{"x":-19,"y":-36},{"x":57,"y":11},{"x":0,"y":41},{"x":18,"y":-35},{"x":57,"y":8},{"x":-41,"y":-67},{"x":36,"y":-25},{"x":-8,"y":-51},{"x":51,"y":-28},{"x":5,"y":-35},{"x":13,"y":16},{"x":47,"y":-13},{"x":10,"y":-103},{"x":45,"y":-31},{"x":54,"y":34},{"x":72,"y":181},{"x":44,"y":20},{"x":120,"y":-6},{"x":4,"y":-57},{"x":-65,"y":17},{"x":-46,"y":-129},{"x":-14,"y":14},{"x":-6,"y":-80},{"x":21,"y":-21},{"x":25,"y":11},{"x":3,"y":-56},{"x":-66,"y":26},{"x":-13,"y":-65},{"x":26,"y":-57},{"x":81,"y":2},{"x":32,"y":-31},{"x":-10,"y":-137},{"x":55,"y":-3},{"x":15,"y":-46},{"x":-9,"y":-25},{"x":-19,"y":8},{"x":-17,"y":-7},{"x":6,"y":18},{"x":-10,"y":-11},{"x":4,"y":-16},{"x":25,"y":-18},{"x":-33,"y":3},{"x":-11,"y":-27},{"x":-2,"y":25},{"x":-49,"y":19},{"x":28,"y":23},{"x":-25,"y":18},{"x":-40,"y":-79},{"x":-99,"y":-24},{"x":-11,"y":-64},{"x":158,"y":74},{"x":72,"y":-24},{"x":53,"y":62},{"x":66,"y":15},{"x":1,"y":38},{"x":96,"y":-14},{"x":80,"y":90},{"x":36,"y":93},{"x":46,"y":20},{"x":-31,"y":18},{"x":80,"y":45},{"x":-25,"y":161},{"x":36,"y":47},{"x":77,"y":-20},{"x":71,"y":-119},{"x":-27,"y":-2},{"x":30,"y":-25},{"x":-39,"y":-48},{"x":16,"y":-27},{"x":-50,"y":-20},{"x":-17,"y":-49},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":117251,"y":98890},{"x":186,"y":35},{"x":43,"y":57},{"x":61,"y":0},{"x":-3,"y":58},{"x":41,"y":72},{"x":-120,"y":165},{"x":-50,"y":186},{"x":23,"y":158},{"x":42,"y":70},{"x":-30,"y":73},{"x":-8,"y":180},{"x":53,"y":38},{"x":14,"y":56},{"x":-11,"y":214},{"x":-47,"y":138},{"x":65,"y":140}],"type":"area"},{"arc":[{"x":118124,"y":97292},{"x":-37,"y":29},{"x":15,"y":127},{"x":-33,"y":25},{"x":4,"y":70},{"x":-102,"y":-102},{"x":63,"y":-28},{"x":-14,"y":-73},{"x":65,"y":-52},{"x":39,"y":4}],"type":"coastline"},{"arc":[{"x":118316,"y":97274},{"x":-12,"y":46},{"x":-107,"y":-62},{"x":-76,"y":23},{"x":135,"y":-74},{"x":56,"y":34},{"x":4,"y":33}],"type":"coastline"},{"arc":[{"x":118878,"y":97548},{"x":-15,"y":24},{"x":-21,"y":-61},{"x":17,"y":-75},{"x":19,"y":112}],"type":"coastline"},{"arc":[{"x":120284,"y":98136},{"x":-9,"y":43},{"x":-138,"y":-14},{"x":-78,"y":95},{"x":24,"y":124},{"x":-56,"y":60},{"x":46,"y":110},{"x":-49,"y":41},{"x":-68,"y":5},{"x":-27,"y":92},{"x":-41,"y":33},{"x":-35,"y":-23},{"x":-139,"y":-10},{"x":-16,"y":-81},{"x":-42,"y":-21},{"x":-2,"y":-27},{"x":-161,"y":-52},{"x":-91,"y":79},{"x":22,"y":108},{"x":-31,"y":87},{"x":-63,"y":-19},{"x":-47,"y":90},{"x":-58,"y":39},{"x":-76,"y":-28},{"x":-150,"y":64}],"type":"area"},{"arc":[{"x":118999,"y":98931},{"x":-95,"y":-145},{"x":-95,"y":-14},{"x":-61,"y":-50},{"x":-58,"y":5},{"x":-67,"y":-65},{"x":-34,"y":-5},{"x":-2,"y":28},{"x":-123,"y":43},{"x":-2,"y":-88},{"x":-34,"y":-21},{"x":4,"y":-76},{"x":-35,"y":-27},{"x":-17,"y":-109},{"x":49,"y":-23},{"x":41,"y":11},{"x":22,"y":-145},{"x":-24,"y":-56},{"x":123,"y":-72},{"x":-117,"y":-138},{"x":-127,"y":-15},{"x":-95,"y":-104},{"x":-46,"y":-14},{"x":-26,"y":-95},{"x":32,"y":-34},{"x":-38,"y":-67}],"type":"area"},{"arc":[{"x":118174,"y":97655},{"x":54,"y":17},{"x":61,"y":124},{"x":68,"y":45},{"x":66,"y":-76},{"x":27,"y":42},{"x":84,"y":6},{"x":1,"y":-35},{"x":40,"y":-7},{"x":14,"y":-40},{"x":-18,"y":-72},{"x":46,"y":73},{"x":126,"y":108},{"x":6,"y":25},{"x":-56,"y":9},{"x":-16,"y":61},{"x":80,"y":-19},{"x":151,"y":126},{"x":21,"y":-89},{"x":-50,"y":-127},{"x":25,"y":-136},{"x":37,"y":126},{"x":-24,"y":29},{"x":38,"y":16},{"x":-27,"y":21},{"x":42,"y":23},{"x":-28,"y":22},{"x":13,"y":32},{"x":38,"y":18},{"x":11,"y":-15},{"x":19,"y":25},{"x":2,"y":67},{"x":39,"y":-16},{"x":16,"y":21},{"x":30,"y":-37},{"x":-3,"y":28},{"x":56,"y":43},{"x":-88,"y":-153},{"x":36,"y":-3},{"x":9,"y":-25},{"x":-27,"y":-53},{"x":17,"y":-85},{"x":-48,"y":15},{"x":63,"y":-47},{"x":105,"y":32},{"x":-37,"y":90},{"x":31,"y":27},{"x":56,"y":-3},{"x":-23,"y":-4},{"x":38,"y":-49},{"x":43,"y":8},{"x":-32,"y":-26},{"x":35,"y":-44},{"x":-35,"y":-24},{"x":1,"y":-53},{"x":-64,"y":-40},{"x":-18,"y":17},{"x":-57,"y":-30},{"x":-53,"y":4},{"x":17,"y":-52},{"x":82,"y":13},{"x":35,"y":-24}],"type":"coastline"},{"arc":[{"x":119249,"y":97584},{"x":94,"y":53},{"x":146,"y":-25},{"x":30,"y":24},{"x":79,"y":-27},{"x":17,"y":-49},{"x":51,"y":0},{"x":32,"y":-39},{"x":26,"y":11},{"x":48,"y":-76},{"x":63,"y":-24}],"type":"admin"},{"arc":[{"x":119835,"y":97432},{"x":-3,"y":48},{"x":78,"y":87},{"x":7,"y":56},{"x":104,"y":95},{"x":-33,"y":17},{"x":2,"y":29},{"x":93,"y":52},{"x":45,"y":84},{"x":44,"y":-2},{"x":-29,"y":34},{"x":68,"y":103},{"x":-22,"y":-5},{"x":5,"y":26},{"x":90,"y":80}],"type":"coastline"},{"arc":[{"x":125779,"y":108097},{"x":-57,"y":30},{"x":-34,"y":-41},{"x":-92,"y":-39},{"x":-15,"y":-44},{"x":-184,"y":-62},{"x":-4,"y":-27},{"x":-40,"y":-12},{"x":-42,"y":15},{"x":-39,"y":-32},{"x":-182,"y":-21},{"x":-145,"y":34},{"x":-120,"y":-16},{"x":-124,"y":-41},{"x":-20,"y":-48},{"x":-34,"y":-1},{"x":-62,"y":-76},{"x":-94,"y":-9},{"x":-58,"y":30},{"x":-54,"y":218},{"x":16,"y":94},{"x":44,"y":33},{"x":-8,"y":44},{"x":101,"y":78},{"x":-8,"y":110},{"x":69,"y":299},{"x":-90,"y":94},{"x":-94,"y":-11},{"x":-100,"y":75},{"x":-69,"y":-77},{"x":-125,"y":65},{"x":-221,"y":23}],"type":"area"},{"arc":[{"x":123894,"y":108782},{"x":-46,"y":-62},{"x":7,"y":-105},{"x":32,"y":-108},{"x":37,"y":-37},{"x":8,"y":-102},{"x":-46,"y":-146},{"x":-151,"y":-98},{"x":127,"y":-368},{"x":-121,"y":-105},{"x":-42,"y":-125},{"x":-85,"y":-74}],"type":"admin"},{"arc":[{"x":123614,"y":107452},{"x":14,"y":-166},{"x":164,"y":-174},{"x":40,"y":-102},{"x":-13,"y":-65}],"type":"admin"},{"arc":[{"x":123819,"y":106945},{"x":337,"y":-95},{"x":95,"y":-179},{"x":117,"y":-52},{"x":32,"y":82},{"x":57,"y":15},{"x":79,"y":-48},{"x":84,"y":4},{"x":204,"y":-117},{"x":62,"y":15},{"x":49,"y":65},{"x":147,"y":-27},{"x":103,"y":-46},{"x":-15,"y":-66},{"x":116,"y":22},{"x":65,"y":-19}],"type":"area"},{"arc":[{"x":125351,"y":106499},{"x":-1,"y":19},{"x":53,"y":-6},{"x":9,"y":79},{"x":-52,"y":5},{"x":-5,"y":42},{"x":69,"y":-25},{"x":26,"y":18},{"x":-38,"y":86},{"x":48,"y":-64},{"x":29,"y":21},{"x":-14,"y":28},{"x":28,"y":7},{"x":3,"y":-49},{"x":139,"y":-13},{"x":70,"y":74},{"x":-3,"y":67},{"x":-46,"y":-31},{"x":-173,"y":20},{"x":-30,"y":26},{"x":30,"y":-15},{"x":2,"y":17},{"x":82,"y":0},{"x":1,"y":41},{"x":-30,"y":0},{"x":11,"y":36},{"x":53,"y":-45},{"x":32,"y":33},{"x":-13,"y":93},{"x":82,"y":-141},{"x":40,"y":47},{"x":-30,"y":91},{"x":47,"y":-20},{"x":16,"y":34},{"x":32,"y":-15},{"x":9,"y":20},{"x":-119,"y":53},{"x":63,"y":55},{"x":-29,"y":-12},{"x":-9,"y":44},{"x":28,"y":-30},{"x":-12,"y":27},{"x":-28,"y":14},{"x":35,"y":152},{"x":114,"y":101},{"x":-4,"y":-35},{"x":22,"y":50},{"x":-3,"y":51},{"x":-46,"y":26},{"x":20,"y":10},{"x":-16,"y":36},{"x":31,"y":-23},{"x":-4,"y":32},{"x":-118,"y":-10},{"x":-21,"y":-52},{"x":6,"y":63},{"x":-28,"y":23},{"x":12,"y":38},{"x":36,"y":-28},{"x":106,"y":-12},{"x":-14,"y":93},{"x":-83,"y":56},{"x":-16,"y":-44},{"x":-21,"y":8},{"x":21,"y":47},{"x":-55,"y":50},{"x":84,"y":335}],"type":"coastline"},{"arc":[{"x":126057,"y":107875},{"x":-30,"y":36},{"x":-49,"y":-24},{"x":-43,"y":19},{"x":-72,"y":-22},{"x":24,"y":-31},{"x":-24,"y":-3},{"x":4,"y":24},{"x":-44,"y":-60},{"x":67,"y":-30},{"x":23,"y":-82},{"x":70,"y":3},{"x":44,"y":40},{"x":-23,"y":69},{"x":53,"y":61}],"type":"coastline"},{"arc":[{"x":125376,"y":105183},{"x":-6,"y":-15},{"x":43,"y":55},{"x":-37,"y":-40}],"type":"coastline"},{"arc":[{"x":123819,"y":106945},{"x":-87,"y":-100},{"x":-166,"y":-72},{"x":-78,"y":18},{"x":-51,"y":-16},{"x":-87,"y":-39},{"x":-63,"y":-62},{"x":0,"y":-54},{"x":-78,"y":-93},{"x":15,"y":-59},{"x":-46,"y":-111},{"x":180,"y":-153},{"x":-8,"y":-131},{"x":-130,"y":-26},{"x":-154,"y":-84},{"x":-62,"y":3},{"x":-206,"y":-257}],"type":"admin"},{"arc":[{"x":122798,"y":105709},{"x":131,"y":-229},{"x":53,"y":-24},{"x":20,"y":-168},{"x":82,"y":-84},{"x":-47,"y":-71},{"x":-87,"y":-16},{"x":-74,"y":-178},{"x":31,"y":-102},{"x":-46,"y":-159},{"x":46,"y":-52},{"x":0,"y":-92},{"x":54,"y":-105},{"x":-3,"y":-102}],"type":"admin"},{"arc":[{"x":122958,"y":104327},{"x":64,"y":-63},{"x":65,"y":11},{"x":79,"y":-24},{"x":71,"y":68},{"x":180,"y":-61},{"x":57,"y":-46},{"x":124,"y":-1},{"x":46,"y":-185},{"x":-67,"y":-91},{"x":34,"y":-29},{"x":162,"y":-38},{"x":35,"y":-67},{"x":105,"y":-5},{"x":101,"y":-51},{"x":108,"y":67},{"x":39,"y":-2},{"x":30,"y":-33},{"x":104,"y":-23},{"x":39,"y":-71},{"x":163,"y":-53},{"x":107,"y":36},{"x":87,"y":-17},{"x":35,"y":16}],"type":"area"},{"arc":[{"x":125739,"y":104766},{"x":-44,"y":-56},{"x":-36,"y":8},{"x":-36,"y":28},{"x":23,"y":36},{"x":-32,"y":47},{"x":-4,"y":-38},{"x":0,"y":31},{"x":-62,"y":17},{"x":-127,"y":136},{"x":-20,"y":-17},{"x":-71,"y":40},{"x":-24,"y":-32},{"x":-39,"y":24},{"x":52,"y":72},{"x":-33,"y":31},{"x":29,"y":30},{"x":-40,"y":-34},{"x":20,"y":-30},{"x":-27,"y":23},{"x":-58,"y":-44},{"x":32,"y":51},{"x":-34,"y":35},{"x":89,"y":67},{"x":-85,"y":120},{"x":-53,"y":-36},{"x":-32,"y":9},{"x":-48,"y":-45},{"x":-76,"y":69},{"x":80,"y":-11},{"x":75,"y":22},{"x":60,"y":59},{"x":-3,"y":18},{"x":-121,"y":-17},{"x":-57,"y":78},{"x":9,"y":21},{"x":19,"y":-20},{"x":-19,"y":67},{"x":130,"y":288},{"x":35,"y":-12},{"x":-106,"y":49},{"x":-63,"y":0},{"x":40,"y":56},{"x":137,"y":-62},{"x":-21,"y":12},{"x":25,"y":87},{"x":72,"y":-23},{"x":23,"y":80},{"x":-72,"y":21},{"x":29,"y":80},{"x":-128,"y":23},{"x":-7,"y":28},{"x":137,"y":-14},{"x":65,"y":316},{"x":77,"y":-6},{"x":-75,"y":10},{"x":7,"y":41}],"type":"coastline"},{"arc":[{"x":121373,"y":99231},{"x":-191,"y":132},{"x":-17,"y":53},{"x":-32,"y":-3},{"x":-51,"y":50},{"x":-109,"y":0},{"x":-51,"y":61},{"x":96,"y":88},{"x":50,"y":7},{"x":54,"y":72},{"x":39,"y":1},{"x":68,"y":53},{"x":-37,"y":92},{"x":-5,"y":137}],"type":"area"},{"arc":[{"x":121187,"y":99974},{"x":-69,"y":37},{"x":-56,"y":74},{"x":-191,"y":24},{"x":-46,"y":73},{"x":-107,"y":20},{"x":-29,"y":45},{"x":-65,"y":29},{"x":-87,"y":-84},{"x":-58,"y":15},{"x":5,"y":73},{"x":-140,"y":18},{"x":-54,"y":54},{"x":-96,"y":-29},{"x":-39,"y":14},{"x":-73,"y":-90},{"x":-34,"y":20},{"x":-163,"y":-8},{"x":-43,"y":35},{"x":-29,"y":100},{"x":-54,"y":19},{"x":-69,"y":-28},{"x":-27,"y":19},{"x":41,"y":124},{"x":-17,"y":35},{"x":-97,"y":61},{"x":-71,"y":-9},{"x":5,"y":39},{"x":86,"y":53},{"x":-8,"y":28},{"x":41,"y":9},{"x":38,"y":95},{"x":45,"y":5},{"x":29,"y":278},{"x":35,"y":65},{"x":61,"y":24},{"x":-2,"y":33},{"x":45,"y":31},{"x":2,"y":79},{"x":52,"y":12},{"x":11,"y":32},{"x":56,"y":2},{"x":-26,"y":116},{"x":52,"y":38},{"x":4,"y":67},{"x":100,"y":72},{"x":-7,"y":75},{"x":-128,"y":76},{"x":-14,"y":67},{"x":99,"y":110},{"x":81,"y":13},{"x":28,"y":134},{"x":54,"y":41},{"x":-93,"y":79},{"x":-59,"y":-16},{"x":-40,"y":69},{"x":-158,"y":77}],"type":"admin"},{"arc":[{"x":119908,"y":102418},{"x":-34,"y":-59},{"x":-87,"y":-7},{"x":-73,"y":-53},{"x":-32,"y":3},{"x":-50,"y":-84},{"x":21,"y":-48},{"x":63,"y":-8},{"x":2,"y":-27},{"x":-38,"y":-73},{"x":-75,"y":-19},{"x":-40,"y":-91},{"x":-88,"y":-40},{"x":8,"y":-83},{"x":-23,"y":8},{"x":-23,"y":-91},{"x":46,"y":-48},{"x":-13,"y":-58},{"x":39,"y":-11},{"x":-33,"y":-3},{"x":-39,"y":-45},{"x":13,"y":-43},{"x":-365,"y":-62},{"x":-62,"y":-35},{"x":13,"y":-40},{"x":-49,"y":-14},{"x":-22,"y":-74},{"x":87,"y":-27},{"x":15,"y":-35},{"x":-21,"y":-156},{"x":-208,"y":33},{"x":-42,"y":-30},{"x":-93,"y":-1},{"x":-31,"y":-51},{"x":-59,"y":-21},{"x":36,"y":-51},{"x":-50,"y":-84},{"x":31,"y":-18},{"x":58,"y":22},{"x":-14,"y":-71},{"x":33,"y":-42},{"x":-32,"y":-50},{"x":-60,"y":-21},{"x":-6,"y":-34},{"x":78,"y":-207},{"x":88,"y":-87},{"x":34,"y":-86},{"x":58,"y":-15},{"x":14,"y":-48},{"x":-31,"y":-179},{"x":-32,"y":-4},{"x":30,"y":-130},{"x":-48,"y":-75},{"x":243,"y":-178},{"x":-94,"y":-100},{"x":-38,"y":4},{"x":-81,"y":-112},{"x":35,"y":-32},{"x":-13,"y":-111},{"x":85,"y":-96},{"x":61,"y":-15},{"x":23,"y":26},{"x":11,"y":-20},{"x":-29,"y":-69},{"x":26,"y":-86},{"x":-32,"y":-125}],"type":"area"},{"arc":[{"x":120284,"y":98136},{"x":41,"y":9},{"x":78,"y":85},{"x":92,"y":-13},{"x":69,"y":58},{"x":-7,"y":32},{"x":42,"y":1},{"x":152,"y":145},{"x":83,"y":10},{"x":147,"y":179},{"x":62,"y":-3},{"x":16,"y":40},{"x":77,"y":18},{"x":23,"y":34},{"x":-20,"y":-27},{"x":-21,"y":14},{"x":37,"y":17},{"x":-32,"y":28},{"x":25,"y":37},{"x":-25,"y":-36},{"x":-12,"y":-40},{"x":-24,"y":22},{"x":27,"y":68},{"x":22,"y":-12},{"x":144,"y":189},{"x":-40,"y":28},{"x":133,"y":212}],"type":"coastline"},{"arc":[{"x":122652,"y":98751},{"x":-30,"y":77},{"x":-43,"y":-186},{"x":55,"y":22},{"x":18,"y":87}],"type":"coastline"},{"arc":[{"x":121247,"y":101447},{"x":-50,"y":-82},{"x":41,"y":-23},{"x":-21,"y":-67},{"x":-160,"y":-76},{"x":-54,"y":-123},{"x":-33,"y":-12},{"x":143,"y":-183},{"x":-14,"y":-34},{"x":30,"y":-47},{"x":-31,"y":-49},{"x":65,"y":-21},{"x":-11,"y":-90},{"x":-51,"y":-66},{"x":60,"y":-30},{"x":-10,"y":-45},{"x":37,"y":-30},{"x":71,"y":30},{"x":125,"y":7},{"x":58,"y":-27},{"x":114,"y":-1},{"x":36,"y":-27},{"x":2,"y":-60},{"x":-23,"y":-101},{"x":-54,"y":-45},{"x":8,"y":-111},{"x":-40,"y":1},{"x":-107,"y":-98},{"x":-144,"y":-72},{"x":-47,"y":9}],"type":"admin"},{"arc":[{"x":121373,"y":99231},{"x":149,"y":418},{"x":63,"y":70},{"x":-45,"y":-49},{"x":34,"y":125},{"x":173,"y":228},{"x":127,"y":106},{"x":32,"y":95},{"x":59,"y":57},{"x":28,"y":-6},{"x":6,"y":37},{"x":36,"y":2},{"x":-28,"y":1},{"x":38,"y":17},{"x":18,"y":90},{"x":61,"y":64},{"x":83,"y":69},{"x":184,"y":62},{"x":173,"y":103},{"x":148,"y":35},{"x":19,"y":-17},{"x":94,"y":165},{"x":47,"y":-5},{"x":9,"y":25},{"x":44,"y":-13},{"x":-68,"y":50},{"x":21,"y":8},{"x":2,"y":-24},{"x":73,"y":31},{"x":-40,"y":-50},{"x":20,"y":21},{"x":78,"y":-2},{"x":5,"y":36},{"x":112,"y":-20}],"type":"coastline"},{"arc":[{"x":123128,"y":100960},{"x":6,"y":56},{"x":-70,"y":14},{"x":38,"y":45},{"x":-51,"y":2},{"x":28,"y":63},{"x":68,"y":0},{"x":1,"y":98},{"x":-73,"y":3},{"x":-9,"y":68},{"x":79,"y":5},{"x":2,"y":132},{"x":77,"y":-8},{"x":26,"y":171},{"x":55,"y":25},{"x":3,"y":74}],"type":"admin"},{"arc":[{"x":123308,"y":101708},{"x":-27,"y":36},{"x":-132,"y":-20},{"x":-91,"y":-106},{"x":-60,"y":4},{"x":-79,"y":-38},{"x":-5,"y":-146},{"x":-25,"y":-31},{"x":-127,"y":51},{"x":-136,"y":-106},{"x":-41,"y":74},{"x":-55,"y":-9},{"x":-49,"y":23},{"x":5,"y":89},{"x":-44,"y":57},{"x":-70,"y":3},{"x":-139,"y":59},{"x":-118,"y":143},{"x":-52,"y":9},{"x":-74,"y":-56},{"x":-84,"y":-5},{"x":-10,"y":27},{"x":41,"y":49},{"x":-33,"y":10},{"x":-94,"y":-109},{"x":-52,"y":16},{"x":-95,"y":-79},{"x":-163,"y":-10},{"x":-55,"y":-120},{"x":-33,"y":12},{"x":-164,"y":-88}],"type":"admin"},{"arc":[{"x":125938,"y":109609},{"x":-44,"y":-1},{"x":107,"y":-15},{"x":-63,"y":16}],"type":"coastline"},{"arc":[{"x":124462,"y":110909},{"x":20,"y":-179},{"x":-40,"y":-84},{"x":-103,"y":-83},{"x":111,"y":-169},{"x":-7,"y":-137},{"x":-160,"y":-151}],"type":"admin"},{"arc":[{"x":124283,"y":110106},{"x":25,"y":-121},{"x":50,"y":-23},{"x":30,"y":-82},{"x":81,"y":-45},{"x":-46,"y":-172},{"x":-52,"y":-7},{"x":-39,"y":-37},{"x":-72,"y":1},{"x":-61,"y":-110},{"x":-93,"y":9},{"x":-80,"y":-85},{"x":-3,"y":-101},{"x":-92,"y":-19},{"x":-50,"y":15}],"type":"admin"},{"arc":[{"x":123881,"y":109329},{"x":-85,"y":-89},{"x":41,"y":-77},{"x":-34,"y":-54}],"type":"admin"},{"arc":[{"x":123803,"y":109109},{"x":42,"y":-35},{"x":9,"y":-103},{"x":39,"y":-29},{"x":-29,"y":-76},{"x":30,"y":-84}],"type":"admin"},{"arc":[{"x":125779,"y":108097},{"x":69,"y":69},{"x":-37,"y":76},{"x":29,"y":86},{"x":-36,"y":41},{"x":3,"y":-28},{"x":-27,"y":20},{"x":20,"y":162},{"x":-17,"y":-8},{"x":-13,"y":137},{"x":-32,"y":1},{"x":10,"y":59},{"x":-26,"y":30},{"x":36,"y":23},{"x":-117,"y":124},{"x":-7,"y":48},{"x":33,"y":16},{"x":-33,"y":-15},{"x":-20,"y":157},{"x":-48,"y":40},{"x":32,"y":80},{"x":-24,"y":51},{"x":40,"y":6},{"x":9,"y":73},{"x":-26,"y":14},{"x":32,"y":33},{"x":-26,"y":-26},{"x":-26,"y":8},{"x":23,"y":-3},{"x":3,"y":29},{"x":10,"y":-16},{"x":-2,"y":53},{"x":37,"y":-24},{"x":31,"y":49},{"x":-33,"y":22},{"x":24,"y":19},{"x":31,"y":-19},{"x":92,"y":100},{"x":-41,"y":64},{"x":25,"y":-12},{"x":7,"y":23},{"x":1,"y":-27},{"x":24,"y":2},{"x":-36,"y":-15},{"x":38,"y":-24},{"x":72,"y":59},{"x":12,"y":-13},{"x":-36,"y":42},{"x":-26,"y":-25},{"x":-16,"y":39},{"x":-34,"y":-17},{"x":-5,"y":21},{"x":66,"y":46},{"x":22,"y":-24},{"x":-13,"y":33},{"x":43,"y":33},{"x":106,"y":-115},{"x":55,"y":49},{"x":-86,"y":99},{"x":47,"y":-3},{"x":73,"y":-65},{"x":32,"y":27},{"x":-51,"y":100},{"x":36,"y":-11},{"x":42,"y":22},{"x":-25,"y":33},{"x":47,"y":37},{"x":-15,"y":-13},{"x":36,"y":-34},{"x":97,"y":50},{"x":-76,"y":-15},{"x":1,"y":24},{"x":60,"y":6},{"x":-57,"y":-5},{"x":-43,"y":19},{"x":48,"y":19},{"x":-2,"y":-26},{"x":26,"y":21},{"x":10,"y":-13},{"x":2,"y":79},{"x":47,"y":-38},{"x":49,"y":23},{"x":-24,"y":50},{"x":64,"y":29},{"x":-10,"y":53},{"x":125,"y":74}],"type":"coastline"},{"arc":[{"x":117291,"y":98744},{"x":-20,"y":31},{"x":-7,"y":-23},{"x":27,"y":-8}],"type":"coastline"},{"arc":[{"x":117705,"y":97692},{"x":-90,"y":-36},{"x":60,"y":-18},{"x":30,"y":54}],"type":"coastline"},{"arc":[{"x":119603,"y":103002},{"x":-195,"y":56},{"x":-80,"y":-56},{"x":-72,"y":48}],"type":"admin"},{"arc":[{"x":119256,"y":103050},{"x":39,"y":-121},{"x":-31,"y":-81},{"x":13,"y":-158},{"x":91,"y":-195},{"x":-62,"y":-78},{"x":22,"y":-72},{"x":-46,"y":-55},{"x":2,"y":-70},{"x":-77,"y":-15},{"x":-27,"y":-40},{"x":22,"y":-41},{"x":-67,"y":-42},{"x":-93,"y":14},{"x":-97,"y":187},{"x":-93,"y":14},{"x":-111,"y":-46},{"x":-85,"y":16},{"x":-35,"y":94},{"x":-57,"y":-2},{"x":-20,"y":-25},{"x":-28,"y":20},{"x":-68,"y":-9},{"x":-95,"y":48},{"x":-7,"y":180},{"x":-82,"y":18},{"x":-47,"y":-33}],"type":"admin"},{"arc":[{"x":118217,"y":102558},{"x":-118,"y":-100},{"x":-2,"y":-64},{"x":-73,"y":-121},{"x":-201,"y":-42},{"x":-178,"y":-191},{"x":28,"y":-110},{"x":-21,"y":-15},{"x":35,"y":-24},{"x":1,"y":-39},{"x":67,"y":-6},{"x":54,"y":-37},{"x":-64,"y":-70},{"x":-48,"y":-139},{"x":-52,"y":-62},{"x":35,"y":-56},{"x":-39,"y":-157},{"x":42,"y":-26},{"x":-21,"y":-65},{"x":53,"y":-1},{"x":28,"y":-31},{"x":-74,"y":-81},{"x":51,"y":-190},{"x":5,"y":-85},{"x":-22,"y":-9},{"x":26,"y":-171},{"x":-21,"y":-88},{"x":-72,"y":0},{"x":-126,"y":-48}],"type":"admin"},{"arc":[{"x":117251,"y":98890},{"x":91,"y":-39},{"x":39,"y":13},{"x":42,"y":-41},{"x":-56,"y":-52},{"x":-25,"y":33},{"x":-40,"y":2},{"x":45,"y":-89},{"x":-19,"y":-9},{"x":-36,"y":33},{"x":53,"y":-159},{"x":-57,"y":-37},{"x":-20,"y":62},{"x":-55,"y":-172},{"x":30,"y":-141},{"x":57,"y":-63},{"x":50,"y":-9},{"x":0,"y":-35},{"x":-16,"y":10},{"x":-61,"y":-66},{"x":-34,"y":20},{"x":-95,"y":-57},{"x":73,"y":-213},{"x":90,"y":-16},{"x":37,"y":-54},{"x":-26,"y":-58},{"x":52,"y":-85},{"x":-34,"y":-98},{"x":80,"y":-17},{"x":59,"y":58},{"x":104,"y":27},{"x":3,"y":66},{"x":69,"y":19},{"x":-75,"y":10},{"x":26,"y":60},{"x":96,"y":1},{"x":-31,"y":39},{"x":32,"y":48},{"x":-5,"y":62},{"x":-48,"y":45},{"x":128,"y":-23},{"x":9,"y":102},{"x":34,"y":18},{"x":67,"y":-47},{"x":-22,"y":-101},{"x":57,"y":48},{"x":74,"y":20},{"x":48,"y":-15},{"x":-21,"y":8},{"x":81,"y":44},{"x":-11,"y":47},{"x":61,"y":-15},{"x":-14,"y":-46},{"x":33,"y":-18},{"x":-7,"y":-27},{"x":-64,"y":-8},{"x":-49,"y":-73},{"x":-25,"y":4},{"x":11,"y":27},{"x":-43,"y":-8},{"x":-8,"y":-89},{"x":-99,"y":-123},{"x":64,"y":50},{"x":61,"y":-2},{"x":-16,"y":-19},{"x":54,"y":4},{"x":22,"y":-30},{"x":66,"y":-11},{"x":37,"y":-50}],"type":"coastline"},{"arc":[{"x":119908,"y":102418},{"x":-24,"y":55},{"x":-107,"y":21},{"x":-91,"y":193},{"x":-49,"y":3},{"x":-34,"y":82},{"x":28,"y":61},{"x":-26,"y":41},{"x":-2,"y":128}],"type":"admin"},{"arc":[{"x":122958,"y":104327},{"x":-51,"y":-38},{"x":-34,"y":-106},{"x":37,"y":-183},{"x":-85,"y":-1},{"x":-160,"y":-124},{"x":62,"y":-63},{"x":39,"y":-126},{"x":-81,"y":-93},{"x":-97,"y":2},{"x":-7,"y":-215},{"x":-36,"y":-22},{"x":11,"y":-59},{"x":-59,"y":-114},{"x":17,"y":-66},{"x":-39,"y":-30},{"x":-11,"y":-91},{"x":-55,"y":-24},{"x":38,"y":-157},{"x":69,"y":-31}],"type":"admin"},{"arc":[{"x":128160,"y":107795},{"x":-88,"y":69},{"x":-52,"y":-29},{"x":87,"y":-47},{"x":53,"y":7}],"type":"coastline"},{"arc":[{"x":128284,"y":107276},{"x":-65,"y":122},{"x":20,"y":30},{"x":-3,"y":-36},{"x":8,"y":53},{"x":-21,"y":24},{"x":-69,"y":2},{"x":-39,"y":-129},{"x":71,"y":-23},{"x":45,"y":-64},{"x":53,"y":21}],"type":"coastline"},{"arc":[{"x":128489,"y":106893},{"x":-193,"y":46},{"x":-29,"y":-87},{"x":48,"y":-29},{"x":134,"y":-6},{"x":40,"y":76}],"type":"coastline"},{"arc":[{"x":128877,"y":105710},{"x":-76,"y":-13},{"x":-110,"y":-79},{"x":77,"y":-14},{"x":-3,"y":23},{"x":92,"y":42},{"x":20,"y":41}],"type":"coastline"},{"arc":[{"x":128941,"y":106762},{"x":-26,"y":5},{"x":2,"y":36},{"x":-51,"y":-19},{"x":-2,"y":-118},{"x":33,"y":3},{"x":-10,"y":68},{"x":54,"y":25}],"type":"coastline"},{"arc":[{"x":129076,"y":105770},{"x":-59,"y":87},{"x":-96,"y":-51},{"x":-16,"y":-154},{"x":111,"y":-16},{"x":60,"y":134}],"type":"coastline"},{"arc":[{"x":129213,"y":106075},{"x":-36,"y":57},{"x":-11,"y":-20},{"x":-98,"y":-7},{"x":-44,"y":-59},{"x":-55,"y":-10},{"x":-52,"y":26},{"x":-60,"y":-38},{"x":-29,"y":-81},{"x":53,"y":-44},{"x":12,"y":70},{"x":30,"y":-28},{"x":52,"y":-1},{"x":79,"y":49},{"x":102,"y":1},{"x":57,"y":85}],"type":"coastline"},{"arc":[{"x":129506,"y":105654},{"x":-59,"y":14},{"x":-31,"y":60},{"x":-10,"y":-26},{"x":-35,"y":35},{"x":14,"y":10},{"x":-21,"y":-12},{"x":-4,"y":-14},{"x":-109,"y":78},{"x":-53,"y":-2},{"x":-134,"y":-148},{"x":-18,"y":-96},{"x":-11,"y":44},{"x":14,"y":-70},{"x":-43,"y":-76},{"x":205,"y":-30},{"x":23,"y":23},{"x":80,"y":3},{"x":28,"y":47},{"x":59,"y":7},{"x":95,"y":64},{"x":10,"y":89}],"type":"coastline"},{"arc":[{"x":129572,"y":105855},{"x":-40,"y":42},{"x":-63,"y":17},{"x":-5,"y":40},{"x":-104,"y":36},{"x":7,"y":34},{"x":-42,"y":-7},{"x":21,"y":-24},{"x":-51,"y":22},{"x":-66,"y":-14},{"x":-34,"y":-79},{"x":29,"y":-67},{"x":89,"y":-25},{"x":57,"y":42},{"x":42,"y":-70},{"x":38,"y":28},{"x":65,"y":-44},{"x":52,"y":34},{"x":5,"y":35}],"type":"coastline"},{"arc":[{"x":129597,"y":105776},{"x":-40,"y":-5},{"x":38,"y":-31},{"x":43,"y":19},{"x":-41,"y":17}],"type":"coastline"},{"arc":[{"x":129645,"y":105848},{"x":-68,"y":30},{"x":13,"y":-26},{"x":55,"y":-4}],"type":"coastline"},{"arc":[{"x":129650,"y":106446},{"x":-138,"y":86},{"x":-46,"y":-5},{"x":-47,"y":-62},{"x":-88,"y":-41},{"x":-10,"y":-67},{"x":-91,"y":-119},{"x":-75,"y":7},{"x":-32,"y":28},{"x":18,"y":40},{"x":-25,"y":31},{"x":-23,"y":-43},{"x":-48,"y":-11},{"x":-74,"y":-84},{"x":24,"y":-57},{"x":119,"y":-8},{"x":110,"y":47},{"x":19,"y":-46},{"x":116,"y":-9},{"x":92,"y":118},{"x":111,"y":27},{"x":-7,"y":46},{"x":45,"y":62},{"x":32,"y":4},{"x":18,"y":56}],"type":"coastline"},{"arc":[{"x":122798,"y":105709},{"x":-237,"y":35}],"type":"admin"},{"arc":[{"x":122561,"y":105744},{"x":-113,"y":-151},{"x":-39,"y":-8},{"x":-49,"y":-62},{"x":-111,"y":54},{"x":-31,"y":-7},{"x":-77,"y":-197},{"x":-98,"y":-52},{"x":-165,"y":-8},{"x":-43,"y":21},{"x":-177,"y":-51},{"x":-45,"y":-103},{"x":15,"y":-166},{"x":-47,"y":-68},{"x":-7,"y":-67},{"x":-37,"y":-26},{"x":-366,"y":-80},{"x":-91,"y":59},{"x":-28,"y":57},{"x":-45,"y":12},{"x":-143,"y":-168},{"x":-21,"y":-70},{"x":-34,"y":-23},{"x":-42,"y":8},{"x":-88,"y":-76},{"x":-82,"y":-13},{"x":-186,"y":163},{"x":-95,"y":-22},{"x":-147,"y":41},{"x":-206,"y":-273},{"x":-87,"y":5},{"x":-93,"y":-40},{"x":-273,"y":-218},{"x":-119,"y":21}],"type":"admin"},{"arc":[{"x":119391,"y":104236},{"x":-90,"y":-270}],"type":"admin"},{"arc":[{"x":119301,"y":103966},{"x":-12,"y":-107},{"x":-84,"y":-205},{"x":3,"y":-76},{"x":69,"y":-79},{"x":-55,"y":-295},{"x":34,"y":-154}],"type":"admin"},{"arc":[{"x":119603,"y":103002},{"x":76,"y":45},{"x":135,"y":1},{"x":42,"y":97},{"x":55,"y":11},{"x":63,"y":54},{"x":41,"y":-21},{"x":42,"y":76},{"x":102,"y":-45},{"x":62,"y":38},{"x":106,"y":7},{"x":71,"y":50},{"x":93,"y":-113},{"x":108,"y":-43},{"x":-17,"y":-47},{"x":64,"y":-85},{"x":25,"y":14},{"x":78,"y":-30},{"x":38,"y":-172},{"x":-32,"y":-139},{"x":26,"y":-44},{"x":48,"y":44},{"x":14,"y":-28},{"x":-10,"y":-105},{"x":-41,"y":-22},{"x":11,"y":-35},{"x":188,"y":-42},{"x":35,"y":72},{"x":118,"y":65},{"x":182,"y":-66},{"x":86,"y":-148}],"type":"admin"},{"arc":[{"x":121412,"y":102391},{"x":8,"y":-61},{"x":48,"y":-2},{"x":82,"y":50},{"x":74,"y":-42},{"x":118,"y":41},{"x":47,"y":-43},{"x":6,"y":-65},{"x":74,"y":-36},{"x":46,"y":3},{"x":57,"y":98},{"x":30,"y":6}],"type":"admin"},{"arc":[{"x":123373,"y":101706},{"x":-65,"y":2}],"type":"area"},{"arc":[{"x":123128,"y":100960},{"x":74,"y":-16},{"x":6,"y":-32},{"x":47,"y":-17},{"x":-27,"y":75},{"x":45,"y":29},{"x":-24,"y":-84},{"x":28,"y":-5},{"x":2,"y":-39},{"x":64,"y":-19},{"x":28,"y":45},{"x":97,"y":-33},{"x":22,"y":-35}],"type":"coastline"},{"arc":[{"x":121412,"y":102391},{"x":-33,"y":12},{"x":-38,"y":-24},{"x":-69,"y":-115},{"x":-17,"y":-122},{"x":-58,"y":9},{"x":10,"y":-88},{"x":-43,"y":-21},{"x":-30,"y":-69},{"x":20,"y":-76},{"x":51,"y":-42},{"x":-76,"y":5},{"x":-137,"y":-162},{"x":-4,"y":-37},{"x":170,"y":-72},{"x":87,"y":-93},{"x":2,"y":-49}],"type":"area"},{"arc":[{"x":119103,"y":97382},{"x":-49,"y":-8},{"x":-20,"y":-33},{"x":17,"y":-51},{"x":56,"y":28},{"x":-4,"y":64}],"type":"coastline"},{"arc":[{"x":119249,"y":97584},{"x":48,"y":-19},{"x":-8,"y":15},{"x":85,"y":-70},{"x":58,"y":-130},{"x":22,"y":-12},{"x":35,"y":24},{"x":-17,"y":-69},{"x":-40,"y":-48},{"x":-36,"y":73},{"x":-91,"y":49},{"x":-21,"y":-43},{"x":33,"y":-129},{"x":-36,"y":-27},{"x":9,"y":-107},{"x":-51,"y":-22},{"x":28,"y":38},{"x":-31,"y":-33},{"x":-42,"y":8},{"x":-106,"y":-62},{"x":-68,"y":-5},{"x":92,"y":-18},{"x":178,"y":-108},{"x":3,"y":18},{"x":18,"y":-70},{"x":-43,"y":-37},{"x":-81,"y":-11},{"x":-36,"y":-91},{"x":0,"y":22},{"x":-57,"y":-10},{"x":-46,"y":-55},{"x":-44,"y":8},{"x":-41,"y":-23},{"x":-11,"y":-116},{"x":-52,"y":-63},{"x":-13,"y":-86},{"x":-35,"y":4},{"x":-25,"y":-72},{"x":-139,"y":-118},{"x":-4,"y":-165},{"x":-135,"y":-192},{"x":-32,"y":-211},{"x":-188,"y":-163},{"x":-86,"y":-127},{"x":-222,"y":-9},{"x":37,"y":-86},{"x":-74,"y":-114},{"x":-79,"y":-46},{"x":24,"y":-60},{"x":-46,"y":-207},{"x":19,"y":-18},{"x":110,"y":10},{"x":39,"y":27},{"x":-28,"y":16},{"x":1,"y":52},{"x":-30,"y":5},{"x":22,"y":51},{"x":81,"y":-59},{"x":46,"y":40},{"x":-16,"y":53},{"x":92,"y":1},{"x":37,"y":-49},{"x":-22,"y":-9},{"x":20,"y":-4},{"x":-45,"y":-209},{"x":-97,"y":-112},{"x":1,"y":-75},{"x":-65,"y":-44},{"x":14,"y":-59},{"x":-39,"y":-10},{"x":-21,"y":-56},{"x":-38,"y":-20},{"x":-25,"y":-95},{"x":-37,"y":15},{"x":36,"y":-26},{"x":-42,"y":3},{"x":-15,"y":22},{"x":22,"y":9},{"x":-74,"y":4},{"x":-19,"y":-71},{"x":-155,"y":-205},{"x":12,"y":-69},{"x":-31,"y":-33},{"x":25,"y":-25},{"x":65,"y":143},{"x":92,"y":37},{"x":58,"y":73},{"x":78,"y":29},{"x":6,"y":53},{"x":102,"y":83},{"x":151,"y":265},{"x":40,"y":1},{"x":89,"y":58},{"x":42,"y":60},{"x":-14,"y":33},{"x":64,"y":49},{"x":36,"y":97},{"x":83,"y":41},{"x":0,"y":31},{"x":41,"y":20},{"x":-11,"y":26},{"x":36,"y":16},{"x":3,"y":37},{"x":-42,"y":12},{"x":-7,"y":30},{"x":-52,"y":13},{"x":-12,"y":-22},{"x":-58,"y":2},{"x":-50,"y":78},{"x":27,"y":-4},{"x":-9,"y":-17},{"x":42,"y":41},{"x":175,"y":15},{"x":-67,"y":95},{"x":-64,"y":12},{"x":-49,"y":47},{"x":-1,"y":31},{"x":53,"y":40},{"x":1,"y":58},{"x":104,"y":35},{"x":77,"y":-72},{"x":87,"y":-147},{"x":48,"y":27},{"x":18,"y":59},{"x":30,"y":5},{"x":-123,"y":76},{"x":-51,"y":100},{"x":31,"y":33},{"x":208,"y":-57},{"x":12,"y":14},{"x":6,"y":68},{"x":30,"y":14},{"x":-87,"y":142},{"x":30,"y":37},{"x":99,"y":-35},{"x":48,"y":51},{"x":-134,"y":111},{"x":-16,"y":43},{"x":42,"y":36},{"x":-39,"y":70},{"x":15,"y":19},{"x":75,"y":-28},{"x":52,"y":28},{"x":44,"y":-8},{"x":38,"y":67},{"x":-29,"y":74},{"x":52,"y":1},{"x":20,"y":26},{"x":-6,"y":50},{"x":-76,"y":39},{"x":14,"y":-46},{"x":23,"y":11},{"x":-52,"y":-39},{"x":-6,"y":76},{"x":-76,"y":30},{"x":-17,"y":69},{"x":35,"y":20},{"x":15,"y":-17},{"x":38,"y":45},{"x":132,"y":6},{"x":79,"y":-74},{"x":-9,"y":94},{"x":57,"y":52},{"x":-56,"y":50},{"x":107,"y":46},{"x":-42,"y":27},{"x":115,"y":112},{"x":-15,"y":98},{"x":16,"y":23},{"x":72,"y":11},{"x":1,"y":104},{"x":77,"y":36},{"x":-12,"y":55},{"x":35,"y":10},{"x":37,"y":65},{"x":-16,"y":58},{"x":59,"y":30},{"x":40,"y":109},{"x":70,"y":41}],"type":"coastline"},{"arc":[{"x":116684,"y":101877},{"x":-61,"y":-3}],"type":"admin"},{"arc":[{"x":116623,"y":101874},{"x":-78,"y":-76},{"x":-126,"y":-20},{"x":-62,"y":-58},{"x":-110,"y":32},{"x":-53,"y":-5},{"x":-27,"y":-36},{"x":-66,"y":-3},{"x":-25,"y":27},{"x":-165,"y":22},{"x":-57,"y":-174},{"x":25,"y":-107},{"x":-25,"y":-78},{"x":-71,"y":-25},{"x":-78,"y":36},{"x":-43,"y":-49},{"x":-57,"y":6},{"x":-150,"y":-100},{"x":-42,"y":-90},{"x":-84,"y":-21},{"x":-89,"y":-72},{"x":-83,"y":-122},{"x":-48,"y":-28},{"x":-63,"y":0},{"x":-31,"y":-100},{"x":198,"y":-133},{"x":45,"y":-113},{"x":75,"y":-32},{"x":97,"y":-109},{"x":47,"y":-19},{"x":24,"y":-85},{"x":63,"y":-44},{"x":78,"y":27}],"type":"admin"},{"arc":[{"x":116009,"y":100548},{"x":194,"y":217},{"x":127,"y":-2},{"x":43,"y":62},{"x":-3,"y":81},{"x":45,"y":87},{"x":-34,"y":28},{"x":41,"y":54},{"x":-56,"y":41},{"x":11,"y":47},{"x":58,"y":11},{"x":-39,"y":38},{"x":-12,"y":73},{"x":136,"y":47},{"x":93,"y":86},{"x":-34,"y":101},{"x":35,"y":85},{"x":202,"y":119},{"x":-33,"y":75},{"x":-60,"y":14},{"x":-39,"y":65}],"type":"area"},{"arc":[{"x":117446,"y":103062},{"x":-35,"y":-29},{"x":-69,"y":15},{"x":-88,"y":-48},{"x":-63,"y":-112},{"x":-28,"y":-129},{"x":-138,"y":-139},{"x":-56,"y":-98},{"x":-23,"y":-94},{"x":21,"y":-37},{"x":-79,"y":-93},{"x":7,"y":-113},{"x":-40,"y":-27},{"x":-79,"y":-178},{"x":5,"y":-44},{"x":-97,"y":-59}],"type":"admin"},{"arc":[{"x":118217,"y":102558},{"x":-252,"y":74},{"x":-12,"y":101},{"x":-43,"y":43},{"x":-21,"y":100},{"x":-61,"y":66},{"x":-248,"y":132},{"x":-134,"y":-12}],"type":"admin"},{"arc":[{"x":112199,"y":99529},{"x":-26,"y":40},{"x":15,"y":-74},{"x":11,"y":34}],"type":"coastline"},{"arc":[{"x":112444,"y":98213},{"x":-35,"y":-3},{"x":7,"y":-30},{"x":28,"y":33}],"type":"coastline"},{"arc":[{"x":112486,"y":97971},{"x":-6,"y":25},{"x":-12,"y":-28},{"x":18,"y":3}],"type":"coastline"},{"arc":[{"x":112623,"y":97929},{"x":-58,"y":19},{"x":-39,"y":-24},{"x":-45,"y":22},{"x":-15,"y":-38},{"x":129,"y":0},{"x":28,"y":21}],"type":"coastline"},{"arc":[{"x":112698,"y":98444},{"x":-42,"y":38},{"x":-75,"y":-35},{"x":12,"y":-64},{"x":-41,"y":-47},{"x":-9,"y":-94},{"x":52,"y":6},{"x":-3,"y":59},{"x":63,"y":54},{"x":-20,"y":32},{"x":63,"y":51}],"type":"coastline"},{"arc":[{"x":112880,"y":99335},{"x":-22,"y":6},{"x":6,"y":-18},{"x":16,"y":12}],"type":"coastline"},{"arc":[{"x":113529,"y":97689},{"x":-34,"y":6},{"x":4,"y":-18},{"x":30,"y":12}],"type":"coastline"},{"arc":[{"x":113701,"y":98425},{"x":-33,"y":8},{"x":30,"y":-23},{"x":3,"y":15}],"type":"coastline"},{"arc":[{"x":114027,"y":100538},{"x":-245,"y":213},{"x":-113,"y":3},{"x":-84,"y":-33},{"x":-73,"y":4},{"x":-44,"y":31},{"x":-29,"y":-19},{"x":-159,"y":104},{"x":-54,"y":-58},{"x":-55,"y":29},{"x":-87,"y":3},{"x":-5,"y":27},{"x":-78,"y":2},{"x":-31,"y":44},{"x":-71,"y":-54},{"x":-62,"y":2},{"x":14,"y":-55},{"x":-16,"y":24},{"x":-62,"y":-19},{"x":-101,"y":29},{"x":-40,"y":-11},{"x":-50,"y":-55},{"x":18,"y":-25},{"x":-26,"y":-42},{"x":3,"y":-113},{"x":-30,"y":-14},{"x":-9,"y":-71},{"x":-96,"y":41},{"x":-84,"y":-9}],"type":"admin"},{"arc":[{"x":112358,"y":100516},{"x":34,"y":-110},{"x":-104,"y":-312},{"x":-59,"y":-67},{"x":19,"y":-19},{"x":-49,"y":-79},{"x":47,"y":-40},{"x":71,"y":46},{"x":39,"y":-93},{"x":39,"y":1},{"x":39,"y":-43},{"x":92,"y":-3},{"x":49,"y":83},{"x":-15,"y":15},{"x":32,"y":18},{"x":-13,"y":36},{"x":19,"y":21},{"x":23,"y":-16},{"x":-3,"y":22},{"x":24,"y":-10},{"x":-33,"y":-32},{"x":7,"y":-94},{"x":-45,"y":-18},{"x":27,"y":-94},{"x":-39,"y":1},{"x":-1,"y":21},{"x":-31,"y":-39},{"x":105,"y":-46},{"x":-18,"y":-24},{"x":22,"y":-71},{"x":-20,"y":-18},{"x":-26,"y":18},{"x":50,"y":-64},{"x":-9,"y":-22},{"x":-36,"y":0},{"x":-3,"y":-42},{"x":45,"y":6},{"x":-27,"y":-42},{"x":-27,"y":30},{"x":-52,"y":-12},{"x":5,"y":46},{"x":-51,"y":46},{"x":10,"y":36},{"x":-33,"y":4},{"x":22,"y":34},{"x":-74,"y":16},{"x":4,"y":-65},{"x":53,"y":-64},{"x":-13,"y":-68},{"x":36,"y":-87},{"x":35,"y":10},{"x":26,"y":-57},{"x":68,"y":24},{"x":32,"y":-18},{"x":5,"y":-48},{"x":-36,"y":-7},{"x":-10,"y":-44},{"x":53,"y":-19},{"x":10,"y":-124},{"x":-34,"y":-53},{"x":-27,"y":0},{"x":23,"y":-1},{"x":-1,"y":-27},{"x":-70,"y":-1},{"x":27,"y":20},{"x":-49,"y":37},{"x":19,"y":62},{"x":-55,"y":14},{"x":-52,"y":97},{"x":-8,"y":-112},{"x":-171,"y":-198},{"x":-41,"y":28},{"x":-9,"y":54},{"x":22,"y":72},{"x":37,"y":23},{"x":15,"y":137},{"x":-70,"y":-4},{"x":-39,"y":-80},{"x":-27,"y":-2},{"x":-11,"y":32},{"x":-70,"y":-60},{"x":-10,"y":-67},{"x":37,"y":-110},{"x":-30,"y":-73},{"x":-67,"y":-13},{"x":48,"y":-12},{"x":36,"y":-46},{"x":21,"y":-137},{"x":49,"y":57},{"x":66,"y":-27},{"x":84,"y":29},{"x":25,"y":-49},{"x":143,"y":-26},{"x":37,"y":-104},{"x":61,"y":58},{"x":-50,"y":9},{"x":3,"y":63},{"x":38,"y":48},{"x":-54,"y":-2},{"x":4,"y":47},{"x":81,"y":28},{"x":-62,"y":77},{"x":46,"y":38},{"x":54,"y":-18},{"x":11,"y":59},{"x":94,"y":31},{"x":70,"y":-219},{"x":43,"y":13},{"x":37,"y":-20},{"x":23,"y":-115},{"x":45,"y":77},{"x":-21,"y":71},{"x":39,"y":33},{"x":74,"y":-31},{"x":4,"y":42},{"x":89,"y":92},{"x":-30,"y":25},{"x":4,"y":-41},{"x":-45,"y":-22},{"x":18,"y":50},{"x":-28,"y":2},{"x":12,"y":24},{"x":-34,"y":45},{"x":-3,"y":-56},{"x":-21,"y":4},{"x":-9,"y":-45},{"x":-29,"y":2},{"x":-26,"y":88},{"x":-12,"y":-64},{"x":-32,"y":33},{"x":-58,"y":-92},{"x":6,"y":80},{"x":-28,"y":51},{"x":47,"y":0},{"x":21,"y":61},{"x":-23,"y":40},{"x":-70,"y":13},{"x":51,"y":76},{"x":-45,"y":-3},{"x":-20,"y":46},{"x":75,"y":31},{"x":-112,"y":195},{"x":43,"y":42},{"x":42,"y":-28},{"x":18,"y":-66},{"x":125,"y":-74},{"x":-83,"y":-3},{"x":74,"y":-56},{"x":-45,"y":-16},{"x":27,"y":-19},{"x":-7,"y":-50},{"x":67,"y":8},{"x":-15,"y":-35},{"x":-10,"y":16},{"x":-20,"y":-13},{"x":20,"y":-36},{"x":13,"y":19},{"x":-9,"y":-60},{"x":10,"y":24},{"x":19,"y":-14},{"x":-18,"y":-38},{"x":53,"y":8},{"x":59,"y":-66},{"x":100,"y":-52},{"x":16,"y":30},{"x":61,"y":-12},{"x":67,"y":39},{"x":92,"y":-104},{"x":79,"y":-11},{"x":-43,"y":-47},{"x":-51,"y":7},{"x":1,"y":-67},{"x":167,"y":-3},{"x":73,"y":-31},{"x":148,"y":46},{"x":70,"y":-12},{"x":30,"y":-31},{"x":-40,"y":-30},{"x":17,"y":-30},{"x":-57,"y":-16},{"x":-16,"y":20},{"x":-2,"y":-46},{"x":-30,"y":-12},{"x":17,"y":-21},{"x":114,"y":17},{"x":-49,"y":-120},{"x":41,"y":-26},{"x":-12,"y":-62},{"x":-88,"y":-13},{"x":-31,"y":69},{"x":-47,"y":-35},{"x":61,"y":-25},{"x":22,"y":-73},{"x":67,"y":10},{"x":20,"y":-44},{"x":34,"y":-5},{"x":-3,"y":-70},{"x":-70,"y":-20},{"x":101,"y":-16},{"x":56,"y":-125},{"x":-32,"y":-12},{"x":13,"y":-51},{"x":-43,"y":-35},{"x":-78,"y":6},{"x":-34,"y":33},{"x":-48,"y":-24},{"x":-20,"y":38},{"x":-13,"y":-63},{"x":-45,"y":-21},{"x":-95,"y":71},{"x":-6,"y":-37},{"x":38,"y":-33},{"x":-31,"y":-44},{"x":-45,"y":-1},{"x":-46,"y":-45},{"x":-62,"y":21},{"x":-18,"y":-17},{"x":85,"y":-23},{"x":9,"y":-72},{"x":-30,"y":-35},{"x":58,"y":-49}],"type":"coastline"},{"arc":[{"x":119626,"y":110143},{"x":-8,"y":68},{"x":7,"y":-110},{"x":1,"y":42}],"type":"coastline"},{"arc":[{"x":121732,"y":109903},{"x":-200,"y":175},{"x":-70,"y":-10},{"x":-118,"y":57},{"x":-29,"y":-4},{"x":-34,"y":-110},{"x":-29,"y":-16},{"x":-163,"y":53},{"x":-73,"y":-14},{"x":-114,"y":97},{"x":-63,"y":6},{"x":-25,"y":65},{"x":-59,"y":20},{"x":30,"y":68},{"x":-28,"y":39},{"x":41,"y":56},{"x":-32,"y":13},{"x":17,"y":25},{"x":-32,"y":-6},{"x":-1,"y":-34},{"x":-100,"y":-17},{"x":-43,"y":180},{"x":-52,"y":-23},{"x":2,"y":-117},{"x":-64,"y":23},{"x":21,"y":71},{"x":-23,"y":43},{"x":-31,"y":0},{"x":-93,"y":-21},{"x":-52,"y":-71},{"x":-75,"y":3},{"x":-26,"y":-73},{"x":-53,"y":-33},{"x":-74,"y":4},{"x":-62,"y":-58},{"x":-146,"y":2}],"type":"area"},{"arc":[{"x":119879,"y":110296},{"x":-46,"y":-110},{"x":-31,"y":19},{"x":-92,"y":-88},{"x":31,"y":21},{"x":54,"y":-21},{"x":-3,"y":-28},{"x":-134,"y":-105},{"x":-11,"y":-73},{"x":36,"y":-17},{"x":62,"y":47},{"x":12,"y":-18},{"x":-37,"y":-21},{"x":43,"y":16},{"x":0,"y":10},{"x":20,"y":-11},{"x":-13,"y":47},{"x":52,"y":41},{"x":-13,"y":-19},{"x":36,"y":0},{"x":1,"y":-21},{"x":-20,"y":1},{"x":-10,"y":-49},{"x":210,"y":6},{"x":56,"y":15},{"x":13,"y":67},{"x":-3,"y":-39},{"x":20,"y":-8},{"x":13,"y":28},{"x":47,"y":-21},{"x":9,"y":-35},{"x":-17,"y":-57},{"x":-43,"y":-16},{"x":26,"y":-66},{"x":-31,"y":11},{"x":-20,"y":-19},{"x":-8,"y":84},{"x":-56,"y":16},{"x":-27,"y":-9},{"x":-28,"y":-88},{"x":-21,"y":6},{"x":-1,"y":-45},{"x":-44,"y":-20},{"x":-15,"y":49},{"x":-44,"y":-54},{"x":6,"y":20},{"x":-103,"y":62},{"x":-17,"y":60},{"x":-51,"y":-31},{"x":-62,"y":11},{"x":3,"y":17},{"x":-10,"y":-16},{"x":-6,"y":77},{"x":-6,"y":-27},{"x":-20,"y":12},{"x":34,"y":41},{"x":27,"y":106},{"x":-4,"y":53},{"x":-1,"y":-61},{"x":-34,"y":0},{"x":-34,"y":-25},{"x":-109,"y":-320},{"x":-144,"y":-309},{"x":-83,"y":-102},{"x":-6,"y":43},{"x":-73,"y":-215},{"x":-60,"y":-83}],"type":"coastline"},{"arc":[{"x":119099,"y":109035},{"x":219,"y":-190},{"x":150,"y":-11},{"x":121,"y":-160},{"x":169,"y":-83}],"type":"area"},{"arc":[{"x":119758,"y":108591},{"x":45,"y":53},{"x":10,"y":76},{"x":37,"y":41},{"x":53,"y":3},{"x":27,"y":48},{"x":114,"y":-20},{"x":49,"y":87},{"x":99,"y":-13},{"x":29,"y":41},{"x":100,"y":10},{"x":103,"y":67},{"x":135,"y":-121},{"x":-26,"y":-131},{"x":-51,"y":-37},{"x":108,"y":-135},{"x":-11,"y":-96},{"x":38,"y":-84},{"x":46,"y":-33},{"x":69,"y":2},{"x":83,"y":-126},{"x":144,"y":83},{"x":49,"y":70},{"x":125,"y":-65},{"x":-16,"y":-37},{"x":37,"y":-78},{"x":235,"y":-41},{"x":50,"y":53},{"x":99,"y":12},{"x":124,"y":124},{"x":56,"y":155},{"x":79,"y":110},{"x":14,"y":115}],"type":"admin"},{"arc":[{"x":121811,"y":108724},{"x":-134,"y":158},{"x":121,"y":90},{"x":-18,"y":335},{"x":49,"y":58},{"x":106,"y":47},{"x":-52,"y":203},{"x":-170,"y":57},{"x":-20,"y":79},{"x":44,"y":65},{"x":-5,"y":87}],"type":"admin"},{"arc":[{"x":118899,"y":116849},{"x":-70,"y":-10},{"x":-416,"y":-218},{"x":-94,"y":-33},{"x":-13,"y":27},{"x":4,"y":-18},{"x":-38,"y":6},{"x":39,"y":-27},{"x":-78,"y":51},{"x":-92,"y":-5},{"x":-172,"y":-80},{"x":-92,"y":-4},{"x":-73,"y":-36},{"x":-32,"y":17},{"x":-37,"y":-33},{"x":-74,"y":-15},{"x":-210,"y":-1},{"x":16,"y":-9},{"x":-43,"y":-12},{"x":-9,"y":25},{"x":8,"y":-26},{"x":-75,"y":-32},{"x":-149,"y":-5},{"x":-83,"y":-43},{"x":-106,"y":-10},{"x":19,"y":-13},{"x":-398,"y":-3},{"x":15,"y":-12},{"x":-46,"y":-12},{"x":20,"y":30},{"x":-64,"y":-38},{"x":-98,"y":-16},{"x":-62,"y":-49},{"x":25,"y":-44},{"x":176,"y":-63},{"x":28,"y":-41},{"x":18,"y":22},{"x":-44,"y":30},{"x":88,"y":-28},{"x":-6,"y":-21},{"x":-42,"y":2},{"x":60,"y":-17},{"x":-6,"y":-20},{"x":-41,"y":23},{"x":-21,"y":-16},{"x":75,"y":-17},{"x":11,"y":22},{"x":98,"y":-78},{"x":-4,"y":17},{"x":58,"y":-29},{"x":59,"y":-103},{"x":-46,"y":119},{"x":43,"y":-70},{"x":0,"y":30},{"x":11,"y":-14},{"x":-11,"y":-39},{"x":53,"y":-5},{"x":10,"y":-44},{"x":25,"y":-17},{"x":26,"y":14},{"x":23,"y":-31},{"x":27,"y":-158},{"x":-50,"y":-36},{"x":-8,"y":-57},{"x":-12,"y":15},{"x":42,"y":-73},{"x":-11,"y":38},{"x":18,"y":-29},{"x":103,"y":25},{"x":209,"y":-41},{"x":44,"y":-42},{"x":-11,"y":26},{"x":47,"y":-25},{"x":113,"y":-221},{"x":317,"y":-192},{"x":103,"y":-128},{"x":20,"y":-88},{"x":-31,"y":-27},{"x":111,"y":-48}],"type":"coastline"},{"arc":[{"x":118093,"y":114766},{"x":63,"y":55},{"x":33,"y":87},{"x":72,"y":52},{"x":54,"y":139},{"x":52,"y":27},{"x":35,"y":-10},{"x":28,"y":33},{"x":37,"y":-21},{"x":59,"y":52},{"x":50,"y":135},{"x":138,"y":4},{"x":68,"y":88},{"x":86,"y":-8},{"x":43,"y":127},{"x":47,"y":11}],"type":"admin"},{"arc":[{"x":118958,"y":115537},{"x":139,"y":45},{"x":22,"y":61},{"x":191,"y":136},{"x":-80,"y":129},{"x":117,"y":119},{"x":22,"y":140},{"x":66,"y":65},{"x":40,"y":202}],"type":"admin"},{"arc":[{"x":119475,"y":116434},{"x":-108,"y":122},{"x":-92,"y":20},{"x":-25,"y":41},{"x":-83,"y":43},{"x":-31,"y":102},{"x":-74,"y":33},{"x":-62,"y":-25},{"x":-101,"y":79}],"type":"admin"},{"arc":[{"x":122048,"y":115017},{"x":-161,"y":-114},{"x":-64,"y":46},{"x":-27,"y":135},{"x":-39,"y":46},{"x":-68,"y":11},{"x":-136,"y":-157},{"x":-68,"y":10},{"x":-28,"y":-53},{"x":16,"y":-70},{"x":-93,"y":-94},{"x":28,"y":-38},{"x":-22,"y":-26},{"x":-209,"y":-74},{"x":-20,"y":-26},{"x":-112,"y":-18},{"x":-48,"y":-44},{"x":-32,"y":16},{"x":-35,"y":85},{"x":-70,"y":-30},{"x":-79,"y":15},{"x":-39,"y":-22},{"x":18,"y":-50},{"x":-29,"y":-43},{"x":-77,"y":1},{"x":-56,"y":-35},{"x":-105,"y":56},{"x":24,"y":88},{"x":-54,"y":53},{"x":-136,"y":47},{"x":-100,"y":-50}],"type":"admin"},{"arc":[{"x":120227,"y":114682},{"x":-105,"y":-85},{"x":-27,"y":-56},{"x":-108,"y":-41},{"x":-44,"y":20},{"x":1,"y":-44},{"x":-87,"y":-40},{"x":-9,"y":-49},{"x":-68,"y":-66},{"x":-92,"y":-32},{"x":-78,"y":25},{"x":-77,"y":-67},{"x":-70,"y":4},{"x":-50,"y":-57},{"x":-68,"y":33},{"x":-87,"y":-54},{"x":-19,"y":-84},{"x":-99,"y":-67},{"x":-128,"y":-23},{"x":-62,"y":-39}],"type":"admin"},{"arc":[{"x":118950,"y":113960},{"x":57,"y":-67},{"x":159,"y":-81},{"x":84,"y":-3},{"x":15,"y":32},{"x":-10,"y":-22},{"x":64,"y":21},{"x":169,"y":-128},{"x":115,"y":-329},{"x":11,"y":-144},{"x":11,"y":64},{"x":22,"y":-28},{"x":12,"y":-78},{"x":-21,"y":-4},{"x":-12,"y":49},{"x":-4,"y":-16},{"x":16,"y":-48},{"x":27,"y":5},{"x":46,"y":-388},{"x":22,"y":-53},{"x":60,"y":-32},{"x":32,"y":-154}],"type":"coastline"},{"arc":[{"x":119825,"y":112556},{"x":90,"y":19},{"x":38,"y":33},{"x":-13,"y":41},{"x":78,"y":81},{"x":-109,"y":-4},{"x":-11,"y":20},{"x":37,"y":16},{"x":83,"y":137},{"x":74,"y":34},{"x":102,"y":-5},{"x":172,"y":35},{"x":76,"y":96},{"x":89,"y":8},{"x":21,"y":27},{"x":147,"y":-23},{"x":114,"y":-54}],"type":"admin"},{"arc":[{"x":120813,"y":113017},{"x":34,"y":-3},{"x":61,"y":-81},{"x":37,"y":4},{"x":35,"y":47},{"x":-4,"y":67},{"x":75,"y":83},{"x":51,"y":1},{"x":50,"y":-37},{"x":99,"y":77},{"x":168,"y":-36},{"x":29,"y":46},{"x":119,"y":58}],"type":"area"},{"arc":[{"x":121567,"y":113243},{"x":16,"y":77},{"x":50,"y":47},{"x":-166,"y":50},{"x":46,"y":60},{"x":-60,"y":105},{"x":93,"y":115},{"x":-7,"y":45},{"x":64,"y":100},{"x":65,"y":14},{"x":65,"y":149},{"x":87,"y":31},{"x":11,"y":52},{"x":37,"y":25},{"x":31,"y":-27},{"x":38,"y":59},{"x":70,"y":26},{"x":73,"y":148},{"x":75,"y":43},{"x":114,"y":14},{"x":51,"y":60},{"x":18,"y":135},{"x":-20,"y":46},{"x":82,"y":81},{"x":-89,"y":88},{"x":44,"y":174},{"x":59,"y":77},{"x":-6,"y":52}],"type":"area"},{"arc":[{"x":122185,"y":110247},{"x":-137,"y":47},{"x":-30,"y":58},{"x":-137,"y":83},{"x":-208,"y":50},{"x":43,"y":152},{"x":-14,"y":52},{"x":-103,"y":58},{"x":-9,"y":62},{"x":55,"y":140},{"x":-15,"y":27},{"x":-58,"y":-32},{"x":-85,"y":27},{"x":-17,"y":-19},{"x":-140,"y":18},{"x":-63,"y":-38},{"x":-132,"y":23},{"x":-107,"y":-30},{"x":-27,"y":59},{"x":-73,"y":20},{"x":1,"y":-36},{"x":-4,"y":37},{"x":-70,"y":18},{"x":-25,"y":-19},{"x":-27,"y":25},{"x":-47,"y":-15},{"x":-13,"y":61},{"x":-62,"y":-19},{"x":6,"y":54},{"x":47,"y":36},{"x":-95,"y":8}],"type":"area"},{"arc":[{"x":120639,"y":111154},{"x":-168,"y":-50},{"x":-11,"y":22},{"x":-93,"y":-14},{"x":-94,"y":43},{"x":-81,"y":7},{"x":-42,"y":1},{"x":-1,"y":-54},{"x":-87,"y":19}],"type":"area"},{"arc":[{"x":120062,"y":111128},{"x":-183,"y":-832}],"type":"coastline"},{"arc":[{"x":121732,"y":109903},{"x":212,"y":25},{"x":123,"y":-62},{"x":87,"y":188},{"x":79,"y":55}],"type":"admin"},{"arc":[{"x":122233,"y":110109},{"x":4,"y":74},{"x":-52,"y":64}],"type":"admin"},{"arc":[{"x":118614,"y":108657},{"x":109,"y":-88}],"type":"area"},{"arc":[{"x":118723,"y":108569},{"x":62,"y":4},{"x":22,"y":89},{"x":22,"y":-33},{"x":46,"y":18},{"x":-106,"y":124},{"x":19,"y":39},{"x":-35,"y":53},{"x":-40,"y":-50},{"x":-95,"y":-6},{"x":18,"y":-115},{"x":-22,"y":-35}],"type":"coastline"},{"arc":[{"x":118976,"y":108716},{"x":-4,"y":19},{"x":-13,"y":-58},{"x":-37,"y":-37},{"x":-24,"y":16},{"x":-50,"y":86},{"x":50,"y":-86},{"x":26,"y":-17},{"x":-21,"y":0},{"x":23,"y":0},{"x":35,"y":16},{"x":15,"y":61}],"type":"coastline"},{"arc":[{"x":119099,"y":109035},{"x":-77,"y":-163},{"x":-74,"y":-70},{"x":-35,"y":1},{"x":46,"y":-4},{"x":15,"y":-26},{"x":3,"y":21},{"x":6,"y":-57},{"x":39,"y":2},{"x":-2,"y":-38},{"x":-26,"y":23},{"x":6,"y":-75},{"x":-63,"y":-39},{"x":-63,"y":-2},{"x":-37,"y":-61}],"type":"coastline"},{"arc":[{"x":118837,"y":108547},{"x":64,"y":-33},{"x":78,"y":29},{"x":75,"y":-31},{"x":58,"y":26},{"x":59,"y":-19},{"x":3,"y":-102},{"x":53,"y":-119},{"x":-33,"y":-75},{"x":-75,"y":-19},{"x":-39,"y":-65},{"x":0,"y":-77},{"x":-135,"y":-97},{"x":3,"y":-52},{"x":68,"y":-39},{"x":22,"y":-74},{"x":-33,"y":-55},{"x":-66,"y":-3},{"x":-74,"y":-80},{"x":10,"y":-176},{"x":-87,"y":-57},{"x":-23,"y":-64},{"x":51,"y":-79},{"x":46,"y":16},{"x":161,"y":-60},{"x":91,"y":-5}],"type":"area"},{"arc":[{"x":119114,"y":107237},{"x":15,"y":24},{"x":120,"y":2},{"x":43,"y":74},{"x":-7,"y":38},{"x":117,"y":86},{"x":101,"y":-47},{"x":44,"y":7},{"x":105,"y":130}],"type":"admin"},{"arc":[{"x":119652,"y":107551},{"x":-37,"y":12},{"x":-11,"y":72},{"x":165,"y":376},{"x":-16,"y":133},{"x":26,"y":27},{"x":53,"y":-39},{"x":39,"y":18}],"type":"admin"},{"arc":[{"x":119871,"y":108150},{"x":50,"y":373},{"x":-163,"y":68}],"type":"admin"},{"arc":[{"x":117767,"y":107385},{"x":-32,"y":47},{"x":-32,"y":-17},{"x":64,"y":-30}],"type":"coastline"},{"arc":[{"x":117843,"y":107264},{"x":-32,"y":30},{"x":17,"y":-70},{"x":15,"y":40}],"type":"coastline"},{"arc":[{"x":117913,"y":107197},{"x":-25,"y":35},{"x":-18,"y":-34},{"x":-25,"y":19},{"x":-17,"y":-18},{"x":15,"y":-37},{"x":35,"y":-8},{"x":35,"y":43}],"type":"coastline"},{"arc":[{"x":118053,"y":107093},{"x":-1,"y":-26},{"x":2,"y":54},{"x":-1,"y":-28}],"type":"coastline"},{"arc":[{"x":118837,"y":108547},{"x":31,"y":-89},{"x":122,"y":13},{"x":1,"y":-65},{"x":-73,"y":-9},{"x":-12,"y":-64},{"x":62,"y":-61},{"x":-60,"y":-3},{"x":32,"y":-75},{"x":-37,"y":-26},{"x":-4,"y":52},{"x":-53,"y":3},{"x":24,"y":20},{"x":-8,"y":52},{"x":-91,"y":-26},{"x":19,"y":-46},{"x":-33,"y":-41},{"x":-22,"y":12},{"x":-34,"y":-85},{"x":20,"y":-35},{"x":47,"y":10},{"x":-41,"y":-113},{"x":20,"y":-84},{"x":-34,"y":-13},{"x":9,"y":-34},{"x":-90,"y":-34},{"x":-35,"y":-105},{"x":-30,"y":0},{"x":-20,"y":28},{"x":19,"y":118},{"x":-21,"y":-20},{"x":-35,"y":22},{"x":-31,"y":-64},{"x":-29,"y":88},{"x":65,"y":35},{"x":26,"y":-23},{"x":43,"y":26},{"x":42,"y":-23},{"x":54,"y":25},{"x":1,"y":25},{"x":-43,"y":1},{"x":9,"y":49},{"x":-45,"y":-9},{"x":-7,"y":32},{"x":-38,"y":-23},{"x":-21,"y":20},{"x":25,"y":11},{"x":-59,"y":30},{"x":41,"y":17},{"x":91,"y":-15},{"x":11,"y":48},{"x":-33,"y":-4},{"x":-30,"y":45},{"x":53,"y":-6},{"x":-5,"y":21},{"x":38,"y":-5},{"x":12,"y":28},{"x":-135,"y":67},{"x":103,"y":-13},{"x":72,"y":31},{"x":-55,"y":17},{"x":8,"y":45},{"x":38,"y":-41},{"x":25,"y":52},{"x":63,"y":-10},{"x":-3,"y":30},{"x":70,"y":35},{"x":-36,"y":42},{"x":-24,"y":-11},{"x":-13,"y":26},{"x":-57,"y":11},{"x":12,"y":53},{"x":-44,"y":42},{"x":64,"y":8},{"x":-45,"y":7}],"type":"coastline"},{"arc":[{"x":118614,"y":108657},{"x":-91,"y":-27},{"x":37,"y":-46},{"x":-6,"y":-74},{"x":-92,"y":0},{"x":65,"y":-38},{"x":-6,"y":-50},{"x":-65,"y":1},{"x":44,"y":-27},{"x":4,"y":-56},{"x":-23,"y":-15},{"x":9,"y":21},{"x":-48,"y":-4},{"x":-28,"y":-53},{"x":-74,"y":24},{"x":-7,"y":-47},{"x":91,"y":-39},{"x":-43,"y":-68},{"x":61,"y":-46},{"x":-59,"y":-145},{"x":-109,"y":24},{"x":2,"y":-31},{"x":117,"y":-43},{"x":-19,"y":-267},{"x":-61,"y":-57},{"x":-44,"y":24},{"x":-22,"y":-105},{"x":-47,"y":-30},{"x":-110,"y":15},{"x":-29,"y":25},{"x":-50,"y":-8},{"x":-6,"y":-46},{"x":-42,"y":-13},{"x":-74,"y":48},{"x":25,"y":-44},{"x":-31,"y":-56},{"x":-88,"y":-29},{"x":23,"y":-70},{"x":33,"y":57},{"x":92,"y":-65},{"x":2,"y":40},{"x":-51,"y":45},{"x":28,"y":43},{"x":65,"y":-47},{"x":-9,"y":47},{"x":85,"y":-30},{"x":8,"y":36},{"x":31,"y":2},{"x":20,"y":-60},{"x":18,"y":27},{"x":10,"y":-35},{"x":-38,"y":-40},{"x":3,"y":20},{"x":-49,"y":-35},{"x":-6,"y":15},{"x":-1,"y":-45},{"x":35,"y":7},{"x":23,"y":-44},{"x":-27,"y":-42},{"x":-41,"y":18},{"x":-13,"y":-46},{"x":67,"y":-2},{"x":43,"y":-97},{"x":110,"y":154},{"x":143,"y":-109},{"x":42,"y":7},{"x":-14,"y":-47},{"x":-44,"y":-6},{"x":15,"y":-16},{"x":-35,"y":29},{"x":8,"y":-22},{"x":-92,"y":70},{"x":-43,"y":1},{"x":15,"y":-18},{"x":-27,"y":8},{"x":-33,"y":-43},{"x":-14,"y":-103},{"x":-3,"y":28},{"x":-27,"y":-44},{"x":-45,"y":-6},{"x":16,"y":16},{"x":-47,"y":14},{"x":-19,"y":-77},{"x":-64,"y":-12},{"x":20,"y":-49},{"x":-54,"y":-1},{"x":31,"y":-38},{"x":-51,"y":-55},{"x":-57,"y":11},{"x":-24,"y":48},{"x":-77,"y":-29},{"x":-42,"y":28},{"x":-31,"y":-45},{"x":-58,"y":46},{"x":-31,"y":-9}],"type":"coastline"},{"arc":[{"x":117614,"y":106805},{"x":220,"y":-207},{"x":85,"y":-28},{"x":58,"y":-102},{"x":127,"y":-37},{"x":-10,"y":-139},{"x":47,"y":-58},{"x":-55,"y":-127},{"x":-18,"y":-199},{"x":33,"y":-13},{"x":53,"y":35},{"x":195,"y":-38}],"type":"admin"},{"arc":[{"x":118349,"y":105892},{"x":25,"y":77},{"x":-53,"y":133},{"x":80,"y":75},{"x":23,"y":67},{"x":73,"y":-31},{"x":238,"y":23},{"x":18,"y":89},{"x":-23,"y":151},{"x":47,"y":85},{"x":-10,"y":86},{"x":123,"y":100}],"type":"admin"},{"arc":[{"x":118890,"y":106747},{"x":-9,"y":174},{"x":233,"y":316}],"type":"admin"},{"arc":[{"x":110001,"y":99081},{"x":-14,"y":16},{"x":-3,"y":-25},{"x":17,"y":9}],"type":"coastline"},{"arc":[{"x":110059,"y":98803},{"x":-48,"y":49},{"x":-50,"y":-44},{"x":-18,"y":-73},{"x":116,"y":68}],"type":"coastline"},{"arc":[{"x":110206,"y":99380},{"x":-33,"y":47},{"x":-67,"y":23},{"x":16,"y":61},{"x":-74,"y":-1},{"x":-24,"y":93},{"x":-58,"y":41},{"x":-114,"y":-47},{"x":-134,"y":66},{"x":-41,"y":-13},{"x":-75,"y":-225},{"x":-62,"y":-71},{"x":53,"y":-28},{"x":61,"y":49},{"x":7,"y":44},{"x":38,"y":-8},{"x":-27,"y":13},{"x":46,"y":6},{"x":166,"y":-165},{"x":20,"y":8},{"x":-4,"y":70},{"x":70,"y":10},{"x":31,"y":53},{"x":6,"y":-35},{"x":41,"y":-8},{"x":49,"y":33},{"x":59,"y":-37},{"x":50,"y":21}],"type":"coastline"},{"arc":[{"x":110870,"y":98778},{"x":-30,"y":129},{"x":-49,"y":-59},{"x":-51,"y":26},{"x":-5,"y":-172},{"x":37,"y":-1},{"x":12,"y":36},{"x":86,"y":41}],"type":"coastline"},{"arc":[{"x":112276,"y":100933},{"x":-23,"y":45},{"x":12,"y":39},{"x":-37,"y":11},{"x":-60,"y":-93},{"x":51,"y":-84},{"x":54,"y":-1},{"x":3,"y":83}],"type":"coastline"},{"arc":[{"x":112275,"y":100537},{"x":-24,"y":32},{"x":-24,"y":-16},{"x":-3,"y":-62},{"x":51,"y":46}],"type":"coastline"},{"arc":[{"x":112306,"y":100594},{"x":-49,"y":35},{"x":6,"y":-36},{"x":43,"y":1}],"type":"coastline"},{"arc":[{"x":112548,"y":102318},{"x":-48,"y":-54},{"x":-58,"y":10},{"x":-159,"y":-59},{"x":2,"y":-30},{"x":23,"y":27},{"x":24,"y":-30},{"x":-27,"y":-51},{"x":-36,"y":3},{"x":15,"y":-47},{"x":-28,"y":9},{"x":38,"y":-57},{"x":-124,"y":-31},{"x":-75,"y":59},{"x":-61,"y":-6},{"x":-9,"y":-85},{"x":38,"y":-39},{"x":19,"y":-103},{"x":47,"y":-4},{"x":9,"y":-28},{"x":-32,"y":-52},{"x":-71,"y":-19},{"x":-8,"y":-60},{"x":-71,"y":-13},{"x":-206,"y":133},{"x":-13,"y":41},{"x":-76,"y":-33},{"x":-34,"y":44}],"type":"admin"},{"arc":[{"x":111627,"y":101843},{"x":-155,"y":-16},{"x":-58,"y":-34},{"x":-144,"y":61},{"x":-55,"y":-191},{"x":-58,"y":-37}],"type":"area"},{"arc":[{"x":111157,"y":101626},{"x":45,"y":-96},{"x":69,"y":-60},{"x":-6,"y":-96},{"x":76,"y":25},{"x":36,"y":-23},{"x":52,"y":17},{"x":29,"y":-22},{"x":-16,"y":-76},{"x":109,"y":-20},{"x":129,"y":-81},{"x":-81,"y":-14},{"x":23,"y":-39},{"x":-53,"y":-62},{"x":112,"y":-65},{"x":-16,"y":-29},{"x":33,"y":-40},{"x":142,"y":80},{"x":49,"y":0}],"type":"admin"},{"arc":[{"x":111889,"y":101025},{"x":4,"y":27},{"x":-83,"y":22},{"x":-75,"y":-35},{"x":82,"y":85},{"x":-32,"y":17},{"x":-30,"y":-24},{"x":-27,"y":-3},{"x":11,"y":45},{"x":32,"y":-27},{"x":-32,"y":30},{"x":16,"y":31},{"x":31,"y":-22},{"x":19,"y":36},{"x":53,"y":-97},{"x":21,"y":1},{"x":-16,"y":31},{"x":29,"y":-1},{"x":1,"y":-48},{"x":97,"y":-77},{"x":19,"y":18},{"x":-58,"y":65},{"x":4,"y":47},{"x":13,"y":40},{"x":57,"y":17},{"x":49,"y":-24},{"x":-32,"y":-1},{"x":-3,"y":-86},{"x":38,"y":29},{"x":79,"y":-10},{"x":-8,"y":41},{"x":27,"y":-5},{"x":-10,"y":-20},{"x":44,"y":10},{"x":27,"y":-20},{"x":-12,"y":-26},{"x":29,"y":15},{"x":89,"y":-18},{"x":26,"y":-27},{"x":-48,"y":-9},{"x":48,"y":8},{"x":-33,"y":-57},{"x":-60,"y":-1},{"x":-12,"y":-28},{"x":9,"y":-17},{"x":30,"y":10},{"x":-2,"y":-52},{"x":100,"y":20},{"x":-38,"y":-81},{"x":-59,"y":32},{"x":-15,"y":-56},{"x":43,"y":-23},{"x":-39,"y":-8},{"x":20,"y":-37},{"x":56,"y":-21},{"x":-75,"y":16},{"x":-2,"y":-50},{"x":44,"y":-25},{"x":-59,"y":2},{"x":3,"y":-51},{"x":72,"y":-13},{"x":-34,"y":-18},{"x":41,"y":-86}],"type":"coastline"},{"arc":[{"x":114686,"y":100596},{"x":-166,"y":232},{"x":-14,"y":89},{"x":-77,"y":100},{"x":-18,"y":121},{"x":-156,"y":60},{"x":-4,"y":87},{"x":-54,"y":55},{"x":-3,"y":91},{"x":-62,"y":82},{"x":-179,"y":-67},{"x":-31,"y":-36},{"x":-78,"y":52},{"x":-76,"y":120},{"x":49,"y":22},{"x":44,"y":80},{"x":-11,"y":113},{"x":-61,"y":64},{"x":59,"y":72},{"x":7,"y":59},{"x":-107,"y":93},{"x":-77,"y":-13},{"x":-43,"y":19},{"x":-124,"y":145},{"x":-11,"y":90},{"x":-40,"y":0},{"x":-1,"y":-73},{"x":-39,"y":1},{"x":-63,"y":-65},{"x":-68,"y":48},{"x":-167,"y":-6},{"x":-102,"y":35},{"x":-195,"y":-10},{"x":-9,"y":-46},{"x":-85,"y":69},{"x":-176,"y":39}],"type":"area"},{"arc":[{"x":112190,"y":104169},{"x":-144,"y":-31},{"x":-45,"y":24},{"x":-19,"y":-21},{"x":-181,"y":33},{"x":-20,"y":-77},{"x":-78,"y":-21},{"x":-64,"y":-61},{"x":-55,"y":26},{"x":-20,"y":-40},{"x":71,"y":-56},{"x":-47,"y":-49},{"x":4,"y":-224},{"x":-44,"y":-18},{"x":7,"y":23},{"x":-41,"y":-47},{"x":33,"y":-1},{"x":-14,"y":-60},{"x":-52,"y":-14},{"x":-71,"y":81},{"x":-70,"y":-50},{"x":-60,"y":51},{"x":-53,"y":-39},{"x":-80,"y":76},{"x":-38,"y":-21},{"x":-14,"y":-75},{"x":-61,"y":-14},{"x":-96,"y":16},{"x":-12,"y":27},{"x":-94,"y":42},{"x":6,"y":46},{"x":-76,"y":26},{"x":24,"y":6},{"x":-28,"y":8},{"x":-8,"y":87},{"x":-56,"y":46},{"x":-39,"y":182},{"x":-4,"y":-20},{"x":-28,"y":16},{"x":8,"y":-19},{"x":-31,"y":25},{"x":36,"y":13},{"x":-25,"y":40},{"x":-63,"y":-8},{"x":-106,"y":70},{"x":-80,"y":16},{"x":-75,"y":80},{"x":-85,"y":-39},{"x":-134,"y":56},{"x":-30,"y":-15},{"x":-193,"y":46},{"x":-40,"y":-26},{"x":5,"y":-122},{"x":-33,"y":-10},{"x":4,"y":-47},{"x":26,"y":8},{"x":6,"y":-20},{"x":-18,"y":-13},{"x":6,"y":-11},{"x":0,"y":16},{"x":8,"y":-15},{"x":18,"y":-7},{"x":-3,"y":-17},{"x":18,"y":14},{"x":3,"y":-27},{"x":59,"y":-23},{"x":-28,"y":-46},{"x":57,"y":-23},{"x":-43,"y":-32},{"x":23,"y":-9},{"x":-25,"y":-36},{"x":31,"y":-19},{"x":-17,"y":-36},{"x":29,"y":-11},{"x":-31,"y":-15},{"x":9,"y":-21},{"x":-36,"y":-6},{"x":7,"y":-34},{"x":108,"y":-4},{"x":122,"y":63},{"x":55,"y":-31},{"x":-16,"y":-74},{"x":93,"y":28},{"x":-18,"y":-98},{"x":79,"y":-24},{"x":68,"y":52},{"x":47,"y":3},{"x":26,"y":91},{"x":50,"y":35},{"x":-40,"y":-46},{"x":24,"y":-68},{"x":32,"y":24},{"x":-3,"y":-55},{"x":-117,"y":-7},{"x":15,"y":-32},{"x":-76,"y":-68},{"x":50,"y":-1},{"x":5,"y":-25},{"x":85,"y":-35},{"x":45,"y":16},{"x":-17,"y":52},{"x":25,"y":16},{"x":2,"y":-55},{"x":38,"y":13},{"x":41,"y":-52},{"x":4,"y":-38},{"x":-32,"y":-22},{"x":-74,"y":22},{"x":33,"y":-48},{"x":28,"y":0},{"x":-21,"y":-6},{"x":13,"y":-60},{"x":-56,"y":-38},{"x":83,"y":5},{"x":27,"y":-44},{"x":2,"y":-190},{"x":51,"y":-89},{"x":-42,"y":-59},{"x":24,"y":-43},{"x":-39,"y":-23},{"x":12,"y":-23},{"x":-55,"y":55},{"x":-103,"y":-45},{"x":-65,"y":32},{"x":-54,"y":-111},{"x":67,"y":7},{"x":6,"y":-40},{"x":37,"y":18},{"x":0,"y":32},{"x":18,"y":-21},{"x":9,"y":34},{"x":117,"y":3},{"x":28,"y":-48},{"x":-22,"y":10},{"x":-15,"y":-22},{"x":20,"y":-26},{"x":36,"y":14},{"x":15,"y":-29},{"x":-60,"y":-16},{"x":10,"y":-81},{"x":-108,"y":-66},{"x":39,"y":-20},{"x":-20,"y":-14},{"x":20,"y":14},{"x":1,"y":-47},{"x":-58,"y":-26},{"x":-18,"y":-37},{"x":-30,"y":30},{"x":-90,"y":-33},{"x":-6,"y":-64},{"x":-52,"y":12},{"x":5,"y":-134},{"x":-105,"y":4},{"x":-6,"y":-118},{"x":-76,"y":-17},{"x":29,"y":-46},{"x":-16,"y":-71},{"x":115,"y":-49}],"type":"coastline"},{"arc":[{"x":110229,"y":101869},{"x":145,"y":-19},{"x":48,"y":20},{"x":115,"y":-40},{"x":92,"y":-113},{"x":19,"y":24},{"x":63,"y":-8},{"x":76,"y":-125},{"x":13,"y":29},{"x":188,"y":66},{"x":81,"y":-70},{"x":88,"y":-7}],"type":"admin"},{"arc":[{"x":111627,"y":101843},{"x":121,"y":18},{"x":-30,"y":92},{"x":39,"y":4},{"x":41,"y":46},{"x":-70,"y":106},{"x":-144,"y":81},{"x":14,"y":94},{"x":-45,"y":41},{"x":18,"y":45},{"x":-49,"y":104},{"x":97,"y":68},{"x":-20,"y":52},{"x":41,"y":60},{"x":-21,"y":72},{"x":80,"y":83},{"x":-27,"y":135},{"x":35,"y":18},{"x":19,"y":73},{"x":68,"y":37},{"x":-43,"y":112},{"x":183,"y":0},{"x":151,"y":-108},{"x":49,"y":28},{"x":26,"y":73},{"x":94,"y":-41},{"x":96,"y":90},{"x":135,"y":3}],"type":"admin"},{"arc":[{"x":112485,"y":103229},{"x":25,"y":73},{"x":-18,"y":46},{"x":-103,"y":25},{"x":-73,"y":53},{"x":6,"y":30},{"x":-140,"y":59},{"x":36,"y":32},{"x":-61,"y":50},{"x":2,"y":98},{"x":75,"y":-3},{"x":21,"y":28},{"x":28,"y":170},{"x":-30,"y":84},{"x":-63,"y":34},{"x":0,"y":161}],"type":"area"},{"arc":[{"x":114857,"y":104608},{"x":-152,"y":-79},{"x":-7,"y":-140},{"x":48,"y":-85},{"x":-45,"y":-161},{"x":-141,"y":-98},{"x":-6,"y":-84},{"x":-133,"y":-59},{"x":-26,"y":-121},{"x":-133,"y":27},{"x":-54,"y":-46},{"x":-57,"y":7},{"x":-131,"y":-64},{"x":-42,"y":16},{"x":-80,"y":-40},{"x":-40,"y":12},{"x":-41,"y":-19},{"x":-83,"y":38},{"x":-46,"y":-5},{"x":-33,"y":-40},{"x":-78,"y":-29},{"x":-25,"y":-44},{"x":-37,"y":-4},{"x":-25,"y":44},{"x":-73,"y":-2},{"x":-63,"y":50},{"x":-8,"y":79},{"x":-46,"y":65},{"x":-136,"y":45},{"x":-40,"y":-70},{"x":-21,"y":5},{"x":13,"y":28},{"x":-45,"y":57},{"x":18,"y":18},{"x":-79,"y":78},{"x":39,"y":32},{"x":6,"y":51}],"type":"admin"},{"arc":[{"x":113055,"y":104070},{"x":-75,"y":65},{"x":-17,"y":-51},{"x":-48,"y":-20},{"x":-47,"y":14},{"x":-65,"y":-57},{"x":-117,"y":-13},{"x":-41,"y":17},{"x":-20,"y":51},{"x":-40,"y":6},{"x":-9,"y":-34},{"x":-73,"y":-20},{"x":-6,"y":19},{"x":-14,"y":-37},{"x":-43,"y":13},{"x":-14,"y":63},{"x":-24,"y":-37},{"x":-37,"y":16},{"x":-27,"y":-15},{"x":-27,"y":51},{"x":-121,"y":68}],"type":"coastline"},{"arc":[{"x":112485,"y":103229},{"x":-3,"y":-56},{"x":43,"y":-61},{"x":40,"y":-11},{"x":-12,"y":-48},{"x":56,"y":-88},{"x":-67,"y":-163},{"x":70,"y":-163},{"x":-89,"y":-128},{"x":27,"y":-51},{"x":-2,"y":-142}],"type":"admin"},{"arc":[{"x":116623,"y":101874},{"x":-190,"y":139},{"x":-145,"y":45},{"x":48,"y":183},{"x":-23,"y":52},{"x":-190,"y":-46},{"x":2,"y":-40},{"x":-28,"y":-11},{"x":-86,"y":-4},{"x":-91,"y":71},{"x":-62,"y":0},{"x":-124,"y":-59},{"x":-58,"y":151},{"x":9,"y":79},{"x":-76,"y":89},{"x":-35,"y":110},{"x":-29,"y":11},{"x":39,"y":74},{"x":-7,"y":94},{"x":-124,"y":35},{"x":-134,"y":-43},{"x":-14,"y":41},{"x":-56,"y":33},{"x":-14,"y":70},{"x":-106,"y":87},{"x":-1,"y":115},{"x":-66,"y":144},{"x":-17,"y":115},{"x":98,"y":51},{"x":49,"y":107},{"x":-33,"y":80},{"x":15,"y":47},{"x":88,"y":29},{"x":79,"y":72},{"x":-46,"y":124},{"x":36,"y":97},{"x":-54,"y":87},{"x":-62,"y":-22},{"x":-54,"y":40},{"x":-8,"y":74},{"x":48,"y":56},{"x":3,"y":58},{"x":-52,"y":32},{"x":-20,"y":63},{"x":-67,"y":35},{"x":-73,"y":227},{"x":-120,"y":-31},{"x":-15,"y":-27}],"type":"admin"},{"arc":[{"x":120813,"y":113017},{"x":-110,"y":-146},{"x":-101,"y":-74},{"x":86,"y":-143},{"x":-42,"y":-33},{"x":-3,"y":-60},{"x":-69,"y":-34},{"x":-91,"y":47},{"x":-40,"y":-44},{"x":-76,"y":-22},{"x":-5,"y":-76},{"x":-93,"y":-55},{"x":-15,"y":-94},{"x":-115,"y":-79},{"x":-51,"y":-3},{"x":-26,"y":-62},{"x":-70,"y":10},{"x":-161,"y":-110}],"type":"admin"},{"arc":[{"x":119831,"y":112039},{"x":61,"y":-167},{"x":51,"y":12},{"x":42,"y":-52},{"x":-20,"y":26},{"x":34,"y":20},{"x":-24,"y":29},{"x":38,"y":-21},{"x":-29,"y":-38},{"x":43,"y":48},{"x":71,"y":-101},{"x":23,"y":-158},{"x":-27,"y":-83},{"x":26,"y":8},{"x":14,"y":-34},{"x":-35,"y":9},{"x":1,"y":-190},{"x":-12,"y":-76},{"x":-33,"y":-26},{"x":51,"y":10},{"x":-11,"y":-41},{"x":-4,"y":32},{"x":-27,"y":0},{"x":-2,"y":-118}],"type":"coastline"},{"arc":[{"x":120639,"y":111154},{"x":66,"y":56},{"x":126,"y":51},{"x":70,"y":91},{"x":-27,"y":16},{"x":-29,"y":-45},{"x":-23,"y":7},{"x":85,"y":247},{"x":-40,"y":-4},{"x":-49,"y":39},{"x":-6,"y":54},{"x":55,"y":79},{"x":-7,"y":53},{"x":110,"y":118},{"x":-7,"y":86},{"x":69,"y":18},{"x":5,"y":75},{"x":72,"y":110},{"x":-205,"y":86},{"x":206,"y":231},{"x":7,"y":-28},{"x":122,"y":93},{"x":77,"y":145},{"x":41,"y":12},{"x":59,"y":-30},{"x":55,"y":20},{"x":20,"y":78},{"x":142,"y":126},{"x":56,"y":193},{"x":-15,"y":38},{"x":-20,"y":-13},{"x":-87,"y":87}],"type":"area"},{"arc":[{"x":122185,"y":110247},{"x":40,"y":145},{"x":118,"y":110},{"x":32,"y":133},{"x":58,"y":55}],"type":"admin"},{"arc":[{"x":122433,"y":110690},{"x":-105,"y":100},{"x":-8,"y":44},{"x":-106,"y":75},{"x":-85,"y":140},{"x":-160,"y":112},{"x":-12,"y":64},{"x":86,"y":111},{"x":50,"y":16},{"x":86,"y":186},{"x":115,"y":129},{"x":146,"y":29},{"x":115,"y":149},{"x":29,"y":207},{"x":-102,"y":50},{"x":-13,"y":84},{"x":89,"y":20},{"x":198,"y":198},{"x":27,"y":69},{"x":-62,"y":41},{"x":128,"y":79},{"x":17,"y":89},{"x":86,"y":-7},{"x":127,"y":95},{"x":30,"y":140},{"x":120,"y":-5},{"x":43,"y":96},{"x":127,"y":68},{"x":73,"y":6},{"x":30,"y":34}],"type":"admin"},{"arc":[{"x":120137,"y":117622},{"x":-23,"y":41},{"x":-4,"y":-49},{"x":27,"y":8}],"type":"coastline"},{"arc":[{"x":120246,"y":117577},{"x":-50,"y":-33},{"x":63,"y":-7},{"x":-29,"y":-9},{"x":8,"y":-40},{"x":-77,"y":77},{"x":-13,"y":-70},{"x":-34,"y":35},{"x":-7,"y":-40},{"x":60,"y":-16},{"x":-43,"y":-53},{"x":-12,"y":39},{"x":-38,"y":-42},{"x":-29,"y":8},{"x":-23,"y":-55},{"x":-74,"y":-25},{"x":-53,"y":14},{"x":-9,"y":54},{"x":-149,"y":-149},{"x":-82,"y":-60},{"x":-79,"y":-7},{"x":23,"y":-13},{"x":-42,"y":-15},{"x":2,"y":18},{"x":-115,"y":-119},{"x":-269,"y":-149},{"x":-167,"y":-5},{"x":-109,"y":-66}],"type":"coastline"},{"arc":[{"x":119475,"y":116434},{"x":70,"y":41},{"x":75,"y":-55},{"x":35,"y":6},{"x":-27,"y":92},{"x":-40,"y":17},{"x":4,"y":54},{"x":102,"y":2},{"x":22,"y":42},{"x":74,"y":17},{"x":166,"y":-155},{"x":107,"y":0},{"x":40,"y":-81},{"x":121,"y":16},{"x":59,"y":39},{"x":118,"y":-28}],"type":"area"},{"arc":[{"x":118093,"y":114766},{"x":77,"y":4},{"x":-47,"y":0},{"x":28,"y":30},{"x":39,"y":-15},{"x":98,"y":23},{"x":223,"y":-63},{"x":108,"y":-147},{"x":-9,"y":-36},{"x":32,"y":30},{"x":-26,"y":26},{"x":30,"y":0},{"x":24,"y":-45},{"x":-42,"y":1},{"x":10,"y":-23},{"x":-23,"y":-6},{"x":34,"y":-13}],"type":"coastline"},{"arc":[{"x":118649,"y":114532},{"x":231,"y":194}],"type":"area"},{"arc":[{"x":118880,"y":114726},{"x":-29,"y":38},{"x":-43,"y":266},{"x":10,"y":69},{"x":38,"y":0},{"x":-11,"y":20},{"x":43,"y":20},{"x":2,"y":70},{"x":79,"y":69},{"x":-19,"y":28},{"x":34,"y":114},{"x":-26,"y":117}],"type":"area"},{"arc":[{"x":118649,"y":114532},{"x":70,"y":-188}],"type":"coastline"},{"arc":[{"x":118719,"y":114344},{"x":32,"y":-13},{"x":64,"y":20},{"x":21,"y":124},{"x":48,"y":27},{"x":66,"y":-25},{"x":34,"y":44},{"x":94,"y":18},{"x":41,"y":133}],"type":"area"},{"arc":[{"x":119119,"y":114672},{"x":-128,"y":-69},{"x":-42,"y":40},{"x":-3,"y":85},{"x":-66,"y":-2}],"type":"area"},{"arc":[{"x":119972,"y":115131},{"x":-55,"y":-24},{"x":-26,"y":-116},{"x":-111,"y":-101},{"x":17,"y":-57},{"x":-132,"y":-128},{"x":-63,"y":2},{"x":-3,"y":-26},{"x":-132,"y":10},{"x":-71,"y":-26},{"x":-277,"y":7}],"type":"area"},{"arc":[{"x":118719,"y":114344},{"x":146,"y":-218},{"x":30,"y":-146},{"x":43,"y":-35},{"x":-25,"y":42},{"x":37,"y":-27}],"type":"coastline"},{"arc":[{"x":120227,"y":114682},{"x":-42,"y":63},{"x":-56,"y":13},{"x":-29,"y":160},{"x":-58,"y":30},{"x":64,"y":20},{"x":-62,"y":37},{"x":-16,"y":78},{"x":-56,"y":48}],"type":"area"},{"arc":[{"x":119972,"y":115131},{"x":67,"y":84},{"x":88,"y":6},{"x":99,"y":44},{"x":54,"y":83},{"x":159,"y":-78},{"x":61,"y":29},{"x":61,"y":97},{"x":141,"y":11},{"x":75,"y":-20},{"x":32,"y":84},{"x":65,"y":47},{"x":-26,"y":172},{"x":-41,"y":32},{"x":-44,"y":115},{"x":14,"y":64},{"x":166,"y":77},{"x":20,"y":42},{"x":81,"y":11}],"type":"area"},{"arc":[{"x":119825,"y":112556},{"x":22,"y":-409},{"x":-39,"y":-106},{"x":11,"y":19},{"x":12,"y":-21}],"type":"coastline"},{"arc":[{"x":124283,"y":110106},{"x":-149,"y":-31},{"x":-47,"y":38},{"x":-102,"y":-19},{"x":-86,"y":42},{"x":-119,"y":153},{"x":32,"y":73},{"x":-13,"y":51},{"x":-86,"y":109},{"x":-77,"y":27},{"x":-54,"y":93},{"x":-96,"y":-5},{"x":-61,"y":25},{"x":-95,"y":-36},{"x":-21,"y":-48},{"x":-42,"y":-16},{"x":-171,"y":54},{"x":-21,"y":74},{"x":-23,"y":-38},{"x":-74,"y":58},{"x":-66,"y":-11},{"x":-17,"y":30},{"x":-158,"y":-53},{"x":-72,"y":47},{"x":-50,"y":-3},{"x":-85,"y":-58},{"x":-97,"y":28}],"type":"area"},{"arc":[{"x":122233,"y":110109},{"x":78,"y":7},{"x":140,"y":-72},{"x":41,"y":1},{"x":36,"y":-60},{"x":70,"y":9},{"x":54,"y":42},{"x":122,"y":-78},{"x":2,"y":-61},{"x":142,"y":-172},{"x":39,"y":-18},{"x":42,"y":36},{"x":15,"y":-15},{"x":125,"y":20},{"x":179,"y":-98},{"x":-7,"y":-27},{"x":34,"y":-18},{"x":145,"y":-3},{"x":45,"y":-54},{"x":69,"y":6},{"x":115,"y":-72},{"x":33,"y":-74},{"x":129,"y":-79}],"type":"area"},{"arc":[{"x":121811,"y":108724},{"x":57,"y":6},{"x":119,"y":-41},{"x":98,"y":-112},{"x":-167,"y":-404},{"x":171,"y":48},{"x":36,"y":-14},{"x":39,"y":-31},{"x":37,"y":-140},{"x":57,"y":27},{"x":22,"y":-39},{"x":56,"y":-12},{"x":67,"y":-120},{"x":92,"y":10},{"x":23,"y":-83},{"x":40,"y":-18},{"x":135,"y":34},{"x":46,"y":-4},{"x":34,"y":-41},{"x":48,"y":25},{"x":37,"y":71}],"type":"area"},{"arc":[{"x":122858,"y":107886},{"x":27,"y":156},{"x":-29,"y":86},{"x":74,"y":23},{"x":5,"y":119},{"x":90,"y":116},{"x":-39,"y":67},{"x":8,"y":137},{"x":64,"y":219},{"x":48,"y":42},{"x":71,"y":174},{"x":111,"y":64},{"x":38,"y":89},{"x":83,"y":-29},{"x":40,"y":-66},{"x":117,"y":-41},{"x":192,"y":25},{"x":45,"y":42}],"type":"area"},{"arc":[{"x":122858,"y":107886},{"x":157,"y":-46},{"x":75,"y":7},{"x":119,"y":-141},{"x":86,"y":84},{"x":109,"y":-100},{"x":69,"y":-144},{"x":80,"y":-75},{"x":61,"y":-19}],"type":"area"},{"arc":[{"x":119871,"y":108150},{"x":78,"y":13},{"x":147,"y":86},{"x":80,"y":-25},{"x":58,"y":32},{"x":17,"y":-17},{"x":-44,"y":-66},{"x":248,"y":-311},{"x":70,"y":-30},{"x":110,"y":9},{"x":7,"y":-44},{"x":-44,"y":-34},{"x":-174,"y":11},{"x":-42,"y":-25},{"x":-3,"y":-68},{"x":63,"y":-14},{"x":17,"y":-44},{"x":-91,"y":-108},{"x":157,"y":-88},{"x":33,"y":-105},{"x":71,"y":-34}],"type":"admin"},{"arc":[{"x":120629,"y":107288},{"x":78,"y":-58},{"x":87,"y":-12},{"x":-60,"y":-76},{"x":-17,"y":-77},{"x":73,"y":-33},{"x":45,"y":-82},{"x":96,"y":24},{"x":39,"y":-35},{"x":-14,"y":-23},{"x":48,"y":-16},{"x":1,"y":-45},{"x":53,"y":-22},{"x":9,"y":-73},{"x":-48,"y":-37},{"x":-8,"y":-95},{"x":-59,"y":-37},{"x":-30,"y":-58},{"x":38,"y":-95}],"type":"admin"},{"arc":[{"x":120960,"y":106438},{"x":102,"y":-43},{"x":211,"y":-21},{"x":53,"y":30},{"x":61,"y":101},{"x":47,"y":-20},{"x":83,"y":7},{"x":159,"y":-80},{"x":129,"y":35},{"x":94,"y":-5},{"x":85,"y":-87},{"x":4,"y":-86},{"x":87,"y":-52},{"x":18,"y":-77},{"x":74,"y":-60},{"x":21,"y":-99},{"x":69,"y":-100},{"x":155,"y":-86},{"x":110,"y":11},{"x":39,"y":-62}],"type":"area"},{"arc":[{"x":120960,"y":106438},{"x":-99,"y":-154},{"x":-138,"y":20},{"x":-140,"y":-30},{"x":-62,"y":16},{"x":-38,"y":-34},{"x":94,"y":-137},{"x":-107,"y":-30},{"x":-11,"y":-117},{"x":-39,"y":-27},{"x":-98,"y":48},{"x":-49,"y":-47},{"x":-130,"y":-20},{"x":-83,"y":-73},{"x":-46,"y":-121},{"x":-75,"y":-16},{"x":-75,"y":-106},{"x":-139,"y":40},{"x":-86,"y":-54},{"x":-76,"y":52},{"x":-5,"y":-28},{"x":-35,"y":12},{"x":7,"y":-27},{"x":-91,"y":-15},{"x":-55,"y":48},{"x":-24,"y":75},{"x":-146,"y":13}],"type":"admin"},{"arc":[{"x":119214,"y":105726},{"x":-77,"y":-86},{"x":-54,"y":-145},{"x":-15,"y":-146},{"x":-161,"y":-225},{"x":64,"y":-88},{"x":54,"y":-28},{"x":6,"y":-171},{"x":36,"y":6},{"x":47,"y":-51},{"x":84,"y":-9},{"x":58,"y":-83},{"x":119,"y":-15},{"x":-66,"y":-150},{"x":69,"y":-106},{"x":13,"y":-193}],"type":"admin"},{"arc":[{"x":117614,"y":106805},{"x":0,"y":-55},{"x":-93,"y":-12},{"x":6,"y":-80},{"x":-75,"y":-2},{"x":37,"y":-7},{"x":25,"y":-58},{"x":25,"y":3},{"x":-27,"y":-53},{"x":-30,"y":2},{"x":-13,"y":-42},{"x":-32,"y":-4},{"x":40,"y":-7},{"x":-48,"y":-19},{"x":-39,"y":12},{"x":-8,"y":42},{"x":27,"y":3},{"x":0,"y":-27},{"x":1,"y":29},{"x":-50,"y":17},{"x":-63,"y":74},{"x":-24,"y":143},{"x":-18,"y":-11},{"x":-22,"y":23},{"x":-55,"y":-124},{"x":-46,"y":-2},{"x":-35,"y":28},{"x":20,"y":-72},{"x":-53,"y":-62},{"x":-33,"y":7},{"x":-31,"y":69},{"x":-33,"y":-33},{"x":-130,"y":9},{"x":29,"y":-30},{"x":-95,"y":31},{"x":17,"y":62},{"x":40,"y":0},{"x":-22,"y":24},{"x":33,"y":0},{"x":3,"y":-42},{"x":16,"y":93},{"x":-33,"y":39},{"x":-52,"y":-40},{"x":-84,"y":-16},{"x":-31,"y":34},{"x":-51,"y":-1},{"x":-46,"y":59},{"x":-50,"y":-85},{"x":-46,"y":-5},{"x":14,"y":-60},{"x":-37,"y":-25},{"x":-56,"y":18},{"x":-18,"y":-17},{"x":15,"y":16},{"x":-69,"y":74}],"type":"coastline"},{"arc":[{"x":116314,"y":106725},{"x":14,"y":-57},{"x":-35,"y":-32},{"x":-6,"y":-196},{"x":64,"y":-63},{"x":67,"y":-6},{"x":56,"y":-60},{"x":-8,"y":-42},{"x":52,"y":-59},{"x":-4,"y":-78},{"x":38,"y":-59},{"x":46,"y":-12},{"x":133,"y":52},{"x":89,"y":-15},{"x":28,"y":-27},{"x":160,"y":55},{"x":31,"y":-29},{"x":-6,"y":-52},{"x":106,"y":-25},{"x":60,"y":-88},{"x":155,"y":53},{"x":13,"y":-129},{"x":-47,"y":-29},{"x":-19,"y":-51},{"x":-80,"y":-14},{"x":-78,"y":-233},{"x":18,"y":-156},{"x":156,"y":-127},{"x":21,"y":-78},{"x":-30,"y":-19},{"x":-29,"y":37},{"x":-48,"y":4},{"x":21,"y":-71},{"x":-24,"y":-33},{"x":233,"y":-215},{"x":86,"y":-9},{"x":27,"y":-26},{"x":-58,"y":-98},{"x":20,"y":-2},{"x":-17,"y":-58},{"x":124,"y":-14},{"x":24,"y":65},{"x":-43,"y":53},{"x":94,"y":36},{"x":83,"y":-93},{"x":13,"y":-121}],"type":"area"},{"arc":[{"x":117814,"y":104604},{"x":64,"y":-12},{"x":75,"y":21},{"x":55,"y":53},{"x":57,"y":9},{"x":162,"y":173},{"x":-97,"y":143},{"x":-119,"y":57},{"x":-34,"y":65},{"x":41,"y":-32},{"x":137,"y":18},{"x":36,"y":63},{"x":66,"y":31},{"x":52,"y":-18},{"x":74,"y":37},{"x":128,"y":-33},{"x":39,"y":45},{"x":73,"y":2},{"x":16,"y":25},{"x":-23,"y":102},{"x":16,"y":84},{"x":-77,"y":162},{"x":74,"y":110},{"x":-27,"y":120},{"x":-132,"y":-6},{"x":-121,"y":69}],"type":"area"},{"arc":[{"x":118890,"y":106747},{"x":62,"y":-76},{"x":104,"y":-14},{"x":87,"y":-162},{"x":6,"y":-131},{"x":63,"y":-68},{"x":-3,"y":-90},{"x":70,"y":-35},{"x":27,"y":-58}],"type":"area"},{"arc":[{"x":119306,"y":106113},{"x":103,"y":-24},{"x":76,"y":17},{"x":108,"y":52},{"x":34,"y":-5},{"x":57,"y":69},{"x":23,"y":-79},{"x":31,"y":90},{"x":-29,"y":37},{"x":23,"y":20},{"x":64,"y":-57},{"x":-42,"y":163},{"x":-96,"y":187},{"x":18,"y":71},{"x":153,"y":-8},{"x":97,"y":98},{"x":18,"y":103},{"x":137,"y":-36},{"x":19,"y":21},{"x":135,"y":-56},{"x":51,"y":10},{"x":86,"y":172},{"x":-60,"y":244}],"type":"area"},{"arc":[{"x":120312,"y":107202},{"x":61,"y":89},{"x":-17,"y":39},{"x":-128,"y":23},{"x":2,"y":23},{"x":-92,"y":42},{"x":-53,"y":60},{"x":-163,"y":-13},{"x":-1,"y":25},{"x":-62,"y":22},{"x":3,"y":58},{"x":-35,"y":47},{"x":-113,"y":-9},{"x":-23,"y":-46},{"x":-39,"y":-11}],"type":"area"},{"arc":[{"x":120629,"y":107288},{"x":26,"y":-40},{"x":-38,"y":-82},{"x":-54,"y":27},{"x":-103,"y":-47},{"x":-25,"y":41},{"x":-123,"y":15}],"type":"area"},{"arc":[{"x":119306,"y":106113},{"x":-44,"y":-67},{"x":22,"y":-75},{"x":-92,"y":-47},{"x":-12,"y":-31},{"x":1,"y":-120},{"x":33,"y":-47}],"type":"area"},{"arc":[{"x":119301,"y":103966},{"x":-67,"y":36},{"x":-161,"y":1},{"x":-37,"y":33},{"x":-75,"y":9},{"x":-83,"y":-86},{"x":-73,"y":-21},{"x":-65,"y":75},{"x":-59,"y":-103},{"x":-121,"y":16},{"x":-28,"y":-230},{"x":-159,"y":-72},{"x":-87,"y":24},{"x":-22,"y":44},{"x":-118,"y":68},{"x":52,"y":90},{"x":53,"y":18},{"x":-7,"y":85},{"x":-41,"y":5},{"x":-76,"y":89},{"x":-269,"y":-44},{"x":-71,"y":155},{"x":-106,"y":105},{"x":-37,"y":109}],"type":"area"},{"arc":[{"x":117644,"y":104372},{"x":-275,"y":73},{"x":-25,"y":-49},{"x":-166,"y":-46},{"x":51,"y":-123},{"x":-18,"y":-146},{"x":-132,"y":-61},{"x":-100,"y":-135},{"x":-104,"y":-7},{"x":46,"y":-94},{"x":94,"y":-47},{"x":-13,"y":-23},{"x":49,"y":-59},{"x":50,"y":7},{"x":158,"y":-57},{"x":29,"y":-143},{"x":133,"y":-191},{"x":25,"y":-209}],"type":"area"},{"arc":[{"x":117814,"y":104604},{"x":-54,"y":-90},{"x":-64,"y":-13},{"x":-52,"y":-129}],"type":"area"},{"arc":[{"x":116314,"y":106725},{"x":-62,"y":-68},{"x":-40,"y":8},{"x":15,"y":37},{"x":-72,"y":24},{"x":-122,"y":-183},{"x":-79,"y":5},{"x":-74,"y":-44},{"x":-47,"y":60},{"x":-39,"y":7},{"x":19,"y":-81},{"x":-50,"y":-74},{"x":-4,"y":-78},{"x":-29,"y":-42},{"x":-85,"y":-37},{"x":-55,"y":1},{"x":-9,"y":48},{"x":-55,"y":3},{"x":5,"y":32},{"x":-68,"y":55},{"x":-33,"y":-52},{"x":-84,"y":-5},{"x":45,"y":-46},{"x":-67,"y":64},{"x":-58,"y":-1},{"x":-2,"y":29},{"x":-20,"y":-4},{"x":-17,"y":-77},{"x":-49,"y":-37},{"x":15,"y":-40},{"x":45,"y":27},{"x":83,"y":-56},{"x":44,"y":32},{"x":-4,"y":-31},{"x":32,"y":17},{"x":28,"y":-162},{"x":-213,"y":-215},{"x":-192,"y":-68}],"type":"coastline"},{"arc":[{"x":115016,"y":105773},{"x":38,"y":-63},{"x":109,"y":-62},{"x":177,"y":157},{"x":153,"y":87},{"x":52,"y":70},{"x":77,"y":7},{"x":82,"y":-86},{"x":-19,"y":-108},{"x":-234,"y":-216},{"x":-34,"y":-89},{"x":35,"y":-41},{"x":-91,"y":-49},{"x":-48,"y":-93},{"x":12,"y":-40},{"x":49,"y":-18},{"x":17,"y":-132},{"x":-81,"y":-79},{"x":-56,"y":-16},{"x":-49,"y":52},{"x":-85,"y":9},{"x":51,"y":-201},{"x":-71,"y":-29},{"x":-113,"y":17},{"x":-42,"y":-29},{"x":-81,"y":-7},{"x":-69,"y":-127},{"x":62,"y":-79}],"type":"area"},{"arc":[{"x":110121,"y":99958},{"x":-43,"y":27},{"x":-1,"y":-58},{"x":44,"y":31}],"type":"coastline"},{"arc":[{"x":110425,"y":100245},{"x":-37,"y":-31},{"x":-30,"y":37},{"x":-20,"y":-129},{"x":75,"y":32},{"x":12,"y":91}],"type":"coastline"},{"arc":[{"x":110229,"y":101869},{"x":-36,"y":-72},{"x":99,"y":-107},{"x":-32,"y":-43},{"x":-44,"y":8},{"x":-36,"y":-85},{"x":91,"y":-79},{"x":161,"y":-67},{"x":-11,"y":-43},{"x":57,"y":-69},{"x":34,"y":0},{"x":-19,"y":-14},{"x":29,"y":-34},{"x":68,"y":-7},{"x":6,"y":-59},{"x":66,"y":12},{"x":64,"y":-29},{"x":-1,"y":-21},{"x":21,"y":7},{"x":-3,"y":-21},{"x":-47,"y":-6},{"x":66,"y":-52},{"x":-50,"y":-39},{"x":15,"y":-84},{"x":-60,"y":-119},{"x":52,"y":-43},{"x":-88,"y":32},{"x":20,"y":89},{"x":-50,"y":41},{"x":-24,"y":-21},{"x":48,"y":-64},{"x":-46,"y":-63},{"x":-45,"y":-12},{"x":42,"y":-153},{"x":-49,"y":-59},{"x":8,"y":-87},{"x":-35,"y":-1},{"x":-1,"y":-42},{"x":-33,"y":-23},{"x":-65,"y":1},{"x":-28,"y":32},{"x":-34,"y":-13},{"x":-14,"y":-106},{"x":31,"y":-26},{"x":-61,"y":-54},{"x":9,"y":-35},{"x":62,"y":23},{"x":22,"y":97},{"x":188,"y":-69},{"x":-16,"y":90},{"x":46,"y":24},{"x":31,"y":-94},{"x":87,"y":-45},{"x":9,"y":-49},{"x":1,"y":32},{"x":42,"y":-11},{"x":18,"y":22},{"x":-34,"y":73},{"x":39,"y":22},{"x":-18,"y":90},{"x":52,"y":4},{"x":-44,"y":75},{"x":64,"y":-9},{"x":34,"y":-156},{"x":12,"y":70},{"x":46,"y":-28},{"x":80,"y":-3},{"x":-12,"y":61},{"x":89,"y":4},{"x":43,"y":36},{"x":-71,"y":33},{"x":39,"y":31},{"x":66,"y":5},{"x":-7,"y":36},{"x":29,"y":11},{"x":52,"y":-64},{"x":20,"y":8},{"x":31,"y":92},{"x":-19,"y":57},{"x":21,"y":4},{"x":-6,"y":-30},{"x":36,"y":-1},{"x":-15,"y":-38},{"x":46,"y":-10},{"x":25,"y":-57},{"x":57,"y":-2},{"x":11,"y":-43},{"x":100,"y":133},{"x":31,"y":-20},{"x":6,"y":70},{"x":69,"y":42},{"x":51,"y":118},{"x":49,"y":11},{"x":22,"y":-32},{"x":84,"y":85},{"x":-25,"y":31},{"x":42,"y":57}],"type":"coastline"},{"arc":[{"x":114226,"y":105257},{"x":-13,"y":21},{"x":-3,"y":-35},{"x":16,"y":14}],"type":"coastline"},{"arc":[{"x":115016,"y":105773},{"x":-65,"y":-51},{"x":-59,"y":-1},{"x":-6,"y":-46},{"x":-89,"y":-7},{"x":-86,"y":-65},{"x":-73,"y":4},{"x":-20,"y":-37},{"x":-72,"y":-9},{"x":-86,"y":-98},{"x":-3,"y":-67},{"x":-62,"y":-100},{"x":-92,"y":-61},{"x":-17,"y":24},{"x":-43,"y":12},{"x":36,"y":-12},{"x":-8,"y":-16},{"x":-26,"y":12},{"x":23,"y":-48},{"x":-37,"y":-41},{"x":-30,"y":-1},{"x":-19,"y":51},{"x":-62,"y":-26},{"x":-21,"y":16},{"x":-57,"y":-101},{"x":-117,"y":-33},{"x":-94,"y":0},{"x":-95,"y":-32},{"x":-66,"y":41},{"x":-51,"y":-3},{"x":-16,"y":-29},{"x":38,"y":-125},{"x":66,"y":-25},{"x":7,"y":-47},{"x":25,"y":-15},{"x":-21,"y":14},{"x":32,"y":2},{"x":33,"y":-42},{"x":-25,"y":-123},{"x":35,"y":6},{"x":-18,"y":-18},{"x":23,"y":-15},{"x":-42,"y":-15},{"x":40,"y":-8},{"x":-16,"y":-181},{"x":-193,"y":-195},{"x":-97,"y":-62},{"x":-24,"y":36},{"x":-21,"y":0},{"x":35,"y":-22},{"x":-35,"y":-4},{"x":3,"y":-15},{"x":32,"y":16},{"x":11,"y":-16},{"x":-41,"y":-16},{"x":-17,"y":44},{"x":22,"y":-57},{"x":-57,"y":14},{"x":-24,"y":-26},{"x":-69,"y":8},{"x":16,"y":-26},{"x":-29,"y":17},{"x":-30,"y":-17},{"x":24,"y":27},{"x":-51,"y":-13},{"x":-23,"y":-43},{"x":-157,"y":-37}],"type":"coastline"},{"arc":[{"x":114339,"y":78668},{"x":-47,"y":-73},{"x":-178,"y":-40},{"x":35,"y":-64},{"x":-15,"y":-87},{"x":-48,"y":-34},{"x":-47,"y":-99},{"x":-115,"y":-94},{"x":-154,"y":99},{"x":-124,"y":2},{"x":-62,"y":76},{"x":-127,"y":39}],"type":"admin"},{"arc":[{"x":113457,"y":78393},{"x":-61,"y":-37},{"x":-15,"y":-57},{"x":-43,"y":-8},{"x":50,"y":-71},{"x":-34,"y":-32},{"x":-30,"y":-122},{"x":24,"y":-48},{"x":-25,"y":-51},{"x":31,"y":-193},{"x":-18,"y":-115},{"x":36,"y":-173},{"x":-38,"y":-145}],"type":"admin"},{"arc":[{"x":113334,"y":77341},{"x":21,"y":-7},{"x":-50,"y":-173},{"x":27,"y":-13},{"x":32,"y":11},{"x":60,"y":135},{"x":-23,"y":100},{"x":116,"y":-51},{"x":-78,"y":-54},{"x":-78,"y":-176},{"x":77,"y":173},{"x":85,"y":-11},{"x":155,"y":159},{"x":83,"y":-39},{"x":193,"y":32},{"x":19,"y":31},{"x":241,"y":-80}],"type":"coastline"},{"arc":[{"x":114214,"y":77378},{"x":58,"y":237},{"x":60,"y":73},{"x":54,"y":32},{"x":31,"y":-12},{"x":15,"y":230},{"x":-49,"y":148},{"x":60,"y":99},{"x":25,"y":115},{"x":37,"y":-10},{"x":47,"y":39},{"x":-28,"y":78},{"x":-169,"y":55},{"x":11,"y":89},{"x":84,"y":46},{"x":1,"y":36},{"x":-112,"y":35}],"type":"area"},{"arc":[{"x":117887,"y":79954},{"x":-5,"y":327},{"x":30,"y":73},{"x":-50,"y":23},{"x":-12,"y":124},{"x":21,"y":31}],"type":"area"},{"arc":[{"x":117871,"y":80532},{"x":5,"y":59},{"x":-28,"y":35},{"x":-74,"y":-7},{"x":-5,"y":-35},{"x":62,"y":-20},{"x":1,"y":-32},{"x":-24,"y":-39},{"x":-36,"y":-6},{"x":-26,"y":74},{"x":-49,"y":7},{"x":-2,"y":49},{"x":-87,"y":2},{"x":1,"y":-49},{"x":-28,"y":0},{"x":-3,"y":-28},{"x":-163,"y":-3},{"x":-13,"y":34},{"x":-34,"y":-16},{"x":-234,"y":37},{"x":-7,"y":-48}],"type":"area"},{"arc":[{"x":117127,"y":80546},{"x":57,"y":-244},{"x":-7,"y":-113},{"x":-27,"y":-11},{"x":-18,"y":-83},{"x":-9,"y":-211},{"x":-50,"y":-135},{"x":13,"y":-99},{"x":-30,"y":-63},{"x":-59,"y":-33},{"x":-11,"y":-118},{"x":-60,"y":1}],"type":"area"},{"arc":[{"x":116926,"y":79437},{"x":-147,"y":-150},{"x":4,"y":-44},{"x":-81,"y":-114},{"x":-6,"y":-60},{"x":47,"y":15},{"x":68,"y":-70},{"x":-42,"y":-79},{"x":-97,"y":-25},{"x":-17,"y":-91},{"x":-36,"y":-29},{"x":-23,"y":-86},{"x":38,"y":-68},{"x":-32,"y":-5},{"x":23,"y":-23},{"x":-20,"y":-6},{"x":25,"y":-9},{"x":-40,"y":3},{"x":-29,"y":-33},{"x":18,"y":-45},{"x":48,"y":41},{"x":-44,"y":-78},{"x":37,"y":-14},{"x":-49,"y":8},{"x":-19,"y":-28},{"x":54,"y":-5},{"x":-72,"y":-56},{"x":52,"y":-7},{"x":16,"y":-41},{"x":-38,"y":36},{"x":-12,"y":-23},{"x":-39,"y":3}],"type":"admin"},{"arc":[{"x":116513,"y":78354},{"x":20,"y":-26},{"x":-102,"y":-12},{"x":-30,"y":-34},{"x":38,"y":-44},{"x":-51,"y":-39},{"x":0,"y":-101},{"x":-35,"y":-5},{"x":-18,"y":-49},{"x":27,"y":-86},{"x":-42,"y":28},{"x":-73,"y":-17},{"x":13,"y":-27},{"x":-69,"y":-30},{"x":0,"y":-36},{"x":-43,"y":-1},{"x":-8,"y":-21}],"type":"area"},{"arc":[{"x":116140,"y":77854},{"x":2,"y":-26},{"x":67,"y":-26},{"x":95,"y":-8},{"x":103,"y":-145},{"x":-22,"y":-27},{"x":-79,"y":10},{"x":-4,"y":-71},{"x":-101,"y":22},{"x":15,"y":-124},{"x":-77,"y":-24},{"x":27,"y":-57},{"x":-18,"y":-55}],"type":"admin"},{"arc":[{"x":116148,"y":77323},{"x":40,"y":30},{"x":91,"y":-3},{"x":-68,"y":-142},{"x":33,"y":-60},{"x":79,"y":-39},{"x":24,"y":-67}],"type":"area"},{"arc":[{"x":116347,"y":77042},{"x":71,"y":55},{"x":165,"y":-5},{"x":3,"y":101},{"x":-135,"y":24},{"x":14,"y":87},{"x":44,"y":51},{"x":106,"y":42},{"x":85,"y":-21}],"type":"admin"},{"arc":[{"x":116700,"y":77376},{"x":44,"y":35},{"x":-2,"y":76},{"x":112,"y":28},{"x":64,"y":-7},{"x":49,"y":-37},{"x":38,"y":71},{"x":-39,"y":51},{"x":-134,"y":-35},{"x":-114,"y":12},{"x":-73,"y":64},{"x":18,"y":80},{"x":164,"y":-15},{"x":61,"y":48},{"x":8,"y":82},{"x":44,"y":69},{"x":38,"y":-18},{"x":55,"y":-112},{"x":86,"y":7},{"x":37,"y":58},{"x":12,"y":232},{"x":134,"y":55},{"x":48,"y":-20},{"x":14,"y":-52},{"x":66,"y":-56},{"x":61,"y":30}],"type":"admin"},{"arc":[{"x":117491,"y":78022},{"x":23,"y":74},{"x":-90,"y":128},{"x":65,"y":62},{"x":116,"y":9},{"x":43,"y":26},{"x":-40,"y":178},{"x":76,"y":70},{"x":-40,"y":32}],"type":"admin"},{"arc":[{"x":117644,"y":78601},{"x":-20,"y":19},{"x":61,"y":43},{"x":-10,"y":87},{"x":38,"y":-1},{"x":63,"y":129},{"x":23,"y":-4},{"x":-12,"y":97},{"x":100,"y":73},{"x":62,"y":-4}],"type":"area"},{"arc":[{"x":117949,"y":79040},{"x":5,"y":283},{"x":-11,"y":-33},{"x":-40,"y":14},{"x":51,"y":117},{"x":-7,"y":146},{"x":-46,"y":37},{"x":-13,"y":-57},{"x":-119,"y":40},{"x":127,"y":199},{"x":-9,"y":168}],"type":"admin"},{"arc":[{"x":122694,"y":81373},{"x":-38,"y":-67},{"x":8,"y":-91},{"x":-66,"y":-6},{"x":-3,"y":-27},{"x":-71,"y":-20},{"x":-43,"y":-101},{"x":-33,"y":-6},{"x":-72,"y":-245},{"x":-75,"y":-3},{"x":-31,"y":-30},{"x":-50,"y":8},{"x":-36,"y":-35}],"type":"admin"},{"arc":[{"x":122184,"y":80750},{"x":-22,"y":-48},{"x":63,"y":-53},{"x":-20,"y":-41},{"x":40,"y":-28}],"type":"area"},{"arc":[{"x":122245,"y":80580},{"x":117,"y":-29},{"x":32,"y":22},{"x":92,"y":2},{"x":21,"y":-19},{"x":46,"y":19},{"x":-22,"y":-75},{"x":43,"y":-55}],"type":"admin"},{"arc":[{"x":122574,"y":80445},{"x":37,"y":8},{"x":-5,"y":-47},{"x":98,"y":-32},{"x":21,"y":-44},{"x":43,"y":20},{"x":-34,"y":-36},{"x":25,"y":-78},{"x":-48,"y":-63},{"x":64,"y":-39}],"type":"area"},{"arc":[{"x":122775,"y":80134},{"x":29,"y":14},{"x":77,"y":-42},{"x":108,"y":-12},{"x":31,"y":187},{"x":73,"y":21},{"x":139,"y":-55},{"x":145,"y":124}],"type":"admin"},{"arc":[{"x":122184,"y":80750},{"x":-25,"y":42},{"x":-42,"y":0},{"x":-138,"y":77},{"x":-58,"y":-35},{"x":-89,"y":-7},{"x":-125,"y":55}],"type":"admin"},{"arc":[{"x":121707,"y":80882},{"x":-126,"y":48},{"x":-64,"y":-88},{"x":-66,"y":-11}],"type":"admin"},{"arc":[{"x":121451,"y":80831},{"x":-53,"y":-39},{"x":-50,"y":34},{"x":-54,"y":-6},{"x":-38,"y":44},{"x":-212,"y":100},{"x":8,"y":67},{"x":-67,"y":54},{"x":-82,"y":-10},{"x":-20,"y":-33},{"x":-40,"y":32},{"x":-49,"y":-104},{"x":-71,"y":-31}],"type":"area"},{"arc":[{"x":120723,"y":80939},{"x":30,"y":-111},{"x":102,"y":-83},{"x":90,"y":-46},{"x":111,"y":11},{"x":7,"y":-78},{"x":68,"y":-104},{"x":-30,"y":-78},{"x":97,"y":-95},{"x":7,"y":-37},{"x":-70,"y":-41},{"x":-50,"y":26},{"x":-129,"y":-34},{"x":-66,"y":29}],"type":"area"},{"arc":[{"x":120890,"y":80298},{"x":-48,"y":-92},{"x":14,"y":-65},{"x":71,"y":-27},{"x":1,"y":-27},{"x":-53,"y":-7},{"x":34,"y":-52},{"x":-9,"y":-41},{"x":-48,"y":-35},{"x":19,"y":-24},{"x":-32,"y":-109},{"x":-75,"y":-49},{"x":-33,"y":111},{"x":-65,"y":-34},{"x":-25,"y":20},{"x":27,"y":63},{"x":58,"y":13},{"x":-10,"y":16},{"x":-206,"y":-47},{"x":-16,"y":-25},{"x":-105,"y":45},{"x":-131,"y":12},{"x":59,"y":65},{"x":-18,"y":56},{"x":-63,"y":-21},{"x":-45,"y":12},{"x":-124,"y":-77},{"x":-68,"y":31}],"type":"admin"},{"arc":[{"x":119999,"y":80010},{"x":0,"y":-50},{"x":-80,"y":-41},{"x":-71,"y":26},{"x":-96,"y":-4},{"x":-72,"y":-33}],"type":"area"},{"arc":[{"x":119680,"y":79908},{"x":77,"y":-57},{"x":13,"y":-39},{"x":-69,"y":-113},{"x":-9,"y":-63},{"x":59,"y":-22},{"x":-67,"y":-69},{"x":24,"y":-60}],"type":"admin"},{"arc":[{"x":119708,"y":79485},{"x":57,"y":-19},{"x":32,"y":17},{"x":81,"y":-117},{"x":83,"y":19},{"x":163,"y":-168},{"x":107,"y":-3},{"x":92,"y":-115}],"type":"area"},{"arc":[{"x":120323,"y":79099},{"x":52,"y":-38},{"x":85,"y":-11},{"x":35,"y":-48},{"x":99,"y":-9},{"x":41,"y":-59},{"x":128,"y":-10},{"x":49,"y":-44}],"type":"admin"},{"arc":[{"x":120812,"y":78880},{"x":78,"y":-50}],"type":"admin"},{"arc":[{"x":120890,"y":78830},{"x":94,"y":103},{"x":-54,"y":129},{"x":67,"y":12},{"x":-80,"y":42},{"x":144,"y":135},{"x":76,"y":-74},{"x":-3,"y":-74},{"x":95,"y":29},{"x":75,"y":-15},{"x":74,"y":-111}],"type":"admin"},{"arc":[{"x":121378,"y":79006},{"x":133,"y":109},{"x":31,"y":119},{"x":41,"y":48},{"x":-45,"y":78},{"x":110,"y":108},{"x":113,"y":14},{"x":-30,"y":70},{"x":85,"y":108},{"x":107,"y":-4},{"x":86,"y":56},{"x":-5,"y":101},{"x":76,"y":75},{"x":-56,"y":54},{"x":25,"y":56}],"type":"area"},{"arc":[{"x":122049,"y":79998},{"x":-102,"y":72},{"x":41,"y":77},{"x":-18,"y":46},{"x":-19,"y":-5},{"x":30,"y":80},{"x":-42,"y":59},{"x":10,"y":47},{"x":63,"y":62},{"x":60,"y":14},{"x":99,"y":-28},{"x":-5,"y":121},{"x":79,"y":37}],"type":"admin"},{"arc":[{"x":121463,"y":81778},{"x":-71,"y":-2},{"x":-56,"y":-76},{"x":-219,"y":106},{"x":-151,"y":-142}],"type":"admin"},{"arc":[{"x":120966,"y":81664},{"x":55,"y":-24},{"x":-1,"y":-61},{"x":72,"y":-33},{"x":19,"y":-79},{"x":91,"y":-143},{"x":-13,"y":-46},{"x":-74,"y":-12},{"x":-64,"y":82},{"x":-162,"y":-58},{"x":-52,"y":38},{"x":-164,"y":-18},{"x":-49,"y":-52},{"x":-42,"y":24},{"x":-26,"y":-60},{"x":-60,"y":-45}],"type":"admin"},{"arc":[{"x":120496,"y":81177},{"x":-14,"y":-59},{"x":45,"y":-67},{"x":44,"y":40},{"x":45,"y":-23},{"x":-24,"y":-28},{"x":131,"y":-101}],"type":"area"},{"arc":[{"x":121451,"y":80831},{"x":-57,"y":80},{"x":128,"y":302},{"x":26,"y":1},{"x":-6,"y":39},{"x":102,"y":-5},{"x":67,"y":-57},{"x":24,"y":14}],"type":"admin"},{"arc":[{"x":121735,"y":81205},{"x":8,"y":49},{"x":45,"y":-1},{"x":27,"y":27},{"x":-32,"y":25},{"x":15,"y":104},{"x":108,"y":-39},{"x":40,"y":32},{"x":96,"y":-5},{"x":-13,"y":25},{"x":64,"y":26},{"x":-6,"y":80},{"x":33,"y":88}],"type":"admin"},{"arc":[{"x":122120,"y":81616},{"x":-408,"y":-29},{"x":-42,"y":55},{"x":-8,"y":68},{"x":-29,"y":3},{"x":-25,"y":-26},{"x":14,"y":-57},{"x":-56,"y":11},{"x":-26,"y":-18},{"x":18,"y":34},{"x":-95,"y":121}],"type":"admin"},{"arc":[{"x":115655,"y":77786},{"x":-65,"y":14},{"x":-15,"y":25},{"x":-39,"y":-24},{"x":-29,"y":-74},{"x":-39,"y":254}],"type":"area"},{"arc":[{"x":115468,"y":77981},{"x":-65,"y":-14},{"x":22,"y":-27},{"x":-37,"y":-29},{"x":38,"y":0},{"x":2,"y":-105},{"x":-51,"y":-4},{"x":-8,"y":-56},{"x":-63,"y":82},{"x":-129,"y":-5},{"x":-18,"y":-86},{"x":-97,"y":18},{"x":-61,"y":-68},{"x":-132,"y":-45},{"x":-63,"y":-73},{"x":-316,"y":-158},{"x":-89,"y":-94}],"type":"area"},{"arc":[{"x":114401,"y":77317},{"x":108,"y":-249},{"x":160,"y":103},{"x":159,"y":-259},{"x":99,"y":46},{"x":165,"y":-39},{"x":-29,"y":-66},{"x":17,"y":-115}],"type":"coastline"},{"arc":[{"x":115080,"y":76738},{"x":171,"y":2},{"x":215,"y":-39}],"type":"admin"},{"arc":[{"x":115466,"y":76701},{"x":22,"y":76},{"x":-22,"y":31},{"x":40,"y":52},{"x":46,"y":-17},{"x":68,"y":28},{"x":65,"y":84},{"x":-64,"y":6},{"x":33,"y":32},{"x":-83,"y":121},{"x":174,"y":98},{"x":14,"y":-21},{"x":7,"y":215}],"type":"area"},{"arc":[{"x":115766,"y":77406},{"x":26,"y":80},{"x":-126,"y":67},{"x":-68,"y":6},{"x":57,"y":227}],"type":"admin"},{"arc":[{"x":117127,"y":80546},{"x":-82,"y":13},{"x":-39,"y":56},{"x":-78,"y":10},{"x":-22,"y":72},{"x":-59,"y":67},{"x":38,"y":75},{"x":-5,"y":150},{"x":-176,"y":148},{"x":27,"y":50},{"x":-12,"y":59},{"x":-80,"y":13},{"x":-10,"y":111},{"x":-79,"y":115},{"x":19,"y":47},{"x":-58,"y":56}],"type":"area"},{"arc":[{"x":116511,"y":81588},{"x":-108,"y":27},{"x":-52,"y":-25},{"x":-51,"y":13},{"x":-39,"y":53},{"x":-7,"y":170},{"x":-50,"y":121},{"x":-43,"y":-16},{"x":10,"y":-35},{"x":-47,"y":-101},{"x":-45,"y":-4},{"x":-50,"y":-71},{"x":-60,"y":-12},{"x":-159,"y":232},{"x":-63,"y":50},{"x":11,"y":61},{"x":-59,"y":54},{"x":-35,"y":131},{"x":-129,"y":-19},{"x":-24,"y":-80},{"x":-75,"y":-45},{"x":-196,"y":63},{"x":-81,"y":-93},{"x":-250,"y":-46},{"x":-69,"y":-70},{"x":-48,"y":23},{"x":-106,"y":-87},{"x":-19,"y":-91},{"x":-46,"y":-48}],"type":"admin"},{"arc":[{"x":114621,"y":81743},{"x":32,"y":-201},{"x":50,"y":11},{"x":48,"y":-31},{"x":21,"y":-121},{"x":98,"y":-152},{"x":8,"y":-219},{"x":107,"y":-79},{"x":-6,"y":-66},{"x":65,"y":-31},{"x":108,"y":-168},{"x":107,"y":-54},{"x":-34,"y":-104},{"x":45,"y":-105},{"x":-52,"y":-46},{"x":29,"y":-53},{"x":-25,"y":-109},{"x":106,"y":11},{"x":52,"y":-24},{"x":92,"y":-111},{"x":-47,"y":-23},{"x":-45,"y":9},{"x":-114,"y":-126},{"x":-147,"y":-2},{"x":-56,"y":27},{"x":-59,"y":-62},{"x":-238,"y":-34},{"x":-20,"y":-54},{"x":-55,"y":54},{"x":-12,"y":-41}],"type":"admin"},{"arc":[{"x":114679,"y":79839},{"x":23,"y":-52},{"x":-26,"y":-45},{"x":49,"y":-8},{"x":16,"y":-58},{"x":-62,"y":-277},{"x":23,"y":-64},{"x":55,"y":-45},{"x":-20,"y":-83},{"x":36,"y":-148},{"x":-55,"y":-73},{"x":-63,"y":-25},{"x":-32,"y":-93}],"type":"admin"},{"arc":[{"x":114623,"y":78868},{"x":40,"y":-60},{"x":141,"y":16},{"x":85,"y":-54},{"x":171,"y":16},{"x":77,"y":-42},{"x":146,"y":26},{"x":21,"y":-56},{"x":-33,"y":-56},{"x":58,"y":-29},{"x":244,"y":37},{"x":36,"y":40},{"x":30,"y":-105}],"type":"area"},{"arc":[{"x":115639,"y":78601},{"x":104,"y":-106},{"x":69,"y":15},{"x":-2,"y":43},{"x":25,"y":7},{"x":15,"y":-151},{"x":80,"y":53},{"x":111,"y":-29},{"x":22,"y":50},{"x":63,"y":-36},{"x":42,"y":53},{"x":2,"y":-63},{"x":49,"y":57}],"type":"area"},{"arc":[{"x":116219,"y":78494},{"x":6,"y":23},{"x":-6,"y":-87}],"type":"admin"},{"arc":[{"x":116219,"y":78430},{"x":11,"y":-6}],"type":"area"},{"arc":[{"x":116230,"y":78424},{"x":19,"y":56},{"x":27,"y":6},{"x":-3,"y":23},{"x":-10,"y":-21},{"x":-35,"y":18},{"x":39,"y":44},{"x":-2,"y":43},{"x":-50,"y":123},{"x":28,"y":42},{"x":35,"y":277},{"x":125,"y":220},{"x":-3,"y":42},{"x":-96,"y":53},{"x":9,"y":222},{"x":102,"y":2},{"x":155,"y":-106},{"x":57,"y":8},{"x":28,"y":-42},{"x":37,"y":46},{"x":35,"y":-35},{"x":108,"y":-10},{"x":62,"y":29},{"x":29,"y":-27}],"type":"admin"},{"arc":[{"x":116513,"y":78354},{"x":-82,"y":29},{"x":-29,"y":-17},{"x":26,"y":-23},{"x":-32,"y":13},{"x":9,"y":-23},{"x":-35,"y":-4},{"x":-9,"y":49},{"x":2,"y":-45},{"x":-38,"y":-15},{"x":1,"y":80},{"x":-19,"y":-19},{"x":-3,"y":20},{"x":-74,"y":25}],"type":"admin"},{"arc":[{"x":116219,"y":78430},{"x":0,"y":64}],"type":"admin"},{"arc":[{"x":115639,"y":78601},{"x":-37,"y":-102},{"x":12,"y":-214},{"x":-124,"y":-100},{"x":0,"y":-79},{"x":31,"y":-27},{"x":36,"y":49},{"x":80,"y":-40},{"x":-15,"y":-98},{"x":-154,"y":-9}],"type":"area"},{"arc":[{"x":115655,"y":77786},{"x":60,"y":25},{"x":42,"y":-64},{"x":139,"y":-18},{"x":26,"y":67},{"x":171,"y":26},{"x":47,"y":32}],"type":"admin"},{"arc":[{"x":116148,"y":77323},{"x":-53,"y":115},{"x":-111,"y":-44},{"x":-51,"y":15},{"x":-2,"y":-73},{"x":-34,"y":69},{"x":-34,"y":-18},{"x":-49,"y":40},{"x":-48,"y":-21}],"type":"admin"},{"arc":[{"x":115466,"y":76701},{"x":122,"y":10},{"x":20,"y":-65},{"x":81,"y":-65},{"x":210,"y":-9},{"x":46,"y":41},{"x":11,"y":127},{"x":73,"y":66},{"x":76,"y":166},{"x":99,"y":7},{"x":113,"y":-95},{"x":79,"y":42}],"type":"admin"},{"arc":[{"x":116396,"y":76926},{"x":-49,"y":116}],"type":"admin"},{"arc":[{"x":122525,"y":83689},{"x":-13,"y":17},{"x":1,"y":-33},{"x":32,"y":4},{"x":-20,"y":12}],"type":"coastline"},{"arc":[{"x":122825,"y":83536},{"x":-7,"y":-22},{"x":14,"y":40},{"x":-7,"y":-18}],"type":"coastline"},{"arc":[{"x":122780,"y":82469},{"x":-53,"y":197},{"x":-52,"y":30},{"x":-7,"y":113},{"x":-38,"y":10},{"x":-17,"y":77},{"x":83,"y":245},{"x":39,"y":34},{"x":-50,"y":84},{"x":109,"y":183}],"type":"admin"},{"arc":[{"x":122794,"y":83442},{"x":-76,"y":43},{"x":15,"y":14},{"x":40,"y":-18},{"x":30,"y":17},{"x":-30,"y":-16},{"x":-38,"y":17},{"x":20,"y":20},{"x":11,"y":-26},{"x":28,"y":8},{"x":18,"y":35},{"x":-57,"y":60},{"x":-89,"y":-7},{"x":46,"y":-28},{"x":-55,"y":24},{"x":-92,"y":-43},{"x":11,"y":54},{"x":-23,"y":21},{"x":-315,"y":94},{"x":-33,"y":27},{"x":4,"y":35},{"x":-8,"y":-27},{"x":-21,"y":14},{"x":23,"y":20},{"x":-38,"y":-21},{"x":-62,"y":49},{"x":-40,"y":-3},{"x":-39,"y":67}],"type":"coastline"},{"arc":[{"x":122024,"y":83872},{"x":-64,"y":-4},{"x":-52,"y":-84},{"x":-8,"y":-72},{"x":53,"y":-77},{"x":-92,"y":-125}],"type":"admin"},{"arc":[{"x":121861,"y":83510},{"x":30,"y":-57},{"x":30,"y":26},{"x":2,"y":-35},{"x":17,"y":44},{"x":1,"y":-46},{"x":66,"y":35},{"x":-43,"y":-53},{"x":26,"y":27},{"x":21,"y":-46},{"x":39,"y":57},{"x":-17,"y":-45},{"x":60,"y":-67},{"x":-72,"y":-54},{"x":38,"y":-62},{"x":-30,"y":-22},{"x":23,"y":-113},{"x":-56,"y":-17},{"x":-33,"y":-97},{"x":-65,"y":-20},{"x":-13,"y":-29},{"x":35,"y":-44},{"x":-110,"y":-172},{"x":0,"y":-84},{"x":65,"y":22},{"x":25,"y":-24},{"x":81,"y":20},{"x":42,"y":15},{"x":0,"y":27},{"x":23,"y":1},{"x":14,"y":-56},{"x":34,"y":37},{"x":61,"y":-15},{"x":148,"y":101},{"x":105,"y":-72},{"x":25,"y":-82},{"x":-38,"y":-32},{"x":32,"y":-13},{"x":0,"y":-57},{"x":-119,"y":-18},{"x":13,"y":-47},{"x":69,"y":-38},{"x":23,"y":10},{"x":51,"y":-89},{"x":130,"y":-20}],"type":"admin"},{"arc":[{"x":121111,"y":85117},{"x":-69,"y":-8},{"x":-115,"y":-129},{"x":-24,"y":45},{"x":-29,"y":-6}],"type":"admin"},{"arc":[{"x":120874,"y":85019},{"x":-97,"y":-48},{"x":-136,"y":-214},{"x":-158,"y":-101},{"x":-130,"y":-30},{"x":-176,"y":-93},{"x":11,"y":-40},{"x":-41,"y":-24},{"x":-50,"y":-92},{"x":-71,"y":0},{"x":-81,"y":-39},{"x":-76,"y":-90},{"x":-14,"y":-60},{"x":-109,"y":-90}],"type":"admin"},{"arc":[{"x":119746,"y":84098},{"x":14,"y":-47},{"x":-29,"y":-102},{"x":40,"y":-57},{"x":-13,"y":-37},{"x":115,"y":-86},{"x":-4,"y":-66},{"x":-75,"y":-39},{"x":-3,"y":-65},{"x":-45,"y":-43},{"x":40,"y":-137},{"x":-39,"y":-124}],"type":"admin"},{"arc":[{"x":119747,"y":83295},{"x":118,"y":3},{"x":109,"y":44},{"x":153,"y":162},{"x":180,"y":19},{"x":88,"y":47},{"x":90,"y":158},{"x":249,"y":142},{"x":127,"y":44},{"x":156,"y":169},{"x":182,"y":111},{"x":37,"y":67},{"x":97,"y":34}],"type":"admin"},{"arc":[{"x":121333,"y":84295},{"x":-105,"y":94},{"x":3,"y":-18},{"x":-36,"y":-4},{"x":-4,"y":37},{"x":-71,"y":42},{"x":-10,"y":68},{"x":89,"y":1},{"x":0,"y":55},{"x":-77,"y":-2},{"x":12,"y":31},{"x":150,"y":-11},{"x":-3,"y":63},{"x":-38,"y":18},{"x":16,"y":18},{"x":-51,"y":-25},{"x":21,"y":44},{"x":-26,"y":55},{"x":62,"y":-47},{"x":29,"y":13},{"x":-55,"y":35},{"x":-11,"y":76},{"x":22,"y":27},{"x":-43,"y":-19},{"x":34,"y":24},{"x":-23,"y":25},{"x":39,"y":-29},{"x":-17,"y":33},{"x":-33,"y":-4},{"x":-31,"y":86},{"x":-63,"y":65},{"x":-2,"y":71}],"type":"coastline"},{"arc":[{"x":123443,"y":80334},{"x":68,"y":-32},{"x":-1,"y":-78},{"x":72,"y":-41},{"x":-14,"y":-86},{"x":131,"y":-63},{"x":-23,"y":-50}],"type":"admin"},{"arc":[{"x":123676,"y":79984},{"x":45,"y":-13},{"x":40,"y":71},{"x":53,"y":20},{"x":0,"y":81},{"x":45,"y":64}],"type":"admin"},{"arc":[{"x":123859,"y":80207},{"x":-51,"y":45},{"x":52,"y":38},{"x":-4,"y":39},{"x":103,"y":-5},{"x":-35,"y":68},{"x":-37,"y":-7},{"x":13,"y":84},{"x":-43,"y":-3},{"x":6,"y":22}],"type":"admin"},{"arc":[{"x":118834,"y":79054},{"x":4,"y":28},{"x":-22,"y":-12},{"x":-69,"y":49},{"x":-137,"y":197},{"x":-88,"y":43}],"type":"admin"},{"arc":[{"x":118522,"y":79359},{"x":-29,"y":-98},{"x":-87,"y":-13},{"x":-28,"y":-72},{"x":-182,"y":-44},{"x":-45,"y":-46},{"x":-120,"y":-47},{"x":-82,"y":1}],"type":"admin"},{"arc":[{"x":117644,"y":78601},{"x":296,"y":62},{"x":353,"y":-1}],"type":"admin"},{"arc":[{"x":118293,"y":78662},{"x":341,"y":-8},{"x":167,"y":-61},{"x":58,"y":13}],"type":"admin"},{"arc":[{"x":118859,"y":78606},{"x":35,"y":39},{"x":-33,"y":35},{"x":31,"y":19},{"x":-5,"y":52},{"x":111,"y":32},{"x":-16,"y":122},{"x":-36,"y":6},{"x":-112,"y":143}],"type":"area"},{"arc":[{"x":119708,"y":79485},{"x":-107,"y":-107},{"x":-60,"y":-8},{"x":-90,"y":-220},{"x":-52,"y":-5},{"x":-9,"y":-30},{"x":-104,"y":-58},{"x":52,"y":-142},{"x":64,"y":10},{"x":-82,"y":-66},{"x":-207,"y":29},{"x":-60,"y":76},{"x":-111,"y":41},{"x":-57,"y":99},{"x":-51,"y":-50}],"type":"admin"},{"arc":[{"x":118859,"y":78606},{"x":133,"y":-248},{"x":-73,"y":-32},{"x":41,"y":-60},{"x":-137,"y":-241},{"x":29,"y":-38},{"x":-133,"y":-147}],"type":"admin"},{"arc":[{"x":118719,"y":77840},{"x":4,"y":-10}],"type":"admin"},{"arc":[{"x":118723,"y":77830},{"x":9,"y":-47},{"x":38,"y":8},{"x":73,"y":-40},{"x":99,"y":79},{"x":151,"y":-40},{"x":59,"y":71},{"x":53,"y":19}],"type":"area"},{"arc":[{"x":119205,"y":77880},{"x":-31,"y":73},{"x":26,"y":40},{"x":-18,"y":48},{"x":76,"y":85}],"type":"area"},{"arc":[{"x":119258,"y":78126},{"x":117,"y":82},{"x":6,"y":-34},{"x":48,"y":-22},{"x":84,"y":42},{"x":74,"y":-6},{"x":120,"y":75},{"x":66,"y":-9},{"x":2,"y":18},{"x":-144,"y":41},{"x":0,"y":59},{"x":50,"y":1},{"x":-8,"y":59},{"x":51,"y":12},{"x":-18,"y":88},{"x":-33,"y":22},{"x":-63,"y":-4},{"x":-94,"y":102},{"x":76,"y":55},{"x":114,"y":34},{"x":54,"y":-31},{"x":30,"y":-63},{"x":116,"y":18},{"x":37,"y":59},{"x":-41,"y":25},{"x":27,"y":82},{"x":240,"y":144}],"type":"area"},{"arc":[{"x":120169,"y":78975},{"x":134,"y":74},{"x":20,"y":50}],"type":"admin"},{"arc":[{"x":120111,"y":77908},{"x":17,"y":44},{"x":-46,"y":40},{"x":-63,"y":-16},{"x":-48,"y":40},{"x":-144,"y":-46},{"x":-81,"y":21},{"x":12,"y":-80},{"x":-90,"y":-92},{"x":-14,"y":-78},{"x":-38,"y":-25}],"type":"area"},{"arc":[{"x":119616,"y":77716},{"x":54,"y":-51},{"x":70,"y":30},{"x":57,"y":-88},{"x":124,"y":-60}],"type":"area"},{"arc":[{"x":120393,"y":78081},{"x":-20,"y":36},{"x":15,"y":131},{"x":-71,"y":26},{"x":-50,"y":-13},{"x":-29,"y":62},{"x":-76,"y":-6},{"x":-63,"y":60}],"type":"admin"},{"arc":[{"x":120099,"y":78377},{"x":-76,"y":-152},{"x":26,"y":-54},{"x":-31,"y":-52},{"x":-138,"y":57},{"x":-80,"y":-89},{"x":-111,"y":32},{"x":-62,"y":-51},{"x":-114,"y":-13},{"x":-255,"y":71}],"type":"area"},{"arc":[{"x":119205,"y":77880},{"x":42,"y":-7},{"x":19,"y":-105},{"x":44,"y":-13},{"x":30,"y":21},{"x":60,"y":-33},{"x":92,"y":5},{"x":124,"y":-32}],"type":"area"},{"arc":[{"x":124250,"y":77918},{"x":-11,"y":33},{"x":-71,"y":9},{"x":15,"y":-57},{"x":67,"y":15}],"type":"coastline"},{"arc":[{"x":124554,"y":78673},{"x":-57,"y":-15},{"x":-190,"y":112},{"x":-68,"y":51},{"x":-4,"y":70},{"x":-37,"y":40},{"x":-47,"y":19},{"x":-45,"y":-26},{"x":-55,"y":17},{"x":-109,"y":140},{"x":-104,"y":9},{"x":-17,"y":-21},{"x":-35,"y":45},{"x":-55,"y":7},{"x":-77,"y":56},{"x":12,"y":61},{"x":56,"y":52},{"x":-22,"y":61},{"x":18,"y":44},{"x":-28,"y":119},{"x":-101,"y":121}],"type":"admin"},{"arc":[{"x":123589,"y":79635},{"x":-77,"y":21},{"x":-32,"y":-50},{"x":-31,"y":3},{"x":-140,"y":66}],"type":"admin"},{"arc":[{"x":123309,"y":79675},{"x":2,"y":-64},{"x":-29,"y":13},{"x":-45,"y":-37},{"x":-64,"y":8},{"x":40,"y":-134},{"x":-18,"y":-38},{"x":-56,"y":-24},{"x":-3,"y":-80},{"x":-69,"y":-50},{"x":-28,"y":30},{"x":-87,"y":17},{"x":21,"y":-133},{"x":-46,"y":-28},{"x":-8,"y":-51},{"x":-49,"y":-17},{"x":5,"y":-199},{"x":-74,"y":-89}],"type":"area"},{"arc":[{"x":122801,"y":78799},{"x":12,"y":-38},{"x":79,"y":-17},{"x":76,"y":-79},{"x":43,"y":10},{"x":30,"y":-29},{"x":26,"y":56},{"x":41,"y":-36},{"x":-12,"y":-33},{"x":57,"y":-4},{"x":30,"y":-117},{"x":-73,"y":-67},{"x":50,"y":-44},{"x":32,"y":9},{"x":164,"y":-233},{"x":56,"y":46},{"x":77,"y":-4},{"x":58,"y":64},{"x":152,"y":-74},{"x":123,"y":22},{"x":139,"y":-107},{"x":35,"y":14},{"x":-16,"y":-65},{"x":-36,"y":28},{"x":-7,"y":-22},{"x":114,"y":-34},{"x":18,"y":-25}],"type":"area"},{"arc":[{"x":124069,"y":78020},{"x":90,"y":-23},{"x":-24,"y":62},{"x":-19,"y":12},{"x":15,"y":-29},{"x":-27,"y":1},{"x":-31,"y":67},{"x":60,"y":209},{"x":61,"y":96},{"x":75,"y":66},{"x":120,"y":50},{"x":22,"y":-20},{"x":16,"y":23},{"x":56,"y":3},{"x":25,"y":-30},{"x":-46,"y":-3},{"x":100,"y":-23},{"x":-25,"y":74},{"x":17,"y":118}],"type":"coastline"},{"arc":[{"x":124863,"y":78116},{"x":-18,"y":83},{"x":-70,"y":20},{"x":-70,"y":78},{"x":-83,"y":33},{"x":33,"y":-41},{"x":-14,"y":-44},{"x":-20,"y":26},{"x":23,"y":-52},{"x":33,"y":-11},{"x":-7,"y":-28},{"x":83,"y":-1},{"x":9,"y":-19},{"x":-37,"y":-7},{"x":68,"y":-17},{"x":42,"y":-53},{"x":28,"y":33}],"type":"coastline"},{"arc":[{"x":124880,"y":77604},{"x":1,"y":68},{"x":-59,"y":19},{"x":-48,"y":-59},{"x":-24,"y":11},{"x":-17,"y":-27},{"x":24,"y":-2},{"x":-35,"y":-32},{"x":-49,"y":25},{"x":-28,"y":-12},{"x":25,"y":9},{"x":-18,"y":-22},{"x":36,"y":-1},{"x":-25,"y":-31},{"x":-11,"y":26},{"x":-22,"y":-5},{"x":21,"y":0},{"x":3,"y":-36},{"x":-39,"y":-3},{"x":8,"y":35},{"x":-9,"y":-40},{"x":-90,"y":-31},{"x":63,"y":-179},{"x":17,"y":-29},{"x":35,"y":6},{"x":11,"y":-36},{"x":47,"y":23},{"x":12,"y":-26},{"x":47,"y":32},{"x":29,"y":-30},{"x":50,"y":22},{"x":15,"y":113},{"x":-39,"y":104},{"x":75,"y":33},{"x":-6,"y":75}],"type":"coastline"},{"arc":[{"x":129113,"y":74221},{"x":-38,"y":6},{"x":-104,"y":-85},{"x":51,"y":-68},{"x":92,"y":54},{"x":-1,"y":93}],"type":"coastline"},{"arc":[{"x":120099,"y":78377},{"x":-76,"y":21},{"x":-4,"y":60},{"x":70,"y":77},{"x":81,"y":-8},{"x":74,"y":130},{"x":82,"y":-7},{"x":19,"y":88},{"x":-176,"y":237}],"type":"admin"},{"arc":[{"x":122549,"y":78723},{"x":-32,"y":61},{"x":-94,"y":56},{"x":-41,"y":-116},{"x":-92,"y":-32}],"type":"area"},{"arc":[{"x":122290,"y":78692},{"x":7,"y":-99},{"x":-46,"y":-76},{"x":-54,"y":-16},{"x":-23,"y":-64},{"x":-114,"y":-15},{"x":-63,"y":-106}],"type":"admin"},{"arc":[{"x":121997,"y":78316},{"x":29,"y":-35},{"x":98,"y":-23},{"x":19,"y":-33},{"x":-78,"y":-86},{"x":42,"y":-248},{"x":67,"y":-16},{"x":22,"y":25},{"x":88,"y":-7},{"x":121,"y":-86},{"x":74,"y":-125}],"type":"admin"},{"arc":[{"x":122479,"y":77682},{"x":141,"y":115},{"x":30,"y":-5},{"x":25,"y":36},{"x":167,"y":64}],"type":"coastline"},{"arc":[{"x":122842,"y":77892},{"x":-25,"y":148},{"x":-144,"y":284},{"x":-27,"y":323},{"x":-97,"y":76}],"type":"area"},{"arc":[{"x":122801,"y":78799},{"x":-72,"y":-29},{"x":-79,"y":12},{"x":-101,"y":-59}],"type":"area"},{"arc":[{"x":122842,"y":77892},{"x":120,"y":24},{"x":12,"y":-33},{"x":14,"y":-2},{"x":-19,"y":19},{"x":28,"y":10},{"x":-13,"y":-22},{"x":21,"y":7},{"x":-7,"y":22},{"x":65,"y":13},{"x":114,"y":-20},{"x":103,"y":-83},{"x":-54,"y":-59},{"x":25,"y":30},{"x":5,"y":-13},{"x":59,"y":16},{"x":-79,"y":-37},{"x":14,"y":-22},{"x":-24,"y":-17},{"x":28,"y":-36},{"x":124,"y":-23},{"x":15,"y":35},{"x":69,"y":25},{"x":160,"y":-76},{"x":26,"y":48},{"x":-76,"y":21},{"x":-24,"y":88},{"x":72,"y":116},{"x":216,"y":96},{"x":186,"y":28},{"x":47,"y":-27}],"type":"coastline"},{"arc":[{"x":117652,"y":81697},{"x":-128,"y":89},{"x":10,"y":18},{"x":56,"y":-7},{"x":-14,"y":46},{"x":-135,"y":81},{"x":-45,"y":-32},{"x":-175,"y":82},{"x":-95,"y":-7},{"x":-125,"y":50},{"x":-98,"y":-102},{"x":-88,"y":-45},{"x":-26,"y":45},{"x":-109,"y":43},{"x":15,"y":72},{"x":-52,"y":5},{"x":-34,"y":-44},{"x":19,"y":-91},{"x":-20,"y":-65},{"x":-47,"y":-44},{"x":16,"y":-121},{"x":-66,"y":-82}],"type":"admin"},{"arc":[{"x":117871,"y":80532},{"x":80,"y":1},{"x":70,"y":42},{"x":5,"y":52},{"x":-130,"y":79},{"x":-21,"y":42},{"x":-9,"y":30},{"x":56,"y":18},{"x":-5,"y":119},{"x":-46,"y":45},{"x":7,"y":37},{"x":27,"y":4},{"x":-40,"y":55},{"x":-119,"y":54},{"x":-30,"y":48},{"x":6,"y":55},{"x":74,"y":73},{"x":66,"y":130},{"x":0,"y":47},{"x":-112,"y":154},{"x":-98,"y":80}],"type":"area"},{"arc":[{"x":123309,"y":79675},{"x":-222,"y":112},{"x":-36,"y":-14},{"x":-97,"y":33},{"x":-156,"y":-5},{"x":-135,"y":56},{"x":20,"y":138},{"x":47,"y":68},{"x":-18,"y":22},{"x":62,"y":22},{"x":1,"y":27}],"type":"admin"},{"arc":[{"x":122574,"y":80445},{"x":-21,"y":-41},{"x":-72,"y":15},{"x":7,"y":-92},{"x":-75,"y":-78},{"x":-72,"y":26},{"x":-180,"y":2},{"x":-27,"y":-129},{"x":65,"y":-6},{"x":7,"y":-20},{"x":-54,"y":-25},{"x":-39,"y":-82},{"x":-64,"y":-17}],"type":"admin"},{"arc":[{"x":121378,"y":79006},{"x":122,"y":-95},{"x":81,"y":83},{"x":48,"y":13},{"x":68,"y":-48},{"x":31,"y":-88}],"type":"admin"},{"arc":[{"x":121728,"y":78871},{"x":30,"y":-111},{"x":85,"y":-34},{"x":20,"y":-68},{"x":39,"y":6},{"x":26,"y":-24},{"x":144,"y":59},{"x":23,"y":-37},{"x":146,"y":-3},{"x":49,"y":33}],"type":"admin"},{"arc":[{"x":120496,"y":81177},{"x":-90,"y":70},{"x":-65,"y":-3},{"x":-112,"y":115},{"x":-111,"y":10},{"x":-24,"y":31},{"x":-320,"y":-27},{"x":-21,"y":65}],"type":"admin"},{"arc":[{"x":119753,"y":81438},{"x":-93,"y":4},{"x":-170,"y":71}],"type":"admin"},{"arc":[{"x":119490,"y":81513},{"x":-48,"y":-85},{"x":-110,"y":5},{"x":-55,"y":-36},{"x":-13,"y":-157}],"type":"admin"},{"arc":[{"x":119264,"y":81240},{"x":127,"y":-56},{"x":88,"y":-205},{"x":-9,"y":-135},{"x":-42,"y":-48},{"x":52,"y":-75},{"x":-56,"y":-145},{"x":30,"y":-104},{"x":67,"y":-67},{"x":16,"y":-118},{"x":-21,"y":-24},{"x":44,"y":-67},{"x":-40,"y":-32},{"x":3,"y":-48},{"x":40,"y":-9},{"x":59,"y":-79},{"x":-15,"y":-55}],"type":"area"},{"arc":[{"x":119607,"y":79973},{"x":73,"y":-65}],"type":"admin"},{"arc":[{"x":119999,"y":80010},{"x":29,"y":54},{"x":134,"y":41},{"x":0,"y":37},{"x":99,"y":-3},{"x":24,"y":75},{"x":97,"y":21},{"x":85,"y":-18},{"x":45,"y":67},{"x":150,"y":29},{"x":6,"y":27},{"x":111,"y":10},{"x":111,"y":-52}],"type":"admin"},{"arc":[{"x":119264,"y":81240},{"x":-26,"y":-95},{"x":-137,"y":-74},{"x":-43,"y":-107},{"x":-53,"y":135},{"x":86,"y":215},{"x":-36,"y":62},{"x":46,"y":66},{"x":-18,"y":92},{"x":-104,"y":91},{"x":-106,"y":-4},{"x":-86,"y":62},{"x":-156,"y":28},{"x":-57,"y":58},{"x":20,"y":66},{"x":-101,"y":28},{"x":30,"y":-16},{"x":-39,"y":-18},{"x":-36,"y":72},{"x":-11,"y":-27},{"x":-45,"y":58},{"x":-7,"y":-43},{"x":-17,"y":30},{"x":-22,"y":-10},{"x":15,"y":38},{"x":-80,"y":-30},{"x":-88,"y":39},{"x":-34,"y":-22},{"x":-27,"y":30},{"x":-108,"y":-15}],"type":"admin"},{"arc":[{"x":118024,"y":81949},{"x":-143,"y":14},{"x":-140,"y":-191},{"x":-50,"y":-16},{"x":-39,"y":-59}],"type":"admin"},{"arc":[{"x":117887,"y":79954},{"x":71,"y":-137},{"x":21,"y":-12},{"x":37,"y":27},{"x":17,"y":-23},{"x":-28,"y":-137},{"x":31,"y":-7},{"x":0,"y":23},{"x":108,"y":56},{"x":44,"y":-6},{"x":60,"y":-211},{"x":47,"y":-12},{"x":31,"y":-76},{"x":39,"y":-16},{"x":28,"y":34},{"x":35,"y":-25}],"type":"admin"},{"arc":[{"x":118428,"y":79432},{"x":29,"y":1},{"x":64,"y":76},{"x":-5,"y":126},{"x":121,"y":69},{"x":-12,"y":27},{"x":143,"y":60},{"x":-7,"y":30},{"x":63,"y":47},{"x":19,"y":-27},{"x":43,"y":34},{"x":72,"y":-45},{"x":-11,"y":-44},{"x":27,"y":-33},{"x":46,"y":23},{"x":56,"y":-19},{"x":213,"y":89},{"x":2,"y":38},{"x":88,"y":50},{"x":72,"y":11},{"x":30,"y":-39},{"x":9,"y":37},{"x":68,"y":-9},{"x":49,"y":39}],"type":"admin"},{"arc":[{"x":114623,"y":78868},{"x":-105,"y":-6},{"x":-54,"y":44},{"x":-55,"y":3}],"type":"admin"},{"arc":[{"x":114409,"y":78909},{"x":-15,"y":-101},{"x":-40,"y":-36},{"x":19,"y":-28},{"x":-47,"y":-18},{"x":13,"y":-58}],"type":"admin"},{"arc":[{"x":114214,"y":77378},{"x":116,"y":-56},{"x":50,"y":13},{"x":21,"y":-18}],"type":"coastline"},{"arc":[{"x":120590,"y":73552},{"x":-39,"y":72},{"x":-60,"y":-28},{"x":-28,"y":15},{"x":23,"y":-16},{"x":-24,"y":-16},{"x":-4,"y":25},{"x":-18,"y":-15},{"x":76,"y":-73},{"x":74,"y":36}],"type":"coastline"},{"arc":[{"x":119370,"y":75873},{"x":-41,"y":-150},{"x":-71,"y":-79},{"x":49,"y":-59},{"x":-4,"y":-65},{"x":43,"y":-11},{"x":18,"y":-37},{"x":-28,"y":-67},{"x":52,"y":-150},{"x":5,"y":-141},{"x":-46,"y":1},{"x":-33,"y":-103},{"x":-50,"y":0},{"x":-53,"y":-59},{"x":11,"y":-148}],"type":"admin"},{"arc":[{"x":119222,"y":74805},{"x":102,"y":-100},{"x":24,"y":-87},{"x":-91,"y":-121},{"x":66,"y":-98},{"x":-6,"y":-165},{"x":34,"y":-69},{"x":-25,"y":-39},{"x":-63,"y":-23},{"x":-30,"y":-107},{"x":8,"y":-176},{"x":42,"y":-57},{"x":-64,"y":-239},{"x":33,"y":-61}],"type":"admin"},{"arc":[{"x":119252,"y":73463},{"x":185,"y":60},{"x":45,"y":51},{"x":100,"y":-51},{"x":18,"y":180},{"x":68,"y":91},{"x":14,"y":96},{"x":50,"y":34},{"x":-25,"y":-7},{"x":19,"y":8},{"x":5,"y":52},{"x":-9,"y":-46},{"x":-27,"y":9},{"x":23,"y":29},{"x":-11,"y":45},{"x":53,"y":74},{"x":43,"y":-10},{"x":31,"y":28},{"x":-30,"y":53},{"x":-9,"y":-38},{"x":-22,"y":3},{"x":-22,"y":40},{"x":17,"y":40},{"x":-39,"y":35},{"x":29,"y":132},{"x":114,"y":70},{"x":-14,"y":16},{"x":47,"y":-9},{"x":52,"y":-101},{"x":51,"y":140},{"x":64,"y":52},{"x":28,"y":112},{"x":84,"y":0},{"x":12,"y":52},{"x":63,"y":-5},{"x":-18,"y":7},{"x":30,"y":50},{"x":121,"y":7},{"x":10,"y":-41},{"x":-11,"y":-52},{"x":-153,"y":-141},{"x":85,"y":-47},{"x":20,"y":-65},{"x":-27,"y":-10},{"x":35,"y":-35},{"x":-41,"y":-18},{"x":-10,"y":29},{"x":11,"y":-45},{"x":-74,"y":-35},{"x":-14,"y":-43},{"x":31,"y":8},{"x":14,"y":-22},{"x":8,"y":28},{"x":94,"y":29},{"x":42,"y":64},{"x":-41,"y":19},{"x":3,"y":41},{"x":102,"y":39},{"x":23,"y":-42},{"x":-34,"y":-15},{"x":84,"y":-44},{"x":26,"y":-67},{"x":-41,"y":5},{"x":3,"y":-89},{"x":-86,"y":-77},{"x":-12,"y":-63},{"x":138,"y":-6},{"x":19,"y":-25},{"x":-26,"y":-11},{"x":46,"y":-59},{"x":67,"y":4},{"x":64,"y":139},{"x":-34,"y":21},{"x":-1,"y":40},{"x":49,"y":10},{"x":-15,"y":-24},{"x":46,"y":-4},{"x":68,"y":14},{"x":-90,"y":160},{"x":20,"y":150},{"x":55,"y":103},{"x":-38,"y":1},{"x":38,"y":-1},{"x":84,"y":90},{"x":101,"y":57},{"x":63,"y":-11},{"x":-17,"y":-15},{"x":34,"y":-29},{"x":-37,"y":1},{"x":16,"y":-15},{"x":28,"y":15},{"x":47,"y":-24},{"x":92,"y":30},{"x":55,"y":106},{"x":-53,"y":65},{"x":48,"y":47},{"x":6,"y":72},{"x":88,"y":131}],"type":"coastline"},{"arc":[{"x":118723,"y":77830},{"x":-39,"y":-34},{"x":-68,"y":0},{"x":-10,"y":-107},{"x":-42,"y":-57},{"x":-56,"y":-25},{"x":-18,"y":14},{"x":-63,"y":-43},{"x":-53,"y":13}],"type":"admin"},{"arc":[{"x":118374,"y":77591},{"x":-48,"y":-98},{"x":20,"y":-64}],"type":"admin"},{"arc":[{"x":118346,"y":77429},{"x":34,"y":-40},{"x":-77,"y":-80}],"type":"admin"},{"arc":[{"x":118303,"y":77309},{"x":45,"y":-34},{"x":44,"y":0},{"x":106,"y":94},{"x":73,"y":-124},{"x":142,"y":-89}],"type":"admin"},{"arc":[{"x":120394,"y":78081},{"x":28,"y":25},{"x":95,"y":1},{"x":58,"y":55},{"x":-14,"y":64},{"x":41,"y":-29},{"x":20,"y":40},{"x":28,"y":-17}],"type":"area"},{"arc":[{"x":120650,"y":78220},{"x":8,"y":60},{"x":-73,"y":113},{"x":35,"y":288},{"x":54,"y":45},{"x":15,"y":-17},{"x":42,"y":20},{"x":81,"y":151}],"type":"area"},{"arc":[{"x":120890,"y":78830},{"x":-50,"y":-230},{"x":63,"y":-51},{"x":33,"y":-148},{"x":150,"y":-176}],"type":"area"},{"arc":[{"x":121086,"y":78225},{"x":97,"y":-20},{"x":4,"y":23},{"x":40,"y":1},{"x":30,"y":-39},{"x":81,"y":18}],"type":"area"},{"arc":[{"x":121338,"y":78208},{"x":44,"y":116},{"x":-20,"y":21},{"x":38,"y":42},{"x":-28,"y":49},{"x":9,"y":75},{"x":-28,"y":18},{"x":14,"y":51},{"x":83,"y":33},{"x":44,"y":111},{"x":116,"y":13},{"x":118,"y":134}],"type":"area"},{"arc":[{"x":120814,"y":78113},{"x":-70,"y":52},{"x":-31,"y":-21},{"x":-63,"y":76}],"type":"area"},{"arc":[{"x":120981,"y":77634},{"x":-7,"y":54},{"x":45,"y":107},{"x":-79,"y":66},{"x":-31,"y":92},{"x":-104,"y":64},{"x":26,"y":32},{"x":-17,"y":64}],"type":"area"},{"arc":[{"x":120814,"y":78113},{"x":-8,"y":23},{"x":46,"y":11},{"x":75,"y":-39},{"x":90,"y":11},{"x":34,"y":66},{"x":34,"y":-2},{"x":1,"y":42}],"type":"area"},{"arc":[{"x":121997,"y":78316},{"x":-32,"y":6},{"x":-32,"y":-132},{"x":-97,"y":-79},{"x":17,"y":-137},{"x":50,"y":-68}],"type":"area"},{"arc":[{"x":122321,"y":77381},{"x":29,"y":9},{"x":16,"y":24},{"x":31,"y":0},{"x":13,"y":19},{"x":1,"y":30},{"x":-11,"y":-36},{"x":-7,"y":30},{"x":-21,"y":-1},{"x":17,"y":6},{"x":-38,"y":4},{"x":3,"y":26},{"x":125,"y":190}],"type":"coastline"},{"arc":[{"x":123011,"y":76819},{"x":-30,"y":93},{"x":-77,"y":86},{"x":29,"y":-140},{"x":-38,"y":-33},{"x":-38,"y":12},{"x":2,"y":-27},{"x":78,"y":-36},{"x":74,"y":45}],"type":"coastline"},{"arc":[{"x":121338,"y":78208},{"x":-2,"y":-38}],"type":"area"},{"arc":[{"x":124708,"y":79874},{"x":-33,"y":-105},{"x":34,"y":97},{"x":35,"y":-17},{"x":-36,"y":25}],"type":"coastline"},{"arc":[{"x":124551,"y":80108},{"x":22,"y":-53}],"type":"area"},{"arc":[{"x":124573,"y":80055},{"x":-223,"y":-104},{"x":-35,"y":-92},{"x":22,"y":-62},{"x":-49,"y":-86}],"type":"area"},{"arc":[{"x":124288,"y":79711},{"x":109,"y":20},{"x":59,"y":-27},{"x":52,"y":-72}],"type":"area"},{"arc":[{"x":124508,"y":79632},{"x":88,"y":163},{"x":77,"y":23},{"x":-20,"y":29},{"x":18,"y":20},{"x":22,"y":-14},{"x":-19,"y":12},{"x":14,"y":28},{"x":18,"y":-13},{"x":1,"y":37},{"x":41,"y":-26},{"x":30,"y":14},{"x":39,"y":-49},{"x":5,"y":35},{"x":-14,"y":-13},{"x":-19,"y":23},{"x":35,"y":35},{"x":63,"y":-44},{"x":-15,"y":13},{"x":36,"y":1},{"x":-30,"y":33},{"x":25,"y":37},{"x":27,"y":-8},{"x":-1,"y":52}],"type":"coastline"},{"arc":[{"x":123859,"y":80207},{"x":284,"y":-112},{"x":430,"y":-40}],"type":"area"},{"arc":[{"x":124288,"y":79711},{"x":-50,"y":14},{"x":-194,"y":-64},{"x":7,"y":94},{"x":35,"y":42},{"x":-70,"y":14},{"x":-29,"y":-48},{"x":-75,"y":-17},{"x":-46,"y":-45},{"x":-96,"y":-8},{"x":-93,"y":27},{"x":-62,"y":-18},{"x":-26,"y":-67}],"type":"area"},{"arc":[{"x":124554,"y":78673},{"x":11,"y":195},{"x":22,"y":18},{"x":-59,"y":49},{"x":13,"y":-25},{"x":-43,"y":-3},{"x":-18,"y":8},{"x":8,"y":15},{"x":35,"y":-2},{"x":-35,"y":4},{"x":-10,"y":-13},{"x":-34,"y":31},{"x":-29,"y":136},{"x":11,"y":257},{"x":82,"y":289}],"type":"coastline"},{"arc":[{"x":123676,"y":79984},{"x":-6,"y":-121},{"x":-123,"y":-99},{"x":-5,"y":-73},{"x":47,"y":-56}],"type":"admin"},{"arc":[{"x":118428,"y":79432},{"x":53,"y":-43},{"x":57,"y":10},{"x":-29,"y":-11},{"x":13,"y":-29}],"type":"admin"},{"arc":[{"x":118989,"y":82368},{"x":-39,"y":-56},{"x":-93,"y":29},{"x":-138,"y":-68},{"x":-97,"y":16},{"x":-83,"y":-33},{"x":-91,"y":27},{"x":-15,"y":-48},{"x":-40,"y":-8},{"x":-161,"y":-22},{"x":-123,"y":19},{"x":-17,"y":-75},{"x":-26,"y":-6},{"x":25,"y":-19},{"x":-13,"y":-138},{"x":-54,"y":-37}],"type":"admin"},{"arc":[{"x":119490,"y":81513},{"x":-19,"y":169},{"x":-39,"y":37},{"x":17,"y":53},{"x":-37,"y":30},{"x":-57,"y":20},{"x":-65,"y":-109},{"x":-56,"y":-10},{"x":-75,"y":84},{"x":-195,"y":101},{"x":-6,"y":76},{"x":54,"y":32},{"x":-6,"y":243},{"x":26,"y":27},{"x":-14,"y":85},{"x":-29,"y":17}],"type":"admin"},{"arc":[{"x":122596,"y":82033},{"x":-345,"y":38},{"x":-93,"y":71},{"x":-115,"y":-37},{"x":-271,"y":154},{"x":-155,"y":-75},{"x":-58,"y":23},{"x":-31,"y":60}],"type":"area"},{"arc":[{"x":121528,"y":82267},{"x":-84,"y":-101},{"x":-47,"y":-126},{"x":106,"y":-105},{"x":-26,"y":-26}],"type":"area"},{"arc":[{"x":121477,"y":81909},{"x":-14,"y":-131}],"type":"area"},{"arc":[{"x":122120,"y":81616},{"x":148,"y":36},{"x":163,"y":-93}],"type":"area"},{"arc":[{"x":120701,"y":82035},{"x":-165,"y":63},{"x":46,"y":45},{"x":11,"y":58},{"x":35,"y":-10},{"x":23,"y":64},{"x":-86,"y":128},{"x":-75,"y":42},{"x":-40,"y":89},{"x":-92,"y":79}],"type":"area"},{"arc":[{"x":120358,"y":82593},{"x":-69,"y":-21},{"x":-244,"y":135},{"x":-91,"y":-19},{"x":-63,"y":38},{"x":-92,"y":2},{"x":-52,"y":53},{"x":-126,"y":-24},{"x":-46,"y":96},{"x":-100,"y":28}],"type":"area"},{"arc":[{"x":119475,"y":82881},{"x":-29,"y":-80},{"x":-351,"y":-164}],"type":"admin"},{"arc":[{"x":119095,"y":82637},{"x":-36,"y":-109},{"x":-63,"y":-54},{"x":-7,"y":-106}],"type":"admin"},{"arc":[{"x":119753,"y":81438},{"x":73,"y":14},{"x":70,"y":159},{"x":114,"y":40},{"x":158,"y":18},{"x":67,"y":-26},{"x":154,"y":27},{"x":43,"y":-23},{"x":52,"y":17},{"x":35,"y":67},{"x":48,"y":-23},{"x":64,"y":9},{"x":68,"y":-57},{"x":14,"y":26},{"x":59,"y":-21},{"x":9,"y":42}],"type":"area"},{"arc":[{"x":120781,"y":81707},{"x":-35,"y":20},{"x":-26,"y":73},{"x":76,"y":99},{"x":-106,"y":21},{"x":-30,"y":56},{"x":41,"y":59}],"type":"area"},{"arc":[{"x":121707,"y":80882},{"x":43,"y":163},{"x":-13,"y":39},{"x":37,"y":-10},{"x":15,"y":37},{"x":58,"y":13},{"x":-112,"y":81}],"type":"area"},{"arc":[{"x":120966,"y":81664},{"x":-60,"y":46},{"x":-11,"y":48},{"x":-114,"y":-51}],"type":"area"},{"arc":[{"x":121477,"y":81909},{"x":-92,"y":48},{"x":-32,"y":-21},{"x":-108,"y":5},{"x":-30,"y":25},{"x":-57,"y":-16},{"x":-162,"y":54},{"x":-55,"y":-15},{"x":-155,"y":76},{"x":-85,"y":-30}],"type":"area"},{"arc":[{"x":121528,"y":82267},{"x":-9,"y":28},{"x":-98,"y":-30},{"x":-70,"y":34},{"x":63,"y":91},{"x":-53,"y":60},{"x":-126,"y":-25},{"x":-158,"y":-80},{"x":-51,"y":51},{"x":-96,"y":4},{"x":-77,"y":87},{"x":-102,"y":2},{"x":-29,"y":67},{"x":-125,"y":13},{"x":-17,"y":25},{"x":-56,"y":-20},{"x":-128,"y":36},{"x":-38,"y":-17}],"type":"area"},{"arc":[{"x":123216,"y":83582},{"x":-27,"y":0},{"x":82,"y":-1},{"x":-55,"y":1}],"type":"coastline"},{"arc":[{"x":123383,"y":83534},{"x":-38,"y":2},{"x":-46,"y":-58},{"x":-37,"y":10},{"x":37,"y":-28},{"x":84,"y":74}],"type":"coastline"},{"arc":[{"x":123501,"y":83592},{"x":3,"y":15},{"x":-25,"y":11},{"x":-24,"y":-58},{"x":17,"y":-15},{"x":8,"y":72},{"x":24,"y":-10},{"x":-9,"y":-13},{"x":26,"y":-10},{"x":-20,"y":8}],"type":"coastline"},{"arc":[{"x":123562,"y":83206},{"x":-26,"y":27},{"x":44,"y":24},{"x":95,"y":263},{"x":-125,"y":51},{"x":24,"y":-10},{"x":-65,"y":-110},{"x":-73,"y":29},{"x":-10,"y":48},{"x":14,"y":-71},{"x":-3,"y":22},{"x":71,"y":-29},{"x":9,"y":-63},{"x":35,"y":-27},{"x":-102,"y":46},{"x":-5,"y":23},{"x":-62,"y":-156},{"x":-56,"y":-9},{"x":-11,"y":20},{"x":-71,"y":-40},{"x":5,"y":38},{"x":110,"y":50},{"x":25,"y":57},{"x":-31,"y":35},{"x":-40,"y":-70},{"x":-11,"y":57},{"x":-88,"y":26},{"x":-122,"y":-122},{"x":16,"y":96},{"x":-48,"y":-36},{"x":-21,"y":16},{"x":105,"y":145},{"x":57,"y":-28},{"x":-57,"y":29},{"x":-123,"y":45},{"x":-136,"y":-174},{"x":-92,"y":34}],"type":"coastline"},{"arc":[{"x":123878,"y":83802},{"x":-182,"y":30},{"x":-16,"y":-101},{"x":180,"y":-29}],"type":"coastline"},{"arc":[{"x":121861,"y":83510},{"x":-191,"y":-218},{"x":-40,"y":20},{"x":-132,"y":-39},{"x":-76,"y":29},{"x":-66,"y":-67},{"x":-73,"y":-7},{"x":-11,"y":-37},{"x":-206,"y":-77},{"x":-212,"y":-37},{"x":-145,"y":-77},{"x":-247,"y":4},{"x":-68,"y":122},{"x":-125,"y":-50},{"x":-51,"y":12},{"x":-47,"y":-51},{"x":-56,"y":18},{"x":-147,"y":-10},{"x":-101,"y":31},{"x":-138,"y":132}],"type":"area"},{"arc":[{"x":119729,"y":83208},{"x":-32,"y":-95},{"x":-59,"y":-27},{"x":-36,"y":-74},{"x":-52,"y":-10},{"x":-75,"y":-121}],"type":"admin"},{"arc":[{"x":121111,"y":85117},{"x":37,"y":111},{"x":30,"y":4},{"x":7,"y":72},{"x":-19,"y":-57},{"x":-5,"y":26},{"x":9,"y":1},{"x":-11,"y":7},{"x":-4,"y":29},{"x":22,"y":3},{"x":-35,"y":-5},{"x":-7,"y":-7},{"x":-25,"y":17}],"type":"coastline"},{"arc":[{"x":121110,"y":85318},{"x":-152,"y":-80},{"x":-112,"y":3},{"x":-96,"y":-56}],"type":"admin"},{"arc":[{"x":120750,"y":85185},{"x":-2,"y":-92},{"x":88,"y":13},{"x":38,"y":-87}],"type":"area"},{"arc":[{"x":120750,"y":85185},{"x":-142,"y":10},{"x":-118,"y":129},{"x":-105,"y":45},{"x":-196,"y":-37},{"x":-204,"y":-213},{"x":-63,"y":36},{"x":-98,"y":-15},{"x":-37,"y":64},{"x":-65,"y":28},{"x":-27,"y":-78},{"x":43,"y":-68},{"x":-43,"y":-155},{"x":9,"y":-151},{"x":-53,"y":-58},{"x":9,"y":-107},{"x":68,"y":-104},{"x":-38,"y":-84},{"x":35,"y":-61},{"x":-27,"y":-184},{"x":48,"y":-84}],"type":"admin"},{"arc":[{"x":119747,"y":83295},{"x":-18,"y":-87}],"type":"admin"},{"arc":[{"x":122024,"y":83872},{"x":19,"y":103},{"x":-49,"y":-23},{"x":-10,"y":-36},{"x":6,"y":38},{"x":-19,"y":-14},{"x":-149,"y":73},{"x":26,"y":55},{"x":-27,"y":-42},{"x":-166,"y":61},{"x":-151,"y":143},{"x":-156,"y":24},{"x":-24,"y":20},{"x":55,"y":15},{"x":-43,"y":-13},{"x":-3,"y":19}],"type":"coastline"},{"arc":[{"x":118930,"y":76573},{"x":-52,"y":-7},{"x":-8,"y":-63},{"x":-40,"y":8},{"x":-35,"y":-36},{"x":-146,"y":-31},{"x":-23,"y":-74},{"x":-52,"y":-10},{"x":-4,"y":-36},{"x":-55,"y":-28},{"x":16,"y":-59},{"x":-39,"y":-83},{"x":-66,"y":-18},{"x":-26,"y":-40},{"x":1,"y":-155},{"x":-60,"y":-33},{"x":-74,"y":11},{"x":-64,"y":-29},{"x":-32,"y":28},{"x":-52,"y":3},{"x":20,"y":156},{"x":-129,"y":13},{"x":-43,"y":-45},{"x":-76,"y":70},{"x":-7,"y":55},{"x":-58,"y":-32},{"x":-65,"y":70},{"x":-49,"y":1},{"x":5,"y":20},{"x":100,"y":10},{"x":53,"y":76},{"x":-29,"y":40},{"x":27,"y":83},{"x":-53,"y":45},{"x":-258,"y":67},{"x":-140,"y":-4},{"x":-324,"y":66},{"x":-22,"y":-82},{"x":-479,"y":82},{"x":-87,"y":-14},{"x":-39,"y":15},{"x":3,"y":65},{"x":75,"y":2},{"x":16,"y":244},{"x":-44,"y":-10},{"x":-34,"y":45},{"x":-86,"y":-33}],"type":"area"},{"arc":[{"x":115080,"y":76738},{"x":82,"y":-700},{"x":117,"y":-42},{"x":71,"y":18},{"x":34,"y":-79},{"x":58,"y":5},{"x":140,"y":-192},{"x":129,"y":-89},{"x":90,"y":41},{"x":-2,"y":39},{"x":67,"y":-54},{"x":6,"y":-77},{"x":-140,"y":7},{"x":30,"y":-142},{"x":-26,"y":-23}],"type":"coastline"},{"arc":[{"x":115736,"y":75450},{"x":9,"y":-14}],"type":"admin"},{"arc":[{"x":115745,"y":75436},{"x":63,"y":13},{"x":3,"y":40},{"x":77,"y":-4},{"x":-3,"y":-54},{"x":41,"y":-13},{"x":99,"y":18},{"x":147,"y":-48},{"x":33,"y":-39},{"x":139,"y":20},{"x":105,"y":-51},{"x":83,"y":42},{"x":18,"y":75},{"x":4,"y":52},{"x":-58,"y":12},{"x":-9,"y":88},{"x":270,"y":3},{"x":274,"y":-74},{"x":47,"y":-63},{"x":8,"y":27},{"x":127,"y":-17},{"x":102,"y":-79},{"x":76,"y":-7},{"x":106,"y":35},{"x":3,"y":-43},{"x":65,"y":-46},{"x":52,"y":-108},{"x":17,"y":-182},{"x":-54,"y":-234},{"x":31,"y":-72},{"x":-19,"y":-191}],"type":"area"},{"arc":[{"x":117592,"y":74536},{"x":99,"y":-19},{"x":111,"y":54},{"x":116,"y":-16},{"x":96,"y":-54},{"x":106,"y":17},{"x":141,"y":133},{"x":42,"y":-4},{"x":73,"y":44},{"x":27,"y":-20},{"x":80,"y":5},{"x":2,"y":85},{"x":81,"y":62},{"x":20,"y":-40},{"x":-23,"y":-1},{"x":3,"y":-73},{"x":50,"y":-32},{"x":47,"y":76},{"x":103,"y":43},{"x":72,"y":-14},{"x":11,"y":23},{"x":80,"y":-9},{"x":58,"y":22},{"x":78,"y":-57},{"x":103,"y":56},{"x":54,"y":-12}],"type":"area"},{"arc":[{"x":118428,"y":71580},{"x":-35,"y":20},{"x":12,"y":-34},{"x":23,"y":14}],"type":"coastline"},{"arc":[{"x":119061,"y":71469},{"x":-13,"y":26},{"x":-26,"y":-17},{"x":39,"y":-9}],"type":"coastline"},{"arc":[{"x":119082,"y":71495},{"x":-19,"y":5},{"x":4,"y":-34},{"x":15,"y":29}],"type":"coastline"},{"arc":[{"x":119220,"y":72833},{"x":-42,"y":2},{"x":10,"y":-31},{"x":32,"y":29}],"type":"coastline"},{"arc":[{"x":119383,"y":72973},{"x":-46,"y":30},{"x":-49,"y":-3},{"x":-14,"y":-89},{"x":90,"y":1},{"x":19,"y":61}],"type":"coastline"},{"arc":[{"x":119571,"y":70732},{"x":-20,"y":35},{"x":-28,"y":18},{"x":-34,"y":6},{"x":23,"y":-5},{"x":-7,"y":-20},{"x":-13,"y":2},{"x":8,"y":-18},{"x":-19,"y":25},{"x":2,"y":-53},{"x":31,"y":10},{"x":22,"y":-23},{"x":35,"y":23}],"type":"coastline"},{"arc":[{"x":120183,"y":72788},{"x":-46,"y":41},{"x":-88,"y":-2},{"x":-66,"y":-37},{"x":-9,"y":-70},{"x":37,"y":-28},{"x":79,"y":59},{"x":19,"y":-33},{"x":18,"y":50},{"x":22,"y":-23},{"x":-46,"y":-43},{"x":13,"y":-16},{"x":67,"y":102}],"type":"coastline"},{"arc":[{"x":117592,"y":74536},{"x":12,"y":-158},{"x":-83,"y":-80},{"x":-80,"y":-31},{"x":-158,"y":-196},{"x":-28,"y":-121},{"x":-157,"y":-125},{"x":-33,"y":-111},{"x":-70,"y":-42},{"x":-37,"y":-76},{"x":-32,"y":-12},{"x":-1,"y":-59},{"x":-102,"y":-85},{"x":35,"y":-95}],"type":"area"},{"arc":[{"x":116858,"y":73345},{"x":28,"y":-22}],"type":"area"},{"arc":[{"x":116886,"y":73323},{"x":125,"y":-62},{"x":17,"y":-51},{"x":47,"y":-27},{"x":137,"y":-43},{"x":102,"y":1},{"x":144,"y":-175},{"x":-35,"y":-20},{"x":12,"y":-72},{"x":56,"y":-32},{"x":67,"y":-115},{"x":56,"y":-35},{"x":28,"y":10},{"x":63,"y":-60},{"x":-28,"y":-42},{"x":-50,"y":-3},{"x":-175,"y":47},{"x":-63,"y":-54},{"x":285,"y":-98},{"x":7,"y":-74},{"x":65,"y":-59},{"x":80,"y":-23},{"x":3,"y":-43},{"x":101,"y":-28},{"x":-14,"y":-40},{"x":129,"y":-17},{"x":33,"y":-30},{"x":218,"y":57},{"x":105,"y":-74},{"x":52,"y":-78},{"x":62,"y":-14},{"x":-70,"y":-136},{"x":14,"y":-95},{"x":-68,"y":1},{"x":-22,"y":-24},{"x":-122,"y":42},{"x":-25,"y":-17},{"x":-17,"y":-75},{"x":69,"y":-60},{"x":6,"y":-41}],"type":"area"},{"arc":[{"x":118280,"y":71664},{"x":6,"y":53},{"x":-28,"y":6},{"x":27,"y":12},{"x":38,"y":-12},{"x":-7,"y":-45},{"x":33,"y":-6},{"x":15,"y":30},{"x":54,"y":-22},{"x":9,"y":42},{"x":3,"y":-41},{"x":10,"y":20},{"x":30,"y":-8},{"x":-27,"y":-41},{"x":43,"y":29},{"x":-16,"y":-28},{"x":52,"y":-12},{"x":-11,"y":-39},{"x":-17,"y":19},{"x":-34,"y":-21},{"x":-19,"y":27},{"x":0,"y":-62},{"x":-35,"y":-17},{"x":65,"y":-116},{"x":-7,"y":-49},{"x":43,"y":5},{"x":36,"y":-53},{"x":-26,"y":-98},{"x":34,"y":-17},{"x":79,"y":16},{"x":-12,"y":56},{"x":27,"y":27},{"x":-13,"y":-38},{"x":44,"y":-36},{"x":-32,"y":-12},{"x":29,"y":-45},{"x":34,"y":11},{"x":20,"y":-63},{"x":57,"y":7},{"x":39,"y":-123},{"x":61,"y":-14},{"x":-1,"y":-53},{"x":34,"y":12},{"x":-19,"y":-83},{"x":36,"y":18},{"x":25,"y":-27},{"x":19,"y":28},{"x":38,"y":-16},{"x":-41,"y":-36},{"x":40,"y":-33},{"x":60,"y":15},{"x":37,"y":58},{"x":13,"y":42},{"x":-35,"y":2},{"x":0,"y":46},{"x":-54,"y":0},{"x":24,"y":15},{"x":-20,"y":34},{"x":63,"y":47},{"x":47,"y":-17},{"x":-20,"y":-12},{"x":42,"y":-71},{"x":105,"y":-48},{"x":45,"y":25},{"x":-13,"y":47},{"x":38,"y":7},{"x":1,"y":29},{"x":103,"y":25},{"x":-80,"y":66},{"x":2,"y":25},{"x":49,"y":-2},{"x":5,"y":52},{"x":-34,"y":8},{"x":-22,"y":56},{"x":-60,"y":1},{"x":18,"y":-10},{"x":-23,"y":-21},{"x":-12,"y":23},{"x":-62,"y":3},{"x":-79,"y":137},{"x":-59,"y":11},{"x":15,"y":-14},{"x":-75,"y":-40},{"x":-95,"y":16},{"x":-38,"y":-17},{"x":38,"y":30},{"x":49,"y":-14},{"x":19,"y":23},{"x":-82,"y":60},{"x":39,"y":72}],"type":"coastline"},{"arc":[{"x":118964,"y":71525},{"x":20,"y":67},{"x":-43,"y":55},{"x":-35,"y":-35},{"x":-118,"y":-13},{"x":7,"y":65},{"x":33,"y":14},{"x":-24,"y":50},{"x":-48,"y":9},{"x":7,"y":53},{"x":55,"y":36},{"x":66,"y":-2},{"x":5,"y":77},{"x":22,"y":38},{"x":-11,"y":-25},{"x":35,"y":-25},{"x":121,"y":23},{"x":-29,"y":34},{"x":39,"y":23},{"x":-9,"y":22},{"x":46,"y":-24},{"x":24,"y":40},{"x":39,"y":7},{"x":7,"y":-45},{"x":21,"y":2},{"x":72,"y":107},{"x":115,"y":-13},{"x":118,"y":-67},{"x":33,"y":-87},{"x":109,"y":-62},{"x":7,"y":-62},{"x":98,"y":-87},{"x":-5,"y":-74},{"x":35,"y":-46}],"type":"admin"},{"arc":[{"x":119776,"y":71580},{"x":26,"y":2},{"x":29,"y":-87},{"x":79,"y":0},{"x":4,"y":-91},{"x":31,"y":3},{"x":5,"y":70},{"x":-74,"y":104},{"x":85,"y":-48},{"x":92,"y":42},{"x":43,"y":-79},{"x":61,"y":28},{"x":11,"y":-50},{"x":144,"y":49},{"x":29,"y":-56},{"x":4,"y":51},{"x":-35,"y":14},{"x":-49,"y":88},{"x":-6,"y":-25},{"x":-53,"y":13},{"x":11,"y":-33},{"x":-48,"y":48},{"x":2,"y":34},{"x":-64,"y":48},{"x":-14,"y":45},{"x":25,"y":51},{"x":-12,"y":-21},{"x":-114,"y":46},{"x":-58,"y":-26},{"x":-8,"y":-28},{"x":-89,"y":-11},{"x":85,"y":46},{"x":-25,"y":53},{"x":19,"y":28},{"x":19,"y":-48},{"x":32,"y":21},{"x":103,"y":-24},{"x":45,"y":31},{"x":33,"y":-20},{"x":16,"y":81},{"x":-28,"y":25},{"x":-33,"y":-17},{"x":11,"y":33},{"x":99,"y":-46},{"x":21,"y":25},{"x":12,"y":-17},{"x":-14,"y":20},{"x":30,"y":38},{"x":20,"y":-15},{"x":-77,"y":89},{"x":15,"y":28},{"x":-2,"y":-20},{"x":19,"y":10},{"x":8,"y":-8},{"x":-15,"y":-23},{"x":21,"y":29},{"x":9,"y":41},{"x":-75,"y":25},{"x":-21,"y":64},{"x":51,"y":108},{"x":54,"y":-5},{"x":11,"y":25},{"x":-22,"y":30},{"x":-157,"y":-37},{"x":-107,"y":170},{"x":-1,"y":45},{"x":32,"y":12},{"x":-18,"y":64},{"x":-60,"y":15},{"x":9,"y":-33},{"x":-32,"y":27},{"x":-58,"y":-20},{"x":-53,"y":50},{"x":-14,"y":76},{"x":-92,"y":-43},{"x":-27,"y":-116},{"x":-129,"y":-97},{"x":-113,"y":16},{"x":-39,"y":-30},{"x":27,"y":8},{"x":-9,"y":-30},{"x":-17,"y":15},{"x":17,"y":-16},{"x":-21,"y":-9},{"x":29,"y":-4},{"x":-22,"y":-18},{"x":-114,"y":90},{"x":-2,"y":16},{"x":67,"y":-1},{"x":9,"y":26},{"x":-123,"y":59},{"x":14,"y":15},{"x":60,"y":-37},{"x":20,"y":30},{"x":-70,"y":17},{"x":30,"y":28},{"x":82,"y":-43},{"x":53,"y":38},{"x":-16,"y":59},{"x":-96,"y":49},{"x":-34,"y":-44},{"x":-27,"y":4},{"x":-17,"y":-73},{"x":-24,"y":17},{"x":21,"y":8},{"x":-13,"y":2},{"x":-9,"y":-11},{"x":-43,"y":30},{"x":-23,"y":-32},{"x":45,"y":-28},{"x":-55,"y":22},{"x":34,"y":50},{"x":-25,"y":38},{"x":-39,"y":-77},{"x":-45,"y":92},{"x":-5,"y":69},{"x":25,"y":15},{"x":-38,"y":10},{"x":4,"y":40},{"x":-87,"y":158},{"x":-2,"y":242},{"x":57,"y":131},{"x":61,"y":63},{"x":58,"y":-53},{"x":67,"y":-5},{"x":53,"y":36}],"type":"coastline"},{"arc":[{"x":120488,"y":71839},{"x":-109,"y":84},{"x":-38,"y":-19},{"x":14,"y":21},{"x":-35,"y":36},{"x":4,"y":-32},{"x":-37,"y":-5},{"x":-60,"y":-98},{"x":-36,"y":6},{"x":-6,"y":-59},{"x":38,"y":-26},{"x":-2,"y":-49},{"x":3,"y":55},{"x":37,"y":29},{"x":22,"y":-23},{"x":37,"y":15},{"x":65,"y":-18},{"x":103,"y":83}],"type":"coastline"},{"arc":[{"x":120677,"y":70585},{"x":-7,"y":85},{"x":-85,"y":48},{"x":-83,"y":-25},{"x":2,"y":-53},{"x":-45,"y":-4},{"x":24,"y":-1},{"x":-23,"y":-15},{"x":23,"y":-31},{"x":-33,"y":24},{"x":3,"y":16},{"x":-16,"y":-21},{"x":0,"y":-74},{"x":66,"y":-54},{"x":57,"y":-111},{"x":33,"y":53},{"x":38,"y":-29},{"x":40,"y":44},{"x":-5,"y":36},{"x":-38,"y":-8},{"x":-12,"y":51},{"x":46,"y":25},{"x":15,"y":44}],"type":"coastline"},{"arc":[{"x":120796,"y":71464},{"x":-22,"y":22},{"x":-66,"y":-31},{"x":1,"y":-98},{"x":54,"y":13},{"x":-17,"y":35},{"x":50,"y":59}],"type":"coastline"},{"arc":[{"x":120949,"y":72009},{"x":-22,"y":52},{"x":-133,"y":-20},{"x":45,"y":-27},{"x":-30,"y":1},{"x":-1,"y":-43},{"x":-5,"y":41},{"x":4,"y":-56},{"x":41,"y":19},{"x":21,"y":-23},{"x":43,"y":10},{"x":37,"y":46}],"type":"coastline"},{"arc":[{"x":121120,"y":71643},{"x":-39,"y":20},{"x":-16,"y":-23},{"x":-31,"y":6},{"x":-20,"y":-45},{"x":-8,"y":45},{"x":-71,"y":-39},{"x":-79,"y":29},{"x":-6,"y":63},{"x":-58,"y":-37},{"x":-68,"y":-6},{"x":16,"y":-67},{"x":-19,"y":28},{"x":21,"y":-31},{"x":56,"y":11},{"x":34,"y":-69},{"x":57,"y":-39},{"x":0,"y":40},{"x":96,"y":5},{"x":74,"y":75},{"x":49,"y":-39},{"x":12,"y":73}],"type":"coastline"},{"arc":[{"x":117491,"y":78022},{"x":70,"y":-4},{"x":23,"y":-71},{"x":150,"y":-58},{"x":7,"y":-49},{"x":-42,"y":-51},{"x":242,"y":-14},{"x":79,"y":-31},{"x":57,"y":-60},{"x":56,"y":-3},{"x":50,"y":-52},{"x":89,"y":-22},{"x":62,"y":20},{"x":40,"y":-36}],"type":"admin"},{"arc":[{"x":118719,"y":77840},{"x":-51,"y":161},{"x":-47,"y":62},{"x":-133,"y":90},{"x":-49,"y":81},{"x":55,"y":176},{"x":26,"y":-2},{"x":-12,"y":99},{"x":-72,"y":21},{"x":-29,"y":-19},{"x":4,"y":141},{"x":-118,"y":12}],"type":"admin"},{"arc":[{"x":117592,"y":74536},{"x":-68,"y":-48},{"x":-121,"y":17},{"x":-44,"y":-34},{"x":-29,"y":21},{"x":-84,"y":-13},{"x":-48,"y":161},{"x":-72,"y":55},{"x":-32,"y":-27},{"x":-82,"y":17},{"x":-66,"y":121},{"x":-58,"y":30},{"x":-52,"y":-90},{"x":-123,"y":79},{"x":-31,"y":-9},{"x":-24,"y":46},{"x":-111,"y":70},{"x":-73,"y":18},{"x":-28,"y":-39},{"x":-25,"y":25},{"x":-33,"y":-163}],"type":"area"},{"arc":[{"x":116388,"y":74773},{"x":132,"y":-71},{"x":-64,"y":-47},{"x":-2,"y":-43},{"x":-54,"y":0},{"x":31,"y":-156},{"x":-84,"y":-25},{"x":-20,"y":-58},{"x":-39,"y":12},{"x":-19,"y":-27}],"type":"admin"},{"arc":[{"x":116269,"y":74358},{"x":63,"y":-143},{"x":-53,"y":-85}],"type":"admin"},{"arc":[{"x":116279,"y":74130},{"x":47,"y":-81},{"x":-21,"y":-172},{"x":39,"y":-47},{"x":-9,"y":-52},{"x":56,"y":-55},{"x":-67,"y":-90},{"x":153,"y":-119},{"x":-11,"y":-171},{"x":45,"y":11},{"x":60,"y":-57},{"x":47,"y":-8},{"x":240,"y":56}],"type":"area"},{"arc":[{"x":116886,"y":73323},{"x":-26,"y":-33},{"x":14,"y":-93},{"x":-33,"y":-50},{"x":17,"y":-65},{"x":-80,"y":-224},{"x":-75,"y":-83},{"x":-88,"y":-14},{"x":-15,"y":-59},{"x":-71,"y":-44},{"x":28,"y":-109},{"x":-34,"y":4},{"x":-36,"y":-45},{"x":-136,"y":-70},{"x":6,"y":-19},{"x":-143,"y":-71},{"x":-3,"y":-71},{"x":-48,"y":-35},{"x":24,"y":-177},{"x":-53,"y":-66}],"type":"area"},{"arc":[{"x":116134,"y":71999},{"x":25,"y":-188},{"x":54,"y":-22},{"x":15,"y":-45},{"x":127,"y":-34},{"x":-23,"y":-34},{"x":26,"y":-59},{"x":-33,"y":-62},{"x":39,"y":-33},{"x":-47,"y":-24},{"x":-37,"y":-128},{"x":15,"y":-232}],"type":"admin"},{"arc":[{"x":116295,"y":71138},{"x":77,"y":2},{"x":17,"y":-61},{"x":333,"y":-317}],"type":"admin"},{"arc":[{"x":116722,"y":70762},{"x":199,"y":-98},{"x":57,"y":-51},{"x":7,"y":-45},{"x":192,"y":52},{"x":17,"y":29},{"x":152,"y":24},{"x":172,"y":77},{"x":94,"y":147}],"type":"admin"},{"arc":[{"x":117612,"y":70897},{"x":-80,"y":59},{"x":3,"y":34},{"x":37,"y":-58},{"x":14,"y":103},{"x":-71,"y":72},{"x":-34,"y":-25},{"x":33,"y":23},{"x":39,"y":-39},{"x":-56,"y":-46},{"x":-59,"y":61},{"x":-48,"y":-10},{"x":-22,"y":110},{"x":-12,"y":-79},{"x":-73,"y":17},{"x":7,"y":57},{"x":68,"y":1},{"x":-55,"y":26},{"x":-49,"y":-26},{"x":-7,"y":-49},{"x":-36,"y":6},{"x":28,"y":16},{"x":-5,"y":63},{"x":-178,"y":104},{"x":-10,"y":-32},{"x":-7,"y":30},{"x":-55,"y":25},{"x":10,"y":20},{"x":-62,"y":12},{"x":1,"y":58},{"x":81,"y":18},{"x":-43,"y":71},{"x":23,"y":27},{"x":127,"y":-73},{"x":35,"y":-78},{"x":-3,"y":-81},{"x":99,"y":-35},{"x":-5,"y":84},{"x":60,"y":6},{"x":15,"y":30},{"x":16,"y":-28},{"x":-20,"y":-9},{"x":73,"y":3},{"x":-73,"y":63},{"x":78,"y":-4},{"x":78,"y":77},{"x":-13,"y":-35},{"x":49,"y":-50},{"x":-26,"y":-47},{"x":-31,"y":16},{"x":8,"y":-46},{"x":93,"y":-32},{"x":17,"y":-30},{"x":28,"y":54},{"x":-62,"y":30},{"x":14,"y":29},{"x":41,"y":-16},{"x":31,"y":59},{"x":-59,"y":62},{"x":29,"y":1},{"x":-9,"y":-16},{"x":50,"y":-34},{"x":20,"y":40},{"x":40,"y":-58},{"x":5,"y":19},{"x":55,"y":-1},{"x":-43,"y":12},{"x":-2,"y":56},{"x":46,"y":5},{"x":31,"y":-59},{"x":34,"y":28},{"x":-32,"y":30},{"x":44,"y":-22},{"x":30,"y":22},{"x":31,"y":-42},{"x":43,"y":30},{"x":-33,"y":29},{"x":56,"y":61},{"x":65,"y":-6},{"x":6,"y":47},{"x":34,"y":6},{"x":-41,"y":61},{"x":73,"y":-30},{"x":-12,"y":-14},{"x":72,"y":30},{"x":-10,"y":-19},{"x":30,"y":-10},{"x":46,"y":9},{"x":-32,"y":40},{"x":27,"y":16},{"x":50,"y":-25},{"x":13,"y":-37}],"type":"coastline"},{"arc":[{"x":116279,"y":74130},{"x":-145,"y":-37},{"x":-28,"y":-39},{"x":-85,"y":-29},{"x":-8,"y":-48},{"x":-69,"y":103},{"x":-46,"y":-5}],"type":"admin"},{"arc":[{"x":115898,"y":74075},{"x":-71,"y":-99},{"x":-193,"y":-48},{"x":2,"y":-110},{"x":-33,"y":-32},{"x":-122,"y":67}],"type":"admin"},{"arc":[{"x":115481,"y":73853},{"x":-71,"y":-58},{"x":12,"y":-119},{"x":-34,"y":7},{"x":22,"y":-24},{"x":-59,"y":-15},{"x":-37,"y":-83},{"x":-13,"y":-156},{"x":-52,"y":2},{"x":-66,"y":-51},{"x":39,"y":-94},{"x":-45,"y":-106},{"x":-39,"y":-56},{"x":-78,"y":6},{"x":-45,"y":-162},{"x":-125,"y":67},{"x":-125,"y":-35},{"x":25,"y":-52},{"x":-89,"y":-112},{"x":62,"y":-72},{"x":1,"y":-48},{"x":-31,"y":-47},{"x":-49,"y":-16},{"x":12,"y":-73}],"type":"area"},{"arc":[{"x":114696,"y":72556},{"x":102,"y":56},{"x":127,"y":-3},{"x":54,"y":-30},{"x":20,"y":-47},{"x":302,"y":-77},{"x":84,"y":19},{"x":12,"y":-49}],"type":"admin"},{"arc":[{"x":115397,"y":72425},{"x":106,"y":-104},{"x":-32,"y":-117},{"x":143,"y":10},{"x":18,"y":-36},{"x":34,"y":-2},{"x":-5,"y":-26},{"x":137,"y":6},{"x":39,"y":-72},{"x":84,"y":8},{"x":213,"y":-93}],"type":"admin"},{"arc":[{"x":114795,"y":74399},{"x":-8,"y":-36},{"x":-65,"y":27},{"x":-64,"y":-24},{"x":-43,"y":14},{"x":8,"y":45},{"x":-86,"y":33},{"x":-8,"y":25},{"x":-17,"y":-66},{"x":-45,"y":-23},{"x":46,"y":71},{"x":-14,"y":49},{"x":-98,"y":53},{"x":-75,"y":-32},{"x":-49,"y":36},{"x":-49,"y":-15},{"x":-17,"y":46},{"x":-50,"y":3},{"x":-86,"y":98},{"x":-33,"y":15},{"x":11,"y":-17},{"x":-25,"y":-7},{"x":15,"y":40},{"x":-30,"y":-19},{"x":-63,"y":100}],"type":"coastline"},{"arc":[{"x":113950,"y":74815},{"x":-138,"y":-167},{"x":-38,"y":-110},{"x":-162,"y":-223},{"x":-21,"y":-63},{"x":52,"y":-13},{"x":-42,"y":-8},{"x":2,"y":-30},{"x":-118,"y":-139},{"x":-163,"y":-15},{"x":-58,"y":-44},{"x":-37,"y":-32},{"x":-9,"y":-79},{"x":-71,"y":-46}],"type":"admin"},{"arc":[{"x":113147,"y":73846},{"x":-21,"y":-153},{"x":85,"y":-103},{"x":145,"y":-70}],"type":"admin"},{"arc":[{"x":113356,"y":73520},{"x":45,"y":30},{"x":86,"y":-49},{"x":127,"y":21},{"x":14,"y":-49},{"x":62,"y":-23},{"x":161,"y":75},{"x":251,"y":31},{"x":81,"y":-67},{"x":46,"y":10},{"x":78,"y":-32},{"x":185,"y":243},{"x":67,"y":-14},{"x":-14,"y":143},{"x":76,"y":-47},{"x":-9,"y":53},{"x":34,"y":45},{"x":40,"y":-6},{"x":32,"y":53},{"x":70,"y":-66},{"x":71,"y":30},{"x":0,"y":27},{"x":61,"y":-33},{"x":39,"y":16}],"type":"area"},{"arc":[{"x":114959,"y":73911},{"x":-21,"y":101},{"x":27,"y":36},{"x":4,"y":157},{"x":-39,"y":20},{"x":1,"y":84},{"x":-66,"y":19},{"x":10,"y":54},{"x":-80,"y":17}],"type":"admin"},{"arc":[{"x":115745,"y":75436},{"x":54,"y":-121},{"x":-38,"y":-162},{"x":150,"y":-122}],"type":"admin"},{"arc":[{"x":115911,"y":75031},{"x":28,"y":33},{"x":-30,"y":57},{"x":66,"y":20},{"x":41,"y":-22},{"x":20,"y":-77},{"x":73,"y":-16},{"x":-22,"y":-58},{"x":100,"y":-58},{"x":12,"y":-174},{"x":50,"y":-30},{"x":60,"y":6},{"x":79,"y":61}],"type":"admin"},{"arc":[{"x":113356,"y":73520},{"x":-2,"y":-19}],"type":"admin"},{"arc":[{"x":113354,"y":73501},{"x":59,"y":-47},{"x":49,"y":-105},{"x":96,"y":0},{"x":15,"y":-38},{"x":-47,"y":-97},{"x":27,"y":-68},{"x":69,"y":-29},{"x":10,"y":-49},{"x":78,"y":-13},{"x":89,"y":-63},{"x":73,"y":30},{"x":155,"y":-139},{"x":200,"y":-448},{"x":61,"y":1},{"x":43,"y":-47},{"x":88,"y":-18},{"x":30,"y":-114}],"type":"admin"},{"arc":[{"x":114449,"y":72257},{"x":97,"y":41},{"x":96,"y":-11}],"type":"admin"},{"arc":[{"x":114642,"y":72287},{"x":88,"y":136},{"x":-34,"y":133}],"type":"admin"},{"arc":[{"x":115481,"y":73853},{"x":-26,"y":29},{"x":-103,"y":5},{"x":-124,"y":85},{"x":-132,"y":-46},{"x":-13,"y":-60},{"x":-75,"y":-78},{"x":-45,"y":21},{"x":-2,"y":56},{"x":-22,"y":0},{"x":20,"y":46}],"type":"admin"},{"arc":[{"x":118682,"y":76970},{"x":-145,"y":-2},{"x":-46,"y":55},{"x":-66,"y":4},{"x":-120,"y":-64},{"x":-18,"y":-110},{"x":-53,"y":-20},{"x":-144,"y":76},{"x":-5,"y":50},{"x":-90,"y":-18},{"x":-71,"y":40},{"x":-38,"y":-19},{"x":-336,"y":85},{"x":-196,"y":-30},{"x":-32,"y":9},{"x":3,"y":38},{"x":-442,"y":100},{"x":12,"y":41},{"x":30,"y":6}],"type":"admin"},{"arc":[{"x":116925,"y":77211},{"x":-14,"y":48},{"x":-42,"y":-20},{"x":3,"y":27},{"x":-90,"y":0},{"x":-74,"y":30},{"x":-8,"y":80}],"type":"admin"},{"arc":[{"x":118303,"y":77309},{"x":-46,"y":8},{"x":-33,"y":59},{"x":-66,"y":23},{"x":-201,"y":-19},{"x":-7,"y":-25},{"x":-97,"y":-47},{"x":-298,"y":82},{"x":-4,"y":-34},{"x":-262,"y":-22},{"x":-152,"y":-79},{"x":-79,"y":4}],"type":"area"},{"arc":[{"x":117058,"y":77259},{"x":-80,"y":-8},{"x":-7,"y":-52},{"x":-46,"y":12}],"type":"area"},{"arc":[{"x":118346,"y":77429},{"x":-551,"y":73},{"x":-82,"y":-26},{"x":-7,"y":37},{"x":-51,"y":-12},{"x":-48,"y":43},{"x":-46,"y":-87},{"x":-156,"y":21},{"x":-41,"y":9},{"x":7,"y":38},{"x":-49,"y":9},{"x":9,"y":40},{"x":-70,"y":26},{"x":8,"y":30},{"x":-25,"y":6},{"x":-53,"y":-92},{"x":-62,"y":6},{"x":-42,"y":-27},{"x":-13,"y":-71},{"x":59,"y":-20},{"x":13,"y":-45},{"x":-21,"y":-27},{"x":-67,"y":4},{"x":0,"y":-105}],"type":"area"},{"arc":[{"x":119288,"y":71490},{"x":-22,"y":27},{"x":-34,"y":-16},{"x":56,"y":-11}],"type":"coastline"},{"arc":[{"x":118964,"y":71525},{"x":37,"y":-2},{"x":-4,"y":-28},{"x":19,"y":31},{"x":60,"y":16},{"x":15,"y":20},{"x":-41,"y":39},{"x":54,"y":-23},{"x":82,"y":5},{"x":48,"y":-48},{"x":6,"y":50},{"x":10,"y":-46},{"x":41,"y":-39},{"x":29,"y":6},{"x":-71,"y":-94},{"x":64,"y":-91},{"x":60,"y":141},{"x":76,"y":-77},{"x":51,"y":-14},{"x":-3,"y":-21},{"x":35,"y":19},{"x":-11,"y":53},{"x":176,"y":-124},{"x":34,"y":45},{"x":49,"y":-13},{"x":-11,"y":30},{"x":36,"y":8},{"x":14,"y":-60},{"x":43,"y":-25},{"x":20,"y":27},{"x":-41,"y":93},{"x":9,"y":59},{"x":-63,"y":27},{"x":-12,"y":31},{"x":-62,"y":-2},{"x":-10,"y":67},{"x":73,"y":-5}],"type":"coastline"},{"arc":[{"x":115397,"y":72425},{"x":-27,"y":-42},{"x":4,"y":-94},{"x":-45,"y":-80},{"x":30,"y":-58},{"x":-56,"y":-71},{"x":24,"y":-102},{"x":-47,"y":-75},{"x":73,"y":-28},{"x":1,"y":-63},{"x":36,"y":-23},{"x":5,"y":-46}],"type":"admin"},{"arc":[{"x":115395,"y":71743},{"x":49,"y":-34},{"x":23,"y":-120},{"x":81,"y":-64},{"x":-6,"y":-90},{"x":-45,"y":-52},{"x":142,"y":-214},{"x":168,"y":-4},{"x":51,"y":-69},{"x":119,"y":-33},{"x":96,"y":29},{"x":27,"y":35},{"x":117,"y":-33},{"x":78,"y":44}],"type":"admin"},{"arc":[{"x":116269,"y":74358},{"x":-97,"y":-7},{"x":-4,"y":28},{"x":-133,"y":105},{"x":-26,"y":-37},{"x":-64,"y":8}],"type":"area"},{"arc":[{"x":115945,"y":74455},{"x":-58,"y":-92},{"x":-25,"y":2},{"x":-15,"y":45},{"x":-61,"y":-35},{"x":91,"y":-174},{"x":92,"y":-3},{"x":-24,"y":-40},{"x":-74,"y":-6},{"x":-3,"y":-62},{"x":30,"y":-15}],"type":"area"},{"arc":[{"x":115911,"y":75031},{"x":-76,"y":-92},{"x":32,"y":-141},{"x":-31,"y":-19},{"x":-100,"y":12},{"x":-46,"y":-72},{"x":57,"y":-70},{"x":40,"y":-174},{"x":51,"y":-11},{"x":58,"y":64},{"x":49,"y":-73}],"type":"area"},{"arc":[{"x":115736,"y":75450},{"x":-22,"y":-17},{"x":-84,"y":30},{"x":-237,"y":-97},{"x":-240,"y":-341},{"x":-72,"y":17},{"x":-128,"y":-225},{"x":-28,"y":13},{"x":21,"y":-25},{"x":-18,"y":16},{"x":17,"y":-16},{"x":-217,"y":-198},{"x":67,"y":-208}],"type":"coastline"},{"arc":[{"x":112776,"y":75376},{"x":-32,"y":10},{"x":-31,"y":-43},{"x":22,"y":-15},{"x":-27,"y":10},{"x":-30,"y":-23},{"x":53,"y":-57},{"x":57,"y":45},{"x":-11,"y":49},{"x":23,"y":14},{"x":-24,"y":10}],"type":"coastline"},{"arc":[{"x":112762,"y":75165},{"x":31,"y":-52},{"x":38,"y":-501},{"x":116,"y":-64},{"x":-43,"y":-56},{"x":-1,"y":-74},{"x":44,"y":-229},{"x":38,"y":-64},{"x":2,"y":-167}],"type":"admin"},{"arc":[{"x":112987,"y":73958},{"x":54,"y":-11},{"x":106,"y":-101}],"type":"admin"},{"arc":[{"x":113950,"y":74815},{"x":-81,"y":-9},{"x":-26,"y":40},{"x":-13,"y":-19},{"x":-72,"y":3},{"x":-71,"y":54},{"x":28,"y":-6},{"x":-25,"y":66},{"x":-3,"y":-47},{"x":-65,"y":25},{"x":-4,"y":27},{"x":-18,"y":-39},{"x":6,"y":22},{"x":-34,"y":-17},{"x":-42,"y":30},{"x":1,"y":-33},{"x":-14,"y":26},{"x":37,"y":37},{"x":-59,"y":-41},{"x":-43,"y":68},{"x":-85,"y":-4},{"x":-58,"y":25},{"x":-6,"y":-32},{"x":-5,"y":59},{"x":-52,"y":13},{"x":-66,"y":-26},{"x":-21,"y":43},{"x":39,"y":52},{"x":-8,"y":48},{"x":-31,"y":3},{"x":-39,"y":58},{"x":-35,"y":-5},{"x":-11,"y":-33},{"x":-35,"y":20},{"x":12,"y":61},{"x":32,"y":-7},{"x":-50,"y":20},{"x":-23,"y":44},{"x":-3,"y":-13},{"x":-37,"y":48},{"x":-17,"y":8},{"x":16,"y":-9},{"x":-12,"y":-14},{"x":-4,"y":20},{"x":-4,"y":-17},{"x":-141,"y":21},{"x":32,"y":-31},{"x":-32,"y":-9},{"x":14,"y":-19},{"x":-28,"y":17},{"x":-4,"y":-72},{"x":-25,"y":-14},{"x":-12,"y":-23},{"x":-16,"y":16},{"x":17,"y":-17},{"x":20,"y":25},{"x":-19,"y":-29},{"x":7,"y":-64}],"type":"coastline"},{"arc":[{"x":107873,"y":70853},{"x":-67,"y":41},{"x":-107,"y":8},{"x":-14,"y":-79},{"x":-84,"y":-88},{"x":56,"y":-22},{"x":31,"y":21},{"x":118,"y":3},{"x":54,"y":38},{"x":-14,"y":48},{"x":-42,"y":25},{"x":69,"y":5}],"type":"coastline"},{"arc":[{"x":107889,"y":70835},{"x":-22,"y":8},{"x":-13,"y":-40},{"x":35,"y":32}],"type":"coastline"},{"arc":[{"x":109092,"y":70488},{"x":-7,"y":32},{"x":-26,"y":-25},{"x":31,"y":56},{"x":-34,"y":1},{"x":-6,"y":23},{"x":-65,"y":-45},{"x":-13,"y":25},{"x":-39,"y":0},{"x":40,"y":19},{"x":-85,"y":-24},{"x":-36,"y":-37},{"x":28,"y":9},{"x":139,"y":-87},{"x":73,"y":53}],"type":"coastline"},{"arc":[{"x":109540,"y":70794},{"x":-44,"y":-5},{"x":-34,"y":56},{"x":-45,"y":-1},{"x":-32,"y":-61},{"x":127,"y":-84},{"x":28,"y":95}],"type":"coastline"},{"arc":[{"x":109701,"y":70592},{"x":-43,"y":44},{"x":14,"y":31},{"x":-63,"y":41},{"x":23,"y":25},{"x":-80,"y":73},{"x":-27,"y":-80},{"x":20,"y":-49},{"x":29,"y":-3},{"x":52,"y":-80},{"x":75,"y":-2}],"type":"coastline"},{"arc":[{"x":110295,"y":72703},{"x":-41,"y":49},{"x":14,"y":108},{"x":-69,"y":-27},{"x":-17,"y":20},{"x":-8,"y":-22},{"x":-33,"y":39},{"x":36,"y":36},{"x":-31,"y":27},{"x":34,"y":0},{"x":-34,"y":16},{"x":-54,"y":-53},{"x":33,"y":-11},{"x":-18,"y":-49},{"x":36,"y":-37},{"x":-13,"y":-47},{"x":39,"y":2},{"x":32,"y":-48},{"x":4,"y":25},{"x":76,"y":-44},{"x":14,"y":16}],"type":"coastline"},{"arc":[{"x":110683,"y":70593},{"x":-3,"y":15},{"x":-34,"y":-19},{"x":-5,"y":-54},{"x":42,"y":58}],"type":"coastline"},{"arc":[{"x":111640,"y":69252},{"x":-4,"y":-27},{"x":23,"y":17},{"x":-19,"y":10}],"type":"coastline"},{"arc":[{"x":111662,"y":68466},{"x":-22,"y":90},{"x":-26,"y":-64},{"x":29,"y":-56},{"x":19,"y":30}],"type":"coastline"},{"arc":[{"x":111794,"y":70956},{"x":-30,"y":67},{"x":-24,"y":-17},{"x":26,"y":-47},{"x":28,"y":-3}],"type":"coastline"},{"arc":[{"x":111928,"y":68946},{"x":-37,"y":58},{"x":-15,"y":-52},{"x":3,"y":57},{"x":-68,"y":-53},{"x":-16,"y":-128},{"x":55,"y":18},{"x":78,"y":100}],"type":"coastline"},{"arc":[{"x":112246,"y":71020},{"x":-19,"y":17},{"x":24,"y":5},{"x":-2,"y":52},{"x":-46,"y":-29},{"x":26,"y":-95},{"x":17,"y":50}],"type":"coastline"},{"arc":[{"x":112823,"y":71064},{"x":-68,"y":92},{"x":-106,"y":-11},{"x":-13,"y":39},{"x":-26,"y":-8},{"x":5,"y":-29},{"x":-14,"y":29},{"x":-27,"y":-21},{"x":-14,"y":23},{"x":-55,"y":-12},{"x":36,"y":-46},{"x":-80,"y":52},{"x":-8,"y":-44},{"x":-84,"y":34},{"x":-78,"y":-34},{"x":-6,"y":-41},{"x":-33,"y":8},{"x":13,"y":-83},{"x":59,"y":-40},{"x":36,"y":22},{"x":-2,"y":-33},{"x":36,"y":45},{"x":28,"y":-33},{"x":58,"y":49},{"x":4,"y":-32},{"x":42,"y":27},{"x":-2,"y":-48},{"x":-67,"y":-13},{"x":-3,"y":-24},{"x":20,"y":19},{"x":69,"y":-6},{"x":18,"y":34},{"x":20,"y":-24},{"x":20,"y":21},{"x":39,"y":-19},{"x":25,"y":33},{"x":64,"y":-14},{"x":-74,"y":-125},{"x":-95,"y":-32},{"x":-55,"y":18},{"x":-39,"y":-16},{"x":-31,"y":37},{"x":-8,"y":-33},{"x":-16,"y":29},{"x":-16,"y":-28},{"x":-7,"y":37},{"x":-86,"y":16},{"x":-31,"y":-43},{"x":-37,"y":55},{"x":20,"y":29},{"x":-27,"y":8},{"x":-34,"y":-38},{"x":37,"y":-30},{"x":-10,"y":-21},{"x":-80,"y":-18},{"x":-85,"y":42},{"x":-21,"y":28},{"x":67,"y":-19},{"x":11,"y":15},{"x":-42,"y":10},{"x":-20,"y":42},{"x":45,"y":-37},{"x":51,"y":13},{"x":-5,"y":25},{"x":-36,"y":0},{"x":34,"y":30},{"x":25,"y":-11},{"x":-13,"y":101},{"x":-78,"y":-35},{"x":-50,"y":25},{"x":-15,"y":-19},{"x":-24,"y":23},{"x":-16,"y":-14},{"x":-20,"y":54},{"x":25,"y":11},{"x":-105,"y":-26},{"x":3,"y":-31},{"x":-48,"y":-31},{"x":-36,"y":8},{"x":2,"y":-33},{"x":29,"y":14},{"x":14,"y":-17},{"x":-24,"y":-19},{"x":16,"y":-35},{"x":61,"y":-1},{"x":-17,"y":37},{"x":35,"y":-16},{"x":-52,"y":-61},{"x":-55,"y":-11},{"x":-43,"y":21},{"x":-24,"y":-32},{"x":-106,"y":2},{"x":81,"y":46},{"x":-32,"y":42}],"type":"coastline"},{"arc":[{"x":111672,"y":70962},{"x":-101,"y":-61},{"x":-5,"y":24},{"x":-80,"y":15},{"x":-24,"y":61},{"x":-142,"y":10},{"x":-84,"y":66},{"x":-9,"y":59},{"x":-61,"y":4},{"x":-64,"y":64},{"x":-103,"y":-37},{"x":-36,"y":12},{"x":35,"y":102},{"x":-25,"y":70},{"x":16,"y":50},{"x":-88,"y":-10},{"x":26,"y":81}],"type":"admin"},{"arc":[{"x":110927,"y":71472},{"x":-59,"y":32},{"x":-8,"y":33},{"x":-20,"y":-17},{"x":-86,"y":97},{"x":36,"y":38},{"x":88,"y":25},{"x":-4,"y":29},{"x":-45,"y":5},{"x":-59,"y":-34},{"x":-44,"y":17},{"x":82,"y":18},{"x":51,"y":53},{"x":17,"y":58},{"x":-41,"y":5},{"x":-11,"y":29},{"x":103,"y":97},{"x":-35,"y":107},{"x":20,"y":90},{"x":126,"y":122}],"type":"admin"},{"arc":[{"x":111038,"y":72276},{"x":-11,"y":72},{"x":-49,"y":35},{"x":41,"y":163},{"x":-113,"y":100},{"x":26,"y":97},{"x":78,"y":65},{"x":-119,"y":72},{"x":-40,"y":49},{"x":7,"y":54},{"x":-39,"y":5},{"x":-85,"y":-44},{"x":-125,"y":8},{"x":-95,"y":44},{"x":-100,"y":-70},{"x":-110,"y":40},{"x":-48,"y":-33}],"type":"area"},{"arc":[{"x":110256,"y":72933},{"x":36,"y":-83},{"x":2,"y":22},{"x":18,"y":-14},{"x":-29,"y":-38},{"x":38,"y":-53},{"x":12,"y":-138},{"x":-79,"y":-114},{"x":-57,"y":1},{"x":-14,"y":18},{"x":35,"y":-9},{"x":-184,"y":85},{"x":-65,"y":-37},{"x":-6,"y":-74},{"x":-51,"y":-53},{"x":-40,"y":-13},{"x":-34,"y":38},{"x":-109,"y":-92},{"x":68,"y":-23},{"x":2,"y":-28},{"x":-75,"y":-30},{"x":-17,"y":21},{"x":-21,"y":-23},{"x":-78,"y":-4},{"x":-21,"y":-40},{"x":80,"y":-91},{"x":-77,"y":12},{"x":-3,"y":-31},{"x":-24,"y":20},{"x":-6,"y":-22},{"x":-7,"y":32},{"x":28,"y":20},{"x":-154,"y":-17},{"x":-176,"y":-133},{"x":-66,"y":5},{"x":-82,"y":-65},{"x":-74,"y":0},{"x":-119,"y":-125},{"x":16,"y":-56},{"x":-34,"y":-60},{"x":-85,"y":-6},{"x":31,"y":-22},{"x":-40,"y":-40},{"x":21,"y":-31},{"x":-86,"y":-108},{"x":-11,"y":-62},{"x":46,"y":-81},{"x":-36,"y":12},{"x":-5,"y":-22},{"x":-2,"y":33},{"x":-69,"y":-61},{"x":-147,"y":28},{"x":-26,"y":-49},{"x":-73,"y":-27},{"x":-167,"y":-184},{"x":-115,"y":-83},{"x":-97,"y":-202},{"x":-40,"y":7},{"x":41,"y":-21},{"x":-1,"y":-38},{"x":-68,"y":-2},{"x":-2,"y":26},{"x":33,"y":-3},{"x":-39,"y":27},{"x":-19,"y":-40},{"x":-9,"y":24},{"x":-41,"y":-17},{"x":119,"y":-81},{"x":28,"y":-96},{"x":-38,"y":-41},{"x":7,"y":-52},{"x":-27,"y":-22},{"x":-11,"y":29},{"x":-39,"y":-34},{"x":3,"y":-69},{"x":-70,"y":-73},{"x":149,"y":-32},{"x":30,"y":68},{"x":115,"y":83},{"x":-35,"y":53},{"x":-56,"y":-15},{"x":-9,"y":-26},{"x":-41,"y":13},{"x":86,"y":54},{"x":34,"y":-2},{"x":19,"y":-44},{"x":31,"y":140},{"x":114,"y":136},{"x":57,"y":22},{"x":33,"y":-32},{"x":36,"y":75},{"x":-24,"y":20},{"x":20,"y":-15},{"x":16,"y":37},{"x":92,"y":13},{"x":54,"y":-18},{"x":27,"y":40},{"x":22,"y":-24},{"x":56,"y":57},{"x":23,"y":-16},{"x":63,"y":69},{"x":62,"y":22},{"x":26,"y":-20},{"x":31,"y":48},{"x":64,"y":27},{"x":-3,"y":41},{"x":-28,"y":9},{"x":16,"y":25},{"x":258,"y":-8},{"x":123,"y":17},{"x":-18,"y":10},{"x":23,"y":15},{"x":31,"y":-94},{"x":-22,"y":-17},{"x":-30,"y":36},{"x":-69,"y":-101},{"x":63,"y":-31},{"x":20,"y":-52},{"x":64,"y":-12},{"x":-22,"y":-33},{"x":53,"y":3},{"x":15,"y":31},{"x":20,"y":-20},{"x":-16,"y":95},{"x":-25,"y":2},{"x":-10,"y":38},{"x":35,"y":10},{"x":8,"y":71},{"x":37,"y":-12},{"x":42,"y":40},{"x":-30,"y":13},{"x":43,"y":-17},{"x":60,"y":23},{"x":26,"y":128},{"x":-161,"y":-43},{"x":-8,"y":-62},{"x":-114,"y":93},{"x":14,"y":17},{"x":32,"y":-13},{"x":-20,"y":10},{"x":10,"y":72},{"x":35,"y":6},{"x":24,"y":-46},{"x":50,"y":-1},{"x":29,"y":29},{"x":-54,"y":62},{"x":47,"y":56},{"x":29,"y":-7},{"x":-24,"y":-28},{"x":33,"y":-25},{"x":44,"y":12},{"x":-9,"y":71},{"x":10,"y":-22},{"x":190,"y":44},{"x":13,"y":95},{"x":61,"y":-35},{"x":137,"y":127},{"x":62,"y":-21},{"x":9,"y":27},{"x":30,"y":-2},{"x":-4,"y":-26},{"x":29,"y":-3},{"x":17,"y":33},{"x":6,"y":-56},{"x":-40,"y":-30},{"x":-15,"y":23},{"x":5,"y":-54},{"x":-9,"y":17},{"x":-44,"y":-45},{"x":-52,"y":25},{"x":-21,"y":-40},{"x":-11,"y":27},{"x":-38,"y":-13},{"x":-21,"y":-37},{"x":18,"y":-37},{"x":-29,"y":28},{"x":-30,"y":-47},{"x":-81,"y":-21},{"x":30,"y":-43},{"x":61,"y":-15},{"x":-88,"y":-40},{"x":54,"y":-5},{"x":-19,"y":-61},{"x":-86,"y":-21},{"x":51,"y":-74},{"x":-39,"y":-27},{"x":11,"y":-25},{"x":21,"y":37},{"x":152,"y":69},{"x":-9,"y":35},{"x":31,"y":29},{"x":51,"y":-5},{"x":30,"y":-57},{"x":51,"y":40},{"x":41,"y":-59},{"x":-76,"y":-82},{"x":-41,"y":1},{"x":44,"y":-31},{"x":33,"y":-90},{"x":50,"y":10},{"x":87,"y":90},{"x":52,"y":3},{"x":-17,"y":-51},{"x":11,"y":18},{"x":39,"y":-21},{"x":-11,"y":-21},{"x":-26,"y":25},{"x":-65,"y":-23},{"x":103,"y":-46},{"x":10,"y":-23},{"x":-35,"y":9},{"x":5,"y":-48},{"x":62,"y":-5},{"x":10,"y":-49},{"x":38,"y":91},{"x":73,"y":-4},{"x":19,"y":24},{"x":43,"y":-67},{"x":-4,"y":-58},{"x":55,"y":6},{"x":33,"y":-30},{"x":3,"y":30},{"x":25,"y":-90},{"x":56,"y":-18},{"x":8,"y":18},{"x":20,"y":-66},{"x":40,"y":7},{"x":-15,"y":-86},{"x":40,"y":-26},{"x":93,"y":49},{"x":11,"y":-20},{"x":23,"y":6},{"x":-28,"y":7},{"x":64,"y":33},{"x":18,"y":-30},{"x":-7,"y":35},{"x":65,"y":37},{"x":22,"y":-75},{"x":-61,"y":-32},{"x":-11,"y":19},{"x":33,"y":-78},{"x":-3,"y":25},{"x":55,"y":29},{"x":22,"y":-39},{"x":-25,"y":-13},{"x":-14,"y":21},{"x":-19,"y":-74},{"x":-43,"y":22},{"x":44,"y":-24},{"x":28,"y":14},{"x":-26,"y":-28},{"x":16,"y":-62},{"x":31,"y":18},{"x":-9,"y":-45},{"x":-32,"y":12},{"x":-25,"y":-32},{"x":3,"y":25},{"x":-14,"y":-26},{"x":-114,"y":-37},{"x":-26,"y":-29},{"x":29,"y":-6},{"x":-4,"y":-32},{"x":102,"y":-21},{"x":83,"y":-86},{"x":-2,"y":-44},{"x":147,"y":-12},{"x":20,"y":-46},{"x":-29,"y":18},{"x":23,"y":-27},{"x":-31,"y":-42},{"x":15,"y":-47},{"x":-32,"y":-26},{"x":115,"y":-16},{"x":0,"y":17},{"x":40,"y":-91},{"x":66,"y":-26},{"x":58,"y":-70},{"x":66,"y":5},{"x":109,"y":-71},{"x":144,"y":25},{"x":20,"y":-37},{"x":20,"y":-12},{"x":-32,"y":35},{"x":-3,"y":13},{"x":11,"y":4},{"x":9,"y":-23},{"x":49,"y":-3},{"x":32,"y":-49},{"x":111,"y":-43}],"type":"coastline"},{"arc":[{"x":109983,"y":76915},{"x":114,"y":-160},{"x":-62,"y":-14},{"x":13,"y":-54},{"x":65,"y":-42},{"x":-17,"y":-391},{"x":50,"y":-240}],"type":"area"},{"arc":[{"x":110146,"y":76014},{"x":36,"y":24},{"x":24,"y":214},{"x":110,"y":18},{"x":-41,"y":-130},{"x":60,"y":-43},{"x":-41,"y":-76},{"x":50,"y":-133},{"x":83,"y":-8},{"x":141,"y":32},{"x":-3,"y":92},{"x":94,"y":1},{"x":114,"y":89},{"x":355,"y":91},{"x":119,"y":4},{"x":36,"y":-21},{"x":57,"y":35},{"x":125,"y":13},{"x":107,"y":73},{"x":47,"y":73}],"type":"area"},{"arc":[{"x":111619,"y":76362},{"x":13,"y":17},{"x":-68,"y":77},{"x":18,"y":26},{"x":-27,"y":-21},{"x":-9,"y":39},{"x":28,"y":-11},{"x":-102,"y":97},{"x":-48,"y":20},{"x":-6,"y":-26},{"x":-2,"y":22},{"x":-436,"y":153},{"x":-4,"y":74},{"x":-19,"y":-21},{"x":-29,"y":26},{"x":-10,"y":-29},{"x":-20,"y":35},{"x":-79,"y":3},{"x":-241,"y":146},{"x":-12,"y":-16},{"x":62,"y":-18},{"x":-4,"y":-55},{"x":-5,"y":41},{"x":-16,"y":-16},{"x":-30,"y":44},{"x":-54,"y":1},{"x":0,"y":39},{"x":-27,"y":-8},{"x":23,"y":7},{"x":0,"y":-9},{"x":-19,"y":-9},{"x":9,"y":-15},{"x":-15,"y":-26},{"x":20,"y":-4},{"x":-24,"y":-1},{"x":-1,"y":27},{"x":-46,"y":-29},{"x":12,"y":-15},{"x":-47,"y":13},{"x":-25,"y":-30},{"x":-47,"y":23},{"x":25,"y":-15},{"x":-36,"y":-27},{"x":-45,"y":2},{"x":-24,"y":51},{"x":-26,"y":-11},{"x":15,"y":-18},{"x":-103,"y":38},{"x":-14,"y":-26},{"x":-19,"y":33},{"x":-91,"y":-7},{"x":-38,"y":-18},{"x":7,"y":-20}],"type":"coastline"},{"arc":[{"x":110201,"y":73039},{"x":-23,"y":20},{"x":-2,"y":-35},{"x":25,"y":15}],"type":"coastline"},{"arc":[{"x":110215,"y":73097},{"x":-50,"y":37},{"x":40,"y":-53},{"x":10,"y":16}],"type":"coastline"},{"arc":[{"x":110259,"y":73486},{"x":50,"y":-36},{"x":2,"y":28},{"x":-52,"y":8}],"type":"coastline"},{"arc":[{"x":110332,"y":73424},{"x":-19,"y":12},{"x":5,"y":-44},{"x":14,"y":32}],"type":"coastline"},{"arc":[{"x":111706,"y":72311},{"x":-48,"y":19},{"x":-7,"y":43},{"x":-6,"y":-35},{"x":33,"y":-51},{"x":28,"y":24}],"type":"coastline"},{"arc":[{"x":112762,"y":75165},{"x":-63,"y":-30},{"x":-69,"y":24},{"x":-53,"y":-37},{"x":5,"y":52},{"x":-58,"y":-49},{"x":-18,"y":33},{"x":-6,"y":-26},{"x":-49,"y":31},{"x":-44,"y":-16},{"x":-18,"y":-78},{"x":24,"y":-26},{"x":-30,"y":21},{"x":-14,"y":-57},{"x":-46,"y":-24},{"x":-48,"y":29},{"x":-20,"y":-36},{"x":-29,"y":21},{"x":-17,"y":-13},{"x":0,"y":-28},{"x":38,"y":-10},{"x":-29,"y":-26},{"x":27,"y":-66},{"x":-15,"y":-68},{"x":-15,"y":-15},{"x":-23,"y":23},{"x":-65,"y":-34},{"x":-14,"y":-35},{"x":27,"y":-26},{"x":-22,"y":5},{"x":2,"y":-28},{"x":-45,"y":18},{"x":-53,"y":-24},{"x":6,"y":-29},{"x":-368,"y":220}],"type":"coastline"},{"arc":[{"x":111660,"y":74861},{"x":-313,"y":-269},{"x":-57,"y":61},{"x":35,"y":30},{"x":-35,"y":15},{"x":-193,"y":-21},{"x":-48,"y":-50},{"x":-146,"y":-54},{"x":-27,"y":-110},{"x":-94,"y":56},{"x":-42,"y":-12},{"x":-17,"y":43}],"type":"area"},{"arc":[{"x":110723,"y":74550},{"x":-78,"y":-92},{"x":-27,"y":-88},{"x":75,"y":-241},{"x":12,"y":-205},{"x":-29,"y":-12},{"x":-18,"y":33},{"x":-39,"y":-185},{"x":-94,"y":-131},{"x":-180,"y":-162},{"x":-18,"y":-121},{"x":-9,"y":42},{"x":-66,"y":-66},{"x":12,"y":-129},{"x":-24,"y":-82},{"x":36,"y":-13},{"x":18,"y":-49},{"x":-26,"y":-1},{"x":-6,"y":-34},{"x":-7,"y":36},{"x":-8,"y":-40},{"x":-46,"y":3},{"x":-15,"y":-42},{"x":32,"y":-42},{"x":38,"y":4}],"type":"coastline"},{"arc":[{"x":111038,"y":72276},{"x":91,"y":-28},{"x":74,"y":-59},{"x":-3,"y":-34},{"x":109,"y":-68},{"x":1,"y":-47},{"x":120,"y":-77},{"x":43,"y":-2},{"x":18,"y":-37},{"x":86,"y":-11},{"x":63,"y":-38},{"x":38,"y":18},{"x":-4,"y":33}],"type":"admin"},{"arc":[{"x":111674,"y":71926},{"x":-32,"y":43},{"x":145,"y":32},{"x":-27,"y":65},{"x":-72,"y":16},{"x":-52,"y":32},{"x":35,"y":29},{"x":-62,"y":14},{"x":34,"y":63},{"x":-56,"y":55},{"x":29,"y":65},{"x":-84,"y":-32},{"x":-34,"y":62},{"x":60,"y":80},{"x":15,"y":111},{"x":-25,"y":-19},{"x":-83,"y":87},{"x":-93,"y":-14},{"x":-6,"y":101},{"x":37,"y":40},{"x":-2,"y":42},{"x":-57,"y":9},{"x":-14,"y":43},{"x":-43,"y":-39},{"x":-37,"y":3},{"x":6,"y":46},{"x":-18,"y":-10},{"x":1,"y":16},{"x":47,"y":-4},{"x":3,"y":31},{"x":-59,"y":9},{"x":-1,"y":18},{"x":72,"y":-1},{"x":-15,"y":192},{"x":43,"y":-15}],"type":"coastline"},{"arc":[{"x":111329,"y":73096},{"x":85,"y":110},{"x":44,"y":9},{"x":58,"y":-24},{"x":50,"y":20},{"x":98,"y":1},{"x":38,"y":-29},{"x":48,"y":14},{"x":53,"y":-49},{"x":112,"y":19},{"x":37,"y":30},{"x":481,"y":44},{"x":131,"y":36},{"x":58,"y":115},{"x":130,"y":94},{"x":-20,"y":153},{"x":32,"y":23},{"x":-54,"y":71},{"x":60,"y":112},{"x":120,"y":16},{"x":33,"y":70},{"x":64,"y":27}],"type":"area"},{"arc":[{"x":115619,"y":66290},{"x":-7,"y":31},{"x":-60,"y":-9},{"x":82,"y":-65},{"x":17,"y":37},{"x":-32,"y":6}],"type":"coastline"},{"arc":[{"x":115709,"y":66224},{"x":-30,"y":31},{"x":-22,"y":-42},{"x":-35,"y":1},{"x":-5,"y":-35},{"x":79,"y":3},{"x":13,"y":42}],"type":"coastline"},{"arc":[{"x":115783,"y":66280},{"x":-43,"y":-14},{"x":27,"y":-25},{"x":16,"y":39}],"type":"coastline"},{"arc":[{"x":115995,"y":66368},{"x":-30,"y":-24},{"x":-33,"y":9},{"x":22,"y":-30},{"x":22,"y":-2},{"x":19,"y":47}],"type":"coastline"},{"arc":[{"x":116338,"y":66244},{"x":-29,"y":21},{"x":17,"y":-35},{"x":12,"y":14}],"type":"coastline"},{"arc":[{"x":116500,"y":66248},{"x":-35,"y":-5},{"x":-18,"y":-49},{"x":53,"y":54}],"type":"coastline"},{"arc":[{"x":116899,"y":68018},{"x":-32,"y":27},{"x":24,"y":-35},{"x":31,"y":1},{"x":-23,"y":7}],"type":"coastline"},{"arc":[{"x":117006,"y":68073},{"x":-24,"y":-1},{"x":-1,"y":-39},{"x":25,"y":40}],"type":"coastline"},{"arc":[{"x":117023,"y":66986},{"x":-17,"y":17},{"x":-5,"y":-25},{"x":22,"y":8}],"type":"coastline"},{"arc":[{"x":117181,"y":68716},{"x":-26,"y":28},{"x":-9,"y":-39},{"x":35,"y":11}],"type":"coastline"},{"arc":[{"x":117888,"y":69265},{"x":-22,"y":-27},{"x":-79,"y":21},{"x":-19,"y":-28},{"x":-29,"y":25},{"x":-41,"y":-30},{"x":-58,"y":21}],"type":"area"},{"arc":[{"x":117640,"y":69247},{"x":-65,"y":14},{"x":-31,"y":-20},{"x":26,"y":-64},{"x":-49,"y":-48},{"x":-90,"y":40},{"x":21,"y":-48},{"x":-67,"y":-138},{"x":-81,"y":1},{"x":-14,"y":26}],"type":"area"},{"arc":[{"x":117290,"y":69010},{"x":-43,"y":-112},{"x":-85,"y":-48},{"x":-3,"y":-45},{"x":24,"y":-43},{"x":59,"y":-5},{"x":-7,"y":-31},{"x":-44,"y":-18},{"x":20,"y":-40},{"x":59,"y":15},{"x":12,"y":-42},{"x":84,"y":-44},{"x":45,"y":-64},{"x":78,"y":-8},{"x":30,"y":19},{"x":-40,"y":118},{"x":31,"y":14},{"x":54,"y":-41},{"x":118,"y":-5},{"x":53,"y":32},{"x":128,"y":18},{"x":40,"y":-25},{"x":-37,"y":26},{"x":30,"y":8},{"x":99,"y":-91},{"x":20,"y":17},{"x":60,"y":-13},{"x":-17,"y":55},{"x":61,"y":35},{"x":-41,"y":49},{"x":55,"y":163},{"x":-81,"y":-39},{"x":0,"y":-34},{"x":-53,"y":25},{"x":-28,"y":-13},{"x":25,"y":43},{"x":47,"y":5},{"x":-19,"y":68},{"x":-57,"y":29},{"x":68,"y":55},{"x":-6,"y":38},{"x":39,"y":34},{"x":-52,"y":-16},{"x":-91,"y":85},{"x":-25,"y":-17},{"x":-12,"y":98}],"type":"coastline"},{"arc":[{"x":118172,"y":68886},{"x":-56,"y":87},{"x":50,"y":-105},{"x":6,"y":18}],"type":"coastline"},{"arc":[{"x":118256,"y":67227},{"x":-34,"y":1},{"x":61,"y":13},{"x":-27,"y":-14}],"type":"coastline"},{"arc":[{"x":118487,"y":68454},{"x":-109,"y":48},{"x":-57,"y":-33},{"x":-77,"y":77},{"x":-3,"y":-99},{"x":-29,"y":59},{"x":-26,"y":-24},{"x":-5,"y":31},{"x":20,"y":-6},{"x":-14,"y":13},{"x":-34,"y":-18},{"x":-15,"y":39},{"x":-64,"y":-47},{"x":-52,"y":-5},{"x":-47,"y":-50},{"x":20,"y":56},{"x":-44,"y":8},{"x":-14,"y":30},{"x":-3,"y":-39},{"x":-8,"y":38},{"x":-83,"y":50},{"x":3,"y":37},{"x":-23,"y":-4},{"x":-29,"y":-43},{"x":10,"y":-54},{"x":-87,"y":-155},{"x":-111,"y":4},{"x":-48,"y":-49},{"x":-70,"y":31},{"x":30,"y":-87},{"x":-33,"y":-23},{"x":-1,"y":-90},{"x":-53,"y":-48},{"x":47,"y":-1},{"x":8,"y":-67},{"x":-86,"y":22},{"x":-39,"y":66},{"x":-82,"y":35},{"x":-1,"y":61},{"x":-34,"y":5},{"x":-106,"y":-49},{"x":17,"y":-95},{"x":-46,"y":-88},{"x":18,"y":10},{"x":14,"y":-24},{"x":-40,"y":-43},{"x":7,"y":-38},{"x":-26,"y":52},{"x":-87,"y":20},{"x":-18,"y":50},{"x":-33,"y":-23},{"x":-18,"y":-103},{"x":-46,"y":-53},{"x":34,"y":-28},{"x":69,"y":5},{"x":-37,"y":-57},{"x":3,"y":-108},{"x":-10,"y":119},{"x":-41,"y":-29},{"x":-79,"y":42},{"x":32,"y":9},{"x":-28,"y":73},{"x":-33,"y":-18},{"x":20,"y":20},{"x":-96,"y":73},{"x":-35,"y":-31},{"x":-92,"y":-4},{"x":-90,"y":-78},{"x":-14,"y":-62},{"x":-119,"y":-27},{"x":-148,"y":-132},{"x":-202,"y":-89},{"x":2,"y":-108},{"x":-56,"y":-28},{"x":-12,"y":24},{"x":25,"y":13},{"x":-57,"y":-17},{"x":7,"y":-54},{"x":-116,"y":-48},{"x":-87,"y":-90},{"x":-38,"y":-113},{"x":-57,"y":-52},{"x":-33,"y":-135},{"x":-94,"y":-117},{"x":-51,"y":-243},{"x":95,"y":-81},{"x":69,"y":-143},{"x":84,"y":103},{"x":4,"y":-43},{"x":16,"y":37},{"x":5,"y":-22},{"x":22,"y":7},{"x":-7,"y":26},{"x":24,"y":-26},{"x":-50,"y":-33},{"x":104,"y":30},{"x":50,"y":-48},{"x":67,"y":53},{"x":-24,"y":17},{"x":-37,"y":-20},{"x":7,"y":66},{"x":-74,"y":19},{"x":-65,"y":56},{"x":-62,"y":-50},{"x":-3,"y":31},{"x":23,"y":-3},{"x":28,"y":42},{"x":-22,"y":16},{"x":-35,"y":-27},{"x":-27,"y":24},{"x":3,"y":87},{"x":32,"y":33},{"x":-40,"y":28},{"x":31,"y":30},{"x":-36,"y":28},{"x":33,"y":14},{"x":-41,"y":35},{"x":-17,"y":-26},{"x":8,"y":28},{"x":-29,"y":19},{"x":51,"y":1},{"x":31,"y":43},{"x":65,"y":-17},{"x":54,"y":51},{"x":25,"y":-10},{"x":-26,"y":-8},{"x":10,"y":-30},{"x":-9,"y":29},{"x":25,"y":8},{"x":14,"y":-34},{"x":-29,"y":-11},{"x":35,"y":-6},{"x":-32,"y":-86},{"x":40,"y":-6},{"x":99,"y":-125},{"x":159,"y":-11},{"x":90,"y":30},{"x":-7,"y":39},{"x":31,"y":-23},{"x":10,"y":66},{"x":121,"y":83},{"x":-30,"y":90},{"x":32,"y":13},{"x":-11,"y":31},{"x":-74,"y":41},{"x":-40,"y":73},{"x":-53,"y":17},{"x":31,"y":25},{"x":33,"y":-38},{"x":108,"y":-24},{"x":-8,"y":32},{"x":-84,"y":46},{"x":64,"y":50},{"x":-17,"y":23},{"x":22,"y":9},{"x":15,"y":-41},{"x":-32,"y":-41},{"x":43,"y":-11},{"x":14,"y":-37},{"x":78,"y":46},{"x":-15,"y":-26},{"x":33,"y":-26},{"x":-19,"y":-47},{"x":36,"y":-2},{"x":-5,"y":-30},{"x":-34,"y":7},{"x":28,"y":-54},{"x":44,"y":-3},{"x":28,"y":-46},{"x":21,"y":56},{"x":55,"y":11},{"x":-13,"y":-19},{"x":19,"y":7},{"x":53,"y":-76},{"x":32,"y":44},{"x":46,"y":-38},{"x":33,"y":39},{"x":60,"y":-22},{"x":-34,"y":82},{"x":64,"y":99},{"x":-16,"y":41},{"x":56,"y":-13},{"x":-7,"y":-51},{"x":87,"y":30},{"x":-14,"y":38},{"x":38,"y":140},{"x":-26,"y":-3},{"x":9,"y":17},{"x":-18,"y":-20},{"x":-9,"y":25},{"x":34,"y":42},{"x":26,"y":-29},{"x":39,"y":26},{"x":39,"y":-45},{"x":-6,"y":-42},{"x":56,"y":25},{"x":6,"y":-46},{"x":16,"y":35},{"x":28,"y":-24},{"x":23,"y":23},{"x":3,"y":-34},{"x":-6,"y":10},{"x":-25,"y":-13},{"x":22,"y":8},{"x":65,"y":-46},{"x":40,"y":54},{"x":86,"y":-8},{"x":8,"y":62},{"x":23,"y":-15},{"x":56,"y":21},{"x":92,"y":-44},{"x":9,"y":31},{"x":14,"y":-16},{"x":24,"y":18},{"x":31,"y":-57},{"x":42,"y":6},{"x":13,"y":37},{"x":39,"y":6},{"x":-30,"y":26},{"x":-13,"y":104},{"x":67,"y":133},{"x":-10,"y":67},{"x":-33,"y":25},{"x":66,"y":58},{"x":-5,"y":176},{"x":23,"y":34},{"x":20,"y":-19},{"x":97,"y":66},{"x":96,"y":-33},{"x":-9,"y":49},{"x":52,"y":-20},{"x":54,"y":63},{"x":-21,"y":77},{"x":-41,"y":-6},{"x":-15,"y":31},{"x":-27,"y":-49},{"x":-79,"y":21},{"x":3,"y":-42},{"x":-21,"y":5},{"x":12,"y":33},{"x":-127,"y":-54},{"x":-36,"y":29},{"x":7,"y":78},{"x":23,"y":9},{"x":10,"y":-26},{"x":69,"y":29},{"x":43,"y":30},{"x":-7,"y":24},{"x":46,"y":14},{"x":12,"y":-26},{"x":92,"y":-23},{"x":10,"y":-32},{"x":27,"y":7},{"x":-56,"y":64},{"x":13,"y":80},{"x":-27,"y":-8},{"x":-27,"y":37},{"x":43,"y":2},{"x":17,"y":-24},{"x":-10,"y":77},{"x":61,"y":59},{"x":85,"y":-25},{"x":-32,"y":-45},{"x":52,"y":-6},{"x":11,"y":-29},{"x":-19,"y":-11},{"x":-2,"y":20},{"x":4,"y":-145},{"x":-28,"y":-74},{"x":55,"y":-43},{"x":11,"y":87},{"x":40,"y":-3},{"x":-14,"y":17},{"x":32,"y":-12},{"x":43,"y":-89},{"x":35,"y":53},{"x":49,"y":12},{"x":-26,"y":55},{"x":-41,"y":-26},{"x":19,"y":47},{"x":-24,"y":20},{"x":97,"y":97},{"x":11,"y":122}],"type":"coastline"},{"arc":[{"x":118695,"y":68233},{"x":-62,"y":20},{"x":39,"y":-30},{"x":23,"y":10}],"type":"coastline"},{"arc":[{"x":118881,"y":67214},{"x":-74,"y":-17},{"x":-45,"y":44},{"x":-7,"y":-31},{"x":-72,"y":-42},{"x":20,"y":-15},{"x":-57,"y":-8},{"x":-31,"y":16},{"x":8,"y":44},{"x":-139,"y":-56},{"x":-55,"y":69},{"x":-141,"y":25},{"x":16,"y":-12},{"x":-96,"y":-22},{"x":-6,"y":-29},{"x":-52,"y":14},{"x":7,"y":-19},{"x":-56,"y":-9},{"x":-168,"y":76},{"x":-101,"y":-2},{"x":74,"y":-5},{"x":-14,"y":-20},{"x":-54,"y":13},{"x":51,"y":-22},{"x":-14,"y":-22},{"x":-25,"y":0},{"x":8,"y":23},{"x":-43,"y":-2},{"x":7,"y":31},{"x":-28,"y":-17},{"x":-48,"y":-207},{"x":61,"y":-69},{"x":37,"y":-105},{"x":30,"y":-9},{"x":32,"y":67},{"x":333,"y":97},{"x":107,"y":-7},{"x":127,"y":94},{"x":158,"y":19},{"x":142,"y":-30},{"x":133,"y":145},{"x":-25,"y":0}],"type":"coastline"},{"arc":[{"x":119054,"y":68206},{"x":-48,"y":-8},{"x":-90,"y":142},{"x":-39,"y":13},{"x":24,"y":-79},{"x":-41,"y":-41},{"x":10,"y":47},{"x":-37,"y":-6},{"x":16,"y":-50},{"x":-31,"y":1},{"x":17,"y":-36},{"x":-36,"y":-85},{"x":-58,"y":-63},{"x":21,"y":7},{"x":-3,"y":-19},{"x":-67,"y":0},{"x":-8,"y":-81},{"x":128,"y":13},{"x":69,"y":157},{"x":89,"y":47},{"x":65,"y":5},{"x":19,"y":36}],"type":"coastline"},{"arc":[{"x":119767,"y":68474},{"x":-140,"y":-26},{"x":-34,"y":25},{"x":-49,"y":-6},{"x":39,"y":-7},{"x":-44,"y":-18},{"x":-31,"y":7},{"x":27,"y":11},{"x":-40,"y":-13},{"x":-19,"y":77},{"x":50,"y":61},{"x":33,"y":-25},{"x":26,"y":38},{"x":63,"y":-34},{"x":-53,"y":65},{"x":-18,"y":125},{"x":-18,"y":-36},{"x":-67,"y":-11},{"x":-13,"y":-40},{"x":-82,"y":6},{"x":-49,"y":-109},{"x":-57,"y":-31},{"x":10,"y":-58},{"x":49,"y":5},{"x":-109,"y":-51},{"x":40,"y":-98},{"x":24,"y":19},{"x":23,"y":-15},{"x":-29,"y":-23},{"x":21,"y":-11},{"x":-23,"y":-17},{"x":25,"y":-10},{"x":-11,"y":-25},{"x":42,"y":1},{"x":51,"y":-42},{"x":-10,"y":-35},{"x":6,"y":24},{"x":14,"y":-8},{"x":5,"y":6},{"x":9,"y":-17},{"x":7,"y":24},{"x":25,"y":-18},{"x":-52,"y":-43},{"x":24,"y":-47},{"x":-51,"y":-15},{"x":6,"y":-52},{"x":-116,"y":84},{"x":37,"y":-133},{"x":-39,"y":-48},{"x":6,"y":-75},{"x":105,"y":68},{"x":-1,"y":51},{"x":296,"y":256},{"x":-14,"y":24},{"x":33,"y":85},{"x":49,"y":41},{"x":24,"y":94}],"type":"coastline"},{"arc":[{"x":121031,"y":68459},{"x":-14,"y":36},{"x":-43,"y":-1},{"x":-30,"y":-63},{"x":19,"y":-17},{"x":22,"y":42},{"x":46,"y":3}],"type":"coastline"},{"arc":[{"x":117790,"y":71271},{"x":-62,"y":11},{"x":50,"y":-28},{"x":12,"y":17}],"type":"coastline"},{"arc":[{"x":117819,"y":70216},{"x":-20,"y":-45},{"x":29,"y":66},{"x":-9,"y":-21}],"type":"coastline"},{"arc":[{"x":116722,"y":70762},{"x":-40,"y":-29},{"x":25,"y":-80},{"x":110,"y":-81},{"x":-34,"y":-158},{"x":158,"y":-282},{"x":34,"y":-30},{"x":159,"y":15},{"x":-1,"y":-82},{"x":51,"y":14},{"x":49,"y":-48},{"x":16,"y":-238},{"x":-49,"y":-49},{"x":6,"y":-40},{"x":38,"y":-59},{"x":85,"y":6},{"x":44,"y":-32},{"x":-25,"y":-79},{"x":59,"y":-17},{"x":41,"y":-67},{"x":88,"y":-32},{"x":-8,"y":-47},{"x":63,"y":-31},{"x":49,"y":-69}],"type":"area"},{"arc":[{"x":117888,"y":69265},{"x":78,"y":-33},{"x":36,"y":20},{"x":-46,"y":16},{"x":-4,"y":96},{"x":-39,"y":20},{"x":10,"y":32},{"x":45,"y":-21},{"x":57,"y":27},{"x":-31,"y":57},{"x":19,"y":32},{"x":69,"y":7},{"x":2,"y":33},{"x":74,"y":66},{"x":40,"y":7},{"x":40,"y":-42},{"x":57,"y":18},{"x":64,"y":73},{"x":-65,"y":22},{"x":-13,"y":31},{"x":-35,"y":-3},{"x":-9,"y":67},{"x":-30,"y":20},{"x":-59,"y":-53},{"x":44,"y":-38},{"x":-12,"y":-29},{"x":-21,"y":30},{"x":-190,"y":-30},{"x":-34,"y":-16},{"x":55,"y":-27},{"x":-56,"y":-18},{"x":-36,"y":11},{"x":26,"y":19},{"x":-42,"y":34},{"x":-42,"y":-11},{"x":-68,"y":46},{"x":19,"y":94},{"x":87,"y":0},{"x":-2,"y":105},{"x":-78,"y":-1},{"x":-16,"y":-35},{"x":-35,"y":-2},{"x":36,"y":36},{"x":-25,"y":47},{"x":-34,"y":-7},{"x":26,"y":15},{"x":-53,"y":10},{"x":6,"y":88},{"x":24,"y":11},{"x":-20,"y":22},{"x":39,"y":52},{"x":-2,"y":62},{"x":36,"y":-28},{"x":30,"y":72},{"x":9,"y":-28},{"x":62,"y":34},{"x":-38,"y":40},{"x":17,"y":30},{"x":57,"y":17},{"x":32,"y":65},{"x":-16,"y":101},{"x":-127,"y":79},{"x":0,"y":27},{"x":-18,"y":-23},{"x":2,"y":82},{"x":15,"y":26},{"x":49,"y":-24},{"x":37,"y":49},{"x":52,"y":-20},{"x":65,"y":19},{"x":14,"y":77},{"x":-49,"y":84},{"x":-120,"y":-31},{"x":-91,"y":48},{"x":-142,"y":-5},{"x":-8,"y":-19}],"type":"coastline"},{"arc":[{"x":118384,"y":70759},{"x":-60,"y":78},{"x":-46,"y":-48},{"x":9,"y":-25},{"x":73,"y":-44},{"x":24,"y":39}],"type":"coastline"},{"arc":[{"x":118551,"y":70960},{"x":-44,"y":43},{"x":-5,"y":193},{"x":-62,"y":124},{"x":-75,"y":20},{"x":-118,"y":-52},{"x":2,"y":20},{"x":-88,"y":35},{"x":10,"y":19},{"x":-36,"y":12},{"x":21,"y":4},{"x":-43,"y":1},{"x":-10,"y":23},{"x":100,"y":5},{"x":-37,"y":30},{"x":45,"y":2},{"x":-38,"y":33},{"x":-1,"y":97},{"x":-76,"y":42},{"x":-40,"y":-12},{"x":-77,"y":-86},{"x":17,"y":-21},{"x":-43,"y":-12},{"x":49,"y":-26},{"x":0,"y":-81},{"x":-26,"y":-9},{"x":-37,"y":67},{"x":-49,"y":-65},{"x":18,"y":-78},{"x":25,"y":-3},{"x":-58,"y":-41},{"x":56,"y":-60},{"x":-55,"y":48},{"x":-71,"y":-34},{"x":-94,"y":-78},{"x":29,"y":-49},{"x":35,"y":-12},{"x":37,"y":37},{"x":78,"y":-67},{"x":48,"y":7},{"x":-12,"y":24},{"x":41,"y":27},{"x":-24,"y":55},{"x":68,"y":-53},{"x":67,"y":18},{"x":61,"y":-33},{"x":16,"y":61},{"x":122,"y":-66},{"x":86,"y":63},{"x":30,"y":-31},{"x":7,"y":24},{"x":110,"y":-166},{"x":41,"y":1}],"type":"coastline"},{"arc":[{"x":118658,"y":69824},{"x":-62,"y":-10},{"x":-80,"y":51},{"x":-2,"y":-39},{"x":-12,"y":32},{"x":-33,"y":-10},{"x":-27,"y":-47},{"x":60,"y":-55},{"x":66,"y":66},{"x":39,"y":-41},{"x":43,"y":2},{"x":8,"y":51}],"type":"coastline"},{"arc":[{"x":118671,"y":70064},{"x":-40,"y":28},{"x":-15,"y":-13},{"x":56,"y":-43},{"x":-1,"y":28}],"type":"coastline"},{"arc":[{"x":119173,"y":70154},{"x":-70,"y":86},{"x":-98,"y":1},{"x":121,"y":-140},{"x":47,"y":53}],"type":"coastline"},{"arc":[{"x":119257,"y":70526},{"x":-71,"y":33},{"x":17,"y":42},{"x":-61,"y":92},{"x":-64,"y":-33},{"x":-7,"y":50},{"x":-40,"y":16},{"x":-28,"y":-5},{"x":21,"y":-4},{"x":-6,"y":-34},{"x":-40,"y":-12},{"x":-55,"y":27},{"x":13,"y":-25},{"x":-23,"y":-3},{"x":-15,"y":56},{"x":-41,"y":-4},{"x":-1,"y":45},{"x":-57,"y":6},{"x":-2,"y":83},{"x":-36,"y":-6},{"x":25,"y":33},{"x":-37,"y":39},{"x":-4,"y":-45},{"x":-65,"y":14},{"x":31,"y":-36},{"x":21,"y":-174},{"x":59,"y":-67},{"x":-31,"y":-31},{"x":-22,"y":37},{"x":-54,"y":-26},{"x":4,"y":-38},{"x":21,"y":15},{"x":15,"y":-25},{"x":-54,"y":-4},{"x":-36,"y":29},{"x":-19,"y":-21},{"x":-55,"y":9},{"x":17,"y":-39},{"x":46,"y":11},{"x":16,"y":-79},{"x":-38,"y":-3},{"x":-37,"y":40},{"x":-58,"y":-10},{"x":-54,"y":-59},{"x":16,"y":-81},{"x":-30,"y":-1},{"x":7,"y":-56},{"x":45,"y":-16},{"x":30,"y":-52},{"x":27,"y":17},{"x":-1,"y":-78},{"x":60,"y":0},{"x":48,"y":52},{"x":6,"y":71},{"x":57,"y":28},{"x":28,"y":122},{"x":14,"y":-24},{"x":45,"y":14},{"x":39,"y":-53},{"x":46,"y":54},{"x":33,"y":-2},{"x":-28,"y":17},{"x":26,"y":43},{"x":82,"y":-6},{"x":-9,"y":36},{"x":50,"y":-11},{"x":4,"y":27},{"x":-24,"y":1},{"x":37,"y":52},{"x":23,"y":-14},{"x":-31,"y":-67},{"x":44,"y":31},{"x":30,"y":-38},{"x":20,"y":50},{"x":24,"y":-54},{"x":48,"y":-2},{"x":39,"y":46}],"type":"coastline"},{"arc":[{"x":122166,"y":69185},{"x":-5,"y":18},{"x":-16,"y":-31},{"x":21,"y":13}],"type":"coastline"},{"arc":[{"x":122308,"y":69461},{"x":-22,"y":2},{"x":18,"y":-22},{"x":4,"y":20}],"type":"coastline"},{"arc":[{"x":122544,"y":69186},{"x":-4,"y":17},{"x":-24,"y":-24},{"x":28,"y":7}],"type":"coastline"},{"arc":[{"x":122549,"y":69221},{"x":-1,"y":64},{"x":-8,"y":-20},{"x":-16,"y":23},{"x":25,"y":3},{"x":-37,"y":15},{"x":-65,"y":-64},{"x":9,"y":-34},{"x":29,"y":21},{"x":25,"y":-55},{"x":39,"y":47}],"type":"coastline"},{"arc":[{"x":122550,"y":69422},{"x":-71,"y":59},{"x":-75,"y":-35},{"x":-15,"y":-37},{"x":25,"y":-21},{"x":34,"y":23},{"x":18,"y":-33},{"x":34,"y":49},{"x":50,"y":-5}],"type":"coastline"},{"arc":[{"x":122627,"y":70566},{"x":-38,"y":37},{"x":-52,"y":-47},{"x":41,"y":-32},{"x":49,"y":42}],"type":"coastline"},{"arc":[{"x":122676,"y":71652},{"x":-36,"y":0},{"x":23,"y":-17},{"x":13,"y":17}],"type":"coastline"},{"arc":[{"x":122736,"y":69303},{"x":-20,"y":22},{"x":-31,"y":-10},{"x":10,"y":76},{"x":-61,"y":-16},{"x":-7,"y":-23},{"x":39,"y":-14},{"x":-28,"y":-9},{"x":-22,"y":30},{"x":6,"y":-40},{"x":-33,"y":-13},{"x":-17,"y":-36},{"x":21,"y":-7},{"x":-31,"y":-25},{"x":131,"y":-25},{"x":28,"y":14},{"x":-20,"y":74},{"x":35,"y":2}],"type":"coastline"},{"arc":[{"x":123188,"y":70790},{"x":-37,"y":-26},{"x":18,"y":-19},{"x":27,"y":8},{"x":-8,"y":37}],"type":"coastline"},{"arc":[{"x":123856,"y":69542},{"x":-76,"y":21},{"x":32,"y":-34},{"x":44,"y":13}],"type":"coastline"},{"arc":[{"x":124231,"y":70002},{"x":-12,"y":60},{"x":-31,"y":-35},{"x":-53,"y":31},{"x":9,"y":102},{"x":-83,"y":59},{"x":-29,"y":292},{"x":-40,"y":94},{"x":23,"y":63},{"x":-57,"y":45},{"x":-60,"y":-35},{"x":14,"y":-21},{"x":-71,"y":-3},{"x":18,"y":-26},{"x":-56,"y":25},{"x":-54,"y":-36},{"x":-69,"y":10},{"x":-45,"y":-14},{"x":33,"y":-17},{"x":-31,"y":8},{"x":-7,"y":-24},{"x":-45,"y":50},{"x":-55,"y":-58},{"x":23,"y":-25},{"x":26,"y":10},{"x":-48,"y":-49},{"x":7,"y":-47},{"x":-26,"y":0},{"x":7,"y":61},{"x":-59,"y":30},{"x":30,"y":27},{"x":4,"y":-29},{"x":17,"y":29},{"x":-109,"y":64},{"x":-44,"y":99},{"x":27,"y":26},{"x":-83,"y":36},{"x":-32,"y":48},{"x":11,"y":134},{"x":-115,"y":-35},{"x":37,"y":-61},{"x":-6,"y":33},{"x":21,"y":1},{"x":3,"y":-59},{"x":-22,"y":-3},{"x":2,"y":19},{"x":-3,"y":-19},{"x":35,"y":2},{"x":3,"y":8},{"x":10,"y":-24},{"x":-27,"y":-56},{"x":28,"y":-27},{"x":-21,"y":-45},{"x":26,"y":-10},{"x":-29,"y":4},{"x":23,"y":-16},{"x":-24,"y":-16},{"x":7,"y":-65},{"x":-26,"y":4},{"x":-43,"y":-56},{"x":-19,"y":13},{"x":-21,"y":-21},{"x":-63,"y":72},{"x":-43,"y":9},{"x":14,"y":65},{"x":65,"y":6},{"x":-25,"y":50},{"x":32,"y":-6},{"x":-64,"y":105},{"x":-76,"y":31},{"x":5,"y":87},{"x":-83,"y":-24},{"x":-40,"y":15},{"x":9,"y":-54},{"x":21,"y":22},{"x":-14,"y":-22},{"x":30,"y":9},{"x":-30,"y":-55},{"x":-60,"y":8},{"x":-25,"y":-18},{"x":-20,"y":29},{"x":5,"y":-23},{"x":-39,"y":-15},{"x":-25,"y":25},{"x":14,"y":-69},{"x":-36,"y":-20},{"x":4,"y":-113},{"x":-34,"y":-49},{"x":24,"y":-49},{"x":31,"y":19},{"x":-13,"y":-29},{"x":27,"y":-13},{"x":-34,"y":-11},{"x":34,"y":5},{"x":6,"y":-31},{"x":-64,"y":-1},{"x":-8,"y":-27},{"x":33,"y":-17},{"x":-66,"y":-137},{"x":27,"y":23},{"x":20,"y":-40},{"x":-20,"y":-20},{"x":7,"y":24},{"x":-13,"y":-16},{"x":-17,"y":20},{"x":-29,"y":-31},{"x":-71,"y":23},{"x":-42,"y":-96},{"x":-28,"y":26},{"x":-78,"y":-97},{"x":-54,"y":13},{"x":-13,"y":35},{"x":-43,"y":-49},{"x":45,"y":7},{"x":2,"y":-16},{"x":-56,"y":-9},{"x":-7,"y":19},{"x":-31,"y":-22},{"x":48,"y":-16},{"x":37,"y":-58},{"x":15,"y":-95},{"x":-28,"y":-22},{"x":47,"y":-13},{"x":-15,"y":-50},{"x":44,"y":17},{"x":31,"y":-55},{"x":27,"y":42},{"x":-21,"y":21},{"x":25,"y":-13},{"x":55,"y":48},{"x":27,"y":-19},{"x":-74,"y":-61},{"x":33,"y":-62},{"x":39,"y":6},{"x":8,"y":-77},{"x":82,"y":56},{"x":47,"y":-39},{"x":-23,"y":23},{"x":35,"y":53},{"x":27,"y":-30},{"x":14,"y":46},{"x":7,"y":-36},{"x":25,"y":14},{"x":-22,"y":-23},{"x":63,"y":-7},{"x":-25,"y":-28},{"x":-14,"y":16},{"x":30,"y":-41},{"x":13,"y":33},{"x":9,"y":-33},{"x":61,"y":-18},{"x":-4,"y":-37},{"x":75,"y":22},{"x":-19,"y":-67},{"x":-34,"y":16},{"x":-55,"y":-53},{"x":6,"y":31},{"x":-30,"y":15},{"x":11,"y":-71},{"x":-34,"y":32},{"x":-1,"y":-79},{"x":-111,"y":4},{"x":26,"y":-22},{"x":-24,"y":-18},{"x":115,"y":1},{"x":46,"y":-62},{"x":17,"y":10},{"x":-8,"y":-24},{"x":59,"y":44},{"x":48,"y":-7},{"x":1,"y":44},{"x":28,"y":3},{"x":1,"y":-75},{"x":48,"y":26},{"x":-18,"y":-51},{"x":57,"y":34},{"x":-25,"y":-58},{"x":66,"y":26},{"x":19,"y":67},{"x":-28,"y":-3},{"x":-5,"y":55},{"x":-35,"y":-19},{"x":-15,"y":56},{"x":30,"y":-18},{"x":-2,"y":19},{"x":30,"y":0},{"x":-42,"y":48},{"x":-41,"y":-7},{"x":29,"y":23},{"x":-21,"y":41},{"x":37,"y":3},{"x":-83,"y":97},{"x":-58,"y":19},{"x":23,"y":45},{"x":64,"y":-70},{"x":42,"y":30},{"x":-14,"y":-40},{"x":20,"y":10},{"x":9,"y":-34},{"x":1,"y":34},{"x":22,"y":-16},{"x":-8,"y":28},{"x":20,"y":-3},{"x":19,"y":-64},{"x":5,"y":35},{"x":49,"y":6},{"x":-27,"y":-52},{"x":7,"y":-142},{"x":59,"y":-36},{"x":105,"y":-3},{"x":-13,"y":60},{"x":27,"y":-5},{"x":124,"y":-105},{"x":-48,"y":65},{"x":33,"y":0},{"x":-3,"y":82},{"x":25,"y":24},{"x":79,"y":-181},{"x":96,"y":76},{"x":-4,"y":19},{"x":-9,"y":-21},{"x":-16,"y":14},{"x":16,"y":36},{"x":-64,"y":4},{"x":35,"y":16},{"x":-5,"y":31},{"x":-22,"y":-14},{"x":-3,"y":23},{"x":-53,"y":9},{"x":-14,"y":-15},{"x":24,"y":47},{"x":-77,"y":-2},{"x":-30,"y":47},{"x":16,"y":12},{"x":21,"y":-40},{"x":75,"y":47},{"x":-3,"y":115},{"x":76,"y":-50},{"x":-26,"y":-26},{"x":112,"y":-36},{"x":15,"y":-54},{"x":33,"y":41},{"x":46,"y":-29},{"x":-21,"y":-9},{"x":15,"y":-29},{"x":107,"y":33},{"x":51,"y":-21},{"x":128,"y":57},{"x":-45,"y":25},{"x":6,"y":-24},{"x":-47,"y":15},{"x":-7,"y":15},{"x":42,"y":-4},{"x":5,"y":41},{"x":36,"y":-49},{"x":58,"y":76},{"x":30,"y":-6},{"x":41,"y":38},{"x":-22,"y":48},{"x":-20,"y":-32},{"x":-6,"y":28},{"x":-27,"y":-2},{"x":57,"y":22},{"x":-20,"y":94},{"x":39,"y":-112},{"x":32,"y":60},{"x":23,"y":-1},{"x":-14,"y":53},{"x":8,"y":-23},{"x":29,"y":22}],"type":"coastline"},{"arc":[{"x":124282,"y":70011},{"x":-38,"y":9},{"x":10,"y":-20},{"x":28,"y":11}],"type":"coastline"},{"arc":[{"x":124297,"y":69971},{"x":-5,"y":25},{"x":-39,"y":0},{"x":6,"y":-95},{"x":38,"y":70}],"type":"coastline"},{"arc":[{"x":124326,"y":69814},{"x":-8,"y":50},{"x":-51,"y":-22},{"x":-64,"y":9},{"x":30,"y":-67},{"x":42,"y":14},{"x":30,"y":-23},{"x":21,"y":39}],"type":"coastline"},{"arc":[{"x":124323,"y":69760},{"x":-56,"y":11},{"x":-23,"y":-15},{"x":23,"y":-24},{"x":-51,"y":5},{"x":25,"y":-44},{"x":56,"y":-9},{"x":26,"y":76}],"type":"coastline"},{"arc":[{"x":100754,"y":56068},{"x":-64,"y":19},{"x":-76,"y":-69},{"x":-98,"y":35},{"x":22,"y":-32},{"x":-29,"y":-31},{"x":58,"y":-13},{"x":48,"y":24},{"x":102,"y":-66},{"x":-8,"y":47},{"x":45,"y":86}],"type":"coastline"},{"arc":[{"x":100838,"y":56151},{"x":-87,"y":-28},{"x":50,"y":-25},{"x":37,"y":53}],"type":"coastline"},{"arc":[{"x":101032,"y":56236},{"x":-31,"y":26},{"x":-51,"y":-67},{"x":26,"y":-7},{"x":56,"y":48}],"type":"coastline"},{"arc":[{"x":101099,"y":56301},{"x":-61,"y":19},{"x":28,"y":-38},{"x":33,"y":19}],"type":"coastline"},{"arc":[{"x":101338,"y":56455},{"x":-70,"y":124},{"x":18,"y":64},{"x":30,"y":5},{"x":-24,"y":34},{"x":-6,"y":-27},{"x":-39,"y":7},{"x":-32,"y":-49},{"x":-92,"y":-41},{"x":66,"y":-59},{"x":-53,"y":-79},{"x":25,"y":-39},{"x":-24,"y":-69},{"x":35,"y":-6},{"x":23,"y":111},{"x":113,"y":2},{"x":30,"y":22}],"type":"coastline"},{"arc":[{"x":107879,"y":61744},{"x":-61,"y":22},{"x":-62,"y":-28},{"x":-9,"y":-92},{"x":33,"y":-38},{"x":88,"y":7},{"x":11,"y":129}],"type":"coastline"},{"arc":[{"x":108027,"y":59805},{"x":-48,"y":51},{"x":20,"y":-86},{"x":-19,"y":-69},{"x":43,"y":44},{"x":4,"y":60}],"type":"coastline"},{"arc":[{"x":108122,"y":61725},{"x":-56,"y":6},{"x":8,"y":-78},{"x":48,"y":72}],"type":"coastline"},{"arc":[{"x":108178,"y":61756},{"x":-38,"y":8},{"x":6,"y":-32},{"x":32,"y":24}],"type":"coastline"},{"arc":[{"x":108227,"y":61951},{"x":-61,"y":18},{"x":-6,"y":26},{"x":-21,"y":-24},{"x":-4,"y":-78},{"x":45,"y":-53},{"x":47,"y":91},{"x":-27,"y":25},{"x":27,"y":-5}],"type":"coastline"},{"arc":[{"x":108314,"y":60978},{"x":-24,"y":42},{"x":18,"y":42},{"x":-83,"y":24},{"x":-42,"y":-17},{"x":43,"y":-138},{"x":30,"y":-4},{"x":58,"y":51}],"type":"coastline"},{"arc":[{"x":108462,"y":60448},{"x":-17,"y":31},{"x":-21,"y":-47},{"x":23,"y":-15},{"x":15,"y":31}],"type":"coastline"},{"arc":[{"x":108515,"y":60420},{"x":-9,"y":30},{"x":-21,"y":-31},{"x":30,"y":1}],"type":"coastline"},{"arc":[{"x":109068,"y":59102},{"x":-20,"y":7},{"x":-19,"y":-38},{"x":37,"y":8},{"x":2,"y":23}],"type":"coastline"},{"arc":[{"x":109253,"y":58943},{"x":-90,"y":62},{"x":-45,"y":-68},{"x":-67,"y":66},{"x":-16,"y":-70},{"x":22,"y":-63},{"x":-68,"y":29},{"x":-5,"y":55},{"x":-46,"y":-87},{"x":-7,"y":76},{"x":-65,"y":9},{"x":-7,"y":-44},{"x":-30,"y":49},{"x":-7,"y":-67},{"x":-26,"y":13},{"x":-5,"y":-29},{"x":-30,"y":-3},{"x":-40,"y":17},{"x":-2,"y":-73},{"x":112,"y":-56},{"x":109,"y":-17},{"x":11,"y":24},{"x":24,"y":-19},{"x":40,"y":43},{"x":110,"y":40},{"x":2,"y":31},{"x":91,"y":10},{"x":35,"y":72}],"type":"coastline"},{"arc":[{"x":109658,"y":61668},{"x":-32,"y":19},{"x":-43,"y":-13},{"x":1,"y":42},{"x":27,"y":8},{"x":-41,"y":22},{"x":-30,"y":-11},{"x":-2,"y":-63},{"x":-30,"y":30},{"x":-26,"y":-33},{"x":-25,"y":38},{"x":-25,"y":-49},{"x":180,"y":-39},{"x":46,"y":49}],"type":"coastline"},{"arc":[{"x":109807,"y":61204},{"x":-56,"y":22},{"x":23,"y":-56},{"x":33,"y":34}],"type":"coastline"},{"arc":[{"x":109905,"y":61303},{"x":-63,"y":-4},{"x":-17,"y":60},{"x":-63,"y":-58},{"x":105,"y":-59},{"x":20,"y":7},{"x":-20,"y":31},{"x":38,"y":23}],"type":"coastline"},{"arc":[{"x":110021,"y":58648},{"x":-4,"y":29},{"x":-53,"y":11},{"x":-56,"y":-28},{"x":-33,"y":-72},{"x":-37,"y":12},{"x":35,"y":21},{"x":-32,"y":-10},{"x":-6,"y":-17},{"x":-90,"y":26},{"x":-76,"y":-21},{"x":-23,"y":-30},{"x":21,"y":-72},{"x":78,"y":-23},{"x":108,"y":13},{"x":156,"y":107},{"x":12,"y":54}],"type":"coastline"},{"arc":[{"x":109977,"y":60383},{"x":12,"y":-24},{"x":45,"y":0},{"x":35,"y":27},{"x":-92,"y":-3}],"type":"coastline"},{"arc":[{"x":110076,"y":62224},{"x":-22,"y":-10},{"x":17,"y":-15},{"x":5,"y":25}],"type":"coastline"},{"arc":[{"x":110151,"y":61476},{"x":-15,"y":21},{"x":-71,"y":-37},{"x":-49,"y":3},{"x":-21,"y":-40},{"x":20,"y":-56},{"x":75,"y":9},{"x":-34,"y":28},{"x":70,"y":11},{"x":25,"y":61}],"type":"coastline"},{"arc":[{"x":110149,"y":62224},{"x":-22,"y":6},{"x":8,"y":-19},{"x":14,"y":13}],"type":"coastline"},{"arc":[{"x":110235,"y":62225},{"x":-24,"y":24},{"x":-8,"y":-47},{"x":32,"y":23}],"type":"coastline"},{"arc":[{"x":110483,"y":62285},{"x":-114,"y":101},{"x":-79,"y":-20},{"x":30,"y":-106},{"x":110,"y":-21},{"x":53,"y":46}],"type":"coastline"},{"arc":[{"x":110660,"y":62648},{"x":-53,"y":62},{"x":-191,"y":89},{"x":-49,"y":-53},{"x":-100,"y":22},{"x":-65,"y":-41},{"x":-1,"y":69},{"x":-1,"y":-19},{"x":-51,"y":-10},{"x":-9,"y":-36},{"x":23,"y":-58},{"x":-17,"y":-25},{"x":68,"y":-31},{"x":-12,"y":-24},{"x":-62,"y":-3},{"x":-15,"y":-25},{"x":-52,"y":27},{"x":-35,"y":-12},{"x":54,"y":-73},{"x":-29,"y":-72},{"x":56,"y":-6},{"x":-36,"y":-45},{"x":16,"y":-43},{"x":78,"y":14},{"x":29,"y":38},{"x":-18,"y":30},{"x":20,"y":-26},{"x":6,"y":46},{"x":37,"y":18},{"x":-16,"y":38},{"x":38,"y":6},{"x":-49,"y":92},{"x":31,"y":-10},{"x":58,"y":26},{"x":-2,"y":-19},{"x":51,"y":-1},{"x":28,"y":44},{"x":2,"y":-33},{"x":106,"y":-35},{"x":52,"y":27},{"x":-12,"y":48},{"x":74,"y":-40},{"x":48,"y":44}],"type":"coastline"},{"arc":[{"x":110745,"y":61959},{"x":-60,"y":-9},{"x":40,"y":-17},{"x":20,"y":26}],"type":"coastline"},{"arc":[{"x":110750,"y":60744},{"x":-27,"y":22},{"x":-52,"y":-36},{"x":-48,"y":33},{"x":-100,"y":-32},{"x":-25,"y":16},{"x":-5,"y":-39},{"x":-36,"y":-11},{"x":-30,"y":77},{"x":-156,"y":149},{"x":-57,"y":-37},{"x":33,"y":-18},{"x":-25,"y":-22},{"x":49,"y":10},{"x":-34,"y":-17},{"x":25,"y":-27},{"x":-40,"y":-3},{"x":8,"y":-40},{"x":18,"y":5},{"x":-25,"y":-15},{"x":15,"y":-32},{"x":-40,"y":22},{"x":-33,"y":-59},{"x":2,"y":69},{"x":-64,"y":33},{"x":47,"y":11},{"x":39,"y":143},{"x":37,"y":-21},{"x":52,"y":75},{"x":-59,"y":51},{"x":-27,"y":-24},{"x":15,"y":-13},{"x":6,"y":25},{"x":15,"y":-24},{"x":-33,"y":-54},{"x":-132,"y":-54},{"x":-51,"y":22},{"x":43,"y":13},{"x":-20,"y":32},{"x":94,"y":-26},{"x":39,"y":42},{"x":-19,"y":27},{"x":-73,"y":6},{"x":30,"y":16},{"x":5,"y":69},{"x":26,"y":6},{"x":1,"y":-31},{"x":43,"y":64},{"x":-39,"y":2},{"x":3,"y":39},{"x":-54,"y":39},{"x":-23,"y":-11},{"x":-9,"y":27},{"x":-21,"y":-18},{"x":4,"y":-105},{"x":27,"y":2},{"x":-33,"y":-30},{"x":-81,"y":20},{"x":-133,"y":-50},{"x":-107,"y":35},{"x":-35,"y":-39},{"x":-99,"y":44},{"x":-14,"y":59},{"x":-26,"y":-34},{"x":-16,"y":58},{"x":-59,"y":-44},{"x":19,"y":61},{"x":-54,"y":-23},{"x":-28,"y":19},{"x":-7,"y":-43},{"x":-29,"y":1},{"x":12,"y":49},{"x":25,"y":5},{"x":8,"y":33},{"x":34,"y":-8},{"x":-45,"y":11},{"x":-68,"y":3},{"x":5,"y":35},{"x":-38,"y":10},{"x":-80,"y":133},{"x":-121,"y":104},{"x":-46,"y":14},{"x":-26,"y":-29},{"x":-44,"y":45},{"x":17,"y":-38},{"x":-21,"y":31},{"x":-23,"y":-17},{"x":-2,"y":47},{"x":35,"y":-12},{"x":-61,"y":81},{"x":-44,"y":6},{"x":-66,"y":-46},{"x":-20,"y":16},{"x":-38,"y":-15},{"x":14,"y":-89},{"x":-30,"y":-19},{"x":-19,"y":-86},{"x":82,"y":-61},{"x":-21,"y":9},{"x":-29,"y":-257},{"x":-40,"y":-53},{"x":3,"y":-89},{"x":-28,"y":-44},{"x":32,"y":-37},{"x":-24,"y":-16},{"x":13,"y":-32},{"x":84,"y":-19},{"x":7,"y":-23},{"x":25,"y":41},{"x":6,"y":-77},{"x":52,"y":-16},{"x":-11,"y":25},{"x":46,"y":0},{"x":24,"y":-44},{"x":-57,"y":-64},{"x":18,"y":-38},{"x":-55,"y":-62},{"x":9,"y":-54},{"x":-53,"y":-46},{"x":1,"y":-119},{"x":-82,"y":-48},{"x":-9,"y":29},{"x":-41,"y":-35},{"x":-65,"y":28},{"x":-41,"y":-9},{"x":-25,"y":-54},{"x":-53,"y":2},{"x":-41,"y":50},{"x":35,"y":-14},{"x":6,"y":34},{"x":34,"y":-13},{"x":-32,"y":56},{"x":-44,"y":-34},{"x":17,"y":32},{"x":-67,"y":14},{"x":-3,"y":96},{"x":-63,"y":64},{"x":-64,"y":11},{"x":29,"y":15},{"x":-56,"y":-18},{"x":-16,"y":38},{"x":-94,"y":-6},{"x":-43,"y":-45},{"x":43,"y":-62},{"x":-53,"y":25},{"x":-18,"y":-58},{"x":-56,"y":-16},{"x":-17,"y":-31},{"x":-17,"y":17},{"x":2,"y":-24},{"x":-12,"y":20},{"x":18,"y":30},{"x":-19,"y":-31},{"x":0,"y":-20},{"x":-49,"y":-27},{"x":57,"y":-190},{"x":42,"y":10},{"x":90,"y":-61},{"x":-26,"y":28},{"x":32,"y":-9},{"x":-9,"y":10},{"x":16,"y":-1},{"x":-11,"y":-21},{"x":11,"y":3},{"x":4,"y":27},{"x":171,"y":-156},{"x":-19,"y":31},{"x":22,"y":9},{"x":-13,"y":-14},{"x":11,"y":5},{"x":-6,"y":-12},{"x":8,"y":8},{"x":23,"y":-16},{"x":-19,"y":-8},{"x":9,"y":-4},{"x":12,"y":15},{"x":19,"y":-28},{"x":-14,"y":-179},{"x":-32,"y":-23},{"x":24,"y":-207},{"x":-36,"y":-17},{"x":-4,"y":-61},{"x":60,"y":-97},{"x":-14,"y":-54},{"x":28,"y":-85},{"x":-82,"y":-103},{"x":-35,"y":2},{"x":2,"y":41},{"x":-20,"y":-14},{"x":-34,"y":25},{"x":-58,"y":-48},{"x":56,"y":-109},{"x":-29,"y":-50},{"x":14,"y":-46},{"x":30,"y":3},{"x":13,"y":-40},{"x":29,"y":22},{"x":11,"y":-29},{"x":52,"y":-8},{"x":55,"y":-71},{"x":-10,"y":-34},{"x":33,"y":-29},{"x":-21,"y":-55},{"x":36,"y":-88},{"x":36,"y":-5},{"x":-29,"y":-57},{"x":90,"y":20},{"x":103,"y":89},{"x":62,"y":-16},{"x":30,"y":16},{"x":21,"y":-24},{"x":60,"y":46},{"x":73,"y":3},{"x":-11,"y":49},{"x":-52,"y":7},{"x":-21,"y":-20},{"x":9,"y":39},{"x":-45,"y":-3},{"x":-20,"y":-30},{"x":-22,"y":73},{"x":-58,"y":-98},{"x":-49,"y":-20},{"x":-58,"y":13},{"x":-10,"y":38},{"x":66,"y":-10},{"x":67,"y":41},{"x":-43,"y":73},{"x":-48,"y":-32},{"x":-22,"y":59},{"x":-29,"y":-49},{"x":-27,"y":11},{"x":29,"y":56},{"x":-55,"y":16},{"x":-14,"y":45},{"x":-62,"y":26},{"x":32,"y":30},{"x":-16,"y":59},{"x":-87,"y":-48},{"x":-1,"y":40},{"x":66,"y":8},{"x":46,"y":84},{"x":97,"y":-52},{"x":71,"y":64},{"x":17,"y":95},{"x":36,"y":16},{"x":41,"y":-30},{"x":37,"y":33},{"x":6,"y":-15},{"x":-69,"y":-44},{"x":-22,"y":-92},{"x":-122,"y":-94},{"x":50,"y":9},{"x":-61,"y":-30},{"x":55,"y":11},{"x":13,"y":-62},{"x":39,"y":26},{"x":13,"y":-41},{"x":77,"y":6},{"x":15,"y":77},{"x":17,"y":-40},{"x":40,"y":3},{"x":-8,"y":59},{"x":46,"y":-25},{"x":-50,"y":94},{"x":36,"y":25},{"x":68,"y":-92},{"x":83,"y":-24},{"x":-85,"y":114},{"x":-4,"y":22},{"x":27,"y":5},{"x":-57,"y":61},{"x":6,"y":39},{"x":16,"y":9},{"x":36,"y":-64},{"x":6,"y":18},{"x":46,"y":-4},{"x":17,"y":-32},{"x":-28,"y":-40},{"x":61,"y":-67},{"x":-6,"y":66},{"x":35,"y":29},{"x":-105,"y":129},{"x":145,"y":-82},{"x":54,"y":-1},{"x":27,"y":15},{"x":-33,"y":9},{"x":24,"y":104},{"x":45,"y":1},{"x":0,"y":34},{"x":12,"y":-35},{"x":-26,"y":-41},{"x":20,"y":-15},{"x":-37,"y":-20},{"x":31,"y":-62},{"x":-24,"y":-15},{"x":84,"y":-22},{"x":-15,"y":-15},{"x":56,"y":-82},{"x":61,"y":43},{"x":82,"y":-5},{"x":78,"y":-65},{"x":33,"y":9},{"x":44,"y":85},{"x":-35,"y":10},{"x":-1,"y":73},{"x":62,"y":-56},{"x":33,"y":35},{"x":31,"y":-18},{"x":-11,"y":-48},{"x":78,"y":0},{"x":-28,"y":-11},{"x":12,"y":-18},{"x":-30,"y":9},{"x":149,"y":-87},{"x":157,"y":25},{"x":35,"y":57},{"x":7,"y":-20},{"x":31,"y":25},{"x":111,"y":-72},{"x":80,"y":13},{"x":13,"y":-28},{"x":-28,"y":-7},{"x":63,"y":-44},{"x":38,"y":61},{"x":143,"y":50},{"x":118,"y":140},{"x":-37,"y":43},{"x":8,"y":-22},{"x":-29,"y":2},{"x":-17,"y":155},{"x":-50,"y":9},{"x":5,"y":-19},{"x":-26,"y":-1},{"x":-50,"y":34},{"x":-33,"y":135},{"x":-152,"y":14},{"x":-10,"y":-19},{"x":-113,"y":39},{"x":44,"y":-48},{"x":-30,"y":29},{"x":-16,"y":-22},{"x":-7,"y":31},{"x":11,"y":-60},{"x":-86,"y":-24},{"x":21,"y":27},{"x":-31,"y":43},{"x":2,"y":52},{"x":48,"y":8},{"x":-35,"y":8},{"x":-2,"y":23},{"x":24,"y":10},{"x":16,"y":-35},{"x":6,"y":23},{"x":2,"y":-32},{"x":1,"y":21},{"x":31,"y":-5},{"x":64,"y":44},{"x":-39,"y":32},{"x":34,"y":17},{"x":-6,"y":44},{"x":47,"y":2},{"x":-12,"y":35},{"x":49,"y":43},{"x":-7,"y":63},{"x":30,"y":51},{"x":-14,"y":39},{"x":-41,"y":-38},{"x":22,"y":-31},{"x":-31,"y":-27},{"x":5,"y":-67},{"x":-22,"y":76},{"x":-53,"y":-81},{"x":12,"y":124},{"x":39,"y":58},{"x":-40,"y":-4},{"x":-47,"y":-68},{"x":-81,"y":3},{"x":10,"y":33},{"x":61,"y":-4},{"x":44,"y":70},{"x":47,"y":-5},{"x":-14,"y":29},{"x":52,"y":24},{"x":-16,"y":-109},{"x":29,"y":56},{"x":43,"y":4},{"x":11,"y":87},{"x":61,"y":-32},{"x":10,"y":24},{"x":52,"y":-5},{"x":7,"y":58},{"x":-54,"y":15},{"x":-31,"y":43},{"x":-12,"y":-27},{"x":-20,"y":32},{"x":-59,"y":-16},{"x":15,"y":20},{"x":-40,"y":44},{"x":-53,"y":-17},{"x":-5,"y":26},{"x":-46,"y":-1},{"x":-38,"y":-21},{"x":-17,"y":27},{"x":-70,"y":2},{"x":-10,"y":37},{"x":31,"y":10},{"x":-23,"y":26},{"x":18,"y":12},{"x":20,"y":-23},{"x":17,"y":20},{"x":144,"y":-47},{"x":73,"y":77},{"x":59,"y":123},{"x":-74,"y":62},{"x":128,"y":-62},{"x":-43,"y":-86},{"x":27,"y":-35},{"x":-40,"y":5},{"x":-70,"y":-68},{"x":22,"y":-69},{"x":58,"y":-27},{"x":66,"y":75},{"x":71,"y":7},{"x":1,"y":34},{"x":71,"y":-12},{"x":-32,"y":64},{"x":18,"y":34},{"x":-29,"y":21},{"x":28,"y":55},{"x":30,"y":10},{"x":27,"y":-42},{"x":11,"y":63},{"x":33,"y":20},{"x":6,"y":-50},{"x":49,"y":-32},{"x":40,"y":159},{"x":71,"y":40}],"type":"coastline"},{"arc":[{"x":110871,"y":62041},{"x":-7,"y":19},{"x":-96,"y":1},{"x":-21,"y":-27},{"x":25,"y":-59},{"x":46,"y":20},{"x":-22,"y":35},{"x":72,"y":-38},{"x":3,"y":49}],"type":"coastline"},{"arc":[{"x":110905,"y":62215},{"x":-20,"y":-8},{"x":17,"y":-23},{"x":3,"y":31}],"type":"coastline"},{"arc":[{"x":110905,"y":59417},{"x":-47,"y":25},{"x":-44,"y":-11},{"x":-7,"y":-46},{"x":55,"y":-56},{"x":9,"y":31},{"x":27,"y":0},{"x":7,"y":57}],"type":"coastline"},{"arc":[{"x":111155,"y":61607},{"x":-51,"y":40},{"x":10,"y":-33},{"x":41,"y":-7}],"type":"coastline"},{"arc":[{"x":111340,"y":61314},{"x":-138,"y":209},{"x":-97,"y":11},{"x":-2,"y":53},{"x":-9,"y":-45},{"x":-15,"y":10},{"x":12,"y":74},{"x":-43,"y":67},{"x":-89,"y":-4},{"x":-15,"y":58},{"x":-52,"y":-28},{"x":-45,"y":20},{"x":-37,"y":-21},{"x":-57,"y":79},{"x":-28,"y":-68},{"x":-118,"y":-30},{"x":-31,"y":-86},{"x":-73,"y":-21},{"x":-39,"y":-53},{"x":-118,"y":-14},{"x":-34,"y":-52},{"x":20,"y":-96},{"x":-18,"y":-57},{"x":187,"y":-143},{"x":4,"y":-71},{"x":71,"y":-28},{"x":-62,"y":-25},{"x":-21,"y":34},{"x":19,"y":-61},{"x":38,"y":-12},{"x":15,"y":23},{"x":39,"y":-14},{"x":40,"y":24},{"x":106,"y":-55},{"x":45,"y":73},{"x":34,"y":-21},{"x":44,"y":26},{"x":17,"y":-26},{"x":46,"y":25},{"x":49,"y":-45},{"x":78,"y":24},{"x":38,"y":-15},{"x":58,"y":30},{"x":-13,"y":-76},{"x":113,"y":57},{"x":-5,"y":30},{"x":-57,"y":34},{"x":7,"y":62},{"x":-58,"y":-22},{"x":16,"y":80},{"x":73,"y":4},{"x":-20,"y":54},{"x":-24,"y":18},{"x":-16,"y":-19},{"x":-17,"y":36},{"x":-33,"y":-33},{"x":-60,"y":38},{"x":-15,"y":-26},{"x":-79,"y":-12},{"x":5,"y":23},{"x":-99,"y":25},{"x":-21,"y":54},{"x":-30,"y":-99},{"x":-29,"y":9},{"x":7,"y":72},{"x":-49,"y":29},{"x":3,"y":52},{"x":70,"y":20},{"x":-15,"y":-27},{"x":68,"y":-37},{"x":33,"y":57},{"x":33,"y":-24},{"x":14,"y":28},{"x":21,"y":-32},{"x":18,"y":25},{"x":51,"y":-112},{"x":32,"y":19},{"x":37,"y":-38},{"x":46,"y":36},{"x":23,"y":-42},{"x":27,"y":12},{"x":110,"y":-48},{"x":14,"y":24}],"type":"coastline"},{"arc":[{"x":111775,"y":61757},{"x":-49,"y":-1},{"x":34,"y":-19},{"x":15,"y":20}],"type":"coastline"},{"arc":[{"x":111845,"y":62117},{"x":-37,"y":68},{"x":-135,"y":93},{"x":-248,"y":78},{"x":-25,"y":-27},{"x":20,"y":-51},{"x":-28,"y":-9},{"x":26,"y":4},{"x":-57,"y":-31},{"x":-51,"y":40},{"x":-106,"y":-36},{"x":-21,"y":69},{"x":-45,"y":-23},{"x":-7,"y":-40},{"x":48,"y":-76},{"x":16,"y":23},{"x":6,"y":-18},{"x":-72,"y":-62},{"x":-40,"y":-8},{"x":-85,"y":44},{"x":10,"y":49},{"x":-42,"y":21},{"x":-96,"y":-72},{"x":-80,"y":-3},{"x":-28,"y":-45},{"x":35,"y":-10},{"x":15,"y":24},{"x":23,"y":-18},{"x":29,"y":26},{"x":-9,"y":-29},{"x":101,"y":2},{"x":24,"y":-24},{"x":56,"y":22},{"x":22,"y":-23},{"x":11,"y":23},{"x":63,"y":-49},{"x":-87,"y":2},{"x":-54,"y":-31},{"x":-21,"y":22},{"x":64,"y":-141},{"x":-3,"y":-67},{"x":56,"y":10},{"x":-44,"y":55},{"x":20,"y":85},{"x":37,"y":-19},{"x":25,"y":30},{"x":112,"y":-77},{"x":-8,"y":-25},{"x":35,"y":14},{"x":19,"y":-31},{"x":32,"y":18},{"x":-45,"y":-75},{"x":58,"y":8},{"x":5,"y":-59},{"x":39,"y":27},{"x":38,"y":-100},{"x":63,"y":25},{"x":29,"y":-77},{"x":48,"y":-25},{"x":-7,"y":-18},{"x":8,"y":17},{"x":27,"y":-19},{"x":-26,"y":-35},{"x":-18,"y":19},{"x":-2,"y":-19},{"x":-61,"y":12},{"x":-24,"y":33},{"x":-21,"y":-22},{"x":31,"y":-52},{"x":-15,"y":-46},{"x":103,"y":-15},{"x":5,"y":-69},{"x":76,"y":71},{"x":-16,"y":106},{"x":76,"y":-26},{"x":62,"y":13},{"x":11,"y":67},{"x":-107,"y":64},{"x":62,"y":57},{"x":-67,"y":53},{"x":8,"y":46},{"x":-114,"y":52},{"x":-4,"y":-33},{"x":-4,"y":35},{"x":-70,"y":22},{"x":-20,"y":32},{"x":-68,"y":-24},{"x":-34,"y":47},{"x":-35,"y":-16},{"x":-11,"y":24},{"x":-33,"y":-8},{"x":-15,"y":44},{"x":48,"y":-25},{"x":6,"y":24},{"x":70,"y":2},{"x":22,"y":38},{"x":24,"y":-42},{"x":31,"y":9},{"x":-8,"y":-19},{"x":99,"y":-2},{"x":68,"y":-90},{"x":48,"y":-5},{"x":38,"y":21},{"x":-13,"y":33},{"x":-60,"y":16},{"x":-65,"y":58},{"x":-88,"y":8},{"x":-43,"y":53},{"x":-35,"y":-16},{"x":2,"y":39},{"x":25,"y":-18},{"x":7,"y":22},{"x":99,"y":-15},{"x":41,"y":26},{"x":1,"y":-21},{"x":31,"y":41},{"x":101,"y":30},{"x":60,"y":-25},{"x":37,"y":-62},{"x":46,"y":7}],"type":"coastline"},{"arc":[{"x":112000,"y":61864},{"x":-31,"y":19},{"x":-106,"y":-32},{"x":-4,"y":-61},{"x":45,"y":-23},{"x":2,"y":-33},{"x":8,"y":61},{"x":49,"y":10},{"x":37,"y":59}],"type":"coastline"},{"arc":[{"x":110146,"y":76014},{"x":-141,"y":19},{"x":6,"y":-44},{"x":-30,"y":-33},{"x":-43,"y":2},{"x":-65,"y":-109},{"x":-79,"y":19},{"x":23,"y":-207},{"x":-52,"y":-39},{"x":-131,"y":5},{"x":-198,"y":-208},{"x":20,"y":-14},{"x":-61,"y":-60},{"x":-97,"y":-193},{"x":-180,"y":-181},{"x":20,"y":-34},{"x":-25,"y":-22},{"x":-14,"y":16},{"x":-16,"y":-52},{"x":-55,"y":-26},{"x":1,"y":-148},{"x":-41,"y":-80},{"x":-42,"y":-232}],"type":"area"},{"arc":[{"x":108946,"y":74393},{"x":252,"y":18},{"x":41,"y":25},{"x":70,"y":-64},{"x":60,"y":-3},{"x":-75,"y":75},{"x":6,"y":-30},{"x":-26,"y":16},{"x":0,"y":102},{"x":-45,"y":-1},{"x":23,"y":26},{"x":22,"y":-21},{"x":50,"y":162},{"x":108,"y":15},{"x":-22,"y":118},{"x":53,"y":-13},{"x":5,"y":-31},{"x":74,"y":56},{"x":64,"y":145},{"x":97,"y":38},{"x":64,"y":122},{"x":26,"y":-12},{"x":75,"y":43},{"x":-12,"y":15},{"x":65,"y":-6},{"x":-20,"y":8},{"x":98,"y":35},{"x":212,"y":-44},{"x":27,"y":-60},{"x":-20,"y":-9},{"x":2,"y":21},{"x":-34,"y":-44},{"x":88,"y":-39},{"x":37,"y":-94},{"x":45,"y":59},{"x":102,"y":-41},{"x":50,"y":56},{"x":22,"y":-12},{"x":-18,"y":13},{"x":11,"y":21},{"x":-1,"y":-22},{"x":36,"y":21},{"x":50,"y":-39},{"x":97,"y":-107},{"x":-12,"y":-248},{"x":30,"y":-113}],"type":"coastline"},{"arc":[{"x":111660,"y":74861},{"x":-277,"y":217},{"x":37,"y":25},{"x":11,"y":81},{"x":52,"y":51},{"x":31,"y":101},{"x":14,"y":19},{"x":20,"y":-13},{"x":-5,"y":21},{"x":14,"y":-19},{"x":-20,"y":39},{"x":75,"y":50},{"x":7,"y":39},{"x":54,"y":21},{"x":75,"y":139},{"x":-35,"y":-36},{"x":17,"y":27},{"x":-27,"y":3},{"x":-24,"y":133},{"x":40,"y":150},{"x":42,"y":36},{"x":-21,"y":58},{"x":23,"y":118},{"x":40,"y":11},{"x":-37,"y":103},{"x":-36,"y":9},{"x":20,"y":25},{"x":21,"y":-30},{"x":-15,"y":43},{"x":-17,"y":-27},{"x":-27,"y":21},{"x":33,"y":12},{"x":-54,"y":-14},{"x":20,"y":-20},{"x":-19,"y":-9},{"x":-73,"y":117}],"type":"coastline"},{"arc":[{"x":109983,"y":76915},{"x":-277,"y":-208},{"x":-45,"y":8},{"x":36,"y":-18},{"x":-31,"y":-12},{"x":2,"y":24},{"x":-38,"y":-26},{"x":12,"y":-33},{"x":-25,"y":-17},{"x":-68,"y":22},{"x":-17,"y":36},{"x":17,"y":-36},{"x":-41,"y":25},{"x":-38,"y":68},{"x":-76,"y":0},{"x":-27,"y":29},{"x":21,"y":-20},{"x":-14,"y":-19},{"x":-12,"y":36},{"x":-9,"y":-53},{"x":-83,"y":-1},{"x":-3,"y":-18},{"x":-2,"y":19},{"x":-1,"y":-31},{"x":-95,"y":-39},{"x":-21,"y":-74},{"x":-38,"y":32},{"x":-19,"y":-61},{"x":53,"y":-6},{"x":-12,"y":-27},{"x":-18,"y":-22},{"x":-37,"y":38},{"x":22,"y":-39},{"x":-31,"y":29},{"x":24,"y":-26},{"x":-43,"y":-45},{"x":18,"y":-63},{"x":-63,"y":-2},{"x":-43,"y":-87},{"x":-33,"y":3},{"x":28,"y":-3},{"x":-3,"y":-42},{"x":-29,"y":39},{"x":19,"y":-35},{"x":-50,"y":-94},{"x":19,"y":-72},{"x":-33,"y":-11},{"x":33,"y":3},{"x":-39,"y":-37},{"x":35,"y":25},{"x":-27,"y":-31},{"x":36,"y":-33},{"x":-32,"y":-21},{"x":26,"y":-6},{"x":15,"y":-65},{"x":-11,"y":-174},{"x":-33,"y":-2},{"x":-32,"y":68},{"x":-81,"y":-74},{"x":-51,"y":-1},{"x":25,"y":-38},{"x":-66,"y":46},{"x":-71,"y":-44},{"x":-41,"y":-82},{"x":33,"y":-25},{"x":-37,"y":20},{"x":20,"y":-28},{"x":31,"y":7},{"x":-20,"y":-54},{"x":11,"y":27},{"x":-25,"y":-43},{"x":-117,"y":-62},{"x":-74,"y":3},{"x":-12,"y":-64},{"x":-61,"y":-72},{"x":-17,"y":-160},{"x":62,"y":-32},{"x":1,"y":-102},{"x":31,"y":-38},{"x":-30,"y":-23},{"x":-43,"y":31},{"x":-9,"y":85},{"x":-46,"y":19},{"x":-36,"y":-56},{"x":25,"y":-33},{"x":-27,"y":3},{"x":-74,"y":-87},{"x":-6,"y":-46},{"x":22,"y":5},{"x":-26,"y":-8},{"x":-15,"y":-94},{"x":88,"y":-20},{"x":65,"y":88},{"x":56,"y":12},{"x":50,"y":-12},{"x":3,"y":-28},{"x":116,"y":-23},{"x":82,"y":-76},{"x":-34,"y":-18},{"x":29,"y":4},{"x":-3,"y":-41},{"x":-37,"y":39},{"x":2,"y":-64},{"x":50,"y":-3},{"x":100,"y":-82},{"x":2,"y":-86},{"x":53,"y":-74},{"x":142,"y":-30},{"x":56,"y":17}],"type":"coastline"},{"arc":[{"x":111425,"y":71601},{"x":-11,"y":14},{"x":-5,"y":-23},{"x":16,"y":9}],"type":"coastline"},{"arc":[{"x":110927,"y":71472},{"x":32,"y":10},{"x":41,"y":82},{"x":75,"y":28},{"x":6,"y":54},{"x":57,"y":52},{"x":113,"y":-13},{"x":16,"y":-59},{"x":32,"y":0},{"x":96,"y":-81},{"x":148,"y":-10}],"type":"area"},{"arc":[{"x":111543,"y":71535},{"x":-11,"y":18},{"x":-43,"y":-9},{"x":-23,"y":57},{"x":-19,"y":-33},{"x":-39,"y":17},{"x":-19,"y":-14},{"x":-28,"y":29},{"x":15,"y":65},{"x":-9,"y":-15},{"x":-29,"y":17},{"x":-5,"y":31},{"x":83,"y":-10},{"x":14,"y":50},{"x":41,"y":-17},{"x":41,"y":26},{"x":32,"y":-30},{"x":50,"y":115},{"x":121,"y":-27},{"x":98,"y":21},{"x":-31,"y":35},{"x":-64,"y":-8},{"x":4,"y":60},{"x":-48,"y":13}],"type":"coastline"},{"arc":[{"x":111649,"y":71256},{"x":-40,"y":22},{"x":17,"y":-31},{"x":-30,"y":-29},{"x":53,"y":38}],"type":"coastline"},{"arc":[{"x":111672,"y":70962},{"x":-30,"y":-1},{"x":-21,"y":33},{"x":-41,"y":-4},{"x":14,"y":147},{"x":-35,"y":-8},{"x":16,"y":41},{"x":-37,"y":-8},{"x":-55,"y":97},{"x":7,"y":-18},{"x":-38,"y":-8},{"x":29,"y":20},{"x":-154,"y":175},{"x":-14,"y":-12},{"x":15,"y":40},{"x":-32,"y":-44},{"x":-120,"y":76},{"x":6,"y":23},{"x":47,"y":-11},{"x":-2,"y":-24},{"x":74,"y":23},{"x":1,"y":36},{"x":39,"y":22},{"x":45,"y":-36},{"x":50,"y":1},{"x":17,"y":-33},{"x":7,"y":34},{"x":60,"y":-8},{"x":23,"y":20}],"type":"coastline"},{"arc":[{"x":111703,"y":71046},{"x":-36,"y":-2},{"x":10,"y":34},{"x":-31,"y":9},{"x":-8,"y":41},{"x":-21,"y":-73},{"x":39,"y":-6},{"x":-3,"y":-18},{"x":50,"y":15}],"type":"coastline"},{"arc":[{"x":111934,"y":71388},{"x":-26,"y":12},{"x":-3,"y":-21},{"x":29,"y":9}],"type":"coastline"},{"arc":[{"x":113354,"y":73501},{"x":-67,"y":-129},{"x":7,"y":-37},{"x":-62,"y":-40},{"x":-3,"y":-53},{"x":-42,"y":-25},{"x":57,"y":-4},{"x":23,"y":-31},{"x":-12,"y":-136},{"x":-17,"y":-57},{"x":-95,"y":-67},{"x":14,"y":-51},{"x":-66,"y":-159},{"x":10,"y":-35},{"x":105,"y":-49},{"x":-20,"y":-93}],"type":"admin"},{"arc":[{"x":113186,"y":72535},{"x":70,"y":-12},{"x":42,"y":-39},{"x":43,"y":23},{"x":47,"y":-28},{"x":8,"y":32},{"x":36,"y":-26},{"x":73,"y":8},{"x":220,"y":-220},{"x":-10,"y":-65},{"x":42,"y":-65},{"x":-3,"y":25},{"x":33,"y":-27},{"x":16,"y":-71},{"x":127,"y":-33},{"x":19,"y":-43},{"x":74,"y":-42},{"x":0,"y":-49},{"x":96,"y":-117}],"type":"coastline"},{"arc":[{"x":114119,"y":71786},{"x":42,"y":2},{"x":36,"y":40},{"x":57,"y":-21},{"x":31,"y":137},{"x":-61,"y":184},{"x":65,"y":97},{"x":112,"y":47},{"x":48,"y":-15}],"type":"area"},{"arc":[{"x":113972,"y":71186},{"x":-14,"y":12},{"x":-42,"y":-39},{"x":56,"y":27}],"type":"coastline"},{"arc":[{"x":114119,"y":71786},{"x":13,"y":-29},{"x":-33,"y":-11},{"x":28,"y":10},{"x":-1,"y":-31},{"x":-25,"y":4},{"x":-42,"y":-77},{"x":39,"y":-7},{"x":-24,"y":-45},{"x":26,"y":30},{"x":-6,"y":-74},{"x":-85,"y":-43},{"x":-32,"y":-57},{"x":-68,"y":-3},{"x":13,"y":-29},{"x":69,"y":13},{"x":27,"y":-38},{"x":-102,"y":-29},{"x":14,"y":-38},{"x":-46,"y":17},{"x":-73,"y":-20},{"x":-53,"y":-84},{"x":27,"y":-40},{"x":50,"y":-8},{"x":95,"y":25},{"x":48,"y":44},{"x":9,"y":-66},{"x":41,"y":33},{"x":-40,"y":31},{"x":22,"y":6},{"x":4,"y":76},{"x":41,"y":35},{"x":57,"y":-70},{"x":-23,"y":-33},{"x":71,"y":-38},{"x":-26,"y":-80},{"x":-16,"y":45},{"x":-42,"y":-11},{"x":37,"y":-56},{"x":50,"y":-16},{"x":0,"y":-96}],"type":"coastline"},{"arc":[{"x":114163,"y":71026},{"x":34,"y":28},{"x":14,"y":108},{"x":68,"y":36},{"x":-38,"y":112},{"x":56,"y":84},{"x":74,"y":6},{"x":84,"y":79},{"x":112,"y":-45},{"x":9,"y":34},{"x":29,"y":-3}],"type":"admin"},{"arc":[{"x":114605,"y":71465},{"x":52,"y":85},{"x":7,"y":134},{"x":-20,"y":-31},{"x":-35,"y":16},{"x":-34,"y":118},{"x":48,"y":45},{"x":-10,"y":71},{"x":78,"y":222},{"x":-11,"y":103},{"x":-38,"y":59}],"type":"area"},{"arc":[{"x":114605,"y":71465},{"x":204,"y":-17},{"x":197,"y":67},{"x":96,"y":-12},{"x":52,"y":69},{"x":73,"y":0},{"x":47,"y":28},{"x":35,"y":95},{"x":77,"y":24},{"x":9,"y":24}],"type":"admin"},{"arc":[{"x":115273,"y":61709},{"x":-20,"y":17},{"x":-11,"y":-50},{"x":-37,"y":4},{"x":-2,"y":-20},{"x":47,"y":-21},{"x":23,"y":70}],"type":"coastline"},{"arc":[{"x":115418,"y":62656},{"x":-19,"y":11},{"x":-6,"y":-21},{"x":25,"y":10}],"type":"coastline"},{"arc":[{"x":115508,"y":61712},{"x":-97,"y":18},{"x":14,"y":-107},{"x":28,"y":59},{"x":51,"y":5},{"x":4,"y":25}],"type":"coastline"},{"arc":[{"x":115512,"y":63074},{"x":-21,"y":62},{"x":-14,"y":-61},{"x":13,"y":-17},{"x":22,"y":16}],"type":"coastline"},{"arc":[{"x":115525,"y":62972},{"x":-86,"y":23},{"x":-22,"y":-41},{"x":-35,"y":1},{"x":13,"y":-46},{"x":77,"y":-1},{"x":53,"y":64}],"type":"coastline"},{"arc":[{"x":115584,"y":62837},{"x":-34,"y":12},{"x":25,"y":-28},{"x":9,"y":16}],"type":"coastline"},{"arc":[{"x":115637,"y":63324},{"x":-40,"y":15},{"x":15,"y":46},{"x":-38,"y":-84},{"x":-34,"y":-3},{"x":12,"y":-33},{"x":53,"y":38},{"x":29,"y":-16},{"x":3,"y":37}],"type":"coastline"},{"arc":[{"x":115644,"y":62944},{"x":-32,"y":38},{"x":-43,"y":-21},{"x":20,"y":-98},{"x":53,"y":30},{"x":-19,"y":23},{"x":21,"y":28}],"type":"coastline"},{"arc":[{"x":115649,"y":63496},{"x":-29,"y":7},{"x":6,"y":-41},{"x":23,"y":34}],"type":"coastline"},{"arc":[{"x":115710,"y":63043},{"x":-49,"y":-28},{"x":37,"y":-2},{"x":12,"y":30}],"type":"coastline"},{"arc":[{"x":115755,"y":62586},{"x":-34,"y":73},{"x":-52,"y":-20},{"x":28,"y":-48},{"x":-47,"y":-56},{"x":11,"y":-33},{"x":81,"y":43},{"x":13,"y":41}],"type":"coastline"},{"arc":[{"x":115768,"y":61962},{"x":-9,"y":39},{"x":-44,"y":-5},{"x":19,"y":-50},{"x":34,"y":16}],"type":"coastline"},{"arc":[{"x":116001,"y":62964},{"x":-89,"y":51},{"x":20,"y":-26},{"x":-51,"y":13},{"x":-49,"y":-51},{"x":15,"y":-104},{"x":154,"y":22},{"x":-24,"y":64},{"x":24,"y":31}],"type":"coastline"},{"arc":[{"x":116009,"y":63990},{"x":-119,"y":81},{"x":-23,"y":23},{"x":15,"y":27},{"x":-88,"y":-6},{"x":-58,"y":90},{"x":-68,"y":-11},{"x":35,"y":-42},{"x":-21,"y":2},{"x":-33,"y":-75},{"x":-143,"y":33},{"x":-71,"y":-16},{"x":-23,"y":22},{"x":-17,"y":-24},{"x":-21,"y":24},{"x":-14,"y":-26},{"x":-50,"y":-3},{"x":54,"y":-83},{"x":125,"y":-8},{"x":74,"y":-40},{"x":86,"y":16},{"x":45,"y":35},{"x":242,"y":-100},{"x":73,"y":81}],"type":"coastline"},{"arc":[{"x":116088,"y":63309},{"x":-34,"y":11},{"x":-18,"y":-34},{"x":-14,"y":26},{"x":3,"y":-29},{"x":-31,"y":-7},{"x":-13,"y":48},{"x":-12,"y":-33},{"x":-11,"y":102},{"x":-37,"y":26},{"x":60,"y":19},{"x":-20,"y":111},{"x":64,"y":81},{"x":4,"y":103},{"x":-48,"y":16},{"x":-57,"y":-31},{"x":5,"y":-31},{"x":43,"y":-18},{"x":-40,"y":-67},{"x":26,"y":-20},{"x":-15,"y":-30},{"x":-20,"y":26},{"x":13,"y":-33},{"x":-27,"y":6},{"x":11,"y":32},{"x":-20,"y":-28},{"x":-79,"y":34},{"x":5,"y":-28},{"x":-5,"y":23},{"x":-38,"y":-14},{"x":0,"y":57},{"x":-35,"y":26},{"x":25,"y":26},{"x":-46,"y":18},{"x":4,"y":-32},{"x":-72,"y":-25},{"x":60,"y":-85},{"x":-39,"y":-80},{"x":78,"y":-49},{"x":13,"y":-47},{"x":-31,"y":-38},{"x":-70,"y":-1},{"x":-1,"y":40},{"x":-3,"y":-37},{"x":-20,"y":19},{"x":-9,"y":-18},{"x":48,"y":-27},{"x":-23,"y":7},{"x":-45,"y":-90},{"x":23,"y":-37},{"x":65,"y":1},{"x":19,"y":-28},{"x":40,"y":47},{"x":20,"y":-14},{"x":-18,"y":-24},{"x":17,"y":19},{"x":5,"y":-34},{"x":-25,"y":10},{"x":35,"y":-31},{"x":-42,"y":-28},{"x":33,"y":-84},{"x":64,"y":-17},{"x":44,"y":44},{"x":-20,"y":38},{"x":44,"y":-18},{"x":55,"y":41},{"x":-3,"y":16},{"x":-54,"y":-9},{"x":-20,"y":41},{"x":38,"y":-23},{"x":74,"y":74},{"x":17,"y":-30},{"x":49,"y":8},{"x":-38,"y":33},{"x":49,"y":80}],"type":"coastline"},{"arc":[{"x":116188,"y":64110},{"x":-61,"y":67},{"x":-41,"y":-49},{"x":20,"y":-68},{"x":4,"y":18},{"x":58,"y":-11},{"x":20,"y":43}],"type":"coastline"},{"arc":[{"x":116191,"y":63412},{"x":-37,"y":-4},{"x":-12,"y":21},{"x":26,"y":14},{"x":-40,"y":54},{"x":-78,"y":-64},{"x":48,"y":-63},{"x":14,"y":24},{"x":36,"y":-5},{"x":-5,"y":-32},{"x":48,"y":55}],"type":"coastline"},{"arc":[{"x":115934,"y":69438},{"x":26,"y":-21},{"x":-33,"y":-34},{"x":201,"y":-50},{"x":20,"y":-25}],"type":"coastline"},{"arc":[{"x":116148,"y":69308},{"x":77,"y":21},{"x":34,"y":-60},{"x":109,"y":-24},{"x":43,"y":-70},{"x":50,"y":-19},{"x":77,"y":-3},{"x":211,"y":104},{"x":-43,"y":91},{"x":70,"y":23},{"x":60,"y":74},{"x":-92,"y":192},{"x":-62,"y":55},{"x":-18,"y":-11},{"x":-2,"y":110},{"x":-131,"y":50},{"x":-36,"y":-52},{"x":-130,"y":-30},{"x":-75,"y":89},{"x":-16,"y":-10},{"x":-26,"y":32},{"x":-46,"y":-12},{"x":-84,"y":-112},{"x":8,"y":-40},{"x":-102,"y":-53},{"x":-38,"y":-74},{"x":12,"y":-51},{"x":-28,"y":14},{"x":-11,"y":-20},{"x":22,"y":-34},{"x":-46,"y":-20},{"x":-1,"y":-30}],"type":"admin"},{"arc":[{"x":111185,"y":62759},{"x":-19,"y":16},{"x":16,"y":-36},{"x":3,"y":20}],"type":"coastline"},{"arc":[{"x":111454,"y":63113},{"x":-63,"y":21},{"x":8,"y":18},{"x":-76,"y":-12},{"x":23,"y":-32},{"x":67,"y":11},{"x":25,"y":-25},{"x":16,"y":19}],"type":"coastline"},{"arc":[{"x":111569,"y":62756},{"x":-64,"y":-7},{"x":3,"y":29},{"x":-30,"y":3},{"x":1,"y":-33},{"x":-23,"y":0},{"x":13,"y":-26},{"x":60,"y":-1},{"x":40,"y":35}],"type":"coastline"},{"arc":[{"x":111647,"y":63048},{"x":-22,"y":38},{"x":-99,"y":-11},{"x":121,"y":-27}],"type":"coastline"},{"arc":[{"x":111660,"y":63147},{"x":-82,"y":57},{"x":18,"y":-57},{"x":64,"y":0}],"type":"coastline"},{"arc":[{"x":111822,"y":63078},{"x":-188,"y":9},{"x":62,"y":-60},{"x":117,"y":5},{"x":9,"y":46}],"type":"coastline"},{"arc":[{"x":111947,"y":63127},{"x":-49,"y":11},{"x":-33,"y":49},{"x":20,"y":-85},{"x":11,"y":23},{"x":51,"y":2}],"type":"coastline"},{"arc":[{"x":112046,"y":62134},{"x":-56,"y":41},{"x":16,"y":-50},{"x":40,"y":9}],"type":"coastline"},{"arc":[{"x":112275,"y":63194},{"x":-35,"y":21},{"x":-2,"y":-50},{"x":37,"y":29}],"type":"coastline"},{"arc":[{"x":112340,"y":63902},{"x":-10,"y":18},{"x":-25,"y":-27},{"x":9,"y":-25},{"x":26,"y":34}],"type":"coastline"},{"arc":[{"x":112351,"y":64682},{"x":-14,"y":57},{"x":-33,"y":14},{"x":-44,"y":-57},{"x":-2,"y":-58},{"x":55,"y":-1},{"x":38,"y":45}],"type":"coastline"},{"arc":[{"x":112450,"y":62339},{"x":-35,"y":62},{"x":-51,"y":0},{"x":-40,"y":-36},{"x":-51,"y":14},{"x":9,"y":-44},{"x":-58,"y":-57},{"x":10,"y":-33},{"x":-96,"y":32},{"x":19,"y":23},{"x":28,"y":-4},{"x":-9,"y":42},{"x":41,"y":20},{"x":-35,"y":21},{"x":6,"y":33},{"x":-32,"y":-8},{"x":-22,"y":-68},{"x":-38,"y":-3},{"x":32,"y":-55},{"x":35,"y":-30},{"x":-4,"y":-34},{"x":-32,"y":9},{"x":-17,"y":-41},{"x":54,"y":-55},{"x":4,"y":-62},{"x":50,"y":-37},{"x":25,"y":10},{"x":28,"y":-37},{"x":27,"y":44},{"x":26,"y":-12},{"x":35,"y":22},{"x":-21,"y":67},{"x":17,"y":49},{"x":-71,"y":15},{"x":-42,"y":84},{"x":145,"y":10},{"x":63,"y":59}],"type":"coastline"},{"arc":[{"x":112457,"y":62617},{"x":-70,"y":93},{"x":-100,"y":23},{"x":81,"y":98},{"x":-30,"y":54},{"x":-52,"y":7},{"x":-27,"y":-35},{"x":2,"y":79},{"x":-61,"y":30},{"x":-118,"y":1},{"x":-14,"y":-25},{"x":21,"y":67},{"x":-87,"y":-24},{"x":52,"y":49},{"x":-54,"y":27},{"x":-22,"y":3},{"x":-27,"y":-83},{"x":-32,"y":5},{"x":-18,"y":-35},{"x":-25,"y":37},{"x":36,"y":67},{"x":-45,"y":-9},{"x":-16,"y":-53},{"x":-100,"y":27},{"x":-49,"y":-88},{"x":3,"y":69},{"x":-45,"y":21},{"x":-14,"y":-26},{"x":-7,"y":24},{"x":-38,"y":-24},{"x":-37,"y":19},{"x":16,"y":-55},{"x":-40,"y":32},{"x":-42,"y":-8},{"x":-37,"y":50},{"x":-126,"y":-36},{"x":50,"y":-34},{"x":-35,"y":-49},{"x":31,"y":-11},{"x":17,"y":24},{"x":5,"y":-25},{"x":29,"y":34},{"x":-13,"y":-42},{"x":24,"y":-41},{"x":28,"y":106},{"x":33,"y":-19},{"x":-13,"y":-111},{"x":54,"y":24},{"x":7,"y":99},{"x":81,"y":-88},{"x":-35,"y":-29},{"x":21,"y":-29},{"x":-45,"y":8},{"x":-7,"y":26},{"x":8,"y":-35},{"x":-40,"y":-15},{"x":52,"y":-15},{"x":7,"y":-38},{"x":39,"y":-2},{"x":21,"y":-61},{"x":-50,"y":-22},{"x":10,"y":-79},{"x":-100,"y":-54},{"x":13,"y":-43},{"x":56,"y":10},{"x":58,"y":48},{"x":34,"y":-7},{"x":11,"y":-86},{"x":-26,"y":-45},{"x":33,"y":-31},{"x":29,"y":76},{"x":42,"y":20},{"x":-13,"y":-16},{"x":31,"y":2},{"x":36,"y":-45},{"x":176,"y":-46},{"x":40,"y":-41},{"x":51,"y":8},{"x":-3,"y":102},{"x":-97,"y":3},{"x":34,"y":33},{"x":-45,"y":86},{"x":-186,"y":31},{"x":48,"y":18},{"x":71,"y":-23},{"x":63,"y":56},{"x":-11,"y":27},{"x":-62,"y":-3},{"x":-60,"y":59},{"x":-73,"y":-4},{"x":42,"y":57},{"x":74,"y":-60},{"x":97,"y":-19},{"x":94,"y":47},{"x":-73,"y":-80},{"x":37,"y":-29},{"x":-23,"y":-26},{"x":79,"y":-55},{"x":1,"y":-26},{"x":64,"y":30},{"x":-31,"y":36},{"x":16,"y":15},{"x":38,"y":-34},{"x":27,"y":12},{"x":5,"y":-66},{"x":44,"y":18},{"x":21,"y":-40},{"x":32,"y":48},{"x":-13,"y":48},{"x":62,"y":11},{"x":-23,"y":28},{"x":46,"y":-12},{"x":41,"y":-72},{"x":36,"y":77}],"type":"coastline"},{"arc":[{"x":112507,"y":63909},{"x":-25,"y":15},{"x":-8,"y":-15},{"x":33,"y":0}],"type":"coastline"},{"arc":[{"x":112870,"y":62618},{"x":-35,"y":15},{"x":-16,"y":56},{"x":-72,"y":-35},{"x":-42,"y":14},{"x":-15,"y":-40},{"x":30,"y":-27},{"x":-33,"y":3},{"x":-11,"y":-23},{"x":32,"y":-20},{"x":-28,"y":-25},{"x":-86,"y":10},{"x":56,"y":-57},{"x":14,"y":30},{"x":117,"y":-29},{"x":27,"y":29},{"x":-16,"y":44},{"x":78,"y":55}],"type":"coastline"},{"arc":[{"x":113139,"y":62920},{"x":-6,"y":-15},{"x":30,"y":10},{"x":-24,"y":5}],"type":"coastline"},{"arc":[{"x":113223,"y":62977},{"x":-39,"y":24},{"x":-41,"y":-11},{"x":3,"y":-19},{"x":-31,"y":22},{"x":-122,"y":-6},{"x":10,"y":-19},{"x":100,"y":8},{"x":25,"y":-38},{"x":66,"y":10},{"x":29,"y":29}],"type":"coastline"},{"arc":[{"x":113493,"y":63050},{"x":-88,"y":-59},{"x":42,"y":-37},{"x":-45,"y":-14},{"x":13,"y":-55},{"x":-91,"y":-68},{"x":15,"y":-46},{"x":77,"y":41},{"x":26,"y":65},{"x":44,"y":10},{"x":-24,"y":64},{"x":31,"y":99}],"type":"coastline"},{"arc":[{"x":113557,"y":64674},{"x":-24,"y":73},{"x":-28,"y":-17},{"x":-17,"y":23},{"x":-86,"y":0},{"x":-15,"y":-62},{"x":33,"y":-48},{"x":-33,"y":-65},{"x":37,"y":-39},{"x":70,"y":-16},{"x":-12,"y":82},{"x":25,"y":18},{"x":-22,"y":53},{"x":72,"y":-2}],"type":"coastline"},{"arc":[{"x":113595,"y":64615},{"x":-29,"y":27},{"x":-10,"y":-82},{"x":39,"y":55}],"type":"coastline"},{"arc":[{"x":113739,"y":64373},{"x":-19,"y":37},{"x":2,"y":-52},{"x":17,"y":15}],"type":"coastline"},{"arc":[{"x":115043,"y":64120},{"x":-65,"y":-2},{"x":-4,"y":-27},{"x":69,"y":29}],"type":"coastline"},{"arc":[{"x":115383,"y":63889},{"x":-52,"y":54},{"x":-155,"y":-78},{"x":-77,"y":35},{"x":-127,"y":-36},{"x":-96,"y":-79},{"x":-110,"y":84},{"x":-11,"y":65},{"x":-96,"y":36},{"x":-103,"y":-7},{"x":-45,"y":-28},{"x":-11,"y":17},{"x":-99,"y":-13},{"x":-33,"y":-55},{"x":-52,"y":20},{"x":-49,"y":-45},{"x":-58,"y":14},{"x":-44,"y":-29},{"x":-52,"y":-1},{"x":-12,"y":58},{"x":-14,"y":-59},{"x":-32,"y":-16},{"x":40,"y":4},{"x":-22,"y":-31},{"x":-97,"y":-33},{"x":36,"y":4},{"x":1,"y":-16},{"x":-43,"y":-17},{"x":-33,"y":15},{"x":-13,"y":54},{"x":-30,"y":-37},{"x":24,"y":-10},{"x":-86,"y":-22},{"x":-41,"y":-73},{"x":-78,"y":18},{"x":3,"y":48},{"x":-86,"y":6},{"x":-118,"y":-91},{"x":-135,"y":56},{"x":-23,"y":0},{"x":33,"y":-6},{"x":-8,"y":-20},{"x":-37,"y":5},{"x":-30,"y":39},{"x":-59,"y":-29},{"x":-40,"y":18},{"x":23,"y":-32},{"x":-114,"y":-28},{"x":17,"y":-14},{"x":-35,"y":-13},{"x":-44,"y":46},{"x":46,"y":-7},{"x":24,"y":40},{"x":-75,"y":30},{"x":14,"y":51},{"x":45,"y":-10},{"x":-2,"y":73},{"x":-27,"y":-24},{"x":-21,"y":24},{"x":57,"y":54},{"x":31,"y":-32},{"x":5,"y":51},{"x":7,"y":-87},{"x":7,"y":78},{"x":20,"y":-5},{"x":-12,"y":45},{"x":-24,"y":-14},{"x":-17,"y":31},{"x":-9,"y":-22},{"x":-22,"y":37},{"x":40,"y":-4},{"x":-6,"y":42},{"x":56,"y":12},{"x":-18,"y":24},{"x":19,"y":38},{"x":110,"y":24},{"x":22,"y":-18},{"x":1,"y":27},{"x":-41,"y":22},{"x":59,"y":92},{"x":-44,"y":28},{"x":-2,"y":82},{"x":29,"y":31},{"x":-5,"y":-28},{"x":39,"y":39},{"x":26,"y":-5},{"x":-32,"y":36},{"x":56,"y":10},{"x":-64,"y":16},{"x":-7,"y":27},{"x":-57,"y":-4},{"x":95,"y":25},{"x":-12,"y":31},{"x":25,"y":2},{"x":-64,"y":87},{"x":-30,"y":-60},{"x":-29,"y":28},{"x":-7,"y":-61},{"x":-32,"y":36},{"x":-72,"y":-30},{"x":11,"y":24},{"x":-29,"y":-6},{"x":-13,"y":32},{"x":-95,"y":40},{"x":-73,"y":-6},{"x":-31,"y":-36},{"x":3,"y":-72},{"x":-75,"y":-30},{"x":10,"y":-29},{"x":-38,"y":-16},{"x":-65,"y":-159},{"x":-27,"y":-14},{"x":3,"y":24},{"x":-4,"y":-25},{"x":-107,"y":-57},{"x":-127,"y":-27},{"x":11,"y":-40},{"x":92,"y":-57},{"x":-70,"y":-29},{"x":-14,"y":-30},{"x":28,"y":-21},{"x":-26,"y":-57},{"x":109,"y":-46},{"x":21,"y":12},{"x":22,"y":-52},{"x":47,"y":-9},{"x":17,"y":-57},{"x":29,"y":-4},{"x":8,"y":25},{"x":38,"y":-36},{"x":-135,"y":-3},{"x":17,"y":24},{"x":-22,"y":34},{"x":-116,"y":47},{"x":-57,"y":-10},{"x":-47,"y":-57},{"x":-18,"y":45},{"x":-66,"y":0},{"x":-20,"y":-27},{"x":39,"y":-39},{"x":-34,"y":-18},{"x":-18,"y":-93},{"x":9,"y":-68},{"x":37,"y":13},{"x":-15,"y":-26},{"x":-75,"y":41},{"x":29,"y":12},{"x":-45,"y":66},{"x":-40,"y":-10},{"x":-15,"y":17},{"x":-62,"y":-43},{"x":26,"y":-14},{"x":-26,"y":-19},{"x":-26,"y":52},{"x":-31,"y":-13},{"x":-25,"y":25},{"x":15,"y":-107},{"x":-56,"y":3},{"x":-54,"y":-43},{"x":-26,"y":71},{"x":-46,"y":-32},{"x":15,"y":59},{"x":27,"y":-13},{"x":-33,"y":31},{"x":-112,"y":-39},{"x":20,"y":-25},{"x":-18,"y":-41},{"x":-30,"y":107},{"x":23,"y":24},{"x":-53,"y":-12},{"x":-41,"y":39},{"x":-21,"y":-50},{"x":-31,"y":53},{"x":-11,"y":-15},{"x":-27,"y":27},{"x":-17,"y":-15},{"x":-6,"y":28},{"x":-8,"y":-20},{"x":-59,"y":19},{"x":-22,"y":-47},{"x":-42,"y":-13},{"x":0,"y":-34},{"x":58,"y":-132},{"x":14,"y":14},{"x":13,"y":-20},{"x":-28,"y":-57},{"x":40,"y":-63},{"x":-173,"y":-31},{"x":11,"y":-57},{"x":-29,"y":-7},{"x":-36,"y":34},{"x":25,"y":19},{"x":-34,"y":9},{"x":41,"y":20},{"x":-50,"y":-22},{"x":-50,"y":26},{"x":-2,"y":-37},{"x":-20,"y":65},{"x":-114,"y":8},{"x":-11,"y":-44},{"x":-44,"y":21},{"x":-80,"y":-20},{"x":-19,"y":-54},{"x":15,"y":11},{"x":27,"y":-36},{"x":-13,"y":-51},{"x":48,"y":-90},{"x":39,"y":-1},{"x":-21,"y":67},{"x":45,"y":23},{"x":7,"y":-35},{"x":-26,"y":-10},{"x":25,"y":9},{"x":19,"y":-33},{"x":82,"y":53},{"x":47,"y":-3},{"x":-7,"y":-45},{"x":69,"y":-13},{"x":10,"y":22},{"x":69,"y":-14},{"x":33,"y":37},{"x":17,"y":-21},{"x":68,"y":-32},{"x":-5,"y":-25},{"x":17,"y":34},{"x":-6,"y":28},{"x":97,"y":2},{"x":60,"y":-27},{"x":-5,"y":-45},{"x":27,"y":-2},{"x":7,"y":30},{"x":82,"y":-35},{"x":-29,"y":46},{"x":-48,"y":13},{"x":21,"y":15},{"x":-36,"y":30},{"x":20,"y":22},{"x":23,"y":-34},{"x":-5,"y":45},{"x":21,"y":-8},{"x":15,"y":-50},{"x":9,"y":28},{"x":59,"y":-74},{"x":-10,"y":93},{"x":-60,"y":18},{"x":-23,"y":40},{"x":44,"y":-12},{"x":0,"y":26},{"x":79,"y":-39},{"x":13,"y":50},{"x":-1,"y":-34},{"x":52,"y":9},{"x":30,"y":-28},{"x":-88,"y":-27},{"x":19,"y":-24},{"x":36,"y":26},{"x":3,"y":-36},{"x":27,"y":-3},{"x":-31,"y":-57},{"x":23,"y":-19},{"x":13,"y":15},{"x":7,"y":-26},{"x":21,"y":14},{"x":20,"y":-31},{"x":11,"y":42},{"x":39,"y":-8},{"x":-8,"y":-26},{"x":61,"y":23},{"x":-10,"y":-29},{"x":23,"y":-9},{"x":-9,"y":80},{"x":-46,"y":-10},{"x":-21,"y":25},{"x":31,"y":21},{"x":-75,"y":42},{"x":45,"y":11},{"x":59,"y":-25},{"x":-26,"y":50},{"x":17,"y":24},{"x":-36,"y":25},{"x":-35,"y":-43},{"x":-4,"y":28},{"x":-68,"y":3},{"x":-4,"y":32},{"x":40,"y":18},{"x":80,"y":-21},{"x":-1,"y":48},{"x":19,"y":-63},{"x":49,"y":11},{"x":-18,"y":-66},{"x":28,"y":-41},{"x":59,"y":-13},{"x":15,"y":-30},{"x":34,"y":6},{"x":1,"y":30},{"x":30,"y":-10},{"x":9,"y":-111},{"x":44,"y":-33},{"x":-33,"y":-12},{"x":-8,"y":19},{"x":-50,"y":-40},{"x":13,"y":-77},{"x":36,"y":4},{"x":48,"y":51},{"x":32,"y":-15},{"x":50,"y":24},{"x":-69,"y":58},{"x":40,"y":5},{"x":-4,"y":26},{"x":107,"y":-28},{"x":1,"y":-18},{"x":18,"y":18},{"x":16,"y":-31},{"x":58,"y":3},{"x":-120,"y":-38},{"x":-4,"y":-20},{"x":46,"y":-20},{"x":-96,"y":-53},{"x":84,"y":-42},{"x":-23,"y":-52},{"x":70,"y":41},{"x":85,"y":-31},{"x":2,"y":-19},{"x":-45,"y":-4},{"x":-71,"y":-60},{"x":25,"y":-22},{"x":-34,"y":-22},{"x":56,"y":-112},{"x":26,"y":19},{"x":-5,"y":119},{"x":47,"y":-77},{"x":19,"y":46},{"x":-22,"y":32},{"x":46,"y":25},{"x":9,"y":-100},{"x":71,"y":32},{"x":-6,"y":27},{"x":9,"y":-32},{"x":75,"y":-35},{"x":56,"y":51},{"x":19,"y":80},{"x":69,"y":27},{"x":-7,"y":23},{"x":-84,"y":-11},{"x":-66,"y":40},{"x":88,"y":-17},{"x":71,"y":40},{"x":-55,"y":52},{"x":-53,"y":-17},{"x":-35,"y":49},{"x":-3,"y":-30},{"x":-57,"y":54},{"x":89,"y":32},{"x":58,"y":-5},{"x":-11,"y":39},{"x":66,"y":39},{"x":-4,"y":77},{"x":-213,"y":24},{"x":67,"y":30},{"x":12,"y":-17},{"x":168,"y":12},{"x":-29,"y":49},{"x":71,"y":48},{"x":-16,"y":42},{"x":28,"y":-42},{"x":-29,"y":-51},{"x":73,"y":-73},{"x":-67,"y":-11},{"x":64,"y":-51},{"x":83,"y":-17},{"x":-13,"y":41},{"x":46,"y":39},{"x":-3,"y":-24},{"x":101,"y":-65},{"x":43,"y":19},{"x":54,"y":-13},{"x":45,"y":36},{"x":49,"y":-37},{"x":87,"y":32},{"x":30,"y":-26},{"x":37,"y":49},{"x":53,"y":-9},{"x":19,"y":73},{"x":24,"y":11},{"x":37,"y":-43},{"x":5,"y":124},{"x":56,"y":62},{"x":-81,"y":-23},{"x":-51,"y":30},{"x":5,"y":-18},{"x":-45,"y":1},{"x":-7,"y":24},{"x":2,"y":-22},{"x":-71,"y":10},{"x":-50,"y":16},{"x":-7,"y":40},{"x":6,"y":-39},{"x":-33,"y":-3},{"x":-11,"y":48},{"x":54,"y":21},{"x":6,"y":-16},{"x":-5,"y":44},{"x":-20,"y":-6},{"x":38,"y":99},{"x":10,"y":-30},{"x":19,"y":17},{"x":-20,"y":-27},{"x":56,"y":-35},{"x":11,"y":45},{"x":24,"y":-30},{"x":-27,"y":-20},{"x":26,"y":14},{"x":54,"y":-44},{"x":13,"y":44},{"x":42,"y":-31},{"x":30,"y":62},{"x":41,"y":-38},{"x":67,"y":1},{"x":13,"y":-37},{"x":-20,"y":4},{"x":65,"y":-38},{"x":32,"y":22},{"x":-2,"y":63},{"x":218,"y":31},{"x":31,"y":40},{"x":18,"y":127},{"x":99,"y":62},{"x":68,"y":-24},{"x":95,"y":46},{"x":47,"y":-121},{"x":113,"y":67},{"x":31,"y":-22},{"x":-13,"y":-22},{"x":84,"y":-62},{"x":44,"y":51},{"x":58,"y":-42},{"x":46,"y":58},{"x":83,"y":1},{"x":170,"y":74},{"x":74,"y":-7},{"x":67,"y":59}],"type":"coastline"},{"arc":[{"x":103579,"y":81200},{"x":-74,"y":27},{"x":-44,"y":-52},{"x":-97,"y":21},{"x":-4,"y":-69},{"x":-113,"y":13}],"type":"admin"},{"arc":[{"x":103247,"y":81140},{"x":-157,"y":28},{"x":22,"y":55},{"x":-159,"y":162},{"x":5,"y":79},{"x":-50,"y":20},{"x":-118,"y":-15},{"x":11,"y":32},{"x":-61,"y":22},{"x":-60,"y":-37},{"x":-105,"y":71},{"x":-42,"y":-32},{"x":-64,"y":61},{"x":-11,"y":-13},{"x":-92,"y":39},{"x":-3,"y":40},{"x":62,"y":36},{"x":17,"y":63},{"x":-15,"y":37},{"x":-33,"y":-6},{"x":-106,"y":65},{"x":-3,"y":27},{"x":8,"y":43},{"x":49,"y":27},{"x":57,"y":89},{"x":-140,"y":37},{"x":-74,"y":71}],"type":"admin"},{"arc":[{"x":102185,"y":82141},{"x":-57,"y":-21},{"x":-26,"y":-76},{"x":-163,"y":-68},{"x":-26,"y":-55},{"x":95,"y":-194},{"x":-52,"y":-111},{"x":-104,"y":-70},{"x":54,"y":-119},{"x":4,"y":-311},{"x":31,"y":-37},{"x":-5,"y":-88},{"x":-60,"y":-80},{"x":92,"y":-80},{"x":-25,"y":-63},{"x":-53,"y":-37},{"x":41,"y":-32},{"x":47,"y":11},{"x":51,"y":-49},{"x":-89,"y":-78},{"x":-14,"y":-73}],"type":"admin"},{"arc":[{"x":101926,"y":80510},{"x":79,"y":-223},{"x":213,"y":-227},{"x":9,"y":-42},{"x":58,"y":-28},{"x":-14,"y":-34},{"x":60,"y":-44},{"x":37,"y":-80},{"x":68,"y":4},{"x":129,"y":-39}],"type":"admin"},{"arc":[{"x":102565,"y":79797},{"x":72,"y":40},{"x":145,"y":18},{"x":14,"y":100},{"x":62,"y":-34},{"x":65,"y":-2},{"x":57,"y":21},{"x":15,"y":69},{"x":42,"y":10},{"x":25,"y":39},{"x":63,"y":30},{"x":70,"y":-14},{"x":52,"y":22},{"x":154,"y":153},{"x":132,"y":56},{"x":19,"y":94},{"x":-22,"y":38},{"x":146,"y":42},{"x":13,"y":64},{"x":197,"y":109},{"x":90,"y":-37},{"x":42,"y":-114},{"x":129,"y":6},{"x":107,"y":-97},{"x":56,"y":33},{"x":53,"y":-4},{"x":27,"y":33}],"type":"admin"},{"arc":[{"x":104390,"y":80472},{"x":-71,"y":142},{"x":-131,"y":6},{"x":-48,"y":81},{"x":-160,"y":4},{"x":-19,"y":37},{"x":-183,"y":-19},{"x":9,"y":116},{"x":-134,"y":22},{"x":-97,"y":82},{"x":-9,"y":65},{"x":113,"y":143},{"x":-81,"y":49}],"type":"admin"},{"arc":[{"x":113157,"y":78516},{"x":-92,"y":-4},{"x":-48,"y":36},{"x":-32,"y":-9},{"x":-52,"y":-48},{"x":-89,"y":-31},{"x":-113,"y":-101},{"x":-57,"y":-23},{"x":-35,"y":12},{"x":-59,"y":-64},{"x":-34,"y":-4},{"x":11,"y":-63},{"x":-54,"y":-18}],"type":"area"},{"arc":[{"x":112503,"y":78199},{"x":37,"y":-49},{"x":84,"y":53},{"x":81,"y":-23},{"x":-49,"y":-46},{"x":21,"y":-88},{"x":-17,"y":-52},{"x":43,"y":-3},{"x":-87,"y":-68},{"x":2,"y":-37},{"x":-44,"y":12},{"x":-38,"y":-30},{"x":4,"y":-67},{"x":46,"y":-12},{"x":18,"y":-17},{"x":-25,"y":-6},{"x":41,"y":-25},{"x":-5,"y":-93},{"x":-46,"y":-62}],"type":"admin"},{"arc":[{"x":112569,"y":77586},{"x":219,"y":-61},{"x":359,"y":-13},{"x":-5,"y":-37},{"x":86,"y":-15},{"x":24,"y":42},{"x":-35,"y":-125},{"x":47,"y":-9},{"x":-2,"y":-13},{"x":-50,"y":15},{"x":49,"y":-19},{"x":9,"y":15},{"x":64,"y":-25}],"type":"coastline"},{"arc":[{"x":113457,"y":78393},{"x":-142,"y":55},{"x":-74,"y":-3},{"x":-84,"y":71}],"type":"admin"},{"arc":[{"x":103186,"y":76837},{"x":-5,"y":49},{"x":-72,"y":-66},{"x":27,"y":-36},{"x":50,"y":53}],"type":"coastline"},{"arc":[{"x":103575,"y":77529},{"x":-67,"y":48},{"x":-135,"y":28},{"x":-19,"y":83},{"x":-43,"y":21},{"x":-11,"y":39},{"x":5,"y":169}],"type":"admin"},{"arc":[{"x":103305,"y":77917},{"x":-45,"y":19},{"x":-87,"y":113},{"x":-49,"y":169},{"x":-82,"y":44},{"x":18,"y":66},{"x":-66,"y":-9},{"x":-34,"y":61},{"x":175,"y":338},{"x":-13,"y":44},{"x":25,"y":42},{"x":-56,"y":181},{"x":20,"y":65}],"type":"admin"},{"arc":[{"x":103111,"y":79050},{"x":-64,"y":82},{"x":-39,"y":2},{"x":-4,"y":44}],"type":"admin"},{"arc":[{"x":103004,"y":79178},{"x":-31,"y":36},{"x":-96,"y":16},{"x":-102,"y":-80},{"x":-164,"y":-66},{"x":3,"y":-207},{"x":-72,"y":-214},{"x":-162,"y":-17},{"x":13,"y":-66},{"x":-31,"y":-136},{"x":69,"y":-157},{"x":-66,"y":-66},{"x":-24,"y":-76},{"x":76,"y":-98},{"x":-7,"y":-56},{"x":-211,"y":-12}],"type":"admin"},{"arc":[{"x":102199,"y":77979},{"x":-6,"y":-23},{"x":-42,"y":-1},{"x":-36,"y":-66},{"x":39,"y":-39},{"x":-74,"y":-99},{"x":49,"y":-51},{"x":-36,"y":-79},{"x":-2,"y":-127},{"x":50,"y":-62},{"x":30,"y":-207},{"x":35,"y":-22},{"x":19,"y":27},{"x":123,"y":-117},{"x":169,"y":-56},{"x":42,"y":-72},{"x":225,"y":-195}],"type":"admin"},{"arc":[{"x":102784,"y":76790},{"x":44,"y":18},{"x":-27,"y":24},{"x":59,"y":-16},{"x":-17,"y":55},{"x":70,"y":-36},{"x":0,"y":-37},{"x":45,"y":-12},{"x":17,"y":37},{"x":-23,"y":2},{"x":-8,"y":43},{"x":37,"y":37},{"x":-21,"y":27},{"x":-61,"y":-49},{"x":-15,"y":85},{"x":25,"y":15},{"x":72,"y":-52},{"x":57,"y":16},{"x":-2,"y":33},{"x":15,"y":-18},{"x":27,"y":28},{"x":40,"y":-3},{"x":20,"y":-36},{"x":18,"y":35},{"x":-4,"y":-58},{"x":49,"y":-29},{"x":40,"y":20},{"x":37,"y":117},{"x":52,"y":-72},{"x":52,"y":80},{"x":-25,"y":0},{"x":5,"y":30},{"x":33,"y":-41},{"x":20,"y":31},{"x":-15,"y":-35},{"x":24,"y":22},{"x":-12,"y":21},{"x":115,"y":61},{"x":14,"y":51},{"x":87,"y":34},{"x":-59,"y":84},{"x":45,"y":-5},{"x":-17,"y":54},{"x":25,"y":30},{"x":28,"y":-17},{"x":-22,"y":39},{"x":37,"y":27},{"x":-55,"y":10},{"x":24,"y":22},{"x":-59,"y":67}],"type":"coastline"},{"arc":[{"x":113191,"y":79059},{"x":-27,"y":-19},{"x":-27,"y":27},{"x":24,"y":124},{"x":-56,"y":35},{"x":4,"y":35},{"x":-84,"y":34},{"x":-65,"y":-69},{"x":-109,"y":-13},{"x":-44,"y":-48},{"x":-14,"y":19},{"x":-23,"y":-13},{"x":36,"y":85},{"x":-9,"y":76},{"x":-60,"y":43},{"x":-41,"y":-35},{"x":-47,"y":18},{"x":-26,"y":38},{"x":41,"y":27},{"x":0,"y":43},{"x":-43,"y":-5},{"x":-60,"y":75}],"type":"admin"},{"arc":[{"x":112561,"y":79536},{"x":-42,"y":-52},{"x":-53,"y":-1},{"x":-121,"y":-130},{"x":-81,"y":-28},{"x":-32,"y":95},{"x":-166,"y":29},{"x":-68,"y":-6},{"x":-71,"y":-104},{"x":-54,"y":-6},{"x":-70,"y":39},{"x":-48,"y":-31},{"x":-197,"y":194}],"type":"admin"},{"arc":[{"x":111391,"y":78969},{"x":-66,"y":-32},{"x":-20,"y":-47},{"x":109,"y":-416},{"x":235,"y":-9},{"x":96,"y":45},{"x":144,"y":-173},{"x":-12,"y":-16},{"x":12,"y":-21},{"x":-2,"y":30},{"x":6,"y":-23},{"x":14,"y":6},{"x":45,"y":-138},{"x":136,"y":-160},{"x":-7,"y":-37},{"x":11,"y":27},{"x":10,"y":-19}],"type":"coastline"},{"arc":[{"x":112102,"y":77986},{"x":255,"y":144},{"x":63,"y":64},{"x":60,"y":19},{"x":23,"y":-14}],"type":"admin"},{"arc":[{"x":113157,"y":78516},{"x":86,"y":318},{"x":-27,"y":71},{"x":26,"y":38},{"x":-43,"y":22},{"x":24,"y":46},{"x":-32,"y":48}],"type":"admin"},{"arc":[{"x":114621,"y":81743},{"x":-48,"y":0},{"x":-102,"y":61}],"type":"admin"},{"arc":[{"x":114471,"y":81804},{"x":-54,"y":-8},{"x":-42,"y":-74},{"x":-124,"y":15},{"x":-54,"y":-39},{"x":34,"y":-24},{"x":-6,"y":-51},{"x":-97,"y":-129},{"x":-143,"y":76},{"x":-66,"y":-85},{"x":-173,"y":-74},{"x":-175,"y":-21},{"x":-76,"y":28},{"x":-44,"y":-25},{"x":-32,"y":-69},{"x":16,"y":-41},{"x":-37,"y":17},{"x":-46,"y":-26},{"x":-24,"y":18},{"x":-63,"y":-138},{"x":-33,"y":12},{"x":-17,"y":-19},{"x":43,"y":-165},{"x":-205,"y":-164},{"x":-67,"y":-76},{"x":10,"y":-63},{"x":-49,"y":2},{"x":3,"y":-36}],"type":"area"},{"arc":[{"x":112447,"y":79797},{"x":95,"y":-83},{"x":-12,"y":-45},{"x":48,"y":-20},{"x":27,"y":-82}],"type":"admin"},{"arc":[{"x":112605,"y":79567},{"x":245,"y":43},{"x":24,"y":42},{"x":-51,"y":157},{"x":122,"y":19},{"x":46,"y":-39},{"x":31,"y":-97},{"x":65,"y":-6},{"x":-2,"y":19},{"x":-30,"y":-2},{"x":10,"y":17},{"x":82,"y":40},{"x":82,"y":-68},{"x":51,"y":47},{"x":83,"y":15},{"x":53,"y":-101},{"x":64,"y":6},{"x":72,"y":-64},{"x":44,"y":42},{"x":43,"y":127},{"x":274,"y":49},{"x":55,"y":-42},{"x":17,"y":-143},{"x":91,"y":12},{"x":102,"y":-48},{"x":55,"y":6},{"x":9,"y":39},{"x":75,"y":34},{"x":41,"y":116},{"x":81,"y":51},{"x":73,"y":33},{"x":100,"y":-78},{"x":67,"y":46}],"type":"admin"},{"arc":[{"x":113605,"y":83092},{"x":-247,"y":-151},{"x":-127,"y":17},{"x":-171,"y":-21},{"x":-215,"y":-130},{"x":-58,"y":37},{"x":-11,"y":89},{"x":-42,"y":-8},{"x":-16,"y":21}],"type":"area"},{"arc":[{"x":112718,"y":82946},{"x":-56,"y":-52},{"x":5,"y":-135},{"x":-62,"y":-14},{"x":-129,"y":-126},{"x":14,"y":-160},{"x":-73,"y":-217},{"x":15,"y":-261},{"x":-65,"y":-11},{"x":1,"y":25},{"x":-114,"y":84},{"x":-36,"y":-9},{"x":67,"y":-63},{"x":87,"y":-261},{"x":-28,"y":7},{"x":-59,"y":-41},{"x":-52,"y":26},{"x":-88,"y":-15},{"x":-86,"y":-65}],"type":"admin"},{"arc":[{"x":112059,"y":81658},{"x":20,"y":-31},{"x":50,"y":-11},{"x":-6,"y":-52},{"x":36,"y":-21},{"x":-3,"y":-46},{"x":47,"y":-79},{"x":13,"y":-64},{"x":-29,"y":3},{"x":-11,"y":-35},{"x":52,"y":-56},{"x":-61,"y":-29},{"x":107,"y":-181},{"x":20,"y":5},{"x":68,"y":-170},{"x":19,"y":-57},{"x":-19,"y":-104},{"x":-62,"y":-22},{"x":65,"y":-46},{"x":23,"y":-57}],"type":"area"},{"arc":[{"x":114471,"y":81804},{"x":40,"y":182},{"x":-64,"y":41},{"x":21,"y":97},{"x":-57,"y":98},{"x":-52,"y":38},{"x":-96,"y":8},{"x":-36,"y":64},{"x":-97,"y":6},{"x":-13,"y":110},{"x":-143,"y":97},{"x":-10,"y":113},{"x":38,"y":69},{"x":-39,"y":27},{"x":10,"y":95},{"x":-54,"y":87},{"x":-53,"y":39},{"x":-108,"y":7},{"x":-153,"y":110}],"type":"admin"},{"arc":[{"x":109270,"y":80471},{"x":-12,"y":-36},{"x":-76,"y":-18},{"x":35,"y":-166},{"x":-92,"y":45},{"x":75,"y":-48},{"x":-30,"y":-18},{"x":24,"y":-12},{"x":-51,"y":-11},{"x":-29,"y":-60},{"x":-46,"y":4},{"x":-97,"y":-90},{"x":59,"y":-20},{"x":17,"y":-38},{"x":-33,"y":-62},{"x":92,"y":-63},{"x":-64,"y":-52},{"x":68,"y":-102},{"x":-3,"y":-31},{"x":-54,"y":-25},{"x":0,"y":-55},{"x":21,"y":-64},{"x":23,"y":14},{"x":30,"y":-47},{"x":-20,"y":-62},{"x":36,"y":-34},{"x":-91,"y":-102},{"x":-50,"y":11},{"x":-14,"y":-58},{"x":-41,"y":-19},{"x":6,"y":-75},{"x":-35,"y":-52},{"x":-3,"y":-109},{"x":46,"y":-121},{"x":-108,"y":-331},{"x":-24,"y":-225},{"x":14,"y":-97},{"x":83,"y":-18}],"type":"area"},{"arc":[{"x":108926,"y":78224},{"x":17,"y":110},{"x":34,"y":53},{"x":32,"y":-15},{"x":-19,"y":9},{"x":22,"y":34},{"x":4,"y":-51},{"x":8,"y":41},{"x":-20,"y":18},{"x":40,"y":46},{"x":0,"y":-37},{"x":21,"y":189},{"x":38,"y":-4},{"x":-14,"y":20},{"x":27,"y":-30},{"x":-25,"y":28},{"x":20,"y":24},{"x":18,"y":-17},{"x":-13,"y":13},{"x":239,"y":133},{"x":48,"y":68},{"x":42,"y":0},{"x":-13,"y":40},{"x":67,"y":34},{"x":61,"y":135},{"x":22,"y":-59},{"x":-13,"y":81},{"x":-20,"y":-11},{"x":15,"y":68},{"x":26,"y":23},{"x":33,"y":-9},{"x":6,"y":36},{"x":-35,"y":-19},{"x":58,"y":56},{"x":21,"y":105},{"x":35,"y":5}],"type":"coastline"},{"arc":[{"x":105389,"y":76267},{"x":-54,"y":4},{"x":-44,"y":-60},{"x":98,"y":56}],"type":"coastline"},{"arc":[{"x":105390,"y":77338},{"x":-43,"y":-20},{"x":-7,"y":-41},{"x":50,"y":61}],"type":"coastline"},{"arc":[{"x":105486,"y":76414},{"x":-43,"y":37},{"x":-14,"y":-48},{"x":-59,"y":26},{"x":-7,"y":-26},{"x":-28,"y":1},{"x":6,"y":-45},{"x":81,"y":8},{"x":-3,"y":-27},{"x":36,"y":70},{"x":31,"y":4}],"type":"coastline"},{"arc":[{"x":105619,"y":76620},{"x":-113,"y":-80},{"x":75,"y":46}],"type":"coastline"},{"arc":[{"x":105639,"y":77195},{"x":-14,"y":32},{"x":-50,"y":5},{"x":14,"y":35},{"x":-41,"y":3},{"x":1,"y":-101},{"x":90,"y":26}],"type":"coastline"},{"arc":[{"x":105705,"y":77351},{"x":-83,"y":89},{"x":-67,"y":23},{"x":-78,"y":-18},{"x":-27,"y":44},{"x":37,"y":47},{"x":-1,"y":39},{"x":-18,"y":-46},{"x":-81,"y":-17},{"x":10,"y":-38},{"x":-36,"y":-6},{"x":-3,"y":-31},{"x":-62,"y":-40},{"x":27,"y":-37},{"x":96,"y":44},{"x":26,"y":-16},{"x":-22,"y":20},{"x":18,"y":9},{"x":61,"y":-122},{"x":38,"y":17},{"x":77,"y":-36},{"x":32,"y":41},{"x":30,"y":-17},{"x":-8,"y":-23},{"x":9,"y":23},{"x":-11,"y":19},{"x":36,"y":32}],"type":"coastline"},{"arc":[{"x":107344,"y":77502},{"x":-22,"y":24},{"x":-40,"y":-6},{"x":-44,"y":-27},{"x":2,"y":-31},{"x":47,"y":-35},{"x":57,"y":75}],"type":"coastline"},{"arc":[{"x":107355,"y":77392},{"x":-28,"y":-13},{"x":28,"y":-8},{"x":0,"y":21}],"type":"coastline"},{"arc":[{"x":105744,"y":76689},{"x":33,"y":32}],"type":"coastline"},{"arc":[{"x":106998,"y":77100},{"x":-8,"y":61},{"x":16,"y":-11},{"x":24,"y":37},{"x":24,"y":-22},{"x":40,"y":31},{"x":-11,"y":42},{"x":30,"y":-39},{"x":12,"y":50},{"x":37,"y":-28},{"x":10,"y":67},{"x":19,"y":23},{"x":42,"y":-4},{"x":-20,"y":57},{"x":32,"y":-16},{"x":2,"y":31},{"x":28,"y":-8},{"x":-13,"y":19},{"x":27,"y":-13},{"x":-16,"y":39},{"x":-63,"y":32},{"x":-4,"y":47},{"x":-24,"y":-1},{"x":39,"y":37},{"x":-15,"y":19},{"x":37,"y":-32},{"x":28,"y":21},{"x":-21,"y":15},{"x":49,"y":-3},{"x":29,"y":37},{"x":-8,"y":122},{"x":-6,"y":-47},{"x":-37,"y":2},{"x":-19,"y":101},{"x":45,"y":-3},{"x":13,"y":-33},{"x":-12,"y":59},{"x":51,"y":40},{"x":-168,"y":-49},{"x":-11,"y":14},{"x":11,"y":-14},{"x":-75,"y":-54},{"x":-49,"y":9},{"x":-260,"y":-152},{"x":-169,"y":-20},{"x":-24,"y":25},{"x":6,"y":-35},{"x":-26,"y":29},{"x":-31,"y":-51},{"x":-148,"y":-40},{"x":-83,"y":-116},{"x":-100,"y":-26},{"x":-21,"y":39},{"x":19,"y":-88},{"x":-38,"y":25},{"x":-30,"y":-64},{"x":-39,"y":41},{"x":17,"y":46},{"x":-27,"y":-12},{"x":-14,"y":21},{"x":29,"y":86},{"x":-40,"y":-49},{"x":-89,"y":-35},{"x":0,"y":-89},{"x":61,"y":-21},{"x":-2,"y":-32},{"x":-67,"y":19},{"x":-84,"y":74},{"x":-92,"y":-47},{"x":11,"y":-24},{"x":-12,"y":16},{"x":-55,"y":-31},{"x":-62,"y":8},{"x":27,"y":-29},{"x":-33,"y":-5},{"x":-45,"y":39},{"x":6,"y":-122},{"x":-29,"y":-36},{"x":-5,"y":20},{"x":-20,"y":-14},{"x":2,"y":-35},{"x":-43,"y":-15},{"x":-7,"y":-30},{"x":-57,"y":-12},{"x":90,"y":-38},{"x":4,"y":-58},{"x":-28,"y":-11},{"x":10,"y":-16},{"x":18,"y":24},{"x":0,"y":-41},{"x":-22,"y":-30},{"x":-13,"y":40},{"x":8,"y":-42},{"x":-88,"y":-22},{"x":-51,"y":-82},{"x":23,"y":10},{"x":-19,"y":-10},{"x":23,"y":-18},{"x":47,"y":37},{"x":-1,"y":-42},{"x":56,"y":24},{"x":100,"y":-55},{"x":50,"y":23},{"x":-51,"y":-59},{"x":44,"y":25}],"type":"coastline"},{"arc":[{"x":107399,"y":77530},{"x":-43,"y":48},{"x":-22,"y":-8},{"x":28,"y":-68},{"x":37,"y":28}],"type":"coastline"},{"arc":[{"x":107435,"y":77421},{"x":-46,"y":33},{"x":-6,"y":-31},{"x":52,"y":-2}],"type":"coastline"},{"arc":[{"x":107471,"y":77604},{"x":-77,"y":9},{"x":-30,"y":-28},{"x":36,"y":-29},{"x":11,"y":21},{"x":18,"y":-30},{"x":9,"y":24},{"x":-26,"y":6},{"x":59,"y":27}],"type":"coastline"},{"arc":[{"x":107535,"y":77233},{"x":-21,"y":45},{"x":-47,"y":-1},{"x":1,"y":-41},{"x":-40,"y":12},{"x":7,"y":-73},{"x":11,"y":25},{"x":26,"y":-31},{"x":-43,"y":4},{"x":50,"y":-39},{"x":48,"y":41},{"x":8,"y":58}],"type":"coastline"},{"arc":[{"x":107574,"y":77106},{"x":-30,"y":52},{"x":-19,"y":-76},{"x":38,"y":-3},{"x":11,"y":27}],"type":"coastline"},{"arc":[{"x":107580,"y":77311},{"x":-40,"y":91},{"x":-45,"y":-2},{"x":34,"y":30},{"x":-30,"y":13},{"x":39,"y":26},{"x":-23,"y":-15},{"x":19,"y":23},{"x":-38,"y":17},{"x":-37,"y":-130},{"x":18,"y":8},{"x":9,"y":-48},{"x":21,"y":9},{"x":17,"y":-11},{"x":-4,"y":-12},{"x":-14,"y":22},{"x":-17,"y":-7},{"x":16,"y":6},{"x":8,"y":-28},{"x":-21,"y":20},{"x":21,"y":-21},{"x":14,"y":14},{"x":-13,"y":15},{"x":18,"y":-5},{"x":9,"y":-76},{"x":39,"y":61}],"type":"coastline"},{"arc":[{"x":107891,"y":77775},{"x":-11,"y":17},{"x":-61,"y":-30},{"x":29,"y":-22},{"x":61,"y":42},{"x":-18,"y":-7}],"type":"coastline"},{"arc":[{"x":108076,"y":77089},{"x":-37,"y":31},{"x":-50,"y":-67},{"x":25,"y":-63},{"x":62,"y":99}],"type":"coastline"},{"arc":[{"x":108089,"y":77955},{"x":-91,"y":75},{"x":-58,"y":-3},{"x":-4,"y":41},{"x":-67,"y":31},{"x":-238,"y":-171},{"x":-74,"y":-6},{"x":-81,"y":-67},{"x":59,"y":-13},{"x":29,"y":33},{"x":13,"y":-18},{"x":23,"y":21},{"x":65,"y":-19},{"x":17,"y":22},{"x":-3,"y":-22},{"x":18,"y":11},{"x":51,"y":-36},{"x":57,"y":-1},{"x":-3,"y":34},{"x":15,"y":-30},{"x":30,"y":19},{"x":2,"y":-22},{"x":71,"y":-13},{"x":73,"y":22},{"x":4,"y":53},{"x":15,"y":-27},{"x":-9,"y":24},{"x":11,"y":-22},{"x":-4,"y":20},{"x":19,"y":-16},{"x":27,"y":16},{"x":-18,"y":16},{"x":41,"y":3},{"x":-26,"y":22},{"x":36,"y":23}],"type":"coastline"},{"arc":[{"x":108212,"y":77706},{"x":1,"y":29},{"x":-49,"y":-18},{"x":60,"y":-26},{"x":-12,"y":15}],"type":"coastline"},{"arc":[{"x":108331,"y":76543},{"x":-42,"y":71},{"x":-75,"y":-32},{"x":29,"y":-35},{"x":-12,"y":-35},{"x":76,"y":-35},{"x":24,"y":66}],"type":"coastline"},{"arc":[{"x":108570,"y":77642},{"x":-45,"y":33},{"x":-45,"y":-25},{"x":20,"y":37},{"x":-62,"y":45},{"x":-17,"y":64},{"x":-67,"y":-30},{"x":-31,"y":-59},{"x":-18,"y":32},{"x":-43,"y":-9},{"x":25,"y":-40},{"x":-22,"y":-73},{"x":-33,"y":17},{"x":0,"y":29},{"x":-52,"y":-41},{"x":22,"y":41},{"x":-20,"y":15},{"x":-43,"y":-20},{"x":-23,"y":41},{"x":38,"y":46},{"x":-19,"y":14},{"x":-7,"y":-22},{"x":1,"y":20},{"x":-5,"y":-20},{"x":-42,"y":2},{"x":-9,"y":28},{"x":28,"y":48},{"x":-98,"y":-38},{"x":-16,"y":-47},{"x":-49,"y":6},{"x":24,"y":-33},{"x":-33,"y":21},{"x":5,"y":-20},{"x":-13,"y":17},{"x":-44,"y":-26},{"x":10,"y":-63},{"x":-47,"y":18},{"x":-19,"y":70},{"x":-26,"y":-24},{"x":8,"y":23},{"x":-57,"y":2},{"x":-14,"y":-31},{"x":-32,"y":9},{"x":-15,"y":-23},{"x":-16,"y":35},{"x":27,"y":-7},{"x":-37,"y":42},{"x":-50,"y":-67},{"x":0,"y":31},{"x":-30,"y":-80},{"x":33,"y":40},{"x":1,"y":-30},{"x":30,"y":16},{"x":34,"y":-53},{"x":-76,"y":5},{"x":13,"y":-18},{"x":-33,"y":28},{"x":23,"y":-98},{"x":-30,"y":-12},{"x":70,"y":-94},{"x":-26,"y":-9},{"x":-38,"y":50},{"x":-24,"y":-25},{"x":20,"y":-55},{"x":41,"y":-6},{"x":-7,"y":-43},{"x":40,"y":-15},{"x":-38,"y":-19},{"x":8,"y":-43},{"x":48,"y":-13},{"x":103,"y":42},{"x":62,"y":-8},{"x":28,"y":78},{"x":34,"y":-16},{"x":32,"y":65},{"x":88,"y":-30},{"x":1,"y":-18},{"x":-28,"y":10},{"x":28,"y":-11},{"x":27,"y":-88},{"x":-35,"y":-18},{"x":-2,"y":-21},{"x":3,"y":20},{"x":31,"y":2},{"x":-26,"y":-12},{"x":5,"y":-40},{"x":-21,"y":33},{"x":13,"y":-38},{"x":59,"y":-55},{"x":74,"y":39},{"x":-18,"y":-33},{"x":164,"y":169},{"x":48,"y":21},{"x":57,"y":-42},{"x":31,"y":20},{"x":-20,"y":39},{"x":49,"y":37},{"x":-60,"y":-6},{"x":-4,"y":-32},{"x":-40,"y":5},{"x":-9,"y":26},{"x":-13,"y":-18},{"x":-16,"y":27},{"x":31,"y":30},{"x":-53,"y":43},{"x":58,"y":-34},{"x":26,"y":19},{"x":-16,"y":-43},{"x":106,"y":0},{"x":6,"y":66},{"x":-52,"y":18},{"x":-5,"y":28},{"x":51,"y":9},{"x":23,"y":51},{"x":45,"y":4},{"x":37,"y":68}],"type":"coastline"},{"arc":[{"x":108366,"y":78162},{"x":-33,"y":163},{"x":-21,"y":18},{"x":-107,"y":-11},{"x":-4,"y":17},{"x":-29,"y":-15},{"x":25,"y":19},{"x":-61,"y":-25},{"x":-66,"y":-84},{"x":-112,"y":-77},{"x":-18,"y":-53},{"x":85,"y":-24},{"x":58,"y":82},{"x":0,"y":-23},{"x":64,"y":-20},{"x":-28,"y":0},{"x":24,"y":-39},{"x":-20,"y":-68},{"x":41,"y":23},{"x":-1,"y":-27},{"x":23,"y":20},{"x":28,"y":-21},{"x":14,"y":43},{"x":64,"y":-104},{"x":74,"y":206}],"type":"coastline"},{"arc":[{"x":109080,"y":81092},{"x":-36,"y":-5}],"type":"admin"},{"arc":[{"x":109044,"y":81087},{"x":-149,"y":-22},{"x":-145,"y":42},{"x":-144,"y":-22},{"x":-15,"y":38},{"x":-192,"y":0},{"x":-108,"y":-63},{"x":-15,"y":36},{"x":-92,"y":56}],"type":"admin"},{"arc":[{"x":107719,"y":80543},{"x":168,"y":-175},{"x":75,"y":75},{"x":30,"y":-6},{"x":57,"y":-83},{"x":-51,"y":-80},{"x":150,"y":-202},{"x":64,"y":11},{"x":146,"y":-295},{"x":89,"y":-61},{"x":-25,"y":-37},{"x":108,"y":-112}],"type":"admin"},{"arc":[{"x":108530,"y":79578},{"x":12,"y":105},{"x":-137,"y":137},{"x":37,"y":-16},{"x":-25,"y":23},{"x":58,"y":22},{"x":137,"y":-26},{"x":39,"y":74},{"x":39,"y":-68},{"x":92,"y":-32},{"x":-59,"y":-114},{"x":-58,"y":-45},{"x":-30,"y":-279},{"x":-17,"y":9},{"x":-8,"y":-29},{"x":-22,"y":7},{"x":-7,"y":-15},{"x":7,"y":14},{"x":39,"y":-15},{"x":-30,"y":6},{"x":-10,"y":-22},{"x":-10,"y":17},{"x":0,"y":-14},{"x":19,"y":-8},{"x":-43,"y":-43},{"x":10,"y":-53},{"x":-38,"y":-14},{"x":50,"y":-22},{"x":-43,"y":-44},{"x":13,"y":-68},{"x":-42,"y":-41},{"x":45,"y":-138},{"x":-36,"y":-27},{"x":34,"y":5},{"x":9,"y":-14},{"x":-26,"y":-20},{"x":-12,"y":13},{"x":13,"y":-18},{"x":23,"y":4},{"x":6,"y":-10},{"x":-38,"y":-59},{"x":5,"y":-65},{"x":33,"y":-14},{"x":-72,"y":-70},{"x":-9,"y":-49},{"x":45,"y":-7},{"x":-39,"y":-3},{"x":20,"y":-31},{"x":-41,"y":-30},{"x":-2,"y":-40},{"x":-51,"y":-25},{"x":-17,"y":-58},{"x":23,"y":-74},{"x":-31,"y":-22},{"x":27,"y":12},{"x":12,"y":-23},{"x":-38,"y":-36},{"x":18,"y":-139},{"x":-54,"y":-53},{"x":4,"y":-82},{"x":-52,"y":-63},{"x":33,"y":-79},{"x":72,"y":15},{"x":-15,"y":19},{"x":66,"y":-11},{"x":78,"y":-71},{"x":1,"y":-36},{"x":44,"y":16},{"x":99,"y":96},{"x":61,"y":163},{"x":54,"y":31},{"x":131,"y":193}],"type":"coastline"},{"arc":[{"x":113800,"y":85108},{"x":-159,"y":-35},{"x":-43,"y":-110},{"x":-134,"y":28},{"x":-19,"y":19},{"x":31,"y":73},{"x":-97,"y":93},{"x":-24,"y":78},{"x":-44,"y":20},{"x":-13,"y":41},{"x":-67,"y":-46},{"x":-45,"y":48},{"x":-151,"y":8},{"x":-38,"y":23},{"x":-42,"y":-20},{"x":-18,"y":71},{"x":36,"y":191},{"x":-38,"y":49},{"x":-107,"y":27},{"x":15,"y":54},{"x":-47,"y":36},{"x":29,"y":96},{"x":-17,"y":93}],"type":"admin"},{"arc":[{"x":112808,"y":85945},{"x":-26,"y":-2},{"x":-33,"y":72},{"x":-31,"y":-7},{"x":-9,"y":-58},{"x":-64,"y":17},{"x":-18,"y":44},{"x":-86,"y":-71},{"x":-192,"y":74},{"x":-200,"y":9}],"type":"admin"},{"arc":[{"x":112149,"y":86023},{"x":-83,"y":-242},{"x":-221,"y":-243},{"x":-128,"y":-298},{"x":45,"y":-6},{"x":31,"y":-73},{"x":47,"y":1},{"x":55,"y":-94},{"x":-72,"y":-194},{"x":53,"y":-277},{"x":-48,"y":-189}],"type":"admin"},{"arc":[{"x":111828,"y":84408},{"x":18,"y":-76},{"x":-55,"y":-248},{"x":63,"y":-52},{"x":18,"y":-91},{"x":131,"y":-169},{"x":-7,"y":-151},{"x":79,"y":-23},{"x":85,"y":-225},{"x":3,"y":-104},{"x":-30,"y":-30},{"x":-60,"y":39},{"x":-34,"y":-94},{"x":42,"y":-129}],"type":"admin"},{"arc":[{"x":112081,"y":83055},{"x":133,"y":-98},{"x":133,"y":94},{"x":196,"y":-92},{"x":86,"y":75},{"x":31,"y":-60},{"x":41,"y":2},{"x":17,"y":-30}],"type":"admin"},{"arc":[{"x":113605,"y":83092},{"x":1,"y":212},{"x":57,"y":76}],"type":"admin"},{"arc":[{"x":113663,"y":83380},{"x":-114,"y":96},{"x":136,"y":569},{"x":121,"y":64},{"x":40,"y":198},{"x":-143,"y":68},{"x":83,"y":191},{"x":41,"y":12},{"x":-16,"y":79},{"x":72,"y":56},{"x":-59,"y":156},{"x":13,"y":141},{"x":-37,"y":98}],"type":"admin"},{"arc":[{"x":112059,"y":81658},{"x":-86,"y":85},{"x":-18,"y":75}],"type":"admin"},{"arc":[{"x":111955,"y":81818},{"x":-1,"y":-61},{"x":45,"y":-73},{"x":-13,"y":-16},{"x":-48,"y":34},{"x":-143,"y":-180},{"x":-21,"y":-301},{"x":-21,"y":-12},{"x":-7,"y":159},{"x":-29,"y":-97},{"x":14,"y":-59},{"x":-27,"y":-24},{"x":-37,"y":16},{"x":-29,"y":-73},{"x":-33,"y":12},{"x":-17,"y":-75},{"x":-29,"y":6},{"x":-17,"y":-35},{"x":-5,"y":-32},{"x":66,"y":-27},{"x":-30,"y":-53},{"x":96,"y":-56},{"x":-75,"y":13},{"x":-89,"y":-85}],"type":"admin"},{"arc":[{"x":109044,"y":81087},{"x":-12,"y":88},{"x":-57,"y":78},{"x":2,"y":95},{"x":-64,"y":-15},{"x":-124,"y":82},{"x":-65,"y":-5},{"x":-67,"y":53},{"x":-33,"y":-3},{"x":-48,"y":79},{"x":20,"y":53},{"x":-21,"y":25},{"x":35,"y":114},{"x":80,"y":40},{"x":62,"y":3},{"x":65,"y":135},{"x":21,"y":126},{"x":66,"y":32},{"x":-7,"y":30},{"x":127,"y":-20},{"x":31,"y":41}],"type":"admin"},{"arc":[{"x":109055,"y":82118},{"x":-33,"y":143},{"x":42,"y":138}],"type":"admin"},{"arc":[{"x":112561,"y":79536},{"x":44,"y":31}],"type":"area"},{"arc":[{"x":114409,"y":78909},{"x":-43,"y":66},{"x":-63,"y":33},{"x":-71,"y":11},{"x":-72,"y":-30},{"x":-40,"y":59},{"x":-136,"y":27},{"x":-35,"y":19},{"x":19,"y":77},{"x":-121,"y":30},{"x":-69,"y":46},{"x":-32,"y":-11},{"x":-58,"y":47},{"x":-29,"y":1},{"x":-3,"y":-40},{"x":-147,"y":-38},{"x":24,"y":-40},{"x":-26,"y":-55},{"x":-121,"y":19},{"x":-45,"y":-32},{"x":-70,"y":51},{"x":-80,"y":-90}],"type":"area"},{"arc":[{"x":112102,"y":77986},{"x":-58,"y":-58},{"x":47,"y":-57},{"x":-34,"y":-28},{"x":48,"y":-57},{"x":85,"y":65},{"x":24,"y":-28},{"x":73,"y":7},{"x":-133,"y":-100},{"x":78,"y":-86},{"x":20,"y":26},{"x":58,"y":-67},{"x":82,"y":39},{"x":42,"y":-23},{"x":-26,"y":2},{"x":-57,"y":-31},{"x":-21,"y":6},{"x":12,"y":-6},{"x":68,"y":25},{"x":33,"y":-6},{"x":-10,"y":-10},{"x":32,"y":9},{"x":104,"y":-22}],"type":"coastline"},{"arc":[{"x":112081,"y":83055},{"x":-348,"y":-187},{"x":-35,"y":91},{"x":34,"y":148},{"x":-48,"y":75},{"x":36,"y":98},{"x":-89,"y":-38},{"x":-66,"y":-70}],"type":"area"},{"arc":[{"x":111565,"y":83172},{"x":60,"y":-149},{"x":-1,"y":-115},{"x":-58,"y":-263},{"x":-39,"y":-7},{"x":24,"y":-48},{"x":-50,"y":-200},{"x":28,"y":-48},{"x":-185,"y":33},{"x":-18,"y":-37},{"x":59,"y":-42},{"x":-44,"y":-73},{"x":-24,"y":23},{"x":-31,"y":-59},{"x":-35,"y":-11},{"x":-11,"y":-70}],"type":"area"},{"arc":[{"x":111240,"y":82106},{"x":41,"y":-6}],"type":"area"},{"arc":[{"x":111281,"y":82100},{"x":32,"y":-7},{"x":27,"y":-103},{"x":116,"y":8},{"x":-10,"y":-98},{"x":144,"y":-19},{"x":14,"y":-36},{"x":242,"y":44},{"x":109,"y":-71}],"type":"area"},{"arc":[{"x":111281,"y":82100},{"x":-59,"y":-94},{"x":-57,"y":-221},{"x":-113,"y":-106},{"x":43,"y":-61}],"type":"area"},{"arc":[{"x":114629,"y":85189},{"x":-56,"y":-6},{"x":-44,"y":23},{"x":-89,"y":-26},{"x":-84,"y":24},{"x":-116,"y":116},{"x":-5,"y":41},{"x":52,"y":35}],"type":"admin"},{"arc":[{"x":114287,"y":85396},{"x":-54,"y":57},{"x":-30,"y":-21}],"type":"admin"},{"arc":[{"x":114203,"y":85432},{"x":-241,"y":-264},{"x":-162,"y":-60}],"type":"area"},{"arc":[{"x":113663,"y":83380},{"x":61,"y":56},{"x":36,"y":-14},{"x":48,"y":27},{"x":42,"y":72},{"x":56,"y":28},{"x":47,"y":7},{"x":40,"y":-26},{"x":117,"y":52},{"x":92,"y":-72},{"x":112,"y":39},{"x":13,"y":48},{"x":85,"y":51},{"x":83,"y":-60}],"type":"admin"},{"arc":[{"x":114495,"y":83588},{"x":30,"y":13},{"x":-12,"y":100},{"x":33,"y":33},{"x":-8,"y":55},{"x":59,"y":-26},{"x":73,"y":10},{"x":80,"y":161},{"x":-6,"y":41},{"x":-74,"y":-17},{"x":-81,"y":38},{"x":60,"y":48},{"x":-5,"y":31},{"x":45,"y":-3},{"x":88,"y":68},{"x":-61,"y":88},{"x":-112,"y":23},{"x":-36,"y":44},{"x":-46,"y":-1},{"x":20,"y":49},{"x":31,"y":7},{"x":-44,"y":137},{"x":18,"y":107},{"x":-20,"y":55},{"x":42,"y":68},{"x":-36,"y":121},{"x":90,"y":27},{"x":32,"y":69},{"x":-48,"y":165},{"x":22,"y":90}],"type":"area"},{"arc":[{"x":115693,"y":84247},{"x":-46,"y":135},{"x":34,"y":59},{"x":-57,"y":108}],"type":"admin"},{"arc":[{"x":115624,"y":84549},{"x":-59,"y":61},{"x":-122,"y":25},{"x":-37,"y":117},{"x":-76,"y":31},{"x":-64,"y":144},{"x":-39,"y":12},{"x":-16,"y":-38},{"x":-125,"y":165},{"x":-153,"y":59},{"x":-154,"y":-35},{"x":-35,"y":36},{"x":-59,"y":-1},{"x":-56,"y":64}],"type":"admin"},{"arc":[{"x":114495,"y":83588},{"x":184,"y":-96},{"x":19,"y":-51},{"x":78,"y":-38},{"x":49,"y":-71},{"x":115,"y":11},{"x":19,"y":-54},{"x":128,"y":-114},{"x":38,"y":23},{"x":-19,"y":40},{"x":73,"y":-30},{"x":53,"y":28},{"x":64,"y":-23},{"x":44,"y":32},{"x":192,"y":40},{"x":23,"y":45},{"x":68,"y":-12},{"x":-28,"y":104},{"x":-44,"y":43},{"x":-1,"y":95},{"x":116,"y":134},{"x":-18,"y":27},{"x":28,"y":36},{"x":83,"y":42},{"x":8,"y":36},{"x":7,"y":184},{"x":-48,"y":79},{"x":-33,"y":149}],"type":"admin"},{"arc":[{"x":114203,"y":85432},{"x":-119,"y":79},{"x":-103,"y":129},{"x":-296,"y":45},{"x":-139,"y":56},{"x":-24,"y":-30},{"x":-86,"y":45},{"x":-18,"y":71},{"x":-109,"y":59},{"x":-57,"y":70},{"x":-169,"y":-2},{"x":-75,"y":169},{"x":-165,"y":-76},{"x":6,"y":-78},{"x":-41,"y":-24}],"type":"admin"},{"arc":[{"x":111192,"y":86806},{"x":-56,"y":-69},{"x":12,"y":-220},{"x":-22,"y":-104},{"x":45,"y":-59},{"x":-34,"y":-102},{"x":-57,"y":-34},{"x":28,"y":-77},{"x":-72,"y":-1},{"x":-36,"y":-26},{"x":3,"y":-49},{"x":-32,"y":-30},{"x":-21,"y":23},{"x":-117,"y":-20},{"x":-72,"y":-89},{"x":-157,"y":-13},{"x":-27,"y":-83},{"x":-46,"y":-29},{"x":-145,"y":123},{"x":-101,"y":-39},{"x":-39,"y":-59},{"x":-62,"y":-28}],"type":"admin"},{"arc":[{"x":110717,"y":84590},{"x":201,"y":-43},{"x":230,"y":50},{"x":45,"y":-29},{"x":-10,"y":-62},{"x":33,"y":-25},{"x":104,"y":23},{"x":-79,"y":44},{"x":55,"y":13},{"x":104,"y":-69},{"x":88,"y":-9},{"x":216,"y":-107},{"x":47,"y":48},{"x":77,"y":-16}],"type":"area"},{"arc":[{"x":112149,"y":86023},{"x":-154,"y":-3},{"x":-217,"y":107},{"x":29,"y":99},{"x":-57,"y":-20},{"x":-78,"y":20},{"x":-68,"y":138},{"x":-108,"y":77},{"x":-76,"y":205},{"x":-88,"y":87},{"x":-140,"y":73}],"type":"admin"},{"arc":[{"x":111565,"y":83172},{"x":-74,"y":-57},{"x":-93,"y":75},{"x":-107,"y":4},{"x":-19,"y":-64},{"x":-63,"y":-22},{"x":-52,"y":46},{"x":-61,"y":-6},{"x":-28,"y":35},{"x":-103,"y":-27},{"x":-17,"y":136},{"x":-115,"y":65}],"type":"area"},{"arc":[{"x":110576,"y":82988},{"x":68,"y":-57},{"x":14,"y":-65},{"x":-144,"y":-158},{"x":55,"y":-73},{"x":27,"y":-126},{"x":-41,"y":-182},{"x":38,"y":-66}],"type":"area"},{"arc":[{"x":110593,"y":82261},{"x":110,"y":-98},{"x":55,"y":-7},{"x":12,"y":-79},{"x":92,"y":-3},{"x":54,"y":44},{"x":70,"y":2},{"x":16,"y":42},{"x":238,"y":-56}],"type":"area"},{"arc":[{"x":109055,"y":82118},{"x":131,"y":-12},{"x":18,"y":-58},{"x":60,"y":-35},{"x":-9,"y":-127},{"x":55,"y":64},{"x":59,"y":-17},{"x":8,"y":-123},{"x":106,"y":-53},{"x":11,"y":-47},{"x":-81,"y":-84},{"x":-4,"y":-64},{"x":21,"y":-80},{"x":101,"y":-90},{"x":-1,"y":-67},{"x":-104,"y":-31},{"x":8,"y":-49},{"x":104,"y":-40},{"x":80,"y":24},{"x":76,"y":-83},{"x":27,"y":-154},{"x":33,"y":-15},{"x":12,"y":-62}],"type":"area"},{"arc":[{"x":109867,"y":80887},{"x":58,"y":96},{"x":-27,"y":87},{"x":73,"y":-22},{"x":19,"y":30},{"x":19,"y":-26},{"x":39,"y":22},{"x":-28,"y":69},{"x":29,"y":32},{"x":-16,"y":45},{"x":99,"y":83}],"type":"area"},{"arc":[{"x":110132,"y":81303},{"x":-39,"y":28},{"x":-31,"y":113},{"x":-47,"y":-2},{"x":-20,"y":38},{"x":-15,"y":-12},{"x":-75,"y":35},{"x":20,"y":96},{"x":40,"y":32},{"x":-28,"y":35},{"x":16,"y":22},{"x":63,"y":-15},{"x":13,"y":17},{"x":149,"y":-48},{"x":84,"y":106},{"x":107,"y":-16},{"x":-28,"y":56},{"x":61,"y":201},{"x":-20,"y":50},{"x":20,"y":74},{"x":68,"y":124},{"x":93,"y":2},{"x":30,"y":22}],"type":"area"},{"arc":[{"x":110310,"y":81107},{"x":-38,"y":54},{"x":-82,"y":-2},{"x":33,"y":52},{"x":-46,"y":33},{"x":-4,"y":47},{"x":-41,"y":12}],"type":"area"},{"arc":[{"x":108270,"y":79602},{"x":16,"y":13},{"x":178,"y":-174},{"x":57,"y":62},{"x":9,"y":75}],"type":"coastline"},{"arc":[{"x":105268,"y":79700},{"x":-60,"y":-6},{"x":-54,"y":-42},{"x":-105,"y":-212},{"x":0,"y":-78},{"x":-83,"y":-65},{"x":-174,"y":-24},{"x":-211,"y":119},{"x":-200,"y":-143},{"x":-44,"y":57},{"x":-142,"y":-5},{"x":-37,"y":106},{"x":-79,"y":-59},{"x":17,"y":-29},{"x":-39,"y":-83},{"x":-89,"y":-72},{"x":-106,"y":30},{"x":-21,"y":-31},{"x":-71,"y":0},{"x":-61,"y":-63},{"x":-149,"y":35},{"x":-235,"y":-66},{"x":-53,"y":60},{"x":-161,"y":-79}],"type":"admin"},{"arc":[{"x":103305,"y":77917},{"x":44,"y":60},{"x":-22,"y":85},{"x":35,"y":88},{"x":84,"y":27},{"x":37,"y":-29},{"x":225,"y":31},{"x":42,"y":-53},{"x":64,"y":-4},{"x":11,"y":-64},{"x":42,"y":-27},{"x":23,"y":-126},{"x":45,"y":-27},{"x":123,"y":27},{"x":96,"y":-49}],"type":"area"},{"arc":[{"x":104154,"y":77856},{"x":9,"y":26},{"x":103,"y":15},{"x":84,"y":-42},{"x":42,"y":5},{"x":0,"y":40},{"x":-29,"y":21},{"x":-15,"y":-15},{"x":-66,"y":92},{"x":24,"y":38},{"x":83,"y":14},{"x":-8,"y":24},{"x":55,"y":62},{"x":11,"y":-10},{"x":-15,"y":-78},{"x":11,"y":-95},{"x":-4,"y":92},{"x":8,"y":17},{"x":40,"y":-4},{"x":-36,"y":-27},{"x":25,"y":-98},{"x":-22,"y":-10},{"x":102,"y":30},{"x":44,"y":-43},{"x":54,"y":27},{"x":29,"y":-53},{"x":45,"y":-5},{"x":26,"y":34},{"x":28,"y":-44},{"x":3,"y":66},{"x":63,"y":24},{"x":-10,"y":26},{"x":-45,"y":-16},{"x":3,"y":77},{"x":49,"y":28},{"x":30,"y":-3},{"x":0,"y":-49},{"x":139,"y":27},{"x":19,"y":78},{"x":80,"y":47},{"x":-33,"y":-7},{"x":41,"y":32},{"x":-31,"y":-7},{"x":36,"y":110},{"x":57,"y":6},{"x":34,"y":-44},{"x":-46,"y":-35},{"x":66,"y":-45},{"x":-35,"y":-95},{"x":45,"y":-2},{"x":261,"y":230},{"x":104,"y":51},{"x":20,"y":63},{"x":211,"y":192}],"type":"coastline"},{"arc":[{"x":103575,"y":77529},{"x":29,"y":28},{"x":89,"y":11},{"x":6,"y":-48},{"x":115,"y":-75},{"x":57,"y":123},{"x":-1,"y":-26},{"x":73,"y":-4},{"x":54,"y":-52},{"x":-11,"y":52},{"x":35,"y":-7},{"x":-9,"y":22},{"x":49,"y":6},{"x":-16,"y":23},{"x":34,"y":25},{"x":-30,"y":30},{"x":53,"y":46},{"x":-35,"y":-10},{"x":29,"y":47},{"x":81,"y":-60},{"x":-1,"y":26},{"x":44,"y":-5},{"x":-43,"y":24},{"x":21,"y":29},{"x":88,"y":-36},{"x":30,"y":41},{"x":11,"y":66},{"x":-33,"y":17},{"x":-38,"y":-28},{"x":-23,"y":45},{"x":-79,"y":17}],"type":"coastline"},{"arc":[{"x":102302,"y":82504},{"x":-10,"y":-35},{"x":49,"y":-39},{"x":-15,"y":-57},{"x":-82,"y":-36},{"x":-59,"y":-196}],"type":"admin"},{"arc":[{"x":103247,"y":81140},{"x":22,"y":356},{"x":83,"y":31},{"x":0,"y":-27},{"x":41,"y":-1},{"x":1,"y":-82},{"x":169,"y":-5},{"x":4,"y":-34},{"x":41,"y":79},{"x":83,"y":3},{"x":18,"y":63},{"x":-26,"y":-6},{"x":-9,"y":27},{"x":23,"y":75},{"x":136,"y":227}],"type":"area"},{"arc":[{"x":103833,"y":81846},{"x":-83,"y":84},{"x":-121,"y":45},{"x":-42,"y":-16},{"x":-63,"y":55},{"x":-74,"y":7},{"x":-142,"y":-119},{"x":-40,"y":11},{"x":-45,"y":76},{"x":33,"y":110},{"x":-118,"y":53},{"x":-108,"y":2},{"x":-249,"y":241},{"x":-94,"y":52},{"x":-111,"y":-52},{"x":-71,"y":-79},{"x":-54,"y":-4},{"x":-70,"y":66},{"x":1,"y":75},{"x":-80,"y":51}],"type":"area"},{"arc":[{"x":105156,"y":82819},{"x":-113,"y":73},{"x":-238,"y":33},{"x":-82,"y":45},{"x":-107,"y":133},{"x":-168,"y":94},{"x":-63,"y":-15},{"x":-49,"y":-49},{"x":-26,"y":16},{"x":-56,"y":-31}],"type":"area"},{"arc":[{"x":104254,"y":83118},{"x":-39,"y":-96},{"x":-63,"y":72},{"x":-110,"y":-21},{"x":-35,"y":59},{"x":-62,"y":-57},{"x":-97,"y":41},{"x":-116,"y":99},{"x":-44,"y":221},{"x":-20,"y":22},{"x":-64,"y":4},{"x":-51,"y":69},{"x":25,"y":43},{"x":84,"y":-3},{"x":59,"y":78},{"x":7,"y":46},{"x":-69,"y":87},{"x":34,"y":103},{"x":49,"y":1}],"type":"area"},{"arc":[{"x":103742,"y":83886},{"x":20,"y":104},{"x":-113,"y":149},{"x":-142,"y":-27},{"x":-57,"y":87},{"x":-190,"y":71},{"x":-15,"y":103},{"x":-44,"y":65},{"x":-77,"y":-3},{"x":-48,"y":44},{"x":-240,"y":-31},{"x":-84,"y":63},{"x":-74,"y":15}],"type":"admin"},{"arc":[{"x":102678,"y":84526},{"x":-29,"y":-71},{"x":-72,"y":-51},{"x":25,"y":-131},{"x":77,"y":-132},{"x":-69,"y":-134},{"x":42,"y":-66},{"x":61,"y":-30},{"x":-22,"y":-44},{"x":114,"y":-82},{"x":15,"y":-115},{"x":-30,"y":-48},{"x":67,"y":-89},{"x":-62,"y":-111},{"x":-125,"y":-47},{"x":-21,"y":-55}],"type":"admin"},{"arc":[{"x":102649,"y":83320},{"x":1,"y":-42},{"x":39,"y":-36},{"x":61,"y":1},{"x":53,"y":-33},{"x":58,"y":33},{"x":166,"y":-4},{"x":49,"y":-85},{"x":203,"y":35},{"x":70,"y":42},{"x":144,"y":-124},{"x":1,"y":-56},{"x":103,"y":-149},{"x":176,"y":-154},{"x":33,"y":18},{"x":48,"y":-30},{"x":-5,"y":-96},{"x":-37,"y":-15},{"x":56,"y":-104},{"x":101,"y":0},{"x":53,"y":51},{"x":78,"y":-43},{"x":5,"y":-47},{"x":98,"y":-43},{"x":91,"y":3},{"x":58,"y":-35},{"x":141,"y":29},{"x":68,"y":-26},{"x":219,"y":-196}],"type":"area"},{"arc":[{"x":104780,"y":82214},{"x":71,"y":60},{"x":90,"y":11},{"x":137,"y":74}],"type":"area"},{"arc":[{"x":105078,"y":82359},{"x":59,"y":58},{"x":-7,"y":147},{"x":60,"y":68},{"x":-1,"y":63},{"x":-59,"y":73},{"x":26,"y":51}],"type":"area"},{"arc":[{"x":104274,"y":83928},{"x":-94,"y":-14},{"x":-54,"y":39},{"x":-96,"y":7},{"x":-49,"y":-99},{"x":-67,"y":-32},{"x":-124,"y":12},{"x":-48,"y":45}],"type":"admin"},{"arc":[{"x":104254,"y":83118},{"x":72,"y":93},{"x":-11,"y":46},{"x":41,"y":60},{"x":154,"y":78},{"x":113,"y":110},{"x":44,"y":-26},{"x":35,"y":15},{"x":-75,"y":80},{"x":-87,"y":25},{"x":-77,"y":205},{"x":-98,"y":31},{"x":-78,"y":53},{"x":-13,"y":40}],"type":"area"},{"arc":[{"x":104595,"y":84445},{"x":-224,"y":-110},{"x":-119,"y":-120},{"x":-42,"y":-3},{"x":-11,"y":-84},{"x":81,"y":-118},{"x":-6,"y":-82}],"type":"admin"},{"arc":[{"x":105156,"y":82819},{"x":168,"y":1},{"x":81,"y":55},{"x":94,"y":19},{"x":20,"y":70},{"x":98,"y":32},{"x":99,"y":-2},{"x":73,"y":-21},{"x":55,"y":-108},{"x":60,"y":5},{"x":25,"y":-31},{"x":48,"y":-6},{"x":53,"y":-66},{"x":170,"y":23}],"type":"area"},{"arc":[{"x":106506,"y":83547},{"x":-38,"y":28},{"x":-150,"y":-6},{"x":-116,"y":36},{"x":-92,"y":83},{"x":-136,"y":51},{"x":-61,"y":70},{"x":-94,"y":38},{"x":-12,"y":256},{"x":-203,"y":53},{"x":-39,"y":-42},{"x":-51,"y":2},{"x":-16,"y":49},{"x":-111,"y":60},{"x":-102,"y":-60},{"x":-67,"y":3},{"x":-15,"y":31},{"x":-59,"y":7},{"x":-70,"y":133},{"x":8,"y":58},{"x":-108,"y":28},{"x":-2,"y":45},{"x":-72,"y":16},{"x":-73,"y":70},{"x":-37,"y":-9},{"x":-33,"y":-51},{"x":-162,"y":-51}],"type":"admin"},{"arc":[{"x":104780,"y":82214},{"x":-51,"y":-15},{"x":-39,"y":-83},{"x":-95,"y":-65},{"x":-124,"y":25},{"x":-57,"y":-18},{"x":-57,"y":50},{"x":-130,"y":-170},{"x":-52,"y":-27},{"x":0,"y":-46},{"x":-61,"y":-35},{"x":-137,"y":18},{"x":-7,"y":-26},{"x":-73,"y":37},{"x":-64,"y":-13}],"type":"area"},{"arc":[{"x":103579,"y":81200},{"x":14,"y":62},{"x":40,"y":-16},{"x":37,"y":37},{"x":103,"y":-2},{"x":27,"y":30},{"x":24,"y":-28},{"x":59,"y":24},{"x":29,"y":58},{"x":60,"y":-21},{"x":104,"y":15},{"x":21,"y":36},{"x":53,"y":-19},{"x":36,"y":25},{"x":139,"y":-21},{"x":72,"y":84},{"x":56,"y":-7},{"x":56,"y":37},{"x":56,"y":-29},{"x":35,"y":8},{"x":40,"y":-89},{"x":-42,"y":-136},{"x":128,"y":31},{"x":158,"y":-14},{"x":70,"y":-40},{"x":117,"y":35},{"x":184,"y":-131},{"x":41,"y":8},{"x":58,"y":-36},{"x":29,"y":22}],"type":"area"},{"arc":[{"x":105383,"y":81123},{"x":-38,"y":133},{"x":104,"y":127},{"x":-101,"y":39},{"x":-67,"y":66},{"x":-15,"y":84},{"x":-112,"y":131},{"x":-180,"y":58},{"x":32,"y":30},{"x":-19,"y":71},{"x":92,"y":73},{"x":39,"y":71},{"x":-9,"y":130},{"x":-40,"y":42},{"x":34,"y":51},{"x":-25,"y":130}],"type":"area"},{"arc":[{"x":105383,"y":81123},{"x":122,"y":-42},{"x":37,"y":-106},{"x":-21,"y":-240},{"x":102,"y":-32}],"type":"area"},{"arc":[{"x":104390,"y":80472},{"x":77,"y":-10},{"x":62,"y":-38},{"x":90,"y":29},{"x":269,"y":-173},{"x":32,"y":-46},{"x":22,"y":20},{"x":39,"y":-20}],"type":"area"},{"arc":[{"x":102565,"y":79797},{"x":61,"y":-299},{"x":146,"y":-84},{"x":24,"y":27},{"x":52,"y":-5},{"x":163,"y":-63},{"x":-7,"y":-195}],"type":"admin"},{"arc":[{"x":102649,"y":83320},{"x":-26,"y":36},{"x":-86,"y":-24},{"x":-154,"y":-195},{"x":-113,"y":-22},{"x":-90,"y":21},{"x":-9,"y":-133},{"x":-60,"y":-85}],"type":"admin"},{"arc":[{"x":102111,"y":82918},{"x":54,"y":-95},{"x":-45,"y":-116},{"x":84,"y":-60},{"x":36,"y":-120},{"x":62,"y":-23}],"type":"admin"},{"arc":[{"x":106209,"y":73246},{"x":334,"y":195},{"x":21,"y":-8},{"x":-10,"y":19},{"x":57,"y":-24},{"x":-10,"y":21},{"x":10,"y":-16},{"x":48,"y":24},{"x":27,"y":-74},{"x":116,"y":0},{"x":-114,"y":2},{"x":-14,"y":38},{"x":85,"y":26},{"x":15,"y":-36},{"x":-12,"y":36},{"x":87,"y":29},{"x":-12,"y":57},{"x":36,"y":15},{"x":219,"y":-73},{"x":76,"y":-84},{"x":-33,"y":42},{"x":55,"y":-18},{"x":-26,"y":-7},{"x":20,"y":-3},{"x":14,"y":19},{"x":27,"y":-16},{"x":26,"y":-44},{"x":-18,"y":-26},{"x":122,"y":-150},{"x":100,"y":133},{"x":-22,"y":126},{"x":-94,"y":51},{"x":-49,"y":-36},{"x":11,"y":-13},{"x":40,"y":46},{"x":51,"y":-32},{"x":-39,"y":-43},{"x":24,"y":-20},{"x":-70,"y":19},{"x":4,"y":-23},{"x":-46,"y":37},{"x":-12,"y":-22},{"x":-116,"y":122},{"x":67,"y":69},{"x":-19,"y":-14},{"x":-5,"y":20},{"x":19,"y":-6},{"x":-11,"y":8},{"x":-17,"y":-4},{"x":8,"y":134},{"x":63,"y":47},{"x":-2,"y":-24},{"x":42,"y":154},{"x":221,"y":269},{"x":-27,"y":-13},{"x":53,"y":104}],"type":"coastline"},{"arc":[{"x":116333,"y":92639},{"x":-46,"y":20},{"x":15,"y":-68},{"x":31,"y":48}],"type":"coastline"},{"arc":[{"x":116346,"y":92481},{"x":-10,"y":-13},{"x":33,"y":35},{"x":-23,"y":-22}],"type":"coastline"},{"arc":[{"x":116591,"y":91045},{"x":-32,"y":35},{"x":-9,"y":244},{"x":8,"y":-244},{"x":33,"y":-35}],"type":"coastline"},{"arc":[{"x":116838,"y":93288},{"x":-49,"y":2},{"x":-17,"y":-72},{"x":-42,"y":-41},{"x":82,"y":-58},{"x":1,"y":-29},{"x":25,"y":198}],"type":"coastline"},{"arc":[{"x":115687,"y":92177},{"x":129,"y":-35},{"x":114,"y":-74},{"x":-33,"y":-126},{"x":-57,"y":-46},{"x":-46,"y":-170},{"x":-83,"y":-83},{"x":28,"y":-67},{"x":-77,"y":-126},{"x":12,"y":-34},{"x":-64,"y":-123},{"x":0,"y":-82},{"x":-89,"y":-52},{"x":-35,"y":-63},{"x":57,"y":-83},{"x":-76,"y":-81},{"x":-84,"y":-24},{"x":-114,"y":-84},{"x":-87,"y":65},{"x":-132,"y":-39},{"x":-35,"y":-49},{"x":-88,"y":41},{"x":-171,"y":-81},{"x":-45,"y":34},{"x":-48,"y":-54},{"x":-67,"y":38},{"x":-127,"y":-101},{"x":-179,"y":24},{"x":-22,"y":-133},{"x":84,"y":-71},{"x":-12,"y":-32},{"x":51,"y":-52}],"type":"area"},{"arc":[{"x":114391,"y":90414},{"x":60,"y":-161},{"x":-48,"y":-72},{"x":-53,"y":-17},{"x":-6,"y":-103},{"x":63,"y":-32},{"x":38,"y":-135},{"x":154,"y":-228},{"x":-2,"y":-127},{"x":-58,"y":-62},{"x":45,"y":-48},{"x":11,"y":-88},{"x":107,"y":-63},{"x":0,"y":-95},{"x":86,"y":-53},{"x":20,"y":26},{"x":20,"y":-19},{"x":-38,"y":-26},{"x":-7,"y":-101},{"x":-71,"y":-34},{"x":-59,"y":-144},{"x":-52,"y":-39},{"x":-27,"y":-158},{"x":-105,"y":-102},{"x":-68,"y":56},{"x":-127,"y":-64},{"x":-36,"y":-107},{"x":60,"y":6},{"x":5,"y":-34},{"x":-67,"y":0},{"x":-47,"y":-99},{"x":22,"y":-93},{"x":65,"y":-59},{"x":167,"y":-44},{"x":88,"y":18},{"x":-39,"y":-37},{"x":-3,"y":-86},{"x":-71,"y":-34},{"x":-111,"y":-177},{"x":25,"y":-39},{"x":101,"y":22},{"x":36,"y":-34}],"type":"area"},{"arc":[{"x":114469,"y":87728},{"x":47,"y":2},{"x":62,"y":97},{"x":104,"y":56},{"x":56,"y":-29},{"x":79,"y":40},{"x":49,"y":-61},{"x":51,"y":-15},{"x":46,"y":20},{"x":57,"y":101},{"x":89,"y":50},{"x":4,"y":95},{"x":-51,"y":50}],"type":"area"},{"arc":[{"x":115062,"y":88134},{"x":106,"y":20},{"x":-19,"y":67},{"x":99,"y":74},{"x":86,"y":167},{"x":112,"y":17},{"x":-29,"y":22},{"x":-7,"y":94},{"x":173,"y":63},{"x":72,"y":79},{"x":64,"y":27},{"x":53,"y":157},{"x":39,"y":-23},{"x":18,"y":44},{"x":69,"y":-43},{"x":52,"y":59},{"x":36,"y":-3},{"x":13,"y":-39},{"x":81,"y":-3},{"x":-6,"y":32},{"x":68,"y":15},{"x":158,"y":-5},{"x":9,"y":28},{"x":-40,"y":30},{"x":20,"y":7},{"x":97,"y":-32},{"x":26,"y":-71},{"x":-16,"y":-52},{"x":58,"y":-44},{"x":-5,"y":-34}],"type":"area"},{"arc":[{"x":116449,"y":88787},{"x":72,"y":-50},{"x":141,"y":16}],"type":"area"},{"arc":[{"x":116662,"y":88753},{"x":-2,"y":81},{"x":-97,"y":141},{"x":-12,"y":86},{"x":27,"y":42},{"x":-128,"y":289},{"x":36,"y":63},{"x":-30,"y":-36},{"x":-43,"y":73},{"x":18,"y":49},{"x":42,"y":-22},{"x":12,"y":-48},{"x":-14,"y":62},{"x":28,"y":52},{"x":39,"y":-9},{"x":-57,"y":29},{"x":-11,"y":-17},{"x":-7,"y":32},{"x":50,"y":66},{"x":-6,"y":-66},{"x":44,"y":-26},{"x":70,"y":156},{"x":9,"y":68},{"x":-47,"y":-5},{"x":13,"y":38},{"x":53,"y":7},{"x":112,"y":349},{"x":53,"y":8},{"x":-52,"y":-6},{"x":-2,"y":25},{"x":-191,"y":56},{"x":4,"y":23},{"x":24,"y":38},{"x":184,"y":-56},{"x":7,"y":15},{"x":12,"y":-3},{"x":23,"y":-45},{"x":-21,"y":46},{"x":-12,"y":4},{"x":51,"y":85},{"x":-144,"y":28},{"x":-24,"y":55},{"x":22,"y":18},{"x":153,"y":-74},{"x":-8,"y":129},{"x":-133,"y":244},{"x":-90,"y":-61},{"x":-25,"y":33},{"x":84,"y":59},{"x":-123,"y":165},{"x":-73,"y":2},{"x":-25,"y":88},{"x":50,"y":-14},{"x":0,"y":25},{"x":-57,"y":24},{"x":-2,"y":48},{"x":-56,"y":-46},{"x":-30,"y":47},{"x":-16,"y":84},{"x":17,"y":-51},{"x":136,"y":1},{"x":0,"y":120},{"x":-27,"y":0},{"x":0,"y":35},{"x":-66,"y":-1},{"x":-1,"y":35},{"x":95,"y":18},{"x":29,"y":49},{"x":-88,"y":3},{"x":-84,"y":-86},{"x":76,"y":82},{"x":-45,"y":103},{"x":24,"y":-20},{"x":-38,"y":84},{"x":-5,"y":109},{"x":64,"y":166},{"x":5,"y":140},{"x":31,"y":26},{"x":-19,"y":28},{"x":43,"y":15},{"x":3,"y":81},{"x":46,"y":65},{"x":-39,"y":37},{"x":-7,"y":62},{"x":-29,"y":-6},{"x":-3,"y":94},{"x":29,"y":6},{"x":6,"y":-48},{"x":91,"y":-27},{"x":116,"y":250},{"x":-22,"y":17},{"x":11,"y":94},{"x":-65,"y":12},{"x":-131,"y":-107},{"x":-89,"y":-15},{"x":-30,"y":-94},{"x":21,"y":30},{"x":0,"y":-104},{"x":-10,"y":22},{"x":-16,"y":-18},{"x":7,"y":28},{"x":-128,"y":-80},{"x":-55,"y":32},{"x":16,"y":30},{"x":-75,"y":-4},{"x":-42,"y":-47},{"x":-54,"y":3},{"x":-42,"y":-68},{"x":-107,"y":-54},{"x":-33,"y":29},{"x":21,"y":46},{"x":-28,"y":13},{"x":-91,"y":-73},{"x":23,"y":-36},{"x":-22,"y":-47},{"x":-76,"y":-53}],"type":"coastline"},{"arc":[{"x":116655,"y":90961},{"x":-19,"y":34},{"x":45,"y":-70},{"x":-26,"y":36}],"type":"coastline"},{"arc":[{"x":117687,"y":88531},{"x":-209,"y":-4},{"x":34,"y":19},{"x":-63,"y":1},{"x":-15,"y":-19},{"x":-55,"y":67},{"x":-36,"y":-25},{"x":-47,"y":24},{"x":-48,"y":-8},{"x":-19,"y":26},{"x":-155,"y":-8},{"x":21,"y":32},{"x":-30,"y":-25},{"x":-10,"y":19},{"x":-7,"y":-17},{"x":-66,"y":17},{"x":-24,"y":-14},{"x":-3,"y":22},{"x":-21,"y":9},{"x":22,"y":-20},{"x":-24,"y":14},{"x":-11,"y":-16},{"x":-28,"y":7},{"x":-74,"y":33},{"x":12,"y":-19},{"x":-21,"y":20},{"x":-38,"y":-6},{"x":-46,"y":35},{"x":2,"y":-18},{"x":-66,"y":76}],"type":"coastline"},{"arc":[{"x":116449,"y":88787},{"x":-9,"y":-59},{"x":51,"y":-57},{"x":-18,"y":-76},{"x":-157,"y":37},{"x":-123,"y":2},{"x":-54,"y":-24},{"x":75,"y":-123},{"x":7,"y":-43},{"x":-54,"y":-43},{"x":30,"y":-80},{"x":17,"y":11},{"x":75,"y":-138},{"x":75,"y":-19},{"x":14,"y":-43},{"x":-48,"y":-78},{"x":-50,"y":13},{"x":-28,"y":-93},{"x":77,"y":-34},{"x":-5,"y":-49},{"x":-35,"y":-35},{"x":-37,"y":-159},{"x":-79,"y":-123},{"x":79,"y":-229},{"x":32,"y":-28},{"x":93,"y":13},{"x":7,"y":-19},{"x":51,"y":1},{"x":98,"y":57},{"x":45,"y":72},{"x":69,"y":29},{"x":65,"y":1},{"x":50,"y":-41},{"x":89,"y":6},{"x":25,"y":37},{"x":-2,"y":120},{"x":109,"y":153},{"x":65,"y":-22},{"x":87,"y":17},{"x":77,"y":31},{"x":120,"y":113},{"x":69,"y":2},{"x":30,"y":-68},{"x":-8,"y":-72},{"x":-81,"y":-94},{"x":44,"y":-123},{"x":36,"y":-6}],"type":"area"},{"arc":[{"x":117422,"y":87524},{"x":104,"y":-22},{"x":52,"y":39},{"x":35,"y":-15},{"x":38,"y":37},{"x":77,"y":-21},{"x":20,"y":65},{"x":-33,"y":56},{"x":10,"y":40}],"type":"area"},{"arc":[{"x":117725,"y":87703},{"x":-47,"y":4},{"x":-28,"y":32},{"x":20,"y":156},{"x":-23,"y":-19},{"x":31,"y":86},{"x":31,"y":-23},{"x":15,"y":29},{"x":-17,"y":89},{"x":81,"y":216},{"x":-30,"y":118},{"x":-40,"y":-30},{"x":49,"y":50},{"x":-37,"y":72},{"x":10,"y":52},{"x":-53,"y":-4}],"type":"admin"},{"arc":[{"x":120654,"y":86283},{"x":-113,"y":-26},{"x":-37,"y":27},{"x":-143,"y":-67},{"x":-43,"y":9},{"x":-7,"y":-137},{"x":-229,"y":-81},{"x":-234,"y":91},{"x":-229,"y":124},{"x":-104,"y":-71},{"x":-43,"y":5},{"x":-8,"y":-39},{"x":-79,"y":-36},{"x":-52,"y":-118},{"x":2,"y":-76},{"x":-50,"y":35},{"x":-111,"y":-34},{"x":-21,"y":42},{"x":-85,"y":23},{"x":-117,"y":-30},{"x":-24,"y":30},{"x":-34,"y":-7},{"x":-157,"y":81},{"x":-195,"y":14},{"x":-50,"y":-60},{"x":44,"y":-51},{"x":-27,"y":-91},{"x":32,"y":-59},{"x":-53,"y":-54},{"x":-98,"y":51},{"x":-51,"y":-8},{"x":-66,"y":-69},{"x":-30,"y":21},{"x":-49,"y":-35},{"x":-71,"y":50},{"x":-23,"y":57},{"x":-135,"y":-69},{"x":-86,"y":-95}],"type":"area"},{"arc":[{"x":117878,"y":85630},{"x":-23,"y":-28},{"x":21,"y":-26},{"x":-31,"y":1},{"x":6,"y":-49},{"x":-70,"y":-11},{"x":-67,"y":-83},{"x":100,"y":-72},{"x":-32,"y":-115},{"x":45,"y":-33},{"x":103,"y":-16},{"x":56,"y":-63},{"x":-1,"y":-31},{"x":-76,"y":-48},{"x":4,"y":-51},{"x":184,"y":-95},{"x":-15,"y":-50},{"x":38,"y":-21},{"x":1,"y":-36},{"x":-110,"y":-76},{"x":-65,"y":40},{"x":-25,"y":-9},{"x":40,"y":-23},{"x":53,"y":-144},{"x":46,"y":33},{"x":54,"y":-109},{"x":106,"y":-93},{"x":0,"y":-65},{"x":-59,"y":-128},{"x":-11,"y":-135},{"x":-133,"y":-71},{"x":-147,"y":-34}],"type":"admin"},{"arc":[{"x":117870,"y":83989},{"x":-30,"y":-329},{"x":188,"y":-48},{"x":33,"y":-78},{"x":59,"y":-34},{"x":41,"y":5},{"x":9,"y":26},{"x":60,"y":-43},{"x":42,"y":3},{"x":88,"y":-179},{"x":137,"y":-78},{"x":19,"y":-70},{"x":59,"y":-27},{"x":69,"y":-86},{"x":88,"y":-6},{"x":26,"y":-26},{"x":-14,"y":-37},{"x":50,"y":-141},{"x":92,"y":2},{"x":17,"y":-43},{"x":46,"y":6},{"x":70,"y":-66},{"x":7,"y":-78},{"x":69,"y":-25}],"type":"area"},{"arc":[{"x":121110,"y":85318},{"x":36,"y":25},{"x":-47,"y":-12},{"x":-15,"y":24},{"x":21,"y":13},{"x":3,"y":-18},{"x":10,"y":26},{"x":25,"y":-29},{"x":6,"y":26},{"x":-39,"y":66},{"x":3,"y":75},{"x":-102,"y":125},{"x":-49,"y":-29},{"x":-13,"y":57},{"x":28,"y":19},{"x":-53,"y":79},{"x":-13,"y":100},{"x":99,"y":3},{"x":80,"y":68},{"x":-73,"y":-62},{"x":-41,"y":0},{"x":66,"y":76},{"x":-58,"y":66},{"x":70,"y":10},{"x":2,"y":37},{"x":45,"y":-30},{"x":-27,"y":31},{"x":-133,"y":9},{"x":-58,"y":-30},{"x":-80,"y":128},{"x":-46,"y":-11},{"x":-16,"y":62},{"x":-54,"y":4},{"x":-33,"y":57}],"type":"coastline"},{"arc":[{"x":117870,"y":83989},{"x":-42,"y":72},{"x":-278,"y":-85},{"x":17,"y":160},{"x":-107,"y":-29},{"x":-16,"y":59},{"x":-43,"y":1},{"x":27,"y":-83},{"x":-100,"y":-43},{"x":-51,"y":-67},{"x":-90,"y":22},{"x":-69,"y":-41},{"x":-5,"y":-42},{"x":-54,"y":0},{"x":-66,"y":-88},{"x":-173,"y":-22},{"x":-1,"y":50},{"x":-71,"y":-13},{"x":-39,"y":-94},{"x":-61,"y":76},{"x":-69,"y":5},{"x":6,"y":83},{"x":36,"y":22},{"x":-28,"y":60},{"x":68,"y":18},{"x":-9,"y":107},{"x":-200,"y":34},{"x":-38,"y":50},{"x":4,"y":48},{"x":-41,"y":9},{"x":-66,"y":78},{"x":-59,"y":-40},{"x":-221,"y":20},{"x":-91,"y":-37},{"x":-247,"y":-32}],"type":"admin"},{"arc":[{"x":109850,"y":92984},{"x":-24,"y":31},{"x":-26,"y":-21},{"x":-36,"y":52},{"x":-12,"y":-40},{"x":-28,"y":6},{"x":-4,"y":-23},{"x":-10,"y":16},{"x":-19,"y":-33},{"x":73,"y":-46},{"x":44,"y":53},{"x":33,"y":-58},{"x":9,"y":63}],"type":"coastline"},{"arc":[{"x":110531,"y":92793},{"x":-61,"y":86},{"x":-9,"y":66},{"x":-66,"y":6},{"x":-12,"y":-138},{"x":26,"y":-29},{"x":55,"y":34},{"x":67,"y":-25}],"type":"coastline"},{"arc":[{"x":111805,"y":94079},{"x":-17,"y":23},{"x":-19,"y":-47},{"x":27,"y":-8},{"x":9,"y":32}],"type":"coastline"},{"arc":[{"x":111904,"y":93994},{"x":-14,"y":12},{"x":-1,"y":-34},{"x":15,"y":22}],"type":"coastline"},{"arc":[{"x":112293,"y":94215},{"x":-78,"y":35},{"x":17,"y":-32},{"x":61,"y":-3}],"type":"coastline"},{"arc":[{"x":112941,"y":93295},{"x":-6,"y":18},{"x":-26,"y":-24},{"x":-49,"y":15},{"x":1,"y":-43},{"x":78,"y":-8},{"x":2,"y":42}],"type":"coastline"},{"arc":[{"x":113020,"y":94514},{"x":-41,"y":55},{"x":-27,"y":-15},{"x":-19,"y":25},{"x":-33,"y":-35},{"x":-100,"y":31},{"x":17,"y":-37},{"x":-44,"y":-14},{"x":-7,"y":-30},{"x":-60,"y":-12},{"x":78,"y":-49},{"x":52,"y":-2},{"x":13,"y":-70},{"x":1,"y":63},{"x":48,"y":75},{"x":42,"y":-10},{"x":36,"y":38},{"x":44,"y":-13}],"type":"coastline"},{"arc":[{"x":113061,"y":94493},{"x":-18,"y":21},{"x":7,"y":-46},{"x":11,"y":25}],"type":"coastline"},{"arc":[{"x":113120,"y":94465},{"x":-27,"y":-14},{"x":9,"y":-30},{"x":18,"y":44}],"type":"coastline"},{"arc":[{"x":113252,"y":93272},{"x":-18,"y":30},{"x":-12,"y":-27},{"x":30,"y":-3}],"type":"coastline"},{"arc":[{"x":113494,"y":92829},{"x":-106,"y":-8},{"x":72,"y":-33},{"x":34,"y":41}],"type":"coastline"},{"arc":[{"x":113508,"y":93069},{"x":1,"y":84},{"x":-39,"y":6},{"x":-37,"y":-30},{"x":27,"y":-38},{"x":-96,"y":-27},{"x":-102,"y":-88},{"x":29,"y":146},{"x":-33,"y":49},{"x":-30,"y":-2},{"x":9,"y":-47},{"x":-18,"y":19},{"x":4,"y":-46},{"x":-52,"y":-49},{"x":21,"y":7},{"x":-13,"y":-30},{"x":-8,"y":16},{"x":-54,"y":-65},{"x":-61,"y":-16},{"x":16,"y":-49},{"x":0,"y":24},{"x":18,"y":-14},{"x":-24,"y":-55},{"x":51,"y":-53},{"x":-8,"y":18},{"x":28,"y":-13},{"x":6,"y":19},{"x":6,"y":-25},{"x":40,"y":11},{"x":41,"y":52},{"x":21,"y":-16},{"x":15,"y":22},{"x":-26,"y":28},{"x":32,"y":5},{"x":30,"y":48},{"x":86,"y":1},{"x":-33,"y":-77},{"x":42,"y":37},{"x":9,"y":-20},{"x":61,"y":7},{"x":-32,"y":45},{"x":17,"y":26},{"x":15,"y":-28},{"x":17,"y":10},{"x":32,"y":54},{"x":-8,"y":54}],"type":"coastline"},{"arc":[{"x":110089,"y":92557},{"x":15,"y":-13},{"x":-84,"y":-113},{"x":-1,"y":-118},{"x":-56,"y":-157},{"x":148,"y":-29},{"x":105,"y":58},{"x":86,"y":-3},{"x":176,"y":-54},{"x":82,"y":44},{"x":96,"y":9},{"x":195,"y":111},{"x":200,"y":-20},{"x":16,"y":-32},{"x":-68,"y":-74},{"x":24,"y":-139},{"x":130,"y":-104},{"x":-21,"y":-96},{"x":-78,"y":-88},{"x":35,"y":-88},{"x":-37,"y":-44},{"x":75,"y":-63},{"x":73,"y":-5},{"x":28,"y":-157},{"x":39,"y":-55},{"x":-28,"y":-20},{"x":-4,"y":-112},{"x":-42,"y":-69},{"x":15,"y":-60},{"x":-41,"y":-60},{"x":-120,"y":4},{"x":-72,"y":-52},{"x":-205,"y":-17},{"x":-147,"y":-140},{"x":-103,"y":-6},{"x":-97,"y":-47},{"x":31,"y":-157},{"x":-36,"y":-47},{"x":-44,"y":-224},{"x":-23,"y":-5},{"x":60,"y":-174},{"x":6,"y":-231},{"x":36,"y":-54},{"x":-31,"y":-242},{"x":39,"y":-89},{"x":-181,"y":-137},{"x":-87,"y":-113},{"x":58,"y":-328},{"x":53,"y":-41},{"x":12,"y":-88},{"x":74,"y":-125},{"x":58,"y":-37}],"type":"admin"},{"arc":[{"x":110448,"y":88656},{"x":44,"y":18},{"x":94,"y":-12},{"x":198,"y":87},{"x":125,"y":-162},{"x":51,"y":7},{"x":15,"y":-96},{"x":72,"y":-74},{"x":198,"y":-112}],"type":"admin"},{"arc":[{"x":111245,"y":88312},{"x":21,"y":69},{"x":147,"y":124},{"x":71,"y":302},{"x":63,"y":48},{"x":46,"y":113},{"x":102,"y":37},{"x":138,"y":196},{"x":-60,"y":214},{"x":15,"y":87},{"x":154,"y":-1},{"x":-22,"y":51},{"x":59,"y":49},{"x":5,"y":58},{"x":125,"y":15},{"x":49,"y":51},{"x":161,"y":-31},{"x":25,"y":82},{"x":-21,"y":52},{"x":-48,"y":-4},{"x":-22,"y":22},{"x":19,"y":52},{"x":70,"y":-14},{"x":23,"y":27},{"x":32,"y":-40},{"x":-20,"y":-68},{"x":50,"y":-3},{"x":53,"y":29},{"x":85,"y":88},{"x":-20,"y":88},{"x":198,"y":92},{"x":59,"y":117}],"type":"area"},{"arc":[{"x":112802,"y":90214},{"x":-109,"y":77},{"x":-3,"y":151},{"x":76,"y":62},{"x":3,"y":75},{"x":65,"y":32},{"x":3,"y":37},{"x":45,"y":30},{"x":48,"y":178},{"x":-28,"y":59},{"x":9,"y":199},{"x":37,"y":50},{"x":-57,"y":74},{"x":62,"y":109},{"x":85,"y":81},{"x":-4,"y":58},{"x":109,"y":-26},{"x":59,"y":-50},{"x":86,"y":27},{"x":59,"y":-31},{"x":69,"y":59},{"x":73,"y":16},{"x":6,"y":33},{"x":92,"y":2},{"x":55,"y":77},{"x":98,"y":-26}],"type":"area"},{"arc":[{"x":113740,"y":91567},{"x":11,"y":74},{"x":-46,"y":131},{"x":18,"y":52},{"x":-52,"y":73},{"x":133,"y":130},{"x":-18,"y":56},{"x":70,"y":255},{"x":-40,"y":122},{"x":15,"y":137},{"x":172,"y":156},{"x":19,"y":141},{"x":99,"y":195},{"x":-28,"y":73},{"x":-46,"y":18},{"x":37,"y":119},{"x":-103,"y":156},{"x":86,"y":149},{"x":48,"y":7},{"x":74,"y":154}],"type":"area"},{"arc":[{"x":114189,"y":93765},{"x":-116,"y":43},{"x":8,"y":116},{"x":-20,"y":1},{"x":-69,"y":-160},{"x":32,"y":-58},{"x":-40,"y":-93},{"x":-62,"y":-22},{"x":-28,"y":-57},{"x":17,"y":-168},{"x":48,"y":-63},{"x":-29,"y":-77},{"x":57,"y":-75},{"x":-70,"y":-63},{"x":33,"y":-51},{"x":30,"y":0},{"x":-24,"y":-46},{"x":-48,"y":-18},{"x":-44,"y":14},{"x":19,"y":-33},{"x":-29,"y":-36},{"x":-129,"y":16},{"x":-52,"y":-25},{"x":-35,"y":30},{"x":-65,"y":-104},{"x":-63,"y":-20},{"x":1,"y":-30},{"x":-78,"y":-71},{"x":-137,"y":74},{"x":-92,"y":-67},{"x":27,"y":-10},{"x":33,"y":24},{"x":126,"y":-47},{"x":-144,"y":-18},{"x":14,"y":-34},{"x":-30,"y":1},{"x":-20,"y":-39},{"x":-51,"y":34},{"x":15,"y":49},{"x":-105,"y":-6},{"x":-2,"y":-19},{"x":6,"y":108},{"x":-16,"y":17},{"x":5,"y":-35},{"x":-5,"y":25},{"x":-37,"y":-36},{"x":-24,"y":74},{"x":36,"y":13},{"x":-19,"y":20},{"x":-56,"y":-10},{"x":-31,"y":41},{"x":73,"y":17},{"x":-22,"y":94},{"x":-118,"y":-34},{"x":-36,"y":120},{"x":-58,"y":-5},{"x":-63,"y":28},{"x":37,"y":74},{"x":58,"y":12},{"x":-7,"y":30},{"x":-61,"y":32},{"x":-27,"y":49},{"x":6,"y":-32},{"x":-92,"y":62},{"x":41,"y":53},{"x":-3,"y":-37},{"x":26,"y":28},{"x":82,"y":-45},{"x":38,"y":6},{"x":-3,"y":36},{"x":-88,"y":50},{"x":45,"y":39},{"x":20,"y":-14},{"x":22,"y":23},{"x":43,"y":-3},{"x":7,"y":23},{"x":-116,"y":-1},{"x":-37,"y":-35},{"x":-23,"y":24},{"x":-42,"y":-21},{"x":-25,"y":34},{"x":28,"y":39},{"x":-50,"y":-31},{"x":-44,"y":63},{"x":11,"y":34},{"x":34,"y":1},{"x":-9,"y":41},{"x":51,"y":9},{"x":-3,"y":24},{"x":41,"y":11},{"x":4,"y":-27},{"x":32,"y":18},{"x":25,"y":-31},{"x":-12,"y":63},{"x":19,"y":27},{"x":28,"y":-6},{"x":27,"y":55},{"x":-37,"y":-7},{"x":-11,"y":23},{"x":-75,"y":-75},{"x":-63,"y":33},{"x":-77,"y":-39},{"x":-11,"y":49},{"x":-62,"y":19},{"x":44,"y":34},{"x":-37,"y":45},{"x":41,"y":7},{"x":-21,"y":14},{"x":15,"y":39},{"x":21,"y":24},{"x":20,"y":-13},{"x":17,"y":49},{"x":-25,"y":37},{"x":17,"y":79},{"x":102,"y":3},{"x":30,"y":-34},{"x":50,"y":25},{"x":-45,"y":24},{"x":-8,"y":58},{"x":-35,"y":28},{"x":20,"y":69},{"x":65,"y":2},{"x":-82,"y":35},{"x":-22,"y":43},{"x":13,"y":69},{"x":-22,"y":20},{"x":48,"y":34},{"x":-59,"y":53},{"x":18,"y":35},{"x":-27,"y":33},{"x":-86,"y":2},{"x":-46,"y":33},{"x":-20,"y":-93},{"x":24,"y":-3},{"x":11,"y":-65},{"x":26,"y":7},{"x":-21,"y":-74},{"x":69,"y":-94},{"x":-48,"y":-23},{"x":18,"y":-46},{"x":-67,"y":3},{"x":-7,"y":19},{"x":-70,"y":-50},{"x":27,"y":-65},{"x":71,"y":25},{"x":23,"y":-26},{"x":1,"y":-118},{"x":-60,"y":-35},{"x":-13,"y":-74},{"x":-83,"y":10},{"x":21,"y":-92},{"x":-126,"y":24},{"x":-16,"y":-19},{"x":-102,"y":7},{"x":74,"y":-143},{"x":43,"y":-26},{"x":19,"y":28},{"x":19,"y":-32},{"x":43,"y":15},{"x":-23,"y":-16},{"x":15,"y":-27},{"x":42,"y":-6},{"x":-62,"y":-29},{"x":43,"y":-105},{"x":-60,"y":15},{"x":-22,"y":60},{"x":-20,"y":-20},{"x":-27,"y":28},{"x":-154,"y":-6},{"x":-25,"y":39},{"x":-57,"y":-12},{"x":2,"y":-21},{"x":-4,"y":18},{"x":-55,"y":-3},{"x":35,"y":33},{"x":-23,"y":41},{"x":44,"y":-14},{"x":-1,"y":30},{"x":11,"y":-32},{"x":11,"y":39},{"x":54,"y":0},{"x":-101,"y":80},{"x":23,"y":87},{"x":-37,"y":40},{"x":-4,"y":-78},{"x":-57,"y":-73},{"x":-92,"y":0},{"x":-9,"y":-59},{"x":-95,"y":-90},{"x":-95,"y":-21},{"x":56,"y":-59},{"x":-24,"y":-44},{"x":28,"y":-2},{"x":-37,"y":-18},{"x":-4,"y":47},{"x":-94,"y":-19},{"x":-1,"y":-38},{"x":-51,"y":-11},{"x":-21,"y":-55},{"x":-53,"y":-38},{"x":68,"y":-75},{"x":45,"y":-10},{"x":-11,"y":-39},{"x":-10,"y":20},{"x":-49,"y":-20},{"x":-114,"y":72},{"x":-51,"y":-80},{"x":-6,"y":-67},{"x":-2,"y":23},{"x":-33,"y":1},{"x":23,"y":13},{"x":-23,"y":31},{"x":32,"y":91},{"x":-225,"y":52},{"x":47,"y":26},{"x":-5,"y":26},{"x":76,"y":-26},{"x":60,"y":20},{"x":69,"y":-42},{"x":-1,"y":37},{"x":-58,"y":11},{"x":-73,"y":60},{"x":8,"y":40},{"x":-44,"y":0},{"x":0,"y":46},{"x":95,"y":54},{"x":104,"y":-116},{"x":20,"y":44},{"x":31,"y":-1},{"x":-2,"y":-56},{"x":21,"y":117},{"x":-103,"y":123},{"x":-9,"y":88},{"x":-34,"y":41},{"x":-102,"y":-25},{"x":-131,"y":-225},{"x":-56,"y":-22},{"x":-62,"y":-106},{"x":-55,"y":-21},{"x":-40,"y":53},{"x":-52,"y":-2},{"x":-46,"y":-58},{"x":33,"y":-82},{"x":76,"y":-5},{"x":-26,"y":15},{"x":25,"y":24},{"x":68,"y":-33},{"x":32,"y":-90},{"x":-24,"y":-76},{"x":-119,"y":15},{"x":-157,"y":-125},{"x":10,"y":-71},{"x":94,"y":-24},{"x":16,"y":-55},{"x":41,"y":9},{"x":-8,"y":39},{"x":20,"y":1},{"x":-7,"y":-29},{"x":45,"y":13},{"x":-13,"y":-48},{"x":-47,"y":-33},{"x":-54,"y":9},{"x":-7,"y":23},{"x":-80,"y":-4},{"x":24,"y":-56},{"x":35,"y":-36},{"x":22,"y":10},{"x":28,"y":-50},{"x":-22,"y":11},{"x":-46,"y":-52},{"x":-45,"y":-8},{"x":28,"y":-65},{"x":21,"y":-18},{"x":69,"y":60},{"x":24,"y":-45},{"x":32,"y":40},{"x":45,"y":-3},{"x":-20,"y":-52},{"x":58,"y":2},{"x":-5,"y":-50},{"x":-8,"y":15},{"x":-12,"y":-30},{"x":-2,"y":19},{"x":-2,"y":-19},{"x":-131,"y":-16},{"x":-19,"y":-22},{"x":-123,"y":84},{"x":-23,"y":42},{"x":-19,"y":-37},{"x":-60,"y":-11},{"x":-41,"y":33},{"x":-30,"y":-14},{"x":-42,"y":20},{"x":6,"y":-37},{"x":72,"y":-13},{"x":27,"y":-32},{"x":51,"y":7},{"x":77,"y":-65},{"x":108,"y":-29},{"x":-8,"y":-49},{"x":-40,"y":-20},{"x":-18,"y":14},{"x":24,"y":12},{"x":-52,"y":-15},{"x":-20,"y":23},{"x":-53,"y":-1},{"x":-42,"y":-81},{"x":-33,"y":7},{"x":6,"y":25},{"x":-42,"y":1},{"x":-49,"y":84},{"x":-77,"y":-36},{"x":-49,"y":13},{"x":-7,"y":-49},{"x":-55,"y":-7},{"x":-30,"y":91},{"x":27,"y":37},{"x":-57,"y":12}],"type":"coastline"},{"arc":[{"x":115123,"y":92299},{"x":-13,"y":28},{"x":-31,"y":-16},{"x":0,"y":-53},{"x":44,"y":41}],"type":"coastline"},{"arc":[{"x":115562,"y":92051},{"x":-6,"y":22},{"x":-34,"y":-5},{"x":30,"y":-33},{"x":10,"y":16}],"type":"coastline"},{"arc":[{"x":115687,"y":92177},{"x":-14,"y":-92},{"x":-52,"y":-18},{"x":-25,"y":-58},{"x":-54,"y":10},{"x":15,"y":-12},{"x":-18,"y":10},{"x":-12,"y":-14},{"x":13,"y":19},{"x":-24,"y":-14},{"x":-4,"y":-34},{"x":-59,"y":-8},{"x":-45,"y":-54},{"x":-14,"y":14},{"x":-92,"y":-39},{"x":-46,"y":8},{"x":25,"y":9},{"x":-22,"y":33},{"x":89,"y":32},{"x":-119,"y":-21},{"x":-25,"y":17},{"x":-19,"y":-72},{"x":-25,"y":-26},{"x":-22,"y":11},{"x":-46,"y":-78},{"x":-66,"y":-17},{"x":29,"y":-15},{"x":-48,"y":8},{"x":-54,"y":-27},{"x":-6,"y":-61},{"x":-34,"y":-34},{"x":-24,"y":16},{"x":23,"y":62},{"x":4,"y":75},{"x":-1,"y":-25},{"x":-10,"y":-3},{"x":-4,"y":12},{"x":-34,"y":3},{"x":-30,"y":-29},{"x":3,"y":44},{"x":77,"y":15},{"x":-60,"y":1},{"x":-9,"y":46},{"x":27,"y":-13},{"x":-39,"y":81},{"x":21,"y":18},{"x":0,"y":-26},{"x":15,"y":49},{"x":34,"y":13},{"x":-36,"y":79},{"x":-65,"y":-34},{"x":-54,"y":79},{"x":50,"y":39},{"x":28,"y":98},{"x":96,"y":54},{"x":-34,"y":57},{"x":37,"y":-17},{"x":39,"y":45},{"x":-9,"y":83},{"x":-70,"y":-34},{"x":-24,"y":17},{"x":5,"y":-18},{"x":-23,"y":60},{"x":25,"y":56},{"x":50,"y":5},{"x":-43,"y":34},{"x":38,"y":73},{"x":63,"y":29},{"x":42,"y":-9},{"x":-48,"y":41},{"x":-16,"y":-30},{"x":-41,"y":18},{"x":21,"y":4},{"x":-37,"y":51},{"x":6,"y":44}],"type":"coastline"},{"arc":[{"x":114906,"y":92817},{"x":-30,"y":6},{"x":-26,"y":-131},{"x":-74,"y":-81},{"x":-18,"y":-190},{"x":-124,"y":-147},{"x":-31,"y":-87},{"x":-6,"y":-199},{"x":-28,"y":-40},{"x":-67,"y":-1},{"x":-6,"y":-84},{"x":-54,"y":-63},{"x":13,"y":-49},{"x":-124,"y":-93},{"x":-54,"y":-126},{"x":-70,"y":-44},{"x":-178,"y":58},{"x":-3,"y":163},{"x":-28,"y":35},{"x":-23,"y":-89},{"x":-82,"y":-8},{"x":-65,"y":-68},{"x":-88,"y":-12}],"type":"area"},{"arc":[{"x":112802,"y":90214},{"x":41,"y":30},{"x":194,"y":-43},{"x":12,"y":-36},{"x":63,"y":-36},{"x":22,"y":10},{"x":143,"y":-85},{"x":47,"y":1},{"x":48,"y":-113},{"x":29,"y":-8},{"x":32,"y":33},{"x":51,"y":-69},{"x":11,"y":46},{"x":45,"y":-14},{"x":69,"y":23},{"x":18,"y":-23},{"x":66,"y":47},{"x":42,"y":-15},{"x":6,"y":59},{"x":-44,"y":63},{"x":77,"y":126},{"x":142,"y":20},{"x":115,"y":-128},{"x":30,"y":48},{"x":119,"y":10},{"x":11,"y":55},{"x":29,"y":-20},{"x":80,"y":36},{"x":-8,"y":31},{"x":81,"y":82},{"x":18,"y":70}],"type":"area"},{"arc":[{"x":114641,"y":92645},{"x":-50,"y":17},{"x":-17,"y":-28},{"x":39,"y":-17},{"x":28,"y":28}],"type":"coastline"},{"arc":[{"x":114715,"y":93852},{"x":-38,"y":8},{"x":-22,"y":50},{"x":-122,"y":-134},{"x":34,"y":28},{"x":-12,"y":-37},{"x":29,"y":40},{"x":32,"y":-14},{"x":7,"y":18},{"x":14,"y":-24},{"x":-30,"y":-6},{"x":78,"y":0},{"x":30,"y":71}],"type":"coastline"},{"arc":[{"x":114906,"y":92817},{"x":4,"y":29},{"x":-39,"y":15},{"x":-95,"y":-184},{"x":-78,"y":38},{"x":2,"y":-37},{"x":-41,"y":-36},{"x":13,"y":-81},{"x":3,"y":15},{"x":31,"y":-26},{"x":-31,"y":-24},{"x":13,"y":-25},{"x":-66,"y":-47},{"x":-11,"y":50},{"x":-90,"y":-128},{"x":-71,"y":10},{"x":18,"y":-28},{"x":-32,"y":-30},{"x":31,"y":-29},{"x":-32,"y":-32},{"x":20,"y":-36},{"x":-23,"y":21},{"x":6,"y":-49},{"x":-63,"y":60},{"x":-15,"y":112},{"x":-5,"y":-67},{"x":-71,"y":-29},{"x":17,"y":23},{"x":-28,"y":54},{"x":27,"y":-3},{"x":-30,"y":15},{"x":29,"y":74},{"x":-73,"y":115},{"x":29,"y":31},{"x":36,"y":-78},{"x":26,"y":24},{"x":36,"y":-18},{"x":19,"y":33},{"x":-97,"y":98},{"x":-18,"y":77},{"x":93,"y":94},{"x":-53,"y":-7},{"x":-59,"y":36},{"x":-61,"y":-36},{"x":-14,"y":19},{"x":4,"y":-23},{"x":-14,"y":80},{"x":16,"y":-21},{"x":35,"y":46},{"x":-55,"y":15},{"x":-11,"y":39},{"x":37,"y":43},{"x":71,"y":-59},{"x":30,"y":43},{"x":-33,"y":13},{"x":5,"y":36},{"x":43,"y":-8},{"x":67,"y":31},{"x":108,"y":-62},{"x":64,"y":124},{"x":-19,"y":14},{"x":-29,"y":-48},{"x":-57,"y":-15},{"x":-43,"y":22},{"x":-49,"y":-11},{"x":-1,"y":53},{"x":-60,"y":-30},{"x":-38,"y":44},{"x":-51,"y":-7},{"x":-41,"y":108},{"x":56,"y":12},{"x":2,"y":-23},{"x":33,"y":144},{"x":-23,"y":-1},{"x":3,"y":29},{"x":-40,"y":-31},{"x":-21,"y":25},{"x":-21,"y":-27},{"x":-48,"y":53},{"x":12,"y":38},{"x":59,"y":12},{"x":-22,"y":50},{"x":37,"y":86},{"x":70,"y":0},{"x":69,"y":-43},{"x":28,"y":33},{"x":62,"y":13},{"x":20,"y":-33},{"x":42,"y":23},{"x":0,"y":58},{"x":34,"y":7},{"x":-9,"y":31},{"x":41,"y":37},{"x":-4,"y":18},{"x":-195,"y":-77},{"x":-54,"y":62},{"x":-84,"y":12}],"type":"coastline"},{"arc":[{"x":115344,"y":93526},{"x":-32,"y":17},{"x":-30,"y":-17},{"x":-8,"y":-96},{"x":70,"y":96}],"type":"coastline"},{"arc":[{"x":115472,"y":93658},{"x":-85,"y":-47},{"x":-25,"y":-79},{"x":98,"y":34},{"x":12,"y":92}],"type":"coastline"},{"arc":[{"x":114469,"y":87728},{"x":-48,"y":-63},{"x":-51,"y":-21},{"x":-36,"y":-69},{"x":-37,"y":12},{"x":-69,"y":-33},{"x":9,"y":-27},{"x":-63,"y":15},{"x":-38,"y":45},{"x":-48,"y":-103},{"x":-24,"y":37},{"x":-39,"y":7},{"x":2,"y":77},{"x":-71,"y":-47},{"x":-33,"y":40},{"x":-18,"y":-59},{"x":-20,"y":21},{"x":-29,"y":-49},{"x":-44,"y":-2},{"x":-32,"y":-93},{"x":-81,"y":37},{"x":-20,"y":-137},{"x":-36,"y":-3},{"x":-136,"y":43},{"x":15,"y":78},{"x":-40,"y":19},{"x":7,"y":29},{"x":-66,"y":23},{"x":-8,"y":93},{"x":-62,"y":69},{"x":-9,"y":54},{"x":-65,"y":-8},{"x":-15,"y":22},{"x":-103,"y":17},{"x":-62,"y":-41},{"x":-76,"y":53},{"x":-56,"y":-35},{"x":-66,"y":60},{"x":-11,"y":-35},{"x":-75,"y":-9},{"x":-14,"y":-37},{"x":-86,"y":-57},{"x":-55,"y":9},{"x":-42,"y":-57},{"x":-40,"y":25},{"x":-55,"y":-15},{"x":-25,"y":16},{"x":-11,"y":-54},{"x":-24,"y":-20},{"x":-10,"y":35},{"x":-36,"y":-35},{"x":8,"y":-55},{"x":-44,"y":32},{"x":-68,"y":16},{"x":-13,"y":-30},{"x":-40,"y":23},{"x":-39,"y":-52},{"x":-45,"y":19},{"x":-39,"y":-46},{"x":-119,"y":67},{"x":-50,"y":-13},{"x":-164,"y":27},{"x":-138,"y":-122},{"x":-44,"y":-10},{"x":-72,"y":93},{"x":-196,"y":-122},{"x":-92,"y":-115},{"x":-83,"y":-256},{"x":-51,"y":-24}],"type":"area"},{"arc":[{"x":111128,"y":86987},{"x":69,"y":-70},{"x":-5,"y":-111}],"type":"admin"},{"arc":[{"x":114287,"y":85396},{"x":163,"y":112},{"x":-27,"y":195},{"x":-38,"y":40},{"x":52,"y":104},{"x":209,"y":105},{"x":66,"y":69},{"x":135,"y":-4},{"x":17,"y":39}],"type":"admin"},{"arc":[{"x":114864,"y":86056},{"x":24,"y":145},{"x":-90,"y":101},{"x":35,"y":110},{"x":-197,"y":201},{"x":56,"y":231},{"x":-40,"y":-2},{"x":-19,"y":27},{"x":24,"y":68},{"x":-20,"y":69},{"x":74,"y":95},{"x":70,"y":-65},{"x":35,"y":14},{"x":4,"y":79},{"x":60,"y":-9},{"x":-14,"y":58},{"x":40,"y":13},{"x":-28,"y":49},{"x":192,"y":53},{"x":56,"y":44},{"x":21,"y":73},{"x":82,"y":35},{"x":24,"y":265},{"x":-64,"y":178},{"x":41,"y":30},{"x":-30,"y":116},{"x":-138,"y":100}],"type":"area"},{"arc":[{"x":121875,"y":89029},{"x":-130,"y":51},{"x":-178,"y":12},{"x":-108,"y":66},{"x":-27,"y":-25},{"x":-107,"y":39},{"x":-87,"y":-22},{"x":-48,"y":82},{"x":-44,"y":18},{"x":-6,"y":81},{"x":-69,"y":49},{"x":-127,"y":-65},{"x":-106,"y":10},{"x":-52,"y":48},{"x":-99,"y":20},{"x":-11,"y":61},{"x":27,"y":32},{"x":-46,"y":68},{"x":-162,"y":1},{"x":-121,"y":-67}],"type":"area"},{"arc":[{"x":120374,"y":89488},{"x":-30,"y":-125},{"x":-245,"y":-234},{"x":-288,"y":-89},{"x":20,"y":-18},{"x":-132,"y":-69},{"x":-42,"y":-56},{"x":-63,"y":-13},{"x":-16,"y":30},{"x":-237,"y":22},{"x":8,"y":-76},{"x":-30,"y":-53},{"x":66,"y":-93},{"x":-11,"y":-65},{"x":75,"y":-30},{"x":101,"y":-163},{"x":-4,"y":-57},{"x":74,"y":-28},{"x":68,"y":-73},{"x":56,"y":-169},{"x":151,"y":-87},{"x":82,"y":-6}],"type":"area"},{"arc":[{"x":119977,"y":88036},{"x":161,"y":-128},{"x":-33,"y":-25},{"x":2,"y":-88},{"x":78,"y":-19},{"x":40,"y":25},{"x":38,"y":-46},{"x":-35,"y":1},{"x":-3,"y":-27},{"x":56,"y":-16},{"x":32,"y":-51},{"x":125,"y":36},{"x":53,"y":131}],"type":"area"},{"arc":[{"x":120491,"y":87829},{"x":30,"y":63},{"x":48,"y":-26},{"x":-3,"y":-13},{"x":28,"y":-41},{"x":37,"y":-23},{"x":113,"y":-21},{"x":88,"y":5},{"x":-87,"y":-4},{"x":-74,"y":9},{"x":-72,"y":31},{"x":-30,"y":42},{"x":102,"y":-63},{"x":138,"y":-5},{"x":331,"y":395},{"x":-72,"y":61},{"x":25,"y":-1},{"x":-13,"y":18},{"x":20,"y":-6},{"x":-3,"y":-13},{"x":45,"y":-37},{"x":-44,"y":37},{"x":26,"y":41},{"x":160,"y":33},{"x":28,"y":37},{"x":24,"y":-31},{"x":-31,"y":42},{"x":35,"y":-39},{"x":-24,"y":37},{"x":49,"y":49},{"x":21,"y":-52},{"x":58,"y":30},{"x":11,"y":39},{"x":46,"y":-7},{"x":-52,"y":97},{"x":24,"y":33},{"x":36,"y":-22},{"x":16,"y":17},{"x":18,"y":-34},{"x":-7,"y":35},{"x":15,"y":-38},{"x":35,"y":14},{"x":26,"y":102},{"x":21,"y":-50},{"x":-1,"y":37},{"x":72,"y":-71},{"x":44,"y":9},{"x":-13,"y":-2},{"x":-4,"y":20},{"x":13,"y":-15},{"x":-2,"y":13},{"x":20,"y":-11},{"x":37,"y":17},{"x":-10,"y":72},{"x":55,"y":-1},{"x":-68,"y":105},{"x":19,"y":39},{"x":60,"y":9},{"x":3,"y":28},{"x":-10,"y":-11},{"x":-19,"y":16},{"x":4,"y":10},{"x":19,"y":-14},{"x":12,"y":5},{"x":-14,"y":-4},{"x":-2,"y":9},{"x":-3,"y":-4},{"x":-32,"y":12},{"x":-1,"y":26},{"x":54,"y":1},{"x":69,"y":-66},{"x":29,"y":6},{"x":-98,"y":117},{"x":42,"y":35},{"x":-33,"y":72}],"type":"coastline"},{"arc":[{"x":118973,"y":90830},{"x":-159,"y":-92},{"x":-372,"y":-86},{"x":-16,"y":-101},{"x":31,"y":-21},{"x":-13,"y":-33},{"x":61,"y":-96},{"x":-22,"y":-166},{"x":16,"y":79},{"x":27,"y":28},{"x":58,"y":1},{"x":1,"y":21},{"x":45,"y":-100},{"x":-20,"y":-14},{"x":42,"y":-23},{"x":-30,"y":-8},{"x":39,"y":-26},{"x":-44,"y":-38},{"x":6,"y":-69},{"x":-27,"y":45},{"x":-47,"y":9},{"x":49,"y":-15},{"x":64,"y":-155},{"x":-35,"y":-73},{"x":-12,"y":65},{"x":-49,"y":-1},{"x":-13,"y":-56},{"x":-48,"y":-22},{"x":-38,"y":76},{"x":0,"y":82},{"x":-2,"y":-84},{"x":-19,"y":61},{"x":-4,"y":-31},{"x":-38,"y":2},{"x":23,"y":29},{"x":-25,"y":14},{"x":41,"y":18},{"x":-42,"y":-17},{"x":0,"y":-25},{"x":-32,"y":0},{"x":16,"y":32},{"x":-17,"y":-8},{"x":-11,"y":-60},{"x":-75,"y":105},{"x":-74,"y":7},{"x":-43,"y":36},{"x":-20,"y":-39},{"x":-96,"y":-29},{"x":-6,"y":-57},{"x":28,"y":20},{"x":-40,"y":-60},{"x":14,"y":-116},{"x":-32,"y":-60}],"type":"coastline"},{"arc":[{"x":118013,"y":89779},{"x":175,"y":-17},{"x":55,"y":-47},{"x":-16,"y":-72},{"x":71,"y":-93},{"x":18,"y":-73},{"x":-81,"y":-80},{"x":-19,"y":-146},{"x":104,"y":34},{"x":21,"y":-11},{"x":-1,"y":-102},{"x":121,"y":25},{"x":63,"y":-40},{"x":38,"y":35},{"x":-4,"y":44},{"x":81,"y":-76},{"x":19,"y":11},{"x":59,"y":-43},{"x":-3,"y":-64},{"x":-22,"y":-40},{"x":-85,"y":-4},{"x":-64,"y":-113},{"x":-52,"y":-17},{"x":-69,"y":-90},{"x":-95,"y":28},{"x":-2,"y":-129},{"x":-82,"y":4},{"x":-2,"y":-267},{"x":-74,"y":-59},{"x":38,"y":-49},{"x":-11,"y":-88},{"x":79,"y":-159},{"x":-155,"y":-15},{"x":-23,"y":-20},{"x":21,"y":-20},{"x":-72,"y":61},{"x":-244,"y":-207},{"x":26,"y":-5}],"type":"admin"},{"arc":[{"x":117826,"y":87875},{"x":96,"y":-21},{"x":99,"y":-58},{"x":-11,"y":-46},{"x":46,"y":-133},{"x":60,"y":-20},{"x":226,"y":77},{"x":43,"y":67},{"x":151,"y":-26},{"x":29,"y":75},{"x":71,"y":4},{"x":39,"y":45},{"x":91,"y":-14},{"x":57,"y":54},{"x":102,"y":-15},{"x":42,"y":-48},{"x":54,"y":18},{"x":22,"y":-29},{"x":25,"y":13},{"x":95,"y":-37},{"x":119,"y":2},{"x":61,"y":-107},{"x":64,"y":-18},{"x":33,"y":-52},{"x":61,"y":-13},{"x":0,"y":38},{"x":93,"y":24},{"x":37,"y":82},{"x":81,"y":48},{"x":-97,"y":147},{"x":139,"y":5},{"x":15,"y":-107},{"x":14,"y":49},{"x":39,"y":-2},{"x":26,"y":-125},{"x":129,"y":284}],"type":"area"},{"arc":[{"x":120374,"y":89488},{"x":-77,"y":2},{"x":-122,"y":-43},{"x":-103,"y":5},{"x":-55,"y":32},{"x":-113,"y":15},{"x":-114,"y":85},{"x":-98,"y":-10},{"x":-5,"y":46},{"x":-205,"y":14},{"x":-40,"y":38},{"x":-48,"y":-30},{"x":-137,"y":52},{"x":8,"y":80},{"x":-59,"y":21},{"x":-6,"y":102},{"x":-109,"y":33},{"x":-20,"y":42},{"x":12,"y":222},{"x":-33,"y":20},{"x":-88,"y":-67},{"x":-53,"y":5},{"x":-58,"y":-29},{"x":-35,"y":32},{"x":-18,"y":98},{"x":45,"y":207},{"x":37,"y":41},{"x":32,"y":-24},{"x":29,"y":25},{"x":61,"y":81},{"x":-2,"y":68},{"x":32,"y":49},{"x":-59,"y":130}],"type":"area"},{"arc":[{"x":117826,"y":87875},{"x":-101,"y":-172}],"type":"admin"},{"arc":[{"x":117422,"y":87524},{"x":21,"y":-175},{"x":-20,"y":-77},{"x":-13,"y":-15},{"x":-38,"y":19},{"x":-38,"y":-27},{"x":-34,"y":-137},{"x":-81,"y":-66},{"x":53,"y":-25},{"x":50,"y":-183}],"type":"area"},{"arc":[{"x":117322,"y":86838},{"x":68,"y":-206},{"x":180,"y":-99},{"x":-27,"y":-265},{"x":71,"y":-57},{"x":117,"y":-43},{"x":29,"y":-63},{"x":52,"y":-23},{"x":19,"y":-70},{"x":49,"y":-22},{"x":10,"y":-88},{"x":-70,"y":-20},{"x":-9,"y":-90},{"x":68,"y":-54},{"x":-1,"y":-108}],"type":"admin"},{"arc":[{"x":120654,"y":86283},{"x":-23,"y":123},{"x":38,"y":85},{"x":-32,"y":-10},{"x":42,"y":31},{"x":-25,"y":25},{"x":17,"y":270},{"x":-16,"y":53},{"x":-51,"y":6},{"x":41,"y":31},{"x":-47,"y":-34},{"x":-68,"y":59},{"x":101,"y":246},{"x":-31,"y":-2},{"x":24,"y":11},{"x":-20,"y":0},{"x":17,"y":63},{"x":-33,"y":8},{"x":52,"y":1},{"x":-24,"y":15},{"x":29,"y":5},{"x":14,"y":-19},{"x":-23,"y":56},{"x":-39,"y":15},{"x":-7,"y":203},{"x":-19,"y":-8},{"x":-7,"y":25},{"x":9,"y":30},{"x":61,"y":-19},{"x":-62,"y":20},{"x":-20,"y":-2},{"x":11,"y":96},{"x":72,"y":-36},{"x":-72,"y":38},{"x":-1,"y":75},{"x":-58,"y":12},{"x":-13,"y":74}],"type":"coastline"},{"arc":[{"x":111245,"y":88312},{"x":-79,"y":-110},{"x":-30,"y":-285},{"x":-130,"y":-59},{"x":-81,"y":-104}],"type":"admin"},{"arc":[{"x":110925,"y":87754},{"x":19,"y":-217},{"x":-50,"y":-227},{"x":-75,"y":-123},{"x":6,"y":-74},{"x":84,"y":-110},{"x":79,"y":21},{"x":97,"y":-9},{"x":43,"y":-28}],"type":"admin"},{"arc":[{"x":114864,"y":86056},{"x":146,"y":0},{"x":110,"y":150},{"x":68,"y":38},{"x":132,"y":210},{"x":18,"y":53},{"x":-24,"y":53},{"x":178,"y":200},{"x":62,"y":-72},{"x":-74,"y":-100},{"x":99,"y":-135},{"x":22,"y":66},{"x":-32,"y":58},{"x":25,"y":54},{"x":34,"y":-60},{"x":49,"y":22},{"x":52,"y":-56},{"x":59,"y":-90},{"x":-16,"y":-43},{"x":37,"y":10},{"x":220,"y":-103},{"x":67,"y":-61},{"x":136,"y":-65},{"x":75,"y":126},{"x":94,"y":50},{"x":65,"y":89}],"type":"admin"},{"arc":[{"x":116466,"y":86450},{"x":124,"y":8},{"x":66,"y":34},{"x":351,"y":354},{"x":169,"y":-175},{"x":24,"y":88},{"x":44,"y":8},{"x":25,"y":50},{"x":53,"y":21}],"type":"admin"},{"arc":[{"x":121875,"y":89029},{"x":39,"y":11},{"x":-22,"y":29},{"x":50,"y":29},{"x":-19,"y":45},{"x":59,"y":-1},{"x":14,"y":52},{"x":-91,"y":45},{"x":-8,"y":31},{"x":-4,"y":-25},{"x":-51,"y":9},{"x":5,"y":95},{"x":147,"y":-20},{"x":74,"y":124},{"x":-40,"y":16},{"x":0,"y":67},{"x":-32,"y":3},{"x":14,"y":46},{"x":-27,"y":-14},{"x":23,"y":12},{"x":-11,"y":11},{"x":22,"y":14},{"x":2,"y":18},{"x":-10,"y":-22},{"x":-19,"y":6},{"x":13,"y":16},{"x":-24,"y":-6},{"x":35,"y":14},{"x":-26,"y":9},{"x":8,"y":37},{"x":-104,"y":-3},{"x":-47,"y":93},{"x":25,"y":17},{"x":29,"y":-22},{"x":21,"y":40},{"x":-46,"y":53},{"x":-37,"y":-2},{"x":0,"y":59},{"x":99,"y":2},{"x":2,"y":56},{"x":-73,"y":35},{"x":5,"y":47},{"x":-52,"y":-9},{"x":23,"y":59},{"x":-45,"y":36},{"x":18,"y":-26},{"x":-47,"y":-30},{"x":-81,"y":6},{"x":-23,"y":45},{"x":72,"y":27},{"x":52,"y":79},{"x":-27,"y":-2},{"x":1,"y":43},{"x":-37,"y":-17},{"x":-19,"y":31},{"x":-49,"y":-7},{"x":-40,"y":27},{"x":14,"y":14},{"x":-17,"y":-12},{"x":17,"y":21},{"x":-98,"y":25},{"x":-8,"y":32},{"x":-73,"y":28},{"x":-53,"y":46},{"x":33,"y":64},{"x":-29,"y":30},{"x":-396,"y":111},{"x":-58,"y":60},{"x":15,"y":55},{"x":-8,"y":35},{"x":0,"y":-43},{"x":-10,"y":20},{"x":-22,"y":2},{"x":25,"y":24},{"x":-29,"y":-25},{"x":7,"y":19},{"x":-152,"y":62},{"x":-27,"y":60},{"x":-73,"y":15},{"x":5,"y":26},{"x":-5,"y":-18},{"x":-1,"y":19},{"x":-118,"y":-10},{"x":-7,"y":28},{"x":1,"y":-20},{"x":-20,"y":20},{"x":-49,"y":-13},{"x":54,"y":52},{"x":-57,"y":-33},{"x":4,"y":29},{"x":-34,"y":-30},{"x":30,"y":32},{"x":-31,"y":-9},{"x":-40,"y":22},{"x":20,"y":8},{"x":-208,"y":-4},{"x":-45,"y":43},{"x":-74,"y":-27},{"x":6,"y":-39},{"x":-19,"y":25},{"x":-56,"y":-38},{"x":-307,"y":-72},{"x":-75,"y":19},{"x":6,"y":-17},{"x":-16,"y":-3},{"x":2,"y":20},{"x":-9,"y":-22},{"x":12,"y":-11},{"x":-19,"y":2},{"x":5,"y":29},{"x":-6,"y":-28},{"x":-98,"y":11},{"x":-15,"y":32},{"x":-29,"y":-11},{"x":6,"y":22},{"x":68,"y":0},{"x":0,"y":45},{"x":-350,"y":6},{"x":-17,"y":-53},{"x":72,"y":-7},{"x":-62,"y":-26},{"x":5,"y":-39},{"x":-10,"y":-13},{"x":-23,"y":0},{"x":24,"y":14},{"x":-1,"y":27},{"x":-15,"y":3},{"x":12,"y":10},{"x":-13,"y":-9},{"x":6,"y":-32},{"x":-49,"y":-31},{"x":3,"y":26},{"x":-6,"y":-25},{"x":-127,"y":-25},{"x":-31,"y":-35}],"type":"coastline"},{"arc":[{"x":122653,"y":90342},{"x":-8,"y":127},{"x":-8,"y":-29},{"x":-1,"y":24},{"x":-16,"y":-12},{"x":-34,"y":30},{"x":-13,"y":75},{"x":26,"y":33},{"x":-55,"y":63},{"x":18,"y":-63},{"x":-33,"y":-22},{"x":23,"y":14},{"x":12,"y":-39},{"x":-26,"y":20},{"x":34,"y":-28},{"x":-90,"y":-149},{"x":-41,"y":-22},{"x":6,"y":25},{"x":-70,"y":-94},{"x":25,"y":-89},{"x":30,"y":-7},{"x":-19,"y":-74},{"x":31,"y":24},{"x":-47,"y":-42},{"x":46,"y":27},{"x":-17,"y":-77},{"x":-32,"y":34},{"x":31,"y":-34},{"x":-51,"y":-112},{"x":23,"y":-21},{"x":50,"y":22},{"x":22,"y":62},{"x":48,"y":9},{"x":-39,"y":4},{"x":102,"y":23},{"x":-12,"y":36},{"x":-24,"y":-5},{"x":13,"y":33},{"x":-32,"y":-11},{"x":23,"y":10},{"x":-4,"y":64},{"x":28,"y":-1},{"x":98,"y":128},{"x":-17,"y":44}],"type":"coastline"},{"arc":[{"x":118013,"y":89779},{"x":-34,"y":-122},{"x":20,"y":9},{"x":8,"y":-93},{"x":-103,"y":-15},{"x":-51,"y":35},{"x":-125,"y":-22},{"x":-39,"y":-85},{"x":10,"y":21},{"x":30,"y":-48},{"x":27,"y":5},{"x":24,"y":-60},{"x":-105,"y":63},{"x":83,"y":-239},{"x":-11,"y":-58},{"x":27,"y":-21},{"x":-7,"y":-18},{"x":-36,"y":27},{"x":4,"y":-75},{"x":58,"y":-66},{"x":69,"y":-24},{"x":-8,"y":16},{"x":64,"y":-63},{"x":10,"y":25},{"x":29,"y":-152},{"x":-84,"y":-170},{"x":-8,"y":-90},{"x":-28,"y":16},{"x":-11,"y":-22},{"x":6,"y":22},{"x":-145,"y":-44}],"type":"coastline"},{"arc":[{"x":115624,"y":84549},{"x":198,"y":55},{"x":102,"y":60},{"x":113,"y":21},{"x":150,"y":71},{"x":113,"y":130},{"x":138,"y":13},{"x":77,"y":88},{"x":17,"y":147},{"x":152,"y":49},{"x":80,"y":-15},{"x":-31,"y":73},{"x":33,"y":86},{"x":99,"y":25},{"x":26,"y":81},{"x":-16,"y":57},{"x":87,"y":52},{"x":53,"y":-22},{"x":-16,"y":39},{"x":72,"y":59},{"x":3,"y":181},{"x":85,"y":159},{"x":-68,"y":3},{"x":-50,"y":62},{"x":-147,"y":60},{"x":-118,"y":-25},{"x":-35,"y":64},{"x":35,"y":88},{"x":-95,"y":23},{"x":-46,"y":-32},{"x":-10,"y":167},{"x":-159,"y":82}],"type":"area"},{"arc":[{"x":98174,"y":88330},{"x":-10,"y":-40},{"x":33,"y":39},{"x":-23,"y":1}],"type":"coastline"},{"arc":[{"x":101356,"y":87877},{"x":14,"y":110},{"x":-59,"y":96},{"x":-37,"y":198},{"x":-30,"y":13},{"x":-70,"y":138},{"x":33,"y":140},{"x":37,"y":31},{"x":-7,"y":44}],"type":"admin"},{"arc":[{"x":101237,"y":88647},{"x":-30,"y":-43},{"x":-1236,"y":-320},{"x":-152,"y":-24},{"x":-30,"y":28},{"x":16,"y":-17},{"x":-27,"y":-21},{"x":-9,"y":26},{"x":-35,"y":-23},{"x":-12,"y":30},{"x":4,"y":-49},{"x":-32,"y":-6},{"x":-4,"y":20},{"x":27,"y":-1},{"x":-12,"y":42},{"x":32,"y":1},{"x":-64,"y":-7},{"x":-44,"y":29},{"x":50,"y":-61},{"x":-39,"y":-36},{"x":-35,"y":13},{"x":18,"y":-29},{"x":-35,"y":-47},{"x":-156,"y":-16},{"x":3,"y":-17},{"x":-46,"y":3},{"x":-23,"y":-24},{"x":-13,"y":36},{"x":51,"y":0},{"x":-6,"y":33},{"x":12,"y":-15},{"x":-2,"y":17},{"x":150,"y":26},{"x":-19,"y":89},{"x":139,"y":143},{"x":-141,"y":-141},{"x":0,"y":-37},{"x":-201,"y":-45},{"x":-2,"y":-41},{"x":-20,"y":56},{"x":9,"y":-57},{"x":-150,"y":-33},{"x":-46,"y":15},{"x":11,"y":51},{"x":-90,"y":-20},{"x":30,"y":-9},{"x":-34,"y":-52},{"x":-149,"y":-32},{"x":-310,"y":-20},{"x":-265,"y":35},{"x":-136,"y":104},{"x":-23,"y":78},{"x":-84,"y":-17},{"x":-31,"y":45},{"x":34,"y":4},{"x":-129,"y":59},{"x":-21,"y":80},{"x":-284,"y":-125},{"x":-40,"y":-3},{"x":-22,"y":19},{"x":-66,"y":-8},{"x":66,"y":6},{"x":-5,"y":-23},{"x":27,"y":-20},{"x":-16,"y":-28},{"x":-33,"y":38},{"x":3,"y":-45},{"x":-40,"y":-19},{"x":-48,"y":-5},{"x":-127,"y":65},{"x":-35,"y":-54},{"x":45,"y":8},{"x":11,"y":26},{"x":12,"y":-17},{"x":-93,"y":-76},{"x":-73,"y":43},{"x":-33,"y":-13},{"x":-60,"y":21}],"type":"coastline"},{"arc":[{"x":97119,"y":88240},{"x":7,"y":-47},{"x":63,"y":0},{"x":32,"y":-40},{"x":14,"y":-293},{"x":106,"y":-160},{"x":82,"y":-14},{"x":57,"y":-47},{"x":21,"y":-136},{"x":142,"y":16},{"x":71,"y":-25},{"x":30,"y":-112},{"x":113,"y":-55},{"x":-20,"y":-56},{"x":-83,"y":-18},{"x":32,"y":-115},{"x":-31,"y":-31},{"x":31,"y":-110},{"x":49,"y":-33},{"x":5,"y":-80},{"x":51,"y":-2},{"x":6,"y":-164},{"x":-38,"y":-76},{"x":25,"y":-18},{"x":-9,"y":-34},{"x":-119,"y":16},{"x":-69,"y":-27},{"x":22,"y":-70},{"x":-49,"y":-133},{"x":62,"y":-190}],"type":"area"},{"arc":[{"x":97722,"y":86186},{"x":14,"y":-34},{"x":81,"y":-11},{"x":31,"y":19},{"x":27,"y":-31},{"x":-53,"y":-99},{"x":37,"y":-31},{"x":-25,"y":-57},{"x":16,"y":-59},{"x":79,"y":-30},{"x":136,"y":39},{"x":27,"y":-11}],"type":"admin"},{"arc":[{"x":98092,"y":85881},{"x":129,"y":-9},{"x":117,"y":-99},{"x":61,"y":-4},{"x":70,"y":-79},{"x":30,"y":46},{"x":72,"y":24},{"x":-12,"y":28},{"x":33,"y":2},{"x":4,"y":35},{"x":28,"y":-3},{"x":1,"y":81},{"x":35,"y":-8},{"x":19,"y":27},{"x":14,"y":-20},{"x":13,"y":22},{"x":10,"y":-21},{"x":51,"y":2},{"x":1,"y":-54},{"x":117,"y":11},{"x":-49,"y":102},{"x":47,"y":65},{"x":76,"y":-48},{"x":76,"y":5},{"x":55,"y":42},{"x":12,"y":-25},{"x":-33,"y":-31},{"x":54,"y":-21},{"x":97,"y":51},{"x":7,"y":-54},{"x":-36,"y":-33},{"x":-76,"y":-3},{"x":-24,"y":-42},{"x":61,"y":-224},{"x":-236,"y":-110},{"x":88,"y":-113},{"x":140,"y":-59},{"x":203,"y":17},{"x":85,"y":-26},{"x":78,"y":18},{"x":32,"y":52},{"x":75,"y":44},{"x":-79,"y":108},{"x":95,"y":101},{"x":143,"y":-60},{"x":8,"y":-78},{"x":67,"y":5},{"x":37,"y":-89}],"type":"area"},{"arc":[{"x":99888,"y":85456},{"x":60,"y":-51},{"x":89,"y":-11},{"x":154,"y":75},{"x":-6,"y":36},{"x":36,"y":30},{"x":50,"y":-8},{"x":23,"y":28},{"x":44,"y":-43},{"x":44,"y":58},{"x":44,"y":-26},{"x":-31,"y":-33},{"x":16,"y":-36},{"x":94,"y":-36}],"type":"area"},{"arc":[{"x":100505,"y":85439},{"x":93,"y":171},{"x":-227,"y":106},{"x":-82,"y":12},{"x":43,"y":78},{"x":-14,"y":44},{"x":91,"y":166},{"x":-36,"y":53},{"x":46,"y":53},{"x":-3,"y":64}],"type":"admin"},{"arc":[{"x":100416,"y":86186},{"x":25,"y":81},{"x":-38,"y":54},{"x":17,"y":106},{"x":-111,"y":89},{"x":-84,"y":110},{"x":8,"y":104},{"x":-23,"y":24},{"x":4,"y":22},{"x":97,"y":16},{"x":66,"y":38},{"x":38,"y":168},{"x":-56,"y":42},{"x":-8,"y":80},{"x":30,"y":4},{"x":-83,"y":41},{"x":-51,"y":74},{"x":193,"y":33},{"x":112,"y":55},{"x":62,"y":-36},{"x":67,"y":40},{"x":14,"y":-19},{"x":59,"y":77},{"x":89,"y":32},{"x":40,"y":-23}],"type":"admin"},{"arc":[{"x":100883,"y":87398},{"x":52,"y":24},{"x":76,"y":-42},{"x":61,"y":11},{"x":34,"y":17},{"x":4,"y":37},{"x":103,"y":11},{"x":41,"y":63},{"x":24,"y":7},{"x":-15,"y":-36},{"x":41,"y":-18},{"x":79,"y":70},{"x":99,"y":21},{"x":1,"y":49},{"x":-65,"y":115},{"x":-105,"y":73},{"x":14,"y":74},{"x":29,"y":3}],"type":"area"},{"arc":[{"x":98092,"y":85881},{"x":-8,"y":-71},{"x":-186,"y":-71},{"x":13,"y":-65},{"x":-97,"y":-60},{"x":-53,"y":1},{"x":-32,"y":-86},{"x":-106,"y":-9},{"x":-15,"y":-149},{"x":-53,"y":-38},{"x":-6,"y":-37},{"x":-109,"y":-67},{"x":-91,"y":-14},{"x":-40,"y":-50},{"x":51,"y":-221},{"x":140,"y":-26},{"x":109,"y":-139},{"x":25,"y":31},{"x":105,"y":-101},{"x":58,"y":-2},{"x":2,"y":-32},{"x":-51,"y":-31},{"x":16,"y":-93},{"x":-133,"y":-87},{"x":-126,"y":56},{"x":-86,"y":-72},{"x":-159,"y":-3},{"x":-29,"y":63},{"x":-16,"y":-123},{"x":-18,"y":-3},{"x":3,"y":55},{"x":-30,"y":1},{"x":-182,"y":-50},{"x":-146,"y":203},{"x":-57,"y":41},{"x":-42,"y":-6},{"x":-68,"y":63},{"x":-107,"y":19},{"x":-30,"y":34},{"x":16,"y":60},{"x":-103,"y":100},{"x":32,"y":155}],"type":"admin"},{"arc":[{"x":96483,"y":85057},{"x":-30,"y":90},{"x":-52,"y":17},{"x":-99,"y":96},{"x":-69,"y":8},{"x":-76,"y":108},{"x":-5,"y":65},{"x":-95,"y":52}],"type":"area"},{"arc":[{"x":96057,"y":85493},{"x":-59,"y":-53},{"x":-157,"y":-38},{"x":30,"y":-45}],"type":"area"},{"arc":[{"x":95871,"y":85357},{"x":30,"y":-11},{"x":21,"y":-84},{"x":56,"y":-26},{"x":35,"y":-80}],"type":"admin"},{"arc":[{"x":96013,"y":85156},{"x":49,"y":-14},{"x":27,"y":-45},{"x":-38,"y":-12},{"x":8,"y":-44},{"x":-49,"y":-80},{"x":-41,"y":-8},{"x":5,"y":-79},{"x":-34,"y":-39},{"x":-15,"y":-112},{"x":50,"y":-54},{"x":-15,"y":-49},{"x":47,"y":-51},{"x":28,"y":1},{"x":154,"y":-198},{"x":79,"y":-49},{"x":83,"y":-104},{"x":-35,"y":-78},{"x":-95,"y":-29},{"x":-130,"y":-104},{"x":-69,"y":-16},{"x":-10,"y":-31},{"x":79,"y":-17},{"x":31,"y":-54},{"x":68,"y":8},{"x":88,"y":-37},{"x":92,"y":-78},{"x":66,"y":-119},{"x":92,"y":35},{"x":10,"y":-57},{"x":88,"y":34},{"x":42,"y":-32},{"x":38,"y":20},{"x":45,"y":-20},{"x":65,"y":57},{"x":87,"y":-98},{"x":81,"y":-17},{"x":-2,"y":-39},{"x":39,"y":-13},{"x":149,"y":48},{"x":284,"y":-9},{"x":19,"y":-19},{"x":-24,"y":-55},{"x":29,"y":-33},{"x":-42,"y":-89},{"x":67,"y":-75},{"x":-19,"y":-38},{"x":23,"y":-87},{"x":87,"y":-8},{"x":74,"y":62},{"x":40,"y":-10},{"x":-25,"y":58},{"x":73,"y":34},{"x":84,"y":-17},{"x":29,"y":-32},{"x":-20,"y":-69},{"x":76,"y":-92},{"x":-42,"y":-55},{"x":56,"y":-363},{"x":68,"y":-58},{"x":92,"y":-15},{"x":13,"y":-58},{"x":63,"y":-14},{"x":7,"y":-24},{"x":-53,"y":-55},{"x":4,"y":-84},{"x":69,"y":-110},{"x":-13,"y":-62}],"type":"admin"},{"arc":[{"x":98189,"y":82205},{"x":99,"y":-30},{"x":32,"y":-50},{"x":158,"y":10},{"x":15,"y":40},{"x":29,"y":4},{"x":97,"y":-31},{"x":41,"y":-41},{"x":74,"y":138},{"x":164,"y":-6},{"x":212,"y":71},{"x":83,"y":85},{"x":-18,"y":87},{"x":30,"y":28}],"type":"admin"},{"arc":[{"x":99205,"y":82510},{"x":-10,"y":154},{"x":71,"y":208},{"x":-134,"y":338},{"x":56,"y":188},{"x":57,"y":-5},{"x":229,"y":135},{"x":105,"y":78},{"x":-9,"y":66},{"x":58,"y":-37},{"x":82,"y":65},{"x":72,"y":-6},{"x":-30,"y":18},{"x":12,"y":105},{"x":-97,"y":61},{"x":-4,"y":37},{"x":-70,"y":69},{"x":3,"y":106},{"x":-92,"y":170},{"x":36,"y":47},{"x":-25,"y":92},{"x":40,"y":2},{"x":92,"y":70},{"x":45,"y":-5},{"x":-16,"y":-38},{"x":88,"y":-85},{"x":0,"y":-32},{"x":103,"y":7}],"type":"admin"},{"arc":[{"x":99867,"y":84318},{"x":-5,"y":98},{"x":-86,"y":39},{"x":25,"y":75},{"x":43,"y":1},{"x":-13,"y":56},{"x":34,"y":0},{"x":61,"y":125},{"x":-12,"y":22},{"x":37,"y":31},{"x":-33,"y":77},{"x":27,"y":54},{"x":-18,"y":83},{"x":-71,"y":-3},{"x":30,"y":42},{"x":-8,"y":140},{"x":75,"y":55},{"x":-65,"y":243}],"type":"area"},{"arc":[{"x":109182,"y":91861},{"x":-50,"y":8},{"x":14,"y":38},{"x":-33,"y":-10},{"x":-8,"y":85},{"x":38,"y":27},{"x":-7,"y":39},{"x":-61,"y":3},{"x":-48,"y":-79},{"x":-45,"y":10},{"x":-11,"y":-65},{"x":-23,"y":32},{"x":24,"y":-147},{"x":47,"y":30},{"x":-11,"y":-44},{"x":27,"y":11},{"x":35,"y":-59},{"x":26,"y":4},{"x":-14,"y":76},{"x":15,"y":-21},{"x":26,"y":16},{"x":-14,"y":-44},{"x":20,"y":-12},{"x":19,"y":83},{"x":34,"y":19}],"type":"coastline"},{"arc":[{"x":109335,"y":92136},{"x":-48,"y":2},{"x":-6,"y":23},{"x":-15,"y":-34},{"x":49,"y":-29},{"x":20,"y":38}],"type":"coastline"},{"arc":[{"x":109472,"y":92248},{"x":-17,"y":14},{"x":-14,"y":-18},{"x":31,"y":4}],"type":"coastline"},{"arc":[{"x":110089,"y":92557},{"x":-83,"y":-88},{"x":-70,"y":-1},{"x":24,"y":-65},{"x":-29,"y":-72},{"x":15,"y":-23},{"x":-39,"y":-37},{"x":-93,"y":26},{"x":-14,"y":44},{"x":-84,"y":2},{"x":57,"y":-96},{"x":-16,"y":-34},{"x":37,"y":21},{"x":-6,"y":-45},{"x":-43,"y":-2},{"x":2,"y":37},{"x":-58,"y":-69},{"x":-84,"y":-9},{"x":-54,"y":29},{"x":-10,"y":64},{"x":-36,"y":-16},{"x":-26,"y":30},{"x":-6,"y":-35},{"x":-49,"y":-20},{"x":37,"y":-18},{"x":-17,"y":-27},{"x":-25,"y":13},{"x":7,"y":-24},{"x":-34,"y":6},{"x":8,"y":-78},{"x":23,"y":7},{"x":22,"y":-54},{"x":-11,"y":46},{"x":44,"y":-7},{"x":-7,"y":-17},{"x":8,"y":16},{"x":10,"y":-15},{"x":-8,"y":-22},{"x":-29,"y":10},{"x":50,"y":-12},{"x":6,"y":-79},{"x":-1,"y":55},{"x":24,"y":-33},{"x":28,"y":4},{"x":-36,"y":-21},{"x":31,"y":-13},{"x":18,"y":44},{"x":20,"y":-33},{"x":-31,"y":-11},{"x":-36,"y":-63},{"x":25,"y":37},{"x":25,"y":-5},{"x":-31,"y":-60},{"x":-70,"y":39},{"x":-8,"y":-59},{"x":-25,"y":34},{"x":-16,"y":-21},{"x":-32,"y":23},{"x":-16,"y":-31},{"x":-30,"y":8},{"x":4,"y":-17},{"x":-35,"y":-23},{"x":-11,"y":-31},{"x":12,"y":26},{"x":14,"y":-6},{"x":-8,"y":-23},{"x":22,"y":22},{"x":-5,"y":-31},{"x":-47,"y":-77},{"x":-42,"y":-10},{"x":-26,"y":-76},{"x":-36,"y":6},{"x":-19,"y":-22},{"x":-33,"y":27},{"x":-23,"y":-27},{"x":-57,"y":14},{"x":-29,"y":-24},{"x":25,"y":-47},{"x":88,"y":-15},{"x":-10,"y":14},{"x":46,"y":9},{"x":3,"y":-92},{"x":-34,"y":4},{"x":-64,"y":-57},{"x":-107,"y":0},{"x":-21,"y":-29},{"x":46,"y":-24},{"x":-21,"y":-47},{"x":-51,"y":6},{"x":-25,"y":84},{"x":0,"y":-67},{"x":-61,"y":29},{"x":-35,"y":-39},{"x":-25,"y":18},{"x":35,"y":-152},{"x":-38,"y":59},{"x":-93,"y":13},{"x":9,"y":25},{"x":69,"y":-8},{"x":-10,"y":27},{"x":-34,"y":-2},{"x":51,"y":28},{"x":19,"y":61},{"x":-39,"y":34},{"x":-75,"y":-4},{"x":-19,"y":-46},{"x":-36,"y":2},{"x":-22,"y":-44},{"x":-53,"y":0},{"x":-29,"y":-37},{"x":-66,"y":15},{"x":-1,"y":20},{"x":-36,"y":-12},{"x":-49,"y":-58},{"x":13,"y":-50},{"x":-99,"y":26},{"x":-18,"y":-81},{"x":-123,"y":-54},{"x":-26,"y":-208},{"x":-12,"y":14},{"x":34,"y":-75},{"x":-22,"y":-40},{"x":-293,"y":-199},{"x":-311,"y":-111},{"x":-118,"y":-2},{"x":-46,"y":23},{"x":6,"y":18},{"x":-74,"y":19},{"x":-31,"y":-23},{"x":-18,"y":40},{"x":-43,"y":-65},{"x":-39,"y":29},{"x":-2,"y":-33},{"x":-49,"y":16},{"x":-21,"y":80},{"x":46,"y":-24},{"x":14,"y":14},{"x":15,"y":-37},{"x":21,"y":50},{"x":-58,"y":17},{"x":-1,"y":35},{"x":-43,"y":-22},{"x":48,"y":36},{"x":-60,"y":-7},{"x":-5,"y":27},{"x":109,"y":-9},{"x":3,"y":-25},{"x":42,"y":29},{"x":-23,"y":110},{"x":48,"y":34},{"x":-73,"y":-35},{"x":-42,"y":13},{"x":-103,"y":-23},{"x":-22,"y":144},{"x":-53,"y":43}],"type":"coastline"},{"arc":[{"x":106936,"y":90927},{"x":20,"y":-64},{"x":-38,"y":-64},{"x":42,"y":-49},{"x":-6,"y":-35},{"x":-45,"y":-58},{"x":14,"y":-79},{"x":-74,"y":-111},{"x":97,"y":-75},{"x":-5,"y":-81},{"x":134,"y":-47},{"x":50,"y":-74},{"x":0,"y":-58},{"x":43,"y":-4},{"x":15,"y":-72},{"x":40,"y":-16},{"x":4,"y":-86},{"x":34,"y":-42},{"x":-39,"y":-31},{"x":-36,"y":-114},{"x":50,"y":-35},{"x":108,"y":-6},{"x":58,"y":-75},{"x":-99,"y":-132},{"x":74,"y":-31},{"x":67,"y":-77},{"x":81,"y":26},{"x":40,"y":-20},{"x":18,"y":-83},{"x":-45,"y":-31},{"x":15,"y":-53},{"x":-80,"y":-31},{"x":-34,"y":-89},{"x":19,"y":-30},{"x":-30,"y":-28},{"x":28,"y":-92},{"x":74,"y":-96},{"x":-40,"y":-39}],"type":"admin"},{"arc":[{"x":107490,"y":88845},{"x":74,"y":-117},{"x":58,"y":-25},{"x":1,"y":-35},{"x":77,"y":-49},{"x":25,"y":-105},{"x":99,"y":-168},{"x":-2,"y":-63},{"x":-116,"y":-129},{"x":20,"y":-160},{"x":-45,"y":-56},{"x":21,"y":-59},{"x":-18,"y":-27},{"x":52,"y":-20}],"type":"admin"},{"arc":[{"x":107736,"y":87832},{"x":66,"y":37},{"x":48,"y":82},{"x":98,"y":6},{"x":23,"y":45},{"x":-20,"y":25},{"x":52,"y":-20},{"x":84,"y":26},{"x":78,"y":-23},{"x":51,"y":42},{"x":108,"y":-15},{"x":97,"y":38},{"x":159,"y":-37},{"x":89,"y":-142},{"x":48,"y":9},{"x":42,"y":50},{"x":35,"y":-38},{"x":142,"y":36},{"x":86,"y":-65},{"x":28,"y":58},{"x":50,"y":-5},{"x":53,"y":90},{"x":92,"y":-9},{"x":62,"y":50},{"x":114,"y":10},{"x":48,"y":99},{"x":99,"y":92},{"x":-1,"y":44},{"x":74,"y":46},{"x":156,"y":27},{"x":28,"y":24},{"x":167,"y":-38},{"x":55,"y":70},{"x":75,"y":23},{"x":32,"y":-28},{"x":68,"y":11},{"x":44,"y":-69},{"x":59,"y":12},{"x":31,"y":55},{"x":84,"y":13},{"x":8,"y":193}],"type":"admin"},{"arc":[{"x":94343,"y":87794},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":94344,"y":87790},{"x":-1,"y":4}],"type":"coastline"},{"arc":[{"x":94859,"y":87645},{"x":-17,"y":41},{"x":-35,"y":-25},{"x":-106,"y":46},{"x":-10,"y":-29},{"x":-41,"y":-6},{"x":-39,"y":28},{"x":-141,"y":14},{"x":204,"y":-143},{"x":-1,"y":21},{"x":55,"y":-21},{"x":131,"y":74}],"type":"coastline"},{"arc":[{"x":94821,"y":87456},{"x":-11,"y":-15},{"x":67,"y":47},{"x":-56,"y":-32}],"type":"coastline"},{"arc":[{"x":94907,"y":87436},{"x":-26,"y":40},{"x":22,"y":-64},{"x":4,"y":24}],"type":"coastline"},{"arc":[{"x":97119,"y":88240},{"x":-35,"y":-87},{"x":-45,"y":24},{"x":-80,"y":-37},{"x":-58,"y":46},{"x":-8,"y":-39},{"x":-39,"y":8},{"x":-33,"y":-41},{"x":-49,"y":31},{"x":-12,"y":72},{"x":-78,"y":29},{"x":-84,"y":-191},{"x":-66,"y":55},{"x":-9,"y":-39},{"x":-53,"y":2},{"x":-20,"y":56},{"x":20,"y":43},{"x":-114,"y":18},{"x":-27,"y":-59},{"x":-12,"y":47},{"x":-64,"y":14},{"x":8,"y":35},{"x":-99,"y":24},{"x":18,"y":-115},{"x":-68,"y":-21},{"x":-27,"y":-35},{"x":-75,"y":97},{"x":-116,"y":-57},{"x":10,"y":-40},{"x":-95,"y":-65},{"x":-102,"y":-239},{"x":-74,"y":-54},{"x":-175,"y":-92},{"x":-140,"y":48},{"x":-8,"y":-29},{"x":-97,"y":13},{"x":-88,"y":-65},{"x":44,"y":22},{"x":65,"y":-20},{"x":-11,"y":-29},{"x":24,"y":55},{"x":38,"y":11},{"x":42,"y":-45},{"x":33,"y":13},{"x":-20,"y":-33},{"x":22,"y":3},{"x":-21,"y":-17},{"x":21,"y":-11},{"x":-19,"y":-7},{"x":-24,"y":44},{"x":0,"y":-54},{"x":-42,"y":0},{"x":22,"y":33},{"x":-25,"y":-2},{"x":-21,"y":-37},{"x":-25,"y":35},{"x":-11,"y":-39},{"x":-64,"y":-22},{"x":-16,"y":-55},{"x":-69,"y":68},{"x":-21,"y":-98},{"x":16,"y":24},{"x":20,"y":-35},{"x":-34,"y":-33},{"x":-7,"y":36},{"x":-14,"y":-54},{"x":-133,"y":-3},{"x":0,"y":58},{"x":-24,"y":2},{"x":16,"y":-43},{"x":-32,"y":2},{"x":-16,"y":16},{"x":28,"y":48},{"x":-37,"y":-19},{"x":-11,"y":16},{"x":11,"y":-17},{"x":-46,"y":-36},{"x":0,"y":25},{"x":-27,"y":2},{"x":-33,"y":-32},{"x":24,"y":-37},{"x":-98,"y":6},{"x":-30,"y":62},{"x":-22,"y":-26},{"x":-29,"y":10},{"x":-24,"y":-38},{"x":-76,"y":19},{"x":59,"y":-57},{"x":46,"y":2},{"x":-26,"y":-60},{"x":-70,"y":42},{"x":6,"y":19},{"x":-14,"y":-40},{"x":-69,"y":-11},{"x":-47,"y":125},{"x":-48,"y":11},{"x":-57,"y":-36}],"type":"coastline"},{"arc":[{"x":94249,"y":87360},{"x":-44,"y":-53},{"x":-5,"y":-63},{"x":46,"y":-86},{"x":-57,"y":-77},{"x":4,"y":-67},{"x":30,"y":-22},{"x":34,"y":-179},{"x":48,"y":1},{"x":46,"y":-36},{"x":-12,"y":-37},{"x":-91,"y":-65},{"x":40,"y":-98},{"x":-45,"y":-63},{"x":96,"y":-60},{"x":62,"y":14},{"x":71,"y":-98},{"x":91,"y":-9},{"x":111,"y":42},{"x":32,"y":-8},{"x":15,"y":-66},{"x":50,"y":-12},{"x":12,"y":-42},{"x":36,"y":-1},{"x":25,"y":35},{"x":64,"y":-38},{"x":52,"y":14},{"x":50,"y":-61},{"x":-12,"y":-41},{"x":67,"y":-35},{"x":120,"y":88},{"x":40,"y":-46},{"x":55,"y":8},{"x":35,"y":-114},{"x":101,"y":-48},{"x":52,"y":13},{"x":52,"y":-27},{"x":95,"y":47},{"x":138,"y":-6},{"x":122,"y":-109},{"x":42,"y":-91},{"x":11,"y":-59},{"x":-64,"y":-85},{"x":53,"y":-86},{"x":97,"y":-25},{"x":43,"y":-116}],"type":"area"},{"arc":[{"x":96483,"y":85057},{"x":192,"y":90},{"x":157,"y":149},{"x":7,"y":69},{"x":79,"y":103},{"x":-11,"y":32},{"x":80,"y":106},{"x":57,"y":-27},{"x":-10,"y":192},{"x":69,"y":53},{"x":81,"y":1},{"x":20,"y":36},{"x":43,"y":-13},{"x":30,"y":28},{"x":33,"y":210},{"x":171,"y":37},{"x":75,"y":57},{"x":110,"y":-16},{"x":56,"y":22}],"type":"admin"},{"arc":[{"x":102678,"y":84526},{"x":-10,"y":30},{"x":-104,"y":24},{"x":-83,"y":74},{"x":21,"y":94},{"x":-126,"y":31},{"x":27,"y":95},{"x":-25,"y":72},{"x":-66,"y":14},{"x":91,"y":91},{"x":-39,"y":88},{"x":-73,"y":-11},{"x":-2,"y":33}],"type":"admin"},{"arc":[{"x":102289,"y":85161},{"x":-80,"y":37},{"x":-155,"y":23},{"x":-25,"y":37},{"x":-154,"y":-26},{"x":-36,"y":45},{"x":-106,"y":34},{"x":-153,"y":-262},{"x":-113,"y":73},{"x":-145,"y":4},{"x":-112,"y":-102},{"x":-210,"y":5},{"x":-39,"y":-76},{"x":-86,"y":29},{"x":-121,"y":116},{"x":-185,"y":28},{"x":-44,"y":77},{"x":62,"y":6},{"x":-45,"y":45},{"x":20,"y":54},{"x":-57,"y":59},{"x":0,"y":72}],"type":"admin"},{"arc":[{"x":99867,"y":84318},{"x":-2,"y":-65},{"x":59,"y":-13},{"x":83,"y":-69},{"x":57,"y":-130},{"x":70,"y":-72},{"x":-15,"y":-87},{"x":-44,"y":-18},{"x":26,"y":-44},{"x":-65,"y":0},{"x":57,"y":-80},{"x":-18,"y":-57},{"x":-33,"y":-16},{"x":16,"y":-32},{"x":-38,"y":-22},{"x":35,"y":-53},{"x":-35,"y":5},{"x":-17,"y":-30},{"x":-31,"y":25},{"x":-38,"y":-57},{"x":48,"y":-4},{"x":90,"y":-119},{"x":104,"y":-11},{"x":33,"y":-47},{"x":-14,"y":-23},{"x":71,"y":-50},{"x":37,"y":12},{"x":41,"y":-54},{"x":-112,"y":-40},{"x":-149,"y":-117},{"x":-27,"y":35},{"x":-42,"y":-34},{"x":-161,"y":47},{"x":-66,"y":-32},{"x":39,"y":-197},{"x":-93,"y":-52},{"x":-84,"y":-234},{"x":-60,"y":-43},{"x":-72,"y":-11},{"x":-23,"y":-33},{"x":-286,"y":12}],"type":"admin"},{"arc":[{"x":99208,"y":82508},{"x":23,"y":-37},{"x":-26,"y":-97},{"x":26,"y":-40},{"x":136,"y":-57},{"x":37,"y":7},{"x":97,"y":-60},{"x":39,"y":7},{"x":37,"y":-43},{"x":76,"y":-5},{"x":14,"y":-44},{"x":73,"y":-56},{"x":-1,"y":-31},{"x":76,"y":-42},{"x":0,"y":-44}],"type":"admin"},{"arc":[{"x":99815,"y":81966},{"x":185,"y":104},{"x":195,"y":43},{"x":84,"y":145},{"x":56,"y":34},{"x":197,"y":-41},{"x":16,"y":-111},{"x":320,"y":57},{"x":99,"y":-59},{"x":174,"y":124},{"x":-25,"y":31},{"x":18,"y":198},{"x":-49,"y":92},{"x":79,"y":98},{"x":64,"y":29},{"x":63,"y":124},{"x":145,"y":15},{"x":30,"y":43},{"x":92,"y":34},{"x":68,"y":84},{"x":-14,"y":30},{"x":62,"y":2},{"x":-2,"y":58},{"x":29,"y":23},{"x":60,"y":-107},{"x":115,"y":-31},{"x":52,"y":11},{"x":91,"y":-63},{"x":92,"y":-15}],"type":"area"},{"arc":[{"x":104773,"y":89849},{"x":-24,"y":9},{"x":-2,"y":-19},{"x":26,"y":10}],"type":"coastline"},{"arc":[{"x":106033,"y":90555},{"x":-8,"y":19},{"x":3,"y":-38},{"x":5,"y":19}],"type":"coastline"},{"arc":[{"x":106442,"y":90128},{"x":-21,"y":40},{"x":-67,"y":-23},{"x":-44,"y":43},{"x":-75,"y":-69},{"x":-35,"y":-79},{"x":-48,"y":90},{"x":63,"y":15},{"x":124,"y":120},{"x":-20,"y":30},{"x":-47,"y":-3},{"x":-72,"y":-60},{"x":-25,"y":14},{"x":75,"y":131},{"x":31,"y":-19},{"x":117,"y":13},{"x":-92,"y":-7},{"x":-45,"y":53},{"x":-42,"y":-2},{"x":-5,"y":20},{"x":-15,"y":-24},{"x":-5,"y":22},{"x":-23,"y":-13},{"x":-2,"y":36},{"x":-84,"y":-37},{"x":26,"y":-177},{"x":-39,"y":-44},{"x":5,"y":-37},{"x":-23,"y":10},{"x":23,"y":140},{"x":-94,"y":77},{"x":69,"y":85},{"x":-32,"y":59},{"x":-17,"y":0},{"x":17,"y":-19},{"x":-24,"y":7},{"x":19,"y":-17},{"x":-24,"y":-18},{"x":-6,"y":20},{"x":-7,"y":-54},{"x":-36,"y":40},{"x":-23,"y":-165},{"x":-21,"y":19},{"x":-24,"y":-48},{"x":-11,"y":25},{"x":-14,"y":-77},{"x":36,"y":-96},{"x":-48,"y":2},{"x":13,"y":-33},{"x":-40,"y":-65},{"x":-342,"y":-113},{"x":-60,"y":6},{"x":8,"y":39},{"x":-25,"y":-26},{"x":9,"y":16},{"x":-55,"y":2},{"x":-34,"y":-74},{"x":-129,"y":-64},{"x":-38,"y":-1},{"x":-41,"y":36},{"x":-25,"y":-19},{"x":-2,"y":37},{"x":-41,"y":-11},{"x":-51,"y":22},{"x":-28,"y":-40},{"x":16,"y":-26},{"x":-47,"y":-47},{"x":31,"y":-36},{"x":-36,"y":27},{"x":-157,"y":-144},{"x":-239,"y":-117}],"type":"coastline"},{"arc":[{"x":104524,"y":89520},{"x":-82,"y":-53},{"x":76,"y":15},{"x":43,"y":-87},{"x":-158,"y":-93},{"x":48,"y":-75},{"x":60,"y":-24},{"x":-7,"y":-39},{"x":106,"y":24},{"x":55,"y":-34},{"x":49,"y":1},{"x":32,"y":-78},{"x":-34,"y":-29},{"x":-24,"y":-185},{"x":-57,"y":-15},{"x":-63,"y":-59},{"x":-180,"y":-235},{"x":3,"y":-42},{"x":64,"y":-32},{"x":-27,"y":-54},{"x":49,"y":-32},{"x":86,"y":11},{"x":123,"y":-124},{"x":-32,"y":-68},{"x":-80,"y":-38},{"x":45,"y":-161},{"x":-95,"y":-217}],"type":"admin"},{"arc":[{"x":104524,"y":87797},{"x":33,"y":-158},{"x":53,"y":-62},{"x":-4,"y":-114},{"x":54,"y":-99},{"x":-96,"y":-215},{"x":80,"y":10},{"x":8,"y":68},{"x":71,"y":-5},{"x":131,"y":-213},{"x":-34,"y":-79}],"type":"admin"},{"arc":[{"x":104820,"y":86930},{"x":85,"y":-33},{"x":188,"y":36},{"x":16,"y":28},{"x":85,"y":0},{"x":12,"y":29},{"x":-46,"y":21},{"x":74,"y":-8},{"x":60,"y":26},{"x":-7,"y":69},{"x":-55,"y":48},{"x":-22,"y":70},{"x":-54,"y":22},{"x":-15,"y":74},{"x":95,"y":78},{"x":33,"y":112},{"x":84,"y":-2},{"x":229,"y":97},{"x":4,"y":269},{"x":37,"y":36},{"x":-1,"y":114},{"x":80,"y":56},{"x":19,"y":44},{"x":-17,"y":56},{"x":32,"y":104},{"x":52,"y":51},{"x":82,"y":13},{"x":52,"y":58},{"x":91,"y":-21},{"x":120,"y":10},{"x":35,"y":-24},{"x":43,"y":28},{"x":51,"y":-77},{"x":79,"y":6},{"x":44,"y":65},{"x":-17,"y":24},{"x":38,"y":62},{"x":18,"y":162}],"type":"admin"},{"arc":[{"x":106424,"y":88633},{"x":-93,"y":48},{"x":12,"y":62},{"x":-75,"y":84},{"x":2,"y":101},{"x":-88,"y":30},{"x":91,"y":114},{"x":10,"y":187},{"x":26,"y":1},{"x":6,"y":29},{"x":32,"y":-8},{"x":117,"y":102},{"x":70,"y":-8},{"x":27,"y":76},{"x":112,"y":39},{"x":-56,"y":141},{"x":-61,"y":-1},{"x":-66,"y":70},{"x":-5,"y":41},{"x":68,"y":70},{"x":-120,"y":103},{"x":9,"y":214}],"type":"admin"},{"arc":[{"x":93775,"y":87314},{"x":-103,"y":-9},{"x":26,"y":-52},{"x":39,"y":0},{"x":38,"y":61}],"type":"coastline"},{"arc":[{"x":94068,"y":87432},{"x":-19,"y":22},{"x":-65,"y":0},{"x":51,"y":-60},{"x":33,"y":38}],"type":"coastline"},{"arc":[{"x":94343,"y":87794},{"x":1,"y":-4}],"type":"coastline"},{"arc":[{"x":94249,"y":87360},{"x":22,"y":40},{"x":-66,"y":-35},{"x":12,"y":46},{"x":-77,"y":16},{"x":-24,"y":-36},{"x":-51,"y":-9},{"x":-13,"y":-101},{"x":-83,"y":-127},{"x":-42,"y":-9},{"x":-158,"y":10},{"x":-83,"y":93},{"x":-44,"y":-18},{"x":-123,"y":22},{"x":-102,"y":-16},{"x":-44,"y":-45},{"x":-53,"y":-11},{"x":-17,"y":-88},{"x":-52,"y":-42},{"x":-39,"y":-99},{"x":-86,"y":-24},{"x":-84,"y":46},{"x":1,"y":-119},{"x":-30,"y":-18},{"x":-23,"y":12},{"x":28,"y":41},{"x":-34,"y":-46},{"x":-164,"y":17},{"x":-120,"y":163},{"x":-69,"y":-15},{"x":-61,"y":-70},{"x":-9,"y":-70},{"x":101,"y":-176},{"x":205,"y":-61},{"x":15,"y":20},{"x":59,"y":-54},{"x":-38,"y":-31},{"x":19,"y":10},{"x":-11,"y":-44},{"x":-20,"y":33},{"x":17,"y":-38},{"x":-37,"y":-55},{"x":58,"y":-53},{"x":-105,"y":-100},{"x":-9,"y":-295},{"x":114,"y":-113},{"x":164,"y":-38},{"x":33,"y":-39},{"x":128,"y":14},{"x":60,"y":84},{"x":77,"y":-20},{"x":52,"y":-99},{"x":-78,"y":-60},{"x":94,"y":-12},{"x":108,"y":-79},{"x":60,"y":-137},{"x":2,"y":38},{"x":38,"y":5},{"x":-15,"y":-28},{"x":16,"y":29},{"x":25,"y":-17},{"x":-27,"y":-31},{"x":66,"y":6},{"x":9,"y":-57},{"x":-68,"y":-5},{"x":78,"y":-5},{"x":23,"y":-182},{"x":-29,"y":-39},{"x":-52,"y":4},{"x":-3,"y":-40},{"x":26,"y":-41},{"x":86,"y":-24},{"x":-1,"y":-22},{"x":-39,"y":3},{"x":51,"y":-31},{"x":-1,"y":-34},{"x":29,"y":2}],"type":"coastline"},{"arc":[{"x":93841,"y":85056},{"x":45,"y":29},{"x":115,"y":15},{"x":122,"y":-14},{"x":126,"y":81},{"x":33,"y":-21},{"x":41,"y":11},{"x":80,"y":93},{"x":69,"y":187},{"x":77,"y":38},{"x":172,"y":8},{"x":93,"y":-45},{"x":35,"y":18},{"x":65,"y":-32},{"x":36,"y":11},{"x":102,"y":-83},{"x":83,"y":111},{"x":201,"y":60},{"x":192,"y":-81},{"x":127,"y":-115},{"x":67,"y":-13},{"x":91,"y":50},{"x":58,"y":-7}],"type":"admin"},{"arc":[{"x":104951,"y":85454},{"x":-198,"y":244},{"x":-3,"y":65},{"x":58,"y":66},{"x":5,"y":147},{"x":-43,"y":72},{"x":-44,"y":1},{"x":-74,"y":67},{"x":-83,"y":175},{"x":-8,"y":79}],"type":"admin"},{"arc":[{"x":104561,"y":86370},{"x":-144,"y":145},{"x":-3,"y":44},{"x":-142,"y":61},{"x":-40,"y":99},{"x":-92,"y":63},{"x":49,"y":98},{"x":-57,"y":166},{"x":-124,"y":56},{"x":-21,"y":-79},{"x":-66,"y":-4},{"x":-48,"y":47},{"x":-144,"y":30},{"x":-384,"y":347},{"x":-84,"y":42},{"x":-72,"y":1},{"x":-57,"y":47},{"x":-43,"y":-16},{"x":-65,"y":21},{"x":-9,"y":44},{"x":-148,"y":101},{"x":-147,"y":2},{"x":-34,"y":77},{"x":-105,"y":28},{"x":-88,"y":92},{"x":-58,"y":171},{"x":-78,"y":-58}],"type":"admin"},{"arc":[{"x":102357,"y":87995},{"x":-88,"y":-15}],"type":"admin"},{"arc":[{"x":102269,"y":87980},{"x":-76,"y":-11},{"x":-156,"y":-123},{"x":-90,"y":-113},{"x":-33,"y":7},{"x":-71,"y":-53},{"x":-76,"y":-16},{"x":-60,"y":-68},{"x":-73,"y":2},{"x":115,"y":62},{"x":49,"y":56},{"x":-97,"y":40},{"x":-150,"y":-90},{"x":-37,"y":79},{"x":-40,"y":26},{"x":-40,"y":-19},{"x":-54,"y":91},{"x":-21,"y":-23},{"x":-3,"y":50}],"type":"admin"},{"arc":[{"x":100883,"y":87398},{"x":19,"y":-48},{"x":-25,"y":-95},{"x":109,"y":-105},{"x":36,"y":-193},{"x":146,"y":-139},{"x":74,"y":-7},{"x":94,"y":-99},{"x":86,"y":-9},{"x":46,"y":-35},{"x":-49,"y":-38},{"x":79,"y":-95},{"x":29,"y":-109},{"x":30,"y":-2},{"x":11,"y":-83},{"x":26,"y":1},{"x":119,"y":-107},{"x":40,"y":-16},{"x":35,"y":19},{"x":111,"y":-81},{"x":-12,"y":-198},{"x":56,"y":-116},{"x":280,"y":-193},{"x":7,"y":-79},{"x":-39,"y":-56},{"x":41,"y":-56},{"x":75,"y":-19},{"x":15,"y":-41}],"type":"admin"},{"arc":[{"x":102322,"y":85399},{"x":107,"y":-45},{"x":74,"y":18},{"x":60,"y":65},{"x":-15,"y":142},{"x":199,"y":41},{"x":29,"y":20},{"x":-12,"y":28},{"x":64,"y":30},{"x":-75,"y":171},{"x":41,"y":66},{"x":-44,"y":107},{"x":97,"y":112},{"x":78,"y":20},{"x":17,"y":132},{"x":26,"y":9},{"x":80,"y":-39},{"x":58,"y":-74},{"x":86,"y":-35},{"x":42,"y":47},{"x":-16,"y":38},{"x":91,"y":46},{"x":39,"y":-37},{"x":-26,"y":-144},{"x":54,"y":-130},{"x":180,"y":-104},{"x":125,"y":-28},{"x":92,"y":-70},{"x":55,"y":-4},{"x":108,"y":-95},{"x":197,"y":54},{"x":32,"y":-65},{"x":57,"y":-21},{"x":120,"y":-156},{"x":81,"y":2},{"x":60,"y":-77},{"x":47,"y":-5},{"x":43,"y":-209}],"type":"admin"},{"arc":[{"x":104573,"y":85209},{"x":187,"y":15},{"x":50,"y":67},{"x":153,"y":73},{"x":-39,"y":71},{"x":27,"y":19}],"type":"admin"},{"arc":[{"x":99815,"y":81966},{"x":52,"y":-40},{"x":23,"y":-132},{"x":36,"y":-33},{"x":-19,"y":-260}],"type":"admin"},{"arc":[{"x":99907,"y":81501},{"x":109,"y":-115},{"x":2,"y":-58},{"x":129,"y":16},{"x":64,"y":-50},{"x":101,"y":-19},{"x":84,"y":-114},{"x":236,"y":-52},{"x":222,"y":-11},{"x":106,"y":-160},{"x":112,"y":-35},{"x":30,"y":-121},{"x":79,"y":-6},{"x":0,"y":-36},{"x":74,"y":-59},{"x":137,"y":-349}],"type":"admin"},{"arc":[{"x":101392,"y":80332},{"x":234,"y":1},{"x":109,"y":129},{"x":191,"y":48}],"type":"admin"},{"arc":[{"x":99205,"y":82510},{"x":3,"y":-2}],"type":"admin"},{"arc":[{"x":100416,"y":86186},{"x":54,"y":19},{"x":32,"y":45},{"x":60,"y":-6},{"x":13,"y":35},{"x":49,"y":-38},{"x":10,"y":34},{"x":150,"y":-11},{"x":109,"y":-101},{"x":26,"y":17},{"x":121,"y":-83},{"x":-8,"y":-46},{"x":70,"y":-36},{"x":-48,"y":-46},{"x":44,"y":-30},{"x":-16,"y":-18},{"x":100,"y":-56},{"x":169,"y":-202},{"x":37,"y":10},{"x":105,"y":-38},{"x":173,"y":-106},{"x":123,"y":-9},{"x":22,"y":-53},{"x":126,"y":-86},{"x":209,"y":-21},{"x":115,"y":24},{"x":53,"y":-32}],"type":"area"},{"arc":[{"x":102314,"y":85352},{"x":8,"y":47}],"type":"admin"},{"arc":[{"x":102289,"y":85161},{"x":-19,"y":86},{"x":44,"y":105}],"type":"admin"},{"arc":[{"x":102643,"y":89018},{"x":-184,"y":-36},{"x":-136,"y":1},{"x":-567,"y":-208}],"type":"coastline"},{"arc":[{"x":101756,"y":88775},{"x":108,"y":-140},{"x":128,"y":-24},{"x":27,"y":-37},{"x":26,"y":-118},{"x":-63,"y":-82},{"x":18,"y":-61},{"x":77,"y":-65},{"x":16,"y":-48},{"x":68,"y":-5},{"x":55,"y":-42},{"x":53,"y":-173}],"type":"area"},{"arc":[{"x":102357,"y":87995},{"x":-32,"y":135},{"x":86,"y":32},{"x":2,"y":40},{"x":107,"y":110},{"x":99,"y":22},{"x":-28,"y":90},{"x":33,"y":-10},{"x":79,"y":79}],"type":"area"},{"arc":[{"x":102703,"y":88493},{"x":-12,"y":79},{"x":-73,"y":130},{"x":205,"y":62},{"x":-40,"y":70},{"x":-40,"y":-13},{"x":-25,"y":72},{"x":-86,"y":61},{"x":11,"y":64}],"type":"area"},{"arc":[{"x":101756,"y":88775},{"x":-519,"y":-128}],"type":"coastline"},{"arc":[{"x":104595,"y":84445},{"x":69,"y":167},{"x":-63,"y":82},{"x":-42,"y":1},{"x":-23,"y":32},{"x":39,"y":47},{"x":29,"y":239},{"x":-148,"y":122},{"x":117,"y":74}],"type":"area"},{"arc":[{"x":104524,"y":87797},{"x":-86,"y":6},{"x":-30,"y":-22},{"x":-121,"y":15},{"x":-46,"y":41},{"x":-51,"y":12},{"x":-35,"y":-20},{"x":-85,"y":47},{"x":-124,"y":-5},{"x":-40,"y":28},{"x":-80,"y":-61},{"x":-106,"y":92}],"type":"area"},{"arc":[{"x":103720,"y":87930},{"x":-60,"y":49},{"x":-39,"y":-18},{"x":-40,"y":34},{"x":-136,"y":-27},{"x":-68,"y":35},{"x":-111,"y":-18},{"x":-85,"y":52},{"x":-49,"y":-5},{"x":7,"y":103},{"x":-45,"y":59},{"x":-142,"y":80},{"x":-7,"y":46},{"x":-66,"y":-4},{"x":-111,"y":52},{"x":26,"y":28},{"x":-24,"y":-1},{"x":-67,"y":98}],"type":"area"},{"arc":[{"x":104561,"y":86370},{"x":81,"y":188},{"x":80,"y":41},{"x":4,"y":139},{"x":43,"y":39},{"x":11,"y":91},{"x":41,"y":9},{"x":-1,"y":53}],"type":"area"},{"arc":[{"x":103662,"y":89324},{"x":-55,"y":-3},{"x":-212,"y":-104},{"x":-354,"y":-102},{"x":-176,"y":-22},{"x":-64,"y":31},{"x":61,"y":-31},{"x":-50,"y":-12},{"x":0,"y":27},{"x":-27,"y":-41},{"x":-18,"y":39},{"x":19,"y":31},{"x":-21,"y":-30},{"x":16,"y":-35},{"x":-138,"y":-54}],"type":"coastline"},{"arc":[{"x":103720,"y":87930},{"x":44,"y":74},{"x":22,"y":199},{"x":33,"y":19},{"x":71,"y":-19},{"x":15,"y":23},{"x":38,"y":-56},{"x":54,"y":-20},{"x":-27,"y":127},{"x":-84,"y":11},{"x":13,"y":52},{"x":-79,"y":47},{"x":-89,"y":582},{"x":-93,"y":55},{"x":-34,"y":-19},{"x":34,"y":-5},{"x":3,"y":-64},{"x":-47,"y":-25},{"x":-50,"y":64},{"x":74,"y":93},{"x":74,"y":13},{"x":-50,"y":78},{"x":10,"y":120},{"x":-68,"y":-13},{"x":19,"y":45},{"x":49,"y":-19},{"x":10,"y":32}],"type":"area"},{"arc":[{"x":104524,"y":89520},{"x":-423,"y":-148},{"x":-152,"y":-9},{"x":-74,"y":-51},{"x":-26,"y":1},{"x":-10,"y":35},{"x":7,"y":-34},{"x":-31,"y":16},{"x":-7,"y":23},{"x":28,"y":1},{"x":-24,"y":5},{"x":-150,"y":-35}],"type":"coastline"},{"arc":[{"x":106553,"y":90963},{"x":-30,"y":12},{"x":-9,"y":-25},{"x":20,"y":-13},{"x":19,"y":26}],"type":"coastline"},{"arc":[{"x":106602,"y":90319},{"x":-61,"y":21},{"x":-18,"y":-14},{"x":46,"y":-83},{"x":-19,"y":43},{"x":52,"y":33}],"type":"coastline"},{"arc":[{"x":106663,"y":90679},{"x":-21,"y":7},{"x":0,"y":-25},{"x":21,"y":18}],"type":"coastline"},{"arc":[{"x":106936,"y":90927},{"x":-27,"y":-23},{"x":-31,"y":30},{"x":6,"y":-47},{"x":-45,"y":0},{"x":-35,"y":-36},{"x":35,"y":-70},{"x":-84,"y":29},{"x":4,"y":-76},{"x":-61,"y":0},{"x":-45,"y":-83},{"x":5,"y":-53},{"x":-30,"y":30},{"x":-40,"y":-39},{"x":-4,"y":-79},{"x":58,"y":-71},{"x":-6,"y":-32},{"x":95,"y":29},{"x":38,"y":-17},{"x":-51,"y":-36},{"x":21,"y":-31},{"x":-54,"y":-16},{"x":7,"y":-31},{"x":8,"y":25},{"x":34,"y":1},{"x":9,"y":-18},{"x":-43,"y":-3},{"x":13,"y":-21},{"x":57,"y":16},{"x":-19,"y":-20},{"x":19,"y":-62},{"x":-99,"y":-38},{"x":-11,"y":43},{"x":-48,"y":6},{"x":47,"y":-7},{"x":9,"y":-40},{"x":-28,"y":-5},{"x":-9,"y":33},{"x":-29,"y":-20},{"x":-2,"y":43},{"x":-46,"y":-93},{"x":-112,"y":-17}],"type":"coastline"},{"arc":[{"x":106424,"y":88633},{"x":43,"y":61},{"x":102,"y":-31},{"x":64,"y":38},{"x":65,"y":-35},{"x":69,"y":12},{"x":40,"y":-19},{"x":56,"y":177},{"x":40,"y":39},{"x":56,"y":-45},{"x":43,"y":10},{"x":69,"y":-30},{"x":81,"y":76},{"x":84,"y":20},{"x":131,"y":-49},{"x":52,"y":-53},{"x":71,"y":41}],"type":"area"},{"arc":[{"x":108756,"y":86165},{"x":-140,"y":440}],"type":"area"},{"arc":[{"x":108616,"y":86605},{"x":-4,"y":60},{"x":-249,"y":137},{"x":44,"y":119},{"x":-51,"y":170},{"x":-133,"y":12},{"x":-41,"y":-20},{"x":-141,"y":82},{"x":-80,"y":-23},{"x":-17,"y":56},{"x":-155,"y":67}],"type":"area"},{"arc":[{"x":107789,"y":87265},{"x":-60,"y":-62},{"x":-231,"y":10},{"x":-23,"y":132},{"x":-67,"y":46},{"x":-70,"y":101},{"x":-277,"y":44},{"x":-59,"y":80},{"x":-118,"y":59},{"x":-60,"y":-4},{"x":-48,"y":-52},{"x":-67,"y":-25},{"x":-87,"y":-205},{"x":-77,"y":-50},{"x":-29,"y":9},{"x":6,"y":-61},{"x":149,"y":-13},{"x":168,"y":102},{"x":34,"y":-62},{"x":-36,"y":-85},{"x":20,"y":-12},{"x":53,"y":27},{"x":47,"y":-45},{"x":6,"y":-62},{"x":68,"y":-49},{"x":16,"y":-65},{"x":-43,"y":-79},{"x":32,"y":-26},{"x":46,"y":24},{"x":-19,"y":-90},{"x":49,"y":-73},{"x":-105,"y":-63},{"x":-111,"y":67},{"x":-32,"y":-29},{"x":38,"y":-69},{"x":60,"y":-26},{"x":2,"y":-106},{"x":113,"y":-69},{"x":-53,"y":-57},{"x":54,"y":-67},{"x":-15,"y":-70}],"type":"area"},{"arc":[{"x":107063,"y":86290},{"x":128,"y":1},{"x":99,"y":-64},{"x":13,"y":-119},{"x":-61,"y":-59},{"x":0,"y":-105},{"x":100,"y":-147},{"x":-32,"y":-130},{"x":139,"y":-48},{"x":49,"y":12},{"x":86,"y":-24},{"x":175,"y":57},{"x":61,"y":-5},{"x":9,"y":-32},{"x":124,"y":-45},{"x":7,"y":-37},{"x":106,"y":-16},{"x":33,"y":24}],"type":"area"},{"arc":[{"x":108099,"y":85553},{"x":76,"y":170},{"x":-46,"y":91},{"x":59,"y":39},{"x":5,"y":60},{"x":186,"y":107},{"x":47,"y":-8},{"x":200,"y":54},{"x":77,"y":-36},{"x":73,"y":15},{"x":-20,"y":120}],"type":"area"},{"arc":[{"x":107063,"y":86290},{"x":36,"y":-62},{"x":-123,"y":34},{"x":-325,"y":199},{"x":-189,"y":21},{"x":-82,"y":-297},{"x":-107,"y":-136},{"x":11,"y":-54},{"x":-172,"y":-28},{"x":-192,"y":51},{"x":-59,"y":-9},{"x":-88,"y":86},{"x":-18,"y":-24},{"x":-52,"y":1},{"x":-52,"y":-66},{"x":-76,"y":-31},{"x":-78,"y":-107},{"x":-35,"y":-169},{"x":-118,"y":-62},{"x":36,"y":-215},{"x":-206,"y":-10},{"x":-56,"y":22},{"x":-62,"y":72},{"x":-105,"y":-52}],"type":"area"},{"arc":[{"x":107985,"y":84485},{"x":-217,"y":65},{"x":-54,"y":96},{"x":-7,"y":83},{"x":70,"y":69},{"x":8,"y":260},{"x":76,"y":57},{"x":16,"y":45},{"x":95,"y":12},{"x":75,"y":47},{"x":69,"y":-32},{"x":62,"y":44},{"x":68,"y":3},{"x":-1,"y":85},{"x":31,"y":28},{"x":-33,"y":30},{"x":3,"y":85},{"x":-84,"y":28},{"x":-63,"y":63}],"type":"area"},{"arc":[{"x":107789,"y":87265},{"x":-22,"y":67},{"x":81,"y":163},{"x":-39,"y":92},{"x":-61,"y":37},{"x":-2,"y":53},{"x":41,"y":64},{"x":-51,"y":91}],"type":"area"},{"arc":[{"x":110925,"y":87754},{"x":-176,"y":-12},{"x":-37,"y":-39},{"x":-99,"y":-8},{"x":-56,"y":-62},{"x":-36,"y":11},{"x":-102,"y":-45},{"x":-26,"y":13},{"x":-177,"y":-66},{"x":-91,"y":14},{"x":-36,"y":-26},{"x":-90,"y":5},{"x":-44,"y":-56},{"x":-64,"y":-23},{"x":-18,"y":-45},{"x":-164,"y":-86},{"x":-18,"y":-124},{"x":-95,"y":-20},{"x":-43,"y":-63},{"x":-75,"y":-31},{"x":31,"y":-67},{"x":-28,"y":-168},{"x":77,"y":-89},{"x":39,"y":0},{"x":-25,"y":-43},{"x":-138,"y":-39},{"x":-66,"y":54},{"x":-68,"y":0},{"x":-32,"y":53},{"x":-54,"y":3},{"x":-61,"y":-22},{"x":-13,"y":-41},{"x":-61,"y":9},{"x":-68,"y":-53},{"x":-395,"y":-83}],"type":"area"},{"arc":[{"x":108756,"y":86165},{"x":349,"y":2},{"x":31,"y":-31},{"x":0,"y":-74},{"x":80,"y":-49},{"x":-55,"y":-139},{"x":96,"y":-38},{"x":64,"y":-99},{"x":40,"y":21},{"x":2,"y":61},{"x":90,"y":134},{"x":9,"y":-45},{"x":121,"y":-119},{"x":134,"y":154},{"x":6,"y":49},{"x":69,"y":37},{"x":96,"y":-8},{"x":64,"y":46},{"x":-1,"y":-34},{"x":109,"y":-78},{"x":9,"y":-126}],"type":"area"},{"arc":[{"x":94682,"y":78793},{"x":1,"y":-19},{"x":11,"y":44},{"x":-12,"y":-25}],"type":"coastline"},{"arc":[{"x":94757,"y":78811},{"x":28,"y":-62},{"x":30,"y":11},{"x":15,"y":-18},{"x":-35,"y":83},{"x":-38,"y":-14}],"type":"coastline"},{"arc":[{"x":95559,"y":78926},{"x":-41,"y":2},{"x":-5,"y":-40},{"x":36,"y":5},{"x":10,"y":33}],"type":"coastline"},{"arc":[{"x":95833,"y":80555},{"x":-45,"y":-39},{"x":44,"y":-6},{"x":24,"y":34},{"x":-23,"y":11}],"type":"coastline"},{"arc":[{"x":95049,"y":80368},{"x":-20,"y":-88}],"type":"area"},{"arc":[{"x":95029,"y":80280},{"x":-10,"y":-46},{"x":-9,"y":22},{"x":-31,"y":-6},{"x":18,"y":-106},{"x":-19,"y":33},{"x":-33,"y":-1},{"x":-10,"y":-37},{"x":-40,"y":2},{"x":-13,"y":-51},{"x":20,"y":-10},{"x":-21,"y":-18},{"x":29,"y":6},{"x":-18,"y":-19},{"x":41,"y":-8},{"x":4,"y":25},{"x":70,"y":-18},{"x":-68,"y":-31},{"x":51,"y":-32},{"x":10,"y":-46},{"x":-42,"y":-187},{"x":-42,"y":-25},{"x":-17,"y":-67},{"x":135,"y":-90},{"x":13,"y":-21},{"x":-62,"y":-42},{"x":39,"y":-33},{"x":76,"y":1},{"x":12,"y":-82},{"x":52,"y":7},{"x":102,"y":-49},{"x":-13,"y":-64},{"x":37,"y":-40},{"x":65,"y":4},{"x":-30,"y":-24},{"x":24,"y":-47},{"x":100,"y":-9},{"x":60,"y":57},{"x":-12,"y":32},{"x":51,"y":-22},{"x":9,"y":90},{"x":148,"y":56},{"x":151,"y":165},{"x":-4,"y":154},{"x":55,"y":112},{"x":29,"y":157},{"x":-34,"y":64},{"x":59,"y":38},{"x":-101,"y":67},{"x":46,"y":117},{"x":-130,"y":56},{"x":-39,"y":76},{"x":-30,"y":-21},{"x":-16,"y":32},{"x":-37,"y":1},{"x":-33,"y":74},{"x":-54,"y":-56},{"x":20,"y":-24},{"x":-30,"y":30},{"x":-42,"y":-4},{"x":12,"y":24},{"x":-51,"y":47},{"x":-51,"y":-11},{"x":-26,"y":-40},{"x":-27,"y":7},{"x":-8,"y":-67},{"x":-6,"y":24},{"x":-35,"y":-10},{"x":-25,"y":19},{"x":2,"y":30},{"x":-33,"y":19},{"x":-11,"y":-30},{"x":-38,"y":17},{"x":-42,"y":-48},{"x":-1,"y":58},{"x":-32,"y":-2},{"x":14,"y":59},{"x":-46,"y":26},{"x":19,"y":-33},{"x":-46,"y":-41},{"x":-35,"y":-102}],"type":"coastline"},{"arc":[{"x":96512,"y":79381},{"x":-154,"y":47},{"x":-19,"y":40},{"x":-32,"y":-10},{"x":-17,"y":-78},{"x":-69,"y":-53},{"x":-60,"y":-29},{"x":-186,"y":-22},{"x":-169,"y":-246},{"x":-127,"y":-25},{"x":-43,"y":-46},{"x":-29,"y":15},{"x":4,"y":-58},{"x":-57,"y":-37},{"x":-43,"y":5},{"x":-33,"y":45},{"x":-2,"y":-43},{"x":-66,"y":-7},{"x":3,"y":33},{"x":48,"y":-10},{"x":-81,"y":59},{"x":16,"y":-44},{"x":-72,"y":-16},{"x":38,"y":64},{"x":-107,"y":-9},{"x":-223,"y":-87},{"x":19,"y":-12},{"x":-27,"y":17},{"x":-34,"y":-21},{"x":4,"y":25},{"x":-5,"y":-25},{"x":-77,"y":-15},{"x":-11,"y":-87},{"x":42,"y":0},{"x":5,"y":-30},{"x":-55,"y":-29},{"x":-11,"y":60},{"x":-55,"y":-21},{"x":-29,"y":-29},{"x":26,"y":-33},{"x":-31,"y":36},{"x":-22,"y":-9},{"x":22,"y":8},{"x":25,"y":-40},{"x":-71,"y":-51},{"x":20,"y":44},{"x":-73,"y":-57},{"x":-13,"y":33},{"x":85,"y":26},{"x":-18,"y":44},{"x":0,"y":-19},{"x":-178,"y":-67},{"x":-155,"y":-45},{"x":-22,"y":15},{"x":49,"y":-136},{"x":-64,"y":-21},{"x":-47,"y":113},{"x":19,"y":74},{"x":-10,"y":-37},{"x":-53,"y":-6},{"x":-4,"y":33},{"x":-44,"y":-6},{"x":4,"y":-32},{"x":-118,"y":-14},{"x":8,"y":-60},{"x":71,"y":-15},{"x":23,"y":-36},{"x":-29,"y":-17},{"x":52,"y":-47},{"x":-43,"y":-10},{"x":-39,"y":63},{"x":-28,"y":1},{"x":31,"y":-47},{"x":-71,"y":25},{"x":-7,"y":-42},{"x":-37,"y":-4},{"x":-20,"y":44},{"x":-73,"y":18},{"x":-18,"y":141},{"x":51,"y":6},{"x":62,"y":126},{"x":-69,"y":-122},{"x":-141,"y":-17},{"x":23,"y":-172},{"x":42,"y":-18},{"x":-68,"y":-9},{"x":-15,"y":35},{"x":-33,"y":-28},{"x":-20,"y":6},{"x":33,"y":35},{"x":-48,"y":-29},{"x":-85,"y":42},{"x":-141,"y":-4},{"x":-136,"y":44},{"x":19,"y":14},{"x":-233,"y":15},{"x":-53,"y":52},{"x":-143,"y":44},{"x":32,"y":22},{"x":-39,"y":37},{"x":-16,"y":-30},{"x":-25,"y":15},{"x":27,"y":27},{"x":-1,"y":9},{"x":19,"y":-16},{"x":-21,"y":18},{"x":48,"y":76},{"x":-131,"y":84},{"x":-82,"y":-107},{"x":67,"y":-64},{"x":-84,"y":52},{"x":21,"y":38},{"x":-30,"y":17},{"x":28,"y":-18},{"x":-38,"y":-16},{"x":3,"y":24},{"x":-32,"y":-51},{"x":-658,"y":192},{"x":-141,"y":90},{"x":-60,"y":65},{"x":26,"y":30},{"x":-29,"y":-19},{"x":-25,"y":36}],"type":"coastline"},{"arc":[{"x":91849,"y":79100},{"x":-22,"y":-24},{"x":18,"y":-29},{"x":-90,"y":-79},{"x":8,"y":-80},{"x":-27,"y":-23},{"x":-27,"y":-165},{"x":19,"y":-68}],"type":"area"},{"arc":[{"x":91728,"y":78632},{"x":45,"y":6},{"x":163,"y":-119},{"x":143,"y":-1},{"x":16,"y":-56},{"x":95,"y":-46},{"x":-18,"y":-106},{"x":34,"y":-57},{"x":63,"y":-8},{"x":21,"y":-73},{"x":85,"y":-44},{"x":167,"y":50},{"x":78,"y":110},{"x":78,"y":18},{"x":89,"y":-18},{"x":178,"y":50},{"x":69,"y":-35},{"x":68,"y":14},{"x":96,"y":-138},{"x":65,"y":20},{"x":44,"y":-37},{"x":-2,"y":-29},{"x":70,"y":-36},{"x":148,"y":-36},{"x":119,"y":27},{"x":97,"y":-36},{"x":92,"y":9},{"x":-37,"y":-117},{"x":16,"y":-32},{"x":37,"y":2},{"x":-1,"y":-119},{"x":44,"y":-11},{"x":2,"y":-56},{"x":126,"y":-58}],"type":"area"},{"arc":[{"x":94018,"y":77670},{"x":93,"y":-7},{"x":77,"y":-45},{"x":42,"y":-62}],"type":"area"},{"arc":[{"x":94230,"y":77556},{"x":56,"y":-20},{"x":18,"y":43},{"x":144,"y":117},{"x":35,"y":-23},{"x":61,"y":33},{"x":32,"y":-27},{"x":135,"y":7},{"x":105,"y":-130},{"x":1,"y":-67},{"x":97,"y":-45},{"x":19,"y":-53},{"x":89,"y":12},{"x":41,"y":-23},{"x":7,"y":-60},{"x":74,"y":-8},{"x":-2,"y":-78},{"x":41,"y":-50},{"x":154,"y":-126},{"x":7,"y":39},{"x":22,"y":-27},{"x":33,"y":15},{"x":152,"y":129},{"x":7,"y":70},{"x":-44,"y":49},{"x":73,"y":17},{"x":30,"y":100},{"x":50,"y":0},{"x":-11,"y":36},{"x":27,"y":-19},{"x":22,"y":41},{"x":92,"y":-99},{"x":84,"y":37},{"x":4,"y":43},{"x":26,"y":-5},{"x":2,"y":84},{"x":66,"y":16},{"x":-22,"y":151},{"x":21,"y":82},{"x":-44,"y":76},{"x":114,"y":36},{"x":43,"y":-59},{"x":78,"y":-11},{"x":113,"y":-58},{"x":5,"y":-74},{"x":47,"y":-47},{"x":-46,"y":-48},{"x":99,"y":-29},{"x":90,"y":30},{"x":157,"y":4},{"x":-25,"y":-56},{"x":206,"y":-24},{"x":35,"y":-74},{"x":-4,"y":-77},{"x":137,"y":-1},{"x":28,"y":-65},{"x":59,"y":-7}],"type":"area"},{"arc":[{"x":97070,"y":77333},{"x":25,"y":75},{"x":170,"y":127},{"x":-4,"y":129},{"x":55,"y":98},{"x":-24,"y":78},{"x":-43,"y":17},{"x":-23,"y":54},{"x":10,"y":47}],"type":"area"},{"arc":[{"x":97236,"y":77958},{"x":-26,"y":25},{"x":9,"y":75},{"x":-67,"y":58},{"x":23,"y":42},{"x":-29,"y":53},{"x":81,"y":81},{"x":103,"y":-55},{"x":84,"y":8},{"x":23,"y":194},{"x":80,"y":115},{"x":-40,"y":333},{"x":-35,"y":48},{"x":10,"y":61},{"x":-89,"y":112},{"x":-40,"y":-16},{"x":-81,"y":35},{"x":-39,"y":-27},{"x":29,"y":-22},{"x":-15,"y":-89},{"x":-100,"y":-10},{"x":-25,"y":-99},{"x":-130,"y":24},{"x":-95,"y":129},{"x":-48,"y":24},{"x":-93,"y":197},{"x":-57,"y":25},{"x":-92,"y":-30},{"x":-55,"y":67},{"x":-10,"y":65}],"type":"area"},{"arc":[{"x":93164,"y":80909},{"x":-76,"y":-6},{"x":97,"y":18},{"x":-21,"y":-12}],"type":"coastline"},{"arc":[{"x":95001,"y":82634},{"x":-35,"y":-61},{"x":-100,"y":-38},{"x":-159,"y":45},{"x":-113,"y":-35},{"x":-44,"y":27},{"x":-41,"y":-6},{"x":-41,"y":48},{"x":-115,"y":-90},{"x":1,"y":-133},{"x":-40,"y":-23},{"x":-182,"y":7},{"x":-51,"y":71},{"x":-85,"y":20},{"x":-36,"y":58},{"x":-42,"y":8},{"x":15,"y":76},{"x":-59,"y":224},{"x":-336,"y":117}],"type":"admin"},{"arc":[{"x":93538,"y":82949},{"x":-36,"y":-29},{"x":-120,"y":20},{"x":-95,"y":-31},{"x":-90,"y":27},{"x":-35,"y":47},{"x":-74,"y":-13},{"x":-86,"y":40},{"x":-188,"y":-6},{"x":-4,"y":107},{"x":-51,"y":-26},{"x":-20,"y":-48},{"x":-85,"y":42}],"type":"admin"},{"arc":[{"x":92654,"y":83079},{"x":-41,"y":-13},{"x":17,"y":-68},{"x":-43,"y":26},{"x":14,"y":-35},{"x":51,"y":-9},{"x":-86,"y":-80},{"x":45,"y":6},{"x":-25,"y":-29},{"x":48,"y":-34},{"x":-32,"y":-8},{"x":0,"y":-31},{"x":-33,"y":25},{"x":-15,"y":-12},{"x":-20,"y":-147},{"x":40,"y":-8},{"x":-14,"y":-32},{"x":40,"y":-16},{"x":46,"y":-102},{"x":67,"y":-66},{"x":69,"y":-23},{"x":81,"y":29},{"x":71,"y":-4},{"x":77,"y":-129},{"x":-290,"y":19},{"x":-56,"y":69},{"x":-94,"y":22},{"x":3,"y":70},{"x":-39,"y":16},{"x":-526,"y":25},{"x":-147,"y":85},{"x":-102,"y":-3},{"x":-128,"y":61},{"x":-88,"y":-60},{"x":-240,"y":82},{"x":-86,"y":-13},{"x":-109,"y":72},{"x":-154,"y":-32},{"x":-75,"y":-96}],"type":"admin"},{"arc":[{"x":90880,"y":82636},{"x":38,"y":-100},{"x":97,"y":-46},{"x":41,"y":-80},{"x":130,"y":-51},{"x":-36,"y":-99},{"x":18,"y":-21},{"x":243,"y":-139},{"x":14,"y":-43},{"x":-23,"y":-28},{"x":39,"y":-69},{"x":23,"y":-12},{"x":50,"y":41},{"x":52,"y":-5},{"x":113,"y":53},{"x":101,"y":-68},{"x":22,"y":-168},{"x":98,"y":-114},{"x":-18,"y":-142},{"x":41,"y":-95},{"x":-52,"y":-52},{"x":-83,"y":-21},{"x":-2,"y":-70},{"x":-47,"y":-48}],"type":"admin"},{"arc":[{"x":91739,"y":81259},{"x":131,"y":-27},{"x":74,"y":54},{"x":45,"y":-10},{"x":86,"y":56},{"x":178,"y":34},{"x":94,"y":-58},{"x":32,"y":-61},{"x":34,"y":-14},{"x":3,"y":33},{"x":4,"y":-26},{"x":15,"y":21},{"x":98,"y":-20},{"x":45,"y":-31},{"x":5,"y":-35},{"x":56,"y":-9},{"x":59,"y":-63},{"x":35,"y":31},{"x":40,"y":-5},{"x":51,"y":-48},{"x":55,"y":3},{"x":27,"y":-59},{"x":64,"y":7},{"x":74,"y":-23},{"x":14,"y":-27},{"x":3,"y":23},{"x":45,"y":-10},{"x":-2,"y":-25},{"x":-1,"y":19},{"x":-37,"y":-12},{"x":40,"y":-47},{"x":23,"y":54},{"x":108,"y":-64}],"type":"coastline"},{"arc":[{"x":93237,"y":80920},{"x":85,"y":-12},{"x":26,"y":62},{"x":35,"y":6},{"x":59,"y":75},{"x":40,"y":181},{"x":-39,"y":33},{"x":121,"y":19},{"x":43,"y":75},{"x":79,"y":45},{"x":206,"y":23},{"x":40,"y":52},{"x":106,"y":43},{"x":190,"y":-12},{"x":87,"y":-50},{"x":19,"y":-90},{"x":131,"y":-100},{"x":38,"y":11},{"x":44,"y":63},{"x":135,"y":63},{"x":39,"y":-15},{"x":-7,"y":-45},{"x":111,"y":18},{"x":15,"y":82},{"x":68,"y":55},{"x":154,"y":-45},{"x":42,"y":62},{"x":30,"y":-13},{"x":13,"y":23},{"x":69,"y":-28},{"x":88,"y":46},{"x":89,"y":-29},{"x":30,"y":61},{"x":28,"y":-9},{"x":84,"y":48},{"x":71,"y":-8},{"x":44,"y":-37}],"type":"area"},{"arc":[{"x":95650,"y":81573},{"x":54,"y":249},{"x":51,"y":-4},{"x":43,"y":80}],"type":"area"},{"arc":[{"x":95798,"y":81898},{"x":-13,"y":45},{"x":-66,"y":40},{"x":-41,"y":124},{"x":-104,"y":157},{"x":-112,"y":75},{"x":-60,"y":2},{"x":-9,"y":56},{"x":-180,"y":109},{"x":-43,"y":106},{"x":-59,"y":57},{"x":-110,"y":-35}],"type":"area"},{"arc":[{"x":92238,"y":76282},{"x":-149,"y":96},{"x":-43,"y":57},{"x":-137,"y":51},{"x":18,"y":113},{"x":-21,"y":60},{"x":78,"y":103},{"x":-37,"y":48},{"x":61,"y":29},{"x":32,"y":49},{"x":-144,"y":60},{"x":-87,"y":-124},{"x":-67,"y":-15},{"x":-73,"y":30},{"x":-53,"y":-27},{"x":-161,"y":46},{"x":-217,"y":-7},{"x":-54,"y":19}],"type":"area"},{"arc":[{"x":91184,"y":76870},{"x":-1,"y":-58},{"x":51,"y":-13},{"x":-51,"y":-3},{"x":-25,"y":-79},{"x":54,"y":-103},{"x":23,"y":3},{"x":-10,"y":-75},{"x":36,"y":-7},{"x":-40,"y":-13},{"x":10,"y":-69},{"x":26,"y":-3},{"x":-31,"y":-50},{"x":12,"y":-44},{"x":135,"y":-115},{"x":-40,"y":-96},{"x":-48,"y":-34},{"x":-14,"y":-30},{"x":37,"y":43},{"x":40,"y":-3},{"x":6,"y":-25},{"x":-4,"y":25},{"x":35,"y":11},{"x":24,"y":-95},{"x":-35,"y":69},{"x":-6,"y":-66},{"x":-31,"y":-1},{"x":-33,"y":51},{"x":17,"y":-70},{"x":63,"y":3},{"x":-3,"y":-25},{"x":-80,"y":-27},{"x":-90,"y":9},{"x":-102,"y":-48},{"x":130,"y":-161}],"type":"coastline"},{"arc":[{"x":91239,"y":75771},{"x":40,"y":17},{"x":66,"y":-20},{"x":67,"y":-73},{"x":88,"y":-38},{"x":51,"y":76},{"x":36,"y":-7},{"x":117,"y":92},{"x":35,"y":-81},{"x":93,"y":-72},{"x":25,"y":-94},{"x":91,"y":33},{"x":-13,"y":146},{"x":40,"y":87},{"x":207,"y":168},{"x":2,"y":73},{"x":76,"y":35},{"x":33,"y":56},{"x":-55,"y":113}],"type":"area"},{"arc":[{"x":101017,"y":74762},{"x":-42,"y":27},{"x":-4,"y":47},{"x":-34,"y":-6},{"x":-11,"y":-64},{"x":48,"y":8},{"x":9,"y":-45},{"x":34,"y":33}],"type":"coastline"},{"arc":[{"x":101077,"y":75725},{"x":-15,"y":33},{"x":-74,"y":-15},{"x":89,"y":-18}],"type":"area"},{"arc":[{"x":101116,"y":74733},{"x":-38,"y":14},{"x":-18,"y":-23},{"x":56,"y":9}],"type":"coastline"},{"arc":[{"x":101680,"y":75016},{"x":-22,"y":10},{"x":-1,"y":-19},{"x":23,"y":9}],"type":"coastline"},{"arc":[{"x":102273,"y":75472},{"x":-105,"y":-37},{"x":-121,"y":23},{"x":-16,"y":-41},{"x":-66,"y":2},{"x":-15,"y":-38},{"x":-35,"y":44},{"x":-122,"y":59},{"x":2,"y":-19},{"x":-24,"y":21},{"x":-20,"y":-15},{"x":-45,"y":34},{"x":-9,"y":-26},{"x":-162,"y":-15},{"x":-56,"y":46},{"x":12,"y":42},{"x":-108,"y":104},{"x":-70,"y":-26},{"x":-73,"y":33},{"x":20,"y":-28},{"x":-40,"y":-29},{"x":-66,"y":36},{"x":-6,"y":-51},{"x":-77,"y":57},{"x":-38,"y":-66},{"x":-42,"y":15},{"x":-7,"y":85},{"x":-68,"y":41},{"x":-29,"y":142},{"x":-45,"y":12},{"x":-57,"y":67},{"x":-40,"y":104},{"x":-71,"y":85},{"x":-68,"y":-27},{"x":-75,"y":33},{"x":-35,"y":85},{"x":-133,"y":65}],"type":"area"},{"arc":[{"x":100363,"y":76289},{"x":-51,"y":-10},{"x":-79,"y":-90},{"x":-103,"y":-14},{"x":-82,"y":-53},{"x":-10,"y":-97},{"x":179,"y":-148},{"x":15,"y":-59},{"x":-77,"y":-16},{"x":-133,"y":40},{"x":-150,"y":-40},{"x":-14,"y":31},{"x":-42,"y":-42},{"x":-74,"y":-13},{"x":67,"y":-220},{"x":-16,"y":-102},{"x":-51,"y":-53},{"x":5,"y":-68}],"type":"area"},{"arc":[{"x":99747,"y":75335},{"x":144,"y":-45},{"x":98,"y":11},{"x":214,"y":-47},{"x":96,"y":-34},{"x":9,"y":-42},{"x":50,"y":-10},{"x":4,"y":-31},{"x":57,"y":-33},{"x":8,"y":24},{"x":20,"y":-14},{"x":-10,"y":51},{"x":76,"y":-96},{"x":22,"y":37},{"x":-15,"y":-64},{"x":-41,"y":-7},{"x":92,"y":-61},{"x":29,"y":20},{"x":-66,"y":-66},{"x":15,"y":-78},{"x":26,"y":28},{"x":-19,"y":67},{"x":63,"y":3},{"x":5,"y":-33},{"x":65,"y":-10},{"x":59,"y":24},{"x":89,"y":-21},{"x":14,"y":37},{"x":-29,"y":11},{"x":34,"y":5},{"x":7,"y":60},{"x":44,"y":-4},{"x":-53,"y":38},{"x":50,"y":-30},{"x":4,"y":26},{"x":83,"y":-67},{"x":-73,"y":73},{"x":74,"y":6},{"x":-10,"y":-32},{"x":44,"y":3},{"x":-28,"y":-33},{"x":43,"y":16},{"x":-3,"y":55},{"x":81,"y":13},{"x":-24,"y":9},{"x":42,"y":68},{"x":108,"y":22},{"x":83,"y":-18},{"x":62,"y":41},{"x":50,"y":-6},{"x":186,"y":-82},{"x":-5,"y":-30},{"x":-29,"y":-6},{"x":43,"y":-53},{"x":85,"y":24},{"x":-41,"y":-60},{"x":14,"y":-23},{"x":-60,"y":3},{"x":37,"y":-14},{"x":-13,"y":-31},{"x":-9,"y":24},{"x":-34,"y":-4},{"x":10,"y":31},{"x":-11,"y":-25},{"x":-58,"y":10},{"x":-4,"y":-28},{"x":91,"y":-106},{"x":123,"y":-1},{"x":44,"y":22},{"x":-11,"y":27},{"x":25,"y":-21},{"x":151,"y":15},{"x":23,"y":39},{"x":52,"y":18},{"x":25,"y":69},{"x":-24,"y":31},{"x":67,"y":10},{"x":117,"y":198},{"x":-10,"y":60},{"x":51,"y":84},{"x":-2,"y":90}],"type":"coastline"},{"arc":[{"x":102557,"y":75801},{"x":-28,"y":33},{"x":-9,"y":-55},{"x":22,"y":-7},{"x":-42,"y":4},{"x":-23,"y":-31},{"x":72,"y":25},{"x":8,"y":31}],"type":"coastline"},{"arc":[{"x":102199,"y":77979},{"x":-49,"y":90},{"x":-90,"y":-23},{"x":-85,"y":121},{"x":-98,"y":-14},{"x":-27,"y":41},{"x":-82,"y":35},{"x":-42,"y":72},{"x":-107,"y":2},{"x":-32,"y":36},{"x":-40,"y":-9},{"x":-78,"y":39},{"x":2,"y":-86},{"x":-79,"y":-34},{"x":-5,"y":-38},{"x":-46,"y":23},{"x":-43,"y":-28},{"x":-6,"y":-38},{"x":-30,"y":8},{"x":-44,"y":-54},{"x":-33,"y":7},{"x":-77,"y":-75},{"x":2,"y":-33},{"x":-59,"y":-23}],"type":"area"},{"arc":[{"x":101051,"y":77998},{"x":-29,"y":-170},{"x":-65,"y":23},{"x":-130,"y":-36},{"x":-3,"y":-41},{"x":-56,"y":11},{"x":3,"y":-45},{"x":-49,"y":-61},{"x":68,"y":-53},{"x":18,"y":-119},{"x":-56,"y":-145},{"x":-41,"y":-25},{"x":-85,"y":3},{"x":-62,"y":-52},{"x":24,"y":-117},{"x":-44,"y":-69},{"x":6,"y":-98},{"x":-47,"y":-142},{"x":-94,"y":-1},{"x":39,"y":-103},{"x":-14,"y":-40},{"x":-104,"y":-13},{"x":-53,"y":-100}],"type":"admin"},{"arc":[{"x":100277,"y":76605},{"x":11,"y":-167},{"x":35,"y":-11},{"x":-7,"y":-32},{"x":50,"y":-38},{"x":-3,"y":-68}],"type":"area"},{"arc":[{"x":102273,"y":75472},{"x":2,"y":184},{"x":-53,"y":90},{"x":14,"y":18},{"x":-78,"y":21},{"x":57,"y":28},{"x":50,"y":-45},{"x":9,"y":90},{"x":-42,"y":33},{"x":-103,"y":-25},{"x":-88,"y":127},{"x":-22,"y":267},{"x":104,"y":54},{"x":74,"y":103},{"x":-7,"y":33},{"x":23,"y":-2},{"x":-14,"y":43},{"x":40,"y":-45},{"x":-28,"y":45},{"x":21,"y":53},{"x":51,"y":41},{"x":23,"y":-30},{"x":21,"y":34},{"x":-21,"y":-13},{"x":-48,"y":25},{"x":40,"y":14},{"x":6,"y":-20},{"x":17,"y":53},{"x":0,"y":-12},{"x":27,"y":-3},{"x":-4,"y":-33},{"x":6,"y":38},{"x":-13,"y":34},{"x":32,"y":31},{"x":118,"y":17},{"x":90,"y":96},{"x":125,"y":-50},{"x":82,"y":24}],"type":"coastline"},{"arc":[{"x":91547,"y":80064},{"x":-26,"y":40},{"x":-35,"y":1},{"x":-40,"y":-42},{"x":5,"y":-35},{"x":65,"y":-14},{"x":31,"y":50}],"type":"coastline"},{"arc":[{"x":90697,"y":78318},{"x":102,"y":191},{"x":87,"y":53},{"x":87,"y":11},{"x":52,"y":-19},{"x":83,"y":50},{"x":167,"y":31},{"x":79,"y":51},{"x":125,"y":-43},{"x":68,"y":6},{"x":80,"y":-49},{"x":101,"y":32}],"type":"area"},{"arc":[{"x":91849,"y":79100},{"x":-19,"y":65},{"x":-74,"y":24},{"x":-46,"y":46},{"x":-26,"y":92},{"x":39,"y":-50},{"x":3,"y":46},{"x":-250,"y":190},{"x":-46,"y":150},{"x":3,"y":219},{"x":-19,"y":18},{"x":12,"y":-29},{"x":-52,"y":2},{"x":6,"y":90},{"x":-132,"y":-109},{"x":-130,"y":-36},{"x":-27,"y":-38},{"x":-37,"y":-5},{"x":-16,"y":51},{"x":-2,"y":-51},{"x":-46,"y":-2},{"x":-155,"y":83},{"x":-57,"y":0},{"x":-32,"y":-28},{"x":-4,"y":-142},{"x":-77,"y":-116},{"x":-29,"y":14},{"x":-61,"y":-29},{"x":-36,"y":39},{"x":-1,"y":25},{"x":120,"y":20},{"x":-51,"y":79},{"x":-45,"y":18},{"x":10,"y":26},{"x":47,"y":-18},{"x":-48,"y":19},{"x":-114,"y":-85},{"x":-62,"y":-2},{"x":-108,"y":-143},{"x":30,"y":-189},{"x":-51,"y":-132},{"x":-50,"y":-48},{"x":-84,"y":-26},{"x":-39,"y":22},{"x":2,"y":24},{"x":16,"y":-9},{"x":-36,"y":54},{"x":-34,"y":2},{"x":15,"y":-59},{"x":-95,"y":-43},{"x":50,"y":1},{"x":77,"y":-66},{"x":139,"y":-176},{"x":31,"y":-97},{"x":-27,"y":13},{"x":7,"y":-22},{"x":-126,"y":-116},{"x":-47,"y":-124},{"x":12,"y":-88},{"x":176,"y":-161},{"x":34,"y":34},{"x":156,"y":-15},{"x":63,"y":80},{"x":191,"y":-74}],"type":"coastline"},{"arc":[{"x":84611,"y":83213},{"x":-14,"y":-12},{"x":160,"y":13},{"x":-146,"y":-1}],"type":"coastline"},{"arc":[{"x":85034,"y":81927},{"x":-45,"y":38},{"x":-59,"y":-19},{"x":-62,"y":23},{"x":-12,"y":-16},{"x":7,"y":28},{"x":-43,"y":-8},{"x":-14,"y":36},{"x":-89,"y":26},{"x":-47,"y":-28},{"x":-69,"y":-2},{"x":-79,"y":-85},{"x":25,"y":-207},{"x":230,"y":62},{"x":58,"y":-19},{"x":199,"y":171}],"type":"coastline"},{"arc":[{"x":82778,"y":83739},{"x":3,"y":-41},{"x":120,"y":-78},{"x":70,"y":-131},{"x":49,"y":-33},{"x":24,"y":-100},{"x":78,"y":-108},{"x":38,"y":-16},{"x":64,"y":42},{"x":27,"y":-62},{"x":51,"y":-25},{"x":180,"y":-4},{"x":9,"y":-35},{"x":-62,"y":-76},{"x":-5,"y":-120},{"x":-37,"y":-78}],"type":"admin"},{"arc":[{"x":83387,"y":82874},{"x":159,"y":-77},{"x":218,"y":61},{"x":25,"y":-12},{"x":-22,"y":-7},{"x":24,"y":-10},{"x":-12,"y":-42},{"x":74,"y":8},{"x":138,"y":106},{"x":48,"y":50},{"x":-8,"y":23},{"x":45,"y":-13},{"x":28,"y":47},{"x":216,"y":125},{"x":204,"y":45},{"x":21,"y":63},{"x":-21,"y":-9},{"x":16,"y":11},{"x":-41,"y":17},{"x":-5,"y":37},{"x":35,"y":35},{"x":77,"y":2},{"x":-22,"y":-67},{"x":34,"y":0},{"x":-2,"y":36},{"x":24,"y":-1},{"x":-10,"y":38},{"x":59,"y":-53},{"x":39,"y":18},{"x":-6,"y":30},{"x":57,"y":58},{"x":251,"y":99},{"x":131,"y":-12},{"x":114,"y":-52},{"x":48,"y":79},{"x":77,"y":27},{"x":126,"y":112},{"x":71,"y":23},{"x":32,"y":50},{"x":145,"y":17},{"x":31,"y":32},{"x":-60,"y":51},{"x":31,"y":61},{"x":24,"y":-1},{"x":-16,"y":-34},{"x":187,"y":140},{"x":-63,"y":55},{"x":-235,"y":16},{"x":-17,"y":41},{"x":-37,"y":-17},{"x":4,"y":70},{"x":-188,"y":-13},{"x":-33,"y":84},{"x":-75,"y":32},{"x":-139,"y":-10},{"x":-72,"y":-66},{"x":18,"y":-7},{"x":-127,"y":-28},{"x":-51,"y":30},{"x":-51,"y":-25},{"x":-211,"y":-4},{"x":-92,"y":23},{"x":-165,"y":-16},{"x":-27,"y":23},{"x":-98,"y":-6},{"x":-155,"y":45},{"x":-24,"y":-33},{"x":-33,"y":-15},{"x":-4,"y":-24},{"x":-21,"y":-16},{"x":21,"y":14},{"x":0,"y":18},{"x":9,"y":1},{"x":-1,"y":-40},{"x":12,"y":-9},{"x":-21,"y":5},{"x":-25,"y":-44},{"x":-42,"y":10},{"x":-33,"y":-38},{"x":-4,"y":25},{"x":-2,"y":-27},{"x":-96,"y":17},{"x":-61,"y":-76},{"x":-138,"y":-45},{"x":-164,"y":-24},{"x":-13,"y":66},{"x":-64,"y":30},{"x":-154,"y":-63},{"x":-110,"y":2},{"x":-63,"y":38},{"x":-36,"y":-56},{"x":-5,"y":21},{"x":-32,"y":-12},{"x":-56,"y":32},{"x":-124,"y":-74},{"x":-23,"y":-73},{"x":-72,"y":-83}],"type":"coastline"},{"arc":[{"x":94717,"y":80262},{"x":-31,"y":-21},{"x":29,"y":-1},{"x":2,"y":22}],"type":"coastline"},{"arc":[{"x":93237,"y":80920},{"x":142,"y":-45},{"x":244,"y":-201},{"x":-1,"y":-26},{"x":13,"y":23},{"x":42,"y":-23},{"x":88,"y":-157},{"x":25,"y":-163},{"x":14,"y":18},{"x":36,"y":-64},{"x":204,"y":-29},{"x":3,"y":-77},{"x":65,"y":-20},{"x":-64,"y":20},{"x":1,"y":31},{"x":72,"y":-9},{"x":23,"y":20},{"x":-15,"y":-58},{"x":16,"y":26},{"x":0,"y":36},{"x":42,"y":-17},{"x":68,"y":45},{"x":-4,"y":28},{"x":33,"y":-3},{"x":-24,"y":-29},{"x":25,"y":29},{"x":1,"y":-20},{"x":20,"y":-5},{"x":-17,"y":13},{"x":45,"y":14},{"x":116,"y":-30},{"x":140,"y":35},{"x":112,"y":-9},{"x":1,"y":73},{"x":63,"y":24},{"x":120,"y":-10},{"x":143,"y":-80}],"type":"coastline"},{"arc":[{"x":95049,"y":80368},{"x":10,"y":452},{"x":69,"y":169},{"x":49,"y":14},{"x":69,"y":95},{"x":166,"y":104},{"x":207,"y":-16},{"x":136,"y":104},{"x":120,"y":6},{"x":119,"y":46}],"type":"coastline"},{"arc":[{"x":95994,"y":81342},{"x":-71,"y":138},{"x":-97,"y":14},{"x":-8,"y":-70},{"x":-45,"y":33},{"x":-34,"y":-12},{"x":-5,"y":30},{"x":-33,"y":-9},{"x":-11,"y":88},{"x":-40,"y":19}],"type":"area"},{"arc":[{"x":94230,"y":77556},{"x":-65,"y":-229},{"x":-121,"y":-138},{"x":-36,"y":-134},{"x":60,"y":-265},{"x":-49,"y":-38},{"x":95,"y":-116},{"x":29,"y":20},{"x":1,"y":-266},{"x":45,"y":-27},{"x":19,"y":-67}],"type":"area"},{"arc":[{"x":94208,"y":76296},{"x":441,"y":139},{"x":328,"y":59},{"x":347,"y":29},{"x":277,"y":-8},{"x":356,"y":-52},{"x":183,"y":-50},{"x":13,"y":-39},{"x":20,"y":10},{"x":22,"y":-26},{"x":42,"y":16},{"x":19,"y":-66},{"x":-18,"y":64},{"x":60,"y":-38},{"x":-41,"y":-4},{"x":6,"y":-17},{"x":60,"y":29},{"x":8,"y":-19}],"type":"coastline"},{"arc":[{"x":96331,"y":76323},{"x":53,"y":-1},{"x":0,"y":33},{"x":71,"y":57},{"x":43,"y":-18},{"x":54,"y":24},{"x":37,"y":-21},{"x":81,"y":85},{"x":83,"y":-30},{"x":66,"y":20},{"x":21,"y":188},{"x":50,"y":82},{"x":-14,"y":59},{"x":79,"y":152},{"x":70,"y":23},{"x":107,"y":-19},{"x":111,"y":11}],"type":"area"},{"arc":[{"x":97243,"y":76968},{"x":41,"y":192},{"x":-29,"y":62},{"x":-45,"y":26},{"x":41,"y":21},{"x":11,"y":42},{"x":-100,"y":40},{"x":-92,"y":-18}],"type":"area"},{"arc":[{"x":96013,"y":85156},{"x":-122,"y":-34},{"x":-60,"y":-103},{"x":-87,"y":-8},{"x":-12,"y":-64},{"x":-79,"y":-111},{"x":15,"y":-154},{"x":-127,"y":-22},{"x":-13,"y":-67},{"x":-67,"y":-64},{"x":45,"y":-25},{"x":-4,"y":-54},{"x":25,"y":-9},{"x":-20,"y":-187},{"x":40,"y":-39},{"x":50,"y":-168},{"x":-10,"y":-72},{"x":66,"y":-35},{"x":-37,"y":-34},{"x":17,"y":-69},{"x":50,"y":-56},{"x":47,"y":-3},{"x":-29,"y":-70},{"x":-147,"y":-73},{"x":-17,"y":-69},{"x":-30,"y":-15},{"x":-124,"y":113},{"x":21,"y":21},{"x":-74,"y":22},{"x":-13,"y":39},{"x":-71,"y":22},{"x":28,"y":5},{"x":-42,"y":35},{"x":-92,"y":-8},{"x":-40,"y":-70},{"x":-75,"y":-44},{"x":9,"y":-63},{"x":-29,"y":-28},{"x":-103,"y":0},{"x":-26,"y":77},{"x":-61,"y":-26},{"x":-73,"y":-131},{"x":-37,"y":-9},{"x":-12,"y":-78},{"x":87,"y":-30},{"x":-8,"y":-46},{"x":74,"y":-112},{"x":-36,"y":-71},{"x":15,"y":-36}],"type":"area"},{"arc":[{"x":94825,"y":83133},{"x":-3,"y":-68},{"x":-108,"y":24},{"x":27,"y":-42},{"x":-36,"y":-29},{"x":8,"y":-26}],"type":"admin"},{"arc":[{"x":94713,"y":82992},{"x":49,"y":27},{"x":-1,"y":-24},{"x":56,"y":41},{"x":19,"y":-84},{"x":-20,"y":12},{"x":-34,"y":-42}],"type":"area"},{"arc":[{"x":94782,"y":82922},{"x":-23,"y":-43},{"x":80,"y":-57},{"x":-6,"y":-58},{"x":100,"y":-64},{"x":37,"y":-66},{"x":31,"y":0}],"type":"admin"},{"arc":[{"x":95798,"y":81898},{"x":99,"y":69},{"x":36,"y":-12},{"x":-78,"y":41},{"x":40,"y":55},{"x":-39,"y":115},{"x":23,"y":29},{"x":137,"y":-17},{"x":41,"y":16},{"x":53,"y":-60},{"x":38,"y":-13},{"x":28,"y":23},{"x":9,"y":-87},{"x":63,"y":-47},{"x":171,"y":33},{"x":4,"y":91},{"x":-76,"y":259},{"x":24,"y":70},{"x":65,"y":18},{"x":82,"y":-69},{"x":230,"y":2},{"x":86,"y":-65},{"x":93,"y":17},{"x":111,"y":-25},{"x":148,"y":26},{"x":53,"y":-14},{"x":65,"y":-118},{"x":151,"y":57},{"x":61,"y":83},{"x":82,"y":-124},{"x":83,"y":-18},{"x":50,"y":-131},{"x":85,"y":52},{"x":65,"y":-1},{"x":-5,"y":-20},{"x":44,"y":15},{"x":49,"y":-38},{"x":102,"y":70},{"x":38,"y":-21},{"x":80,"y":46}],"type":"area"},{"arc":[{"x":96881,"y":80428},{"x":-14,"y":34},{"x":-22,"y":-28},{"x":36,"y":-6}],"type":"coastline"},{"arc":[{"x":97006,"y":80518},{"x":-21,"y":23},{"x":-57,"y":-48},{"x":62,"y":1},{"x":16,"y":24}],"type":"coastline"},{"arc":[{"x":95994,"y":81342},{"x":112,"y":81},{"x":54,"y":98},{"x":67,"y":35},{"x":117,"y":15},{"x":302,"y":-122},{"x":65,"y":-87},{"x":2,"y":-68},{"x":75,"y":39},{"x":78,"y":-37},{"x":46,"y":-127},{"x":-35,"y":-41},{"x":78,"y":-140},{"x":-22,"y":-135},{"x":51,"y":-153},{"x":-42,"y":-9},{"x":7,"y":-40},{"x":109,"y":-76},{"x":-17,"y":18},{"x":19,"y":-13},{"x":104,"y":35},{"x":-88,"y":-56},{"x":39,"y":-57},{"x":62,"y":-37},{"x":31,"y":11},{"x":-33,"y":-119},{"x":45,"y":-111},{"x":51,"y":-17},{"x":23,"y":-39},{"x":2,"y":-48},{"x":-86,"y":-132}],"type":"coastline"},{"arc":[{"x":97210,"y":80010},{"x":100,"y":82},{"x":114,"y":24},{"x":120,"y":74},{"x":-48,"y":34},{"x":-29,"y":82},{"x":31,"y":4},{"x":66,"y":85},{"x":-26,"y":26},{"x":-49,"y":-17},{"x":-15,"y":25},{"x":104,"y":56},{"x":26,"y":52},{"x":32,"y":-77},{"x":-21,"y":-28},{"x":41,"y":-68},{"x":-7,"y":-54},{"x":-46,"y":-39},{"x":44,"y":-33},{"x":2,"y":-59},{"x":9,"y":52},{"x":136,"y":77},{"x":-36,"y":-76},{"x":37,"y":-26},{"x":66,"y":41},{"x":47,"y":-20},{"x":96,"y":47},{"x":34,"y":-14},{"x":-4,"y":-127},{"x":70,"y":-6},{"x":13,"y":-31},{"x":34,"y":-245},{"x":198,"y":-108},{"x":14,"y":-51},{"x":60,"y":-51},{"x":165,"y":2},{"x":67,"y":-27},{"x":49,"y":16},{"x":31,"y":-29},{"x":66,"y":3},{"x":84,"y":-66},{"x":67,"y":-6},{"x":10,"y":-126},{"x":104,"y":-82},{"x":42,"y":3},{"x":-12,"y":-144},{"x":35,"y":-31}],"type":"area"},{"arc":[{"x":99131,"y":79154},{"x":-6,"y":41},{"x":105,"y":93},{"x":23,"y":175},{"x":129,"y":-121},{"x":44,"y":59},{"x":232,"y":92}],"type":"admin"},{"arc":[{"x":99658,"y":79493},{"x":-20,"y":109},{"x":76,"y":46},{"x":-72,"y":84},{"x":38,"y":133},{"x":-46,"y":31},{"x":34,"y":91},{"x":64,"y":64},{"x":-48,"y":100},{"x":14,"y":53},{"x":-52,"y":47},{"x":3,"y":29},{"x":-61,"y":31},{"x":-29,"y":135},{"x":-69,"y":46},{"x":26,"y":53},{"x":-75,"y":16},{"x":-12,"y":36},{"x":62,"y":20},{"x":-2,"y":41},{"x":36,"y":14},{"x":5,"y":169},{"x":49,"y":43},{"x":54,"y":138},{"x":127,"y":119},{"x":11,"y":102},{"x":136,"y":258}],"type":"admin"},{"arc":[{"x":97197,"y":75558},{"x":-22,"y":31},{"x":-105,"y":37},{"x":127,"y":-68}],"type":"coastline"},{"arc":[{"x":97375,"y":74924},{"x":-38,"y":-21},{"x":24,"y":-6},{"x":14,"y":27}],"type":"coastline"},{"arc":[{"x":96331,"y":76323},{"x":44,"y":-75},{"x":-12,"y":-100},{"x":46,"y":-13},{"x":55,"y":20},{"x":122,"y":-46},{"x":336,"y":-201},{"x":11,"y":-87},{"x":19,"y":19},{"x":-9,"y":-35},{"x":-17,"y":9},{"x":24,"y":-17},{"x":-8,"y":-50},{"x":41,"y":-81},{"x":-27,"y":62},{"x":27,"y":37},{"x":-24,"y":12},{"x":85,"y":7},{"x":14,"y":-25},{"x":-73,"y":-22},{"x":68,"y":9},{"x":8,"y":-37},{"x":-66,"y":-15},{"x":87,"y":17},{"x":5,"y":44},{"x":30,"y":-1},{"x":-24,"y":-110},{"x":32,"y":54},{"x":59,"y":-52},{"x":68,"y":-22},{"x":4,"y":27},{"x":41,"y":-155},{"x":38,"y":-5},{"x":4,"y":-41},{"x":103,"y":-53},{"x":122,"y":-150},{"x":-8,"y":-112},{"x":-32,"y":-26},{"x":1,"y":39},{"x":-3,"y":-43},{"x":-66,"y":-38},{"x":-14,"y":-52},{"x":35,"y":-32},{"x":97,"y":30},{"x":57,"y":-29},{"x":116,"y":-7},{"x":52,"y":-51},{"x":53,"y":-3}],"type":"coastline"},{"arc":[{"x":97852,"y":74923},{"x":40,"y":111},{"x":66,"y":8},{"x":41,"y":64},{"x":3,"y":77},{"x":-63,"y":96},{"x":28,"y":69},{"x":-33,"y":63},{"x":33,"y":84},{"x":-133,"y":46},{"x":-6,"y":122},{"x":-123,"y":84},{"x":-111,"y":236},{"x":-38,"y":11},{"x":24,"y":109},{"x":76,"y":97},{"x":5,"y":85},{"x":-156,"y":64},{"x":-35,"y":62},{"x":12,"y":105},{"x":105,"y":173},{"x":-7,"y":49},{"x":-22,"y":32},{"x":-164,"y":36},{"x":-31,"y":159},{"x":-86,"y":18},{"x":-34,"y":-15}],"type":"area"},{"arc":[{"x":85864,"y":67119},{"x":-33,"y":1},{"x":8,"y":-31},{"x":25,"y":30}],"type":"coastline"},{"arc":[{"x":86089,"y":67210},{"x":-29,"y":15},{"x":-69,"y":-84},{"x":61,"y":17},{"x":37,"y":52}],"type":"coastline"},{"arc":[{"x":86265,"y":67538},{"x":-40,"y":29},{"x":-1,"y":-77},{"x":41,"y":48}],"type":"coastline"},{"arc":[{"x":89724,"y":67099},{"x":-23,"y":-2},{"x":23,"y":-15},{"x":0,"y":17}],"type":"coastline"},{"arc":[{"x":90526,"y":67341},{"x":-28,"y":72},{"x":-122,"y":-73},{"x":-45,"y":9},{"x":-23,"y":43},{"x":-19,"y":-44},{"x":-46,"y":21},{"x":37,"y":-84},{"x":-58,"y":-79},{"x":35,"y":-5},{"x":51,"y":55},{"x":45,"y":-17},{"x":9,"y":70},{"x":164,"y":32}],"type":"coastline"},{"arc":[{"x":90674,"y":67605},{"x":-133,"y":49},{"x":-79,"y":-18},{"x":89,"y":-25},{"x":32,"y":-44},{"x":38,"y":49},{"x":53,"y":-11}],"type":"coastline"},{"arc":[{"x":92605,"y":74810},{"x":-41,"y":-4},{"x":-22,"y":-31},{"x":-73,"y":7},{"x":-40,"y":-49},{"x":33,"y":15},{"x":-4,"y":-25},{"x":46,"y":-23},{"x":101,"y":110}],"type":"coastline"},{"arc":[{"x":94018,"y":77670},{"x":-42,"y":-129},{"x":-80,"y":-120},{"x":-123,"y":-32},{"x":-158,"y":-94},{"x":-77,"y":-137},{"x":-159,"y":-70},{"x":-46,"y":-67},{"x":-44,"y":10},{"x":-78,"y":-32},{"x":-14,"y":-70},{"x":36,"y":-64},{"x":-34,"y":-26},{"x":12,"y":-55},{"x":-102,"y":-41},{"x":-130,"y":-157},{"x":-99,"y":-57},{"x":-70,"y":48},{"x":-118,"y":-34},{"x":-26,"y":20},{"x":-45,"y":-7},{"x":-111,"y":-102},{"x":-141,"y":-11},{"x":-6,"y":-64},{"x":-125,"y":-97}],"type":"area"},{"arc":[{"x":91239,"y":75771},{"x":23,"y":-42},{"x":-81,"y":-159},{"x":89,"y":-22},{"x":12,"y":-38},{"x":-118,"y":-112},{"x":47,"y":-32},{"x":-11,"y":-36},{"x":-62,"y":-33},{"x":19,"y":-20},{"x":29,"y":25},{"x":32,"y":-45},{"x":86,"y":17},{"x":11,"y":62},{"x":59,"y":-13},{"x":-4,"y":35},{"x":47,"y":29},{"x":-45,"y":7},{"x":32,"y":7},{"x":-15,"y":29},{"x":58,"y":-44},{"x":-16,"y":-98},{"x":51,"y":-6},{"x":27,"y":31},{"x":-43,"y":61},{"x":73,"y":30},{"x":-30,"y":9},{"x":26,"y":-2},{"x":-14,"y":17},{"x":37,"y":4},{"x":14,"y":-150},{"x":95,"y":8},{"x":-5,"y":-35},{"x":-45,"y":-3},{"x":-42,"y":-46},{"x":-4,"y":-72},{"x":47,"y":14},{"x":65,"y":-36},{"x":57,"y":6},{"x":42,"y":144},{"x":54,"y":38},{"x":-31,"y":18},{"x":9,"y":29},{"x":-32,"y":-19},{"x":-3,"y":26},{"x":27,"y":-8},{"x":59,"y":54},{"x":38,"y":-9},{"x":33,"y":-32},{"x":-28,"y":-60},{"x":41,"y":34},{"x":112,"y":-57},{"x":10,"y":-74},{"x":-46,"y":-34},{"x":-54,"y":19},{"x":34,"y":-38},{"x":-9,"y":-116},{"x":72,"y":-24},{"x":-5,"y":-53},{"x":31,"y":0},{"x":6,"y":-40},{"x":-39,"y":-27},{"x":36,"y":-38},{"x":87,"y":79},{"x":-10,"y":38},{"x":35,"y":31},{"x":-45,"y":85},{"x":61,"y":43},{"x":8,"y":47},{"x":162,"y":54},{"x":28,"y":-76},{"x":33,"y":19},{"x":13,"y":-50},{"x":66,"y":9},{"x":-39,"y":-31},{"x":30,"y":-20},{"x":-36,"y":-59},{"x":91,"y":15},{"x":74,"y":-21},{"x":-38,"y":-65},{"x":16,"y":-83},{"x":91,"y":-30},{"x":14,"y":-82},{"x":88,"y":-41},{"x":44,"y":-76},{"x":55,"y":-12},{"x":58,"y":-56},{"x":125,"y":-36},{"x":58,"y":-91},{"x":43,"y":-22},{"x":64,"y":-104},{"x":-39,"y":-100},{"x":-61,"y":-32},{"x":49,"y":-22},{"x":110,"y":31},{"x":30,"y":64},{"x":-61,"y":178},{"x":-73,"y":-1},{"x":-2,"y":29},{"x":31,"y":-20},{"x":29,"y":11},{"x":2,"y":47},{"x":118,"y":64},{"x":53,"y":96},{"x":108,"y":51},{"x":-84,"y":84},{"x":-132,"y":23},{"x":-11,"y":21},{"x":7,"y":-19},{"x":-32,"y":6},{"x":-12,"y":49},{"x":47,"y":57},{"x":-56,"y":42},{"x":41,"y":-34},{"x":-17,"y":-11},{"x":-31,"y":35},{"x":-46,"y":-8},{"x":-2,"y":34},{"x":-50,"y":-1},{"x":5,"y":25},{"x":7,"y":-14},{"x":105,"y":35},{"x":53,"y":-12},{"x":25,"y":-36},{"x":48,"y":64},{"x":-34,"y":6},{"x":-33,"y":-29},{"x":-197,"y":27},{"x":-79,"y":332},{"x":-40,"y":-6},{"x":6,"y":33},{"x":126,"y":57},{"x":100,"y":185},{"x":-70,"y":-1},{"x":199,"y":38},{"x":-124,"y":-8},{"x":24,"y":58},{"x":27,"y":-13},{"x":-24,"y":-35},{"x":85,"y":3},{"x":-75,"y":-2},{"x":75,"y":170},{"x":245,"y":183},{"x":565,"y":246}],"type":"coastline"},{"arc":[{"x":93490,"y":84601},{"x":-110,"y":32},{"x":39,"y":-50},{"x":71,"y":18}],"type":"coastline"},{"arc":[{"x":93793,"y":84552},{"x":-4,"y":-41},{"x":-202,"y":-147},{"x":204,"y":146},{"x":2,"y":42}],"type":"coastline"},{"arc":[{"x":94508,"y":82640},{"x":-14,"y":14},{"x":-17,"y":-41},{"x":31,"y":27}],"type":"admin"},{"arc":[{"x":94497,"y":82767},{"x":-94,"y":-11},{"x":-24,"y":-25},{"x":-4,"y":-37},{"x":68,"y":-49},{"x":-7,"y":30},{"x":87,"y":85},{"x":-26,"y":7}],"type":"admin"},{"arc":[{"x":94549,"y":83021},{"x":-16,"y":34},{"x":-20,"y":-15},{"x":16,"y":-63},{"x":31,"y":25},{"x":-11,"y":19}],"type":"admin"},{"arc":[{"x":94701,"y":82764},{"x":-88,"y":46},{"x":50,"y":-48},{"x":38,"y":2}],"type":"admin"},{"arc":[{"x":94713,"y":82873},{"x":-18,"y":23},{"x":28,"y":-64},{"x":-10,"y":41}],"type":"admin"},{"arc":[{"x":94713,"y":82992},{"x":69,"y":-70}],"type":"admin"},{"arc":[{"x":93841,"y":85056},{"x":17,"y":-43},{"x":54,"y":-28},{"x":9,"y":-92},{"x":-93,"y":-66},{"x":81,"y":-12},{"x":94,"y":-165},{"x":-11,"y":-88},{"x":-60,"y":-15},{"x":-42,"y":-23},{"x":93,"y":38},{"x":7,"y":-1},{"x":-7,"y":-30},{"x":18,"y":24},{"x":23,"y":-32},{"x":-60,"y":0},{"x":16,"y":-30},{"x":-29,"y":-21},{"x":-28,"y":17},{"x":-48,"y":-37},{"x":55,"y":-22},{"x":-11,"y":-14},{"x":-99,"y":8},{"x":-22,"y":-19},{"x":-18,"y":-25},{"x":58,"y":-78},{"x":-26,"y":-31},{"x":-34,"y":-9},{"x":-73,"y":64},{"x":-21,"y":-19},{"x":-11,"y":36},{"x":-8,"y":-65},{"x":130,"y":-71},{"x":-33,"y":-49},{"x":-36,"y":17},{"x":25,"y":-26},{"x":-108,"y":-125}],"type":"coastline"},{"arc":[{"x":93643,"y":84024},{"x":32,"y":-46},{"x":-55,"y":-63},{"x":21,"y":-9},{"x":40,"y":36},{"x":49,"y":-12},{"x":-2,"y":25},{"x":40,"y":7},{"x":11,"y":-19},{"x":-32,"y":-2},{"x":-8,"y":-42},{"x":39,"y":-22},{"x":5,"y":61},{"x":60,"y":-80},{"x":-22,"y":-124},{"x":157,"y":-126},{"x":-10,"y":-54},{"x":-78,"y":-55},{"x":-82,"y":-16},{"x":-10,"y":-38},{"x":-64,"y":-34},{"x":51,"y":-23},{"x":-37,"y":-67},{"x":73,"y":-98},{"x":52,"y":-12},{"x":0,"y":-60},{"x":62,"y":-29},{"x":62,"y":-102},{"x":80,"y":-2},{"x":68,"y":37},{"x":125,"y":18},{"x":17,"y":32},{"x":76,"y":-26},{"x":-28,"y":-79},{"x":27,"y":-51},{"x":38,"y":100},{"x":61,"y":30},{"x":-12,"y":68},{"x":64,"y":9},{"x":17,"y":-49},{"x":63,"y":0},{"x":47,"y":54},{"x":56,"y":-66},{"x":129,"y":38}],"type":"admin"},{"arc":[{"x":94073,"y":83337},{"x":-35,"y":-97},{"x":-82,"y":23},{"x":-22,"y":-29},{"x":-25,"y":28},{"x":14,"y":51},{"x":-54,"y":-7},{"x":98,"y":41},{"x":-15,"y":-20},{"x":31,"y":-28},{"x":39,"y":1},{"x":24,"y":39},{"x":27,"y":-2}],"type":"admin"},{"arc":[{"x":55105,"y":67964},{"x":-22,"y":2},{"x":6,"y":-43},{"x":16,"y":41}],"type":"coastline"},{"arc":[{"x":54407,"y":68623},{"x":-159,"y":-87},{"x":-10,"y":-52},{"x":31,"y":-30},{"x":-56,"y":-56},{"x":13,"y":-104},{"x":-46,"y":-58},{"x":-89,"y":8},{"x":42,"y":19},{"x":-55,"y":-1},{"x":-39,"y":79},{"x":-51,"y":13},{"x":-73,"y":-73},{"x":-16,"y":-123},{"x":-57,"y":-73},{"x":-31,"y":-195},{"x":-33,"y":-75},{"x":-56,"y":-19},{"x":-28,"y":-54},{"x":2,"y":-56},{"x":73,"y":-66},{"x":-36,"y":-53},{"x":55,"y":-18},{"x":-10,"y":-95},{"x":-43,"y":-28},{"x":-58,"y":25},{"x":-132,"y":-31},{"x":-119,"y":56},{"x":-42,"y":-16},{"x":-2,"y":-53},{"x":-63,"y":-64},{"x":-108,"y":-40},{"x":-28,"y":27},{"x":-38,"y":-31},{"x":61,"y":-362},{"x":-41,"y":6},{"x":-60,"y":96},{"x":18,"y":69},{"x":-87,"y":48},{"x":27,"y":38},{"x":-52,"y":41},{"x":0,"y":31},{"x":-55,"y":21},{"x":-22,"y":75},{"x":-43,"y":-1},{"x":17,"y":14},{"x":42,"y":-18},{"x":-43,"y":19},{"x":79,"y":12},{"x":-12,"y":54},{"x":-40,"y":16},{"x":-99,"y":141},{"x":-43,"y":2},{"x":-14,"y":37},{"x":-64,"y":16},{"x":-32,"y":-16},{"x":-11,"y":-52},{"x":51,"y":-11},{"x":13,"y":-36},{"x":-23,"y":-4},{"x":20,"y":-20},{"x":-59,"y":-81},{"x":-43,"y":-4},{"x":-16,"y":-45},{"x":-52,"y":25},{"x":-22,"y":-40},{"x":-32,"y":16},{"x":5,"y":-36},{"x":44,"y":-28},{"x":-53,"y":-44},{"x":53,"y":-61},{"x":-72,"y":-50}],"type":"coastline"},{"arc":[{"x":52485,"y":67167},{"x":28,"y":-51},{"x":147,"y":-35},{"x":79,"y":-63},{"x":-17,"y":-106},{"x":74,"y":-27},{"x":-76,"y":-137},{"x":12,"y":-90},{"x":-100,"y":-46},{"x":-13,"y":-54},{"x":100,"y":-100},{"x":50,"y":30},{"x":93,"y":-49},{"x":61,"y":-120},{"x":129,"y":-43}],"type":"admin"},{"arc":[{"x":53052,"y":66276},{"x":65,"y":44},{"x":113,"y":21},{"x":52,"y":69},{"x":61,"y":-28},{"x":-20,"y":49},{"x":85,"y":80},{"x":51,"y":134},{"x":174,"y":-196}],"type":"admin"},{"arc":[{"x":53633,"y":66449},{"x":125,"y":8},{"x":-7,"y":60},{"x":43,"y":31},{"x":-16,"y":29},{"x":96,"y":145},{"x":1,"y":81},{"x":54,"y":42},{"x":-40,"y":62},{"x":133,"y":25},{"x":104,"y":-32},{"x":45,"y":53},{"x":-9,"y":78},{"x":37,"y":26},{"x":-21,"y":158},{"x":75,"y":-33},{"x":52,"y":-9},{"x":8,"y":17},{"x":95,"y":-62},{"x":86,"y":-21},{"x":109,"y":25},{"x":60,"y":-36},{"x":80,"y":-8},{"x":25,"y":-79},{"x":141,"y":-206}],"type":"admin"},{"arc":[{"x":54909,"y":66803},{"x":13,"y":24},{"x":-44,"y":80},{"x":16,"y":53},{"x":45,"y":26},{"x":-19,"y":76},{"x":44,"y":60},{"x":-15,"y":33},{"x":-70,"y":31},{"x":6,"y":121},{"x":-38,"y":31},{"x":17,"y":28},{"x":21,"y":-12},{"x":-11,"y":19},{"x":27,"y":-35},{"x":-4,"y":20},{"x":26,"y":-9},{"x":-19,"y":-19},{"x":118,"y":73},{"x":216,"y":34},{"x":35,"y":78},{"x":-72,"y":76},{"x":-78,"y":-43},{"x":-23,"y":128},{"x":163,"y":111},{"x":-126,"y":70},{"x":-44,"y":-10},{"x":-3,"y":50},{"x":-2,"y":-42},{"x":-194,"y":-7},{"x":21,"y":-5},{"x":-18,"y":-25},{"x":-19,"y":43},{"x":-10,"y":-20},{"x":8,"y":43},{"x":214,"y":87},{"x":-10,"y":73},{"x":46,"y":25},{"x":-20,"y":56},{"x":29,"y":-56},{"x":12,"y":22},{"x":30,"y":-34},{"x":0,"y":-35},{"x":60,"y":-18},{"x":80,"y":37},{"x":87,"y":0},{"x":25,"y":45},{"x":53,"y":-1},{"x":14,"y":-28},{"x":119,"y":20},{"x":82,"y":57},{"x":-27,"y":37},{"x":55,"y":83},{"x":54,"y":-8},{"x":19,"y":55},{"x":54,"y":16}],"type":"coastline"},{"arc":[{"x":55852,"y":68317},{"x":-155,"y":77},{"x":-110,"y":16},{"x":-164,"y":-54},{"x":-91,"y":36},{"x":-77,"y":-3},{"x":-92,"y":-59},{"x":25,"y":155},{"x":-46,"y":-20},{"x":-68,"y":15},{"x":-98,"y":-63},{"x":-31,"y":23},{"x":-69,"y":-7},{"x":-71,"y":-110},{"x":-95,"y":-6},{"x":-42,"y":-43},{"x":9,"y":-75},{"x":-162,"y":-82},{"x":-45,"y":18},{"x":2,"y":43},{"x":-19,"y":-9},{"x":-31,"y":64},{"x":27,"y":23},{"x":-11,"y":44},{"x":-39,"y":6},{"x":-15,"y":32},{"x":48,"y":142},{"x":7,"y":101},{"x":-32,"y":42}],"type":"admin"},{"arc":[{"x":55177,"y":69274},{"x":40,"y":61},{"x":-31,"y":41},{"x":20,"y":38},{"x":160,"y":14},{"x":143,"y":-55}],"type":"admin"},{"arc":[{"x":55509,"y":69373},{"x":12,"y":39},{"x":-59,"y":-13},{"x":-16,"y":50},{"x":-70,"y":12},{"x":31,"y":41},{"x":51,"y":11},{"x":-8,"y":-14},{"x":54,"y":34},{"x":65,"y":-8},{"x":25,"y":-45},{"x":61,"y":-32},{"x":46,"y":6},{"x":15,"y":-31},{"x":96,"y":39},{"x":38,"y":-28},{"x":77,"y":9},{"x":33,"y":-24},{"x":-3,"y":61},{"x":-86,"y":8},{"x":-42,"y":51},{"x":-150,"y":14},{"x":-88,"y":52},{"x":43,"y":71},{"x":67,"y":-70},{"x":93,"y":18},{"x":16,"y":43},{"x":54,"y":22},{"x":10,"y":-19},{"x":4,"y":21},{"x":19,"y":-24},{"x":-27,"y":-8},{"x":88,"y":6},{"x":15,"y":-29},{"x":75,"y":-27},{"x":84,"y":-102},{"x":89,"y":-7},{"x":111,"y":-101},{"x":66,"y":5},{"x":-16,"y":86},{"x":-22,"y":-9},{"x":9,"y":57},{"x":70,"y":6},{"x":13,"y":54},{"x":45,"y":-7},{"x":207,"y":122},{"x":50,"y":139},{"x":-250,"y":42},{"x":-105,"y":-37},{"x":-134,"y":58},{"x":-22,"y":-22},{"x":2,"y":35},{"x":-2,"y":-23},{"x":-176,"y":96},{"x":-27,"y":155},{"x":-132,"y":-21},{"x":-36,"y":45},{"x":-39,"y":7},{"x":-148,"y":-90},{"x":-49,"y":21},{"x":38,"y":15},{"x":-46,"y":-10},{"x":-75,"y":-38},{"x":-6,"y":-36},{"x":6,"y":39},{"x":-36,"y":-17},{"x":5,"y":-22},{"x":-6,"y":23},{"x":101,"y":46},{"x":-24,"y":36},{"x":-218,"y":-91},{"x":11,"y":-48},{"x":87,"y":30},{"x":-113,"y":-67},{"x":7,"y":27},{"x":-100,"y":-104},{"x":-42,"y":-245},{"x":-41,"y":-36},{"x":-116,"y":-26},{"x":15,"y":-44},{"x":-22,"y":-47},{"x":61,"y":-25},{"x":55,"y":-204}],"type":"coastline"},{"arc":[{"x":90697,"y":78318},{"x":301,"y":-231},{"x":103,"y":-122},{"x":76,"y":-154},{"x":-19,"y":-32},{"x":39,"y":-114},{"x":-48,"y":-45},{"x":12,"y":-26},{"x":24,"y":21},{"x":-12,"y":-23},{"x":32,"y":-29},{"x":-39,"y":14},{"x":-33,"y":-18},{"x":14,"y":-14},{"x":-39,"y":4},{"x":46,"y":-89},{"x":-33,"y":-23},{"x":10,"y":-55},{"x":30,"y":5},{"x":-15,"y":-38},{"x":28,"y":5},{"x":-34,"y":-22},{"x":43,"y":-68},{"x":-23,"y":-18},{"x":27,"y":6},{"x":35,"y":-35},{"x":-40,"y":15},{"x":-17,"y":-23},{"x":40,"y":-62},{"x":-24,"y":-16},{"x":51,"y":-28},{"x":-58,"y":-17},{"x":-1,"y":-57},{"x":37,"y":0},{"x":-40,"y":-6},{"x":26,"y":-13},{"x":-12,"y":-140}],"type":"coastline"},{"arc":[{"x":101392,"y":80332},{"x":-109,"y":-12},{"x":-41,"y":29},{"x":-28,"y":-33},{"x":-117,"y":21},{"x":-72,"y":-21},{"x":-125,"y":23},{"x":-58,"y":-16},{"x":-102,"y":65},{"x":-64,"y":-36},{"x":-49,"y":6},{"x":-48,"y":-151},{"x":-56,"y":-1},{"x":-42,"y":-61},{"x":-121,"y":-66},{"x":-5,"y":-37},{"x":-168,"y":-94},{"x":-149,"y":-18},{"x":-26,"y":-24},{"x":-23,"y":-53},{"x":-96,"y":-83},{"x":-66,"y":-235}],"type":"admin"},{"arc":[{"x":99827,"y":79535},{"x":180,"y":-72},{"x":57,"y":-64},{"x":-90,"y":-97},{"x":-8,"y":-95},{"x":86,"y":-49},{"x":24,"y":-180},{"x":198,"y":-87},{"x":56,"y":-119},{"x":126,"y":-44},{"x":85,"y":-136},{"x":82,"y":-21},{"x":67,"y":13},{"x":37,"y":60},{"x":76,"y":-103},{"x":-91,"y":-181},{"x":23,"y":-85},{"x":-82,"y":-57},{"x":199,"y":-75},{"x":105,"y":-83},{"x":68,"y":-14},{"x":26,"y":-48}],"type":"admin"},{"arc":[{"x":97210,"y":80010},{"x":24,"y":-34},{"x":-12,"y":-63},{"x":-23,"y":1},{"x":17,"y":-28},{"x":-101,"y":-142},{"x":-114,"y":-104},{"x":28,"y":-90},{"x":-216,"y":-140},{"x":-60,"y":10},{"x":-142,"y":-60},{"x":-99,"y":21}],"type":"coastline"},{"arc":[{"x":97236,"y":77958},{"x":42,"y":-13},{"x":76,"y":86},{"x":110,"y":26},{"x":8,"y":41},{"x":114,"y":97},{"x":35,"y":67},{"x":41,"y":-7},{"x":87,"y":38},{"x":40,"y":-40},{"x":39,"y":23},{"x":184,"y":-31},{"x":108,"y":175},{"x":60,"y":2},{"x":53,"y":-39},{"x":47,"y":68},{"x":154,"y":-15},{"x":82,"y":47},{"x":-20,"y":38},{"x":51,"y":72},{"x":77,"y":-13},{"x":64,"y":57},{"x":-3,"y":38},{"x":58,"y":16},{"x":90,"y":102},{"x":-3,"y":35},{"x":39,"y":36},{"x":-35,"y":56},{"x":10,"y":81},{"x":130,"y":82},{"x":61,"y":2},{"x":42,"y":63},{"x":54,"y":6}],"type":"area"},{"arc":[{"x":85527,"y":76584},{"x":-11,"y":19},{"x":-5,"y":-48},{"x":16,"y":29}],"type":"coastline"},{"arc":[{"x":85573,"y":76198},{"x":-44,"y":19},{"x":-28,"y":84},{"x":-91,"y":74},{"x":-83,"y":4},{"x":-79,"y":-41},{"x":-57,"y":-371},{"x":6,"y":-28},{"x":9,"y":19},{"x":24,"y":-20},{"x":-11,"y":-25},{"x":-87,"y":36},{"x":-15,"y":-17},{"x":99,"y":-37},{"x":-14,"y":-93},{"x":37,"y":-36},{"x":73,"y":55},{"x":13,"y":-23},{"x":50,"y":12},{"x":-14,"y":105},{"x":156,"y":168},{"x":56,"y":115}],"type":"coastline"},{"arc":[{"x":85716,"y":77482},{"x":-45,"y":1},{"x":-65,"y":105},{"x":-14,"y":83},{"x":-110,"y":-19},{"x":-13,"y":-24},{"x":128,"y":-312},{"x":-44,"y":-108},{"x":13,"y":-52},{"x":38,"y":15},{"x":-2,"y":96},{"x":71,"y":1},{"x":28,"y":30},{"x":-36,"y":62},{"x":23,"y":39},{"x":-22,"y":-32},{"x":-14,"y":34},{"x":64,"y":81}],"type":"coastline"},{"arc":[{"x":86118,"y":72431},{"x":-83,"y":35},{"x":-34,"y":96},{"x":-47,"y":19},{"x":-8,"y":42},{"x":-18,"y":-17},{"x":-12,"y":79},{"x":-89,"y":4},{"x":-132,"y":-118},{"x":-74,"y":-159},{"x":-5,"y":-75},{"x":100,"y":-150},{"x":-5,"y":-41},{"x":29,"y":28},{"x":22,"y":-43},{"x":74,"y":9},{"x":36,"y":-69},{"x":86,"y":5},{"x":6,"y":111},{"x":127,"y":97},{"x":-4,"y":84},{"x":31,"y":63}],"type":"coastline"},{"arc":[{"x":60250,"y":62662},{"x":-27,"y":62},{"x":-64,"y":33},{"x":-78,"y":-17},{"x":-30,"y":-66},{"x":71,"y":-104},{"x":-38,"y":-21},{"x":-12,"y":-53},{"x":110,"y":-61},{"x":14,"y":26},{"x":-58,"y":101},{"x":112,"y":100}],"type":"coastline"},{"arc":[{"x":60622,"y":62749},{"x":-90,"y":12},{"x":-11,"y":23},{"x":-11,"y":-53},{"x":24,"y":-37},{"x":53,"y":-6},{"x":35,"y":61}],"type":"coastline"},{"arc":[{"x":64703,"y":64802},{"x":-8,"y":40},{"x":-27,"y":-14},{"x":-9,"y":27},{"x":26,"y":28},{"x":-5,"y":-38},{"x":24,"y":66},{"x":-39,"y":104},{"x":-81,"y":3},{"x":-29,"y":-32},{"x":-21,"y":14},{"x":14,"y":-32},{"x":-140,"y":14},{"x":-79,"y":37},{"x":-35,"y":-20},{"x":152,"y":-207},{"x":174,"y":-141},{"x":49,"y":20},{"x":34,"y":131}],"type":"coastline"},{"arc":[{"x":65587,"y":66102},{"x":-26,"y":44},{"x":-87,"y":-22},{"x":-21,"y":-61},{"x":38,"y":-13},{"x":-31,"y":-13},{"x":74,"y":-17},{"x":53,"y":82}],"type":"coastline"},{"arc":[{"x":65611,"y":66288},{"x":-7,"y":36},{"x":-37,"y":2},{"x":-30,"y":-51},{"x":42,"y":-12},{"x":32,"y":25}],"type":"coastline"},{"arc":[{"x":68727,"y":68876},{"x":-70,"y":155},{"x":-112,"y":20},{"x":-91,"y":72},{"x":-74,"y":10},{"x":-32,"y":-23},{"x":-31,"y":-187},{"x":20,"y":-64},{"x":96,"y":23},{"x":16,"y":-39},{"x":3,"y":39},{"x":65,"y":-112},{"x":32,"y":-12},{"x":178,"y":118}],"type":"coastline"},{"arc":[{"x":71191,"y":70373},{"x":-70,"y":31},{"x":-198,"y":-54},{"x":-54,"y":25},{"x":-110,"y":-14},{"x":-68,"y":-49},{"x":-52,"y":1},{"x":-68,"y":-112},{"x":-128,"y":-122},{"x":-33,"y":-9},{"x":15,"y":37},{"x":-16,"y":-35},{"x":-63,"y":10},{"x":-38,"y":-62},{"x":14,"y":-86},{"x":87,"y":-29},{"x":6,"y":25},{"x":79,"y":-58},{"x":155,"y":-24},{"x":10,"y":-23},{"x":64,"y":32},{"x":88,"y":-64},{"x":85,"y":48},{"x":25,"y":-44},{"x":40,"y":-1},{"x":0,"y":38},{"x":41,"y":8},{"x":-2,"y":41},{"x":43,"y":4},{"x":-19,"y":66},{"x":98,"y":79},{"x":48,"y":148},{"x":-32,"y":77},{"x":36,"y":24},{"x":17,"y":92}],"type":"coastline"},{"arc":[{"x":71509,"y":68247},{"x":-31,"y":48},{"x":-82,"y":-10},{"x":5,"y":23},{"x":-6,"y":-23},{"x":-26,"y":17},{"x":-121,"y":-38},{"x":56,"y":-43},{"x":-43,"y":-9},{"x":43,"y":4},{"x":66,"y":-65},{"x":121,"y":41},{"x":18,"y":55}],"type":"coastline"},{"arc":[{"x":73873,"y":71527},{"x":-26,"y":60},{"x":17,"y":98},{"x":-79,"y":14},{"x":-45,"y":170},{"x":-49,"y":39},{"x":4,"y":43},{"x":-72,"y":-25},{"x":-10,"y":51},{"x":-36,"y":19},{"x":-85,"y":-39},{"x":-121,"y":20},{"x":-179,"y":184},{"x":-79,"y":55},{"x":-49,"y":-7},{"x":14,"y":-94},{"x":-35,"y":-43},{"x":38,"y":-23},{"x":15,"y":-144},{"x":-78,"y":-139},{"x":17,"y":-77},{"x":61,"y":-75},{"x":130,"y":-74},{"x":78,"y":-10},{"x":-10,"y":-25},{"x":32,"y":6},{"x":17,"y":-41},{"x":-59,"y":16},{"x":58,"y":-17},{"x":47,"y":-66},{"x":111,"y":-20},{"x":16,"y":-27},{"x":30,"y":19},{"x":26,"y":-31},{"x":81,"y":14},{"x":30,"y":43},{"x":98,"y":11},{"x":92,"y":115}],"type":"coastline"},{"arc":[{"x":73879,"y":69148},{"x":-22,"y":28},{"x":-86,"y":-47},{"x":72,"y":-19},{"x":36,"y":38}],"type":"coastline"},{"arc":[{"x":74286,"y":68271},{"x":-47,"y":29},{"x":-27,"y":90},{"x":-79,"y":54},{"x":-21,"y":-19},{"x":-61,"y":28},{"x":-50,"y":-19},{"x":9,"y":-78},{"x":-27,"y":-23},{"x":36,"y":-17},{"x":-12,"y":-71},{"x":30,"y":-33},{"x":192,"y":-9},{"x":37,"y":11},{"x":-7,"y":37},{"x":27,"y":20}],"type":"coastline"},{"arc":[{"x":75437,"y":72199},{"x":-248,"y":68},{"x":-80,"y":67},{"x":-106,"y":43},{"x":-76,"y":114},{"x":-97,"y":23},{"x":-100,"y":-46},{"x":-32,"y":-86},{"x":16,"y":-58},{"x":183,"y":-250},{"x":20,"y":26},{"x":80,"y":-7},{"x":18,"y":-58},{"x":34,"y":-15},{"x":62,"y":60},{"x":50,"y":-12},{"x":13,"y":41},{"x":76,"y":42},{"x":-14,"y":26},{"x":131,"y":-56},{"x":50,"y":28},{"x":20,"y":50}],"type":"coastline"},{"arc":[{"x":99827,"y":79535},{"x":-32,"y":12},{"x":-32,"y":-58},{"x":-60,"y":14},{"x":-25,"y":-29},{"x":-20,"y":19}],"type":"admin"},{"arc":[{"x":99131,"y":79154},{"x":1,"y":-61},{"x":43,"y":-69},{"x":134,"y":-80},{"x":22,"y":-116},{"x":-24,"y":-78},{"x":25,"y":-35},{"x":-22,"y":-137},{"x":41,"y":-150},{"x":58,"y":-8},{"x":21,"y":-94},{"x":-14,"y":-39},{"x":-153,"y":19},{"x":-31,"y":-127},{"x":35,"y":-72},{"x":61,"y":-22},{"x":-35,"y":-103},{"x":-132,"y":-8},{"x":-25,"y":-31},{"x":-81,"y":-6},{"x":-73,"y":-61},{"x":-62,"y":-5},{"x":-88,"y":33},{"x":-19,"y":-89},{"x":-149,"y":68},{"x":-11,"y":-18},{"x":-184,"y":3},{"x":-47,"y":-16},{"x":-57,"y":-71},{"x":194,"y":-38},{"x":50,"y":-41},{"x":72,"y":-186},{"x":19,"y":-107},{"x":-25,"y":-57},{"x":87,"y":-19},{"x":-2,"y":-35},{"x":131,"y":-106},{"x":91,"y":29},{"x":121,"y":-25},{"x":74,"y":40},{"x":258,"y":-24},{"x":59,"y":-34},{"x":26,"y":-54},{"x":62,"y":-8},{"x":76,"y":-126},{"x":60,"y":-23},{"x":40,"y":-180},{"x":76,"y":-130},{"x":120,"y":-60},{"x":39,"y":44},{"x":100,"y":-13},{"x":50,"y":-77},{"x":52,"y":77},{"x":82,"y":-23}],"type":"admin"},{"arc":[{"x":103484,"y":75296},{"x":45,"y":15},{"x":1,"y":26},{"x":-46,"y":-41}],"type":"coastline"},{"arc":[{"x":103540,"y":74946},{"x":-50,"y":-4},{"x":-13,"y":-30},{"x":23,"y":28},{"x":-6,"y":-36},{"x":26,"y":1},{"x":20,"y":41}],"type":"coastline"},{"arc":[{"x":103554,"y":74862},{"x":-20,"y":30},{"x":-32,"y":-26},{"x":-7,"y":19},{"x":-49,"y":-13},{"x":-55,"y":92},{"x":-48,"y":26},{"x":-42,"y":-16},{"x":-45,"y":31},{"x":-27,"y":-16},{"x":-8,"y":32},{"x":-70,"y":19},{"x":33,"y":10},{"x":-32,"y":83},{"x":-84,"y":-66},{"x":-19,"y":-66},{"x":-31,"y":11},{"x":-132,"y":-68},{"x":6,"y":47},{"x":-163,"y":-10},{"x":0,"y":88},{"x":92,"y":9},{"x":-7,"y":24},{"x":-50,"y":2},{"x":34,"y":71},{"x":-56,"y":-20},{"x":-66,"y":60},{"x":-62,"y":14},{"x":-80,"y":-47},{"x":-17,"y":-127},{"x":-130,"y":-139},{"x":-117,"y":-22},{"x":65,"y":-38},{"x":46,"y":4},{"x":-37,"y":-32},{"x":-100,"y":32},{"x":-32,"y":45},{"x":-73,"y":-6},{"x":7,"y":-25},{"x":-69,"y":2},{"x":-38,"y":-54},{"x":-16,"y":25},{"x":-35,"y":-9},{"x":-23,"y":-19},{"x":20,"y":-28},{"x":-43,"y":23},{"x":-56,"y":-30},{"x":-42,"y":21},{"x":-51,"y":-57},{"x":13,"y":-39},{"x":-22,"y":-24},{"x":42,"y":-30},{"x":15,"y":-60},{"x":73,"y":24},{"x":65,"y":-32},{"x":45,"y":-61},{"x":-44,"y":-31},{"x":12,"y":-29},{"x":116,"y":-77},{"x":37,"y":-99},{"x":65,"y":-15},{"x":32,"y":-66},{"x":157,"y":57},{"x":63,"y":-31},{"x":-4,"y":-23},{"x":46,"y":31},{"x":-24,"y":5},{"x":63,"y":21},{"x":93,"y":-36},{"x":3,"y":22},{"x":49,"y":-81},{"x":89,"y":17},{"x":19,"y":-31},{"x":-18,"y":27},{"x":22,"y":3},{"x":1,"y":-23},{"x":1,"y":27},{"x":52,"y":-55},{"x":-13,"y":-68},{"x":25,"y":20},{"x":28,"y":-6},{"x":1,"y":-26},{"x":44,"y":9},{"x":-2,"y":-70},{"x":52,"y":62},{"x":51,"y":-18},{"x":-11,"y":148},{"x":29,"y":4},{"x":50,"y":-121},{"x":-4,"y":167},{"x":61,"y":-73},{"x":21,"y":153},{"x":42,"y":-169},{"x":29,"y":6},{"x":16,"y":60},{"x":36,"y":-10},{"x":-5,"y":-56},{"x":65,"y":13},{"x":14,"y":89},{"x":-46,"y":55},{"x":22,"y":40},{"x":-40,"y":49},{"x":64,"y":-38},{"x":-15,"y":45},{"x":21,"y":14},{"x":-54,"y":100},{"x":-53,"y":18},{"x":-5,"y":26},{"x":-16,"y":-21},{"x":-41,"y":95},{"x":-75,"y":30},{"x":71,"y":10},{"x":22,"y":27},{"x":-5,"y":-38},{"x":50,"y":-62},{"x":58,"y":-3},{"x":57,"y":-36},{"x":-41,"y":91},{"x":39,"y":16},{"x":13,"y":-40},{"x":35,"y":29},{"x":19,"y":-25},{"x":2,"y":38},{"x":11,"y":-28},{"x":51,"y":-9},{"x":14,"y":32},{"x":-27,"y":1},{"x":5,"y":31},{"x":-68,"y":0},{"x":-10,"y":27},{"x":-5,"y":-22},{"x":-16,"y":26},{"x":-53,"y":-15},{"x":-30,"y":44},{"x":39,"y":-2},{"x":29,"y":36},{"x":53,"y":-38},{"x":40,"y":28},{"x":4,"y":41},{"x":52,"y":37}],"type":"coastline"},{"arc":[{"x":103742,"y":74981},{"x":-1,"y":16},{"x":-26,"y":-12},{"x":-22,"y":-55},{"x":49,"y":51}],"type":"coastline"},{"arc":[{"x":103744,"y":75072},{"x":-61,"y":72},{"x":-46,"y":-10},{"x":-42,"y":24},{"x":-33,"y":-19},{"x":-50,"y":25},{"x":-15,"y":61},{"x":-83,"y":-49},{"x":-16,"y":26},{"x":46,"y":44},{"x":-132,"y":-12},{"x":-75,"y":-51},{"x":14,"y":-19},{"x":88,"y":47},{"x":58,"y":-111},{"x":-92,"y":51},{"x":-20,"y":-15},{"x":71,"y":-61},{"x":36,"y":14},{"x":60,"y":-93},{"x":33,"y":17},{"x":-23,"y":35},{"x":60,"y":12},{"x":-1,"y":39},{"x":182,"y":-45},{"x":41,"y":18}],"type":"coastline"},{"arc":[{"x":103874,"y":75365},{"x":-53,"y":70},{"x":-41,"y":6},{"x":-16,"y":-32},{"x":40,"y":-2},{"x":23,"y":-40},{"x":47,"y":-2}],"type":"coastline"},{"arc":[{"x":104005,"y":74936},{"x":-41,"y":0},{"x":-4,"y":-24},{"x":51,"y":3},{"x":-6,"y":21}],"type":"coastline"},{"arc":[{"x":104054,"y":74990},{"x":-11,"y":33},{"x":-84,"y":-1},{"x":-41,"y":-18},{"x":-10,"y":-39},{"x":-6,"y":19},{"x":-17,"y":-27},{"x":-10,"y":20},{"x":-26,"y":-11},{"x":13,"y":-16},{"x":-73,"y":-74},{"x":-91,"y":-2},{"x":8,"y":26},{"x":-74,"y":-44},{"x":-26,"y":15},{"x":-47,"y":-34},{"x":17,"y":-40},{"x":-65,"y":25},{"x":9,"y":-21},{"x":49,"y":-10},{"x":-21,"y":-19},{"x":28,"y":6},{"x":-39,"y":-49},{"x":21,"y":16},{"x":15,"y":-19},{"x":18,"y":27},{"x":87,"y":-50},{"x":73,"y":0},{"x":-55,"y":65},{"x":-19,"y":-7},{"x":9,"y":33},{"x":63,"y":-22},{"x":141,"y":59},{"x":17,"y":25},{"x":-42,"y":32},{"x":80,"y":83},{"x":36,"y":-13},{"x":14,"y":48},{"x":59,"y":-16}],"type":"coastline"},{"arc":[{"x":104528,"y":75720},{"x":-60,"y":-39},{"x":-74,"y":144},{"x":-44,"y":-25},{"x":-158,"y":40},{"x":14,"y":-105},{"x":-32,"y":15},{"x":-28,"y":-25},{"x":-25,"y":27},{"x":6,"y":-74},{"x":-35,"y":-6},{"x":-9,"y":-53},{"x":-48,"y":10},{"x":-64,"y":-139},{"x":-45,"y":59},{"x":-70,"y":18},{"x":88,"y":-160},{"x":36,"y":32},{"x":-101,"y":-147},{"x":-63,"y":-12},{"x":44,"y":-6},{"x":16,"y":-48},{"x":108,"y":49},{"x":121,"y":8},{"x":34,"y":-26},{"x":24,"y":55},{"x":5,"y":-42},{"x":33,"y":28},{"x":-7,"y":-29},{"x":32,"y":6},{"x":65,"y":61},{"x":52,"y":-1},{"x":16,"y":40},{"x":-56,"y":56},{"x":48,"y":5},{"x":-21,"y":55},{"x":67,"y":-10},{"x":32,"y":-52},{"x":-15,"y":31},{"x":44,"y":13},{"x":-17,"y":17},{"x":29,"y":58},{"x":-15,"y":72},{"x":47,"y":22},{"x":7,"y":49},{"x":30,"y":-6},{"x":11,"y":37},{"x":-22,"y":-2}],"type":"coastline"},{"arc":[{"x":93643,"y":84024},{"x":-249,"y":-201},{"x":-401,"y":-205}],"type":"coastline"},{"arc":[{"x":92993,"y":83618},{"x":57,"y":-181},{"x":-32,"y":-204},{"x":99,"y":-82},{"x":68,"y":-112},{"x":107,"y":-36},{"x":219,"y":-22},{"x":27,"y":-32}],"type":"area"},{"arc":[{"x":92652,"y":83765},{"x":-26,"y":-107},{"x":-32,"y":3}],"type":"area"},{"arc":[{"x":92594,"y":83661},{"x":-22,"y":-26},{"x":38,"y":-25},{"x":158,"y":21},{"x":10,"y":103},{"x":-126,"y":31}],"type":"coastline"},{"arc":[{"x":92993,"y":83618},{"x":-146,"y":-42},{"x":-27,"y":22},{"x":7,"y":-25},{"x":-75,"y":-11},{"x":-133,"y":-10},{"x":-21,"y":33},{"x":5,"y":-24},{"x":-40,"y":-8},{"x":31,"y":45},{"x":-33,"y":-47},{"x":-23,"y":11}],"type":"coastline"},{"arc":[{"x":92538,"y":83562},{"x":32,"y":-55},{"x":-61,"y":-126},{"x":10,"y":-120},{"x":-64,"y":-11},{"x":-26,"y":-65},{"x":27,"y":-27},{"x":76,"y":23},{"x":18,"y":-22},{"x":-10,"y":-20},{"x":-70,"y":-1},{"x":30,"y":-45},{"x":59,"y":-1},{"x":36,"y":55},{"x":47,"y":14},{"x":-52,"y":-42},{"x":64,"y":-40}],"type":"area"},{"arc":[{"x":90880,"y":82636},{"x":-88,"y":12},{"x":-177,"y":-150},{"x":-89,"y":-25},{"x":-65,"y":53},{"x":27,"y":80},{"x":-27,"y":30},{"x":10,"y":57},{"x":-44,"y":70},{"x":-41,"y":-1},{"x":-47,"y":67},{"x":-99,"y":-75},{"x":-24,"y":-64},{"x":-66,"y":-30},{"x":-67,"y":-118},{"x":-43,"y":-4},{"x":-71,"y":-96},{"x":-82,"y":27},{"x":-108,"y":-175},{"x":-28,"y":9},{"x":-43,"y":-35},{"x":-67,"y":-87}],"type":"area"},{"arc":[{"x":89641,"y":82181},{"x":-13,"y":-76},{"x":-90,"y":-122},{"x":55,"y":-68},{"x":3,"y":-128},{"x":41,"y":-67},{"x":97,"y":-59},{"x":84,"y":56},{"x":49,"y":88},{"x":101,"y":-2},{"x":-16,"y":-103},{"x":50,"y":77},{"x":9,"y":-82},{"x":38,"y":6},{"x":76,"y":-41},{"x":46,"y":15},{"x":42,"y":-52},{"x":152,"y":-77},{"x":-6,"y":-55},{"x":117,"y":-30},{"x":22,"y":-53},{"x":110,"y":5},{"x":-45,"y":83},{"x":5,"y":67},{"x":-43,"y":30},{"x":49,"y":-15},{"x":114,"y":78},{"x":-35,"y":86},{"x":69,"y":102},{"x":109,"y":-10},{"x":128,"y":-69},{"x":10,"y":-31},{"x":72,"y":-11},{"x":43,"y":-92},{"x":-30,"y":-44},{"x":-56,"y":-36},{"x":-174,"y":-31},{"x":-5,"y":-41},{"x":40,"y":-38},{"x":61,"y":-7},{"x":54,"y":-68},{"x":-48,"y":-95},{"x":-32,"y":-10},{"x":48,"y":-38},{"x":-39,"y":-21},{"x":0,"y":-77},{"x":-65,"y":-56},{"x":10,"y":-72}],"type":"area"},{"arc":[{"x":90848,"y":80997},{"x":169,"y":54},{"x":107,"y":112},{"x":-27,"y":-19},{"x":7,"y":26},{"x":80,"y":58},{"x":46,"y":-16},{"x":-32,"y":-10},{"x":80,"y":-2},{"x":235,"y":59},{"x":65,"y":-7},{"x":42,"y":29},{"x":93,"y":6},{"x":26,"y":-28}],"type":"coastline"},{"arc":[{"x":87976,"y":80021},{"x":-34,"y":0},{"x":10,"y":-29},{"x":24,"y":29}],"type":"coastline"},{"arc":[{"x":89641,"y":82181},{"x":-81,"y":34},{"x":-29,"y":106},{"x":-102,"y":56}],"type":"area"},{"arc":[{"x":89429,"y":82377},{"x":-42,"y":-23},{"x":-87,"y":-158},{"x":-100,"y":-101},{"x":4,"y":-80},{"x":-81,"y":-194},{"x":61,"y":-175},{"x":-65,"y":-33},{"x":-15,"y":-195},{"x":-90,"y":-10},{"x":47,"y":-55},{"x":-4,"y":-44},{"x":-27,"y":6},{"x":9,"y":-57},{"x":-47,"y":-4},{"x":-12,"y":21},{"x":-45,"y":-16},{"x":-33,"y":-99},{"x":-69,"y":-58},{"x":-8,"y":-119},{"x":-59,"y":-54},{"x":-68,"y":2},{"x":30,"y":-68},{"x":44,"y":-18},{"x":-4,"y":-54},{"x":-34,"y":-42},{"x":-74,"y":-7},{"x":-103,"y":-218},{"x":15,"y":-58},{"x":-104,"y":3},{"x":-5,"y":-37},{"x":-39,"y":25},{"x":-3,"y":34},{"x":-47,"y":-30},{"x":-38,"y":10},{"x":59,"y":-94},{"x":-50,"y":-46},{"x":9,"y":-40},{"x":-60,"y":-18},{"x":-16,"y":-40},{"x":43,"y":-98},{"x":-51,"y":-10},{"x":-8,"y":28},{"x":-61,"y":27},{"x":-155,"y":-60},{"x":-6,"y":-20},{"x":58,"y":-38},{"x":-21,"y":-20},{"x":13,"y":-18},{"x":-3,"y":17},{"x":28,"y":-5},{"x":-5,"y":-57},{"x":-53,"y":-28},{"x":-93,"y":7},{"x":8,"y":-50},{"x":-36,"y":6},{"x":-11,"y":-25},{"x":23,"y":-29},{"x":30,"y":12},{"x":48,"y":-36},{"x":36,"y":25},{"x":24,"y":-11},{"x":60,"y":85},{"x":21,"y":-28},{"x":37,"y":44},{"x":57,"y":6},{"x":45,"y":52},{"x":23,"y":-10},{"x":99,"y":59},{"x":46,"y":-9},{"x":58,"y":33},{"x":3,"y":-51},{"x":23,"y":18},{"x":25,"y":-16},{"x":89,"y":46},{"x":-1,"y":-33},{"x":44,"y":-4},{"x":5,"y":-27},{"x":9,"y":36},{"x":30,"y":17},{"x":10,"y":-24},{"x":11,"y":28},{"x":21,"y":-58},{"x":28,"y":17},{"x":72,"y":-164},{"x":-11,"y":-54},{"x":186,"y":152},{"x":44,"y":153},{"x":26,"y":31},{"x":54,"y":-4},{"x":26,"y":23},{"x":2,"y":45},{"x":-5,"y":-29},{"x":-14,"y":26},{"x":51,"y":82},{"x":191,"y":151},{"x":22,"y":172},{"x":191,"y":141},{"x":318,"y":121},{"x":148,"y":30},{"x":156,"y":81},{"x":82,"y":-13},{"x":80,"y":-53},{"x":-5,"y":18},{"x":85,"y":-89},{"x":117,"y":14},{"x":26,"y":-16},{"x":77,"y":54},{"x":-42,"y":38},{"x":28,"y":6},{"x":31,"y":-59},{"x":-21,"y":41},{"x":104,"y":68}],"type":"coastline"},{"arc":[{"x":92652,"y":83765},{"x":-47,"y":4},{"x":-11,"y":-108}],"type":"coastline"},{"arc":[{"x":92538,"y":83562},{"x":-57,"y":78},{"x":-72,"y":254},{"x":-93,"y":152},{"x":-8,"y":137},{"x":-52,"y":68},{"x":-55,"y":173},{"x":20,"y":62},{"x":-41,"y":39},{"x":-54,"y":-55},{"x":-43,"y":19},{"x":-60,"y":-27},{"x":-31,"y":47},{"x":-53,"y":-21},{"x":-77,"y":-147},{"x":-124,"y":-70},{"x":-47,"y":-116},{"x":-153,"y":31},{"x":-19,"y":63},{"x":-4,"y":-42},{"x":-38,"y":56},{"x":-46,"y":-68},{"x":33,"y":73},{"x":62,"y":-13},{"x":-35,"y":39},{"x":39,"y":82},{"x":-42,"y":142},{"x":79,"y":126},{"x":63,"y":24},{"x":-27,"y":85},{"x":-53,"y":12},{"x":-123,"y":-104},{"x":-54,"y":-113},{"x":-63,"y":-1},{"x":-30,"y":-31},{"x":-114,"y":-226},{"x":-72,"y":-23},{"x":-31,"y":-73},{"x":-49,"y":2},{"x":-139,"y":-120},{"x":-1,"y":-94},{"x":-40,"y":-73},{"x":53,"y":-74},{"x":-33,"y":-69},{"x":28,"y":-191},{"x":-136,"y":-106},{"x":-153,"y":33},{"x":-78,"y":-57},{"x":-130,"y":-16},{"x":-114,"y":-185},{"x":-80,"y":21},{"x":-11,"y":55},{"x":-42,"y":30},{"x":-3,"y":-181},{"x":-31,"y":-54},{"x":-80,"y":-9},{"x":-24,"y":63},{"x":-36,"y":21},{"x":-111,"y":-54},{"x":-118,"y":-141},{"x":-56,"y":-136},{"x":-92,"y":-126},{"x":-29,"y":-74},{"x":20,"y":-79},{"x":-95,"y":-13},{"x":-57,"y":-41},{"x":3,"y":-149}],"type":"coastline"},{"arc":[{"x":82778,"y":83739},{"x":-157,"y":24},{"x":-17,"y":-27},{"x":-30,"y":17},{"x":-53,"y":-24},{"x":-8,"y":31},{"x":-35,"y":-65},{"x":-114,"y":-2},{"x":29,"y":-36},{"x":-53,"y":-23},{"x":-4,"y":-48},{"x":-53,"y":-48},{"x":3,"y":-71},{"x":19,"y":29},{"x":9,"y":-32},{"x":-22,"y":-61},{"x":-113,"y":-48},{"x":-138,"y":-16},{"x":-10,"y":-49},{"x":-141,"y":-98},{"x":-257,"y":-27},{"x":-219,"y":-152},{"x":-130,"y":69},{"x":-82,"y":-5},{"x":20,"y":-64},{"x":-25,"y":10},{"x":10,"y":-23},{"x":-46,"y":-30},{"x":-90,"y":49}],"type":"coastline"},{"arc":[{"x":81071,"y":83019},{"x":-64,"y":-108},{"x":48,"y":-65},{"x":-73,"y":-54},{"x":40,"y":-61},{"x":-64,"y":-128},{"x":19,"y":-67},{"x":82,"y":-106},{"x":197,"y":-44},{"x":83,"y":-148},{"x":43,"y":-5},{"x":56,"y":-60}],"type":"area"},{"arc":[{"x":81438,"y":82173},{"x":63,"y":9},{"x":111,"y":158},{"x":314,"y":192},{"x":595,"y":289},{"x":326,"y":97},{"x":51,"y":-29},{"x":93,"y":-7},{"x":-44,"y":-34},{"x":47,"y":32},{"x":118,"y":12},{"x":275,"y":-18}],"type":"coastline"},{"arc":[{"x":80013,"y":82974},{"x":-30,"y":24},{"x":10,"y":-36},{"x":20,"y":12}],"type":"coastline"},{"arc":[{"x":80036,"y":83100},{"x":-24,"y":30},{"x":2,"y":-37},{"x":22,"y":7}],"type":"coastline"},{"arc":[{"x":81057,"y":83182},{"x":-21,"y":-3},{"x":41,"y":-5},{"x":-20,"y":8}],"type":"coastline"},{"arc":[{"x":81280,"y":81984},{"x":-7,"y":-25},{"x":17,"y":50},{"x":-10,"y":-25}],"type":"coastline"},{"arc":[{"x":81071,"y":83019},{"x":-77,"y":125},{"x":-29,"y":-3},{"x":-2,"y":-24},{"x":-19,"y":26},{"x":-17,"y":-32},{"x":-41,"y":75},{"x":-36,"y":1},{"x":0,"y":-26},{"x":-39,"y":17},{"x":-31,"y":-55},{"x":-84,"y":-57},{"x":-28,"y":22},{"x":5,"y":-21},{"x":-145,"y":26},{"x":-87,"y":95},{"x":-33,"y":-8},{"x":-17,"y":26},{"x":12,"y":-54},{"x":-98,"y":-114},{"x":-144,"y":-21},{"x":-99,"y":50},{"x":-16,"y":-85},{"x":-29,"y":3},{"x":30,"y":-6},{"x":-20,"y":-14},{"x":47,"y":-39},{"x":20,"y":-181},{"x":-204,"y":-420},{"x":-111,"y":-99},{"x":-84,"y":-27},{"x":28,"y":-83},{"x":-17,"y":-36},{"x":116,"y":-45},{"x":100,"y":-87},{"x":109,"y":-22},{"x":291,"y":86},{"x":214,"y":6},{"x":170,"y":-35},{"x":307,"y":-121},{"x":123,"y":12},{"x":92,"y":-39},{"x":40,"y":15},{"x":-28,"y":94},{"x":28,"y":22},{"x":-57,"y":17},{"x":51,"y":31},{"x":-48,"y":-11},{"x":-1,"y":46},{"x":51,"y":50},{"x":115,"y":30},{"x":59,"y":44}],"type":"coastline"},{"arc":[{"x":81284,"y":78208},{"x":-96,"y":5},{"x":-24,"y":27},{"x":-61,"y":-31},{"x":-30,"y":14},{"x":36,"y":147},{"x":-150,"y":139},{"x":62,"y":24},{"x":-17,"y":148},{"x":-68,"y":32},{"x":15,"y":47},{"x":-96,"y":110},{"x":-41,"y":152},{"x":-16,"y":-74},{"x":-29,"y":34},{"x":17,"y":27},{"x":-51,"y":-22},{"x":-32,"y":50},{"x":71,"y":32},{"x":-55,"y":-13},{"x":-20,"y":18},{"x":-74,"y":166},{"x":-54,"y":-9},{"x":-42,"y":25},{"x":-35,"y":158},{"x":-70,"y":138},{"x":-3,"y":111},{"x":-59,"y":95},{"x":-88,"y":116},{"x":-172,"y":130},{"x":-238,"y":-57},{"x":-110,"y":12},{"x":-166,"y":-45},{"x":-35,"y":16},{"x":-173,"y":-34},{"x":-27,"y":18},{"x":10,"y":-51},{"x":-66,"y":-26},{"x":-18,"y":27},{"x":35,"y":14},{"x":22,"y":60},{"x":-21,"y":-52},{"x":-78,"y":-36},{"x":-26,"y":12},{"x":-121,"y":-76},{"x":-46,"y":-90},{"x":-111,"y":-62},{"x":-39,"y":-77},{"x":-186,"y":-134},{"x":2,"y":-33},{"x":-59,"y":-59},{"x":-85,"y":-35},{"x":6,"y":16},{"x":-41,"y":-6},{"x":-43,"y":-71},{"x":4,"y":-62},{"x":-80,"y":-50},{"x":12,"y":26},{"x":-57,"y":-70},{"x":21,"y":-20},{"x":-55,"y":-80},{"x":21,"y":-34},{"x":-26,"y":-103},{"x":-59,"y":-31},{"x":41,"y":-29},{"x":-55,"y":-82},{"x":27,"y":-50},{"x":-53,"y":-31},{"x":52,"y":-17},{"x":26,"y":-55},{"x":-64,"y":-22},{"x":16,"y":-23},{"x":-51,"y":-43},{"x":57,"y":-31},{"x":-23,"y":-24},{"x":40,"y":-74},{"x":-23,"y":-56},{"x":35,"y":-17},{"x":-80,"y":-98},{"x":94,"y":-173},{"x":-30,"y":-44},{"x":43,"y":-77},{"x":-17,"y":-94},{"x":48,"y":-94},{"x":-23,"y":-42},{"x":44,"y":-57},{"x":166,"y":-85},{"x":-10,"y":20},{"x":36,"y":-1},{"x":55,"y":-59},{"x":85,"y":-24},{"x":24,"y":-24},{"x":-5,"y":-32},{"x":36,"y":19},{"x":-17,"y":-24},{"x":-23,"y":0},{"x":-14,"y":13},{"x":14,"y":-14},{"x":27,"y":2},{"x":2,"y":-10},{"x":-38,"y":-27},{"x":198,"y":-13},{"x":81,"y":19},{"x":73,"y":-32},{"x":42,"y":24},{"x":65,"y":-60},{"x":172,"y":-42},{"x":23,"y":-102},{"x":57,"y":-24},{"x":168,"y":-44},{"x":57,"y":10},{"x":141,"y":-70},{"x":94,"y":20},{"x":30,"y":-35},{"x":40,"y":16},{"x":112,"y":-43},{"x":56,"y":16},{"x":68,"y":-21},{"x":5,"y":32},{"x":51,"y":-6},{"x":22,"y":20},{"x":50,"y":-24},{"x":-10,"y":95},{"x":58,"y":31},{"x":15,"y":68},{"x":-19,"y":231},{"x":162,"y":157},{"x":75,"y":44},{"x":61,"y":-7},{"x":43,"y":62},{"x":79,"y":28},{"x":58,"y":157},{"x":153,"y":44},{"x":99,"y":-35},{"x":38,"y":10},{"x":-9,"y":50},{"x":47,"y":1},{"x":18,"y":24},{"x":-43,"y":68},{"x":10,"y":112},{"x":-22,"y":-5},{"x":-4,"y":27},{"x":2,"y":-21},{"x":-35,"y":-7},{"x":25,"y":22},{"x":-19,"y":-5},{"x":-2,"y":47},{"x":23,"y":24},{"x":118,"y":-37},{"x":47,"y":50}],"type":"coastline"},{"arc":[{"x":81548,"y":74579},{"x":-66,"y":89},{"x":60,"y":132},{"x":-95,"y":-27},{"x":23,"y":158},{"x":-155,"y":104},{"x":11,"y":56},{"x":124,"y":38},{"x":-122,"y":138},{"x":21,"y":34},{"x":-24,"y":65},{"x":20,"y":2},{"x":-78,"y":74},{"x":26,"y":49},{"x":-131,"y":80},{"x":-4,"y":54},{"x":-62,"y":19},{"x":-2,"y":22},{"x":-9,"y":-16},{"x":-71,"y":150},{"x":-81,"y":-16},{"x":-30,"y":28},{"x":-62,"y":-22},{"x":-17,"y":-33},{"x":71,"y":-76},{"x":-8,"y":-59},{"x":-33,"y":-21},{"x":14,"y":-70},{"x":-21,"y":-48},{"x":-60,"y":7},{"x":-3,"y":-41},{"x":-64,"y":-17},{"x":-19,"y":18},{"x":-5,"y":-100},{"x":31,"y":-43},{"x":-43,"y":-79},{"x":49,"y":0},{"x":29,"y":-69},{"x":62,"y":-20},{"x":32,"y":-63},{"x":74,"y":-37},{"x":44,"y":13},{"x":89,"y":-40},{"x":22,"y":12},{"x":21,"y":38},{"x":23,"y":-7},{"x":-14,"y":9},{"x":-15,"y":-8},{"x":16,"y":29},{"x":69,"y":-4},{"x":22,"y":-48},{"x":-19,"y":7},{"x":15,"y":-11},{"x":-96,"y":-110},{"x":15,"y":-112},{"x":66,"y":15},{"x":36,"y":-21},{"x":-6,"y":-35},{"x":27,"y":29},{"x":38,"y":-6},{"x":102,"y":-129},{"x":16,"y":-62},{"x":60,"y":6},{"x":27,"y":-58},{"x":25,"y":24},{"x":23,"y":-32},{"x":12,"y":41}],"type":"coastline"},{"arc":[{"x":53633,"y":66449},{"x":-12,"y":-69},{"x":152,"y":-121},{"x":11,"y":-256},{"x":61,"y":-61},{"x":100,"y":-41},{"x":17,"y":-39},{"x":-77,"y":-163},{"x":52,"y":-181},{"x":-24,"y":-67},{"x":47,"y":-15},{"x":4,"y":-27},{"x":44,"y":19},{"x":13,"y":38},{"x":37,"y":-4},{"x":71,"y":-63}],"type":"area"},{"arc":[{"x":54129,"y":65399},{"x":6,"y":52},{"x":48,"y":11},{"x":-4,"y":99},{"x":-20,"y":0},{"x":23,"y":86},{"x":63,"y":36},{"x":-8,"y":20},{"x":-45,"y":-5},{"x":-15,"y":55},{"x":37,"y":123},{"x":52,"y":11},{"x":-16,"y":44},{"x":30,"y":23},{"x":-26,"y":17},{"x":102,"y":-43},{"x":62,"y":43},{"x":29,"y":-48},{"x":22,"y":17},{"x":-30,"y":48},{"x":26,"y":108},{"x":104,"y":30},{"x":66,"y":76},{"x":41,"y":-8},{"x":28,"y":46},{"x":-11,"y":81},{"x":-92,"y":44},{"x":-11,"y":79},{"x":-27,"y":-22},{"x":-39,"y":90},{"x":50,"y":64},{"x":104,"y":32},{"x":-5,"y":40},{"x":91,"y":95},{"x":-69,"y":71},{"x":-124,"y":20},{"x":5,"y":31},{"x":-18,"y":-23},{"x":-22,"y":16},{"x":40,"y":48},{"x":21,"y":-24},{"x":-7,"y":32},{"x":53,"y":-7},{"x":-20,"y":58},{"x":25,"y":8},{"x":45,"y":-64},{"x":58,"y":15},{"x":70,"y":-23},{"x":88,"y":-98}],"type":"coastline"},{"arc":[{"x":53906,"y":64627},{"x":11,"y":28},{"x":-52,"y":31},{"x":21,"y":26},{"x":-50,"y":64},{"x":27,"y":53},{"x":-51,"y":89},{"x":-185,"y":94},{"x":32,"y":-94},{"x":-51,"y":-56},{"x":53,"y":-75},{"x":-32,"y":-59},{"x":30,"y":-49},{"x":60,"y":-4},{"x":81,"y":-109},{"x":53,"y":50},{"x":53,"y":11}],"type":"coastline"},{"arc":[{"x":53052,"y":66276},{"x":19,"y":-76},{"x":-81,"y":-99},{"x":67,"y":-68},{"x":-70,"y":-102},{"x":95,"y":-61},{"x":-16,"y":-101},{"x":131,"y":-123},{"x":-52,"y":-137},{"x":-4,"y":-105},{"x":-103,"y":-140},{"x":-33,"y":-143},{"x":94,"y":-57},{"x":-51,"y":-211},{"x":60,"y":-52},{"x":-14,"y":-126},{"x":110,"y":-64},{"x":14,"y":-65},{"x":-30,"y":-139},{"x":36,"y":-63},{"x":-19,"y":-57},{"x":56,"y":-61},{"x":5,"y":-111}],"type":"area"},{"arc":[{"x":53266,"y":64115},{"x":36,"y":108},{"x":-34,"y":201},{"x":125,"y":47},{"x":-9,"y":29},{"x":81,"y":89},{"x":-13,"y":27},{"x":-81,"y":6},{"x":-17,"y":160},{"x":-78,"y":28},{"x":-9,"y":32},{"x":8,"y":-31},{"x":-16,"y":13},{"x":-25,"y":89},{"x":75,"y":37},{"x":151,"y":-21},{"x":-28,"y":56},{"x":67,"y":82},{"x":-49,"y":93},{"x":-79,"y":-2},{"x":48,"y":57},{"x":-19,"y":41},{"x":-42,"y":29},{"x":-34,"y":-34},{"x":-36,"y":5},{"x":-28,"y":32},{"x":-20,"y":-18},{"x":-8,"y":31},{"x":22,"y":24},{"x":49,"y":-24},{"x":-2,"y":32},{"x":29,"y":-11},{"x":65,"y":37},{"x":-5,"y":36},{"x":-50,"y":36},{"x":78,"y":23},{"x":-1,"y":53},{"x":-63,"y":21},{"x":-9,"y":29},{"x":84,"y":23},{"x":63,"y":-13},{"x":1,"y":31},{"x":41,"y":3},{"x":16,"y":104},{"x":-59,"y":70},{"x":64,"y":12},{"x":-22,"y":-15},{"x":28,"y":12},{"x":-12,"y":-16},{"x":34,"y":-14},{"x":55,"y":2},{"x":-24,"y":-210},{"x":74,"y":-59},{"x":-15,"y":-33},{"x":-49,"y":-15},{"x":-58,"y":33},{"x":-62,"y":-15},{"x":16,"y":-44},{"x":-36,"y":-7},{"x":27,"y":-36},{"x":-9,"y":-72},{"x":62,"y":-7},{"x":15,"y":-65},{"x":70,"y":4},{"x":-45,"y":-82},{"x":57,"y":-19},{"x":51,"y":-67},{"x":8,"y":22},{"x":55,"y":0},{"x":-21,"y":-79},{"x":157,"y":-105},{"x":-38,"y":58},{"x":54,"y":44},{"x":-13,"y":28},{"x":49,"y":57},{"x":-33,"y":58},{"x":40,"y":51},{"x":50,"y":15},{"x":-23,"y":52},{"x":68,"y":85},{"x":-7,"y":31},{"x":71,"y":20}],"type":"coastline"},{"arc":[{"x":50084,"y":65364},{"x":-41,"y":11},{"x":12,"y":-45},{"x":29,"y":34}],"type":"coastline"},{"arc":[{"x":50378,"y":65554},{"x":-93,"y":55},{"x":10,"y":-79},{"x":46,"y":-4},{"x":37,"y":28}],"type":"coastline"},{"arc":[{"x":50643,"y":64681},{"x":-23,"y":12},{"x":-30,"y":-63},{"x":53,"y":51}],"type":"coastline"},{"arc":[{"x":50732,"y":64932},{"x":-1,"y":27},{"x":-130,"y":100},{"x":-95,"y":57},{"x":-38,"y":-12},{"x":-25,"y":30},{"x":21,"y":15},{"x":-32,"y":-11},{"x":-5,"y":57},{"x":127,"y":126},{"x":-85,"y":28},{"x":-30,"y":-17},{"x":-25,"y":44},{"x":105,"y":84},{"x":-60,"y":46},{"x":-54,"y":-19},{"x":-39,"y":23},{"x":-72,"y":-37},{"x":-57,"y":30},{"x":-136,"y":-120},{"x":124,"y":-53},{"x":53,"y":-82},{"x":-9,"y":-47},{"x":72,"y":-74},{"x":7,"y":-140},{"x":-56,"y":-52},{"x":31,"y":-27},{"x":89,"y":-11},{"x":85,"y":-59},{"x":68,"y":12},{"x":69,"y":71},{"x":98,"y":11}],"type":"coastline"},{"arc":[{"x":50908,"y":64504},{"x":-116,"y":-27},{"x":-140,"y":93},{"x":-30,"y":-132},{"x":-10,"y":15},{"x":-7,"y":-21},{"x":-41,"y":0},{"x":-56,"y":47},{"x":-101,"y":-61},{"x":-100,"y":13},{"x":-51,"y":-65},{"x":14,"y":-63},{"x":-56,"y":-26},{"x":-2,"y":-27},{"x":116,"y":-43},{"x":92,"y":34},{"x":44,"y":-22},{"x":64,"y":53},{"x":52,"y":-23},{"x":6,"y":26},{"x":38,"y":5},{"x":42,"y":-28},{"x":30,"y":90},{"x":100,"y":14},{"x":14,"y":56},{"x":86,"y":26},{"x":12,"y":66}],"type":"coastline"},{"arc":[{"x":51592,"y":64423},{"x":-97,"y":114},{"x":-65,"y":11},{"x":-11,"y":-33},{"x":89,"y":-50},{"x":1,"y":-71},{"x":58,"y":-26},{"x":25,"y":55}],"type":"coastline"},{"arc":[{"x":51710,"y":64279},{"x":-55,"y":1},{"x":-11,"y":-28},{"x":62,"y":-7},{"x":4,"y":34}],"type":"coastline"},{"arc":[{"x":52550,"y":64477},{"x":-44,"y":29},{"x":-49,"y":-29},{"x":9,"y":-40},{"x":51,"y":-4},{"x":33,"y":44}],"type":"coastline"},{"arc":[{"x":52583,"y":64886},{"x":-60,"y":-3},{"x":-49,"y":27},{"x":-19,"y":96},{"x":40,"y":15},{"x":-4,"y":50},{"x":57,"y":46},{"x":-33,"y":7},{"x":-25,"y":78},{"x":-60,"y":-40},{"x":14,"y":49},{"x":-27,"y":21},{"x":-40,"y":-39},{"x":88,"y":-86},{"x":-9,"y":-65},{"x":-124,"y":-220},{"x":-28,"y":4},{"x":-27,"y":75},{"x":-41,"y":9},{"x":8,"y":39},{"x":-90,"y":-56},{"x":-43,"y":20},{"x":41,"y":120},{"x":-73,"y":-39},{"x":-37,"y":8},{"x":15,"y":37},{"x":-53,"y":25},{"x":-23,"y":59},{"x":71,"y":25},{"x":-95,"y":30},{"x":-15,"y":36},{"x":106,"y":148},{"x":47,"y":12},{"x":122,"y":-31},{"x":22,"y":23},{"x":-1,"y":26},{"x":-104,"y":-20},{"x":-37,"y":12},{"x":7,"y":20},{"x":-74,"y":2},{"x":78,"y":38},{"x":23,"y":-20},{"x":64,"y":10},{"x":-35,"y":79},{"x":-89,"y":8},{"x":-35,"y":37},{"x":-87,"y":4},{"x":-7,"y":-53},{"x":32,"y":-59},{"x":-18,"y":-83},{"x":35,"y":-34},{"x":-72,"y":-80},{"x":-6,"y":112},{"x":-71,"y":-103},{"x":41,"y":146},{"x":-17,"y":16},{"x":-60,"y":-69},{"x":12,"y":-82},{"x":-40,"y":-49},{"x":-47,"y":12},{"x":4,"y":56},{"x":-24,"y":14},{"x":-48,"y":-12},{"x":-6,"y":-31},{"x":-75,"y":-7},{"x":17,"y":79},{"x":83,"y":34},{"x":8,"y":30},{"x":39,"y":1},{"x":-19,"y":59},{"x":48,"y":47},{"x":64,"y":10},{"x":12,"y":48},{"x":-99,"y":4},{"x":-77,"y":-88},{"x":14,"y":-44},{"x":-13,"y":21},{"x":-29,"y":-15},{"x":-31,"y":15},{"x":-54,"y":-23},{"x":-3,"y":-32},{"x":-24,"y":10},{"x":44,"y":63},{"x":52,"y":0},{"x":10,"y":47},{"x":-27,"y":32},{"x":-112,"y":-29},{"x":-17,"y":38},{"x":33,"y":17},{"x":1,"y":33},{"x":37,"y":-11},{"x":64,"y":38},{"x":28,"y":55},{"x":-47,"y":14},{"x":-57,"y":-33},{"x":-22,"y":24},{"x":-46,"y":-6},{"x":-50,"y":31},{"x":-12,"y":47},{"x":186,"y":78},{"x":-24,"y":28},{"x":-48,"y":-5},{"x":-8,"y":40},{"x":-57,"y":-19},{"x":-3,"y":47},{"x":36,"y":32},{"x":-63,"y":-4},{"x":-12,"y":46},{"x":-50,"y":-9},{"x":-41,"y":34},{"x":83,"y":50},{"x":41,"y":0},{"x":17,"y":-26},{"x":24,"y":17},{"x":-41,"y":47},{"x":-8,"y":70},{"x":48,"y":50},{"x":59,"y":-1},{"x":0,"y":18},{"x":-34,"y":27},{"x":-78,"y":2},{"x":-10,"y":84},{"x":-51,"y":10},{"x":-80,"y":-70},{"x":-111,"y":-15},{"x":-65,"y":-52},{"x":-97,"y":-5},{"x":-12,"y":-39},{"x":-26,"y":2},{"x":10,"y":-44},{"x":-37,"y":-70},{"x":-123,"y":-85},{"x":47,"y":0},{"x":36,"y":32},{"x":27,"y":-17},{"x":-6,"y":-46},{"x":79,"y":13},{"x":136,"y":46},{"x":50,"y":48},{"x":54,"y":-28},{"x":20,"y":-48},{"x":-10,"y":-37},{"x":-48,"y":-7},{"x":-76,"y":-103},{"x":39,"y":-33},{"x":18,"y":-91},{"x":-70,"y":-7},{"x":-2,"y":-50},{"x":-33,"y":-19},{"x":-84,"y":39},{"x":-57,"y":-49},{"x":-59,"y":25},{"x":2,"y":29},{"x":-29,"y":-3},{"x":-25,"y":-50},{"x":40,"y":-95},{"x":32,"y":-4},{"x":18,"y":-54},{"x":106,"y":-79},{"x":108,"y":49},{"x":66,"y":-56},{"x":94,"y":13},{"x":82,"y":-19},{"x":68,"y":-93},{"x":-68,"y":-84},{"x":-13,"y":48},{"x":-64,"y":12},{"x":-10,"y":-103},{"x":-62,"y":-15},{"x":-57,"y":-83},{"x":-53,"y":-1},{"x":-97,"y":-74},{"x":-9,"y":-69},{"x":69,"y":-1},{"x":43,"y":-56},{"x":19,"y":101},{"x":55,"y":26},{"x":55,"y":-15},{"x":36,"y":39},{"x":148,"y":-34},{"x":16,"y":-47},{"x":-35,"y":-22},{"x":151,"y":26},{"x":79,"y":-51},{"x":19,"y":29},{"x":73,"y":7},{"x":65,"y":44},{"x":26,"y":-60},{"x":60,"y":-45},{"x":-50,"y":-72},{"x":30,"y":-79},{"x":85,"y":35},{"x":114,"y":-147},{"x":14,"y":35},{"x":148,"y":-24},{"x":53,"y":-70},{"x":129,"y":-30},{"x":41,"y":64},{"x":-50,"y":14},{"x":2,"y":65},{"x":71,"y":32},{"x":27,"y":-14},{"x":78,"y":189}],"type":"coastline"},{"arc":[{"x":52485,"y":67167},{"x":-48,"y":-98},{"x":-35,"y":-15},{"x":86,"y":-121},{"x":-29,"y":-42},{"x":-62,"y":-8},{"x":-55,"y":69},{"x":-139,"y":-17},{"x":-25,"y":-41},{"x":-26,"y":21},{"x":-121,"y":-10},{"x":-13,"y":-37},{"x":-34,"y":-1},{"x":45,"y":-21},{"x":46,"y":-78},{"x":-3,"y":-79},{"x":62,"y":-21},{"x":-32,"y":-63},{"x":28,"y":-78},{"x":-31,"y":-53},{"x":71,"y":6},{"x":12,"y":-69},{"x":57,"y":-64},{"x":-65,"y":-140},{"x":-70,"y":45},{"x":-88,"y":136},{"x":-86,"y":30},{"x":-12,"y":55},{"x":28,"y":21},{"x":-51,"y":2},{"x":-127,"y":64},{"x":-21,"y":-15},{"x":4,"y":41},{"x":-72,"y":-23},{"x":-59,"y":76},{"x":-80,"y":-18},{"x":-74,"y":32},{"x":-51,"y":-24},{"x":49,"y":-50},{"x":-14,"y":-71},{"x":57,"y":28},{"x":43,"y":-72},{"x":48,"y":17},{"x":32,"y":-56},{"x":54,"y":95},{"x":22,"y":-79},{"x":35,"y":7},{"x":17,"y":-21},{"x":2,"y":-38},{"x":-76,"y":-60},{"x":106,"y":-37},{"x":0,"y":-46},{"x":-24,"y":-31},{"x":-73,"y":8},{"x":-22,"y":-59},{"x":79,"y":-41},{"x":-37,"y":-76},{"x":44,"y":-1},{"x":83,"y":-58},{"x":11,"y":15},{"x":-10,"y":-19},{"x":41,"y":-14},{"x":-24,"y":-12},{"x":16,"y":-60},{"x":20,"y":21},{"x":-18,"y":-26},{"x":60,"y":-49},{"x":-21,"y":-66},{"x":39,"y":-1},{"x":31,"y":-44},{"x":31,"y":4},{"x":-13,"y":30},{"x":24,"y":21},{"x":47,"y":1},{"x":18,"y":-102},{"x":36,"y":6},{"x":7,"y":-36},{"x":41,"y":31},{"x":-36,"y":67},{"x":29,"y":2},{"x":-3,"y":38},{"x":40,"y":1},{"x":40,"y":-80},{"x":45,"y":49},{"x":52,"y":-23},{"x":-53,"y":-98},{"x":88,"y":-7},{"x":-13,"y":32},{"x":59,"y":52},{"x":26,"y":-35},{"x":-29,"y":-23},{"x":114,"y":-13},{"x":-1,"y":-22},{"x":-82,"y":9},{"x":-44,"y":-23},{"x":-13,"y":-56},{"x":-56,"y":5},{"x":14,"y":-122},{"x":40,"y":-6},{"x":55,"y":38},{"x":34,"y":-18},{"x":66,"y":82},{"x":110,"y":3},{"x":15,"y":81},{"x":59,"y":40},{"x":-17,"y":32},{"x":25,"y":14},{"x":47,"y":-29},{"x":-18,"y":42},{"x":32,"y":8},{"x":8,"y":42},{"x":51,"y":-8},{"x":0,"y":-22},{"x":-29,"y":3},{"x":24,"y":-30},{"x":-14,"y":-90},{"x":-48,"y":-19},{"x":-23,"y":-55},{"x":-10,"y":-116},{"x":41,"y":5},{"x":5,"y":65},{"x":44,"y":-5},{"x":21,"y":77},{"x":25,"y":-18},{"x":19,"y":32},{"x":51,"y":-3},{"x":11,"y":-22},{"x":-54,"y":-69},{"x":43,"y":4},{"x":7,"y":-25},{"x":-96,"y":-34},{"x":96,"y":-10},{"x":-64,"y":-38},{"x":57,"y":-8},{"x":24,"y":-34},{"x":-70,"y":-26},{"x":-107,"y":25},{"x":-69,"y":-63},{"x":-48,"y":90},{"x":-56,"y":9},{"x":-27,"y":-109},{"x":69,"y":-51},{"x":114,"y":-16},{"x":51,"y":-194},{"x":24,"y":-28},{"x":65,"y":-7},{"x":-24,"y":-47},{"x":-103,"y":-11},{"x":-10,"y":-103},{"x":21,"y":13},{"x":65,"y":-41},{"x":33,"y":-58},{"x":-76,"y":-96},{"x":25,"y":-79},{"x":181,"y":-37},{"x":28,"y":-19},{"x":-9,"y":-24},{"x":38,"y":4},{"x":7,"y":-76},{"x":-24,"y":-17},{"x":-38,"y":14},{"x":-21,"y":-111},{"x":119,"y":-17},{"x":4,"y":-70},{"x":72,"y":0},{"x":10,"y":-78},{"x":32,"y":-12}],"type":"coastline"},{"arc":[{"x":55177,"y":69274},{"x":10,"y":-50},{"x":-83,"y":-172},{"x":-110,"y":-16},{"x":-80,"y":-95},{"x":-92,"y":-58},{"x":-143,"y":-28},{"x":-52,"y":-80},{"x":23,"y":21},{"x":5,"y":-34},{"x":-68,"y":-8},{"x":-66,"y":-73},{"x":-98,"y":-23},{"x":-16,"y":-35}],"type":"coastline"},{"arc":[{"x":55852,"y":68317},{"x":32,"y":48},{"x":-98,"y":93},{"x":-62,"y":37},{"x":-14,"y":-13},{"x":-3,"y":24},{"x":16,"y":35},{"x":51,"y":-18},{"x":67,"y":15},{"x":-21,"y":70},{"x":123,"y":74},{"x":23,"y":87},{"x":-16,"y":-17},{"x":-9,"y":47},{"x":105,"y":75},{"x":15,"y":172},{"x":37,"y":41},{"x":-40,"y":-40},{"x":30,"y":106},{"x":-72,"y":-32},{"x":-71,"y":22},{"x":-17,"y":-64},{"x":-41,"y":-21},{"x":-27,"y":29},{"x":18,"y":-32},{"x":-109,"y":-75},{"x":-220,"y":11},{"x":1,"y":-103},{"x":-80,"y":15},{"x":-44,"y":-58},{"x":-54,"y":21},{"x":-100,"y":-49},{"x":3,"y":69},{"x":36,"y":-9},{"x":-1,"y":-30},{"x":31,"y":40},{"x":-49,"y":21},{"x":-1,"y":36},{"x":209,"y":12},{"x":70,"y":102},{"x":-25,"y":16},{"x":-43,"y":-25},{"x":4,"y":60},{"x":102,"y":20},{"x":79,"y":-48},{"x":55,"y":55},{"x":-59,"y":92},{"x":-36,"y":-26},{"x":-96,"y":34},{"x":-109,"y":-120},{"x":-69,"y":11},{"x":-8,"y":33},{"x":6,"y":-30},{"x":-8,"y":24},{"x":-39,"y":-16},{"x":-43,"y":88},{"x":23,"y":104},{"x":104,"y":42},{"x":44,"y":-18},{"x":57,"y":19}],"type":"coastline"},{"arc":[{"x":54826,"y":73258},{"x":-102,"y":137},{"x":-60,"y":17},{"x":-26,"y":-33},{"x":9,"y":33},{"x":-75,"y":1},{"x":-26,"y":-16},{"x":14,"y":-59},{"x":-25,"y":4},{"x":-9,"y":49},{"x":-69,"y":-54},{"x":0,"y":-49},{"x":-79,"y":-1},{"x":-66,"y":-44},{"x":-23,"y":-66},{"x":55,"y":-33},{"x":-21,"y":-35},{"x":-17,"y":42},{"x":-53,"y":-17},{"x":60,"y":-58},{"x":-70,"y":7},{"x":-11,"y":59},{"x":-45,"y":-61},{"x":-111,"y":-26},{"x":-171,"y":-134},{"x":-40,"y":9},{"x":-181,"y":-96},{"x":26,"y":-35},{"x":-83,"y":-21},{"x":-15,"y":-41},{"x":43,"y":-39},{"x":-34,"y":-19},{"x":-16,"y":38},{"x":-31,"y":-32},{"x":13,"y":-46},{"x":-37,"y":-13},{"x":-31,"y":-60},{"x":42,"y":-49},{"x":-38,"y":12},{"x":8,"y":-41},{"x":-23,"y":-1},{"x":47,"y":-70},{"x":67,"y":-29},{"x":24,"y":21},{"x":-13,"y":-27},{"x":101,"y":-45},{"x":-21,"y":-107},{"x":54,"y":-29},{"x":26,"y":27},{"x":-4,"y":-44},{"x":194,"y":-22},{"x":141,"y":92},{"x":41,"y":101},{"x":-54,"y":51},{"x":15,"y":17},{"x":1,"y":-24},{"x":10,"y":22},{"x":59,"y":-19},{"x":-26,"y":55},{"x":18,"y":54},{"x":-34,"y":11},{"x":37,"y":3},{"x":-13,"y":46},{"x":62,"y":13},{"x":32,"y":86},{"x":47,"y":9},{"x":32,"y":46},{"x":20,"y":73},{"x":86,"y":53},{"x":-1,"y":44},{"x":44,"y":3},{"x":23,"y":40},{"x":125,"y":69},{"x":45,"y":69},{"x":-13,"y":-9},{"x":-20,"y":24},{"x":19,"y":-14},{"x":119,"y":80},{"x":28,"y":101}],"type":"coastline"},{"arc":[{"x":46187,"y":62702},{"x":31,"y":-57},{"x":109,"y":-52},{"x":96,"y":-115},{"x":98,"y":-52},{"x":-41,"y":-17},{"x":11,"y":-72},{"x":35,"y":-29},{"x":-6,"y":-84},{"x":122,"y":0},{"x":77,"y":43},{"x":17,"y":-31}],"type":"area"},{"arc":[{"x":46736,"y":62236},{"x":97,"y":20},{"x":59,"y":157},{"x":48,"y":2},{"x":27,"y":32},{"x":53,"y":-5},{"x":47,"y":51},{"x":84,"y":-12},{"x":113,"y":83},{"x":69,"y":-169},{"x":63,"y":-78},{"x":70,"y":-10},{"x":41,"y":-175},{"x":82,"y":-60},{"x":38,"y":6},{"x":39,"y":-58},{"x":66,"y":-8},{"x":-41,"y":-84},{"x":173,"y":44},{"x":35,"y":-68},{"x":72,"y":-4},{"x":80,"y":-43},{"x":80,"y":129},{"x":62,"y":42},{"x":198,"y":-66},{"x":50,"y":-134},{"x":-22,"y":-65},{"x":259,"y":7}],"type":"area"},{"arc":[{"x":48678,"y":61770},{"x":-51,"y":181},{"x":41,"y":116},{"x":-26,"y":131},{"x":41,"y":188},{"x":-14,"y":49},{"x":-70,"y":-37},{"x":-103,"y":65},{"x":-81,"y":6},{"x":-9,"y":-108},{"x":-67,"y":-67},{"x":-37,"y":2},{"x":30,"y":-5},{"x":-42,"y":-28},{"x":-36,"y":13},{"x":-7,"y":120},{"x":-41,"y":31},{"x":-116,"y":-8},{"x":-53,"y":-54},{"x":-123,"y":88},{"x":-45,"y":-76},{"x":-140,"y":20},{"x":-98,"y":163},{"x":-28,"y":11},{"x":21,"y":-10},{"x":-25,"y":-12},{"x":-39,"y":27},{"x":18,"y":116},{"x":-47,"y":9},{"x":-198,"y":188},{"x":-65,"y":-19},{"x":-60,"y":82},{"x":-15,"y":106},{"x":-81,"y":55},{"x":-115,"y":-6},{"x":-170,"y":-52},{"x":-61,"y":-65},{"x":0,"y":-43},{"x":21,"y":14},{"x":-25,"y":-28},{"x":-30,"y":42},{"x":-182,"y":-56},{"x":-96,"y":20},{"x":-56,"y":-72},{"x":27,"y":-9},{"x":-8,"y":-25},{"x":-118,"y":-79},{"x":-58,"y":21},{"x":-54,"y":-73}],"type":"coastline"},{"arc":[{"x":48167,"y":61537},{"x":0,"y":-18},{"x":53,"y":14},{"x":-53,"y":4}],"type":"coastline"},{"arc":[{"x":46736,"y":62236},{"x":-5,"y":-78},{"x":38,"y":-33},{"x":-17,"y":-192},{"x":60,"y":-28},{"x":-9,"y":-42},{"x":68,"y":-119},{"x":42,"y":-25}],"type":"area"},{"arc":[{"x":46913,"y":61719},{"x":144,"y":39},{"x":43,"y":-74},{"x":30,"y":5},{"x":25,"y":-38},{"x":143,"y":-12},{"x":45,"y":-64},{"x":44,"y":-9},{"x":111,"y":23},{"x":37,"y":-31},{"x":58,"y":-6},{"x":55,"y":38},{"x":-2,"y":31},{"x":23,"y":-50},{"x":24,"y":25},{"x":57,"y":4},{"x":7,"y":-49},{"x":60,"y":-67},{"x":48,"y":-16},{"x":229,"y":28},{"x":-14,"y":23},{"x":-123,"y":-2},{"x":214,"y":86},{"x":44,"y":-3},{"x":31,"y":-44},{"x":-11,"y":45},{"x":18,"y":-43},{"x":-11,"y":59},{"x":41,"y":-1},{"x":48,"y":-51},{"x":222,"y":15},{"x":6,"y":28},{"x":27,"y":-4},{"x":96,"y":80},{"x":-4,"y":86}],"type":"coastline"},{"arc":[{"x":46187,"y":62702},{"x":-82,"y":29},{"x":1,"y":-18},{"x":-244,"y":-127},{"x":-22,"y":-105},{"x":24,"y":-64},{"x":-25,"y":-16},{"x":31,"y":3},{"x":4,"y":-38},{"x":-94,"y":-130},{"x":-33,"y":-175},{"x":63,"y":-108},{"x":106,"y":-55},{"x":229,"y":-9},{"x":-4,"y":-22},{"x":8,"y":19},{"x":43,"y":-27},{"x":149,"y":-174},{"x":-1,"y":-73},{"x":187,"y":-123},{"x":170,"y":195},{"x":107,"y":-1},{"x":52,"y":29},{"x":32,"y":-17},{"x":25,"y":24}],"type":"coastline"},{"arc":[{"x":41966,"y":58833},{"x":19,"y":-42},{"x":92,"y":-32},{"x":175,"y":-150},{"x":-124,"y":-99},{"x":37,"y":-149},{"x":45,"y":-39},{"x":125,"y":59},{"x":124,"y":-27}],"type":"area"},{"arc":[{"x":42459,"y":58354},{"x":-14,"y":128},{"x":-37,"y":56},{"x":58,"y":30},{"x":41,"y":114},{"x":53,"y":38},{"x":-54,"y":83},{"x":61,"y":64},{"x":-7,"y":75},{"x":74,"y":90},{"x":40,"y":-21},{"x":-30,"y":37},{"x":38,"y":32},{"x":-4,"y":32},{"x":65,"y":41},{"x":-4,"y":62},{"x":90,"y":190},{"x":83,"y":51},{"x":49,"y":74},{"x":-24,"y":205},{"x":-66,"y":27},{"x":-19,"y":-41},{"x":-46,"y":-19},{"x":-116,"y":-133},{"x":-67,"y":-188},{"x":-132,"y":-94},{"x":-9,"y":-31},{"x":-50,"y":-18},{"x":-17,"y":37},{"x":-33,"y":-98},{"x":-30,"y":7},{"x":24,"y":21},{"x":-128,"y":-62},{"x":-38,"y":-52},{"x":-199,"y":-127},{"x":-45,"y":-131}],"type":"coastline"},{"arc":[{"x":41966,"y":58833},{"x":-154,"y":-108},{"x":-12,"y":-48},{"x":-59,"y":-24},{"x":-182,"y":-313},{"x":27,"y":7},{"x":-57,"y":-110},{"x":37,"y":58},{"x":-1,"y":-69},{"x":-33,"y":-12},{"x":16,"y":-61},{"x":126,"y":-177},{"x":122,"y":-101},{"x":163,"y":-60},{"x":-20,"y":-21},{"x":50,"y":12},{"x":115,"y":-48},{"x":198,"y":25},{"x":163,"y":70},{"x":44,"y":37},{"x":1,"y":44},{"x":-65,"y":42},{"x":-54,"y":184},{"x":68,"y":194}],"type":"coastline"},{"arc":[{"x":38245,"y":56848},{"x":-29,"y":87},{"x":-179,"y":136},{"x":-64,"y":16},{"x":-105,"y":-17},{"x":-174,"y":50},{"x":-43,"y":-37},{"x":-31,"y":-114},{"x":33,"y":-17},{"x":1,"y":-83},{"x":36,"y":-47},{"x":-23,"y":-49},{"x":36,"y":-47},{"x":48,"y":-3},{"x":-9,"y":-77},{"x":129,"y":-73},{"x":1,"y":-46},{"x":-40,"y":0},{"x":20,"y":-28},{"x":131,"y":-30},{"x":46,"y":22},{"x":-13,"y":33},{"x":30,"y":9},{"x":-48,"y":24},{"x":25,"y":36},{"x":-21,"y":-27},{"x":7,"y":24},{"x":-27,"y":3},{"x":15,"y":64},{"x":23,"y":-16},{"x":0,"y":30},{"x":5,"y":-33},{"x":21,"y":35},{"x":90,"y":0},{"x":68,"y":45},{"x":41,"y":130}],"type":"coastline"},{"arc":[{"x":27844,"y":48955},{"x":-23,"y":117}],"type":"area"},{"arc":[{"x":27821,"y":49072},{"x":-5,"y":11}],"type":"coastline"},{"arc":[{"x":27816,"y":49083},{"x":-8,"y":20}],"type":"area"},{"arc":[{"x":27808,"y":49103},{"x":-9,"y":22}],"type":"coastline"},{"arc":[{"x":27799,"y":49125},{"x":-35,"y":114},{"x":-81,"y":87},{"x":0,"y":221},{"x":49,"y":72},{"x":-27,"y":15},{"x":15,"y":42}],"type":"area"},{"arc":[{"x":27720,"y":49676},{"x":-63,"y":-3},{"x":-58,"y":-50},{"x":-26,"y":31},{"x":-87,"y":-3}],"type":"admin"},{"arc":[{"x":27486,"y":49651},{"x":-35,"y":-87},{"x":-63,"y":-51},{"x":-158,"y":-18},{"x":-21,"y":-79},{"x":-71,"y":-56}],"type":"admin"},{"arc":[{"x":27138,"y":49360},{"x":69,"y":-95},{"x":-18,"y":-92},{"x":51,"y":-68},{"x":-112,"y":-14},{"x":-30,"y":-29},{"x":-63,"y":-84},{"x":10,"y":-66},{"x":-99,"y":-142}],"type":"area"},{"arc":[{"x":26946,"y":48770},{"x":-22,"y":-82},{"x":25,"y":-28},{"x":35,"y":43},{"x":140,"y":-6},{"x":119,"y":-74},{"x":47,"y":50},{"x":60,"y":12},{"x":5,"y":-21},{"x":130,"y":123},{"x":-53,"y":76},{"x":-25,"y":-10},{"x":26,"y":12},{"x":-4,"y":33},{"x":-15,"y":-19},{"x":10,"y":21},{"x":-96,"y":87},{"x":15,"y":15},{"x":26,"y":-20},{"x":-16,"y":28},{"x":24,"y":4},{"x":28,"y":-83},{"x":15,"y":13},{"x":64,"y":-69},{"x":28,"y":27},{"x":9,"y":-12},{"x":-31,"y":-23},{"x":32,"y":21},{"x":-1,"y":43},{"x":21,"y":10},{"x":-14,"y":44},{"x":73,"y":42},{"x":-40,"y":-12},{"x":27,"y":50},{"x":-27,"y":41},{"x":26,"y":8},{"x":10,"y":-31},{"x":36,"y":-1},{"x":-30,"y":-15},{"x":20,"y":-13},{"x":41,"y":2},{"x":-15,"y":20},{"x":120,"y":-10},{"x":-48,"y":-14},{"x":48,"y":-9},{"x":0,"y":-21},{"x":-100,"y":-15},{"x":0,"y":-68},{"x":69,"y":0},{"x":11,"y":54},{"x":95,"y":-38}],"type":"coastline"},{"arc":[{"x":27577,"y":48788},{"x":35,"y":26},{"x":324,"y":30},{"x":-324,"y":-29},{"x":-35,"y":-27}],"type":"coastline"},{"arc":[{"x":28478,"y":50100},{"x":-110,"y":80}],"type":"admin"},{"arc":[{"x":28368,"y":50180},{"x":-365,"y":-205},{"x":-58,"y":21}],"type":"admin"},{"arc":[{"x":27945,"y":49996},{"x":33,"y":-32},{"x":-87,"y":-90},{"x":19,"y":-47}],"type":"admin"},{"arc":[{"x":27910,"y":49827},{"x":84,"y":-111},{"x":-8,"y":-29},{"x":-50,"y":-6},{"x":21,"y":-72},{"x":52,"y":1},{"x":29,"y":-39},{"x":58,"y":21},{"x":11,"y":-32},{"x":73,"y":-29}],"type":"area"},{"arc":[{"x":28180,"y":49531},{"x":24,"y":30},{"x":47,"y":-10},{"x":-27,"y":23},{"x":27,"y":32},{"x":23,"y":-15},{"x":-21,"y":-54},{"x":24,"y":61},{"x":33,"y":-5},{"x":-21,"y":111},{"x":44,"y":-31},{"x":0,"y":52},{"x":44,"y":-4},{"x":27,"y":89},{"x":68,"y":16},{"x":-9,"y":43}],"type":"coastline"},{"arc":[{"x":28463,"y":49869},{"x":-23,"y":51},{"x":59,"y":54},{"x":-21,"y":126}],"type":"admin"},{"arc":[{"x":3608,"y":12409},{"x":-66,"y":47},{"x":88,"y":-64},{"x":-22,"y":17}],"type":"coastline"},{"arc":[{"x":3638,"y":12643},{"x":-25,"y":49},{"x":-34,"y":-71},{"x":-13,"y":-133},{"x":62,"y":-9},{"x":28,"y":130},{"x":-18,"y":34}],"type":"coastline"},{"arc":[{"x":3612,"y":12581},{"x":-6,"y":-37},{"x":-27,"y":4},{"x":22,"y":87},{"x":11,"y":-54}],"type":"coastline"},{"arc":[{"x":5270,"y":12559},{"x":-70,"y":45},{"x":-85,"y":-59},{"x":54,"y":20},{"x":57,"y":-32},{"x":44,"y":26}],"type":"coastline"},{"arc":[{"x":7168,"y":14296},{"x":-58,"y":61},{"x":-25,"y":182},{"x":-122,"y":-34},{"x":-123,"y":39},{"x":-47,"y":-35},{"x":-131,"y":-20},{"x":-71,"y":-49},{"x":-33,"y":-61},{"x":-49,"y":-11},{"x":-52,"y":-112},{"x":-119,"y":-84},{"x":-115,"y":-12},{"x":-71,"y":59},{"x":-58,"y":-18},{"x":-159,"y":-121},{"x":-82,"y":-123},{"x":-166,"y":-28},{"x":-76,"y":15},{"x":-34,"y":-97},{"x":-81,"y":-106},{"x":-167,"y":-107},{"x":-169,"y":-17},{"x":-85,"y":73},{"x":-40,"y":2},{"x":-71,"y":-66},{"x":-93,"y":-18},{"x":-223,"y":92},{"x":-223,"y":-68},{"x":-161,"y":-2},{"x":-29,"y":23},{"x":-281,"y":-53},{"x":-114,"y":-70},{"x":-51,"y":-66},{"x":17,"y":-100},{"x":113,"y":-116},{"x":-14,"y":-144},{"x":-74,"y":-29},{"x":-56,"y":36},{"x":-135,"y":-111},{"x":-34,"y":-98},{"x":6,"y":-108},{"x":-28,"y":-23},{"x":32,"y":-59},{"x":8,"y":22},{"x":7,"y":-25},{"x":11,"y":12},{"x":13,"y":-79},{"x":15,"y":25},{"x":27,"y":-14},{"x":-26,"y":-35},{"x":30,"y":-7},{"x":-13,"y":-83},{"x":25,"y":-4},{"x":-1,"y":24},{"x":7,"y":-24},{"x":49,"y":8},{"x":-31,"y":12},{"x":29,"y":26},{"x":28,"y":-47},{"x":11,"y":18},{"x":39,"y":-26},{"x":-20,"y":-16},{"x":-48,"y":22},{"x":14,"y":-11},{"x":44,"y":-14},{"x":30,"y":25},{"x":70,"y":-212},{"x":114,"y":-138},{"x":142,"y":82},{"x":21,"y":100},{"x":109,"y":104},{"x":67,"y":26},{"x":107,"y":-14},{"x":91,"y":45},{"x":67,"y":-7},{"x":29,"y":-96},{"x":78,"y":-16},{"x":83,"y":-89},{"x":62,"y":-5},{"x":20,"y":-44},{"x":-12,"y":-47},{"x":-50,"y":-30},{"x":44,"y":-30},{"x":-10,"y":-87},{"x":-115,"y":-129},{"x":-92,"y":-37},{"x":123,"y":-73},{"x":28,"y":-72},{"x":42,"y":-14},{"x":209,"y":121},{"x":69,"y":-42},{"x":-20,"y":111},{"x":23,"y":125},{"x":-119,"y":92},{"x":31,"y":117},{"x":66,"y":-7},{"x":-38,"y":-17},{"x":42,"y":15},{"x":3,"y":-23},{"x":36,"y":20},{"x":92,"y":-20},{"x":36,"y":72},{"x":54,"y":21},{"x":59,"y":-22},{"x":38,"y":-108},{"x":34,"y":-2},{"x":31,"y":51},{"x":-75,"y":158},{"x":-122,"y":105},{"x":-63,"y":7},{"x":-75,"y":-49},{"x":-71,"y":20},{"x":-33,"y":-76},{"x":-68,"y":65},{"x":155,"y":129},{"x":-76,"y":225},{"x":4,"y":58},{"x":111,"y":137},{"x":5,"y":132},{"x":-39,"y":36},{"x":16,"y":54},{"x":-27,"y":37},{"x":16,"y":50},{"x":55,"y":34},{"x":67,"y":1},{"x":36,"y":-16},{"x":8,"y":-43},{"x":31,"y":-1},{"x":186,"y":61},{"x":30,"y":47},{"x":139,"y":-26},{"x":-2,"y":110},{"x":264,"y":181},{"x":-66,"y":111},{"x":-126,"y":79},{"x":24,"y":44},{"x":22,"y":-25},{"x":43,"y":6},{"x":115,"y":25},{"x":132,"y":66},{"x":60,"y":-6},{"x":43,"y":29},{"x":32,"y":77},{"x":111,"y":-36},{"x":73,"y":-93},{"x":61,"y":-8},{"x":117,"y":159},{"x":132,"y":39},{"x":82,"y":67},{"x":92,"y":34},{"x":191,"y":2},{"x":30,"y":48}],"type":"coastline"},{"arc":[{"x":21257,"y":6375},{"x":-60,"y":54},{"x":20,"y":-110},{"x":32,"y":10},{"x":8,"y":46}],"type":"coastline"},{"arc":[{"x":21370,"y":6283},{"x":-70,"y":43},{"x":-46,"y":-33},{"x":82,"y":-48},{"x":34,"y":38}],"type":"coastline"},{"arc":[{"x":21589,"y":5611},{"x":-29,"y":107},{"x":-87,"y":69},{"x":-27,"y":-53},{"x":10,"y":-116},{"x":-43,"y":-33},{"x":-33,"y":-150},{"x":59,"y":-17},{"x":53,"y":25},{"x":97,"y":168}],"type":"coastline"},{"arc":[{"x":23759,"y":16804},{"x":-12,"y":20},{"x":-10,"y":-46},{"x":22,"y":26}],"type":"coastline"},{"arc":[{"x":23829,"y":7742},{"x":-68,"y":64},{"x":-35,"y":-9},{"x":-22,"y":-48},{"x":57,"y":-75},{"x":66,"y":40},{"x":2,"y":28}],"type":"coastline"},{"arc":[{"x":27816,"y":49083},{"x":22,"y":-7},{"x":-30,"y":27}],"type":"coastline"},{"arc":[{"x":27844,"y":48955},{"x":58,"y":2},{"x":18,"y":46},{"x":-19,"y":44},{"x":-3,"y":-27},{"x":-54,"y":0},{"x":0,"y":56},{"x":-2,"y":-18},{"x":-21,"y":14}],"type":"coastline"},{"arc":[{"x":28014,"y":48849},{"x":-10,"y":-30},{"x":46,"y":125},{"x":-36,"y":-95}],"type":"coastline"},{"arc":[{"x":27910,"y":49827},{"x":-190,"y":-151}],"type":"admin"},{"arc":[{"x":27799,"y":49125},{"x":167,"y":-14},{"x":-6,"y":-112},{"x":22,"y":32},{"x":-23,"y":155},{"x":133,"y":96},{"x":19,"y":41},{"x":85,"y":43},{"x":-36,"y":25},{"x":47,"y":31},{"x":-7,"y":73},{"x":-47,"y":-5},{"x":38,"y":21},{"x":-32,"y":-4},{"x":21,"y":24}],"type":"coastline"},{"arc":[{"x":32846,"y":52729},{"x":-31,"y":19},{"x":-59,"y":-43},{"x":100,"y":1},{"x":-10,"y":23}],"type":"coastline"},{"arc":[{"x":32902,"y":53212},{"x":-122,"y":48},{"x":-90,"y":3},{"x":-113,"y":114},{"x":-63,"y":21}],"type":"admin"},{"arc":[{"x":32514,"y":53398},{"x":-35,"y":12},{"x":-40,"y":-40},{"x":-90,"y":77},{"x":-32,"y":97},{"x":-57,"y":5},{"x":-21,"y":41},{"x":-35,"y":6},{"x":-8,"y":69},{"x":33,"y":46}],"type":"admin"},{"arc":[{"x":32229,"y":53711},{"x":-56,"y":76},{"x":-204,"y":89},{"x":-47,"y":67},{"x":-26,"y":-135},{"x":-164,"y":5},{"x":27,"y":-41},{"x":-3,"y":-85},{"x":-55,"y":-163},{"x":-93,"y":-104},{"x":-58,"y":13},{"x":20,"y":-86},{"x":-39,"y":-11},{"x":-42,"y":26},{"x":31,"y":-75},{"x":124,"y":-112},{"x":70,"y":-121},{"x":-30,"y":-17},{"x":10,"y":-18},{"x":15,"y":21},{"x":-4,"y":-73},{"x":-42,"y":-35},{"x":-1,"y":-97},{"x":43,"y":-25},{"x":104,"y":11},{"x":-91,"y":-36},{"x":7,"y":-60},{"x":-410,"y":205},{"x":4,"y":-143},{"x":-16,"y":-45},{"x":-25,"y":7},{"x":-11,"y":-8},{"x":34,"y":1},{"x":-6,"y":-14},{"x":-22,"y":9},{"x":36,"y":-34},{"x":-71,"y":21},{"x":-49,"y":-77},{"x":54,"y":-166},{"x":-47,"y":-46},{"x":-48,"y":17},{"x":-23,"y":-22},{"x":7,"y":-26},{"x":69,"y":-23},{"x":-23,"y":-24}],"type":"coastline"},{"arc":[{"x":31178,"y":52357},{"x":58,"y":-6},{"x":54,"y":-51},{"x":25,"y":-129},{"x":45,"y":-27},{"x":38,"y":20},{"x":36,"y":-51},{"x":-87,"y":-4},{"x":-7,"y":-87},{"x":-62,"y":-70},{"x":-43,"y":8},{"x":-22,"y":-25},{"x":-27,"y":-164}],"type":"admin"},{"arc":[{"x":31186,"y":51771},{"x":84,"y":-41},{"x":92,"y":-2},{"x":93,"y":-78}],"type":"admin"},{"arc":[{"x":31455,"y":51650},{"x":24,"y":-11},{"x":-2,"y":25},{"x":68,"y":39},{"x":64,"y":-14},{"x":-9,"y":34},{"x":-62,"y":4},{"x":-29,"y":50},{"x":43,"y":70},{"x":76,"y":33},{"x":22,"y":69},{"x":-32,"y":28},{"x":-38,"y":-11},{"x":2,"y":46},{"x":123,"y":30},{"x":181,"y":131},{"x":127,"y":43},{"x":66,"y":-6},{"x":2,"y":19},{"x":0,"y":-22},{"x":59,"y":5},{"x":-18,"y":-21},{"x":19,"y":12},{"x":33,"y":-29},{"x":-63,"y":8},{"x":79,"y":-12},{"x":-18,"y":-15},{"x":43,"y":-115},{"x":-19,"y":-18},{"x":82,"y":-134},{"x":45,"y":7},{"x":8,"y":-26},{"x":-45,"y":10},{"x":63,"y":-62},{"x":8,"y":-91},{"x":82,"y":-102},{"x":-2,"y":-69},{"x":-102,"y":-73},{"x":58,"y":-133}],"type":"coastline"},{"arc":[{"x":32393,"y":51349},{"x":55,"y":-18},{"x":55,"y":17},{"x":61,"y":92},{"x":92,"y":19},{"x":21,"y":60},{"x":74,"y":38},{"x":8,"y":144},{"x":-44,"y":36},{"x":-6,"y":79},{"x":82,"y":58},{"x":28,"y":84}],"type":"admin"},{"arc":[{"x":32819,"y":51958},{"x":15,"y":57},{"x":-58,"y":55},{"x":70,"y":53},{"x":-55,"y":26},{"x":32,"y":84},{"x":88,"y":31}],"type":"admin"},{"arc":[{"x":32911,"y":52264},{"x":-66,"y":128},{"x":-49,"y":29},{"x":-48,"y":-13},{"x":-36,"y":30},{"x":-11,"y":39},{"x":31,"y":43},{"x":-71,"y":123},{"x":45,"y":9},{"x":-31,"y":10},{"x":36,"y":-5},{"x":-27,"y":7},{"x":61,"y":77},{"x":35,"y":-14},{"x":-18,"y":185},{"x":120,"y":207},{"x":20,"y":93}],"type":"coastline"},{"arc":[{"x":33245,"y":52639},{"x":-15,"y":4},{"x":14,"y":-9},{"x":-19,"y":-19},{"x":21,"y":-3},{"x":-1,"y":27}],"type":"coastline"},{"arc":[{"x":33342,"y":52589},{"x":-69,"y":20},{"x":-23,"y":-9},{"x":-79,"y":27},{"x":-79,"y":52},{"x":-23,"y":50},{"x":-26,"y":-11},{"x":-66,"y":28},{"x":-62,"y":-12},{"x":-37,"y":-32},{"x":44,"y":20},{"x":30,"y":-19},{"x":91,"y":-150},{"x":-23,"y":-66},{"x":-61,"y":-4},{"x":34,"y":-57},{"x":43,"y":-7},{"x":-2,"y":-67},{"x":50,"y":-37},{"x":103,"y":27},{"x":30,"y":-15},{"x":6,"y":41},{"x":52,"y":2},{"x":14,"y":45},{"x":-29,"y":5},{"x":-1,"y":26},{"x":20,"y":-2},{"x":-11,"y":28},{"x":56,"y":11},{"x":-11,"y":75},{"x":29,"y":31}],"type":"coastline"},{"arc":[{"x":26876,"y":49322},{"x":-54,"y":31},{"x":-174,"y":-110},{"x":-85,"y":62},{"x":44,"y":48},{"x":-46,"y":70},{"x":-127,"y":-42},{"x":-35,"y":-39},{"x":-109,"y":67},{"x":-62,"y":-8},{"x":12,"y":15},{"x":-81,"y":50},{"x":-92,"y":18},{"x":10,"y":45},{"x":-104,"y":77}],"type":"admin"},{"arc":[{"x":25973,"y":49606},{"x":-17,"y":-42},{"x":-84,"y":-28},{"x":-38,"y":-107},{"x":37,"y":-69},{"x":-38,"y":-111},{"x":-72,"y":-108},{"x":-83,"y":-65},{"x":-4,"y":-39},{"x":49,"y":-33},{"x":36,"y":-162},{"x":126,"y":-12},{"x":17,"y":23},{"x":125,"y":2},{"x":150,"y":57},{"x":22,"y":-45},{"x":43,"y":12},{"x":26,"y":69},{"x":-75,"y":-30},{"x":80,"y":40},{"x":-13,"y":-73},{"x":62,"y":77},{"x":-13,"y":-70},{"x":20,"y":22},{"x":-12,"y":-15},{"x":40,"y":-20},{"x":48,"y":57},{"x":-36,"y":16},{"x":49,"y":2},{"x":-34,"y":-95},{"x":13,"y":-19},{"x":32,"y":9},{"x":-1,"y":26},{"x":13,"y":-19},{"x":20,"y":12},{"x":-13,"y":-46},{"x":-25,"y":-3},{"x":25,"y":3},{"x":-7,"y":-24},{"x":-95,"y":22},{"x":1,"y":26},{"x":-25,"y":-46},{"x":12,"y":-31},{"x":0,"y":21},{"x":25,"y":-22},{"x":209,"y":-26},{"x":87,"y":220}],"type":"coastline"},{"arc":[{"x":26655,"y":48962},{"x":91,"y":107},{"x":-45,"y":52},{"x":97,"y":67},{"x":30,"y":-5},{"x":-24,"y":104},{"x":31,"y":23},{"x":21,"y":-23},{"x":20,"y":35}],"type":"area"},{"arc":[{"x":28605,"y":50974},{"x":0,"y":-36},{"x":2,"y":83},{"x":-2,"y":-47}],"type":"coastline"},{"arc":[{"x":28961,"y":50760},{"x":-104,"y":129}],"type":"area"},{"arc":[{"x":28857,"y":50889},{"x":-21,"y":-22},{"x":31,"y":-100},{"x":-20,"y":-14},{"x":21,"y":13},{"x":27,"y":-22},{"x":-21,"y":-21},{"x":-19,"y":12},{"x":43,"y":-36},{"x":63,"y":61}],"type":"coastline"},{"arc":[{"x":28964,"y":50753},{"x":-42,"y":-46},{"x":-68,"y":-35},{"x":-20,"y":45},{"x":13,"y":-32},{"x":-39,"y":-11},{"x":20,"y":26},{"x":-13,"y":35},{"x":-25,"y":-4},{"x":25,"y":9},{"x":-34,"y":3},{"x":-6,"y":52},{"x":-66,"y":10},{"x":8,"y":-108},{"x":-24,"y":-81},{"x":-31,"y":-8},{"x":-68,"y":51},{"x":28,"y":85},{"x":-77,"y":79},{"x":5,"y":-25},{"x":-31,"y":-4},{"x":-6,"y":-10},{"x":20,"y":10},{"x":13,"y":-34},{"x":-25,"y":-52},{"x":141,"y":-100},{"x":-84,"y":2}],"type":"coastline"},{"arc":[{"x":28578,"y":50610},{"x":31,"y":-34},{"x":-19,"y":-152},{"x":73,"y":-34},{"x":192,"y":-2},{"x":-4,"y":-68},{"x":-58,"y":-30},{"x":20,"y":-27},{"x":-30,"y":-24},{"x":-22,"y":31},{"x":-33,"y":-46},{"x":23,"y":-68}],"type":"admin"},{"arc":[{"x":28751,"y":50156},{"x":-3,"y":-63},{"x":54,"y":34},{"x":44,"y":-44},{"x":59,"y":7},{"x":118,"y":-65},{"x":47,"y":59}],"type":"admin"},{"arc":[{"x":29070,"y":50084},{"x":-23,"y":27},{"x":89,"y":42},{"x":52,"y":-11},{"x":-18,"y":-43},{"x":194,"y":-12},{"x":83,"y":48},{"x":123,"y":-15},{"x":74,"y":51},{"x":225,"y":24},{"x":23,"y":-36}],"type":"admin"},{"arc":[{"x":29892,"y":50159},{"x":100,"y":10}],"type":"admin"},{"arc":[{"x":29992,"y":50169},{"x":74,"y":24}],"type":"admin"},{"arc":[{"x":30066,"y":50193},{"x":-142,"y":55},{"x":-86,"y":7},{"x":-158,"y":98},{"x":26,"y":45},{"x":82,"y":38},{"x":-163,"y":90},{"x":78,"y":53},{"x":-46,"y":53},{"x":-75,"y":20},{"x":3,"y":35},{"x":-41,"y":8},{"x":-58,"y":-84},{"x":-107,"y":16},{"x":-67,"y":-60},{"x":12,"y":-18},{"x":-45,"y":-17},{"x":-27,"y":56},{"x":-72,"y":-18},{"x":-91,"y":50},{"x":-56,"y":85},{"x":-69,"y":48}],"type":"area"},{"arc":[{"x":26772,"y":48806},{"x":-18,"y":15},{"x":10,"y":51},{"x":-88,"y":73},{"x":-27,"y":-83},{"x":14,"y":-99},{"x":78,"y":-7},{"x":31,"y":50}],"type":"coastline"},{"arc":[{"x":27138,"y":49360},{"x":-129,"y":63}],"type":"admin"},{"arc":[{"x":27009,"y":49423},{"x":-98,"y":-99},{"x":-35,"y":-2}],"type":"admin"},{"arc":[{"x":26655,"y":48962},{"x":126,"y":-93},{"x":0,"y":-59},{"x":-18,"y":-48},{"x":-28,"y":-14},{"x":-55,"y":9},{"x":-10,"y":-23},{"x":79,"y":-15},{"x":48,"y":84},{"x":25,"y":-3},{"x":-11,"y":-44},{"x":22,"y":0},{"x":0,"y":44},{"x":37,"y":-13},{"x":-2,"y":-39},{"x":62,"y":-3},{"x":-5,"y":78},{"x":21,"y":-53}],"type":"coastline"},{"arc":[{"x":28048,"y":51808},{"x":-55,"y":39},{"x":-163,"y":-32},{"x":13,"y":-28},{"x":-57,"y":4},{"x":20,"y":-94},{"x":19,"y":-17},{"x":-11,"y":62},{"x":35,"y":-39},{"x":-22,"y":-10},{"x":54,"y":10},{"x":50,"y":42},{"x":117,"y":-12},{"x":0,"y":75}],"type":"coastline"},{"arc":[{"x":28578,"y":52307},{"x":-47,"y":34},{"x":-23,"y":-63},{"x":40,"y":-18},{"x":30,"y":47}],"type":"coastline"},{"arc":[{"x":28820,"y":51602},{"x":-137,"y":56},{"x":56,"y":-52},{"x":7,"y":-52},{"x":52,"y":-28},{"x":22,"y":76}],"type":"coastline"},{"arc":[{"x":28894,"y":51892},{"x":-2,"y":46},{"x":-61,"y":74},{"x":9,"y":28},{"x":-38,"y":3},{"x":20,"y":19},{"x":-65,"y":-23},{"x":-22,"y":-65},{"x":-35,"y":13},{"x":23,"y":-17},{"x":-87,"y":-10},{"x":80,"y":-70},{"x":153,"y":-21},{"x":20,"y":51},{"x":5,"y":-28}],"type":"coastline"},{"arc":[{"x":28931,"y":51700},{"x":-6,"y":-172},{"x":7,"y":156},{"x":44,"y":72},{"x":-45,"y":-56}],"type":"coastline"},{"arc":[{"x":28961,"y":50760},{"x":25,"y":58},{"x":65,"y":66},{"x":28,"y":68},{"x":-98,"y":68},{"x":-76,"y":17},{"x":-34,"y":-37},{"x":79,"y":-83},{"x":-32,"y":-33},{"x":-36,"y":29},{"x":-25,"y":-24}],"type":"coastline"},{"arc":[{"x":29349,"y":52026},{"x":-43,"y":38},{"x":-81,"y":2},{"x":-15,"y":52},{"x":-38,"y":10},{"x":-201,"y":-179},{"x":39,"y":13},{"x":13,"y":-32},{"x":-31,"y":-9},{"x":-13,"y":21},{"x":12,"y":-25},{"x":41,"y":-10},{"x":-6,"y":-83},{"x":-45,"y":-66},{"x":69,"y":70},{"x":45,"y":-35},{"x":53,"y":26},{"x":-30,"y":21},{"x":-66,"y":-11},{"x":53,"y":16},{"x":61,"y":-20},{"x":43,"y":-31},{"x":120,"y":-3},{"x":-87,"y":17},{"x":-2,"y":112},{"x":75,"y":125},{"x":31,"y":-19},{"x":-15,"y":-15},{"x":18,"y":15}],"type":"coastline"},{"arc":[{"x":29602,"y":52257},{"x":-75,"y":26},{"x":-37,"y":-55},{"x":-25,"y":8},{"x":-1,"y":72},{"x":-92,"y":41},{"x":6,"y":-33},{"x":-51,"y":5},{"x":-18,"y":24},{"x":-50,"y":-141},{"x":-72,"y":-75},{"x":13,"y":14},{"x":36,"y":-76},{"x":151,"y":-5},{"x":107,"y":47},{"x":43,"y":103},{"x":65,"y":45}],"type":"coastline"},{"arc":[{"x":29802,"y":52380},{"x":-31,"y":43},{"x":-205,"y":-59},{"x":9,"y":-71},{"x":49,"y":10},{"x":-10,"y":-39},{"x":38,"y":29},{"x":50,"y":-29},{"x":30,"y":49},{"x":55,"y":22},{"x":15,"y":45}],"type":"coastline"},{"arc":[{"x":30419,"y":50679},{"x":-11,"y":28},{"x":-170,"y":37}],"type":"admin"},{"arc":[{"x":30238,"y":50744},{"x":-22,"y":-11},{"x":-24,"y":34}],"type":"area"},{"arc":[{"x":30192,"y":50767},{"x":-51,"y":-5},{"x":26,"y":-11},{"x":-34,"y":-21},{"x":65,"y":-99},{"x":-23,"y":-2},{"x":-13,"y":22},{"x":-43,"y":9},{"x":-27,"y":-4},{"x":48,"y":-3},{"x":16,"y":-8},{"x":3,"y":-21},{"x":-27,"y":-1},{"x":0,"y":23},{"x":-57,"y":-56},{"x":-49,"y":37},{"x":-5,"y":88},{"x":-27,"y":6},{"x":-24,"y":-30},{"x":-106,"y":49},{"x":13,"y":100},{"x":-18,"y":-62},{"x":-39,"y":28},{"x":-56,"y":128},{"x":-65,"y":23},{"x":-81,"y":123},{"x":-98,"y":65},{"x":-27,"y":8},{"x":-46,"y":-104},{"x":6,"y":40},{"x":-53,"y":23},{"x":46,"y":-23},{"x":-54,"y":17},{"x":-31,"y":-35},{"x":-82,"y":2},{"x":-217,"y":137},{"x":-14,"y":39},{"x":-5,"y":-26},{"x":-85,"y":92},{"x":-29,"y":49},{"x":-1,"y":137},{"x":-12,"y":-95},{"x":-168,"y":140},{"x":-12,"y":-15},{"x":-66,"y":22},{"x":-10,"y":34},{"x":-7,"y":-28},{"x":-39,"y":18},{"x":21,"y":18},{"x":-34,"y":-28},{"x":-50,"y":24},{"x":-82,"y":-14},{"x":-15,"y":-67},{"x":84,"y":-63},{"x":-40,"y":-24},{"x":41,"y":19},{"x":22,"y":-15},{"x":-4,"y":21},{"x":7,"y":-15},{"x":-7,"y":-26},{"x":-40,"y":-22},{"x":43,"y":14},{"x":78,"y":-121},{"x":283,"y":-226},{"x":-41,"y":9},{"x":201,"y":-77},{"x":-28,"y":-2},{"x":38,"y":-27},{"x":-18,"y":5},{"x":10,"y":-9},{"x":-24,"y":-77},{"x":-95,"y":-121}],"type":"coastline"},{"arc":[{"x":30066,"y":50193},{"x":152,"y":201},{"x":80,"y":28},{"x":3,"y":33},{"x":61,"y":36},{"x":63,"y":124},{"x":-6,"y":64}],"type":"admin"},{"arc":[{"x":8681,"y":23864},{"x":-89,"y":158},{"x":-115,"y":-4},{"x":-27,"y":-118},{"x":46,"y":-52},{"x":61,"y":-17},{"x":124,"y":33}],"type":"coastline"},{"arc":[{"x":9102,"y":24273},{"x":-23,"y":4},{"x":31,"y":-20},{"x":-8,"y":16}],"type":"coastline"},{"arc":[{"x":9597,"y":24114},{"x":-15,"y":-31},{"x":-41,"y":3},{"x":20,"y":-20},{"x":-49,"y":-8},{"x":-20,"y":-33},{"x":94,"y":-13},{"x":11,"y":102}],"type":"coastline"},{"arc":[{"x":9661,"y":24147},{"x":-37,"y":-17},{"x":58,"y":20},{"x":-21,"y":-3}],"type":"coastline"},{"arc":[{"x":9757,"y":24237},{"x":-24,"y":4},{"x":24,"y":-4},{"x":-41,"y":-81},{"x":41,"y":81}],"type":"coastline"},{"arc":[{"x":10046,"y":23578},{"x":-62,"y":43},{"x":80,"y":-48},{"x":-18,"y":5}],"type":"coastline"},{"arc":[{"x":10110,"y":22812},{"x":-36,"y":36},{"x":-124,"y":41},{"x":-6,"y":69},{"x":23,"y":10},{"x":-22,"y":8},{"x":24,"y":8},{"x":-47,"y":20},{"x":-7,"y":24},{"x":-88,"y":48},{"x":-16,"y":27},{"x":-32,"y":6},{"x":-57,"y":69},{"x":-45,"y":18},{"x":1,"y":-23},{"x":-77,"y":-33},{"x":-28,"y":-97},{"x":64,"y":-182},{"x":30,"y":15},{"x":23,"y":-34},{"x":31,"y":21},{"x":-4,"y":-46},{"x":21,"y":22},{"x":13,"y":-45},{"x":25,"y":20},{"x":70,"y":-11},{"x":-26,"y":-30},{"x":32,"y":-14},{"x":40,"y":45},{"x":2,"y":-41},{"x":95,"y":-2},{"x":27,"y":50},{"x":94,"y":1}],"type":"coastline"},{"arc":[{"x":10373,"y":23052},{"x":-48,"y":160},{"x":-89,"y":105},{"x":-95,"y":208},{"x":-70,"y":58},{"x":22,"y":-25},{"x":-246,"y":92},{"x":-124,"y":8},{"x":-92,"y":-58},{"x":-22,"y":-106},{"x":-30,"y":-25},{"x":25,"y":7},{"x":11,"y":-25},{"x":-29,"y":-7},{"x":-55,"y":54},{"x":54,"y":-56},{"x":19,"y":-1},{"x":10,"y":-19},{"x":-3,"y":-43},{"x":82,"y":-121},{"x":-11,"y":-57},{"x":57,"y":-23},{"x":49,"y":-63},{"x":23,"y":2},{"x":18,"y":-36},{"x":-7,"y":27},{"x":58,"y":-59},{"x":24,"y":-6},{"x":-3,"y":16},{"x":32,"y":-51},{"x":67,"y":-17},{"x":-26,"y":-14},{"x":42,"y":-7},{"x":44,"y":48},{"x":137,"y":-21},{"x":-28,"y":-25},{"x":37,"y":24},{"x":57,"y":-16},{"x":110,"y":72}],"type":"coastline"},{"arc":[{"x":10998,"y":24124},{"x":-81,"y":43},{"x":-80,"y":11},{"x":-122,"y":109},{"x":-104,"y":13},{"x":1,"y":28},{"x":-19,"y":-17},{"x":-69,"y":99},{"x":16,"y":40},{"x":-211,"y":77},{"x":-155,"y":0},{"x":-155,"y":71},{"x":-193,"y":234},{"x":-65,"y":-42},{"x":-66,"y":-5},{"x":-87,"y":8},{"x":-11,"y":22},{"x":1,"y":-18},{"x":-55,"y":49},{"x":-11,"y":-17},{"x":-37,"y":117},{"x":-89,"y":88},{"x":2,"y":97},{"x":42,"y":53},{"x":-60,"y":139},{"x":-54,"y":62},{"x":-136,"y":44},{"x":-14,"y":57},{"x":-8,"y":-21},{"x":-60,"y":62},{"x":9,"y":45},{"x":-42,"y":53},{"x":11,"y":61},{"x":-56,"y":82},{"x":12,"y":76},{"x":-77,"y":77},{"x":-106,"y":24},{"x":-177,"y":121},{"x":-174,"y":150},{"x":150,"y":-165},{"x":-16,"y":-34},{"x":-48,"y":-4},{"x":-7,"y":-32},{"x":55,"y":-74},{"x":3,"y":-86},{"x":-44,"y":-65},{"x":48,"y":-193},{"x":-13,"y":-154},{"x":-53,"y":-142},{"x":59,"y":-74},{"x":-76,"y":-89},{"x":24,"y":-1},{"x":-7,"y":-59},{"x":-27,"y":32},{"x":-37,"y":-180},{"x":-32,"y":-1},{"x":31,"y":-108},{"x":-27,"y":-47},{"x":27,"y":16},{"x":-34,"y":-48},{"x":28,"y":-6},{"x":-74,"y":-53},{"x":-21,"y":-93},{"x":50,"y":-21},{"x":-38,"y":-13},{"x":100,"y":-94},{"x":100,"y":28},{"x":69,"y":-17},{"x":7,"y":-43},{"x":-113,"y":45},{"x":-90,"y":-28},{"x":59,"y":-52},{"x":40,"y":-96},{"x":-15,"y":-18},{"x":103,"y":-109},{"x":28,"y":-74},{"x":123,"y":-21},{"x":144,"y":-69},{"x":84,"y":73},{"x":69,"y":17},{"x":-48,"y":16},{"x":-64,"y":-25},{"x":-107,"y":61},{"x":37,"y":61},{"x":-58,"y":55},{"x":46,"y":80},{"x":28,"y":-33},{"x":65,"y":16},{"x":4,"y":-21},{"x":43,"y":8},{"x":105,"y":-64},{"x":11,"y":17},{"x":134,"y":-101},{"x":-30,"y":-24},{"x":32,"y":-26},{"x":-32,"y":0},{"x":30,"y":-39},{"x":49,"y":-29},{"x":86,"y":-5},{"x":32,"y":50},{"x":50,"y":5},{"x":-28,"y":23},{"x":2,"y":32},{"x":66,"y":9},{"x":-15,"y":43},{"x":35,"y":-1},{"x":-4,"y":22},{"x":8,"y":-19},{"x":28,"y":53},{"x":26,"y":-8},{"x":-15,"y":29},{"x":34,"y":-23},{"x":4,"y":30},{"x":47,"y":16},{"x":-2,"y":-22},{"x":48,"y":8},{"x":-20,"y":-34},{"x":21,"y":34},{"x":35,"y":-19},{"x":25,"y":27},{"x":112,"y":-40},{"x":64,"y":14},{"x":42,"y":39},{"x":-25,"y":44},{"x":51,"y":-1},{"x":-44,"y":57},{"x":-17,"y":-19},{"x":-30,"y":61},{"x":75,"y":-27},{"x":48,"y":35},{"x":145,"y":-72},{"x":6,"y":-41},{"x":108,"y":-20},{"x":76,"y":-61},{"x":18,"y":10},{"x":2,"y":-23},{"x":20,"y":22},{"x":11,"y":-39},{"x":40,"y":5},{"x":3,"y":-27},{"x":46,"y":8},{"x":43,"y":-32},{"x":71,"y":10},{"x":63,"y":-72},{"x":103,"y":-40},{"x":53,"y":-56},{"x":-20,"y":44},{"x":-75,"y":54},{"x":9,"y":19},{"x":13,"y":-22},{"x":-19,"y":41},{"x":44,"y":26},{"x":124,"y":-52},{"x":-17,"y":13}],"type":"coastline"},{"arc":[{"x":11063,"y":24536},{"x":-51,"y":41},{"x":-49,"y":-36},{"x":50,"y":-24},{"x":50,"y":19}],"type":"coastline"},{"arc":[{"x":11295,"y":23844},{"x":8,"y":35},{"x":-52,"y":63},{"x":-133,"y":66},{"x":3,"y":-49},{"x":-51,"y":-11},{"x":54,"y":9},{"x":21,"y":-40},{"x":-34,"y":24},{"x":-52,"y":-11},{"x":117,"y":-151},{"x":81,"y":-27},{"x":38,"y":92}],"type":"coastline"},{"arc":[{"x":26400,"y":50059},{"x":-34,"y":15},{"x":-34,"y":-34},{"x":18,"y":-43},{"x":46,"y":18},{"x":4,"y":44}],"type":"coastline"},{"arc":[{"x":26904,"y":51446},{"x":-50,"y":-21},{"x":-201,"y":-231},{"x":6,"y":-10},{"x":42,"y":-20},{"x":-45,"y":29},{"x":33,"y":8},{"x":19,"y":-27},{"x":47,"y":30},{"x":2,"y":-22},{"x":147,"y":264}],"type":"coastline"},{"arc":[{"x":27117,"y":50066},{"x":-64,"y":35},{"x":-38,"y":1},{"x":24,"y":-25},{"x":-30,"y":-11},{"x":-6,"y":27},{"x":-91,"y":-9},{"x":-5,"y":70},{"x":21,"y":8},{"x":-41,"y":45},{"x":64,"y":26},{"x":69,"y":-11},{"x":58,"y":40},{"x":-8,"y":-30},{"x":62,"y":188},{"x":22,"y":-6},{"x":-18,"y":26},{"x":7,"y":36},{"x":16,"y":-32},{"x":-4,"y":88},{"x":-142,"y":15},{"x":-13,"y":52},{"x":21,"y":-18},{"x":-50,"y":58},{"x":-27,"y":-18},{"x":-104,"y":14},{"x":-27,"y":-25},{"x":19,"y":-27},{"x":-108,"y":-67},{"x":-31,"y":-82},{"x":-46,"y":-39},{"x":-35,"y":25},{"x":-38,"y":-38},{"x":24,"y":20},{"x":22,"y":-17},{"x":-10,"y":-19},{"x":-24,"y":15},{"x":-1,"y":-42},{"x":-148,"y":-99},{"x":-34,"y":-66},{"x":35,"y":-115},{"x":-47,"y":-77},{"x":-65,"y":-6},{"x":-3,"y":-53}],"type":"coastline"},{"arc":[{"x":26323,"y":49923},{"x":88,"y":-31},{"x":4,"y":-63},{"x":143,"y":-114},{"x":92,"y":-28},{"x":8,"y":-89},{"x":174,"y":9},{"x":31,"y":-22}],"type":"admin"},{"arc":[{"x":26863,"y":49585},{"x":50,"y":50},{"x":121,"y":-3},{"x":88,"y":58},{"x":105,"y":11},{"x":16,"y":57}],"type":"admin"},{"arc":[{"x":27243,"y":49758},{"x":-33,"y":8},{"x":21,"y":17},{"x":-38,"y":143},{"x":-106,"y":31},{"x":4,"y":85},{"x":26,"y":24}],"type":"admin"},{"arc":[{"x":34195,"y":55797},{"x":-6,"y":47},{"x":-26,"y":4},{"x":32,"y":-51}],"type":"coastline"},{"arc":[{"x":33179,"y":55119},{"x":10,"y":-44},{"x":141,"y":-98},{"x":84,"y":-10},{"x":42,"y":-63},{"x":172,"y":-17},{"x":4,"y":-88},{"x":62,"y":-122},{"x":-47,"y":-10},{"x":-75,"y":-130},{"x":-115,"y":-25},{"x":-1,"y":-62}],"type":"area"},{"arc":[{"x":33456,"y":54450},{"x":130,"y":-101},{"x":80,"y":-182},{"x":70,"y":-44},{"x":75,"y":-143}],"type":"area"},{"arc":[{"x":33811,"y":53980},{"x":69,"y":54},{"x":59,"y":9},{"x":136,"y":-40},{"x":34,"y":-66},{"x":57,"y":26},{"x":-3,"y":36},{"x":-35,"y":9},{"x":4,"y":63},{"x":89,"y":144},{"x":-22,"y":-12},{"x":19,"y":81},{"x":147,"y":65},{"x":84,"y":77},{"x":-25,"y":14},{"x":9,"y":47},{"x":105,"y":10},{"x":113,"y":144},{"x":52,"y":18},{"x":18,"y":37},{"x":97,"y":24},{"x":9,"y":60},{"x":89,"y":-14},{"x":248,"y":136},{"x":79,"y":5},{"x":150,"y":93},{"x":108,"y":-2},{"x":-7,"y":-25},{"x":14,"y":10},{"x":83,"y":-77},{"x":105,"y":19},{"x":108,"y":110},{"x":-12,"y":72},{"x":-29,"y":23},{"x":-22,"y":-38},{"x":-49,"y":-1},{"x":-94,"y":87},{"x":-33,"y":102},{"x":-68,"y":5},{"x":-71,"y":117},{"x":-1,"y":-28},{"x":-46,"y":7},{"x":8,"y":48},{"x":42,"y":17},{"x":17,"y":40},{"x":-27,"y":58},{"x":-203,"y":-3},{"x":-58,"y":39},{"x":-30,"y":70},{"x":-81,"y":11},{"x":-17,"y":35},{"x":-102,"y":-29},{"x":-131,"y":40},{"x":-40,"y":-48},{"x":-48,"y":61},{"x":-129,"y":37},{"x":-78,"y":-42},{"x":-85,"y":33},{"x":-109,"y":-46},{"x":-36,"y":35},{"x":25,"y":32},{"x":-86,"y":-5},{"x":-15,"y":-53},{"x":-59,"y":-36},{"x":-5,"y":20},{"x":3,"y":-26},{"x":-7,"y":49},{"x":-6,"y":-44},{"x":-22,"y":4},{"x":31,"y":61},{"x":-57,"y":-65},{"x":-50,"y":0},{"x":-58,"y":-128},{"x":-112,"y":-24},{"x":-9,"y":-69},{"x":-37,"y":-35},{"x":-28,"y":18},{"x":10,"y":25},{"x":-49,"y":15},{"x":-29,"y":-13},{"x":-19,"y":-74},{"x":-85,"y":31},{"x":-66,"y":-72},{"x":4,"y":-56},{"x":-36,"y":22},{"x":-26,"y":-39},{"x":-212,"y":-15},{"x":-60,"y":-42},{"x":-33,"y":-99}],"type":"coastline"},{"arc":[{"x":33207,"y":53432},{"x":-46,"y":50},{"x":6,"y":-23},{"x":-30,"y":-4},{"x":38,"y":-73},{"x":32,"y":50}],"type":"coastline"},{"arc":[{"x":33456,"y":54450},{"x":-78,"y":-75},{"x":-55,"y":1},{"x":-111,"y":-65},{"x":-65,"y":-111},{"x":-161,"y":-70},{"x":-25,"y":-61},{"x":-111,"y":-63},{"x":35,"y":-41},{"x":-13,"y":-59},{"x":52,"y":-27},{"x":2,"y":-119},{"x":-118,"y":-48},{"x":34,"y":-37},{"x":-68,"y":-65},{"x":-77,"y":-19},{"x":30,"y":-35},{"x":-19,"y":-43},{"x":-41,"y":-21},{"x":-64,"y":15},{"x":-89,"y":-109}],"type":"area"},{"arc":[{"x":32902,"y":53212},{"x":63,"y":82},{"x":144,"y":91},{"x":-16,"y":32},{"x":42,"y":31},{"x":-19,"y":58},{"x":70,"y":28},{"x":-49,"y":21},{"x":-63,"y":-25},{"x":19,"y":38},{"x":31,"y":3},{"x":-54,"y":22},{"x":14,"y":63},{"x":19,"y":13},{"x":75,"y":-32},{"x":58,"y":-118},{"x":-5,"y":-23},{"x":-41,"y":-7},{"x":71,"y":-31},{"x":-19,"y":-12},{"x":33,"y":-1},{"x":22,"y":-38},{"x":45,"y":-6},{"x":51,"y":66},{"x":13,"y":-14},{"x":221,"y":147},{"x":-2,"y":80},{"x":59,"y":164},{"x":74,"y":54},{"x":53,"y":82}],"type":"coastline"},{"arc":[{"x":33179,"y":55119},{"x":-108,"y":-9},{"x":-24,"y":-44},{"x":21,"y":-34},{"x":-52,"y":-7},{"x":-37,"y":-47},{"x":-83,"y":13},{"x":-30,"y":-60},{"x":-44,"y":-33},{"x":-24,"y":12},{"x":-13,"y":-43},{"x":-73,"y":-42},{"x":11,"y":-60},{"x":-39,"y":-76},{"x":7,"y":-66},{"x":-38,"y":-43},{"x":-30,"y":-312},{"x":51,"y":-104},{"x":-10,"y":-65},{"x":17,"y":13},{"x":31,"y":-82},{"x":-20,"y":-116},{"x":-89,"y":-27},{"x":-101,"y":44},{"x":-12,"y":38},{"x":-78,"y":18},{"x":-70,"y":-40},{"x":-47,"y":3},{"x":39,"y":-124},{"x":-29,"y":-21},{"x":-2,"y":-22},{"x":11,"y":25},{"x":48,"y":-150},{"x":-133,"y":53}],"type":"coastline"},{"arc":[{"x":32965,"y":52304},{"x":-18,"y":5},{"x":21,"y":-21},{"x":-3,"y":16}],"type":"coastline"},{"arc":[{"x":32819,"y":51958},{"x":97,"y":39},{"x":87,"y":-34},{"x":198,"y":-14},{"x":11,"y":-29},{"x":-49,"y":-61},{"x":62,"y":-45},{"x":-20,"y":-97},{"x":31,"y":-63},{"x":126,"y":-68},{"x":11,"y":-59},{"x":68,"y":27},{"x":172,"y":-18}],"type":"area"},{"arc":[{"x":33613,"y":51536},{"x":31,"y":93},{"x":-20,"y":82},{"x":67,"y":186},{"x":-64,"y":173},{"x":-70,"y":-43},{"x":-49,"y":48},{"x":11,"y":25},{"x":35,"y":-9},{"x":5,"y":67},{"x":-32,"y":13},{"x":-36,"y":94},{"x":-3,"y":122},{"x":-9,"y":-31},{"x":-47,"y":87},{"x":-53,"y":25},{"x":-84,"y":-124},{"x":-57,"y":-34},{"x":-113,"y":2},{"x":-103,"y":-47},{"x":-46,"y":22},{"x":-12,"y":-66},{"x":23,"y":-24},{"x":-56,"y":15},{"x":-20,"y":52}],"type":"coastline"},{"arc":[{"x":33771,"y":52554},{"x":-62,"y":117},{"x":-121,"y":-7},{"x":-76,"y":-75},{"x":29,"y":-50},{"x":-30,"y":3},{"x":151,"y":-73},{"x":73,"y":14},{"x":36,"y":71}],"type":"coastline"},{"arc":[{"x":32970,"y":50471},{"x":-8,"y":31},{"x":-74,"y":30},{"x":5,"y":-83},{"x":17,"y":30},{"x":28,"y":-23},{"x":-33,"y":-40},{"x":65,"y":55}],"type":"coastline"},{"arc":[{"x":33004,"y":51001},{"x":-66,"y":82},{"x":-101,"y":-38},{"x":-148,"y":-112},{"x":38,"y":-20},{"x":80,"y":16},{"x":127,"y":-49},{"x":70,"y":121}],"type":"coastline"},{"arc":[{"x":32393,"y":51349},{"x":13,"y":-55},{"x":117,"y":-5},{"x":116,"y":-76},{"x":108,"y":-20},{"x":94,"y":-79},{"x":2,"y":28},{"x":22,"y":-1},{"x":-11,"y":-22},{"x":29,"y":4},{"x":-10,"y":17},{"x":23,"y":-16},{"x":67,"y":23},{"x":47,"y":-18},{"x":79,"y":97},{"x":-22,"y":14},{"x":20,"y":55},{"x":10,"y":-67},{"x":33,"y":22},{"x":136,"y":-27},{"x":16,"y":-51},{"x":38,"y":9},{"x":-23,"y":-17},{"x":35,"y":-2},{"x":61,"y":-81},{"x":76,"y":-4},{"x":82,"y":44},{"x":38,"y":-15},{"x":-6,"y":20},{"x":49,"y":16},{"x":80,"y":-1},{"x":-105,"y":171},{"x":20,"y":52},{"x":-46,"y":8},{"x":-13,"y":34},{"x":59,"y":81},{"x":-14,"y":49}],"type":"coastline"},{"arc":[{"x":30970,"y":50717},{"x":-6,"y":-50},{"x":31,"y":47},{"x":-25,"y":3}],"type":"coastline"},{"arc":[{"x":31186,"y":51771},{"x":-128,"y":-134}],"type":"area"},{"arc":[{"x":31058,"y":51637},{"x":25,"y":-48},{"x":-18,"y":-38},{"x":-38,"y":16},{"x":-20,"y":-37},{"x":-72,"y":17},{"x":-90,"y":-53},{"x":24,"y":-67},{"x":84,"y":-40},{"x":-73,"y":-110},{"x":-121,"y":-9},{"x":-17,"y":-82},{"x":49,"y":-116},{"x":-31,"y":-53},{"x":-51,"y":-22},{"x":23,"y":-31},{"x":-63,"y":-53},{"x":0,"y":-49},{"x":-138,"y":-174},{"x":-112,"y":-9}],"type":"area"},{"arc":[{"x":29992,"y":50169},{"x":14,"y":-102},{"x":47,"y":-41},{"x":23,"y":-77},{"x":-24,"y":-91},{"x":-69,"y":-50},{"x":35,"y":-69},{"x":55,"y":-26}],"type":"area"},{"arc":[{"x":30073,"y":49713},{"x":192,"y":228},{"x":12,"y":-30},{"x":20,"y":28},{"x":-24,"y":22},{"x":105,"y":56},{"x":-58,"y":30},{"x":-36,"y":72},{"x":-45,"y":14},{"x":25,"y":171},{"x":93,"y":50},{"x":-1,"y":-29},{"x":29,"y":-19},{"x":-23,"y":34},{"x":48,"y":0},{"x":-10,"y":-31},{"x":86,"y":44},{"x":32,"y":64},{"x":88,"y":20},{"x":-31,"y":28},{"x":72,"y":69},{"x":46,"y":102},{"x":104,"y":42},{"x":-19,"y":45},{"x":41,"y":64},{"x":132,"y":-26},{"x":59,"y":-48},{"x":23,"y":39},{"x":74,"y":16},{"x":16,"y":69},{"x":-78,"y":50},{"x":70,"y":38},{"x":51,"y":-29},{"x":18,"y":24},{"x":-71,"y":40},{"x":68,"y":33},{"x":4,"y":33},{"x":34,"y":-19},{"x":3,"y":19},{"x":-49,"y":13},{"x":37,"y":24},{"x":-103,"y":82},{"x":-11,"y":70},{"x":60,"y":46},{"x":46,"y":-8},{"x":44,"y":127},{"x":61,"y":49},{"x":-37,"y":27},{"x":-8,"y":69},{"x":56,"y":36},{"x":101,"y":6},{"x":-16,"y":47},{"x":52,"y":36}],"type":"coastline"},{"arc":[{"x":31178,"y":52357},{"x":-68,"y":-63},{"x":-67,"y":26},{"x":-59,"y":71},{"x":-78,"y":19},{"x":-60,"y":-16},{"x":-41,"y":-70},{"x":8,"y":-49},{"x":-29,"y":33},{"x":-43,"y":-19},{"x":-93,"y":-246},{"x":70,"y":-56},{"x":-23,"y":-59},{"x":23,"y":15},{"x":8,"y":-40},{"x":-30,"y":-35},{"x":-63,"y":10},{"x":-24,"y":-46}],"type":"coastline"},{"arc":[{"x":30609,"y":51832},{"x":81,"y":-59},{"x":182,"y":-40},{"x":117,"y":-100},{"x":69,"y":4}],"type":"area"},{"arc":[{"x":30609,"y":51832},{"x":-77,"y":8},{"x":-30,"y":30},{"x":-22,"y":-67},{"x":-23,"y":15},{"x":0,"y":-19},{"x":-72,"y":-7},{"x":-55,"y":10},{"x":-37,"y":63},{"x":-25,"y":-13},{"x":50,"y":-75},{"x":-27,"y":-145},{"x":26,"y":-19},{"x":-32,"y":-17},{"x":46,"y":-72},{"x":24,"y":18},{"x":31,"y":-25},{"x":-7,"y":-20},{"x":-25,"y":25},{"x":-2,"y":-25},{"x":39,"y":-5},{"x":21,"y":-148},{"x":107,"y":-148},{"x":-38,"y":-98},{"x":39,"y":-63},{"x":-86,"y":-178},{"x":-171,"y":-100}],"type":"coastline"},{"arc":[{"x":30263,"y":50757},{"x":-25,"y":-13}],"type":"area"},{"arc":[{"x":34082,"y":50395},{"x":-191,"y":218},{"x":-64,"y":25},{"x":-116,"y":-30},{"x":-37,"y":-182},{"x":-23,"y":1},{"x":16,"y":-57},{"x":-21,"y":-2},{"x":30,"y":-21},{"x":0,"y":-66},{"x":23,"y":3},{"x":13,"y":-52},{"x":-16,"y":-315},{"x":-22,"y":13},{"x":49,"y":-87},{"x":92,"y":-51},{"x":189,"y":29},{"x":57,"y":69},{"x":-51,"y":321},{"x":72,"y":184}],"type":"coastline"},{"arc":[{"x":29892,"y":50159},{"x":-50,"y":-3},{"x":9,"y":-27},{"x":-166,"y":-93},{"x":-108,"y":-14},{"x":-57,"y":-33},{"x":-106,"y":12},{"x":-28,"y":-155},{"x":-52,"y":-86},{"x":-32,"y":1},{"x":7,"y":-85}],"type":"area"},{"arc":[{"x":29309,"y":49676},{"x":237,"y":-86},{"x":89,"y":-51},{"x":-9,"y":-21},{"x":30,"y":-11},{"x":-19,"y":16},{"x":29,"y":3},{"x":-7,"y":-27},{"x":15,"y":22},{"x":166,"y":-81},{"x":180,"y":-24},{"x":196,"y":37},{"x":87,"y":-56},{"x":-4,"y":140},{"x":-209,"y":100},{"x":-17,"y":76}],"type":"coastline"},{"arc":[{"x":29070,"y":50084},{"x":40,"y":-38},{"x":-63,"y":-48},{"x":16,"y":-55},{"x":-30,"y":-64},{"x":45,"y":-80},{"x":-13,"y":-45}],"type":"area"},{"arc":[{"x":29065,"y":49754},{"x":111,"y":-7},{"x":16,"y":-27},{"x":-30,"y":-12},{"x":147,"y":-32}],"type":"coastline"},{"arc":[{"x":28751,"y":50156},{"x":-46,"y":8},{"x":-73,"y":-101},{"x":-154,"y":37}],"type":"area"},{"arc":[{"x":28463,"y":49869},{"x":188,"y":32},{"x":11,"y":-48},{"x":51,"y":-20},{"x":78,"y":-4},{"x":15,"y":32},{"x":21,"y":-15},{"x":-45,"y":-58},{"x":32,"y":-32},{"x":106,"y":-38},{"x":106,"y":50},{"x":39,"y":-14}],"type":"coastline"},{"arc":[{"x":28578,"y":50610},{"x":-16,"y":-48},{"x":29,"y":-81},{"x":-84,"y":-53},{"x":-1,"y":35},{"x":-62,"y":6},{"x":53,"y":-7},{"x":-37,"y":-12},{"x":-2,"y":-28},{"x":-58,"y":40}],"type":"coastline"},{"arc":[{"x":28400,"y":50462},{"x":-66,"y":-127},{"x":46,"y":-118},{"x":-12,"y":-37}],"type":"area"},{"arc":[{"x":27664,"y":50184},{"x":64,"y":-98},{"x":21,"y":-114},{"x":31,"y":12},{"x":28,"y":-33},{"x":64,"y":2},{"x":73,"y":43}],"type":"area"},{"arc":[{"x":28400,"y":50462},{"x":-5,"y":25},{"x":-155,"y":-6},{"x":-40,"y":-42},{"x":-40,"y":7},{"x":39,"y":-8},{"x":13,"y":-31},{"x":-114,"y":-111},{"x":-95,"y":-18},{"x":-45,"y":-35},{"x":-8,"y":18},{"x":-25,"y":4},{"x":29,"y":-17},{"x":-31,"y":-4},{"x":2,"y":15},{"x":-49,"y":-54},{"x":-212,"y":-21}],"type":"coastline"},{"arc":[{"x":27664,"y":50184},{"x":-23,"y":26},{"x":-40,"y":-14},{"x":-25,"y":-61},{"x":-110,"y":-43},{"x":28,"y":-5},{"x":-83,"y":-47},{"x":-20,"y":-48},{"x":-36,"y":12}],"type":"coastline"},{"arc":[{"x":27355,"y":50004},{"x":65,"y":-112},{"x":4,"y":-152},{"x":25,"y":-30}],"type":"area"},{"arc":[{"x":27449,"y":49710},{"x":37,"y":-59}],"type":"area"},{"arc":[{"x":27355,"y":50004},{"x":-65,"y":30},{"x":65,"y":-60},{"x":-31,"y":-17},{"x":-27,"y":62},{"x":-17,"y":-12},{"x":10,"y":-101},{"x":-27,"y":90},{"x":-95,"y":13},{"x":-15,"y":49},{"x":-28,"y":4},{"x":38,"y":1},{"x":-46,"y":3}],"type":"coastline"},{"arc":[{"x":27243,"y":49758},{"x":50,"y":20},{"x":105,"y":-94},{"x":51,"y":26}],"type":"area"},{"arc":[{"x":26863,"y":49585},{"x":34,"y":-58},{"x":61,"y":18},{"x":-6,"y":-49},{"x":57,"y":-73}],"type":"area"},{"arc":[{"x":26584,"y":45608},{"x":-22,"y":23},{"x":-80,"y":-57},{"x":80,"y":0},{"x":22,"y":34}],"type":"coastline"},{"arc":[{"x":26809,"y":45563},{"x":-69,"y":-34},{"x":60,"y":-1},{"x":9,"y":35}],"type":"coastline"},{"arc":[{"x":27259,"y":45928},{"x":-23,"y":45},{"x":-13,"y":-35},{"x":36,"y":-10}],"type":"coastline"},{"arc":[{"x":27572,"y":46723},{"x":-42,"y":40},{"x":-44,"y":-11},{"x":-91,"y":-71},{"x":-105,"y":-21},{"x":-30,"y":-73},{"x":44,"y":-8},{"x":121,"y":67},{"x":69,"y":9},{"x":34,"y":41},{"x":59,"y":17},{"x":-15,"y":10}],"type":"coastline"},{"arc":[{"x":27595,"y":45735},{"x":-84,"y":135},{"x":-202,"y":43},{"x":-65,"y":-74},{"x":-7,"y":60},{"x":-61,"y":-33},{"x":-41,"y":31},{"x":-10,"y":-48},{"x":-106,"y":-101},{"x":-301,"y":60},{"x":-13,"y":-122},{"x":-81,"y":-35},{"x":-29,"y":13},{"x":-22,"y":-27},{"x":68,"y":-38},{"x":96,"y":30},{"x":38,"y":-21},{"x":69,"y":35},{"x":40,"y":-30},{"x":-5,"y":-48},{"x":75,"y":12},{"x":88,"y":-31},{"x":30,"y":20},{"x":-21,"y":34},{"x":28,"y":37},{"x":32,"y":1},{"x":28,"y":-38},{"x":33,"y":19},{"x":109,"y":-6},{"x":61,"y":45},{"x":58,"y":-15},{"x":82,"y":73},{"x":100,"y":-26},{"x":13,"y":45}],"type":"coastline"},{"arc":[{"x":27695,"y":46709},{"x":-93,"y":7},{"x":56,"y":-35},{"x":37,"y":28}],"type":"coastline"},{"arc":[{"x":27727,"y":45856},{"x":-85,"y":43},{"x":-84,"y":-44},{"x":105,"y":-27},{"x":64,"y":28}],"type":"coastline"},{"arc":[{"x":27796,"y":46772},{"x":-45,"y":19},{"x":-15,"y":-41},{"x":60,"y":22}],"type":"coastline"},{"arc":[{"x":27899,"y":47841},{"x":-9,"y":21},{"x":6,"y":-48},{"x":3,"y":27}],"type":"coastline"},{"arc":[{"x":27977,"y":46210},{"x":-23,"y":25},{"x":-91,"y":16},{"x":45,"y":-46},{"x":54,"y":-16},{"x":15,"y":21}],"type":"coastline"},{"arc":[{"x":28009,"y":48020},{"x":-7,"y":-32},{"x":33,"y":-4},{"x":48,"y":41},{"x":-74,"y":-5}],"type":"coastline"},{"arc":[{"x":28090,"y":47772},{"x":-21,"y":0},{"x":20,"y":-90},{"x":-20,"y":-29},{"x":21,"y":-21},{"x":0,"y":140}],"type":"coastline"},{"arc":[{"x":26714,"y":44879},{"x":-23,"y":-15},{"x":18,"y":-10},{"x":5,"y":25}],"type":"coastline"},{"arc":[{"x":26725,"y":45049},{"x":-29,"y":-7},{"x":12,"y":-20},{"x":17,"y":27}],"type":"coastline"},{"arc":[{"x":26945,"y":45072},{"x":-81,"y":42},{"x":-103,"y":-61},{"x":86,"y":-39},{"x":98,"y":58}],"type":"coastline"},{"arc":[{"x":27043,"y":44490},{"x":-94,"y":77},{"x":-60,"y":-28},{"x":-106,"y":4},{"x":28,"y":-61},{"x":-14,"y":-42},{"x":17,"y":19},{"x":141,"y":-11},{"x":47,"y":47},{"x":41,"y":-5}],"type":"coastline"},{"arc":[{"x":27104,"y":45030},{"x":-23,"y":42},{"x":-111,"y":35},{"x":0,"y":-61},{"x":-24,"y":-10},{"x":19,"y":-38},{"x":78,"y":-37},{"x":61,"y":27},{"x":0,"y":42}],"type":"coastline"},{"arc":[{"x":27406,"y":44946},{"x":-219,"y":130},{"x":-10,"y":-64},{"x":-44,"y":-3},{"x":15,"y":-21},{"x":-19,"y":12},{"x":-1,"y":-35},{"x":-23,"y":8},{"x":24,"y":-28},{"x":-38,"y":-54},{"x":113,"y":5},{"x":18,"y":-56},{"x":-40,"y":-33},{"x":34,"y":5},{"x":-5,"y":-27},{"x":30,"y":-6},{"x":48,"y":48},{"x":77,"y":20},{"x":62,"y":101},{"x":-22,"y":-2}],"type":"coastline"},{"arc":[{"x":27460,"y":45241},{"x":-91,"y":19},{"x":-59,"y":64},{"x":-81,"y":-46},{"x":38,"y":-36},{"x":218,"y":-6},{"x":-25,"y":5}],"type":"coastline"},{"arc":[{"x":27425,"y":45097},{"x":4,"y":-16},{"x":62,"y":16},{"x":-66,"y":0}],"type":"coastline"},{"arc":[{"x":27517,"y":44984},{"x":-16,"y":40},{"x":-32,"y":-7},{"x":32,"y":-47},{"x":16,"y":14}],"type":"coastline"},{"arc":[{"x":27552,"y":44621},{"x":-128,"y":-11},{"x":-61,"y":-63},{"x":42,"y":-33},{"x":116,"y":5},{"x":31,"y":102}],"type":"coastline"},{"arc":[{"x":27609,"y":45502},{"x":-31,"y":1},{"x":22,"y":-24},{"x":9,"y":23}],"type":"coastline"},{"arc":[{"x":27918,"y":45248},{"x":-77,"y":25},{"x":27,"y":55},{"x":-94,"y":150},{"x":-64,"y":-50},{"x":-39,"y":17},{"x":6,"y":41},{"x":-56,"y":0},{"x":45,"y":-58},{"x":-26,"y":-75},{"x":64,"y":23},{"x":66,"y":-42},{"x":-37,"y":-77},{"x":-140,"y":48},{"x":-24,"y":-62},{"x":-74,"y":-16},{"x":15,"y":-48},{"x":51,"y":-24},{"x":19,"y":31},{"x":28,"y":-22},{"x":-49,"y":-63},{"x":48,"y":-52},{"x":15,"y":-93},{"x":74,"y":2},{"x":-25,"y":19},{"x":14,"y":69},{"x":26,"y":31},{"x":84,"y":16},{"x":-55,"y":61},{"x":32,"y":63},{"x":63,"y":9},{"x":22,"y":-23},{"x":-15,"y":21},{"x":38,"y":-9},{"x":38,"y":33}],"type":"coastline"},{"arc":[{"x":32348,"y":44433},{"x":-26,"y":91},{"x":-123,"y":72},{"x":-51,"y":12},{"x":-121,"y":-69},{"x":-8,"y":-67},{"x":23,"y":18},{"x":26,"y":-22},{"x":-23,"y":-21},{"x":-9,"y":18},{"x":1,"y":-14},{"x":22,"y":-12},{"x":-51,"y":-242},{"x":134,"y":31},{"x":87,"y":53},{"x":119,"y":152}],"type":"coastline"},{"arc":[{"x":29563,"y":43560},{"x":-27,"y":45},{"x":-104,"y":-50},{"x":-109,"y":35},{"x":-25,"y":45},{"x":40,"y":71},{"x":-18,"y":6},{"x":-74,"y":-37},{"x":-63,"y":-118},{"x":-45,"y":-4},{"x":50,"y":-8},{"x":45,"y":-46},{"x":42,"y":13},{"x":73,"y":-54},{"x":82,"y":-4},{"x":-12,"y":39},{"x":48,"y":5},{"x":-16,"y":-41},{"x":47,"y":17},{"x":6,"y":60},{"x":60,"y":26}],"type":"coastline"},{"arc":[{"x":29636,"y":43116},{"x":-55,"y":5},{"x":-18,"y":-50},{"x":74,"y":9},{"x":-1,"y":36}],"type":"coastline"},{"arc":[{"x":37394,"y":51597},{"x":-27,"y":58},{"x":-119,"y":-91},{"x":41,"y":-69},{"x":62,"y":-7},{"x":30,"y":89},{"x":30,"y":8},{"x":-17,"y":12}],"type":"coastline"},{"arc":[{"x":38579,"y":52596},{"x":-55,"y":11},{"x":-21,"y":-69},{"x":-106,"y":-72},{"x":-22,"y":-46},{"x":-122,"y":-45},{"x":-4,"y":-25},{"x":-90,"y":20},{"x":-216,"y":-78},{"x":-51,"y":-81},{"x":11,"y":-81},{"x":-50,"y":-87},{"x":-68,"y":-42},{"x":-41,"y":18},{"x":23,"y":32},{"x":-106,"y":-47},{"x":6,"y":-86},{"x":-45,"y":-108},{"x":-23,"y":16},{"x":-19,"y":-1},{"x":32,"y":-11},{"x":-24,"y":-18},{"x":-6,"y":20},{"x":-1,"y":-36},{"x":-140,"y":-17},{"x":-122,"y":-58},{"x":37,"y":-22},{"x":24,"y":45},{"x":96,"y":10},{"x":81,"y":-55},{"x":98,"y":5},{"x":163,"y":140},{"x":129,"y":43},{"x":160,"y":169},{"x":115,"y":65},{"x":6,"y":-28},{"x":-2,"y":48},{"x":103,"y":125},{"x":184,"y":90},{"x":-1,"y":83},{"x":67,"y":173}],"type":"coastline"},{"arc":[{"x":36150,"y":51577},{"x":-11,"y":82},{"x":-18,"y":-35},{"x":-40,"y":-1},{"x":-36,"y":73},{"x":-36,"y":-44},{"x":38,"y":-86},{"x":91,"y":-10},{"x":12,"y":21}],"type":"coastline"},{"arc":[{"x":36823,"y":51736},{"x":-27,"y":29},{"x":14,"y":45},{"x":-13,"y":-42},{"x":-20,"y":34},{"x":20,"y":3},{"x":-39,"y":14},{"x":6,"y":27},{"x":-68,"y":76},{"x":-136,"y":18},{"x":-97,"y":-73},{"x":-163,"y":38},{"x":-48,"y":-153},{"x":43,"y":-20},{"x":-8,"y":-76},{"x":57,"y":-36},{"x":1,"y":-42},{"x":56,"y":-38},{"x":167,"y":32},{"x":-16,"y":-72},{"x":35,"y":-31},{"x":110,"y":49},{"x":89,"y":193},{"x":37,"y":25}],"type":"coastline"},{"arc":[{"x":37105,"y":51841},{"x":-39,"y":122},{"x":-19,"y":-114},{"x":38,"y":-75},{"x":20,"y":67}],"type":"coastline"},{"arc":[{"x":29008,"y":40549},{"x":-15,"y":-42},{"x":34,"y":31},{"x":-19,"y":11}],"type":"coastline"},{"arc":[{"x":29067,"y":40268},{"x":-87,"y":68},{"x":12,"y":-154},{"x":75,"y":86}],"type":"coastline"},{"arc":[{"x":29078,"y":40377},{"x":-17,"y":33},{"x":-66,"y":8},{"x":-6,"y":-63},{"x":89,"y":22}],"type":"coastline"},{"arc":[{"x":29163,"y":40987},{"x":-22,"y":-81},{"x":-59,"y":-31},{"x":2,"y":-162},{"x":22,"y":8},{"x":-6,"y":122},{"x":69,"y":77},{"x":-6,"y":67}],"type":"coastline"},{"arc":[{"x":29681,"y":39727},{"x":-69,"y":105},{"x":-218,"y":119},{"x":18,"y":84},{"x":-88,"y":50},{"x":-37,"y":-28},{"x":1,"y":41},{"x":-95,"y":57},{"x":-8,"y":87},{"x":7,"y":-87},{"x":-21,"y":1},{"x":2,"y":57},{"x":-42,"y":-2},{"x":-23,"y":34},{"x":-68,"y":-63},{"x":-17,"y":-61},{"x":-30,"y":10},{"x":26,"y":-7},{"x":-3,"y":18},{"x":-39,"y":-3},{"x":-53,"y":-64},{"x":-87,"y":-44},{"x":-63,"y":16},{"x":-156,"y":-32},{"x":-60,"y":64},{"x":-113,"y":35},{"x":-30,"y":-19},{"x":19,"y":-108},{"x":89,"y":-79},{"x":82,"y":-153},{"x":107,"y":-29},{"x":97,"y":-83},{"x":48,"y":21},{"x":38,"y":-18},{"x":7,"y":-29},{"x":1,"y":20},{"x":18,"y":-15},{"x":-18,"y":-12},{"x":52,"y":-49},{"x":-16,"y":20},{"x":22,"y":15},{"x":27,"y":-28},{"x":26,"y":-57},{"x":47,"y":52},{"x":-29,"y":-73},{"x":41,"y":-20},{"x":-32,"y":-11},{"x":-99,"y":80},{"x":99,"y":-81},{"x":30,"y":10},{"x":18,"y":-21},{"x":17,"y":-28},{"x":-8,"y":-4},{"x":-28,"y":23},{"x":28,"y":-24},{"x":7,"y":3},{"x":38,"y":-219},{"x":-27,"y":52},{"x":-24,"y":-18},{"x":117,"y":-121},{"x":72,"y":-35},{"x":-71,"y":-25},{"x":-26,"y":13},{"x":-144,"y":182},{"x":101,"y":-159},{"x":111,"y":-66},{"x":-19,"y":19},{"x":108,"y":19},{"x":8,"y":21},{"x":82,"y":29},{"x":-74,"y":-34},{"x":14,"y":-23},{"x":-78,"y":-24},{"x":91,"y":11},{"x":71,"y":53},{"x":35,"y":207},{"x":43,"y":93},{"x":0,"y":-17},{"x":96,"y":113},{"x":52,"y":239}],"type":"coastline"},{"arc":[{"x":48585,"y":54684},{"x":-23,"y":42},{"x":-67,"y":7},{"x":-56,"y":56},{"x":-88,"y":36},{"x":-79,"y":-18},{"x":76,"y":-116},{"x":137,"y":-60},{"x":100,"y":53}],"type":"coastline"},{"arc":[{"x":26323,"y":49923},{"x":-24,"y":-23},{"x":-7,"y":26},{"x":9,"y":-38},{"x":-56,"y":-31},{"x":13,"y":-42},{"x":-32,"y":-48},{"x":-92,"y":-45},{"x":-18,"y":-35},{"x":-132,"y":-52},{"x":-11,"y":-29}],"type":"coastline"},{"arc":[{"x":7994,"y":18373},{"x":-40,"y":-13},{"x":-36,"y":107},{"x":-58,"y":69},{"x":-164,"y":14},{"x":-79,"y":-51},{"x":-21,"y":16},{"x":20,"y":-17},{"x":-24,"y":-25},{"x":-26,"y":51},{"x":22,"y":-58},{"x":-86,"y":-106},{"x":-10,"y":-51},{"x":20,"y":-159},{"x":-21,"y":-7},{"x":0,"y":-16},{"x":1,"y":16},{"x":12,"y":4},{"x":-5,"y":-17},{"x":17,"y":3},{"x":12,"y":-73},{"x":30,"y":-50},{"x":166,"y":-50},{"x":128,"y":30},{"x":99,"y":100},{"x":42,"y":138},{"x":-35,"y":123},{"x":27,"y":-12},{"x":-3,"y":29},{"x":28,"y":-8},{"x":-16,"y":13}],"type":"coastline"},{"arc":[{"x":9064,"y":18210},{"x":-96,"y":65},{"x":-3,"y":31},{"x":-95,"y":31},{"x":-25,"y":-14},{"x":40,"y":-73},{"x":-16,"y":-2},{"x":-6,"y":-21},{"x":6,"y":18},{"x":22,"y":-14},{"x":-21,"y":-7},{"x":21,"y":0},{"x":5,"y":9},{"x":123,"y":-150},{"x":45,"y":127}],"type":"coastline"},{"arc":[{"x":330,"y":8823},{"x":-88,"y":230},{"x":-53,"y":13},{"x":-138,"y":-54},{"x":-51,"y":-177},{"x":29,"y":-56},{"x":8,"y":-232},{"x":58,"y":-76},{"x":120,"y":8},{"x":29,"y":100},{"x":56,"y":25},{"x":-41,"y":-15},{"x":42,"y":39},{"x":29,"y":195}],"type":"coastline"},{"arc":[{"x":1908,"y":6520},{"x":-9,"y":57},{"x":-42,"y":-151},{"x":51,"y":94}],"type":"coastline"},{"arc":[{"x":2224,"y":10347},{"x":-89,"y":22},{"x":-69,"y":-45},{"x":29,"y":-69},{"x":77,"y":-50},{"x":46,"y":43},{"x":6,"y":99}],"type":"coastline"},{"arc":[{"x":2495,"y":10514},{"x":-69,"y":38},{"x":-146,"y":-131},{"x":-8,"y":-53},{"x":151,"y":34},{"x":72,"y":112}],"type":"coastline"},{"arc":[{"x":2635,"y":11068},{"x":-28,"y":2},{"x":-58,"y":122},{"x":37,"y":8},{"x":-38,"y":-2},{"x":34,"y":91},{"x":-100,"y":45},{"x":-139,"y":-26},{"x":-129,"y":-171},{"x":4,"y":-61},{"x":41,"y":-38},{"x":219,"y":-106},{"x":112,"y":19},{"x":55,"y":86},{"x":-30,"y":25},{"x":49,"y":-26},{"x":-29,"y":32}],"type":"coastline"},{"arc":[{"x":3731,"y":11922},{"x":-49,"y":79},{"x":-49,"y":14},{"x":30,"y":10},{"x":-31,"y":-9},{"x":-150,"y":63},{"x":-96,"y":-105},{"x":-18,"y":-74},{"x":39,"y":-58},{"x":130,"y":-33},{"x":36,"y":34},{"x":102,"y":14},{"x":56,"y":65}],"type":"coastline"},{"arc":[{"x":3810,"y":10359},{"x":-48,"y":-5},{"x":-19,"y":-46},{"x":67,"y":51}],"type":"coastline"},{"arc":[{"x":3912,"y":10760},{"x":-98,"y":198},{"x":-38,"y":-42},{"x":-46,"y":4},{"x":-90,"y":125},{"x":-76,"y":15},{"x":-47,"y":-124},{"x":86,"y":-52},{"x":49,"y":-260},{"x":-53,"y":-93},{"x":24,"y":21},{"x":3,"y":-32},{"x":57,"y":28},{"x":-12,"y":78},{"x":46,"y":85},{"x":46,"y":-4},{"x":85,"y":-61},{"x":64,"y":114}],"type":"coastline"},{"arc":[{"x":4016,"y":8246},{"x":-113,"y":130},{"x":-76,"y":8},{"x":-26,"y":-23},{"x":157,"y":-186},{"x":82,"y":1},{"x":-25,"y":42},{"x":33,"y":25},{"x":-12,"y":25},{"x":-20,"y":-22}],"type":"coastline"},{"arc":[{"x":4065,"y":11019},{"x":-73,"y":44},{"x":14,"y":-75},{"x":32,"y":-6},{"x":27,"y":37}],"type":"coastline"},{"arc":[{"x":4233,"y":8182},{"x":-50,"y":38},{"x":-11,"y":-71},{"x":-97,"y":-24},{"x":-25,"y":14},{"x":0,"y":-37},{"x":62,"y":-60},{"x":81,"y":13},{"x":40,"y":127}],"type":"coastline"},{"arc":[{"x":4957,"y":8770},{"x":-190,"y":184},{"x":-93,"y":21},{"x":-48,"y":105},{"x":-79,"y":29},{"x":24,"y":-24},{"x":-70,"y":-22},{"x":-32,"y":68},{"x":27,"y":-80},{"x":-100,"y":76},{"x":-33,"y":-7},{"x":25,"y":66},{"x":61,"y":2},{"x":15,"y":-41},{"x":-3,"y":105},{"x":88,"y":14},{"x":32,"y":29},{"x":-66,"y":117},{"x":26,"y":45},{"x":-20,"y":64},{"x":-56,"y":5},{"x":-47,"y":68},{"x":36,"y":57},{"x":85,"y":13},{"x":-4,"y":45},{"x":-52,"y":88},{"x":-110,"y":-2},{"x":-93,"y":62},{"x":48,"y":53},{"x":-49,"y":77},{"x":11,"y":75},{"x":-77,"y":108},{"x":-87,"y":9},{"x":-65,"y":42},{"x":-22,"y":181},{"x":-55,"y":8},{"x":-23,"y":-25},{"x":-115,"y":-21},{"x":-31,"y":-37},{"x":13,"y":-25},{"x":-68,"y":-35},{"x":-62,"y":17},{"x":-61,"y":-17},{"x":-67,"y":35},{"x":-18,"y":-53},{"x":-25,"y":-4},{"x":-71,"y":43},{"x":-34,"y":-5},{"x":-6,"y":-22},{"x":134,"y":-111},{"x":-9,"y":-40},{"x":-42,"y":-9},{"x":-24,"y":24},{"x":-29,"y":-42},{"x":-216,"y":-103},{"x":-87,"y":35},{"x":-240,"y":21},{"x":-19,"y":-37},{"x":88,"y":-103},{"x":-1,"y":-102},{"x":-52,"y":-22},{"x":-44,"y":73},{"x":5,"y":-33},{"x":-48,"y":21},{"x":-44,"y":-39},{"x":-60,"y":16},{"x":-63,"y":-20},{"x":-12,"y":-174},{"x":154,"y":-193},{"x":59,"y":-129},{"x":-32,"y":-279},{"x":85,"y":-222},{"x":-22,"y":-83},{"x":62,"y":-215},{"x":113,"y":-154},{"x":26,"y":5},{"x":50,"y":-44},{"x":66,"y":-134},{"x":-13,"y":-31},{"x":-144,"y":10},{"x":-117,"y":-35},{"x":3,"y":-118},{"x":68,"y":-109},{"x":-13,"y":-165},{"x":327,"y":-193},{"x":71,"y":94},{"x":-33,"y":35},{"x":19,"y":51},{"x":-65,"y":26},{"x":36,"y":58},{"x":56,"y":-35},{"x":83,"y":-4},{"x":10,"y":-37},{"x":108,"y":34},{"x":23,"y":33},{"x":-56,"y":59},{"x":-33,"y":90},{"x":-90,"y":40},{"x":-66,"y":-17},{"x":19,"y":74},{"x":38,"y":15},{"x":22,"y":-35},{"x":62,"y":2},{"x":196,"y":-81},{"x":92,"y":-5},{"x":36,"y":37},{"x":-28,"y":25},{"x":-33,"y":-25},{"x":-180,"y":80},{"x":-40,"y":42},{"x":76,"y":-15},{"x":120,"y":131},{"x":-26,"y":30},{"x":-168,"y":-6},{"x":48,"y":48},{"x":-31,"y":41},{"x":-23,"y":-15},{"x":-91,"y":45},{"x":-70,"y":-11},{"x":72,"y":41},{"x":-113,"y":50},{"x":13,"y":34},{"x":132,"y":-53},{"x":194,"y":38},{"x":51,"y":-59},{"x":136,"y":94},{"x":64,"y":-4},{"x":13,"y":-68},{"x":102,"y":-37},{"x":60,"y":88},{"x":62,"y":15},{"x":108,"y":-61},{"x":-26,"y":-8},{"x":67,"y":-2},{"x":-8,"y":-29},{"x":68,"y":-3},{"x":-27,"y":99},{"x":76,"y":14},{"x":78,"y":-26},{"x":59,"y":73},{"x":87,"y":32},{"x":32,"y":115},{"x":59,"y":16},{"x":55,"y":-19},{"x":21,"y":-48},{"x":-41,"y":-22},{"x":21,"y":-12},{"x":92,"y":13},{"x":37,"y":47},{"x":6,"y":121}],"type":"coastline"},{"arc":[{"x":5460,"y":9136},{"x":-37,"y":80},{"x":-77,"y":-3},{"x":-11,"y":-70},{"x":86,"y":-45},{"x":39,"y":38}],"type":"coastline"},{"arc":[{"x":5435,"y":665},{"x":-33,"y":45},{"x":15,"y":106},{"x":-136,"y":260},{"x":8,"y":54},{"x":-31,"y":9},{"x":-54,"y":-97},{"x":-80,"y":-35},{"x":-53,"y":-102},{"x":-121,"y":-108},{"x":55,"y":-88},{"x":-19,"y":-54},{"x":42,"y":-132},{"x":-62,"y":-26},{"x":6,"y":-70},{"x":26,"y":-12},{"x":-46,"y":-2},{"x":7,"y":-72},{"x":57,"y":-118},{"x":-13,"y":-33},{"x":42,"y":-46},{"x":-1,"y":-79},{"x":34,"y":-12},{"x":23,"y":-53},{"x":27,"y":16},{"x":-29,"y":57},{"x":47,"y":37},{"x":20,"y":-31},{"x":-36,"y":-27},{"x":24,"y":-21},{"x":-6,"y":22},{"x":71,"y":43},{"x":36,"y":115},{"x":67,"y":1},{"x":81,"y":86},{"x":-70,"y":121},{"x":77,"y":209},{"x":-46,"y":47},{"x":38,"y":53},{"x":-16,"y":-29},{"x":46,"y":-58},{"x":3,"y":24}],"type":"coastline"},{"arc":[{"x":121368,"y":118782},{"x":-17,"y":44},{"x":-89,"y":-9},{"x":21,"y":-39},{"x":85,"y":4}],"type":"coastline"},{"arc":[{"x":121401,"y":119071},{"x":-34,"y":-15},{"x":22,"y":-41},{"x":12,"y":56}],"type":"coastline"},{"arc":[{"x":121471,"y":119440},{"x":-92,"y":121},{"x":24,"y":76},{"x":-126,"y":-86},{"x":48,"y":-98},{"x":-10,"y":-40},{"x":52,"y":-17},{"x":-27,"y":55},{"x":19,"y":14},{"x":50,"y":-56},{"x":62,"y":31}],"type":"coastline"},{"arc":[{"x":121932,"y":119301},{"x":-20,"y":-66},{"x":-115,"y":-142},{"x":-3,"y":-54},{"x":-96,"y":-56},{"x":33,"y":2},{"x":-35,"y":-31},{"x":10,"y":-88},{"x":-42,"y":-53},{"x":38,"y":-5},{"x":-9,"y":-29},{"x":24,"y":44},{"x":13,"y":-30},{"x":-27,"y":-9},{"x":22,"y":5},{"x":5,"y":-30},{"x":-42,"y":-25},{"x":-8,"y":31},{"x":-28,"y":-45},{"x":-43,"y":12},{"x":-29,"y":-64},{"x":76,"y":-86},{"x":-59,"y":-29},{"x":23,"y":-20},{"x":-20,"y":-27},{"x":-66,"y":12},{"x":3,"y":-70}],"type":"coastline"},{"arc":[{"x":116630,"y":63409},{"x":-58,"y":-55},{"x":-38,"y":28},{"x":-50,"y":-1},{"x":7,"y":34},{"x":30,"y":-1},{"x":7,"y":65},{"x":-87,"y":20},{"x":-43,"y":-45},{"x":11,"y":-30},{"x":40,"y":-2},{"x":-23,"y":-49},{"x":27,"y":-35},{"x":89,"y":-18},{"x":16,"y":17},{"x":6,"y":-39},{"x":66,"y":111}],"type":"coastline"},{"arc":[{"x":117129,"y":64051},{"x":-27,"y":31},{"x":38,"y":27},{"x":-28,"y":18},{"x":-29,"y":-31},{"x":-17,"y":18},{"x":33,"y":22},{"x":-45,"y":8},{"x":23,"y":28},{"x":-29,"y":-16},{"x":3,"y":29},{"x":-39,"y":-44},{"x":-121,"y":51},{"x":-43,"y":-25},{"x":-34,"y":9},{"x":-49,"y":63},{"x":18,"y":25},{"x":-38,"y":78},{"x":-40,"y":-31},{"x":17,"y":-37},{"x":-25,"y":-41},{"x":-130,"y":-150},{"x":48,"y":54},{"x":-16,"y":-42},{"x":33,"y":-9},{"x":-22,"y":-21},{"x":-11,"y":19},{"x":-13,"y":-37},{"x":-42,"y":3},{"x":-22,"y":48},{"x":-22,"y":-4},{"x":-5,"y":-24},{"x":-30,"y":11},{"x":-19,"y":-22},{"x":9,"y":-22},{"x":-29,"y":9},{"x":0,"y":-86},{"x":-22,"y":-11},{"x":30,"y":-35},{"x":-21,"y":4},{"x":23,"y":-24},{"x":-15,"y":-37},{"x":57,"y":-70},{"x":-26,"y":-31},{"x":24,"y":-31},{"x":-32,"y":-3},{"x":39,"y":-2},{"x":16,"y":-51},{"x":-6,"y":26},{"x":49,"y":15},{"x":-30,"y":-28},{"x":22,"y":-10},{"x":-31,"y":4},{"x":18,"y":-17},{"x":66,"y":19},{"x":2,"y":-58},{"x":41,"y":1},{"x":5,"y":-47},{"x":26,"y":13},{"x":-3,"y":-49},{"x":-80,"y":-50},{"x":12,"y":-17},{"x":69,"y":35},{"x":74,"y":-64},{"x":28,"y":61},{"x":71,"y":50},{"x":-16,"y":28},{"x":57,"y":35},{"x":20,"y":-12},{"x":51,"y":77},{"x":-28,"y":47},{"x":48,"y":44},{"x":-35,"y":61},{"x":27,"y":-10},{"x":27,"y":21},{"x":-37,"y":26},{"x":2,"y":40},{"x":41,"y":3},{"x":-30,"y":62},{"x":35,"y":-26},{"x":19,"y":60},{"x":103,"y":-9},{"x":13,"y":51}],"type":"coastline"},{"arc":[{"x":114076,"y":70870},{"x":-3,"y":-33},{"x":22,"y":19},{"x":-19,"y":14}],"type":"coastline"},{"arc":[{"x":114277,"y":70794},{"x":-37,"y":41},{"x":-68,"y":16},{"x":-33,"y":-18},{"x":69,"y":-41},{"x":0,"y":-29},{"x":49,"y":3},{"x":20,"y":28}],"type":"coastline"},{"arc":[{"x":115009,"y":70504},{"x":-29,"y":26},{"x":-18,"y":-29},{"x":27,"y":-15},{"x":20,"y":18}],"type":"coastline"},{"arc":[{"x":115014,"y":69597},{"x":4,"y":21},{"x":-28,"y":-29},{"x":-12,"y":20},{"x":5,"y":-55},{"x":31,"y":43}],"type":"coastline"},{"arc":[{"x":115120,"y":70664},{"x":-35,"y":53},{"x":10,"y":99},{"x":-44,"y":49},{"x":4,"y":54},{"x":-32,"y":22},{"x":-45,"y":8},{"x":-70,"y":-36},{"x":-178,"y":23},{"x":-108,"y":-84},{"x":-164,"y":90},{"x":-120,"y":-22},{"x":20,"y":-71},{"x":-53,"y":9},{"x":-2,"y":-79},{"x":-40,"y":-10},{"x":34,"y":-14},{"x":-3,"y":-24},{"x":-26,"y":7},{"x":19,"y":-36},{"x":48,"y":4},{"x":-60,"y":-65},{"x":26,"y":-5},{"x":14,"y":29},{"x":0,"y":-20},{"x":43,"y":3},{"x":-28,"y":-15},{"x":2,"y":-35},{"x":95,"y":32},{"x":-29,"y":34},{"x":30,"y":-7},{"x":13,"y":26},{"x":72,"y":-34},{"x":49,"y":34},{"x":16,"y":-15},{"x":-32,"y":-52},{"x":-102,"y":-5},{"x":-19,"y":-50},{"x":-102,"y":-5},{"x":-34,"y":50},{"x":-65,"y":31},{"x":26,"y":-2},{"x":-4,"y":28},{"x":-46,"y":0},{"x":32,"y":38},{"x":-94,"y":-9},{"x":7,"y":74},{"x":-57,"y":33},{"x":-42,"y":-172},{"x":-77,"y":34},{"x":11,"y":-31},{"x":-32,"y":33},{"x":-11,"y":-20},{"x":7,"y":-27},{"x":45,"y":-8},{"x":22,"y":-86},{"x":10,"y":41},{"x":27,"y":-36},{"x":41,"y":45},{"x":28,"y":-28},{"x":-30,"y":-19},{"x":-1,"y":-103},{"x":21,"y":-2},{"x":-21,"y":-27},{"x":54,"y":-2},{"x":23,"y":34},{"x":7,"y":-39},{"x":40,"y":-20},{"x":17,"y":67},{"x":59,"y":35},{"x":64,"y":-35},{"x":-60,"y":-17},{"x":10,"y":-50},{"x":193,"y":-56},{"x":78,"y":-54},{"x":42,"y":25},{"x":-32,"y":46},{"x":17,"y":55},{"x":-18,"y":-7},{"x":-30,"y":64},{"x":33,"y":8},{"x":-13,"y":71},{"x":107,"y":-27},{"x":80,"y":-89},{"x":85,"y":7},{"x":50,"y":36},{"x":-9,"y":39},{"x":-136,"y":39},{"x":-3,"y":64},{"x":80,"y":-36},{"x":29,"y":46},{"x":31,"y":-40},{"x":35,"y":-3},{"x":7,"y":46},{"x":-43,"y":54},{"x":20,"y":68},{"x":66,"y":-88},{"x":-3,"y":-78},{"x":46,"y":-1},{"x":45,"y":47},{"x":-11,"y":22},{"x":71,"y":12},{"x":3,"y":28}],"type":"coastline"},{"arc":[{"x":115117,"y":69699},{"x":-23,"y":-10},{"x":-10,"y":18},{"x":-3,"y":27},{"x":26,"y":-16},{"x":13,"y":18},{"x":-34,"y":9},{"x":22,"y":9},{"x":-26,"y":19},{"x":-5,"y":-23},{"x":-67,"y":7},{"x":39,"y":-70},{"x":19,"y":23},{"x":-27,"y":3},{"x":-6,"y":31},{"x":40,"y":-5},{"x":4,"y":-88},{"x":38,"y":48}],"type":"coastline"},{"arc":[{"x":115136,"y":69550},{"x":-33,"y":-5},{"x":19,"y":21},{"x":-39,"y":-22},{"x":42,"y":-13},{"x":11,"y":19}],"type":"coastline"},{"arc":[{"x":115224,"y":68344},{"x":-95,"y":71},{"x":-99,"y":-8},{"x":17,"y":-106},{"x":-85,"y":-35},{"x":9,"y":-69},{"x":68,"y":-71},{"x":-20,"y":-50},{"x":62,"y":-148},{"x":-6,"y":85},{"x":28,"y":-1},{"x":-21,"y":34},{"x":64,"y":80},{"x":-7,"y":66},{"x":19,"y":-8},{"x":31,"y":37},{"x":-3,"y":87},{"x":38,"y":36}],"type":"coastline"},{"arc":[{"x":115234,"y":69612},{"x":1,"y":16},{"x":-26,"y":-19},{"x":1,"y":-52},{"x":24,"y":55}],"type":"coastline"},{"arc":[{"x":115297,"y":69632},{"x":-42,"y":38},{"x":-1,"y":51},{"x":-2,"y":-45},{"x":-49,"y":15},{"x":3,"y":-50},{"x":36,"y":-8},{"x":11,"y":30},{"x":8,"y":-36},{"x":36,"y":5}],"type":"coastline"},{"arc":[{"x":115360,"y":69455},{"x":-30,"y":11},{"x":-8,"y":-19},{"x":38,"y":8}],"type":"coastline"},{"arc":[{"x":115362,"y":69596},{"x":-13,"y":18},{"x":-28,"y":-15},{"x":26,"y":-27},{"x":15,"y":24}],"type":"coastline"},{"arc":[{"x":115369,"y":69662},{"x":-54,"y":-1},{"x":45,"y":-19},{"x":-4,"y":15},{"x":12,"y":-4},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":115369,"y":69317},{"x":-63,"y":28},{"x":-5,"y":-36},{"x":68,"y":8}],"type":"coastline"},{"arc":[{"x":115398,"y":69554},{"x":-29,"y":12},{"x":-13,"y":-31},{"x":42,"y":19}],"type":"coastline"},{"arc":[{"x":115410,"y":69660},{"x":-43,"y":40},{"x":-70,"y":-5},{"x":63,"y":-19},{"x":15,"y":-15},{"x":-1,"y":-15},{"x":36,"y":14}],"type":"coastline"},{"arc":[{"x":115504,"y":68100},{"x":-36,"y":46},{"x":-49,"y":-8},{"x":50,"y":-48},{"x":35,"y":10}],"type":"coastline"},{"arc":[{"x":115695,"y":69057},{"x":-14,"y":16},{"x":-46,"y":-13},{"x":35,"y":-40},{"x":25,"y":37}],"type":"coastline"},{"arc":[{"x":115732,"y":69406},{"x":-38,"y":22},{"x":21,"y":-34},{"x":17,"y":12}],"type":"coastline"},{"arc":[{"x":115758,"y":68829},{"x":-17,"y":31},{"x":-101,"y":11},{"x":-12,"y":-43},{"x":30,"y":-11},{"x":16,"y":33},{"x":45,"y":-43},{"x":-24,"y":-25},{"x":-7,"y":32},{"x":-50,"y":-32},{"x":-22,"y":19},{"x":-12,"y":-26},{"x":-45,"y":28},{"x":44,"y":8},{"x":-33,"y":36},{"x":-176,"y":6},{"x":-56,"y":-119},{"x":92,"y":20},{"x":27,"y":54},{"x":-33,"y":8},{"x":45,"y":11},{"x":64,"y":-84},{"x":72,"y":-32},{"x":30,"y":14},{"x":29,"y":-33},{"x":-11,"y":64},{"x":48,"y":-47},{"x":3,"y":26},{"x":32,"y":-7},{"x":19,"y":78},{"x":-22,"y":5},{"x":25,"y":18}],"type":"coastline"},{"arc":[{"x":115759,"y":69083},{"x":-34,"y":-5},{"x":24,"y":-17},{"x":10,"y":22}],"type":"coastline"},{"arc":[{"x":115809,"y":69036},{"x":-96,"y":37},{"x":-14,"y":-16},{"x":0,"y":-29},{"x":28,"y":18},{"x":-22,"y":-33},{"x":36,"y":2},{"x":2,"y":29},{"x":10,"y":-31},{"x":56,"y":23}],"type":"coastline"},{"arc":[{"x":115817,"y":68716},{"x":-31,"y":7},{"x":-16,"y":-24},{"x":19,"y":-13},{"x":28,"y":30}],"type":"coastline"},{"arc":[{"x":115811,"y":69098},{"x":-22,"y":-9},{"x":25,"y":-10},{"x":-3,"y":19}],"type":"coastline"},{"arc":[{"x":115833,"y":68925},{"x":-47,"y":-11},{"x":-7,"y":19},{"x":-15,"y":-19},{"x":-17,"y":13},{"x":1,"y":-27},{"x":-11,"y":21},{"x":-41,"y":-15},{"x":106,"y":-23},{"x":31,"y":42}],"type":"coastline"},{"arc":[{"x":115854,"y":68740},{"x":-21,"y":37},{"x":-38,"y":-7},{"x":59,"y":-30}],"type":"coastline"},{"arc":[{"x":115935,"y":68748},{"x":-52,"y":62},{"x":8,"y":65},{"x":-29,"y":-19},{"x":25,"y":-84},{"x":-22,"y":-24},{"x":43,"y":-16},{"x":27,"y":16}],"type":"coastline"},{"arc":[{"x":115922,"y":68922},{"x":-54,"y":34},{"x":-16,"y":-70},{"x":35,"y":21},{"x":6,"y":-26},{"x":32,"y":8},{"x":20,"y":29},{"x":-23,"y":4}],"type":"coastline"},{"arc":[{"x":116004,"y":68695},{"x":-54,"y":21},{"x":-19,"y":-32},{"x":44,"y":-9},{"x":29,"y":20}],"type":"coastline"},{"arc":[{"x":116054,"y":68570},{"x":-70,"y":35},{"x":15,"y":-37},{"x":55,"y":2}],"type":"coastline"},{"arc":[{"x":116191,"y":68380},{"x":-27,"y":9},{"x":12,"y":17},{"x":-39,"y":-4},{"x":15,"y":36},{"x":-30,"y":-15},{"x":14,"y":-38},{"x":55,"y":-5}],"type":"coastline"},{"arc":[{"x":116190,"y":68463},{"x":-17,"y":27},{"x":-7,"y":-44},{"x":44,"y":-13},{"x":-20,"y":30}],"type":"coastline"},{"arc":[{"x":116231,"y":68369},{"x":-28,"y":31},{"x":16,"y":-45},{"x":25,"y":1},{"x":-13,"y":13}],"type":"coastline"},{"arc":[{"x":116261,"y":68479},{"x":-10,"y":52},{"x":-67,"y":2},{"x":12,"y":-51},{"x":43,"y":12},{"x":-23,"y":-35},{"x":29,"y":11},{"x":-16,"y":-18},{"x":20,"y":-1},{"x":12,"y":28}],"type":"coastline"},{"arc":[{"x":116520,"y":68562},{"x":-47,"y":-25},{"x":8,"y":-30},{"x":43,"y":24},{"x":-4,"y":31}],"type":"coastline"},{"arc":[{"x":116637,"y":68529},{"x":-36,"y":29},{"x":-15,"y":-61},{"x":16,"y":22},{"x":30,"y":-15},{"x":5,"y":25}],"type":"coastline"},{"arc":[{"x":116668,"y":68468},{"x":-46,"y":-6},{"x":1,"y":-44},{"x":45,"y":50}],"type":"coastline"},{"arc":[{"x":116713,"y":68545},{"x":-98,"y":21},{"x":43,"y":-22},{"x":1,"y":-47},{"x":11,"y":43},{"x":14,"y":-27},{"x":29,"y":32}],"type":"coastline"},{"arc":[{"x":116805,"y":68595},{"x":-20,"y":36},{"x":-49,"y":-69},{"x":40,"y":34},{"x":13,"y":-32},{"x":16,"y":31}],"type":"coastline"},{"arc":[{"x":116841,"y":68649},{"x":-40,"y":-5},{"x":14,"y":-16},{"x":26,"y":21}],"type":"coastline"},{"arc":[{"x":116987,"y":68686},{"x":-19,"y":40},{"x":-12,"y":-11},{"x":20,"y":-48},{"x":-25,"y":-26},{"x":33,"y":23},{"x":3,"y":22}],"type":"coastline"},{"arc":[{"x":116987,"y":68582},{"x":-49,"y":1},{"x":19,"y":-15},{"x":-23,"y":-26},{"x":53,"y":40}],"type":"coastline"},{"arc":[{"x":114163,"y":71026},{"x":-23,"y":-49},{"x":46,"y":-9},{"x":-17,"y":35},{"x":49,"y":58},{"x":-12,"y":-60},{"x":29,"y":-10},{"x":50,"y":74},{"x":-7,"y":-80},{"x":63,"y":-10},{"x":5,"y":-42},{"x":121,"y":21},{"x":140,"y":-87},{"x":124,"y":88},{"x":159,"y":-30},{"x":94,"y":46},{"x":71,"y":-41},{"x":2,"y":-62},{"x":78,"y":-46},{"x":-18,"y":-128},{"x":50,"y":-34},{"x":-32,"y":-15},{"x":-6,"y":-57},{"x":-29,"y":18},{"x":-18,"y":-16},{"x":10,"y":-65},{"x":50,"y":-11},{"x":22,"y":33},{"x":5,"y":-25},{"x":-45,"y":-64},{"x":-54,"y":-27},{"x":-38,"y":11},{"x":-17,"y":-39},{"x":-41,"y":-12},{"x":46,"y":-61},{"x":61,"y":1},{"x":-53,"y":-26},{"x":3,"y":-30},{"x":-41,"y":35},{"x":-10,"y":-32},{"x":-76,"y":45},{"x":-29,"y":-40},{"x":49,"y":-67},{"x":27,"y":9},{"x":-29,"y":1},{"x":10,"y":21},{"x":96,"y":-14},{"x":3,"y":-72},{"x":23,"y":22},{"x":4,"y":-21},{"x":49,"y":8},{"x":44,"y":85},{"x":57,"y":-13},{"x":-55,"y":-54},{"x":101,"y":-13},{"x":16,"y":81},{"x":26,"y":9},{"x":25,"y":-28},{"x":-31,"y":6},{"x":10,"y":-44},{"x":35,"y":28},{"x":47,"y":-23},{"x":-43,"y":-5},{"x":13,"y":-74},{"x":7,"y":21},{"x":54,"y":-13},{"x":-19,"y":-42},{"x":-79,"y":18},{"x":22,"y":-43},{"x":60,"y":-5},{"x":-22,"y":-60},{"x":-39,"y":13},{"x":9,"y":27},{"x":-21,"y":-7},{"x":-8,"y":-21},{"x":54,"y":-38},{"x":-36,"y":-28},{"x":-76,"y":73},{"x":-127,"y":5},{"x":-21,"y":-46},{"x":-47,"y":78},{"x":-46,"y":-19},{"x":-16,"y":21},{"x":-93,"y":10},{"x":-46,"y":-27},{"x":31,"y":-58},{"x":-12,"y":-31},{"x":-64,"y":115},{"x":-45,"y":11},{"x":21,"y":-82},{"x":-29,"y":1},{"x":-29,"y":-64},{"x":54,"y":-55},{"x":-46,"y":-146},{"x":81,"y":-39},{"x":-21,"y":-39},{"x":-75,"y":42},{"x":-75,"y":-22},{"x":-68,"y":-54},{"x":11,"y":-27},{"x":83,"y":8},{"x":49,"y":-24},{"x":7,"y":-32},{"x":108,"y":-23},{"x":46,"y":34},{"x":49,"y":-43},{"x":52,"y":2},{"x":-6,"y":23},{"x":-28,"y":-7},{"x":-4,"y":50},{"x":-29,"y":-1},{"x":14,"y":-28},{"x":-51,"y":26},{"x":31,"y":17},{"x":-50,"y":-2},{"x":35,"y":7},{"x":-31,"y":29},{"x":54,"y":-2},{"x":-26,"y":18},{"x":26,"y":0},{"x":24,"y":63},{"x":-29,"y":-8},{"x":-20,"y":62},{"x":83,"y":-25},{"x":3,"y":79},{"x":3,"y":-39},{"x":11,"y":15},{"x":35,"y":-15},{"x":-6,"y":23},{"x":41,"y":-15},{"x":-66,"y":60},{"x":35,"y":16},{"x":-3,"y":81},{"x":59,"y":-2},{"x":-14,"y":-76},{"x":15,"y":-19},{"x":25,"y":20},{"x":-13,"y":-42},{"x":26,"y":4},{"x":15,"y":-56},{"x":17,"y":26},{"x":50,"y":-70},{"x":7,"y":29},{"x":44,"y":-36},{"x":42,"y":36},{"x":-1,"y":-29},{"x":53,"y":5},{"x":3,"y":34},{"x":39,"y":-48},{"x":-53,"y":-9},{"x":44,"y":2},{"x":48,"y":-57},{"x":-22,"y":-33},{"x":-32,"y":17},{"x":-41,"y":-18},{"x":58,"y":0},{"x":-29,"y":-41},{"x":43,"y":-47},{"x":54,"y":37},{"x":9,"y":-109},{"x":-33,"y":1},{"x":27,"y":-13},{"x":-31,"y":-20},{"x":62,"y":16},{"x":-56,"y":-113},{"x":-38,"y":28},{"x":5,"y":-71},{"x":110,"y":47},{"x":-40,"y":15},{"x":15,"y":32},{"x":37,"y":2},{"x":-25,"y":-11},{"x":24,"y":-15},{"x":58,"y":11},{"x":-20,"y":11},{"x":28,"y":32},{"x":-59,"y":3},{"x":34,"y":1},{"x":8,"y":32},{"x":11,"y":-21},{"x":-8,"y":33},{"x":37,"y":-23},{"x":-31,"y":29},{"x":37,"y":-14},{"x":1,"y":55},{"x":22,"y":-55},{"x":37,"y":23},{"x":35,"y":-27},{"x":-8,"y":49},{"x":24,"y":14},{"x":35,"y":-47},{"x":-29,"y":-38},{"x":54,"y":-49},{"x":65,"y":3},{"x":50,"y":32},{"x":-12,"y":25},{"x":26,"y":0}],"type":"coastline"},{"arc":[{"x":116148,"y":69308},{"x":-13,"y":-18},{"x":-107,"y":41},{"x":-107,"y":8},{"x":-47,"y":-34},{"x":-49,"y":20},{"x":14,"y":-31},{"x":-55,"y":10},{"x":-59,"y":-102},{"x":-50,"y":3},{"x":79,"y":-65},{"x":11,"y":23},{"x":20,"y":-56},{"x":53,"y":14},{"x":-5,"y":30},{"x":60,"y":-18},{"x":-2,"y":44},{"x":19,"y":-44},{"x":135,"y":16},{"x":-94,"y":-39},{"x":-6,"y":-31},{"x":-12,"y":26},{"x":-53,"y":-17},{"x":7,"y":-42},{"x":45,"y":0},{"x":-53,"y":-75},{"x":37,"y":4},{"x":-21,"y":-20},{"x":31,"y":-24},{"x":35,"y":5},{"x":16,"y":40},{"x":75,"y":14},{"x":-6,"y":23},{"x":52,"y":-28},{"x":10,"y":71},{"x":35,"y":20},{"x":-31,"y":-105},{"x":-52,"y":-28},{"x":-58,"y":11},{"x":23,"y":-11},{"x":-80,"y":-63},{"x":6,"y":-19},{"x":46,"y":11},{"x":-27,"y":-99},{"x":29,"y":-38},{"x":66,"y":42},{"x":-29,"y":-26},{"x":2,"y":-77},{"x":-31,"y":2},{"x":70,"y":-50},{"x":2,"y":-20},{"x":-44,"y":35},{"x":28,"y":-69},{"x":48,"y":6},{"x":-86,"y":-56},{"x":18,"y":-24},{"x":-29,"y":0},{"x":44,"y":-65},{"x":47,"y":-2},{"x":-38,"y":89},{"x":27,"y":-29},{"x":29,"y":22},{"x":-33,"y":-45},{"x":49,"y":-15},{"x":67,"y":145},{"x":12,"y":-18},{"x":22,"y":26},{"x":-10,"y":-30},{"x":27,"y":1},{"x":13,"y":30},{"x":23,"y":-37},{"x":27,"y":28},{"x":-23,"y":-32},{"x":80,"y":26},{"x":30,"y":-13},{"x":-72,"y":-48},{"x":23,"y":-62},{"x":41,"y":38},{"x":-14,"y":-27},{"x":22,"y":-9},{"x":50,"y":56},{"x":-25,"y":53},{"x":35,"y":-15},{"x":23,"y":27},{"x":37,"y":-7},{"x":5,"y":-36},{"x":32,"y":-5},{"x":-6,"y":43},{"x":77,"y":5},{"x":-8,"y":47},{"x":-34,"y":11},{"x":32,"y":24},{"x":24,"y":-3},{"x":26,"y":-68},{"x":30,"y":13},{"x":-15,"y":17},{"x":43,"y":-15},{"x":-44,"y":51},{"x":35,"y":-17},{"x":37,"y":16},{"x":9,"y":-35},{"x":58,"y":40},{"x":18,"y":54},{"x":-77,"y":-51},{"x":-98,"y":37},{"x":65,"y":20},{"x":6,"y":78},{"x":28,"y":-12},{"x":39,"y":46},{"x":6,"y":-54},{"x":81,"y":-7},{"x":5,"y":32},{"x":38,"y":-13},{"x":-25,"y":-36},{"x":67,"y":33},{"x":-22,"y":-45},{"x":40,"y":3},{"x":36,"y":44},{"x":-42,"y":0},{"x":-6,"y":29},{"x":58,"y":-1},{"x":59,"y":67},{"x":27,"y":-8},{"x":-25,"y":9},{"x":98,"y":29},{"x":-27,"y":6},{"x":74,"y":62},{"x":-53,"y":88},{"x":28,"y":75},{"x":44,"y":-134},{"x":34,"y":34},{"x":-14,"y":-48}],"type":"coastline"},{"arc":[{"x":98007,"y":70837},{"x":-26,"y":37},{"x":-51,"y":9},{"x":5,"y":129},{"x":-42,"y":30},{"x":8,"y":-80},{"x":-74,"y":-41},{"x":-18,"y":19},{"x":23,"y":-7},{"x":30,"y":20},{"x":-32,"y":-18},{"x":-24,"y":15},{"x":26,"y":17},{"x":-122,"y":-12},{"x":-18,"y":40},{"x":35,"y":-2},{"x":-65,"y":18},{"x":-27,"y":-10},{"x":-9,"y":-90},{"x":-51,"y":-35},{"x":-81,"y":4},{"x":-78,"y":-111},{"x":-104,"y":15},{"x":-42,"y":-40},{"x":-46,"y":6},{"x":-205,"y":-81},{"x":-35,"y":-111},{"x":90,"y":-17},{"x":2,"y":-78},{"x":-161,"y":-75},{"x":6,"y":-28},{"x":-91,"y":3},{"x":-11,"y":27},{"x":42,"y":-9},{"x":-77,"y":41},{"x":-87,"y":-9},{"x":-9,"y":-61},{"x":-38,"y":6},{"x":-99,"y":-106},{"x":-82,"y":-35},{"x":-110,"y":18},{"x":31,"y":6},{"x":-35,"y":5},{"x":-54,"y":109},{"x":-52,"y":-34},{"x":-45,"y":-88},{"x":-65,"y":20},{"x":-37,"y":-88},{"x":-88,"y":-23},{"x":-2,"y":-63},{"x":-14,"y":50},{"x":-22,"y":-20},{"x":-43,"y":20},{"x":-65,"y":-27},{"x":67,"y":-39},{"x":88,"y":7},{"x":39,"y":-38},{"x":-43,"y":-98},{"x":-27,"y":-5},{"x":11,"y":11},{"x":-13,"y":16},{"x":4,"y":-24},{"x":-12,"y":15},{"x":-19,"y":-2},{"x":23,"y":18},{"x":-94,"y":-25},{"x":-33,"y":-97},{"x":35,"y":-64},{"x":70,"y":23},{"x":45,"y":-38},{"x":-6,"y":-49},{"x":55,"y":-40},{"x":-37,"y":-79},{"x":88,"y":14},{"x":115,"y":-67},{"x":115,"y":-16},{"x":46,"y":90},{"x":-37,"y":55},{"x":33,"y":104},{"x":26,"y":-2},{"x":-20,"y":-18},{"x":25,"y":2},{"x":23,"y":-40},{"x":54,"y":53},{"x":86,"y":35},{"x":58,"y":-5},{"x":127,"y":90},{"x":118,"y":-25},{"x":17,"y":-28},{"x":50,"y":145},{"x":73,"y":-14},{"x":46,"y":-41},{"x":26,"y":89},{"x":22,"y":16},{"x":31,"y":-16},{"x":20,"y":65},{"x":36,"y":10},{"x":-19,"y":11},{"x":45,"y":182},{"x":112,"y":179},{"x":-41,"y":16},{"x":20,"y":33},{"x":-23,"y":26},{"x":49,"y":13},{"x":-11,"y":64},{"x":80,"y":34},{"x":-44,"y":55},{"x":13,"y":43},{"x":57,"y":-4},{"x":10,"y":30},{"x":65,"y":21},{"x":31,"y":-11},{"x":12,"y":-55},{"x":44,"y":12},{"x":-11,"y":76},{"x":138,"y":65},{"x":81,"y":-87},{"x":45,"y":58},{"x":90,"y":-3},{"x":51,"y":-47},{"x":14,"y":36}],"type":"coastline"},{"arc":[{"x":98362,"y":71401},{"x":-81,"y":35},{"x":-92,"y":-71},{"x":-65,"y":62},{"x":21,"y":25},{"x":5,"y":-31},{"x":27,"y":-17},{"x":-26,"y":22},{"x":30,"y":9},{"x":-39,"y":29},{"x":-41,"y":-8},{"x":-24,"y":-32},{"x":10,"y":-68},{"x":-76,"y":-51},{"x":-18,"y":-53},{"x":-58,"y":10},{"x":-34,"y":68},{"x":-23,"y":-27},{"x":-68,"y":-5},{"x":-11,"y":-73},{"x":57,"y":-8},{"x":-2,"y":-57},{"x":67,"y":18},{"x":24,"y":-36},{"x":78,"y":13},{"x":90,"y":-47},{"x":-2,"y":45},{"x":33,"y":35},{"x":157,"y":20},{"x":61,"y":193}],"type":"coastline"},{"arc":[{"x":98499,"y":71451},{"x":-7,"y":16},{"x":-74,"y":-21},{"x":-14,"y":-28},{"x":-23,"y":8},{"x":62,"y":-71},{"x":20,"y":71},{"x":36,"y":25}],"type":"coastline"},{"arc":[{"x":98790,"y":72560},{"x":-32,"y":4},{"x":-1,"y":-45},{"x":33,"y":41}],"type":"coastline"},{"arc":[{"x":98923,"y":72797},{"x":-10,"y":40},{"x":-24,"y":-24},{"x":34,"y":-16}],"type":"coastline"},{"arc":[{"x":98973,"y":72635},{"x":-20,"y":48},{"x":-6,"y":-55},{"x":26,"y":7}],"type":"coastline"},{"arc":[{"x":99171,"y":71530},{"x":-53,"y":106},{"x":-273,"y":200},{"x":-41,"y":133},{"x":-90,"y":45},{"x":-50,"y":123},{"x":53,"y":67},{"x":57,"y":16},{"x":-23,"y":-25},{"x":41,"y":-1},{"x":41,"y":-82},{"x":42,"y":-6},{"x":52,"y":33},{"x":22,"y":-84},{"x":36,"y":23},{"x":25,"y":37},{"x":-39,"y":70},{"x":23,"y":129},{"x":-31,"y":25},{"x":46,"y":90},{"x":-22,"y":5},{"x":-45,"y":-85},{"x":8,"y":-71},{"x":-45,"y":-9},{"x":-37,"y":63},{"x":-46,"y":-17},{"x":-69,"y":33},{"x":-27,"y":-87},{"x":-30,"y":-2},{"x":33,"y":-13},{"x":-23,"y":-13},{"x":-7,"y":19},{"x":-15,"y":-24},{"x":-19,"y":19},{"x":-46,"y":-8},{"x":58,"y":28},{"x":-53,"y":-10},{"x":-35,"y":93},{"x":-165,"y":-16},{"x":-90,"y":-111},{"x":59,"y":-33},{"x":-20,"y":-84},{"x":63,"y":-40},{"x":-19,"y":-17},{"x":-45,"y":13},{"x":-90,"y":-54},{"x":-26,"y":-154},{"x":-121,"y":-127},{"x":88,"y":31},{"x":59,"y":-30},{"x":98,"y":23},{"x":23,"y":-39},{"x":-9,"y":-22},{"x":-20,"y":31},{"x":-13,"y":-59},{"x":74,"y":-106},{"x":-14,"y":31},{"x":30,"y":37},{"x":84,"y":32},{"x":3,"y":-22},{"x":16,"y":19},{"x":30,"y":-27},{"x":-6,"y":-26},{"x":-32,"y":25},{"x":29,"y":-31},{"x":23,"y":5},{"x":-98,"y":-137},{"x":59,"y":30},{"x":101,"y":4},{"x":97,"y":-79},{"x":38,"y":7},{"x":-33,"y":92},{"x":28,"y":43},{"x":-11,"y":46},{"x":39,"y":-5},{"x":60,"y":66},{"x":-74,"y":-128},{"x":17,"y":-62},{"x":21,"y":3},{"x":4,"y":-43},{"x":156,"y":17},{"x":2,"y":-26},{"x":-113,"y":-47},{"x":-52,"y":8},{"x":-52,"y":-50},{"x":-173,"y":29},{"x":-22,"y":-16},{"x":20,"y":-48},{"x":60,"y":-25},{"x":-16,"y":-57},{"x":76,"y":-6},{"x":17,"y":-36},{"x":41,"y":19},{"x":14,"y":-22},{"x":32,"y":15},{"x":67,"y":-23},{"x":41,"y":85},{"x":214,"y":103},{"x":13,"y":174}],"type":"coastline"},{"arc":[{"x":98858,"y":74920},{"x":-8,"y":-19},{"x":34,"y":69},{"x":-26,"y":-50}],"type":"coastline"},{"arc":[{"x":98857,"y":75003},{"x":-17,"y":-14},{"x":174,"y":68},{"x":-157,"y":-54}],"type":"coastline"},{"arc":[{"x":97852,"y":74923},{"x":26,"y":-16},{"x":-9,"y":-53},{"x":36,"y":7},{"x":145,"y":-84},{"x":76,"y":72},{"x":205,"y":6},{"x":20,"y":67},{"x":164,"y":66},{"x":27,"y":-55},{"x":-17,"y":47},{"x":56,"y":19},{"x":-28,"y":-82},{"x":40,"y":67},{"x":-8,"y":27},{"x":70,"y":36},{"x":16,"y":-20},{"x":-6,"y":43},{"x":93,"y":32},{"x":62,"y":-157},{"x":-60,"y":158},{"x":38,"y":12},{"x":64,"y":-70},{"x":22,"y":8},{"x":-16,"y":44},{"x":32,"y":11},{"x":28,"y":5},{"x":38,"y":-36},{"x":-35,"y":71},{"x":78,"y":-8},{"x":13,"y":23},{"x":-39,"y":-4},{"x":29,"y":3},{"x":-17,"y":28},{"x":29,"y":35},{"x":193,"y":79},{"x":96,"y":-7},{"x":17,"y":50},{"x":191,"y":31},{"x":70,"y":-58},{"x":156,"y":15}],"type":"coastline"},{"arc":[{"x":112092,"y":72461},{"x":-71,"y":-13},{"x":64,"y":-9},{"x":7,"y":22}],"type":"coastline"},{"arc":[{"x":112406,"y":72045},{"x":-124,"y":131},{"x":23,"y":30},{"x":-101,"y":87},{"x":-28,"y":-23},{"x":-43,"y":33},{"x":-39,"y":-108},{"x":142,"y":-102},{"x":65,"y":7},{"x":77,"y":-68},{"x":28,"y":13}],"type":"coastline"},{"arc":[{"x":111329,"y":73096},{"x":48,"y":-31},{"x":15,"y":-68},{"x":121,"y":-29},{"x":41,"y":-84},{"x":83,"y":-43},{"x":64,"y":-142},{"x":46,"y":-28},{"x":9,"y":18},{"x":57,"y":-8},{"x":45,"y":36},{"x":3,"y":58},{"x":56,"y":-13},{"x":21,"y":-64},{"x":-29,"y":-95},{"x":10,"y":23},{"x":64,"y":-5},{"x":8,"y":-50},{"x":-28,"y":-18},{"x":26,"y":-25},{"x":35,"y":50},{"x":-1,"y":-36},{"x":27,"y":-3},{"x":57,"y":71},{"x":19,"y":-91},{"x":15,"y":44},{"x":28,"y":-48},{"x":-14,"y":-27},{"x":34,"y":18},{"x":106,"y":-99},{"x":-21,"y":-31},{"x":20,"y":11},{"x":1,"y":-24},{"x":4,"y":26},{"x":40,"y":-46},{"x":49,"y":19},{"x":93,"y":-28},{"x":17,"y":-28},{"x":94,"y":30},{"x":38,"y":-1},{"x":14,"y":-26},{"x":17,"y":39},{"x":-6,"y":-39},{"x":19,"y":38},{"x":81,"y":9},{"x":46,"y":-27},{"x":67,"y":30},{"x":40,"y":-40},{"x":45,"y":35},{"x":-40,"y":52},{"x":16,"y":13},{"x":38,"y":-46},{"x":29,"y":23},{"x":-17,"y":65},{"x":82,"y":40},{"x":33,"y":-20},{"x":38,"y":70},{"x":54,"y":-16}],"type":"coastline"},{"arc":[{"x":249117,"y":245637},{"x":-64,"y":52},{"x":22,"y":76},{"x":-19,"y":16},{"x":-94,"y":-105},{"x":86,"y":-20},{"x":-4,"y":-88},{"x":51,"y":6},{"x":22,"y":63}],"type":"coastline"},{"arc":[{"x":249153,"y":245862},{"x":-30,"y":22},{"x":-16,"y":-45},{"x":46,"y":23}],"type":"coastline"},{"arc":[{"x":249452,"y":246779},{"x":-28,"y":2},{"x":1,"y":34},{"x":-68,"y":-4},{"x":-93,"y":-160},{"x":32,"y":-11},{"x":55,"y":72},{"x":18,"y":-42},{"x":27,"y":24},{"x":36,"y":-14},{"x":33,"y":35},{"x":-13,"y":64}],"type":"coastline"},{"arc":[{"x":249876,"y":247281},{"x":-21,"y":37},{"x":-39,"y":-36},{"x":48,"y":-23},{"x":12,"y":22}],"type":"coastline"},{"arc":[{"x":249976,"y":247183},{"x":-16,"y":26},{"x":-4,"y":-32},{"x":25,"y":-11},{"x":-5,"y":17}],"type":"coastline"},{"arc":[{"x":250069,"y":247478},{"x":1,"y":-30},{"x":22,"y":21},{"x":-23,"y":9}],"type":"coastline"},{"arc":[{"x":251063,"y":247090},{"x":25,"y":117},{"x":-18,"y":24},{"x":-35,"y":-7},{"x":-21,"y":73},{"x":-54,"y":-37},{"x":-22,"y":8},{"x":-22,"y":138},{"x":-71,"y":34},{"x":-6,"y":85},{"x":-63,"y":1},{"x":-215,"y":191},{"x":-52,"y":146},{"x":52,"y":82},{"x":-61,"y":-57},{"x":-47,"y":94},{"x":-35,"y":14},{"x":-14,"y":-39},{"x":-15,"y":13},{"x":-34,"y":-28},{"x":-10,"y":-118},{"x":-42,"y":-20},{"x":-37,"y":45},{"x":-52,"y":-33},{"x":-12,"y":37},{"x":-96,"y":1},{"x":13,"y":-50},{"x":-83,"y":-29},{"x":35,"y":-65},{"x":39,"y":-2},{"x":38,"y":-132},{"x":-51,"y":-166},{"x":-19,"y":13},{"x":-8,"y":-35},{"x":-8,"y":20},{"x":-19,"y":-11},{"x":13,"y":-114},{"x":45,"y":-3},{"x":15,"y":-34},{"x":-49,"y":-9},{"x":4,"y":-80},{"x":-93,"y":-127},{"x":-55,"y":2},{"x":-25,"y":26},{"x":19,"y":48},{"x":-42,"y":-12},{"x":-24,"y":18},{"x":-7,"y":131},{"x":-49,"y":30},{"x":-4,"y":-64},{"x":37,"y":4},{"x":-45,"y":-11},{"x":-50,"y":-79},{"x":37,"y":-26},{"x":-15,"y":-28},{"x":32,"y":-61},{"x":24,"y":13},{"x":28,"y":-23},{"x":-15,"y":-70},{"x":39,"y":-58},{"x":-44,"y":-40},{"x":-59,"y":29},{"x":-43,"y":-25},{"x":-9,"y":-56},{"x":78,"y":-20},{"x":5,"y":-31},{"x":-64,"y":-38},{"x":-5,"y":-53},{"x":-62,"y":-15},{"x":-10,"y":36},{"x":-46,"y":-13},{"x":-4,"y":54},{"x":-65,"y":-10},{"x":-51,"y":-80},{"x":-46,"y":15},{"x":-22,"y":-49},{"x":19,"y":-39},{"x":72,"y":-27},{"x":34,"y":-60},{"x":-80,"y":-11},{"x":-26,"y":45},{"x":-29,"y":-37},{"x":23,"y":-16},{"x":-36,"y":2},{"x":-42,"y":-37},{"x":-25,"y":-56},{"x":65,"y":-30},{"x":14,"y":-51},{"x":-11,"y":-24},{"x":-44,"y":34},{"x":-43,"y":-26},{"x":-12,"y":-51},{"x":35,"y":-28},{"x":-21,"y":-83},{"x":-43,"y":-13},{"x":19,"y":-47},{"x":-51,"y":5},{"x":-43,"y":52},{"x":-31,"y":-26},{"x":-37,"y":-108},{"x":46,"y":-30},{"x":14,"y":-71},{"x":51,"y":6},{"x":34,"y":-50},{"x":11,"y":-118},{"x":-57,"y":-59},{"x":-48,"y":21},{"x":-41,"y":-12},{"x":7,"y":-61},{"x":-65,"y":-43},{"x":-36,"y":27},{"x":-30,"y":-59},{"x":9,"y":74},{"x":-32,"y":5},{"x":-5,"y":49},{"x":-46,"y":-31},{"x":-47,"y":-108},{"x":-63,"y":9},{"x":-45,"y":-27},{"x":18,"y":-122},{"x":-19,"y":-67},{"x":-47,"y":-33},{"x":0,"y":-94},{"x":-19,"y":0},{"x":30,"y":-46},{"x":60,"y":1},{"x":28,"y":91},{"x":42,"y":21},{"x":28,"y":-125},{"x":54,"y":27},{"x":-28,"y":-77},{"x":32,"y":0},{"x":12,"y":-47},{"x":80,"y":3},{"x":6,"y":-48},{"x":36,"y":-31},{"x":21,"y":11},{"x":14,"y":-27},{"x":26,"y":24},{"x":2,"y":-36},{"x":37,"y":19},{"x":19,"y":-24},{"x":61,"y":35},{"x":50,"y":-34},{"x":83,"y":66},{"x":18,"y":-119},{"x":-54,"y":-63},{"x":-72,"y":-4},{"x":-2,"y":51},{"x":-47,"y":23},{"x":-106,"y":-60},{"x":8,"y":-40},{"x":27,"y":22},{"x":22,"y":-12},{"x":-27,"y":-23},{"x":-6,"y":-43},{"x":27,"y":-5},{"x":-19,"y":-60},{"x":17,"y":-9},{"x":64,"y":61},{"x":26,"y":-12},{"x":-25,"y":-115},{"x":46,"y":0},{"x":13,"y":38},{"x":60,"y":-15},{"x":21,"y":40},{"x":17,"y":-14},{"x":25,"y":18},{"x":-12,"y":27},{"x":38,"y":1},{"x":14,"y":41},{"x":36,"y":-14},{"x":-21,"y":57},{"x":57,"y":48},{"x":29,"y":-13},{"x":-7,"y":-31},{"x":66,"y":42},{"x":44,"y":-8},{"x":50,"y":-108},{"x":71,"y":-12},{"x":1,"y":-37},{"x":147,"y":-58},{"x":95,"y":-1},{"x":22,"y":25},{"x":9,"y":90},{"x":118,"y":103},{"x":36,"y":66},{"x":-23,"y":115},{"x":-28,"y":17},{"x":36,"y":140},{"x":46,"y":5},{"x":-25,"y":42},{"x":83,"y":186},{"x":-33,"y":203},{"x":15,"y":20},{"x":28,"y":-12},{"x":18,"y":169},{"x":-28,"y":61},{"x":-66,"y":43},{"x":20,"y":29},{"x":69,"y":-26},{"x":27,"y":123},{"x":-88,"y":222},{"x":-136,"y":64},{"x":171,"y":-2},{"x":65,"y":-97},{"x":38,"y":-185},{"x":71,"y":15},{"x":25,"y":-30},{"x":27,"y":19},{"x":152,"y":288},{"x":235,"y":268},{"x":-39,"y":45},{"x":-13,"y":80},{"x":-106,"y":45},{"x":-22,"y":45},{"x":-48,"y":3},{"x":26,"y":4},{"x":-10,"y":57},{"x":28,"y":5},{"x":35,"y":-33},{"x":3,"y":-59},{"x":157,"y":-64},{"x":18,"y":15},{"x":6,"y":54},{"x":-112,"y":116},{"x":29,"y":45},{"x":44,"y":-6},{"x":18,"y":43},{"x":-52,"y":27},{"x":-73,"y":-29},{"x":-12,"y":98},{"x":74,"y":47},{"x":41,"y":-84},{"x":70,"y":18},{"x":57,"y":-29},{"x":56,"y":67},{"x":-43,"y":75}],"type":"coastline"},{"arc":[{"x":254789,"y":238991},{"x":-29,"y":24},{"x":3,"y":-25},{"x":26,"y":1}],"type":"coastline"},{"arc":[{"x":259041,"y":240211},{"x":-34,"y":71},{"x":-25,"y":-38},{"x":-50,"y":-5},{"x":-45,"y":68},{"x":3,"y":122},{"x":-19,"y":-16},{"x":-28,"y":38},{"x":-54,"y":-2},{"x":-51,"y":46},{"x":-146,"y":332},{"x":-348,"y":151},{"x":-35,"y":156},{"x":-33,"y":33},{"x":-41,"y":-11},{"x":-33,"y":51},{"x":15,"y":76},{"x":-23,"y":106},{"x":-32,"y":-20},{"x":-70,"y":44},{"x":-46,"y":208},{"x":-39,"y":38},{"x":10,"y":63},{"x":-40,"y":48},{"x":3,"y":63},{"x":-41,"y":83},{"x":-49,"y":12},{"x":-15,"y":51},{"x":-1,"y":240},{"x":59,"y":377},{"x":-40,"y":446},{"x":29,"y":375},{"x":148,"y":595},{"x":65,"y":134},{"x":43,"y":39},{"x":53,"y":6},{"x":35,"y":102},{"x":90,"y":117},{"x":-6,"y":48},{"x":-28,"y":-62},{"x":-324,"y":-207},{"x":-251,"y":-71},{"x":-54,"y":-58},{"x":-124,"y":-51},{"x":-104,"y":-19},{"x":-62,"y":15},{"x":-34,"y":-78},{"x":-42,"y":-20},{"x":12,"y":-56},{"x":-91,"y":-32},{"x":11,"y":-78},{"x":-37,"y":-66},{"x":-93,"y":-86},{"x":-50,"y":-14},{"x":-31,"y":-72},{"x":55,"y":1},{"x":124,"y":-135},{"x":28,"y":-69},{"x":60,"y":-30},{"x":50,"y":-94},{"x":-15,"y":-227},{"x":-212,"y":-448},{"x":-267,"y":-229},{"x":-98,"y":15},{"x":-43,"y":-54},{"x":-67,"y":79},{"x":-53,"y":-49},{"x":34,"y":-43},{"x":4,"y":-109},{"x":-40,"y":-62},{"x":-104,"y":-16},{"x":-18,"y":-102},{"x":-79,"y":-58},{"x":-61,"y":8},{"x":0,"y":-107},{"x":-70,"y":-44},{"x":-19,"y":-76},{"x":-175,"y":-104},{"x":11,"y":-100},{"x":-32,"y":-86},{"x":22,"y":-56},{"x":-35,"y":-100},{"x":-4,"y":-146},{"x":-25,"y":11},{"x":28,"y":-39},{"x":-31,"y":-91},{"x":32,"y":-175},{"x":-52,"y":-256},{"x":-1,"y":-174},{"x":33,"y":-114},{"x":-89,"y":-251},{"x":26,"y":-172},{"x":-48,"y":-166},{"x":-220,"y":-293},{"x":-184,"y":-179},{"x":-182,"y":-103},{"x":-113,"y":-40},{"x":-27,"y":28},{"x":-72,"y":-64},{"x":-33,"y":7},{"x":-3,"y":49},{"x":-33,"y":15},{"x":-47,"y":-113},{"x":-39,"y":41},{"x":-42,"y":-13},{"x":25,"y":-143},{"x":-44,"y":-69},{"x":-72,"y":-21},{"x":-70,"y":-232},{"x":26,"y":-60},{"x":-34,"y":-127},{"x":-126,"y":-126},{"x":-68,"y":-12},{"x":-33,"y":-44},{"x":44,"y":-86},{"x":-42,"y":-128},{"x":-174,"y":-167},{"x":-44,"y":-79},{"x":-178,"y":-154},{"x":-149,"y":-69},{"x":-85,"y":-6},{"x":-43,"y":60},{"x":-63,"y":-19},{"x":18,"y":-101},{"x":-33,"y":-39},{"x":-67,"y":-9},{"x":-29,"y":-85},{"x":-147,"y":-8},{"x":-4,"y":-46},{"x":-131,"y":-86},{"x":-167,"y":-38},{"x":-241,"y":15},{"x":-59,"y":33},{"x":-74,"y":104},{"x":20,"y":-127},{"x":-34,"y":-32},{"x":5,"y":-120},{"x":40,"y":41},{"x":12,"y":-20},{"x":65,"y":18},{"x":34,"y":-136},{"x":-38,"y":-133},{"x":-98,"y":-117},{"x":-115,"y":-76},{"x":-197,"y":-78},{"x":-33,"y":-1},{"x":-18,"y":31},{"x":-16,"y":-83},{"x":-50,"y":-25},{"x":-28,"y":14},{"x":-1,"y":-25},{"x":-71,"y":-33},{"x":-172,"y":-31},{"x":-83,"y":40},{"x":-31,"y":-36},{"x":-106,"y":9},{"x":-79,"y":-79},{"x":-86,"y":-30},{"x":-27,"y":35},{"x":-19,"y":-10},{"x":1,"y":-165},{"x":-267,"y":-526},{"x":-25,"y":-118},{"x":16,"y":-149},{"x":-61,"y":-146},{"x":66,"y":-111},{"x":-27,"y":-146},{"x":-101,"y":-139},{"x":-217,"y":-123},{"x":28,"y":-51},{"x":-45,"y":-64},{"x":-177,"y":-92},{"x":42,"y":-46},{"x":-9,"y":-64},{"x":-104,"y":-86},{"x":-269,"y":-101},{"x":-190,"y":-5},{"x":-380,"y":-57},{"x":-323,"y":23},{"x":-577,"y":-114},{"x":-298,"y":-12},{"x":-206,"y":-50},{"x":-167,"y":2},{"x":-231,"y":-94},{"x":-1,"y":-76},{"x":231,"y":-33},{"x":236,"y":27},{"x":143,"y":57},{"x":259,"y":44},{"x":41,"y":38},{"x":70,"y":-9},{"x":51,"y":-258},{"x":-9,"y":-234},{"x":-107,"y":-543},{"x":-62,"y":-174},{"x":-25,"y":24},{"x":27,"y":39},{"x":-32,"y":-37},{"x":18,"y":50},{"x":-27,"y":-6},{"x":39,"y":58},{"x":-44,"y":-13},{"x":-9,"y":-64},{"x":32,"y":-43},{"x":213,"y":-124},{"x":198,"y":-41},{"x":198,"y":76},{"x":181,"y":2},{"x":466,"y":-160},{"x":120,"y":-120},{"x":156,"y":62},{"x":156,"y":408},{"x":51,"y":38},{"x":77,"y":-3},{"x":43,"y":41},{"x":85,"y":9},{"x":27,"y":36},{"x":179,"y":78},{"x":118,"y":101},{"x":78,"y":128},{"x":33,"y":146},{"x":113,"y":183},{"x":55,"y":163},{"x":133,"y":14},{"x":-9,"y":61},{"x":70,"y":129},{"x":103,"y":85},{"x":10,"y":145},{"x":79,"y":148},{"x":184,"y":39},{"x":80,"y":61},{"x":41,"y":112},{"x":144,"y":179},{"x":30,"y":142},{"x":132,"y":125},{"x":58,"y":21},{"x":101,"y":225},{"x":74,"y":41},{"x":58,"y":-50},{"x":42,"y":2},{"x":12,"y":99},{"x":78,"y":125},{"x":61,"y":204},{"x":170,"y":246},{"x":44,"y":22},{"x":21,"y":-24},{"x":57,"y":68},{"x":135,"y":7},{"x":66,"y":-36},{"x":100,"y":9},{"x":95,"y":-33},{"x":158,"y":16},{"x":55,"y":98},{"x":105,"y":43},{"x":52,"y":74},{"x":106,"y":50},{"x":70,"y":98},{"x":112,"y":81},{"x":74,"y":11},{"x":199,"y":305},{"x":212,"y":205},{"x":130,"y":76},{"x":112,"y":107},{"x":230,"y":62},{"x":103,"y":102},{"x":300,"y":187},{"x":339,"y":471},{"x":7,"y":118},{"x":165,"y":84},{"x":60,"y":123},{"x":74,"y":32},{"x":207,"y":195},{"x":236,"y":132},{"x":126,"y":1},{"x":73,"y":41},{"x":240,"y":53},{"x":103,"y":-42},{"x":128,"y":180},{"x":76,"y":48},{"x":28,"y":-5},{"x":23,"y":57},{"x":227,"y":195},{"x":398,"y":205},{"x":307,"y":103},{"x":171,"y":190},{"x":43,"y":101},{"x":214,"y":202},{"x":57,"y":150},{"x":-17,"y":63},{"x":37,"y":31},{"x":-29,"y":66},{"x":72,"y":76}],"type":"coastline"},{"arc":[{"x":260180,"y":251605},{"x":-22,"y":-6},{"x":15,"y":-31},{"x":7,"y":37}],"type":"coastline"},{"arc":[{"x":260771,"y":248604},{"x":-23,"y":15},{"x":-39,"y":-34},{"x":39,"y":-19},{"x":23,"y":38}],"type":"coastline"},{"arc":[{"x":266694,"y":260576},{"x":-25,"y":6},{"x":9,"y":-26},{"x":16,"y":20}],"type":"coastline"},{"arc":[{"x":272194,"y":266948},{"x":-43,"y":22},{"x":-3,"y":280},{"x":10,"y":26},{"x":35,"y":-7},{"x":-58,"y":154},{"x":6,"y":128},{"x":-57,"y":198},{"x":31,"y":84},{"x":-84,"y":28},{"x":-45,"y":162},{"x":-119,"y":184},{"x":-66,"y":31},{"x":-67,"y":104},{"x":-17,"y":-11},{"x":-18,"y":32},{"x":-69,"y":27},{"x":-309,"y":-13},{"x":-61,"y":-60},{"x":-16,"y":13},{"x":-4,"y":-50},{"x":-88,"y":-71},{"x":-169,"y":-422},{"x":-153,"y":-72},{"x":-106,"y":-6},{"x":-169,"y":31},{"x":-14,"y":124},{"x":-83,"y":22},{"x":-26,"y":122},{"x":-70,"y":55},{"x":-47,"y":1},{"x":-75,"y":77},{"x":-9,"y":58},{"x":-22,"y":-14},{"x":-72,"y":44},{"x":-81,"y":-8},{"x":-47,"y":-72},{"x":-64,"y":12},{"x":-77,"y":-90},{"x":-73,"y":-2},{"x":-1,"y":-50},{"x":-78,"y":-23},{"x":-5,"y":-28},{"x":-40,"y":11},{"x":-34,"y":-95},{"x":-65,"y":-12},{"x":-57,"y":69},{"x":-71,"y":-64},{"x":-43,"y":-7},{"x":15,"y":-339},{"x":-60,"y":-155},{"x":-127,"y":-179},{"x":56,"y":-59},{"x":129,"y":-278},{"x":-47,"y":-189},{"x":34,"y":-146},{"x":-29,"y":-271},{"x":38,"y":-35},{"x":-29,"y":-40},{"x":-16,"y":-202},{"x":39,"y":-45},{"x":-75,"y":-41},{"x":61,"y":-118},{"x":-71,"y":-130},{"x":11,"y":-56},{"x":-20,"y":-18},{"x":-30,"y":13},{"x":5,"y":-50},{"x":-71,"y":-93},{"x":-7,"y":-102},{"x":-33,"y":-16},{"x":-4,"y":-162},{"x":-75,"y":-167},{"x":-80,"y":-59},{"x":-19,"y":-58},{"x":-42,"y":5},{"x":-23,"y":-73},{"x":-65,"y":-25},{"x":15,"y":-39},{"x":-25,"y":-78},{"x":-81,"y":-47},{"x":-32,"y":-75},{"x":-56,"y":-24},{"x":-15,"y":-132},{"x":-38,"y":-14},{"x":-39,"y":46},{"x":-5,"y":-90},{"x":-134,"y":22},{"x":-68,"y":-73},{"x":61,"y":-91},{"x":2,"y":-79},{"x":-24,"y":-75},{"x":-127,"y":-133},{"x":12,"y":-71},{"x":32,"y":-24},{"x":4,"y":-131},{"x":-187,"y":-281},{"x":-31,"y":1},{"x":-20,"y":-54},{"x":-43,"y":6},{"x":38,"y":-129},{"x":-74,"y":-152},{"x":-72,"y":-547},{"x":-90,"y":-226},{"x":-170,"y":-246},{"x":-26,"y":-11},{"x":-46,"y":31},{"x":-24,"y":-25},{"x":11,"y":-53},{"x":-40,"y":-51},{"x":-25,"y":4},{"x":-6,"y":-44},{"x":-55,"y":22},{"x":-7,"y":-69},{"x":40,"y":-2},{"x":11,"y":-32},{"x":-58,"y":-166},{"x":-187,"y":-263},{"x":-39,"y":-23},{"x":-40,"y":13},{"x":-62,"y":-150},{"x":-26,"y":-15},{"x":-18,"y":17},{"x":-10,"y":-39},{"x":-56,"y":-25},{"x":8,"y":-115},{"x":-44,"y":-83},{"x":5,"y":-70},{"x":-63,"y":-98},{"x":-51,"y":13},{"x":14,"y":-78},{"x":-157,"y":-202},{"x":-28,"y":-102},{"x":-148,"y":-233},{"x":-239,"y":-250},{"x":-74,"y":-12},{"x":-20,"y":-77},{"x":-114,"y":-67},{"x":-51,"y":15},{"x":-23,"y":-67},{"x":-56,"y":-4},{"x":-24,"y":-147},{"x":-110,"y":-118},{"x":-70,"y":-38},{"x":-38,"y":7},{"x":-28,"y":-75},{"x":-125,"y":-110},{"x":-82,"y":-17},{"x":-45,"y":-78},{"x":-115,"y":-46},{"x":-62,"y":-75},{"x":-96,"y":-37},{"x":-73,"y":-262},{"x":-57,"y":-107},{"x":-56,"y":-24},{"x":-16,"y":-116},{"x":-103,"y":-108},{"x":-118,"y":-39},{"x":-17,"y":-29},{"x":36,"y":-42},{"x":-20,"y":-38},{"x":-69,"y":13},{"x":-54,"y":-70},{"x":-5,"y":-85},{"x":70,"y":2},{"x":33,"y":-64},{"x":-84,"y":-123},{"x":51,"y":-120},{"x":-25,"y":-113},{"x":16,"y":-53},{"x":-67,"y":-187},{"x":-59,"y":-67},{"x":-98,"y":-428},{"x":217,"y":-404},{"x":152,"y":-162},{"x":54,"y":-27},{"x":179,"y":21},{"x":95,"y":-31},{"x":56,"y":-195},{"x":-25,"y":-227},{"x":-105,"y":-265},{"x":-183,"y":-239},{"x":-222,"y":-181},{"x":-19,"y":17},{"x":-86,"y":-65},{"x":-137,"y":-35},{"x":-103,"y":11},{"x":-136,"y":218},{"x":-26,"y":170},{"x":-63,"y":19},{"x":-81,"y":-127},{"x":-313,"y":-249},{"x":-113,"y":-34},{"x":-188,"y":-144},{"x":-147,"y":-14},{"x":-303,"y":-330},{"x":-87,"y":-44},{"x":-29,"y":-86},{"x":-51,"y":-18},{"x":-25,"y":-101},{"x":29,"y":-69},{"x":-13,"y":-91},{"x":-133,"y":-250},{"x":-63,"y":-52},{"x":-158,"y":-10},{"x":-78,"y":-87},{"x":-19,"y":-253},{"x":-50,"y":-119},{"x":-40,"y":-1},{"x":26,"y":-44},{"x":-29,"y":-68},{"x":-104,"y":-66},{"x":4,"y":-127},{"x":-133,"y":-194},{"x":-79,"y":-52},{"x":14,"y":-52},{"x":-83,"y":-125},{"x":-71,"y":-58},{"x":-48,"y":23},{"x":-41,"y":-86},{"x":-88,"y":2},{"x":25,"y":-44},{"x":-53,"y":-106},{"x":5,"y":-51},{"x":-56,"y":-34},{"x":-20,"y":46},{"x":-30,"y":-33},{"x":48,"y":-49},{"x":-27,"y":-79},{"x":-62,"y":-24},{"x":-44,"y":-58},{"x":-83,"y":6},{"x":-15,"y":-74},{"x":-87,"y":-60},{"x":-68,"y":11},{"x":-52,"y":-92},{"x":-89,"y":-29},{"x":-31,"y":18},{"x":3,"y":-31},{"x":-62,"y":-18},{"x":-14,"y":-76},{"x":-95,"y":-110},{"x":-266,"y":-175},{"x":-161,"y":-56},{"x":-155,"y":-12},{"x":-106,"y":-96},{"x":-52,"y":29},{"x":-15,"y":-122},{"x":-59,"y":-10},{"x":-20,"y":-73},{"x":-105,"y":-96},{"x":-24,"y":6},{"x":-68,"y":-124},{"x":-113,"y":-55},{"x":55,"y":-58},{"x":-31,"y":-34},{"x":20,"y":-72},{"x":-102,"y":-212},{"x":11,"y":-64},{"x":-62,"y":-82},{"x":16,"y":-51},{"x":-24,"y":-63},{"x":22,"y":-162},{"x":98,"y":-224},{"x":-70,"y":-194},{"x":-96,"y":-158},{"x":-141,"y":-155},{"x":-59,"y":8},{"x":-32,"y":-102},{"x":-77,"y":-87},{"x":-293,"y":-239},{"x":-163,"y":-81},{"x":-54,"y":-52},{"x":-103,"y":-14},{"x":-311,"y":-173},{"x":-88,"y":29},{"x":-316,"y":-372},{"x":-26,"y":-91},{"x":38,"y":-42},{"x":26,"y":-113},{"x":-2,"y":-267},{"x":98,"y":-205},{"x":29,"y":-137},{"x":79,"y":-101},{"x":74,"y":-40},{"x":65,"y":8},{"x":0,"y":22},{"x":62,"y":20},{"x":54,"y":-17},{"x":68,"y":51},{"x":67,"y":-11},{"x":73,"y":54},{"x":202,"y":48},{"x":140,"y":102},{"x":23,"y":50},{"x":33,"y":-4},{"x":86,"y":77},{"x":18,"y":172},{"x":68,"y":137},{"x":287,"y":264},{"x":79,"y":18},{"x":237,"y":-147},{"x":68,"y":-81},{"x":129,"y":-13},{"x":63,"y":50},{"x":124,"y":-2},{"x":16,"y":-22},{"x":23,"y":34},{"x":45,"y":-1},{"x":139,"y":74},{"x":22,"y":-13},{"x":88,"y":59},{"x":-64,"y":51},{"x":-113,"y":-18},{"x":-92,"y":56},{"x":-178,"y":15},{"x":-114,"y":120},{"x":-104,"y":64},{"x":-43,"y":177},{"x":70,"y":120},{"x":209,"y":215},{"x":239,"y":84},{"x":121,"y":-30},{"x":111,"y":40},{"x":42,"y":-10},{"x":87,"y":-183},{"x":77,"y":-87},{"x":56,"y":-36},{"x":48,"y":25},{"x":24,"y":42},{"x":-18,"y":113},{"x":33,"y":68},{"x":-58,"y":105},{"x":24,"y":91},{"x":-69,"y":10},{"x":26,"y":52},{"x":-12,"y":77},{"x":-92,"y":-16},{"x":-36,"y":126},{"x":-101,"y":27},{"x":34,"y":162},{"x":-17,"y":75},{"x":52,"y":147},{"x":122,"y":196},{"x":380,"y":350},{"x":74,"y":158},{"x":114,"y":73},{"x":220,"y":87},{"x":277,"y":55},{"x":151,"y":3},{"x":158,"y":-52},{"x":59,"y":-61},{"x":-26,"y":-37},{"x":17,"y":-63},{"x":-22,"y":-60},{"x":35,"y":-115},{"x":45,"y":-19},{"x":11,"y":-164},{"x":-28,"y":-57},{"x":30,"y":-139},{"x":21,"y":7},{"x":17,"y":-32},{"x":39,"y":21},{"x":41,"y":-127},{"x":72,"y":-21},{"x":44,"y":-54},{"x":146,"y":-48},{"x":88,"y":11},{"x":106,"y":-24},{"x":82,"y":76},{"x":95,"y":262},{"x":-11,"y":60},{"x":-66,"y":72},{"x":12,"y":94},{"x":-76,"y":42},{"x":-8,"y":132},{"x":-265,"y":230},{"x":5,"y":138},{"x":114,"y":328},{"x":47,"y":70},{"x":292,"y":77},{"x":196,"y":110},{"x":193,"y":-3},{"x":52,"y":25},{"x":-2,"y":46},{"x":58,"y":28},{"x":15,"y":77},{"x":56,"y":42},{"x":-11,"y":104},{"x":83,"y":31},{"x":-37,"y":71},{"x":117,"y":220},{"x":-17,"y":78},{"x":277,"y":503},{"x":77,"y":55},{"x":36,"y":97},{"x":37,"y":2},{"x":29,"y":59},{"x":109,"y":70},{"x":60,"y":104},{"x":23,"y":-5},{"x":12,"y":34},{"x":114,"y":72},{"x":184,"y":210},{"x":23,"y":-8},{"x":30,"y":43},{"x":45,"y":13},{"x":46,"y":102},{"x":92,"y":82},{"x":22,"y":54},{"x":-34,"y":22},{"x":51,"y":-2},{"x":48,"y":101},{"x":-9,"y":188},{"x":31,"y":-12},{"x":12,"y":47},{"x":41,"y":-42},{"x":-10,"y":78},{"x":47,"y":46},{"x":27,"y":-40},{"x":22,"y":23},{"x":58,"y":-28},{"x":28,"y":69},{"x":41,"y":-69},{"x":93,"y":19},{"x":75,"y":-45},{"x":22,"y":61},{"x":36,"y":-23},{"x":43,"y":16},{"x":-13,"y":37},{"x":40,"y":14},{"x":4,"y":29},{"x":46,"y":1},{"x":39,"y":-39},{"x":51,"y":38},{"x":145,"y":7},{"x":19,"y":-20},{"x":28,"y":28},{"x":43,"y":-10},{"x":45,"y":23},{"x":23,"y":82},{"x":41,"y":-51},{"x":66,"y":27},{"x":16,"y":-24},{"x":101,"y":26},{"x":44,"y":-47},{"x":82,"y":-12},{"x":70,"y":-162},{"x":-11,"y":-35},{"x":44,"y":-15},{"x":30,"y":-111},{"x":45,"y":7},{"x":19,"y":102},{"x":41,"y":-15},{"x":-7,"y":53},{"x":-85,"y":108},{"x":5,"y":102},{"x":-63,"y":67},{"x":54,"y":192},{"x":-27,"y":-6},{"x":-22,"y":29},{"x":8,"y":79},{"x":-68,"y":84},{"x":-80,"y":-45},{"x":-18,"y":57},{"x":-78,"y":38},{"x":-40,"y":67},{"x":-35,"y":392},{"x":-24,"y":34},{"x":-40,"y":6},{"x":-16,"y":51},{"x":42,"y":202},{"x":191,"y":332},{"x":1,"y":52},{"x":126,"y":99},{"x":61,"y":-7},{"x":24,"y":-31},{"x":37,"y":41},{"x":56,"y":-25},{"x":70,"y":36},{"x":123,"y":-72},{"x":111,"y":10},{"x":36,"y":76},{"x":87,"y":51},{"x":34,"y":-19},{"x":29,"y":39},{"x":67,"y":4},{"x":72,"y":-23},{"x":105,"y":236},{"x":81,"y":44},{"x":87,"y":-17},{"x":58,"y":42},{"x":47,"y":153},{"x":-30,"y":173},{"x":71,"y":30},{"x":39,"y":53},{"x":37,"y":-11},{"x":29,"y":63},{"x":-4,"y":117},{"x":-23,"y":6},{"x":23,"y":97},{"x":75,"y":90},{"x":-7,"y":55},{"x":30,"y":2},{"x":11,"y":63},{"x":-20,"y":31},{"x":19,"y":36},{"x":-61,"y":82},{"x":-58,"y":28},{"x":-10,"y":44},{"x":49,"y":60},{"x":5,"y":60},{"x":112,"y":77},{"x":45,"y":82},{"x":64,"y":34},{"x":72,"y":-47},{"x":157,"y":122},{"x":116,"y":19},{"x":47,"y":-22},{"x":59,"y":-136},{"x":140,"y":41},{"x":94,"y":-34},{"x":23,"y":27},{"x":33,"y":-15},{"x":127,"y":39},{"x":76,"y":-38},{"x":52,"y":-80},{"x":16,"y":25},{"x":40,"y":-3},{"x":51,"y":-13},{"x":32,"y":-45},{"x":137,"y":17},{"x":114,"y":-56},{"x":95,"y":-12},{"x":103,"y":34},{"x":150,"y":-68},{"x":145,"y":99},{"x":119,"y":45},{"x":117,"y":93},{"x":64,"y":-3},{"x":150,"y":166},{"x":216,"y":167},{"x":104,"y":222},{"x":-93,"y":168},{"x":-91,"y":82},{"x":-42,"y":158},{"x":-56,"y":-31},{"x":-168,"y":37},{"x":-20,"y":-17},{"x":-29,"y":37},{"x":-10,"y":-19},{"x":-49,"y":9},{"x":-6,"y":39},{"x":-23,"y":-13},{"x":-41,"y":70},{"x":-67,"y":-66},{"x":-287,"y":95},{"x":-195,"y":118},{"x":-31,"y":33},{"x":7,"y":50},{"x":-25,"y":-4},{"x":10,"y":22},{"x":-57,"y":13},{"x":-28,"y":42},{"x":-36,"y":-46},{"x":10,"y":-39},{"x":-37,"y":-16},{"x":-84,"y":18},{"x":-66,"y":64},{"x":-97,"y":35},{"x":-122,"y":-25},{"x":-134,"y":48},{"x":-24,"y":36},{"x":13,"y":57},{"x":-80,"y":35},{"x":-50,"y":-42},{"x":-17,"y":26},{"x":42,"y":68},{"x":-106,"y":14},{"x":-72,"y":92},{"x":-99,"y":349},{"x":-38,"y":573},{"x":27,"y":423},{"x":106,"y":769},{"x":114,"y":528},{"x":131,"y":416},{"x":59,"y":110},{"x":85,"y":-7},{"x":55,"y":97},{"x":76,"y":9},{"x":11,"y":77},{"x":87,"y":131},{"x":5,"y":69},{"x":47,"y":44},{"x":7,"y":102},{"x":28,"y":27},{"x":16,"y":-16},{"x":46,"y":131},{"x":40,"y":10},{"x":-53,"y":79},{"x":8,"y":27},{"x":27,"y":20},{"x":87,"y":-37},{"x":54,"y":62},{"x":67,"y":19},{"x":-12,"y":54},{"x":96,"y":148},{"x":90,"y":45},{"x":7,"y":122},{"x":109,"y":-67},{"x":-7,"y":17},{"x":108,"y":54},{"x":-22,"y":93},{"x":109,"y":96},{"x":69,"y":10},{"x":32,"y":-51},{"x":107,"y":-45},{"x":93,"y":57},{"x":28,"y":50},{"x":43,"y":-5},{"x":97,"y":63},{"x":20,"y":112},{"x":113,"y":144},{"x":204,"y":97},{"x":26,"y":169},{"x":43,"y":20},{"x":-19,"y":66},{"x":35,"y":43},{"x":51,"y":-1},{"x":-2,"y":79},{"x":43,"y":28},{"x":64,"y":-12},{"x":60,"y":90},{"x":135,"y":62},{"x":41,"y":-12},{"x":-5,"y":40},{"x":64,"y":27},{"x":36,"y":160},{"x":-24,"y":44},{"x":10,"y":88},{"x":40,"y":65},{"x":48,"y":17},{"x":24,"y":137},{"x":68,"y":44},{"x":42,"y":74},{"x":72,"y":-2},{"x":45,"y":26},{"x":68,"y":-25},{"x":191,"y":156},{"x":-23,"y":190},{"x":74,"y":458},{"x":93,"y":289},{"x":30,"y":53},{"x":35,"y":23},{"x":21,"y":-14},{"x":2,"y":19}],"type":"coastline"},{"arc":[{"x":147118,"y":176077},{"x":-17,"y":86}],"type":"coastline"},{"arc":[{"x":147101,"y":176163},{"x":-37,"y":-13},{"x":-12,"y":57},{"x":11,"y":-58},{"x":30,"y":6},{"x":8,"y":-23},{"x":11,"y":-107},{"x":-23,"y":-7},{"x":40,"y":5}],"type":"coastline"},{"arc":[{"x":81617,"y":179595},{"x":-81,"y":93},{"x":-96,"y":9},{"x":-90,"y":-51},{"x":-22,"y":-111},{"x":149,"y":-123},{"x":114,"y":77},{"x":26,"y":106}],"type":"coastline"},{"arc":[{"x":99221,"y":175596},{"x":-6,"y":2},{"x":2,"y":-3},{"x":4,"y":1}],"type":"coastline"},{"arc":[{"x":93568,"y":176977},{"x":-31,"y":3},{"x":13,"y":-11},{"x":18,"y":8}],"type":"coastline"},{"arc":[{"x":72735,"y":179985},{"x":6,"y":0},{"x":-1,"y":6},{"x":-5,"y":-6}],"type":"coastline"},{"arc":[{"x":146830,"y":174815},{"x":7,"y":0}],"type":"coastline"},{"arc":[{"x":146846,"y":174816},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":146848,"y":174818},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":146849,"y":174819},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":146852,"y":174819},{"x":1,"y":1}],"type":"coastline"},{"arc":[{"x":146854,"y":174820},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":146859,"y":174820},{"x":2,"y":1}],"type":"coastline"},{"arc":[{"x":146861,"y":174821},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":146863,"y":174821},{"x":0,"y":-1}],"type":"coastline"},{"arc":[{"x":146865,"y":174821},{"x":2,"y":0}],"type":"coastline"},{"arc":[{"x":146867,"y":174821},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":146868,"y":174821},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":146870,"y":174821},{"x":3,"y":0}],"type":"coastline"},{"arc":[{"x":146873,"y":174821},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":146875,"y":174821},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":146876,"y":174821},{"x":1,"y":0}],"type":"coastline"},{"arc":[{"x":146878,"y":174822},{"x":12,"y":3}],"type":"coastline"},{"arc":[{"x":146891,"y":174824},{"x":4,"y":0}],"type":"coastline"},{"arc":[{"x":146897,"y":174826},{"x":5,"y":0}],"type":"coastline"},{"arc":[{"x":146913,"y":174827},{"x":0,"y":1}],"type":"coastline"},{"arc":[{"x":146914,"y":174828},{"x":7,"y":27}],"type":"coastline"},{"arc":[{"x":146919,"y":174901},{"x":0,"y":4}],"type":"coastline"},{"arc":[{"x":146919,"y":174905},{"x":-7,"y":0}],"type":"coastline"},{"arc":[{"x":146912,"y":174905},{"x":-7,"y":-1}],"type":"coastline"},{"arc":[{"x":146902,"y":174904},{"x":-25,"y":-1}],"type":"coastline"},{"arc":[{"x":146877,"y":174903},{"x":-11,"y":-1}],"type":"coastline"},{"arc":[{"x":146866,"y":174902},{"x":-8,"y":0}],"type":"coastline"},{"arc":[{"x":146858,"y":174902},{"x":-8,"y":-1}],"type":"coastline"},{"arc":[{"x":146850,"y":174901},{"x":-14,"y":-1}],"type":"coastline"},{"arc":[{"x":146834,"y":174900},{"x":-4,"y":0}],"type":"coastline"},{"arc":[{"x":146830,"y":174900},{"x":-3,"y":0}],"type":"coastline"},{"arc":[{"x":146827,"y":174900},{"x":-25,"y":-2}],"type":"coastline"},{"arc":[{"x":146802,"y":174898},{"x":-12,"y":0}],"type":"coastline"},{"arc":[{"x":146784,"y":174897},{"x":-14,"y":0}],"type":"coastline"},{"arc":[{"x":146746,"y":174895},{"x":-1,"y":1}],"type":"coastline"},{"arc":[{"x":146745,"y":174896},{"x":2,"y":-88},{"x":54,"y":4}],"type":"coastline"},{"arc":[{"x":146375,"y":174489},{"x":-59,"y":91},{"x":-208,"y":-295},{"x":59,"y":8},{"x":123,"y":76},{"x":85,"y":120}],"type":"coastline"},{"arc":[{"x":146173,"y":174660},{"x":-110,"y":57},{"x":-128,"y":-194},{"x":178,"y":-207},{"x":71,"y":108},{"x":-29,"y":19},{"x":12,"y":18},{"x":29,"y":-19},{"x":103,"y":152},{"x":-126,"y":66}],"type":"coastline"},{"arc":[{"x":138713,"y":143591},{"x":-96,"y":-65},{"x":-36,"y":45},{"x":36,"y":-45},{"x":-56,"y":-35},{"x":96,"y":-122},{"x":53,"y":40},{"x":21,"y":-25},{"x":-20,"y":26},{"x":63,"y":50},{"x":61,"y":131},{"x":-122,"y":0}],"type":"coastline"},{"arc":[{"x":120977,"y":134700},{"x":-3,"y":2},{"x":0,"y":-3},{"x":3,"y":1}],"type":"coastline"},{"arc":[{"x":123775,"y":83485},{"x":0,"y":-5},{"x":9,"y":14},{"x":-9,"y":-9}],"type":"coastline"},{"arc":[{"x":93685,"y":70305},{"x":-12,"y":3},{"x":1,"y":-23},{"x":11,"y":20}],"type":"coastline"},{"arc":[{"x":91904,"y":70376},{"x":-7,"y":1},{"x":6,"y":-10},{"x":1,"y":9}],"type":"coastline"},{"arc":[{"x":30263,"y":50757},{"x":-26,"y":34},{"x":-45,"y":-24}],"type":"coastline"}]}} \ No newline at end of file diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist index 9625e105d..7c5696400 100644 --- a/ios/Flutter/AppFrameworkInfo.plist +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -21,6 +21,6 @@ CFBundleVersion 1.0 MinimumOSVersion - 11.0 + 12.0 diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 51a54b947..52345b0ed 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -28,18 +28,18 @@ PODS: - Firebase/Messaging (10.18.0): - Firebase/CoreOnly - FirebaseMessaging (~> 10.18.0) - - firebase_analytics (10.7.2): + - firebase_analytics (10.8.0): - Firebase/Analytics (= 10.18.0) - firebase_core - Flutter - - firebase_core (2.24.0): + - firebase_core (2.24.2): - Firebase/CoreOnly (= 10.18.0) - Flutter - - firebase_crashlytics (3.4.6): + - firebase_crashlytics (3.4.9): - Firebase/Crashlytics (= 10.18.0) - firebase_core - Flutter - - firebase_messaging (14.7.6): + - firebase_messaging (14.7.10): - Firebase/Messaging (= 10.18.0) - firebase_core - Flutter @@ -284,10 +284,10 @@ SPEC CHECKSUMS: awesome_notifications_fcm: 554a9088f81a91dbe8a318abee6b48f43e4a9417 device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6 Firebase: 414ad272f8d02dfbf12662a9d43f4bba9bec2a06 - firebase_analytics: a8c0d8ba83f213c9b775b5f61d36dadaafb1b239 - firebase_core: f802c5c1f6caff9b8d38b591a36e7b25f8878936 - firebase_crashlytics: 0db78a5b6badc630f21a833d0c9ab20ab5d81948 - firebase_messaging: ca2fc59ddd52ef032d80f1a717d12eae8fa0e994 + firebase_analytics: b3d6dd14c61549a29abb10e9843446a4d8bb53eb + firebase_core: 0af4a2b24f62071f9bf283691c0ee41556dcb3f5 + firebase_crashlytics: 4b91b8ad60ee7c168fe88979f84c9573a729de7a + firebase_messaging: 90e8a6db84b6e1e876cebce4f30f01dc495e7014 FirebaseAnalytics: 4d310b35c48eaa4a058ddc04bdca6bdb5dc0fe80 FirebaseCore: 2322423314d92f946219c8791674d2f3345b598f FirebaseCoreExtension: 62b201498aa10535801cdf3448c7f4db5e24ed80 @@ -296,7 +296,7 @@ SPEC CHECKSUMS: FirebaseInstallations: e842042ec6ac1fd2e37d7706363ebe7f662afea4 FirebaseMessaging: 9bc34a98d2e0237e1b121915120d4d48ddcf301e FirebaseSessions: f90fe9212ee2818641eda051c0835c9c4e30d9ae - Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 + Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 flutter_local_notifications: 0c0b1ae97e741e1521e4c1629a459d04b9aec743 GoogleAppMeasurement: 70ce9aa438cff1cfb31ea3e660bcc67734cb716e GoogleDataTransport: 57c22343ab29bc686febbf7cbb13bad167c2d8fe @@ -308,13 +308,13 @@ SPEC CHECKSUMS: nanopb: d4d75c12cd1316f4a64e3c6963f879ecd4b5e0d5 native_shared_preferences: 21a805f6149643c25a20a4f534692131faebadfe package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85 - path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 + path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 PromisesObjC: c50d2056b5253dadbd6c2bea79b0674bd5a52fa4 PromisesSwift: 28dca69a9c40779916ac2d6985a0192a5cb4a265 share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5 - shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 - url_launcher_ios: bf5ce03e0e2088bad9cc378ea97fa0ed5b49673b + shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 + url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 PODFILE CHECKSUM: d59dd9e75b9e11b8ba613c80c719a76883a184f3 diff --git a/ios/PrivacyInfo.xcprivacy b/ios/PrivacyInfo.xcprivacy new file mode 100644 index 000000000..fca9cd83c --- /dev/null +++ b/ios/PrivacyInfo.xcprivacy @@ -0,0 +1,60 @@ + + + + + NSPrivacyCollectedDataTypes + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeUserID + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeCrashData + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePerformanceData + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + + + + NSPrivacyTrackingDomains + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + + + NSPrivacyTracking + + + diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 98df439df..9b2f805e4 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -9,35 +9,33 @@ /* Begin PBXBuildFile section */ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 4D8C2A0FE754EAC10919F948 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A0FCA18092F52AB3383AD60 /* Pods_Runner.framework */; }; 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; - 858741302B1E1EAD0049670F /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8587412F2B1E1EAD0049670F /* NotificationService.swift */; }; - 858741342B1E1EAD0049670F /* FcmServiceExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 8587412D2B1E1EAD0049670F /* FcmServiceExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; - 858A97502B1E1FA100079924 /* Pods_FcmServiceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CAAEA7380B5D23E97A979A95 /* Pods_FcmServiceExtension.framework */; }; - 858A97512B1E1FA100079924 /* Pods_FcmServiceExtension.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CAAEA7380B5D23E97A979A95 /* Pods_FcmServiceExtension.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 8587411E2B1DE12B0049670F /* NotificationService.m in Sources */ = {isa = PBXBuildFile; fileRef = 8587411D2B1DE12B0049670F /* NotificationService.m */; }; + 858741222B1DE12B0049670F /* FcmServiceExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 8587411A2B1DE12B0049670F /* FcmServiceExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 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 */; }; + FD61DC8896725765729D98AB /* Pods_FcmServiceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CAAEA7380B5D23E97A979A95 /* Pods_FcmServiceExtension.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 858741322B1E1EAD0049670F /* PBXContainerItemProxy */ = { + 858741202B1DE12B0049670F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 97C146E61CF9000F007C117D /* Project object */; proxyType = 1; - remoteGlobalIDString = 8587412C2B1E1EAD0049670F; + remoteGlobalIDString = 858741192B1DE12B0049670F; remoteInfo = FcmServiceExtension; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 858741232B1DE12B0049670F /* Embed Foundation Extensions */ = { + 85145B192B1F59D100784C85 /* Embed Foundation Extensions */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 13; files = ( - 858741342B1E1EAD0049670F /* FcmServiceExtension.appex in Embed Foundation Extensions */, + 858741222B1DE12B0049670F /* FcmServiceExtension.appex in Embed Foundation Extensions */, ); name = "Embed Foundation Extensions"; runOnlyForDeploymentPostprocessing = 0; @@ -66,21 +64,19 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 08C333785C8F8E10CD6CC696 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; 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 = ""; }; - 3698DE022D9225564B8E7EFD /* Pods-FcmServiceExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FcmServiceExtension.release.xcconfig"; path = "Target Support Files/Pods-FcmServiceExtension/Pods-FcmServiceExtension.release.xcconfig"; sourceTree = ""; }; - 36D34AA610B456F76321C66C /* Pods-FcmServiceExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FcmServiceExtension.debug.xcconfig"; path = "Target Support Files/Pods-FcmServiceExtension/Pods-FcmServiceExtension.debug.xcconfig"; sourceTree = ""; }; 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 6EA9F85075B7E99398BD2C1E /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; + 6597E867A22765F6AADEA11A /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; 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 = ""; }; - 7A0FCA18092F52AB3383AD60 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 78BBC9D30B7DD3A0C4B4AFEE /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 8510456E2B1B20AF00EED834 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = ""; }; - 8587412D2B1E1EAD0049670F /* FcmServiceExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = FcmServiceExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; - 8587412F2B1E1EAD0049670F /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = ""; }; - 858741312B1E1EAD0049670F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8587411A2B1DE12B0049670F /* FcmServiceExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = FcmServiceExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; + 8587411C2B1DE12B0049670F /* NotificationService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationService.h; sourceTree = ""; }; + 8587411D2B1DE12B0049670F /* NotificationService.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationService.m; sourceTree = ""; }; + 8587411F2B1DE12B0049670F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 8ED9602EF8CDD0414AA974B1 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 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 = ""; }; @@ -89,20 +85,19 @@ 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 = ""; }; - A7A3196E4C1378C313019AD0 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; - A865C1E78DF0C8E74B9F34C4 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; - C79C72177F3F929ED7DED179 /* Pods-FcmServiceExtension.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FcmServiceExtension.profile.xcconfig"; path = "Target Support Files/Pods-FcmServiceExtension/Pods-FcmServiceExtension.profile.xcconfig"; sourceTree = ""; }; - CAAEA7380B5D23E97A979A95 /* Pods_FcmServiceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FcmServiceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D19859179733BFFCB6DE2EBC /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; - F0CC6D2DE06AB74C987E07D0 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; + 99B391858A4EFC95F561B05E /* Pods_FcmServiceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FcmServiceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A44F22D7804610848A5A41DF /* Pods-FcmServiceExtension.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FcmServiceExtension.profile.xcconfig"; path = "Target Support Files/Pods-FcmServiceExtension/Pods-FcmServiceExtension.profile.xcconfig"; sourceTree = ""; }; + ADF8C988AACE03B82D4760CB /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + BAD419430E9ED3DD1D1D656D /* Pods-FcmServiceExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FcmServiceExtension.debug.xcconfig"; path = "Target Support Files/Pods-FcmServiceExtension/Pods-FcmServiceExtension.debug.xcconfig"; sourceTree = ""; }; + BB2485496F3FDA0206409B97 /* Pods-FcmServiceExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FcmServiceExtension.release.xcconfig"; path = "Target Support Files/Pods-FcmServiceExtension/Pods-FcmServiceExtension.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 8587412A2B1E1EAD0049670F /* Frameworks */ = { + 858741172B1DE12B0049670F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 858A97502B1E1FA100079924 /* Pods_FcmServiceExtension.framework in Frameworks */, + FD61DC8896725765729D98AB /* Pods_FcmServiceExtension.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -110,28 +105,41 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4D8C2A0FE754EAC10919F948 /* Pods_Runner.framework in Frameworks */, + BB08B283114FDA153EA368D7 /* Pods_Runner.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 1F5AFB7B86F93C0490BEEFC2 /* Frameworks */ = { + 37E217C7AA5B870CF2ADE991 /* Pods */ = { isa = PBXGroup; children = ( - 7A0FCA18092F52AB3383AD60 /* Pods_Runner.framework */, - 8ED9602EF8CDD0414AA974B1 /* Pods_RunnerTests.framework */, - CAAEA7380B5D23E97A979A95 /* Pods_FcmServiceExtension.framework */, + BAD419430E9ED3DD1D1D656D /* Pods-FcmServiceExtension.debug.xcconfig */, + BB2485496F3FDA0206409B97 /* Pods-FcmServiceExtension.release.xcconfig */, + A44F22D7804610848A5A41DF /* Pods-FcmServiceExtension.profile.xcconfig */, + 78BBC9D30B7DD3A0C4B4AFEE /* Pods-Runner.debug.xcconfig */, + ADF8C988AACE03B82D4760CB /* Pods-Runner.release.xcconfig */, + 6597E867A22765F6AADEA11A /* Pods-Runner.profile.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + 780B8182ACE31F9AF11ED5CF /* Frameworks */ = { + isa = PBXGroup; + children = ( + 99B391858A4EFC95F561B05E /* Pods_FcmServiceExtension.framework */, + 86D3A5225875F01D12D8F080 /* Pods_Runner.framework */, ); name = Frameworks; sourceTree = ""; }; - 8587412E2B1E1EAD0049670F /* FcmServiceExtension */ = { + 8587411B2B1DE12B0049670F /* FcmServiceExtension */ = { isa = PBXGroup; children = ( - 8587412F2B1E1EAD0049670F /* NotificationService.swift */, - 858741312B1E1EAD0049670F /* Info.plist */, + 8587411C2B1DE12B0049670F /* NotificationService.h */, + 8587411D2B1DE12B0049670F /* NotificationService.m */, + 8587411F2B1DE12B0049670F /* Info.plist */, ); path = FcmServiceExtension; sourceTree = ""; @@ -150,12 +158,14 @@ 97C146E51CF9000F007C117D = { isa = PBXGroup; children = ( + 85DEC2D12B582FA000A4C6F4 /* PrivacyInfo.xcprivacy */, + 85145B2E2B1F5BAC00784C85 /* GoogleService-Info.plist */, 9740EEB11CF90186004384FC /* Flutter */, 97C146F01CF9000F007C117D /* Runner */, - 8587412E2B1E1EAD0049670F /* FcmServiceExtension */, + 8587411B2B1DE12B0049670F /* FcmServiceExtension */, 97C146EF1CF9000F007C117D /* Products */, - F5663D1DFB0D62F1F2916288 /* Pods */, - 1F5AFB7B86F93C0490BEEFC2 /* Frameworks */, + 37E217C7AA5B870CF2ADE991 /* Pods */, + 780B8182ACE31F9AF11ED5CF /* Frameworks */, ); sourceTree = ""; }; @@ -163,7 +173,7 @@ isa = PBXGroup; children = ( 97C146EE1CF9000F007C117D /* Runner.app */, - 8587412D2B1E1EAD0049670F /* FcmServiceExtension.appex */, + 8587411A2B1DE12B0049670F /* FcmServiceExtension.appex */, ); name = Products; sourceTree = ""; @@ -171,7 +181,7 @@ 97C146F01CF9000F007C117D /* Runner */ = { isa = PBXGroup; children = ( - 8510456E2B1B20AF00EED834 /* Runner.entitlements */, + 85145B082B1F59A900784C85 /* Runner.entitlements */, 97C146FA1CF9000F007C117D /* Main.storyboard */, 97C146FD1CF9000F007C117D /* Assets.xcassets */, 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, @@ -184,34 +194,17 @@ path = Runner; sourceTree = ""; }; - F5663D1DFB0D62F1F2916288 /* Pods */ = { - isa = PBXGroup; - children = ( - D19859179733BFFCB6DE2EBC /* Pods-Runner.debug.xcconfig */, - A7A3196E4C1378C313019AD0 /* Pods-Runner.release.xcconfig */, - F0CC6D2DE06AB74C987E07D0 /* Pods-Runner.profile.xcconfig */, - 6EA9F85075B7E99398BD2C1E /* Pods-RunnerTests.debug.xcconfig */, - 08C333785C8F8E10CD6CC696 /* Pods-RunnerTests.release.xcconfig */, - A865C1E78DF0C8E74B9F34C4 /* Pods-RunnerTests.profile.xcconfig */, - 36D34AA610B456F76321C66C /* Pods-FcmServiceExtension.debug.xcconfig */, - 3698DE022D9225564B8E7EFD /* Pods-FcmServiceExtension.release.xcconfig */, - C79C72177F3F929ED7DED179 /* Pods-FcmServiceExtension.profile.xcconfig */, - ); - path = Pods; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 8587412C2B1E1EAD0049670F /* FcmServiceExtension */ = { + 858741192B1DE12B0049670F /* FcmServiceExtension */ = { isa = PBXNativeTarget; - buildConfigurationList = 858741352B1E1EAD0049670F /* Build configuration list for PBXNativeTarget "FcmServiceExtension" */; + buildConfigurationList = 858741272B1DE12B0049670F /* Build configuration list for PBXNativeTarget "FcmServiceExtension" */; buildPhases = ( - ACB4C78FF428B2F03B552569 /* [CP] Check Pods Manifest.lock */, - 858741292B1E1EAD0049670F /* Sources */, - 8587412A2B1E1EAD0049670F /* Frameworks */, - 8587412B2B1E1EAD0049670F /* Resources */, - 858A97522B1E1FA100079924 /* Embed Frameworks */, + 0F1081F53CF4605FABDEF55A /* [CP] Check Pods Manifest.lock */, + 858741162B1DE12B0049670F /* Sources */, + 858741172B1DE12B0049670F /* Frameworks */, + 858741182B1DE12B0049670F /* Resources */, ); buildRules = ( ); @@ -219,28 +212,28 @@ ); name = FcmServiceExtension; productName = FcmServiceExtension; - productReference = 8587412D2B1E1EAD0049670F /* FcmServiceExtension.appex */; + productReference = 8587411A2B1DE12B0049670F /* FcmServiceExtension.appex */; productType = "com.apple.product-type.app-extension"; }; 97C146ED1CF9000F007C117D /* Runner */ = { isa = PBXNativeTarget; buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; buildPhases = ( - 26284F3D303FDD8165F5337E /* [CP] Check Pods Manifest.lock */, + 8D77308EB1D96D2FEA5BFF6D /* [CP] Check Pods Manifest.lock */, + 9740EEB61CF901F6004384FC /* Run Script */, 97C146EA1CF9000F007C117D /* Sources */, - A533C670392FBEBCF13860F7 /* [CP] Embed Pods Frameworks */, - 858741232B1DE12B0049670F /* Embed Foundation Extensions */, 97C146EB1CF9000F007C117D /* Frameworks */, + 85145B192B1F59D100784C85 /* Embed Foundation Extensions */, 97C146EC1CF9000F007C117D /* Resources */, - 9740EEB61CF901F6004384FC /* Run Script */, 9705A1C41CF9048500538489 /* Embed Frameworks */, 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - 455F554D5D4EF0BC5E34958C /* [firebase_crashlytics] Crashlytics Upload Symbols */, + 82EEBE268738BCF11B78DD00 /* [CP] Embed Pods Frameworks */, + 23806EEB4DC576BCF93C1F07 /* [firebase_crashlytics] Crashlytics Upload Symbols */, ); buildRules = ( ); dependencies = ( - 858741332B1E1EAD0049670F /* PBXTargetDependency */, + 858741212B1DE12B0049670F /* PBXTargetDependency */, ); name = Runner; productName = Runner; @@ -258,7 +251,7 @@ LastUpgradeCheck = 1430; ORGANIZATIONNAME = ""; TargetAttributes = { - 8587412C2B1E1EAD0049670F = { + 858741192B1DE12B0049670F = { CreatedOnToolsVersion = 15.0.1; }; 97C146ED1CF9000F007C117D = { @@ -269,11 +262,11 @@ }; buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; + developmentRegion = ja; hasScannedForEncodings = 0; knownRegions = ( - en, Base, + ja, ); mainGroup = 97C146E51CF9000F007C117D; productRefGroup = 97C146EF1CF9000F007C117D /* Products */; @@ -281,13 +274,13 @@ projectRoot = ""; targets = ( 97C146ED1CF9000F007C117D /* Runner */, - 8587412C2B1E1EAD0049670F /* FcmServiceExtension */, + 858741192B1DE12B0049670F /* FcmServiceExtension */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 8587412B2B1E1EAD0049670F /* Resources */ = { + 858741182B1DE12B0049670F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -300,6 +293,7 @@ files = ( 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 85145B2F2B1F5BAC00784C85 /* GoogleService-Info.plist in Resources */, 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, ); @@ -308,7 +302,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 26284F3D303FDD8165F5337E /* [CP] Check Pods Manifest.lock */ = { + 0F1081F53CF4605FABDEF55A /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -323,14 +317,14 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-FcmServiceExtension-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + 26284F3D303FDD8165F5337E /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; @@ -346,7 +340,24 @@ shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; }; - 455F554D5D4EF0BC5E34958C /* [firebase_crashlytics] Crashlytics Upload Symbols */ = { + 82EEBE268738BCF11B78DD00 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 8D77308EB1D96D2FEA5BFF6D /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -354,20 +365,19 @@ inputFileListPaths = ( ); inputPaths = ( - "\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}\"", - "\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/\"", - "\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"", - "\"$(TARGET_BUILD_DIR)/$(EXECUTABLE_PATH)\"", - "\"$(PROJECT_DIR)/firebase_app_id_file.json\"", + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", ); - name = "[firebase_crashlytics] Crashlytics Upload Symbols"; + name = "[CP] Check Pods Manifest.lock"; outputFileListPaths = ( ); outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"$PODS_ROOT/FirebaseCrashlytics/upload-symbols\" --flutter-project \"$PROJECT_DIR/firebase_app_id_file.json\" "; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; }; 9740EEB61CF901F6004384FC /* Run Script */ = { isa = PBXShellScriptBuildPhase; @@ -384,21 +394,26 @@ shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; }; - A533C670392FBEBCF13860F7 /* [CP] Embed Pods Frameworks */ = { + DBC832C47A23EACAA2112386 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - name = "[CP] Embed Pods Frameworks"; + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-FcmServiceExtension-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; ACB4C78FF428B2F03B552569 /* [CP] Check Pods Manifest.lock */ = { @@ -426,11 +441,11 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 858741292B1E1EAD0049670F /* Sources */ = { + 858741162B1DE12B0049670F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 858741302B1E1EAD0049670F /* NotificationService.swift in Sources */, + 8587411E2B1DE12B0049670F /* NotificationService.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -446,10 +461,10 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 858741332B1E1EAD0049670F /* PBXTargetDependency */ = { + 858741212B1DE12B0049670F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 8587412C2B1E1EAD0049670F /* FcmServiceExtension */; - targetProxy = 858741322B1E1EAD0049670F /* PBXContainerItemProxy */; + target = 858741192B1DE12B0049670F /* FcmServiceExtension */; + targetProxy = 858741202B1DE12B0049670F /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -458,6 +473,7 @@ isa = PBXVariantGroup; children = ( 97C146FB1CF9000F007C117D /* Base */, + 855B7AF12B45A61A00B99B1C /* ja */, ); name = Main.storyboard; sourceTree = ""; @@ -466,6 +482,7 @@ isa = PBXVariantGroup; children = ( 97C147001CF9000F007C117D /* Base */, + 855B7AF22B45A61A00B99B1C /* ja */, ); name = LaunchScreen.storyboard; sourceTree = ""; @@ -477,6 +494,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -533,8 +551,9 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = NO; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1078; + CURRENT_PROJECT_VERSION = 1106; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM; ENABLE_BITCODE = NO; @@ -556,9 +575,9 @@ }; name = Profile; }; - 858741362B1E1EAD0049670F /* Debug */ = { + 858741242B1DE12B0049670F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36D34AA610B456F76321C66C /* Pods-FcmServiceExtension.debug.xcconfig */; + baseConfigurationReference = BAD419430E9ED3DD1D1D656D /* Pods-FcmServiceExtension.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; @@ -569,9 +588,9 @@ CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 1106; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM; ENABLE_BITCODE = NO; @@ -594,7 +613,7 @@ PRODUCT_BUNDLE_IDENTIFIER = net.yumnumm.eqmonitor.FcmServiceExtension; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore net.yumnumm.eqmonitor.FcmServiceExtension"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development net.yumnumm.eqmonitor.FcmServiceExtension"; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; SWIFT_EMIT_LOC_STRINGS = YES; @@ -604,9 +623,9 @@ }; name = Debug; }; - 858741372B1E1EAD0049670F /* Release */ = { + 858741252B1DE12B0049670F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3698DE022D9225564B8E7EFD /* Pods-FcmServiceExtension.release.xcconfig */; + baseConfigurationReference = BB2485496F3FDA0206409B97 /* Pods-FcmServiceExtension.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; @@ -619,7 +638,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 1106; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM; ENABLE_BITCODE = NO; @@ -649,9 +668,9 @@ }; name = Release; }; - 858741382B1E1EAD0049670F /* Profile */ = { + 858741262B1DE12B0049670F /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C79C72177F3F929ED7DED179 /* Pods-FcmServiceExtension.profile.xcconfig */; + baseConfigurationReference = A44F22D7804610848A5A41DF /* Pods-FcmServiceExtension.profile.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; @@ -662,9 +681,9 @@ CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 1106; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM; ENABLE_BITCODE = NO; @@ -686,7 +705,7 @@ PRODUCT_BUNDLE_IDENTIFIER = net.yumnumm.eqmonitor.FcmServiceExtension; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore net.yumnumm.eqmonitor.FcmServiceExtension"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development net.yumnumm.eqmonitor.FcmServiceExtension"; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; @@ -698,6 +717,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -753,6 +773,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -811,8 +832,9 @@ BUILD_LIBRARY_FOR_DISTRIBUTION = NO; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1078; + CURRENT_PROJECT_VERSION = 1106; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM; ENABLE_BITCODE = NO; @@ -847,7 +869,7 @@ CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 1078; + CURRENT_PROJECT_VERSION = 1106; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM; ENABLE_BITCODE = NO; @@ -872,12 +894,12 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 858741352B1E1EAD0049670F /* Build configuration list for PBXNativeTarget "FcmServiceExtension" */ = { + 858741272B1DE12B0049670F /* Build configuration list for PBXNativeTarget "FcmServiceExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( - 858741362B1E1EAD0049670F /* Debug */, - 858741372B1E1EAD0049670F /* Release */, - 858741382B1E1EAD0049670F /* Profile */, + 858741242B1DE12B0049670F /* Debug */, + 858741252B1DE12B0049670F /* Release */, + 858741262B1DE12B0049670F /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index e2e74de44..c20005556 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -23,9 +23,9 @@ CFBundleSignature ???? CFBundleVersion - 1078 - ITSAppUsesNonExemptEncryption - + 1106 + LSApplicationCategoryType + LSApplicationQueriesSchemes mailto diff --git a/ios/Runner/ja.lproj/LaunchScreen.strings b/ios/Runner/ja.lproj/LaunchScreen.strings new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/ios/Runner/ja.lproj/LaunchScreen.strings @@ -0,0 +1 @@ + diff --git a/ios/Runner/ja.lproj/Main.strings b/ios/Runner/ja.lproj/Main.strings new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/ios/Runner/ja.lproj/Main.strings @@ -0,0 +1 @@ + diff --git a/lib/app.dart b/lib/app.dart index a45eb88f7..71e413ca9 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -2,7 +2,6 @@ import 'package:dynamic_color/dynamic_color.dart'; import 'package:eqmonitor/core/router/router.dart'; import 'package:eqmonitor/core/theme/custom_colors.dart'; import 'package:eqmonitor/gen/fonts.gen.dart'; -import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; @@ -65,14 +64,6 @@ class App extends HookConsumerWidget { useMaterial3: true, fontFamily: FontFamily.notoSansJP, ), - builder: (context, child) { - return CupertinoTheme( - data: CupertinoThemeData( - brightness: Theme.of(context).brightness, - ), - child: child!, - ); - }, ); }, ); diff --git a/lib/core/api/jma_parameter_api.dart b/lib/core/api/jma_parameter_api.dart new file mode 100644 index 000000000..c1a0c266e --- /dev/null +++ b/lib/core/api/jma_parameter_api.dart @@ -0,0 +1,24 @@ +import 'dart:io'; + +import 'package:dio/dio.dart'; +import 'package:flutter/foundation.dart'; +import 'package:jma_parameter_api_client/jma_parameter_api_client.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'jma_parameter_api.g.dart'; + +@Riverpod(keepAlive: true) +JmaParameterApiClient jmaParameterApiClient(JmaParameterApiClientRef ref) { + return JmaParameterApiClient( + client: Dio( + BaseOptions( + headers: { + 'user-agent': 'eqmonitor-${kIsWeb ? "web" : Platform.version}', + 'x-operation-system-version': + kIsWeb ? 'web' : Platform.operatingSystemVersion, + }, + baseUrl: 'https://object.eqmonitor.app', + ), + ), + ); +} diff --git a/lib/core/component/map/data/map_data_source.g.dart b/lib/core/api/jma_parameter_api.g.dart similarity index 55% rename from lib/core/component/map/data/map_data_source.g.dart rename to lib/core/api/jma_parameter_api.g.dart index 8616cc159..d61411736 100644 --- a/lib/core/component/map/data/map_data_source.g.dart +++ b/lib/core/api/jma_parameter_api.g.dart @@ -2,27 +2,27 @@ // ignore_for_file: type=lint, duplicate_ignore -part of 'map_data_source.dart'; +part of 'jma_parameter_api.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** -String _$mapLocalDataSourceHash() => - r'bf161e2d8fa476b143988a38de0870dd72646a95'; +String _$jmaParameterApiClientHash() => + r'8376451bacb718f92fd9eac9792b82f54c9bdde6'; -/// See also [mapLocalDataSource]. -@ProviderFor(mapLocalDataSource) -final mapLocalDataSourceProvider = Provider.internal( - mapLocalDataSource, - name: r'mapLocalDataSourceProvider', +/// See also [jmaParameterApiClient]. +@ProviderFor(jmaParameterApiClient) +final jmaParameterApiClientProvider = Provider.internal( + jmaParameterApiClient, + name: r'jmaParameterApiClientProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null - : _$mapLocalDataSourceHash, + : _$jmaParameterApiClientHash, dependencies: null, allTransitiveDependencies: null, ); -typedef MapLocalDataSourceRef = ProviderRef; +typedef JmaParameterApiClientRef = ProviderRef; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/component/intenisty/intensity_icon_type.dart b/lib/core/component/intenisty/intensity_icon_type.dart index 189577a65..259c56af6 100644 --- a/lib/core/component/intenisty/intensity_icon_type.dart +++ b/lib/core/component/intenisty/intensity_icon_type.dart @@ -1,6 +1,6 @@ enum IntensityIconType { filled, - tonal, - outline, - text, + small, + smallWithoutText, + ; } diff --git a/lib/core/component/intenisty/jma_forecast_lg_intensity_icon.dart b/lib/core/component/intenisty/jma_forecast_lg_intensity_icon.dart new file mode 100644 index 000000000..e0320c417 --- /dev/null +++ b/lib/core/component/intenisty/jma_forecast_lg_intensity_icon.dart @@ -0,0 +1,108 @@ +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; +import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; +import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; +import 'package:flutter/material.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class JmaForecastLgIntensityWidget extends ConsumerWidget { + const JmaForecastLgIntensityWidget({ + required this.intensity, + this.type = IntensityIconType.filled, + this.customText, + this.colorModel, + super.key, + this.size = 50, + }); + final JmaForecastLgIntensity intensity; + final IntensityIconType type; + final double size; + final String? customText; + final IntensityColorModel? colorModel; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final intensityColorModel = + (colorModel ?? ref.watch(intensityColorProvider))!; + final colorScheme = + intensityColorModel.fromJmaForecastLgIntensity(intensity); + final (fg, bg) = (colorScheme.foreground, colorScheme.background); + // 震度の整数部分 + final intensityMainText = + intensity.type.replaceAll('-', '').replaceAll('+', ''); + // 震度の弱・強の表記 + final intensitySubText = intensity.type.contains('-') + ? '弱' + : intensity.type.contains('+') + ? '強' + : ''; + + return SizedBox( + height: size, + width: size, + child: DecoratedBox( + decoration: BoxDecoration( + color: type == IntensityIconType.filled ? bg : null, + // 角丸にする + borderRadius: BorderRadius.circular(10), + ), + child: Center( + child: FittedBox( + fit: BoxFit.scaleDown, + child: Row( + crossAxisAlignment: CrossAxisAlignment.baseline, + textBaseline: TextBaseline.alphabetic, + children: [ + if (customText != null) + Text( + customText!, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ) + else if (intensity == JmaForecastLgIntensity.unknown) + Padding( + padding: const EdgeInsets.all(8), + child: Text( + intensityMainText, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.notoSansJP, + ), + ), + ) + else ...[ + Text( + intensityMainText, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ), + Text( + intensitySubText, + style: TextStyle( + color: fg, + fontSize: 50, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: const [FontFamily.notoSansJP], + ), + ), + ], + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/core/component/intenisty/jma_intensity_icon.dart b/lib/core/component/intenisty/jma_intensity_icon.dart index 543caa526..9b32ed896 100644 --- a/lib/core/component/intenisty/jma_intensity_icon.dart +++ b/lib/core/component/intenisty/jma_intensity_icon.dart @@ -25,67 +25,142 @@ class JmaIntensityIcon extends ConsumerWidget { final colorScheme = intensityColorModel.fromJmaIntensity(intensity); final (fg, bg) = (colorScheme.foreground, colorScheme.background); // 震度の整数部分 - final intensityMainText = - intensity.type.replaceAll('-', '').replaceAll('+', ''); + final intensityMainText = switch (intensity) { + JmaIntensity.fiveUpperNoInput => '5', + _ => intensity.type.replaceAll('-', '').replaceAll('+', ''), + }; // 震度の弱・強の表記 - final intensitySubText = intensity.type.contains('-') - ? '弱' + final suffix = intensity.type.contains('-') + ? '-' : intensity.type.contains('+') - ? '強' + ? '+' : ''; - - return SizedBox( - height: 50, - width: 50, - child: DecoratedBox( - decoration: BoxDecoration( - color: bg, - // 角丸にする - borderRadius: BorderRadius.circular(10), - ), - child: Center( - child: FittedBox( - fit: BoxFit.scaleDown, - child: Row( - crossAxisAlignment: CrossAxisAlignment.baseline, - textBaseline: TextBaseline.alphabetic, - children: [ - if (customText != null) - Text( - customText!, - style: TextStyle( - color: fg, - fontSize: 100, - fontWeight: FontWeight.w900, - fontFamily: FontFamily.jetBrainsMono, - ), - ) - else ...[ - Text( - intensityMainText, - style: TextStyle( - color: fg, - fontSize: 100, - fontWeight: FontWeight.w900, - fontFamily: FontFamily.jetBrainsMono, - ), - ), - Text( - intensitySubText, - style: TextStyle( - color: fg, - fontSize: 50, - fontWeight: FontWeight.w900, - fontFamily: FontFamily.jetBrainsMono, - fontFamilyFallback: const [FontFamily.notoSansJP], + final intensitySubText = switch (intensity) { + JmaIntensity.fiveUpperNoInput => '弱以上', + _ => intensity.type.contains('-') + ? '弱' + : intensity.type.contains('+') + ? '強' + : '', + }; + final borderColor = Color.lerp( + bg, + fg, + 0.3, + )!; + return switch (type) { + IntensityIconType.small => SizedBox( + height: size, + width: size, + child: DecoratedBox( + decoration: BoxDecoration( + shape: BoxShape.circle, + color: bg, + border: Border.all( + color: borderColor, + width: 5, + ), + ), + child: (intensity == JmaIntensity.fiveUpperNoInput) + ? const SizedBox.shrink() + : Center( + child: FittedBox( + fit: BoxFit.scaleDown, + child: Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + intensityMainText, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ), + Text( + suffix, + style: TextStyle( + color: fg, + fontSize: 80, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: const [FontFamily.notoSansJP], + ), + ), + ], + ), ), ), - ], - ], + ), + ), + IntensityIconType.smallWithoutText => SizedBox( + height: size, + width: size, + child: DecoratedBox( + decoration: BoxDecoration( + shape: BoxShape.circle, + color: bg, + border: Border.all( + color: borderColor, + width: 5, + ), + ), + ), + ), + IntensityIconType.filled => SizedBox( + height: 50, + width: 50, + child: DecoratedBox( + decoration: BoxDecoration( + color: bg, + // 角丸にする + borderRadius: BorderRadius.circular(10), + ), + child: Center( + child: FittedBox( + fit: BoxFit.scaleDown, + child: Row( + crossAxisAlignment: CrossAxisAlignment.baseline, + textBaseline: TextBaseline.alphabetic, + children: [ + if (customText != null) + Text( + customText!, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ) + else ...[ + Text( + intensityMainText, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ), + Text( + intensitySubText, + style: TextStyle( + color: fg, + fontSize: 50, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: const [FontFamily.notoSansJP], + ), + ), + ], + ], + ), + ), ), ), ), - ), - ); + }; } } diff --git a/lib/core/component/intenisty/jma_lg_intensity_icon.dart b/lib/core/component/intenisty/jma_lg_intensity_icon.dart new file mode 100644 index 000000000..fbf3da268 --- /dev/null +++ b/lib/core/component/intenisty/jma_lg_intensity_icon.dart @@ -0,0 +1,91 @@ +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; +import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; +import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; +import 'package:flutter/material.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class JmaLgIntensityIcon extends ConsumerWidget { + const JmaLgIntensityIcon({ + required this.intensity, + required this.type, + this.customText, + super.key, + this.size = 50, + }); + final JmaLgIntensity intensity; + final IntensityIconType type; + final double size; + final String? customText; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final intensityColorModel = ref.watch(intensityColorProvider); + final colorScheme = intensityColorModel.fromJmaLgIntensity(intensity); + final (fg, bg) = (colorScheme.foreground, colorScheme.background); + // 震度の整数部分 + final intensityMainText = + intensity.type.replaceAll('-', '').replaceAll('+', ''); + // 震度の弱・強の表記 + final intensitySubText = intensity.type.contains('-') + ? '弱' + : intensity.type.contains('+') + ? '強' + : ''; + + return SizedBox( + height: 50, + width: 50, + child: DecoratedBox( + decoration: BoxDecoration( + color: bg, + // 角丸にする + borderRadius: BorderRadius.circular(10), + ), + child: Center( + child: FittedBox( + fit: BoxFit.scaleDown, + child: Row( + crossAxisAlignment: CrossAxisAlignment.baseline, + textBaseline: TextBaseline.alphabetic, + children: [ + if (customText != null) + Text( + customText!, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ) + else ...[ + Text( + intensityMainText, + style: TextStyle( + color: fg, + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + ), + ), + Text( + intensitySubText, + style: TextStyle( + color: fg, + fontSize: 50, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: const [FontFamily.notoSansJP], + ), + ), + ], + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/core/component/map/base_map.dart b/lib/core/component/map/base_map.dart deleted file mode 100644 index 22a9a3944..000000000 --- a/lib/core/component/map/base_map.dart +++ /dev/null @@ -1,287 +0,0 @@ -import 'dart:developer'; - -import 'package:eq_map/eq_map.dart'; -import 'package:eqmonitor/core/component/map/data/model/mutable_projected_feature_layer.dart'; -import 'package:eqmonitor/core/component/map/model/map_config.dart'; -import 'package:eqmonitor/core/component/map/model/map_state.dart'; -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:eqmonitor/core/provider/topology_map/provider/topology_maps.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:topo_map/topo_map.dart'; - -class BaseMapWidget extends HookConsumerWidget { - const BaseMapWidget._({ - required this.mapKey, - this.drawPolyline = true, - this.drawPolygon = true, - }); - - factory BaseMapWidget.polygon(Key mapKey) => BaseMapWidget._( - mapKey: mapKey, - drawPolyline: false, - ); - - factory BaseMapWidget.polyline(Key mapKey) => BaseMapWidget._( - mapKey: mapKey, - drawPolygon: false, - ); - factory BaseMapWidget.all(Key mapKey) => BaseMapWidget._( - mapKey: mapKey, - ); - - final Key mapKey; - final bool drawPolyline; - final bool drawPolygon; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final zoomCachedProjectedFeatureLayer = - ref.watch(zoomCachedProjectedFeatureLayerProvider); - - final isDark = Theme.of(context).brightness == Brightness.dark; - - return switch (zoomCachedProjectedFeatureLayer.value) { - null => const Center( - child: CircularProgressIndicator.adaptive(), - ), - final data => CustomPaint( - painter: _BaseMapPainter( - state: ref.watch(mapViewModelProvider(mapKey)), - drawPolyline: drawPolyline, - drawPolygon: drawPolygon, - colorScheme: - isDark ? MapColorScheme.dark() : MapColorScheme.light(), - maps: data, - ), - size: Size.infinite, - willChange: true, - ), - }; - } -} - -class _BaseMapPainter extends CustomPainter { - _BaseMapPainter({ - required this.state, - required this.drawPolyline, - required this.drawPolygon, - required this.colorScheme, - required this.maps, - }); - - final MapState state; - final MapColorScheme colorScheme; - final Map maps; - - final bool drawPolyline; - final bool drawPolygon; - - @override - void paint(Canvas canvas, Size size) { - // draw - if (drawPolyline) { - drawJapanPolyline(canvas, size, colorScheme); - drawWorldPolyline(canvas, size, colorScheme); - } - if (drawPolygon) { - drawJapanPolygon(canvas, size, colorScheme); - drawWorldPolygon(canvas, size, colorScheme); - } - if (state.zoomLevel > 400) { - // drawJapanDetailedPolyline(canvas, size, colorScheme); - } - - return; - } - - void drawJapanPolygon( - Canvas canvas, - Size size, - MapColorScheme colorScheme, - ) { - for (final e in maps[LandLayerType.earthquakeInformationSubdivisionArea]! - .projectedPolygonFeatures) { - final points = e.getPoints(state.zoomLevel.truncate()); - final offsets = points.map(state.globalPointToOffset).toList(); - if (offsets.length < 4 || - !offsets.any( - (e) => - e.dx > 0 && e.dy > 0 && e.dx < size.width && e.dy < size.height, - )) { - continue; - } - final path = Path() - ..addPolygon( - offsets, - true, - ); - - try { - canvas.drawPath( - path, - Paint() - ..style = PaintingStyle.fill - ..color = colorScheme.japanLandColor - ..isAntiAlias = true, - ); - } on Exception catch (e) { - log(e.toString()); - } - } - } - - void drawJapanPolyline( - Canvas canvas, - Size size, - MapColorScheme colorScheme, - ) { - for (final e in maps[LandLayerType.earthquakeInformationSubdivisionArea]! - .projectedPolylineFeatures) { - final points = e.getPoints(state.zoomLevel.truncate()); - final offsets = points.map(state.globalPointToOffset).toList(); - if (!offsets.any( - (e) => e.dx > 0 && e.dy > 0 && e.dx < size.width && e.dy < size.height, - )) { - continue; - } - try { - canvas.drawPath( - Path()..addPolygon(offsets, false), - Paint() - ..style = PaintingStyle.stroke - ..color = switch (e.type) { - PolylineType.coastLine => colorScheme.japanCoastlineColor, - PolylineType.admin => colorScheme.japanBorderLineColor, - PolylineType.city => Color.lerp( - colorScheme.japanBorderLineColor, - colorScheme.japanLandColor, - 0.4, - )! - .withOpacity(0.4), - } - ..strokeWidth = 1 - ..isAntiAlias = true, - ); - } on Exception catch (e) { - log(e.toString()); - } - } - } - - void drawJapanDetailedPolyline( - Canvas canvas, - Size size, - MapColorScheme colorScheme, - ) { - final bbox = state.getLatLngBoundary(size); - - for (final e in maps[LandLayerType.municipalityEarthquakeTsunamiArea]! - .projectedPolylineFeatures) { - // bbox check - if (!bbox.containsBbox(e.bbox)) { - // continue; - } - - final points = e.getPoints(state.zoomLevel.truncate()); - final offsets = points.map(state.globalPointToOffset).toList(); - if (!offsets.any( - (e) => e.dx > 0 && e.dy > 0 && e.dx < size.width && e.dy < size.height, - )) { - continue; - } - try { - canvas.drawPath( - Path()..addPolygon(offsets, false), - Paint() - ..style = PaintingStyle.stroke - ..color = colorScheme.worldLandColor - ..isAntiAlias = true, - ); - } on Exception catch (e) { - log(e.toString()); - } - } - } - - void drawWorldPolygon( - Canvas canvas, - Size size, - MapColorScheme colorScheme, - ) { - final bbox = state.getLatLngBoundary(size); - for (final e - in maps[LandLayerType.worldWithoutJapan]!.projectedPolygonFeatures) { - // bbox check - if (!bbox.containsBbox(e.bbox)) { - // continue; - } - - final points = e.getPoints(state.zoomLevel.truncate()); - final offsets = points.map(state.globalPointToOffset).toList(); - - if (!offsets.any( - (e) => e.dx > 0 && e.dy > 0 && e.dx < size.width && e.dy < size.height, - )) { - continue; - } - try { - canvas.drawPath( - Path()..addPolygon(offsets, true), - Paint() - ..style = PaintingStyle.fill - ..color = colorScheme.worldLandColor - ..isAntiAlias = true, - ); - } on Exception catch (e) { - log(e.toString()); - } - } - } - - void drawWorldPolyline( - Canvas canvas, - Size size, - MapColorScheme colorScheme, - ) { - final bbox = state.getLatLngBoundary(size); - for (final e - in maps[LandLayerType.worldWithoutJapan]!.projectedPolylineFeatures) { - // bbox check - if (!bbox.containsBbox(e.bbox)) { - // continue; - } - - final points = e.getPoints(state.zoomLevel.truncate()); - final offsets = points.map(state.globalPointToOffset).toList(); - - if (!offsets.any( - (e) => e.dx > 0 && e.dy > 0 && e.dx < size.width && e.dy < size.height, - )) { - continue; - } - try { - canvas.drawPath( - Path()..addPolygon(offsets, false), - Paint() - ..style = PaintingStyle.stroke - ..color = switch (e.type) { - PolylineType.coastLine => colorScheme.worldCoastlineColor, - _ => colorScheme.worldBorderLineColor, - } - ..strokeWidth = 1 - ..isAntiAlias = true, - ); - } on Exception catch (e) { - log(e.toString()); - } - } - } - - @override - bool shouldRepaint(covariant _BaseMapPainter oldDelegate) => - oldDelegate.state != state || - oldDelegate.colorScheme != colorScheme || - oldDelegate.drawPolyline != drawPolyline || - oldDelegate.maps != maps; -} diff --git a/lib/core/component/map/data/map_data_source.dart b/lib/core/component/map/data/map_data_source.dart deleted file mode 100644 index 26349e011..000000000 --- a/lib/core/component/map/data/map_data_source.dart +++ /dev/null @@ -1,11 +0,0 @@ -// ignore_for_file: avoid_catches_without_on_clauses, empty_catches - -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -part 'map_data_source.g.dart'; - -@Riverpod(keepAlive: true) -MapLocalDataSource mapLocalDataSource(MapLocalDataSourceRef ref) => - MapLocalDataSource(); - -class MapLocalDataSource {} diff --git a/lib/core/component/map/data/model/jma_map_property.dart b/lib/core/component/map/data/model/jma_map_property.dart deleted file mode 100644 index 0cb65fdec..000000000 --- a/lib/core/component/map/data/model/jma_map_property.dart +++ /dev/null @@ -1,17 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'jma_map_property.freezed.dart'; -part 'jma_map_property.g.dart'; - -@freezed -class JmaMapProperty with _$JmaMapProperty { - const factory JmaMapProperty({ - required String? code, - required String? name, - // ignore: invalid_annotation_target - @JsonKey(name: 'namekana') required String? nameKana, - }) = _JmaMapProperty; - - factory JmaMapProperty.fromJson(Map json) => - _$JmaMapPropertyFromJson(json); -} diff --git a/lib/core/component/map/data/model/jma_map_property.freezed.dart b/lib/core/component/map/data/model/jma_map_property.freezed.dart deleted file mode 100644 index b4830f932..000000000 --- a/lib/core/component/map/data/model/jma_map_property.freezed.dart +++ /dev/null @@ -1,203 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'jma_map_property.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -JmaMapProperty _$JmaMapPropertyFromJson(Map json) { - return _JmaMapProperty.fromJson(json); -} - -/// @nodoc -mixin _$JmaMapProperty { - String? get code => throw _privateConstructorUsedError; - String? get name => - throw _privateConstructorUsedError; // ignore: invalid_annotation_target - @JsonKey(name: 'namekana') - String? get nameKana => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $JmaMapPropertyCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $JmaMapPropertyCopyWith<$Res> { - factory $JmaMapPropertyCopyWith( - JmaMapProperty value, $Res Function(JmaMapProperty) then) = - _$JmaMapPropertyCopyWithImpl<$Res, JmaMapProperty>; - @useResult - $Res call( - {String? code, - String? name, - @JsonKey(name: 'namekana') String? nameKana}); -} - -/// @nodoc -class _$JmaMapPropertyCopyWithImpl<$Res, $Val extends JmaMapProperty> - implements $JmaMapPropertyCopyWith<$Res> { - _$JmaMapPropertyCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? code = freezed, - Object? name = freezed, - Object? nameKana = freezed, - }) { - return _then(_value.copyWith( - code: freezed == code - ? _value.code - : code // ignore: cast_nullable_to_non_nullable - as String?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - nameKana: freezed == nameKana - ? _value.nameKana - : nameKana // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$JmaMapPropertyImplCopyWith<$Res> - implements $JmaMapPropertyCopyWith<$Res> { - factory _$$JmaMapPropertyImplCopyWith(_$JmaMapPropertyImpl value, - $Res Function(_$JmaMapPropertyImpl) then) = - __$$JmaMapPropertyImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? code, - String? name, - @JsonKey(name: 'namekana') String? nameKana}); -} - -/// @nodoc -class __$$JmaMapPropertyImplCopyWithImpl<$Res> - extends _$JmaMapPropertyCopyWithImpl<$Res, _$JmaMapPropertyImpl> - implements _$$JmaMapPropertyImplCopyWith<$Res> { - __$$JmaMapPropertyImplCopyWithImpl( - _$JmaMapPropertyImpl _value, $Res Function(_$JmaMapPropertyImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? code = freezed, - Object? name = freezed, - Object? nameKana = freezed, - }) { - return _then(_$JmaMapPropertyImpl( - code: freezed == code - ? _value.code - : code // ignore: cast_nullable_to_non_nullable - as String?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - nameKana: freezed == nameKana - ? _value.nameKana - : nameKana // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$JmaMapPropertyImpl implements _JmaMapProperty { - const _$JmaMapPropertyImpl( - {required this.code, - required this.name, - @JsonKey(name: 'namekana') required this.nameKana}); - - factory _$JmaMapPropertyImpl.fromJson(Map json) => - _$$JmaMapPropertyImplFromJson(json); - - @override - final String? code; - @override - final String? name; -// ignore: invalid_annotation_target - @override - @JsonKey(name: 'namekana') - final String? nameKana; - - @override - String toString() { - return 'JmaMapProperty(code: $code, name: $name, nameKana: $nameKana)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$JmaMapPropertyImpl && - (identical(other.code, code) || other.code == code) && - (identical(other.name, name) || other.name == name) && - (identical(other.nameKana, nameKana) || - other.nameKana == nameKana)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, code, name, nameKana); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$JmaMapPropertyImplCopyWith<_$JmaMapPropertyImpl> get copyWith => - __$$JmaMapPropertyImplCopyWithImpl<_$JmaMapPropertyImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$JmaMapPropertyImplToJson( - this, - ); - } -} - -abstract class _JmaMapProperty implements JmaMapProperty { - const factory _JmaMapProperty( - {required final String? code, - required final String? name, - @JsonKey(name: 'namekana') required final String? nameKana}) = - _$JmaMapPropertyImpl; - - factory _JmaMapProperty.fromJson(Map json) = - _$JmaMapPropertyImpl.fromJson; - - @override - String? get code; - @override - String? get name; - @override // ignore: invalid_annotation_target - @JsonKey(name: 'namekana') - String? get nameKana; - @override - @JsonKey(ignore: true) - _$$JmaMapPropertyImplCopyWith<_$JmaMapPropertyImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/core/component/map/data/model/jma_map_property.g.dart b/lib/core/component/map/data/model/jma_map_property.g.dart deleted file mode 100644 index 21e241716..000000000 --- a/lib/core/component/map/data/model/jma_map_property.g.dart +++ /dev/null @@ -1,32 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'jma_map_property.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$JmaMapPropertyImpl _$$JmaMapPropertyImplFromJson(Map json) => - $checkedCreate( - r'_$JmaMapPropertyImpl', - json, - ($checkedConvert) { - final val = _$JmaMapPropertyImpl( - code: $checkedConvert('code', (v) => v as String?), - name: $checkedConvert('name', (v) => v as String?), - nameKana: $checkedConvert('namekana', (v) => v as String?), - ); - return val; - }, - fieldKeyMap: const {'nameKana': 'namekana'}, - ); - -Map _$$JmaMapPropertyImplToJson( - _$JmaMapPropertyImpl instance) => - { - 'code': instance.code, - 'name': instance.name, - 'namekana': instance.nameKana, - }; diff --git a/lib/core/component/map/data/model/map_polygon.dart b/lib/core/component/map/data/model/map_polygon.dart deleted file mode 100644 index 01c0f1f6b..000000000 --- a/lib/core/component/map/data/model/map_polygon.dart +++ /dev/null @@ -1,67 +0,0 @@ -import 'package:lat_lng/lat_lng.dart'; - -class MultiPolygonMapData { - factory MultiPolygonMapData.fromList( - List polygons, - T properties, - ) { - return MultiPolygonMapData._( - polygons, - LatLngBoundary.merge(polygons.map((e) => e.boundary).toList()), - properties, - ); - } - - MultiPolygonMapData._( - this.polygons, - this.boundary, - this.properties, - ); - final List polygons; - final LatLngBoundary boundary; - final T properties; -} - -class MultiLineMapData { - factory MultiLineMapData.fromList( - List polylines, - T properties, - ) { - return MultiLineMapData._( - polylines, - LatLngBoundary.merge(polylines.map((e) => e.boundary).toList()), - properties, - ); - } - - MultiLineMapData._( - this.polylines, - this.boundary, - this.properties, - ); - final List polylines; - final LatLngBoundary boundary; - final T properties; -} - -class MapPolyline { - MapPolyline._(this.points, this.boundary); - - factory MapPolyline.fromList(List points) { - return MapPolyline._(points, LatLngBoundary.fromList(points)); - } - - final List points; - final LatLngBoundary boundary; -} - -class MapPolygon { - MapPolygon._(this.points, this.boundary); - - factory MapPolygon.fromList(List points) { - return MapPolygon._(points, LatLngBoundary.fromList(points)); - } - - final List points; - final LatLngBoundary boundary; -} diff --git a/lib/core/component/map/data/model/map_type.dart b/lib/core/component/map/data/model/map_type.dart deleted file mode 100644 index d537f38e2..000000000 --- a/lib/core/component/map/data/model/map_type.dart +++ /dev/null @@ -1,19 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; - -@JsonEnum(valueField: 'path') -enum MapDataType { - areaForecastLoadlE('assets/maps/AreaForecastLocalE.json'), - areaForecastLocalEew('assets/maps/AreaForecastLocalEew.json'), - areaInformationCityQuake('assets/maps/AreaInformationCityQuake.json'), - worldMap('assets/maps/world.json'); - - const MapDataType(this.path); - final String path; -} - -enum LineDataType { - areaTsunamiForecast('assets/maps/AreaTsunamiForecast.json'); - - const LineDataType(this.path); - final String path; -} diff --git a/lib/core/component/map/data/model/mutable_projected_feature_layer.dart b/lib/core/component/map/data/model/mutable_projected_feature_layer.dart deleted file mode 100644 index e93fa994b..000000000 --- a/lib/core/component/map/data/model/mutable_projected_feature_layer.dart +++ /dev/null @@ -1,112 +0,0 @@ -import 'dart:math'; - -import 'package:eq_map/eq_map.dart'; -import 'package:eqmonitor/core/component/map/model/mutable/projected_feature_layer.dart'; -import 'package:eqmonitor/core/component/map/utils/map_shrinker.dart'; -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:lat_lng/lat_lng.dart'; - -class ZoomCachedProjectedFeatureLayer { - ZoomCachedProjectedFeatureLayer._({ - required this.projectedPolygonFeatures, - required this.projectedPolylineFeatures, - required this.basedLayer, - }); - - factory ZoomCachedProjectedFeatureLayer.fromProjectedFeatureLayer( - ProjectedFeatureLayer layer, - ) => - ZoomCachedProjectedFeatureLayer._( - projectedPolygonFeatures: layer.projectedPolygonFeatures - .map(ZoomCachedProjectedPolygonFeature.fromProjectedPolygonFeature) - .toList(), - projectedPolylineFeatures: layer.projectedPolylineFeatures - .map( - ZoomCachedProjectedPolylineFeature.fromProjectedPolylineFeature, - ) - .toList(), - basedLayer: layer, - ); - - final List projectedPolygonFeatures; - final List projectedPolylineFeatures; - final ProjectedFeatureLayer basedLayer; -} - -class ZoomCachedProjectedPolylineFeature { - factory ZoomCachedProjectedPolylineFeature.fromProjectedPolylineFeature( - ProjectedPolylineFeature feature, - ) => - ZoomCachedProjectedPolylineFeature._( - points: feature.points, - type: feature.type, - isClosed: feature.isClosed, - bbox: feature.bbox, - ); - - ZoomCachedProjectedPolylineFeature._({ - required this.points, - required this.type, - required this.isClosed, - required this.bbox, - }); - - final List points; - final PolylineType type; - final bool isClosed; - final LatLngBoundary bbox; - - /// cache - final Map> _cache = {}; - - /// [zoomLevel]を適用したListを返す - List _applyZoomLevel(int zoomLevel) => _cache[zoomLevel] = - MapShrinker.shrink(zoomLevel: zoomLevel, points: points); - - /// キャッシュがある場合はそれを返し、ない場合は[zoomLevel]を適用したListを返す - List getPoints(int zoomLevel) { - final value = pow(2, sqrt(min(200, zoomLevel) / 4).toInt()).toInt() * 4; - - return _cache[value] ??= _applyZoomLevel(value); - } - - /// キャッシュをクリアする - void clearCache() => _cache.clear(); -} - -class ZoomCachedProjectedPolygonFeature { - factory ZoomCachedProjectedPolygonFeature.fromProjectedPolygonFeature( - ProjectedPolygonFeature feature, - ) => - ZoomCachedProjectedPolygonFeature._( - points: feature.points, - code: feature.code, - bbox: feature.bbox, - ); - - ZoomCachedProjectedPolygonFeature._({ - required this.points, - required this.code, - required this.bbox, - }); - - final List points; - final int? code; - final LatLngBoundary bbox; - - /// cache - final Map> _cache = {}; - - /// [zoomLevel]を適用したListを返す - List _applyZoomLevel(int zoomLevel) => _cache[zoomLevel] = - MapShrinker.shrink(zoomLevel: zoomLevel, points: points); - - /// キャッシュがある場合はそれを返し、ない場合は[zoomLevel]を適用したListを返す - List getPoints(int zoomLevel) { - final value = pow(2, sqrt(max(100, zoomLevel) / 3).toInt()).toInt() * 3; - return _cache[value] ??= _applyZoomLevel(value); - } - - /// キャッシュをクリアする - void clearCache() => _cache.clear(); -} diff --git a/lib/core/component/map/data/model/world_map_property.dart b/lib/core/component/map/data/model/world_map_property.dart deleted file mode 100644 index 0710e29d7..000000000 --- a/lib/core/component/map/data/model/world_map_property.dart +++ /dev/null @@ -1,17 +0,0 @@ -// ignore_for_file: invalid_annotation_target - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'world_map_property.freezed.dart'; -part 'world_map_property.g.dart'; - -@freezed -class WorldMapProperty with _$WorldMapProperty { - const factory WorldMapProperty({ - @JsonKey(name: 'NAME') required String name, - @JsonKey(name: 'NAME_JA') required String nameJa, - }) = _WorldMapProperty; - - factory WorldMapProperty.fromJson(Map json) => - _$WorldMapPropertyFromJson(json); -} diff --git a/lib/core/component/map/data/model/world_map_property.freezed.dart b/lib/core/component/map/data/model/world_map_property.freezed.dart deleted file mode 100644 index 2bdc813cc..000000000 --- a/lib/core/component/map/data/model/world_map_property.freezed.dart +++ /dev/null @@ -1,183 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'world_map_property.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -WorldMapProperty _$WorldMapPropertyFromJson(Map json) { - return _WorldMapProperty.fromJson(json); -} - -/// @nodoc -mixin _$WorldMapProperty { - @JsonKey(name: 'NAME') - String get name => throw _privateConstructorUsedError; - @JsonKey(name: 'NAME_JA') - String get nameJa => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $WorldMapPropertyCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $WorldMapPropertyCopyWith<$Res> { - factory $WorldMapPropertyCopyWith( - WorldMapProperty value, $Res Function(WorldMapProperty) then) = - _$WorldMapPropertyCopyWithImpl<$Res, WorldMapProperty>; - @useResult - $Res call( - {@JsonKey(name: 'NAME') String name, - @JsonKey(name: 'NAME_JA') String nameJa}); -} - -/// @nodoc -class _$WorldMapPropertyCopyWithImpl<$Res, $Val extends WorldMapProperty> - implements $WorldMapPropertyCopyWith<$Res> { - _$WorldMapPropertyCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? name = null, - Object? nameJa = null, - }) { - return _then(_value.copyWith( - name: null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - nameJa: null == nameJa - ? _value.nameJa - : nameJa // ignore: cast_nullable_to_non_nullable - as String, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$WorldMapPropertyImplCopyWith<$Res> - implements $WorldMapPropertyCopyWith<$Res> { - factory _$$WorldMapPropertyImplCopyWith(_$WorldMapPropertyImpl value, - $Res Function(_$WorldMapPropertyImpl) then) = - __$$WorldMapPropertyImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {@JsonKey(name: 'NAME') String name, - @JsonKey(name: 'NAME_JA') String nameJa}); -} - -/// @nodoc -class __$$WorldMapPropertyImplCopyWithImpl<$Res> - extends _$WorldMapPropertyCopyWithImpl<$Res, _$WorldMapPropertyImpl> - implements _$$WorldMapPropertyImplCopyWith<$Res> { - __$$WorldMapPropertyImplCopyWithImpl(_$WorldMapPropertyImpl _value, - $Res Function(_$WorldMapPropertyImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? name = null, - Object? nameJa = null, - }) { - return _then(_$WorldMapPropertyImpl( - name: null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - nameJa: null == nameJa - ? _value.nameJa - : nameJa // ignore: cast_nullable_to_non_nullable - as String, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$WorldMapPropertyImpl implements _WorldMapProperty { - const _$WorldMapPropertyImpl( - {@JsonKey(name: 'NAME') required this.name, - @JsonKey(name: 'NAME_JA') required this.nameJa}); - - factory _$WorldMapPropertyImpl.fromJson(Map json) => - _$$WorldMapPropertyImplFromJson(json); - - @override - @JsonKey(name: 'NAME') - final String name; - @override - @JsonKey(name: 'NAME_JA') - final String nameJa; - - @override - String toString() { - return 'WorldMapProperty(name: $name, nameJa: $nameJa)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$WorldMapPropertyImpl && - (identical(other.name, name) || other.name == name) && - (identical(other.nameJa, nameJa) || other.nameJa == nameJa)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, name, nameJa); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$WorldMapPropertyImplCopyWith<_$WorldMapPropertyImpl> get copyWith => - __$$WorldMapPropertyImplCopyWithImpl<_$WorldMapPropertyImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$WorldMapPropertyImplToJson( - this, - ); - } -} - -abstract class _WorldMapProperty implements WorldMapProperty { - const factory _WorldMapProperty( - {@JsonKey(name: 'NAME') required final String name, - @JsonKey(name: 'NAME_JA') required final String nameJa}) = - _$WorldMapPropertyImpl; - - factory _WorldMapProperty.fromJson(Map json) = - _$WorldMapPropertyImpl.fromJson; - - @override - @JsonKey(name: 'NAME') - String get name; - @override - @JsonKey(name: 'NAME_JA') - String get nameJa; - @override - @JsonKey(ignore: true) - _$$WorldMapPropertyImplCopyWith<_$WorldMapPropertyImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/core/component/map/data/model/world_map_property.g.dart b/lib/core/component/map/data/model/world_map_property.g.dart deleted file mode 100644 index f562ce997..000000000 --- a/lib/core/component/map/data/model/world_map_property.g.dart +++ /dev/null @@ -1,31 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'world_map_property.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$WorldMapPropertyImpl _$$WorldMapPropertyImplFromJson( - Map json) => - $checkedCreate( - r'_$WorldMapPropertyImpl', - json, - ($checkedConvert) { - final val = _$WorldMapPropertyImpl( - name: $checkedConvert('NAME', (v) => v as String), - nameJa: $checkedConvert('NAME_JA', (v) => v as String), - ); - return val; - }, - fieldKeyMap: const {'name': 'NAME', 'nameJa': 'NAME_JA'}, - ); - -Map _$$WorldMapPropertyImplToJson( - _$WorldMapPropertyImpl instance) => - { - 'NAME': instance.name, - 'NAME_JA': instance.nameJa, - }; diff --git a/lib/core/component/map/map_touch_handler_widget.dart b/lib/core/component/map/map_touch_handler_widget.dart deleted file mode 100644 index 5701be13a..000000000 --- a/lib/core/component/map/map_touch_handler_widget.dart +++ /dev/null @@ -1,28 +0,0 @@ -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -/// タッチ操作をハンドルするWidget -/// mapViewModelProviderからMapStateを取得すること -class MapTouchHandlerWidget extends HookConsumerWidget { - const MapTouchHandlerWidget({ - super.key, - required this.mapKey, - }); - final Key mapKey; - @override - Widget build(BuildContext context, WidgetRef ref) { - return Listener( - onPointerSignal: - ref.read(mapViewModelProvider(mapKey).notifier).recievedPointerSignal, - child: GestureDetector( - onScaleUpdate: - ref.read(mapViewModelProvider(mapKey).notifier).handleScaleUpdate, - onScaleStart: - ref.read(mapViewModelProvider(mapKey).notifier).handleScaleStart, - onScaleEnd: - ref.read(mapViewModelProvider(mapKey).notifier).handleScaleEnd, - ), - ); - } -} diff --git a/lib/core/component/map/model/map_state.dart b/lib/core/component/map/model/map_state.dart deleted file mode 100644 index 59a52b306..000000000 --- a/lib/core/component/map/model/map_state.dart +++ /dev/null @@ -1,236 +0,0 @@ -import 'dart:math'; -import 'dart:math' as math; - -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:flutter/material.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:lat_lng/lat_lng.dart'; - -part 'map_state.freezed.dart'; -part 'map_state.g.dart'; - -@freezed -class MapState with _$MapState { - const factory MapState({ - @JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) - required Offset offset, - required double zoomLevel, - }) = _MapState; - - factory MapState.fromJson(Map json) => - _$MapStateFromJson(json); -} - -Offset _offsetFromJson(Map json) { - return Offset( - json['dx'] as double, - json['dy'] as double, - ); -} - -Map _offsetToJson(Offset instance) => { - 'dx': instance.dx, - 'dy': instance.dy, - }; - -extension MapStateProjection on MapState { - /// GlobalPointをOffsetに変換する - Offset globalPointToOffset(GlobalPoint point) { - return Offset( - (point.x - offset.dx) * zoomLevel, - (point.y - offset.dy) * zoomLevel, - ); - } - - /// 画面座標OffsetをGlobalPointに変換する - GlobalPoint offsetToGlobalPoint(Offset point) { - return GlobalPoint( - (point.dx / zoomLevel) + offset.dx, - point.dy / zoomLevel + offset.dy, - ); - } - - /// [intercept] ZoomLevelのみ適用したListを引数とし、中間処理を行う。 - /// その後、Offsetを適用する - List? globalPointsToOffsetsIntercepted({ - required List points, - required String id, - required List? Function({ - required List points, - required int zoomLevel, - required String id, - }) intercept, - }) { - final globalPoints = intercept( - points: points, - zoomLevel: zoomLevel.truncate(), - id: id, - ); - return globalPoints - ?.map( - globalPointToOffset, - ) - .toList(); - } - - List> globalPointsToOffsetsFeaturesIntercepted({ - required List> features, - required String id, - required List> Function({ - required List> points, - required int zoomLevel, - required String id, - }) intercept, - }) { - final globalPoints = intercept( - points: features, - zoomLevel: zoomLevel.toInt(), - id: id, - ); - return globalPoints - .map( - (e) => e - .map( - globalPointToOffset, - ) - .toList(), - ) - .toList(); - } - - Offset latLngToOffset(LatLng latLng) { - return globalPointToOffset( - WebMercatorProjection().project(latLng), - ); - } - - MapState move(Offset offset) { - return copyWith( - offset: this.offset - offset, - ); - } - - MapState setOffset(Offset offset) { - return copyWith( - offset: offset, - ); - } - - /// 中心座標を[latLng]にする - MapState setCenterLatLng(LatLng latLng, Size size) { - final globalPoint = WebMercatorProjection().project(latLng); - return copyWith( - offset: Offset(globalPoint.x, globalPoint.y), - ).move(Offset(size.width / 2, size.height / 2) / zoomLevel); - } - - /// 中心座標を[point]にする - MapState setCenter(GlobalPoint point, Size size) { - return copyWith( - offset: Offset(point.x, point.y), - ).move(Offset(size.width / 2, size.height / 2) / zoomLevel); - } - - LatLngBoundary getLatLngBoundary(Size size) { - final topLeft = offsetToGlobalPoint(Offset.zero); - final bottomRight = offsetToGlobalPoint(size.bottomRight(Offset.zero)); - final topLeftLatLng = WebMercatorProjection().unproject(topLeft); - final bottomRightLatLng = WebMercatorProjection().unproject(bottomRight); - return LatLngBoundary.fromTwo( - topLeftLatLng, - bottomRightLatLng, - ); - } - - /// 中心座標を維持して拡大縮小する - MapState setScale(double scale, {Offset focalPoint = Offset.zero}) { - var mapState = this; - final beforeFocalPoint = mapState.offsetToGlobalPoint(focalPoint); - mapState = mapState.copyWith( - zoomLevel: scale, - ); - final afterFocalPoint = mapState.offsetToGlobalPoint(focalPoint); - final diff = afterFocalPoint - beforeFocalPoint; - return mapState.move(diff.toOffset() / zoomLevel).move(diff.toOffset()); - } - - /// [latLngs]を含む最小の矩形を表示する - MapState fitBounds( - List latLngs, - Size widgetSize, { - double maxZoom = 300, - }) { - if (latLngs.isEmpty) { - throw ArgumentError('latLngs must not be empty'); - } - var minLat = double.negativeInfinity; - var minLng = double.negativeInfinity; - var maxLat = double.infinity; - var maxLng = double.infinity; - for (final latLng in latLngs) { - minLat = math.max(minLat, latLng.lat); - minLng = math.max(minLng, latLng.lon); - maxLat = math.min(maxLat, latLng.lat); - maxLng = math.min(maxLng, latLng.lon); - } - final points = [ - LatLng(minLat, minLng), - LatLng(maxLat, maxLng), - ].map((e) => WebMercatorProjection().project(e)); - - return fitBoundsByGlobalPoints( - points.toList(), - widgetSize, - maxZoom: maxZoom, - ); - } - - MapState fitBoundsByGlobalPoints( - List points, - Size widgetSize, { - double maxZoom = 14 * 14, - EdgeInsetsGeometry padding = EdgeInsets.zero, - }) { - final (min, max) = _getBounds(points); - final center = GlobalPoint( - (min.x + max.x) / 2, - (min.y + max.y) / 2, - ); - final size = widgetSize; - - final scale = math.min( - maxZoom, - math.min( - size.width / (max.x - min.x), - size.height / (max.y - min.y), - ), - ); - return setScale( - scale, - ).setCenter( - center, - widgetSize, - ); - } - - /// [points]を含む最小の矩形を返す - ( - GlobalPoint min, - GlobalPoint max, - ) _getBounds(Iterable points) { - final xs = points.map((e) => e.x); - final ys = points.map((e) => e.y); - final minX = xs.reduce(min); - final maxX = xs.reduce(max); - final minY = ys.reduce(min); - final maxY = ys.reduce(max); - return ( - GlobalPoint(minX, minY), - GlobalPoint(maxX, maxY), - ); - } -} - -extension PointExtension on Point { - Offset toOffset() => Offset(x.toDouble(), y.toDouble()); -} diff --git a/lib/core/component/map/model/map_state.freezed.dart b/lib/core/component/map/model/map_state.freezed.dart deleted file mode 100644 index 2475ea161..000000000 --- a/lib/core/component/map/model/map_state.freezed.dart +++ /dev/null @@ -1,180 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'map_state.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -MapState _$MapStateFromJson(Map json) { - return _MapState.fromJson(json); -} - -/// @nodoc -mixin _$MapState { - @JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) - Offset get offset => throw _privateConstructorUsedError; - double get zoomLevel => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $MapStateCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MapStateCopyWith<$Res> { - factory $MapStateCopyWith(MapState value, $Res Function(MapState) then) = - _$MapStateCopyWithImpl<$Res, MapState>; - @useResult - $Res call( - {@JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) Offset offset, - double zoomLevel}); -} - -/// @nodoc -class _$MapStateCopyWithImpl<$Res, $Val extends MapState> - implements $MapStateCopyWith<$Res> { - _$MapStateCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? offset = null, - Object? zoomLevel = null, - }) { - return _then(_value.copyWith( - offset: null == offset - ? _value.offset - : offset // ignore: cast_nullable_to_non_nullable - as Offset, - zoomLevel: null == zoomLevel - ? _value.zoomLevel - : zoomLevel // ignore: cast_nullable_to_non_nullable - as double, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$MapStateImplCopyWith<$Res> - implements $MapStateCopyWith<$Res> { - factory _$$MapStateImplCopyWith( - _$MapStateImpl value, $Res Function(_$MapStateImpl) then) = - __$$MapStateImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {@JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) Offset offset, - double zoomLevel}); -} - -/// @nodoc -class __$$MapStateImplCopyWithImpl<$Res> - extends _$MapStateCopyWithImpl<$Res, _$MapStateImpl> - implements _$$MapStateImplCopyWith<$Res> { - __$$MapStateImplCopyWithImpl( - _$MapStateImpl _value, $Res Function(_$MapStateImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? offset = null, - Object? zoomLevel = null, - }) { - return _then(_$MapStateImpl( - offset: null == offset - ? _value.offset - : offset // ignore: cast_nullable_to_non_nullable - as Offset, - zoomLevel: null == zoomLevel - ? _value.zoomLevel - : zoomLevel // ignore: cast_nullable_to_non_nullable - as double, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MapStateImpl implements _MapState { - const _$MapStateImpl( - {@JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) - required this.offset, - required this.zoomLevel}); - - factory _$MapStateImpl.fromJson(Map json) => - _$$MapStateImplFromJson(json); - - @override - @JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) - final Offset offset; - @override - final double zoomLevel; - - @override - String toString() { - return 'MapState(offset: $offset, zoomLevel: $zoomLevel)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MapStateImpl && - (identical(other.offset, offset) || other.offset == offset) && - (identical(other.zoomLevel, zoomLevel) || - other.zoomLevel == zoomLevel)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, offset, zoomLevel); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MapStateImplCopyWith<_$MapStateImpl> get copyWith => - __$$MapStateImplCopyWithImpl<_$MapStateImpl>(this, _$identity); - - @override - Map toJson() { - return _$$MapStateImplToJson( - this, - ); - } -} - -abstract class _MapState implements MapState { - const factory _MapState( - {@JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) - required final Offset offset, - required final double zoomLevel}) = _$MapStateImpl; - - factory _MapState.fromJson(Map json) = - _$MapStateImpl.fromJson; - - @override - @JsonKey(fromJson: _offsetFromJson, toJson: _offsetToJson) - Offset get offset; - @override - double get zoomLevel; - @override - @JsonKey(ignore: true) - _$$MapStateImplCopyWith<_$MapStateImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/core/component/map/model/map_state.g.dart b/lib/core/component/map/model/map_state.g.dart deleted file mode 100644 index 0a08a213a..000000000 --- a/lib/core/component/map/model/map_state.g.dart +++ /dev/null @@ -1,29 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'map_state.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$MapStateImpl _$$MapStateImplFromJson(Map json) => - $checkedCreate( - r'_$MapStateImpl', - json, - ($checkedConvert) { - final val = _$MapStateImpl( - offset: $checkedConvert( - 'offset', (v) => _offsetFromJson(v as Map)), - zoomLevel: $checkedConvert('zoomLevel', (v) => (v as num).toDouble()), - ); - return val; - }, - ); - -Map _$$MapStateImplToJson(_$MapStateImpl instance) => - { - 'offset': _offsetToJson(instance.offset), - 'zoomLevel': instance.zoomLevel, - }; diff --git a/lib/core/component/map/model/mutable/projected_feature_layer.dart b/lib/core/component/map/model/mutable/projected_feature_layer.dart deleted file mode 100644 index 79718944d..000000000 --- a/lib/core/component/map/model/mutable/projected_feature_layer.dart +++ /dev/null @@ -1,87 +0,0 @@ -import 'package:eq_map/eq_map.dart'; -import 'package:eqmonitor/core/component/map/utils/projection.dart'; -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:lat_lng/lat_lng.dart'; - -class ProjectedFeatureLayer { - factory ProjectedFeatureLayer.fromFeatureLayer({ - required FeatureLayer layer, - required Projection projection, - }) => - ProjectedFeatureLayer._( - basedLayer: layer, - projectedPolygonFeatures: layer.polygonFeatures - .map( - (e) => ProjectedPolygonFeature.fromPolygonFeature( - feature: e, - projection: projection, - ), - ) - .toList(), - projectedPolylineFeatures: layer.lineFeatures - .map( - (e) => ProjectedPolylineFeature.fromPolylineFeature( - feature: e, - projection: projection, - ), - ) - .toList(), - ); - - ProjectedFeatureLayer._({ - required this.basedLayer, - required this.projectedPolygonFeatures, - required this.projectedPolylineFeatures, - }); - - final FeatureLayer basedLayer; - final List projectedPolygonFeatures; - final List projectedPolylineFeatures; -} - -class ProjectedPolylineFeature { - ProjectedPolylineFeature._({ - required this.points, - required this.type, - required this.isClosed, - required this.bbox, - }); - - factory ProjectedPolylineFeature.fromPolylineFeature({ - required PolylineFeature feature, - required Projection projection, - }) => - ProjectedPolylineFeature._( - points: feature.points.map(projection.project).toList(), - type: feature.type, - isClosed: feature.isClosed, - bbox: LatLngBoundary.fromList(feature.points), - ); - - final List points; - final PolylineType type; - final bool isClosed; - final LatLngBoundary bbox; -} - -class ProjectedPolygonFeature { - ProjectedPolygonFeature._({ - required this.code, - required this.bbox, - required this.points, - }); - - factory ProjectedPolygonFeature.fromPolygonFeature({ - required PolygonFeature feature, - required Projection projection, - }) => - ProjectedPolygonFeature._( - code: feature.code, - bbox: feature.bbox ?? LatLngBoundary.fromList(feature.points), - points: feature.points.map(projection.project).toList(), - ); - - final int? code; - final LatLngBoundary bbox; - final List points; -} diff --git a/lib/core/component/map/utils/global_point_and_zoom_level_tween.dart b/lib/core/component/map/utils/global_point_and_zoom_level_tween.dart deleted file mode 100644 index a19da289c..000000000 --- a/lib/core/component/map/utils/global_point_and_zoom_level_tween.dart +++ /dev/null @@ -1,30 +0,0 @@ -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:flutter/material.dart'; - -class GlobalPointAndZoomLevelTween - extends Tween<(GlobalPoint, double zoomLevel)> { - GlobalPointAndZoomLevelTween({ - super.begin, - super.end, - }); - - @override - (GlobalPoint, double zoomLevel) lerp(double t) { - if (begin == null) { - throw ArgumentError.notNull(); - } - final beginPoint = begin!.$1; - final beginZoomLevel = begin!.$2; - final endPoint = end!.$1; - final endZoomLevel = end!.$2; - - final targetPoint = GlobalPoint( - beginPoint.x + (endPoint.x - beginPoint.x) * t, - beginPoint.y + (endPoint.y - beginPoint.y) * t, - ); - - final targetZoomLevel = - beginZoomLevel + (endZoomLevel - beginZoomLevel) * t; - return (targetPoint, targetZoomLevel); - } -} diff --git a/lib/core/component/map/utils/line_util.dart b/lib/core/component/map/utils/line_util.dart deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/core/component/map/utils/map_shrinker.dart b/lib/core/component/map/utils/map_shrinker.dart deleted file mode 100644 index 22366b21a..000000000 --- a/lib/core/component/map/utils/map_shrinker.dart +++ /dev/null @@ -1,18 +0,0 @@ -import 'dart:math'; - -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:simplify/simplify.dart'; - -class MapShrinker { - MapShrinker._(); - - static List shrink({ - required int zoomLevel, - required List points, - }) => - simplify( - points.map((e) => Point(e.x * zoomLevel, e.y * zoomLevel)).toList(), - tolerance: 1, - highestQuality: false, - ).map((e) => GlobalPoint(e.x / zoomLevel, e.y / zoomLevel)).toList(); -} diff --git a/lib/core/component/map/utils/projection.dart b/lib/core/component/map/utils/projection.dart deleted file mode 100644 index fc3393585..000000000 --- a/lib/core/component/map/utils/projection.dart +++ /dev/null @@ -1,8 +0,0 @@ -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:lat_lng/lat_lng.dart'; - -abstract class Projection { - const Projection(); - GlobalPoint project(LatLng latLng); - LatLng unproject(GlobalPoint point); -} diff --git a/lib/core/component/map/utils/web_mercator_projection.dart b/lib/core/component/map/utils/web_mercator_projection.dart deleted file mode 100644 index 9239c4ac1..000000000 --- a/lib/core/component/map/utils/web_mercator_projection.dart +++ /dev/null @@ -1,88 +0,0 @@ -import 'dart:math'; -import 'dart:math' as math; -import 'dart:ui'; - -import 'package:eqmonitor/core/component/map/utils/projection.dart'; -import 'package:lat_lng/lat_lng.dart'; - -class WebMercatorProjection implements Projection { - static const int tileSize = 256; - static const pixelsPerLonDegree = tileSize / 360; - static const pixelsPerLonRadian = tileSize / (2 * math.pi); - static const origin = Offset(128, 128); - - @override - GlobalPoint project(LatLng latLng) { - final siny = math.min( - math.max( - math.sin(latLng.lat * (math.pi / 180)), - -0.9999, - ), - 0.9999, - ); - return GlobalPoint( - origin.dx + latLng.lon * pixelsPerLonDegree, - origin.dy + 0.5 * math.log((1 + siny) / (1 - siny)) * -pixelsPerLonRadian, - ); - } - - @override - LatLng unproject(GlobalPoint point) { - final lng = point.x - origin.dx / pixelsPerLonDegree; - final latRadians = (point.y - origin.dy) / -pixelsPerLonRadian; - final lat = - 180 / math.pi * (2 * math.atan(math.exp(latRadians)) - math.pi / 2); - return LatLng(lat, lng); - } -} - -class GlobalPoint extends Point { - const GlobalPoint(super.x, super.y); - - factory GlobalPoint.fromLatlng(LatLng latLng) { - return WebMercatorProjection().project(latLng); - } - - LatLng toLatLng() { - return WebMercatorProjection().unproject(this); - } - - @override - String toString() { - return 'GlobalPoint($x, $y)'; - } -} - -extension GlobalPointToLatLngs on (GlobalPoint, GlobalPoint) { - (LatLng, LatLng) toLatLngs() { - final projection = WebMercatorProjection(); - final (a, b) = ( - projection.unproject(this.$1), - projection.unproject(this.$2), - ); - final (minLat, maxLat) = (math.min(a.lat, b.lat), math.max(a.lat, b.lat)); - final (minLng, maxLng) = (math.min(a.lon, b.lon), math.max(a.lon, b.lon)); - - return ( - LatLng(minLat, minLng), - LatLng(maxLat, maxLng), - ); - } -} - -extension LatLngToGlobalPoints on (LatLng, LatLng) { - (GlobalPoint, GlobalPoint) toGlobalPoints() { - final projection = WebMercatorProjection(); - final (a, b) = ( - projection.project(this.$1), - projection.project(this.$2), - ); - final (minX, maxX) = (math.min(a.x, b.x), math.max(a.x, b.x)); - final (minY, maxY) = (math.min(a.y, b.y), math.max(a.y, b.y)); - - return ( - GlobalPoint(minX, minY), - GlobalPoint(maxX, maxY), - ); - } -} diff --git a/lib/core/component/map/view_model/map_config.dart b/lib/core/component/map/view_model/map_config.dart deleted file mode 100644 index 44b814d14..000000000 --- a/lib/core/component/map/view_model/map_config.dart +++ /dev/null @@ -1,20 +0,0 @@ -import 'package:eqmonitor/core/component/map/model/map_config.dart'; -import 'package:flutter/material.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -part 'map_config.g.dart'; - -@Riverpod(keepAlive: true) -class MapConfigState extends _$MapConfigState { - @override - MapConfig build(ThemeMode themeMode) { - return switch (themeMode) { - ThemeMode.light => MapConfig( - colorScheme: MapColorScheme.light(), - ), - _ => MapConfig( - colorScheme: MapColorScheme.light(), - ), - }; - } -} diff --git a/lib/core/component/map/view_model/map_config.g.dart b/lib/core/component/map/view_model/map_config.g.dart deleted file mode 100644 index d7f37a824..000000000 --- a/lib/core/component/map/view_model/map_config.g.dart +++ /dev/null @@ -1,174 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'map_config.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$mapConfigStateHash() => r'741e46eddd2534115de6ea3fb5f70774dd917c6b'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -abstract class _$MapConfigState extends BuildlessNotifier { - late final ThemeMode themeMode; - - MapConfig build( - ThemeMode themeMode, - ); -} - -/// See also [MapConfigState]. -@ProviderFor(MapConfigState) -const mapConfigStateProvider = MapConfigStateFamily(); - -/// See also [MapConfigState]. -class MapConfigStateFamily extends Family { - /// See also [MapConfigState]. - const MapConfigStateFamily(); - - /// See also [MapConfigState]. - MapConfigStateProvider call( - ThemeMode themeMode, - ) { - return MapConfigStateProvider( - themeMode, - ); - } - - @override - MapConfigStateProvider getProviderOverride( - covariant MapConfigStateProvider provider, - ) { - return call( - provider.themeMode, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mapConfigStateProvider'; -} - -/// See also [MapConfigState]. -class MapConfigStateProvider - extends NotifierProviderImpl { - /// See also [MapConfigState]. - MapConfigStateProvider( - ThemeMode themeMode, - ) : this._internal( - () => MapConfigState()..themeMode = themeMode, - from: mapConfigStateProvider, - name: r'mapConfigStateProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mapConfigStateHash, - dependencies: MapConfigStateFamily._dependencies, - allTransitiveDependencies: - MapConfigStateFamily._allTransitiveDependencies, - themeMode: themeMode, - ); - - MapConfigStateProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.themeMode, - }) : super.internal(); - - final ThemeMode themeMode; - - @override - MapConfig runNotifierBuild( - covariant MapConfigState notifier, - ) { - return notifier.build( - themeMode, - ); - } - - @override - Override overrideWith(MapConfigState Function() create) { - return ProviderOverride( - origin: this, - override: MapConfigStateProvider._internal( - () => create()..themeMode = themeMode, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - themeMode: themeMode, - ), - ); - } - - @override - NotifierProviderElement createElement() { - return _MapConfigStateProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MapConfigStateProvider && other.themeMode == themeMode; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, themeMode.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MapConfigStateRef on NotifierProviderRef { - /// The parameter `themeMode` of this provider. - ThemeMode get themeMode; -} - -class _MapConfigStateProviderElement - extends NotifierProviderElement - with MapConfigStateRef { - _MapConfigStateProviderElement(super.provider); - - @override - ThemeMode get themeMode => (origin as MapConfigStateProvider).themeMode; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/component/map/view_model/map_viewmodel.dart b/lib/core/component/map/view_model/map_viewmodel.dart deleted file mode 100644 index 3f963f0c3..000000000 --- a/lib/core/component/map/view_model/map_viewmodel.dart +++ /dev/null @@ -1,599 +0,0 @@ -import 'dart:async'; -import 'dart:math' as math; - -import 'package:eqmonitor/core/component/map/model/map_state.dart'; -import 'package:eqmonitor/core/component/map/utils/global_point_and_zoom_level_tween.dart'; -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:flutter/gestures.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/physics.dart'; -import 'package:lat_lng/lat_lng.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -part 'map_viewmodel.g.dart'; - -@Riverpod() -class MapViewModel extends _$MapViewModel { - @override - MapState build(Key key) { - return const MapState( - offset: Offset.zero, - zoomLevel: 1, - ); - } - - double? _scaleStart; - - Animation? _moveAnimation; - Animation? _scaleAnimation; - Animation<(GlobalPoint, double zoomLevel)>? _globalPointAndZoomLevelAnimation; - late AnimationController _moveController; - late AnimationController _scaleController; - late AnimationController _globalPointAndZoomLevelController; - - static const double _interactionEndFrictionCoefficient = 0.0000135; - - _GestureType? _gestureType; - - RenderBox? _renderBox; - - void Function()? _registerCallback; - - // * MapController周りの実装 - (LatLng, LatLng) _currencPoi = ( - const LatLng(45.8, 145.1), - const LatLng(30, 128.8), - ); - - /// POI適用後に移動したかどうか - bool _isMarkedAsMoved = false; - - /// デフォルトの表示領域に戻す - void reset() => _currencPoi = ( - const LatLng(45.8, 145.1), - const LatLng(30, 128.8), - ); - - /// 表示領域を変更する - void applyBounds({ - EdgeInsetsGeometry padding = EdgeInsets.zero, - double bottom = 0, - }) { - if (_renderBox == null) { - return; - } - final points = _currencPoi.toGlobalPoints(); - state = state.fitBoundsByGlobalPoints( - [points.$1, points.$2], - padding - .add( - EdgeInsets.only( - bottom: _renderBox!.size.height * bottom, - ), - ) - .deflateSize(_renderBox!.size), - ); - } - - Future animatedApplyBoundsIfNeeded({ - Duration duration = const Duration(milliseconds: 500), - Curve curve = Curves.easeOutCirc, - EdgeInsetsGeometry padding = EdgeInsets.zero, - }) async => - switch (_isMarkedAsMoved) { - false => animatedApplyBounds( - duration: duration, - curve: curve, - padding: padding, - ), - true => {}, - }; - - Future animatedApplyBounds({ - Duration duration = const Duration(milliseconds: 500), - Curve curve = Curves.easeOutCirc, - EdgeInsetsGeometry padding = EdgeInsets.zero, - double bottom = 0, - }) { - if (_renderBox == null) { - throw Exception('MapController is not initialized.'); - } - final points = _currencPoi.toGlobalPoints(); - return animatedBoundsByGlobalPoints( - [points.$1, points.$2], - curve: curve, - duration: duration, - padding: padding, - bottom: bottom, - ); - } - - /// 表示領域をセットし、表示領域を変更する - void setBounds(List latLngs) { - if (latLngs.isEmpty) { - throw ArgumentError('latLngs must not be empty'); - } - var minLat = double.negativeInfinity; - var minLng = double.negativeInfinity; - var maxLat = double.infinity; - var maxLng = double.infinity; - for (final latLng in latLngs) { - minLat = math.max(minLat, latLng.lat); - minLng = math.max(minLng, latLng.lon); - maxLat = math.min(maxLat, latLng.lat); - maxLng = math.min(maxLng, latLng.lon); - } - _currencPoi = ( - LatLng(minLat, minLng), - LatLng(maxLat, maxLng), - ); - } - - void resetMarkAsMoved() => _isMarkedAsMoved = false; - - /// The minimum velocity for a touch to consider that touch to trigger a fling - /// gesture. - static const double kMinFlingVelocity = 50; // Logical pixels / second - /// The default conversion factor when treating mouse scrolling as scaling. - /// - /// The value was arbitrarily chosen to feel natural for most mousewheels on - /// all supported platforms. - static const double kDefaultMouseScrollToScaleFactor = 200; - - /// _moveAnimationのリスナー - void _onMoveAnimation() { - if (!_moveController.isAnimating) { - _moveAnimation?.removeListener(_onMoveAnimation); - _moveAnimation = null; - _moveController.reset(); - return; - } - state = state.copyWith( - offset: _moveAnimation!.value, - ); - } - - void _onGlobalPointAndZoomLevelAnimation() { - if (!_globalPointAndZoomLevelController.isAnimating) { - _globalPointAndZoomLevelAnimation - ?.removeListener(_onGlobalPointAndZoomLevelAnimation); - _globalPointAndZoomLevelAnimation = null; - _globalPointAndZoomLevelController.reset(); - return; - } - final (GlobalPoint point, double zoomLevel) = - _globalPointAndZoomLevelAnimation!.value; - - state = state.setCenter(point, _renderBox!.size).setScale( - zoomLevel, - focalPoint: _renderBox!.size.center(Offset.zero), - ); - } - - void _onScaleAnimation() { - if (!_scaleController.isAnimating) { - _scaleAnimation?.removeListener(_onScaleAnimation); - _scaleAnimation = null; - _scaleController.reset(); - return; - } - state = state.setScale( - _scaleAnimation!.value, - focalPoint: _renderBox!.size.center(Offset.zero), - ); - } - - // Decide which type of gesture this is by comparing the amount of scale - // and rotation in the gesture, if any. Scale starts at 1 and rotation - // starts at 0. Pan will have no scale and no rotation because it uses only - // one finger. - _GestureType _getGestureType(ScaleUpdateDetails details) { - final scale = details.scale; - const rotation = 0; //details.rotation; - if ((scale - 1).abs() > rotation.abs()) { - return _GestureType.scale; - } else if (rotation != 0.0) { - return _GestureType.rotate; - } else { - return _GestureType.pan; - } - } - - void handleScaleStart(ScaleStartDetails details) { - if (_moveController.isAnimating) { - _moveController - ..stop() - ..reset(); - _moveAnimation?.removeListener(_onMoveAnimation); - } - if (_scaleController.isAnimating) { - _scaleController - ..stop() - ..reset(); - _scaleAnimation?.removeListener(_onScaleAnimation); - } - _gestureType = null; - - _scaleStart = state.zoomLevel; - } - - void handleScaleUpdate(ScaleUpdateDetails details) { - _isMarkedAsMoved = true; - if (_gestureType == _GestureType.pan) { - // ジェスチャーが最初に開始されたとき、2本の指で行うジェスチャーでも、 - // スケールや回転に変化がない場合がある。 - // ここでは、最初にpanとしてマークされた後、 - // 正しいタイプとして再解釈できるようにしています。 - _gestureType = _getGestureType(details); - } else { - _gestureType = _getGestureType(details); - } - final scale = state.zoomLevel; - switch (_gestureType) { - case _GestureType.pan: - if (details.scale != 1.0) { - return; - } - state = state.move( - Offset(details.focalPointDelta.dx, details.focalPointDelta.dy) / - state.zoomLevel, - ); - case _GestureType.scale: - assert(_scaleStart != null); - final desiredScale = _scaleStart! * details.scale; - // スケール中に ユーザの2本指はシーン内で同じ位置にあるはず - // つまり、FocalPointのシーン内の位置はスケーリングの前後で変化しない - state = state - .setScale( - desiredScale, - focalPoint: - details.focalPoint - _renderBox!.localToGlobal(Offset.zero), - ) - .move(details.focalPointDelta / scale); - case _GestureType.rotate: - case null: - break; - } - } - - void handleScaleEnd(ScaleEndDetails details) { - // state = state.copyWith( - // zoomLevel: _scaleStart, - // ); - _moveAnimation?.removeListener(_onMoveAnimation); - _scaleAnimation?.removeListener(_onScaleAnimation); - - _moveController.reset(); - _scaleController.reset(); - _scaleStart = null; - - if (_gestureType == _GestureType.pan) { - if (details.velocity.pixelsPerSecond.distance < kMinFlingVelocity) { - return; - } - final translation = state.offset; - final frictionSimulationX = FrictionSimulation( - _interactionEndFrictionCoefficient, - translation.dx, - -details.velocity.pixelsPerSecond.dx / state.zoomLevel, - ); - final frictionSimulationY = FrictionSimulation( - _interactionEndFrictionCoefficient, - translation.dy, - -details.velocity.pixelsPerSecond.dy / state.zoomLevel, - ); - final tFinal = _getFinalTime( - details.velocity.pixelsPerSecond.distance, - _interactionEndFrictionCoefficient, - ); - _moveAnimation = Tween( - begin: translation, - end: Offset(frictionSimulationX.finalX, frictionSimulationY.finalX), - ).animate( - CurvedAnimation( - parent: _moveController, - curve: Curves.decelerate, - ), - ); - _moveController.duration = - Duration(milliseconds: (tFinal * 1000).round()); - _moveAnimation!.addListener(_onMoveAnimation); - _moveController.forward(); - } else if (_gestureType == _GestureType.scale) { - if (details.scaleVelocity.abs() < 0.1) { - return; - } - final scale = state.zoomLevel; - final frictionSimulation = FrictionSimulation( - _interactionEndFrictionCoefficient * kDefaultMouseScrollToScaleFactor, - scale, - details.scaleVelocity / 10, - ); - final tFinal = _getFinalTime( - details.scaleVelocity.abs(), - _interactionEndFrictionCoefficient * kDefaultMouseScrollToScaleFactor, - effectivelyMotionless: 0.1, - ); - _scaleAnimation = Tween( - begin: scale, - end: frictionSimulation.x(tFinal), - ).animate( - CurvedAnimation( - parent: _scaleController, - curve: Curves.decelerate, - ), - ); - _scaleController.duration = - Duration(milliseconds: (tFinal * 1000).round()); - _scaleAnimation!.addListener(_onScaleAnimation); - _scaleController.forward(); - } - } - - // Given a velocity and drag, calculate the time at which motion will come to - // a stop, within the margin of effectivelyMotionless. - double _getFinalTime( - double velocity, - double drag, { - double effectivelyMotionless = 10, - }) { - return math.log(effectivelyMotionless / velocity) / math.log(drag / 100); - } - - void recievedPointerSignal(PointerSignalEvent event) { - final double scaleChange; - if (event is PointerScrollEvent) { - if (event.kind == PointerDeviceKind.trackpad) { - // トラックパッドのスクロールなので Pan として扱う - handleScaleStart( - ScaleStartDetails( - focalPoint: event.position, - localFocalPoint: event.localPosition, - ), - ); - - final localDelta = PointerEvent.transformDeltaViaPositions( - untransformedEndPosition: event.position + event.scrollDelta, - untransformedDelta: event.scrollDelta, - transform: event.transform, - ); - - state = state.move(localDelta / state.zoomLevel); - return; - } - - // Ignore left and right mouse wheel scroll. - if (event.scrollDelta.dy == 0.0) { - return; - } - scaleChange = - math.exp(-event.scrollDelta.dy / kDefaultMouseScrollToScaleFactor); - } else if (event is PointerScaleEvent) { - scaleChange = event.scale; - } else { - return; - } - handleScaleStart( - ScaleStartDetails( - focalPoint: event.position, - localFocalPoint: event.localPosition, - ), - ); - handleScaleUpdate( - ScaleUpdateDetails( - focalPoint: event.position, - localFocalPoint: event.localPosition, - scale: scaleChange, - ), - ); - handleScaleEnd( - ScaleEndDetails(), - ); - } - - Future animatedMoveTo( - LatLng target, { - Duration duration = const Duration(milliseconds: 500), - Curve curve = Curves.easeOutCirc, - }) async { - // 既存のAnimationがあったらキャンセルする - _moveAnimation?.removeListener(_onMoveAnimation); - _scaleAnimation?.removeListener(_onScaleAnimation); - _moveController.reset(); - _scaleController.reset(); - - final start = state.offset; - final after = state.setCenterLatLng(target, _renderBox!.size).offset; - - final animation = Tween( - begin: start, - end: after, - ).animate( - CurvedAnimation( - parent: _moveController, - curve: curve, - ), - ); - _moveController.duration = duration; - _moveAnimation = animation; - _moveAnimation!.addListener(_onMoveAnimation); - await _moveController.forward(); - } - - Future animatedZoomTo( - double target, { - Duration duration = const Duration(milliseconds: 500), - Curve curve = Curves.easeOutCirc, - }) async { - // 既存のAnimationがあったらキャンセルする - _moveAnimation?.removeListener(_onMoveAnimation); - _scaleAnimation?.removeListener(_onScaleAnimation); - _moveController.reset(); - _scaleController.reset(); - - final start = state; - final after = state.setScale( - target, - focalPoint: _renderBox!.size.center(Offset.zero) / state.zoomLevel, - ); - // moveAnimation - final animation = Tween( - begin: start.offset, - end: after.offset, - ).animate( - CurvedAnimation( - parent: _moveController, - curve: curve, - ), - ); - _moveController.duration = duration; - _moveAnimation = animation; - _moveAnimation!.addListener(_onMoveAnimation); - // scaleAnimation - final scaleAnimation = Tween( - begin: start.zoomLevel, - end: after.zoomLevel, - ).animate( - CurvedAnimation( - parent: _scaleController, - curve: curve, - ), - ); - _scaleController.duration = duration; - _scaleAnimation = scaleAnimation; - _scaleAnimation!.addListener(_onScaleAnimation); - await ( - _moveController.forward(), - _scaleController.forward(), - ).wait; - } - - Future animatedBounds( - List bounds, { - Duration duration = const Duration(milliseconds: 500), - Curve curve = Curves.easeOutCirc, - }) async { - if (_renderBox == null) { - throw Exception('MapController is not initialized.'); - } - // 既存のAnimationがあったらキャンセルする - _moveAnimation?.removeListener(_onMoveAnimation); - _scaleAnimation?.removeListener(_onScaleAnimation); - _globalPointAndZoomLevelAnimation - ?.removeListener(_onGlobalPointAndZoomLevelAnimation); - _moveController.reset(); - _scaleController.reset(); - _globalPointAndZoomLevelController.reset(); - - final startCenterGlobalPoint = - state.offsetToGlobalPoint(_renderBox!.size.center(Offset.zero)); - final startZoomLevel = state.zoomLevel; - - final after = state.fitBounds(bounds, _renderBox!.size); - final afterCenterGlobalPoint = - after.offsetToGlobalPoint(_renderBox!.size.center(Offset.zero)); - final afterZoomLevel = after.zoomLevel; - - // moveAnimation - final animation = GlobalPointAndZoomLevelTween( - begin: (startCenterGlobalPoint, startZoomLevel), - end: (afterCenterGlobalPoint, afterZoomLevel), - ).animate( - CurvedAnimation( - parent: _globalPointAndZoomLevelController, - curve: curve, - ), - ); - _globalPointAndZoomLevelController.duration = duration; - _globalPointAndZoomLevelAnimation = animation; - _globalPointAndZoomLevelAnimation! - .addListener(_onGlobalPointAndZoomLevelAnimation); - - await _globalPointAndZoomLevelController.forward(); - } - - /// [globalPoints]を含む最小の矩形を表示する - Future animatedBoundsByGlobalPoints( - List globalPoints, { - Duration duration = const Duration(milliseconds: 500), - Curve curve = Curves.easeOutCirc, - EdgeInsetsGeometry padding = EdgeInsets.zero, - double bottom = 0, - }) async { - if (_renderBox == null) { - throw Exception('MapController is not initialized.'); - } - // 既存のAnimationがあったらキャンセルする - _moveAnimation?.removeListener(_onMoveAnimation); - _scaleAnimation?.removeListener(_onScaleAnimation); - _globalPointAndZoomLevelAnimation - ?.removeListener(_onGlobalPointAndZoomLevelAnimation); - _moveController.reset(); - _scaleController.reset(); - _globalPointAndZoomLevelController.reset(); - - final startCenterGlobalPoint = - state.offsetToGlobalPoint(_renderBox!.size.center(Offset.zero)); - final startZoomLevel = state.zoomLevel; - final after = state.fitBoundsByGlobalPoints( - globalPoints, - padding - .add( - EdgeInsets.only( - bottom: _renderBox!.size.height * bottom, - ), - ) - .deflateSize(_renderBox!.size), - ); - final afterCenterGlobalPoint = - after.offsetToGlobalPoint(_renderBox!.size.center(Offset.zero)); - final afterZoomLevel = after.zoomLevel; - - // moveAnimation - final animation = GlobalPointAndZoomLevelTween( - begin: (startCenterGlobalPoint, startZoomLevel), - end: (afterCenterGlobalPoint, afterZoomLevel), - ).animate( - CurvedAnimation( - parent: _globalPointAndZoomLevelController, - curve: curve, - ), - ); - _globalPointAndZoomLevelController.duration = duration; - _globalPointAndZoomLevelAnimation = animation; - _globalPointAndZoomLevelAnimation! - .addListener(_onGlobalPointAndZoomLevelAnimation); - - await _globalPointAndZoomLevelController.forward(); - } - - void registerRenderBox(RenderBox renderBox) { - _renderBox = renderBox; - _registerCallback?.call(); - } - - void onRegisterRenderBox(void Function() callback) { - _registerCallback = callback; - if (_renderBox != null) { - callback(); - } - } - - void registerAnimationControllers({ - required AnimationController moveController, - required AnimationController scaleController, - required AnimationController globalPointAndZoomLevelController, - }) { - _moveController = moveController; - _scaleController = scaleController; - _globalPointAndZoomLevelController = globalPointAndZoomLevelController; - } -} - -// A classification of relevant user gestures. Each contiguous user gesture is -// represented by exactly one _GestureType. -enum _GestureType { - pan, - scale, - rotate, -} diff --git a/lib/core/component/map/view_model/map_viewmodel.g.dart b/lib/core/component/map/view_model/map_viewmodel.g.dart deleted file mode 100644 index 83cbf0e5e..000000000 --- a/lib/core/component/map/view_model/map_viewmodel.g.dart +++ /dev/null @@ -1,174 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'map_viewmodel.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$mapViewModelHash() => r'aab6af0c289dbdc4d8867428b5a496e4906517fa'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -abstract class _$MapViewModel extends BuildlessAutoDisposeNotifier { - late final Key key; - - MapState build( - Key key, - ); -} - -/// See also [MapViewModel]. -@ProviderFor(MapViewModel) -const mapViewModelProvider = MapViewModelFamily(); - -/// See also [MapViewModel]. -class MapViewModelFamily extends Family { - /// See also [MapViewModel]. - const MapViewModelFamily(); - - /// See also [MapViewModel]. - MapViewModelProvider call( - Key key, - ) { - return MapViewModelProvider( - key, - ); - } - - @override - MapViewModelProvider getProviderOverride( - covariant MapViewModelProvider provider, - ) { - return call( - provider.key, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mapViewModelProvider'; -} - -/// See also [MapViewModel]. -class MapViewModelProvider - extends AutoDisposeNotifierProviderImpl { - /// See also [MapViewModel]. - MapViewModelProvider( - Key key, - ) : this._internal( - () => MapViewModel()..key = key, - from: mapViewModelProvider, - name: r'mapViewModelProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mapViewModelHash, - dependencies: MapViewModelFamily._dependencies, - allTransitiveDependencies: - MapViewModelFamily._allTransitiveDependencies, - key: key, - ); - - MapViewModelProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.key, - }) : super.internal(); - - final Key key; - - @override - MapState runNotifierBuild( - covariant MapViewModel notifier, - ) { - return notifier.build( - key, - ); - } - - @override - Override overrideWith(MapViewModel Function() create) { - return ProviderOverride( - origin: this, - override: MapViewModelProvider._internal( - () => create()..key = key, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - key: key, - ), - ); - } - - @override - AutoDisposeNotifierProviderElement createElement() { - return _MapViewModelProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MapViewModelProvider && other.key == key; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, key.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MapViewModelRef on AutoDisposeNotifierProviderRef { - /// The parameter `key` of this provider. - Key get key; -} - -class _MapViewModelProviderElement - extends AutoDisposeNotifierProviderElement - with MapViewModelRef { - _MapViewModelProviderElement(super.provider); - - @override - Key get key => (origin as MapViewModelProvider).key; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/component/sheet/basic_modal_sheet.dart b/lib/core/component/sheet/basic_modal_sheet.dart index 32f5ff1a2..5ffbc7617 100644 --- a/lib/core/component/sheet/basic_modal_sheet.dart +++ b/lib/core/component/sheet/basic_modal_sheet.dart @@ -8,10 +8,12 @@ class BasicModalSheet extends HookWidget { required this.controller, required this.children, this.hasAppBar = true, + this.useColumn = false, }); final SheetController controller; final List children; final bool hasAppBar; + final bool useColumn; @override Widget build(BuildContext context) { @@ -59,12 +61,21 @@ class BasicModalSheet extends HookWidget { child: Column( children: [ barWidget, - Expanded( - child: ListView( - padding: const EdgeInsets.all(2), - children: children, + if (useColumn) + Expanded( + child: SingleChildScrollView( + child: Column( + children: children, + ), + ), + ) + else + Expanded( + child: ListView( + padding: const EdgeInsets.all(2), + children: children, + ), ), - ), ], ), ), diff --git a/lib/core/extension/async_value.dart b/lib/core/extension/async_value.dart index a843aea28..0aa87e61e 100644 --- a/lib/core/extension/async_value.dart +++ b/lib/core/extension/async_value.dart @@ -1,16 +1,64 @@ -import 'dart:async'; +// ignore_for_file: avoid_positional_boolean_parameters +import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; -extension AsyncValueExt on AsyncValue { - Future> guardPlus( - Future Function() future, - ) async { +// https://zenn.dev/k9i/articles/b8c333e1bb8b9b +extension AsyncValueX on AsyncValue { + /// guard関数の拡張版 + /// 例外時に前回のデータを持たせてエラーを返す + Future> guardPlus(Future Function() future) async { try { - return AsyncValue.data(await future()); + return AsyncValue.data(await future()); // ignore: avoid_catches_without_on_clauses - } catch (e, st) { - return AsyncValue.error(e, st).copyWithPrevious(this); + } catch (err, stack) { + // 前回のデータを持たせてエラーを返す + return AsyncValue.error(err, stack).copyWithPrevious(this); + } + } + + /// when関数の拡張版 + /// + /// [skipErrorOnHasValue]がtrueの時はデータがある場合のエラーをスキップする + /// ページングの2ページ目以降でエラー時に、取得ずみデータを表示する場合などに使用する + R whenPlus({ + bool skipLoadingOnReload = false, + bool skipLoadingOnRefresh = true, + bool skipError = false, + bool skipErrorOnHasValue = false, + required R Function(T data, bool hasError) data, + required R Function(Object error, StackTrace stackTrace) error, + required R Function() loading, + }) { + if (skipErrorOnHasValue) { + if (hasValue && hasError) { + return data(requireValue, true); + } + } + + return when( + skipLoadingOnReload: skipLoadingOnReload, + skipLoadingOnRefresh: skipLoadingOnRefresh, + skipError: skipError, + data: (d) => data(d, hasError), + error: error, + loading: loading, + ); + } + + /// エラー時にスナックバーを表示する + void showSnackbarOnError( + BuildContext context, { + String defaultMessage = 'エラーが発生しました', + }) { + if (!isLoading && hasError) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text( + error!.toString(), + ), + ), + ); } } } diff --git a/lib/core/extension/lat_lng_bounds_list.dart b/lib/core/extension/lat_lng_bounds_list.dart new file mode 100644 index 000000000..fb08be543 --- /dev/null +++ b/lib/core/extension/lat_lng_bounds_list.dart @@ -0,0 +1,23 @@ +import 'dart:math'; + +import 'package:jma_map/jma_map.dart'; + +extension LatLngBoundsListEx on List { + LatLngBounds marge() { + var minLat = double.infinity; + var minLng = double.infinity; + var maxLat = double.negativeInfinity; + var maxLng = double.negativeInfinity; + + for (final bounds in this) { + minLat = min(minLat, bounds.southWest.lat); + minLng = min(minLng, bounds.southWest.lng); + maxLat = max(maxLat, bounds.northEast.lat); + maxLng = max(maxLng, bounds.northEast.lng); + } + return LatLngBounds( + southWest: LatLng(lat: minLat, lng: minLng), + northEast: LatLng(lat: maxLat, lng: maxLng), + ); + } +} diff --git a/lib/core/fcm/channels.dart b/lib/core/fcm/channels.dart index 4fa2451db..8fea35043 100644 --- a/lib/core/fcm/channels.dart +++ b/lib/core/fcm/channels.dart @@ -11,9 +11,10 @@ final List notificationChannels = [ groupId: 'fromdev', importance: Importance.high, ), + //! EEW const AndroidNotificationChannel( - 'eew_alert', + 'eew_warning', '緊急地震速報(警報)', groupId: 'eew', description: '緊急地震速報(警報)通知', @@ -21,51 +22,15 @@ final List notificationChannels = [ importance: Importance.max, ), const AndroidNotificationChannel( - 'eew', + 'eew_forecast', '緊急地震速報(予報)', groupId: 'eew', description: '緊急地震速報(予報)通知', ledColor: Color.fromARGB(255, 190, 0, 0), importance: Importance.high, ), + //! 地震通知 - const AndroidNotificationChannel( - 'VZSE40', - groupId: 'earthquake', - '地震・津波に関するお知らせ', - description: '地震・津波の試験・訓練配信のお知らせ、自治体震度データの入電停止等のお知らせ、その他を発表', - importance: Importance.low, - ), - const AndroidNotificationChannel( - 'VTSE41', - groupId: 'tsunami', - '津波警報・注意報・予報', - description: - '影響をもたらす津波が到達すると予測された地域、または影響がなくなった地域に対して、津波警報・注意報・予報の発表・切替及び解除について、予報区ごとに予想の高さや津波到達時間、震源要素等を発表', - importance: Importance.max, - ), - const AndroidNotificationChannel( - 'VTSE51', - groupId: 'tsunami', - '津波情報', - description: '各地の満潮時刻、津波到達予想時刻に関する情報及び地上観測点における津波観測に関する情報を発表', - importance: Importance.high, - ), - const AndroidNotificationChannel( - 'VTSE52', - groupId: 'tsunami', - '沖合の津波情報', - description: '沖合の観測点における津波観測に関する情報を発表', - importance: Importance.high, - ), - const AndroidNotificationChannel( - 'WEPA60', - groupId: 'tsunami', - '国際津波関連情報(国内向け)', - description: - '北西太平洋域でM6.5以上の地震が発生した場合、北西太平洋域の各国が津波警報等の発表に資するための支援情報として発表するものを複製した国内向け配信', - importance: Importance.high, - ), const AndroidNotificationChannel( 'VXSE51', groupId: 'earthquake', @@ -87,6 +52,7 @@ final List notificationChannels = [ description: '震源要素・各地の震度、海外で発生した大きな地震の震源要素等、津波の有無を通知', importance: Importance.high, ), + /* const AndroidNotificationChannel( 'VXSE56', groupId: 'earthquake', @@ -101,6 +67,7 @@ final List notificationChannels = [ description: '顕著な地震に対して、有感地震の回数経過状況を発表', importance: Importance.high, ), + */ const AndroidNotificationChannel( 'VXSE61', groupId: 'earthquake', @@ -114,6 +81,45 @@ final List notificationChannels = [ description: '長周期地震動階級1以上を観測した地震について、観測した要素などを地震発生後10分程度で発表', importance: Importance.high, ), + + const AndroidNotificationChannel( + 'VZSE40', + groupId: 'earthquake', + '地震・津波に関するお知らせ', + description: '地震・津波の試験・訓練配信のお知らせ、自治体震度データの入電停止等のお知らせ、その他を発表', + importance: Importance.low, + ), + /* + const AndroidNotificationChannel( + 'VTSE41', + groupId: 'tsunami', + '津波警報・注意報・予報', + description: + '影響をもたらす津波が到達すると予測された地域、または影響がなくなった地域に対して、津波警報・注意報・予報の発表・切替及び解除について、予報区ごとに予想の高さや津波到達時間、震源要素等を発表', + importance: Importance.max, + ), + const AndroidNotificationChannel( + 'VTSE51', + groupId: 'tsunami', + '津波情報', + description: '各地の満潮時刻、津波到達予想時刻に関する情報及び地上観測点における津波観測に関する情報を発表', + importance: Importance.high, + ), + const AndroidNotificationChannel( + 'VTSE52', + groupId: 'tsunami', + '沖合の津波情報', + description: '沖合の観測点における津波観測に関する情報を発表', + importance: Importance.high, + ), + const AndroidNotificationChannel( + 'WEPA60', + groupId: 'tsunami', + '国際津波関連情報(国内向け)', + description: + '北西太平洋域でM6.5以上の地震が発生した場合、北西太平洋域の各国が津波警報等の発表に資するための支援情報として発表するものを複製した国内向け配信', + importance: Importance.high, + ), const AndroidNotificationChannel( 'VYSE50', groupId: 'earthquake', @@ -135,7 +141,7 @@ final List notificationChannels = [ '南海トラフ地震関連解説情報(定例)', description: '南海トラフ沿いの地震に関する評価検討会の定例会合における調査結果の発表', importance: Importance.high, - ), + ),*/ ]; final List notificationChannelGroups = [ @@ -146,13 +152,16 @@ final List notificationChannelGroups = [ const AndroidNotificationChannelGroup( 'earthquake', '地震通知', + description: '緊急地震速報を除く地震に関する情報をお伝えします', ), const AndroidNotificationChannelGroup( 'tsunami', '津波通知', + description: '津波に関する情報をお伝えします', ), const AndroidNotificationChannelGroup( 'fromdev', '開発者からのお知らせ', + description: '開発者からの連絡に使用されます。', ), ]; diff --git a/lib/core/foundation/result.dart b/lib/core/foundation/result.dart index 91e54bebb..ef4bce82a 100644 --- a/lib/core/foundation/result.dart +++ b/lib/core/foundation/result.dart @@ -1,27 +1,43 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; +import 'dart:async'; -part 'result.freezed.dart'; +/// sealed classに準拠したResultクラスを生成 +sealed class Result { + const Result(); -@freezed -sealed class Result with _$Result { - const Result._(); - const factory Result.success(T value) = Success; - const factory Result.failure(R error) = Failure; + static Future> capture( + FutureOr Function() fn, + ) async { + try { + return Success(await fn.call()); + } on Exception catch (e, stackTrace) { + return Failure(e, stackTrace); + } + } - T? get valueOrNull => when( - success: (value) => value, - failure: (_) => null, - ); + static Future> captureSelected( + FutureOr Function() fn, + ) async { + try { + return Success(await fn.call()); + } on E catch (e, stackTrace) { + return Failure(e, stackTrace); + } + } - R? get errorOrNull => when( - success: (_) => null, - failure: (error) => error, - ); + static Result success(V value) => Success(value); + static Result failure(Exception exception) => + Failure(exception); +} - bool get isSuccess => when( - success: (_) => true, - failure: (_) => false, - ); +/// Resultクラスに準拠したSuccessクラス +final class Success extends Result { + const Success(this.value); + final S value; +} - bool get isFailure => !isSuccess; +/// Resultクラスに準拠したFailureクラス +final class Failure extends Result { + const Failure(this.exception, [this.stackTrace]); + final E exception; + final StackTrace? stackTrace; } diff --git a/lib/core/foundation/result.freezed.dart b/lib/core/foundation/result.freezed.dart deleted file mode 100644 index 93367dc39..000000000 --- a/lib/core/foundation/result.freezed.dart +++ /dev/null @@ -1,345 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'result.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -/// @nodoc -mixin _$Result { - @optionalTypeArgs - TResult when({ - required TResult Function(T value) success, - required TResult Function(R error) failure, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(T value)? success, - TResult? Function(R error)? failure, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(T value)? success, - TResult Function(R error)? failure, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult map({ - required TResult Function(Success value) success, - required TResult Function(Failure value) failure, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Success value)? success, - TResult? Function(Failure value)? failure, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Success value)? success, - TResult Function(Failure value)? failure, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ResultCopyWith { - factory $ResultCopyWith( - Result value, $Res Function(Result) then) = - _$ResultCopyWithImpl>; -} - -/// @nodoc -class _$ResultCopyWithImpl> - implements $ResultCopyWith { - _$ResultCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; -} - -/// @nodoc -abstract class _$$SuccessImplCopyWith { - factory _$$SuccessImplCopyWith( - _$SuccessImpl value, $Res Function(_$SuccessImpl) then) = - __$$SuccessImplCopyWithImpl; - @useResult - $Res call({T value}); -} - -/// @nodoc -class __$$SuccessImplCopyWithImpl - extends _$ResultCopyWithImpl> - implements _$$SuccessImplCopyWith { - __$$SuccessImplCopyWithImpl( - _$SuccessImpl _value, $Res Function(_$SuccessImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? value = freezed, - }) { - return _then(_$SuccessImpl( - freezed == value - ? _value.value - : value // ignore: cast_nullable_to_non_nullable - as T, - )); - } -} - -/// @nodoc - -class _$SuccessImpl extends Success { - const _$SuccessImpl(this.value) : super._(); - - @override - final T value; - - @override - String toString() { - return 'Result<$T, $R>.success(value: $value)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SuccessImpl && - const DeepCollectionEquality().equals(other.value, value)); - } - - @override - int get hashCode => - Object.hash(runtimeType, const DeepCollectionEquality().hash(value)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SuccessImplCopyWith> get copyWith => - __$$SuccessImplCopyWithImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(T value) success, - required TResult Function(R error) failure, - }) { - return success(value); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(T value)? success, - TResult? Function(R error)? failure, - }) { - return success?.call(value); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(T value)? success, - TResult Function(R error)? failure, - required TResult orElse(), - }) { - if (success != null) { - return success(value); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Success value) success, - required TResult Function(Failure value) failure, - }) { - return success(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Success value)? success, - TResult? Function(Failure value)? failure, - }) { - return success?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Success value)? success, - TResult Function(Failure value)? failure, - required TResult orElse(), - }) { - if (success != null) { - return success(this); - } - return orElse(); - } -} - -abstract class Success extends Result { - const factory Success(final T value) = _$SuccessImpl; - const Success._() : super._(); - - T get value; - @JsonKey(ignore: true) - _$$SuccessImplCopyWith> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FailureImplCopyWith { - factory _$$FailureImplCopyWith( - _$FailureImpl value, $Res Function(_$FailureImpl) then) = - __$$FailureImplCopyWithImpl; - @useResult - $Res call({R error}); -} - -/// @nodoc -class __$$FailureImplCopyWithImpl - extends _$ResultCopyWithImpl> - implements _$$FailureImplCopyWith { - __$$FailureImplCopyWithImpl( - _$FailureImpl _value, $Res Function(_$FailureImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? error = freezed, - }) { - return _then(_$FailureImpl( - freezed == error - ? _value.error - : error // ignore: cast_nullable_to_non_nullable - as R, - )); - } -} - -/// @nodoc - -class _$FailureImpl extends Failure { - const _$FailureImpl(this.error) : super._(); - - @override - final R error; - - @override - String toString() { - return 'Result<$T, $R>.failure(error: $error)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FailureImpl && - const DeepCollectionEquality().equals(other.error, error)); - } - - @override - int get hashCode => - Object.hash(runtimeType, const DeepCollectionEquality().hash(error)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FailureImplCopyWith> get copyWith => - __$$FailureImplCopyWithImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(T value) success, - required TResult Function(R error) failure, - }) { - return failure(error); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(T value)? success, - TResult? Function(R error)? failure, - }) { - return failure?.call(error); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(T value)? success, - TResult Function(R error)? failure, - required TResult orElse(), - }) { - if (failure != null) { - return failure(error); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Success value) success, - required TResult Function(Failure value) failure, - }) { - return failure(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Success value)? success, - TResult? Function(Failure value)? failure, - }) { - return failure?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Success value)? success, - TResult Function(Failure value)? failure, - required TResult orElse(), - }) { - if (failure != null) { - return failure(this); - } - return orElse(); - } -} - -abstract class Failure extends Result { - const factory Failure(final R error) = _$FailureImpl; - const Failure._() : super._(); - - R get error; - @JsonKey(ignore: true) - _$$FailureImplCopyWith> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/core/provider/app_information/app_information.dart b/lib/core/provider/app_information/app_information.dart index 8d2f23785..863199df2 100644 --- a/lib/core/provider/app_information/app_information.dart +++ b/lib/core/provider/app_information/app_information.dart @@ -16,7 +16,7 @@ class AppInformation extends _$AppInformation { Future> load() async { if (state is AsyncLoading) { - return const Result.success(null); + return Result.success(null); } state = const AsyncLoading(); final api = ref.read(eqApiProvider); diff --git a/lib/core/provider/app_information/app_information.g.dart b/lib/core/provider/app_information/app_information.g.dart index ef07eaa5a..084880dca 100644 --- a/lib/core/provider/app_information/app_information.g.dart +++ b/lib/core/provider/app_information/app_information.g.dart @@ -8,7 +8,7 @@ part of 'app_information.dart'; // RiverpodGenerator // ************************************************************************** -String _$appInformationHash() => r'383dbb9b6ad100095de270c907782e35268a2b87'; +String _$appInformationHash() => r'04a9d9195331a5deeacaea3f34b73eb0fa1c1e22'; /// See also [AppInformation]. @ProviderFor(AppInformation) diff --git a/lib/core/provider/app_information/app_information_model.dart b/lib/core/provider/app_information/app_information_model.dart index 4fa9d859a..d2bfc302b 100644 --- a/lib/core/provider/app_information/app_information_model.dart +++ b/lib/core/provider/app_information/app_information_model.dart @@ -1,6 +1,7 @@ import 'dart:io'; import 'package:eqapi_types/eqapi_types.dart'; +import 'package:flutter/foundation.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:version/version.dart'; @@ -42,7 +43,7 @@ extension AppInformationEx on AppInformation { AppInformationModel toModel({ required Version currentVersion, }) { - if (Platform.isIOS) { + if (!kIsWeb && Platform.isIOS) { final latestVersion = Version.parse(iosLatestVersion); final minimumVersion = iosMinimumVersion == null ? null : Version.parse(iosMinimumVersion!); @@ -57,7 +58,7 @@ extension AppInformationEx on AppInformation { latestVersion > currentVersion, ); } - if (Platform.isAndroid) { + if (!kIsWeb && Platform.isAndroid) { final latestVersion = Version.parse(androidLatestVersion); final minimumVersion = androidMinimumVersion == null ? null diff --git a/lib/core/provider/app_information/app_information_model.freezed.dart b/lib/core/provider/app_information/app_information_model.freezed.dart index 4c3a9dda1..94bf867f4 100644 --- a/lib/core/provider/app_information/app_information_model.freezed.dart +++ b/lib/core/provider/app_information/app_information_model.freezed.dart @@ -172,7 +172,9 @@ class __$$AppInformationModelImplCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$AppInformationModelImpl implements _AppInformationModel { +class _$AppInformationModelImpl + with DiagnosticableTreeMixin + implements _AppInformationModel { const _$AppInformationModelImpl( {@JsonKey(fromJson: versionFromJson, toJson: versionToJson) required this.latestVersion, @@ -204,12 +206,25 @@ class _$AppInformationModelImpl implements _AppInformationModel { final bool hasForceUpdate; @override - String toString() { + String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'AppInformationModel(latestVersion: $latestVersion, minimumVersion: $minimumVersion, downloadUrl: $downloadUrl, forceUpdateMessage: $forceUpdateMessage, hasUpdate: $hasUpdate, hasForceUpdate: $hasForceUpdate)'; } @override - bool operator ==(dynamic other) { + void debugFillProperties(DiagnosticPropertiesBuilder properties) { + super.debugFillProperties(properties); + properties + ..add(DiagnosticsProperty('type', 'AppInformationModel')) + ..add(DiagnosticsProperty('latestVersion', latestVersion)) + ..add(DiagnosticsProperty('minimumVersion', minimumVersion)) + ..add(DiagnosticsProperty('downloadUrl', downloadUrl)) + ..add(DiagnosticsProperty('forceUpdateMessage', forceUpdateMessage)) + ..add(DiagnosticsProperty('hasUpdate', hasUpdate)) + ..add(DiagnosticsProperty('hasForceUpdate', hasForceUpdate)); + } + + @override + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AppInformationModelImpl && diff --git a/lib/core/provider/application_documents_directory.dart b/lib/core/provider/application_documents_directory.dart new file mode 100644 index 000000000..9de81a4e6 --- /dev/null +++ b/lib/core/provider/application_documents_directory.dart @@ -0,0 +1,9 @@ +import 'dart:io'; + +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'application_documents_directory.g.dart'; + +@Riverpod(keepAlive: true) +Directory applicationDocumentsDirectory(ApplicationDocumentsDirectoryRef ref) => + throw UnimplementedError(); diff --git a/lib/core/provider/topology_map/data/topology_map_data_source.g.dart b/lib/core/provider/application_documents_directory.g.dart similarity index 52% rename from lib/core/provider/topology_map/data/topology_map_data_source.g.dart rename to lib/core/provider/application_documents_directory.g.dart index f0ac2cec0..96e8fb2ce 100644 --- a/lib/core/provider/topology_map/data/topology_map_data_source.g.dart +++ b/lib/core/provider/application_documents_directory.g.dart @@ -2,28 +2,27 @@ // ignore_for_file: type=lint, duplicate_ignore -part of 'topology_map_data_source.dart'; +part of 'application_documents_directory.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** -String _$topologyMapsDataSourceHash() => - r'a407b5fd016e5964fa79a2804fd1a0cc37c176b4'; +String _$applicationDocumentsDirectoryHash() => + r'247d3d84b108284e9db0472ee403ae00352882a9'; -/// See also [topologyMapsDataSource]. -@ProviderFor(topologyMapsDataSource) -final topologyMapsDataSourceProvider = - Provider.internal( - topologyMapsDataSource, - name: r'topologyMapsDataSourceProvider', +/// See also [applicationDocumentsDirectory]. +@ProviderFor(applicationDocumentsDirectory) +final applicationDocumentsDirectoryProvider = Provider.internal( + applicationDocumentsDirectory, + name: r'applicationDocumentsDirectoryProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null - : _$topologyMapsDataSourceHash, + : _$applicationDocumentsDirectoryHash, dependencies: null, allTransitiveDependencies: null, ); -typedef TopologyMapsDataSourceRef = ProviderRef; +typedef ApplicationDocumentsDirectoryRef = ProviderRef; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/provider/capture/intensity_icon_render.dart b/lib/core/provider/capture/intensity_icon_render.dart new file mode 100644 index 000000000..e6d2c6c79 --- /dev/null +++ b/lib/core/provider/capture/intensity_icon_render.dart @@ -0,0 +1,52 @@ +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:extensions/extensions.dart'; +import 'package:flutter/services.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'intensity_icon_render.g.dart'; + +@Riverpod(keepAlive: true) +class IntensityIconRender extends _$IntensityIconRender { + void onRendered(Uint8List data, JmaIntensity intensity) { + state = {...state, intensity: data}; + } + + Uint8List? get(JmaIntensity intensity) => state.getOrNull(intensity); + + @override + Map build() => {}; +} + +@Riverpod(keepAlive: true) +class IntensityIconFillRender extends _$IntensityIconFillRender { + void onRendered(Uint8List data, JmaIntensity intensity) { + state = {...state, intensity: data}; + } + + Uint8List? get(JmaIntensity intensity) => state.getOrNull(intensity); + + @override + Map build() => {}; +} + +@Riverpod(keepAlive: true) +class HypocenterIconRender extends _$HypocenterIconRender { + @override + Uint8List? build() => null; + + // ignore: use_setters_to_change_properties + void onRendered(Uint8List data) => state = data; +} + +@Riverpod(keepAlive: true) +class HypocenterLowPreciseIconRender extends _$HypocenterLowPreciseIconRender { + @override + Uint8List? build() => null; + + // ignore: use_setters_to_change_properties + void onRendered(Uint8List data) => state = data; +} + +extension IntensityIconRenderEx on Map { + bool isAllRendered() => length == JmaIntensity.values.length; +} diff --git a/lib/core/provider/capture/intensity_icon_render.g.dart b/lib/core/provider/capture/intensity_icon_render.g.dart new file mode 100644 index 000000000..0849e99a5 --- /dev/null +++ b/lib/core/provider/capture/intensity_icon_render.g.dart @@ -0,0 +1,80 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'intensity_icon_render.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$intensityIconRenderHash() => + r'166c11d54456f44a4543d1319dac89b3a9857ac7'; + +/// See also [IntensityIconRender]. +@ProviderFor(IntensityIconRender) +final intensityIconRenderProvider = NotifierProvider>.internal( + IntensityIconRender.new, + name: r'intensityIconRenderProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$intensityIconRenderHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$IntensityIconRender = Notifier>; +String _$intensityIconFillRenderHash() => + r'ffc902ad3f54b8cfcdd588157c47876d0f041dcb'; + +/// See also [IntensityIconFillRender]. +@ProviderFor(IntensityIconFillRender) +final intensityIconFillRenderProvider = NotifierProvider< + IntensityIconFillRender, Map>.internal( + IntensityIconFillRender.new, + name: r'intensityIconFillRenderProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$intensityIconFillRenderHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$IntensityIconFillRender = Notifier>; +String _$hypocenterIconRenderHash() => + r'76f8f7104e9c1218646b56290778b15bed6973c0'; + +/// See also [HypocenterIconRender]. +@ProviderFor(HypocenterIconRender) +final hypocenterIconRenderProvider = + NotifierProvider.internal( + HypocenterIconRender.new, + name: r'hypocenterIconRenderProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$hypocenterIconRenderHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$HypocenterIconRender = Notifier; +String _$hypocenterLowPreciseIconRenderHash() => + r'bcac14276f8cab043ecf7a29f78652b6be4140e8'; + +/// See also [HypocenterLowPreciseIconRender]. +@ProviderFor(HypocenterLowPreciseIconRender) +final hypocenterLowPreciseIconRenderProvider = + NotifierProvider.internal( + HypocenterLowPreciseIconRender.new, + name: r'hypocenterLowPreciseIconRenderProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$hypocenterLowPreciseIconRenderHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$HypocenterLowPreciseIconRender = Notifier; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/provider/config/crashlytics/crashlytics_setting_provider.dart b/lib/core/provider/config/crashlytics/crashlytics_setting_provider.dart index 4be538876..afb19a333 100644 --- a/lib/core/provider/config/crashlytics/crashlytics_setting_provider.dart +++ b/lib/core/provider/config/crashlytics/crashlytics_setting_provider.dart @@ -11,18 +11,15 @@ part 'crashlytics_setting_provider.g.dart'; class CrashlyticsSetting extends _$CrashlyticsSetting { @override CrashlyticsSettingModel build() { - _prefs = ref.watch(sharedPreferencesProvider); ref.listenSelf((_, next) => _save()); return const CrashlyticsSettingModel(); } - late final SharedPreferences _prefs; - static const String _key = 'crashlytics_setting'; - Future _save() async { - await _prefs.setString(_key, jsonEncode(state.toJson())); - } + Future _save() async => ref + .read(sharedPreferencesProvider) + .setString(_key, jsonEncode(state.toJson())); void setEnabled({required bool isEnabled}) { state = state.copyWith(isEnabled: isEnabled); diff --git a/lib/core/provider/config/crashlytics/crashlytics_setting_provider.g.dart b/lib/core/provider/config/crashlytics/crashlytics_setting_provider.g.dart index f651002ad..32524c760 100644 --- a/lib/core/provider/config/crashlytics/crashlytics_setting_provider.g.dart +++ b/lib/core/provider/config/crashlytics/crashlytics_setting_provider.g.dart @@ -9,7 +9,7 @@ part of 'crashlytics_setting_provider.dart'; // ************************************************************************** String _$crashlyticsSettingHash() => - r'3c9d23bc4227245d7091d8d11b45f91fe5501d6e'; + r'000581239d3ee84dd95a09f814f6d5b8f31fa845'; /// See also [CrashlyticsSetting]. @ProviderFor(CrashlyticsSetting) diff --git a/lib/core/provider/config/crashlytics/model/crashlytics_setting_model.freezed.dart b/lib/core/provider/config/crashlytics/model/crashlytics_setting_model.freezed.dart index 2c933ebf9..7e3013044 100644 --- a/lib/core/provider/config/crashlytics/model/crashlytics_setting_model.freezed.dart +++ b/lib/core/provider/config/crashlytics/model/crashlytics_setting_model.freezed.dart @@ -117,7 +117,7 @@ class _$CrashlyticsSettingModelImpl implements _CrashlyticsSettingModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CrashlyticsSettingModelImpl && diff --git a/lib/core/provider/config/earthquake_history/earthquake_history_config_provider.dart b/lib/core/provider/config/earthquake_history/earthquake_history_config_provider.dart new file mode 100644 index 000000000..30f8d820f --- /dev/null +++ b/lib/core/provider/config/earthquake_history/earthquake_history_config_provider.dart @@ -0,0 +1,54 @@ +import 'dart:convert'; + +import 'package:eqmonitor/core/provider/config/earthquake_history/model/earthquake_history_config_model.dart'; +import 'package:eqmonitor/core/provider/shared_preferences.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'earthquake_history_config_provider.g.dart'; + +@riverpod +class EarthquakeHistoryConfig extends _$EarthquakeHistoryConfig { + @override + EarthquakeHistoryConfigModel build() { + final result = _load(); + if (result != null) { + return result; + } + return const EarthquakeHistoryConfigModel( + list: EarthquakeHistoryListConfig(), + detail: EarthquakeHistoryDetailConfig(), + ); + } + + static const _key = 'earthquake_history_config'; + + Future _save() async => ref.read(sharedPreferencesProvider).setString( + _key, + jsonEncode(state), + ); + + EarthquakeHistoryConfigModel? _load() { + final jsonString = ref.read(sharedPreferencesProvider).getString(_key); + if (jsonString == null) { + return null; + } + try { + return EarthquakeHistoryConfigModel.fromJson( + jsonDecode(jsonString) as Map, + ); + // ignore: avoid_catches_without_on_clauses + } catch (e) { + return null; + } + } + + void updateListConfig(EarthquakeHistoryListConfig config) { + state = state.copyWith(list: config); + _save(); + } + + void updateDetailConfig(EarthquakeHistoryDetailConfig config) { + state = state.copyWith(detail: config); + _save(); + } +} diff --git a/lib/core/provider/config/earthquake_history/earthquake_history_config_provider.g.dart b/lib/core/provider/config/earthquake_history/earthquake_history_config_provider.g.dart new file mode 100644 index 000000000..bbbfd8ed6 --- /dev/null +++ b/lib/core/provider/config/earthquake_history/earthquake_history_config_provider.g.dart @@ -0,0 +1,30 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'earthquake_history_config_provider.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$earthquakeHistoryConfigHash() => + r'b1fdfbaa45d3af3f74336154f5d1f905bd84e51c'; + +/// See also [EarthquakeHistoryConfig]. +@ProviderFor(EarthquakeHistoryConfig) +final earthquakeHistoryConfigProvider = AutoDisposeNotifierProvider< + EarthquakeHistoryConfig, EarthquakeHistoryConfigModel>.internal( + EarthquakeHistoryConfig.new, + name: r'earthquakeHistoryConfigProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$earthquakeHistoryConfigHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$EarthquakeHistoryConfig + = AutoDisposeNotifier; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.dart b/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.dart new file mode 100644 index 000000000..b48a2db93 --- /dev/null +++ b/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.dart @@ -0,0 +1,57 @@ +import 'package:freezed_annotation/freezed_annotation.dart'; + +part 'earthquake_history_config_model.freezed.dart'; +part 'earthquake_history_config_model.g.dart'; + +@freezed +class EarthquakeHistoryConfigModel with _$EarthquakeHistoryConfigModel { + const factory EarthquakeHistoryConfigModel({ + required EarthquakeHistoryListConfig list, + required EarthquakeHistoryDetailConfig detail, + }) = _EarthquakeHistoryConfigModel; + + factory EarthquakeHistoryConfigModel.fromJson(Map json) => + _$EarthquakeHistoryConfigModelFromJson(json); +} + +@freezed +class EarthquakeHistoryListConfig with _$EarthquakeHistoryListConfig { + const factory EarthquakeHistoryListConfig({ + /// 背景塗りつぶしの有無 + @Default(true) bool isFillBackground, + + /// 訓練・試験用の電文を含めるかどうか + @Default(false) bool includeTestTelegrams, + }) = _EarthquakeHistoryListConfig; + + factory EarthquakeHistoryListConfig.fromJson(Map json) => + _$EarthquakeHistoryListConfigFromJson(json); +} + +@freezed +class EarthquakeHistoryDetailConfig with _$EarthquakeHistoryDetailConfig { + const factory EarthquakeHistoryDetailConfig({ + /// 震度の表示方法 + @Default(IntensityDisplayMode.fillCity) + IntensityDisplayMode intensityDisplayMode, + }) = _EarthquakeHistoryDetailConfig; + + factory EarthquakeHistoryDetailConfig.fromJson(Map json) => + _$EarthquakeHistoryDetailConfigFromJson(json); +} + +/// 地震履歴詳細画面における震度の表示方法 +enum IntensityDisplayMode { + /// 震度観測点のアイコンを表示 + icon, + + /// 市区町村レベルの震度塗りつぶし + fillCity, + + /// 都道府県レベルの震度塗りつぶし + fillPrefecture, + + /// 震度観測点のアイコンと都道府県レベルの震度塗りつぶし + iconAndFillPrefecture, + ; +} diff --git a/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.freezed.dart b/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.freezed.dart new file mode 100644 index 000000000..302325f3e --- /dev/null +++ b/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.freezed.dart @@ -0,0 +1,551 @@ +// coverage:ignore-file +// GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint +// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark + +part of 'earthquake_history_config_model.dart'; + +// ************************************************************************** +// FreezedGenerator +// ************************************************************************** + +T _$identity(T value) => value; + +final _privateConstructorUsedError = UnsupportedError( + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + +EarthquakeHistoryConfigModel _$EarthquakeHistoryConfigModelFromJson( + Map json) { + return _EarthquakeHistoryConfigModel.fromJson(json); +} + +/// @nodoc +mixin _$EarthquakeHistoryConfigModel { + EarthquakeHistoryListConfig get list => throw _privateConstructorUsedError; + EarthquakeHistoryDetailConfig get detail => + throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $EarthquakeHistoryConfigModelCopyWith + get copyWith => throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $EarthquakeHistoryConfigModelCopyWith<$Res> { + factory $EarthquakeHistoryConfigModelCopyWith( + EarthquakeHistoryConfigModel value, + $Res Function(EarthquakeHistoryConfigModel) then) = + _$EarthquakeHistoryConfigModelCopyWithImpl<$Res, + EarthquakeHistoryConfigModel>; + @useResult + $Res call( + {EarthquakeHistoryListConfig list, EarthquakeHistoryDetailConfig detail}); + + $EarthquakeHistoryListConfigCopyWith<$Res> get list; + $EarthquakeHistoryDetailConfigCopyWith<$Res> get detail; +} + +/// @nodoc +class _$EarthquakeHistoryConfigModelCopyWithImpl<$Res, + $Val extends EarthquakeHistoryConfigModel> + implements $EarthquakeHistoryConfigModelCopyWith<$Res> { + _$EarthquakeHistoryConfigModelCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? list = null, + Object? detail = null, + }) { + return _then(_value.copyWith( + list: null == list + ? _value.list + : list // ignore: cast_nullable_to_non_nullable + as EarthquakeHistoryListConfig, + detail: null == detail + ? _value.detail + : detail // ignore: cast_nullable_to_non_nullable + as EarthquakeHistoryDetailConfig, + ) as $Val); + } + + @override + @pragma('vm:prefer-inline') + $EarthquakeHistoryListConfigCopyWith<$Res> get list { + return $EarthquakeHistoryListConfigCopyWith<$Res>(_value.list, (value) { + return _then(_value.copyWith(list: value) as $Val); + }); + } + + @override + @pragma('vm:prefer-inline') + $EarthquakeHistoryDetailConfigCopyWith<$Res> get detail { + return $EarthquakeHistoryDetailConfigCopyWith<$Res>(_value.detail, (value) { + return _then(_value.copyWith(detail: value) as $Val); + }); + } +} + +/// @nodoc +abstract class _$$EarthquakeHistoryConfigModelImplCopyWith<$Res> + implements $EarthquakeHistoryConfigModelCopyWith<$Res> { + factory _$$EarthquakeHistoryConfigModelImplCopyWith( + _$EarthquakeHistoryConfigModelImpl value, + $Res Function(_$EarthquakeHistoryConfigModelImpl) then) = + __$$EarthquakeHistoryConfigModelImplCopyWithImpl<$Res>; + @override + @useResult + $Res call( + {EarthquakeHistoryListConfig list, EarthquakeHistoryDetailConfig detail}); + + @override + $EarthquakeHistoryListConfigCopyWith<$Res> get list; + @override + $EarthquakeHistoryDetailConfigCopyWith<$Res> get detail; +} + +/// @nodoc +class __$$EarthquakeHistoryConfigModelImplCopyWithImpl<$Res> + extends _$EarthquakeHistoryConfigModelCopyWithImpl<$Res, + _$EarthquakeHistoryConfigModelImpl> + implements _$$EarthquakeHistoryConfigModelImplCopyWith<$Res> { + __$$EarthquakeHistoryConfigModelImplCopyWithImpl( + _$EarthquakeHistoryConfigModelImpl _value, + $Res Function(_$EarthquakeHistoryConfigModelImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? list = null, + Object? detail = null, + }) { + return _then(_$EarthquakeHistoryConfigModelImpl( + list: null == list + ? _value.list + : list // ignore: cast_nullable_to_non_nullable + as EarthquakeHistoryListConfig, + detail: null == detail + ? _value.detail + : detail // ignore: cast_nullable_to_non_nullable + as EarthquakeHistoryDetailConfig, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$EarthquakeHistoryConfigModelImpl + implements _EarthquakeHistoryConfigModel { + const _$EarthquakeHistoryConfigModelImpl( + {required this.list, required this.detail}); + + factory _$EarthquakeHistoryConfigModelImpl.fromJson( + Map json) => + _$$EarthquakeHistoryConfigModelImplFromJson(json); + + @override + final EarthquakeHistoryListConfig list; + @override + final EarthquakeHistoryDetailConfig detail; + + @override + String toString() { + return 'EarthquakeHistoryConfigModel(list: $list, detail: $detail)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$EarthquakeHistoryConfigModelImpl && + (identical(other.list, list) || other.list == list) && + (identical(other.detail, detail) || other.detail == detail)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, list, detail); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$EarthquakeHistoryConfigModelImplCopyWith< + _$EarthquakeHistoryConfigModelImpl> + get copyWith => __$$EarthquakeHistoryConfigModelImplCopyWithImpl< + _$EarthquakeHistoryConfigModelImpl>(this, _$identity); + + @override + Map toJson() { + return _$$EarthquakeHistoryConfigModelImplToJson( + this, + ); + } +} + +abstract class _EarthquakeHistoryConfigModel + implements EarthquakeHistoryConfigModel { + const factory _EarthquakeHistoryConfigModel( + {required final EarthquakeHistoryListConfig list, + required final EarthquakeHistoryDetailConfig detail}) = + _$EarthquakeHistoryConfigModelImpl; + + factory _EarthquakeHistoryConfigModel.fromJson(Map json) = + _$EarthquakeHistoryConfigModelImpl.fromJson; + + @override + EarthquakeHistoryListConfig get list; + @override + EarthquakeHistoryDetailConfig get detail; + @override + @JsonKey(ignore: true) + _$$EarthquakeHistoryConfigModelImplCopyWith< + _$EarthquakeHistoryConfigModelImpl> + get copyWith => throw _privateConstructorUsedError; +} + +EarthquakeHistoryListConfig _$EarthquakeHistoryListConfigFromJson( + Map json) { + return _EarthquakeHistoryListConfig.fromJson(json); +} + +/// @nodoc +mixin _$EarthquakeHistoryListConfig { + /// 背景塗りつぶしの有無 + bool get isFillBackground => throw _privateConstructorUsedError; + + /// 訓練・試験用の電文を含めるかどうか + bool get includeTestTelegrams => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $EarthquakeHistoryListConfigCopyWith + get copyWith => throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $EarthquakeHistoryListConfigCopyWith<$Res> { + factory $EarthquakeHistoryListConfigCopyWith( + EarthquakeHistoryListConfig value, + $Res Function(EarthquakeHistoryListConfig) then) = + _$EarthquakeHistoryListConfigCopyWithImpl<$Res, + EarthquakeHistoryListConfig>; + @useResult + $Res call({bool isFillBackground, bool includeTestTelegrams}); +} + +/// @nodoc +class _$EarthquakeHistoryListConfigCopyWithImpl<$Res, + $Val extends EarthquakeHistoryListConfig> + implements $EarthquakeHistoryListConfigCopyWith<$Res> { + _$EarthquakeHistoryListConfigCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? isFillBackground = null, + Object? includeTestTelegrams = null, + }) { + return _then(_value.copyWith( + isFillBackground: null == isFillBackground + ? _value.isFillBackground + : isFillBackground // ignore: cast_nullable_to_non_nullable + as bool, + includeTestTelegrams: null == includeTestTelegrams + ? _value.includeTestTelegrams + : includeTestTelegrams // ignore: cast_nullable_to_non_nullable + as bool, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$EarthquakeHistoryListConfigImplCopyWith<$Res> + implements $EarthquakeHistoryListConfigCopyWith<$Res> { + factory _$$EarthquakeHistoryListConfigImplCopyWith( + _$EarthquakeHistoryListConfigImpl value, + $Res Function(_$EarthquakeHistoryListConfigImpl) then) = + __$$EarthquakeHistoryListConfigImplCopyWithImpl<$Res>; + @override + @useResult + $Res call({bool isFillBackground, bool includeTestTelegrams}); +} + +/// @nodoc +class __$$EarthquakeHistoryListConfigImplCopyWithImpl<$Res> + extends _$EarthquakeHistoryListConfigCopyWithImpl<$Res, + _$EarthquakeHistoryListConfigImpl> + implements _$$EarthquakeHistoryListConfigImplCopyWith<$Res> { + __$$EarthquakeHistoryListConfigImplCopyWithImpl( + _$EarthquakeHistoryListConfigImpl _value, + $Res Function(_$EarthquakeHistoryListConfigImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? isFillBackground = null, + Object? includeTestTelegrams = null, + }) { + return _then(_$EarthquakeHistoryListConfigImpl( + isFillBackground: null == isFillBackground + ? _value.isFillBackground + : isFillBackground // ignore: cast_nullable_to_non_nullable + as bool, + includeTestTelegrams: null == includeTestTelegrams + ? _value.includeTestTelegrams + : includeTestTelegrams // ignore: cast_nullable_to_non_nullable + as bool, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$EarthquakeHistoryListConfigImpl + implements _EarthquakeHistoryListConfig { + const _$EarthquakeHistoryListConfigImpl( + {this.isFillBackground = true, this.includeTestTelegrams = false}); + + factory _$EarthquakeHistoryListConfigImpl.fromJson( + Map json) => + _$$EarthquakeHistoryListConfigImplFromJson(json); + + /// 背景塗りつぶしの有無 + @override + @JsonKey() + final bool isFillBackground; + + /// 訓練・試験用の電文を含めるかどうか + @override + @JsonKey() + final bool includeTestTelegrams; + + @override + String toString() { + return 'EarthquakeHistoryListConfig(isFillBackground: $isFillBackground, includeTestTelegrams: $includeTestTelegrams)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$EarthquakeHistoryListConfigImpl && + (identical(other.isFillBackground, isFillBackground) || + other.isFillBackground == isFillBackground) && + (identical(other.includeTestTelegrams, includeTestTelegrams) || + other.includeTestTelegrams == includeTestTelegrams)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => + Object.hash(runtimeType, isFillBackground, includeTestTelegrams); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$EarthquakeHistoryListConfigImplCopyWith<_$EarthquakeHistoryListConfigImpl> + get copyWith => __$$EarthquakeHistoryListConfigImplCopyWithImpl< + _$EarthquakeHistoryListConfigImpl>(this, _$identity); + + @override + Map toJson() { + return _$$EarthquakeHistoryListConfigImplToJson( + this, + ); + } +} + +abstract class _EarthquakeHistoryListConfig + implements EarthquakeHistoryListConfig { + const factory _EarthquakeHistoryListConfig( + {final bool isFillBackground, + final bool includeTestTelegrams}) = _$EarthquakeHistoryListConfigImpl; + + factory _EarthquakeHistoryListConfig.fromJson(Map json) = + _$EarthquakeHistoryListConfigImpl.fromJson; + + @override + + /// 背景塗りつぶしの有無 + bool get isFillBackground; + @override + + /// 訓練・試験用の電文を含めるかどうか + bool get includeTestTelegrams; + @override + @JsonKey(ignore: true) + _$$EarthquakeHistoryListConfigImplCopyWith<_$EarthquakeHistoryListConfigImpl> + get copyWith => throw _privateConstructorUsedError; +} + +EarthquakeHistoryDetailConfig _$EarthquakeHistoryDetailConfigFromJson( + Map json) { + return _EarthquakeHistoryDetailConfig.fromJson(json); +} + +/// @nodoc +mixin _$EarthquakeHistoryDetailConfig { + /// 震度の表示方法 + IntensityDisplayMode get intensityDisplayMode => + throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $EarthquakeHistoryDetailConfigCopyWith + get copyWith => throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $EarthquakeHistoryDetailConfigCopyWith<$Res> { + factory $EarthquakeHistoryDetailConfigCopyWith( + EarthquakeHistoryDetailConfig value, + $Res Function(EarthquakeHistoryDetailConfig) then) = + _$EarthquakeHistoryDetailConfigCopyWithImpl<$Res, + EarthquakeHistoryDetailConfig>; + @useResult + $Res call({IntensityDisplayMode intensityDisplayMode}); +} + +/// @nodoc +class _$EarthquakeHistoryDetailConfigCopyWithImpl<$Res, + $Val extends EarthquakeHistoryDetailConfig> + implements $EarthquakeHistoryDetailConfigCopyWith<$Res> { + _$EarthquakeHistoryDetailConfigCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? intensityDisplayMode = null, + }) { + return _then(_value.copyWith( + intensityDisplayMode: null == intensityDisplayMode + ? _value.intensityDisplayMode + : intensityDisplayMode // ignore: cast_nullable_to_non_nullable + as IntensityDisplayMode, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$EarthquakeHistoryDetailConfigImplCopyWith<$Res> + implements $EarthquakeHistoryDetailConfigCopyWith<$Res> { + factory _$$EarthquakeHistoryDetailConfigImplCopyWith( + _$EarthquakeHistoryDetailConfigImpl value, + $Res Function(_$EarthquakeHistoryDetailConfigImpl) then) = + __$$EarthquakeHistoryDetailConfigImplCopyWithImpl<$Res>; + @override + @useResult + $Res call({IntensityDisplayMode intensityDisplayMode}); +} + +/// @nodoc +class __$$EarthquakeHistoryDetailConfigImplCopyWithImpl<$Res> + extends _$EarthquakeHistoryDetailConfigCopyWithImpl<$Res, + _$EarthquakeHistoryDetailConfigImpl> + implements _$$EarthquakeHistoryDetailConfigImplCopyWith<$Res> { + __$$EarthquakeHistoryDetailConfigImplCopyWithImpl( + _$EarthquakeHistoryDetailConfigImpl _value, + $Res Function(_$EarthquakeHistoryDetailConfigImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? intensityDisplayMode = null, + }) { + return _then(_$EarthquakeHistoryDetailConfigImpl( + intensityDisplayMode: null == intensityDisplayMode + ? _value.intensityDisplayMode + : intensityDisplayMode // ignore: cast_nullable_to_non_nullable + as IntensityDisplayMode, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$EarthquakeHistoryDetailConfigImpl + implements _EarthquakeHistoryDetailConfig { + const _$EarthquakeHistoryDetailConfigImpl( + {this.intensityDisplayMode = IntensityDisplayMode.fillCity}); + + factory _$EarthquakeHistoryDetailConfigImpl.fromJson( + Map json) => + _$$EarthquakeHistoryDetailConfigImplFromJson(json); + + /// 震度の表示方法 + @override + @JsonKey() + final IntensityDisplayMode intensityDisplayMode; + + @override + String toString() { + return 'EarthquakeHistoryDetailConfig(intensityDisplayMode: $intensityDisplayMode)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$EarthquakeHistoryDetailConfigImpl && + (identical(other.intensityDisplayMode, intensityDisplayMode) || + other.intensityDisplayMode == intensityDisplayMode)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, intensityDisplayMode); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$EarthquakeHistoryDetailConfigImplCopyWith< + _$EarthquakeHistoryDetailConfigImpl> + get copyWith => __$$EarthquakeHistoryDetailConfigImplCopyWithImpl< + _$EarthquakeHistoryDetailConfigImpl>(this, _$identity); + + @override + Map toJson() { + return _$$EarthquakeHistoryDetailConfigImplToJson( + this, + ); + } +} + +abstract class _EarthquakeHistoryDetailConfig + implements EarthquakeHistoryDetailConfig { + const factory _EarthquakeHistoryDetailConfig( + {final IntensityDisplayMode intensityDisplayMode}) = + _$EarthquakeHistoryDetailConfigImpl; + + factory _EarthquakeHistoryDetailConfig.fromJson(Map json) = + _$EarthquakeHistoryDetailConfigImpl.fromJson; + + @override + + /// 震度の表示方法 + IntensityDisplayMode get intensityDisplayMode; + @override + @JsonKey(ignore: true) + _$$EarthquakeHistoryDetailConfigImplCopyWith< + _$EarthquakeHistoryDetailConfigImpl> + get copyWith => throw _privateConstructorUsedError; +} diff --git a/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.g.dart b/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.g.dart new file mode 100644 index 000000000..6b6863a17 --- /dev/null +++ b/lib/core/provider/config/earthquake_history/model/earthquake_history_config_model.g.dart @@ -0,0 +1,90 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'earthquake_history_config_model.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +_$EarthquakeHistoryConfigModelImpl _$$EarthquakeHistoryConfigModelImplFromJson( + Map json) => + $checkedCreate( + r'_$EarthquakeHistoryConfigModelImpl', + json, + ($checkedConvert) { + final val = _$EarthquakeHistoryConfigModelImpl( + list: $checkedConvert( + 'list', + (v) => EarthquakeHistoryListConfig.fromJson( + v as Map)), + detail: $checkedConvert( + 'detail', + (v) => EarthquakeHistoryDetailConfig.fromJson( + v as Map)), + ); + return val; + }, + ); + +Map _$$EarthquakeHistoryConfigModelImplToJson( + _$EarthquakeHistoryConfigModelImpl instance) => + { + 'list': instance.list, + 'detail': instance.detail, + }; + +_$EarthquakeHistoryListConfigImpl _$$EarthquakeHistoryListConfigImplFromJson( + Map json) => + $checkedCreate( + r'_$EarthquakeHistoryListConfigImpl', + json, + ($checkedConvert) { + final val = _$EarthquakeHistoryListConfigImpl( + isFillBackground: + $checkedConvert('isFillBackground', (v) => v as bool? ?? true), + includeTestTelegrams: $checkedConvert( + 'includeTestTelegrams', (v) => v as bool? ?? false), + ); + return val; + }, + ); + +Map _$$EarthquakeHistoryListConfigImplToJson( + _$EarthquakeHistoryListConfigImpl instance) => + { + 'isFillBackground': instance.isFillBackground, + 'includeTestTelegrams': instance.includeTestTelegrams, + }; + +_$EarthquakeHistoryDetailConfigImpl + _$$EarthquakeHistoryDetailConfigImplFromJson(Map json) => + $checkedCreate( + r'_$EarthquakeHistoryDetailConfigImpl', + json, + ($checkedConvert) { + final val = _$EarthquakeHistoryDetailConfigImpl( + intensityDisplayMode: $checkedConvert( + 'intensityDisplayMode', + (v) => + $enumDecodeNullable(_$IntensityDisplayModeEnumMap, v) ?? + IntensityDisplayMode.fillCity), + ); + return val; + }, + ); + +Map _$$EarthquakeHistoryDetailConfigImplToJson( + _$EarthquakeHistoryDetailConfigImpl instance) => + { + 'intensityDisplayMode': + _$IntensityDisplayModeEnumMap[instance.intensityDisplayMode]!, + }; + +const _$IntensityDisplayModeEnumMap = { + IntensityDisplayMode.icon: 'icon', + IntensityDisplayMode.fillCity: 'fillCity', + IntensityDisplayMode.fillPrefecture: 'fillPrefecture', + IntensityDisplayMode.iconAndFillPrefecture: 'iconAndFillPrefecture', +}; diff --git a/lib/core/provider/config/notification/fcm_topic_manager.dart b/lib/core/provider/config/notification/fcm_topic_manager.dart index cbe2027b8..3e9affc77 100644 --- a/lib/core/provider/config/notification/fcm_topic_manager.dart +++ b/lib/core/provider/config/notification/fcm_topic_manager.dart @@ -21,12 +21,24 @@ class FcmTopicManager extends _$FcmTopicManager { /// デフォルトで購読すべきトピックを登録する Future setup() async { + final futures = >[]; final requireTopics = [ FcmBasicTopic(FcmTopics.all), ]; for (final topic in requireTopics) { - await registerToTopic(topic); + futures.add(registerToTopic(topic)); } + final shouldBeUnregisteredTopics = [ + 'earthquake', + 'eew', + 'everyone', + ]; + final messaging = ref.read(firebaseMessagingProvider); + for (final topic in shouldBeUnregisteredTopics) { + // bypass prefs check + futures.add(messaging.unsubscribeFromTopic(topic)); + } + await futures.wait; } Future _save() async { @@ -37,13 +49,13 @@ class FcmTopicManager extends _$FcmTopicManager { Future> registerToTopic(FcmTopic topic) async { // 既に登録済みの場合は何もしない if (state.contains(topic.topic)) { - return const Result.success(null); + return Result.success(null); } final messaging = ref.read(firebaseMessagingProvider); try { await messaging.subscribeToTopic(topic.topic); state = [...state, topic.topic]; - return const Result.success(null); + return Result.success(null); } on Exception catch (error, stackTrace) { await ref.read(firebaseCrashlyticsProvider).recordError( error, @@ -56,13 +68,13 @@ class FcmTopicManager extends _$FcmTopicManager { Future> unregisterFromTopic(FcmTopic topic) async { // 登録されていない場合は何もしない if (!state.contains(topic.topic)) { - return const Result.success(null); + return Result.success(null); } final messaging = ref.read(firebaseMessagingProvider); try { await messaging.unsubscribeFromTopic(topic.topic); state = [...state]..remove(topic.topic); - return const Result.success(null); + return Result.success(null); } on Exception catch (error, stackTrace) { await ref.read(firebaseCrashlyticsProvider).recordError( error, @@ -104,8 +116,12 @@ class FcmEarthquakeTopic implements FcmTopic { @override // ignore: lines_longer_than_80_chars - String get topic => - 'earthquake_${intensity?.type.replaceAll("-", "lower").replaceAll("+", "upper") ?? "all"}'; + String get topic { + final suffix = + intensity?.type.replaceAll('-', 'lower').replaceAll('+', 'upper') ?? + 'all'; + return 'earthquake_$suffix'; + } } enum FcmTopics { diff --git a/lib/core/provider/config/notification/fcm_topic_manager.g.dart b/lib/core/provider/config/notification/fcm_topic_manager.g.dart index 7bdc578a8..8d89bff5b 100644 --- a/lib/core/provider/config/notification/fcm_topic_manager.g.dart +++ b/lib/core/provider/config/notification/fcm_topic_manager.g.dart @@ -8,7 +8,7 @@ part of 'fcm_topic_manager.dart'; // RiverpodGenerator // ************************************************************************** -String _$fcmTopicManagerHash() => r'd4f5e25b438dbd687c1bfe1bbb46b8f8092d3177'; +String _$fcmTopicManagerHash() => r'63bc07ff62d302893f014d5fe03fcc64dfa194be'; /// See also [FcmTopicManager]. @ProviderFor(FcmTopicManager) diff --git a/lib/core/provider/config/permission/model/permission_state.freezed.dart b/lib/core/provider/config/permission/model/permission_state.freezed.dart index 12b84ab82..9c3399e65 100644 --- a/lib/core/provider/config/permission/model/permission_state.freezed.dart +++ b/lib/core/provider/config/permission/model/permission_state.freezed.dart @@ -128,7 +128,7 @@ class _$PermissionStateModelImpl implements _PermissionStateModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PermissionStateModelImpl && diff --git a/lib/core/provider/config/theme/intensity_color/intensity_color_provider.dart b/lib/core/provider/config/theme/intensity_color/intensity_color_provider.dart index 2047dae84..744c5c768 100644 --- a/lib/core/provider/config/theme/intensity_color/intensity_color_provider.dart +++ b/lib/core/provider/config/theme/intensity_color/intensity_color_provider.dart @@ -5,7 +5,6 @@ import 'dart:convert'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; import 'package:eqmonitor/core/provider/shared_preferences.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:shared_preferences/shared_preferences.dart'; part 'intensity_color_provider.g.dart'; @@ -13,22 +12,26 @@ part 'intensity_color_provider.g.dart'; class IntensityColor extends _$IntensityColor { @override IntensityColorModel build() { - _prefs = ref.watch(sharedPreferencesProvider); + final result = load(); + if (result != null) { + return result; + } return IntensityColorModel.eqmonitor(); } static const _key = 'intensity_color'; - late final SharedPreferences _prefs; // ignore: use_setters_to_change_properties void update(IntensityColorModel model) { state = model; + ref.read(sharedPreferencesProvider).setString( + _key, + jsonEncode(model.toJson()), + ); } - - IntensityColorModel? load() { - final value = _prefs.getString(_key); + final value = ref.read(sharedPreferencesProvider).getString(_key); if (value == null) { return null; } diff --git a/lib/core/provider/config/theme/intensity_color/intensity_color_provider.g.dart b/lib/core/provider/config/theme/intensity_color/intensity_color_provider.g.dart index a9c1df2e4..64231c59a 100644 --- a/lib/core/provider/config/theme/intensity_color/intensity_color_provider.g.dart +++ b/lib/core/provider/config/theme/intensity_color/intensity_color_provider.g.dart @@ -8,7 +8,7 @@ part of 'intensity_color_provider.dart'; // RiverpodGenerator // ************************************************************************** -String _$intensityColorHash() => r'fd22f8f71ad39a3d87dd685e01b4cdbaa87afbee'; +String _$intensityColorHash() => r'7892bed4f63a288d70217c9f2795257f4751bc5c'; /// See also [IntensityColor]. @ProviderFor(IntensityColor) diff --git a/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.dart b/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.dart index 87dc9e4ee..19cf9938b 100644 --- a/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.dart +++ b/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.dart @@ -205,6 +205,17 @@ extension IntensityColorModelExt on IntensityColorModel { } } + TextColorModel fromJmaLgIntensity( + JmaLgIntensity intensity, + ) => + switch (intensity) { + JmaLgIntensity.zero => zero, + JmaLgIntensity.one => three, + JmaLgIntensity.two => four, + JmaLgIntensity.three => fiveLower, + JmaLgIntensity.four => seven, + }; + TextColorModel fromJmaForecastIntensity( JmaForecastIntensity intensity, ) { @@ -233,6 +244,18 @@ extension IntensityColorModelExt on IntensityColorModel { return unknown; } } + + TextColorModel fromJmaForecastLgIntensity( + JmaForecastLgIntensity intensity, + ) => + switch (intensity) { + JmaForecastLgIntensity.zero => zero, + JmaForecastLgIntensity.one => three, + JmaForecastLgIntensity.two => four, + JmaForecastLgIntensity.three => fiveLower, + JmaForecastLgIntensity.four => seven, + JmaForecastLgIntensity.unknown => unknown, + }; } Color colorFromJson(String color) => Color(int.parse(color, radix: 16)); diff --git a/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.freezed.dart b/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.freezed.dart index 039a7fe74..3f5431be5 100644 --- a/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.freezed.dart +++ b/lib/core/provider/config/theme/intensity_color/model/intensity_color_model.freezed.dart @@ -397,7 +397,7 @@ class _$IntensityColorModelImpl implements _IntensityColorModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$IntensityColorModelImpl && @@ -605,7 +605,7 @@ class _$TextColorModelImpl implements _TextColorModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TextColorModelImpl && diff --git a/lib/core/provider/custom_provider_observer.dart b/lib/core/provider/custom_provider_observer.dart new file mode 100644 index 000000000..bfae277a5 --- /dev/null +++ b/lib/core/provider/custom_provider_observer.dart @@ -0,0 +1,82 @@ +import 'dart:developer'; + +import 'package:hooks_riverpod/hooks_riverpod.dart'; +import 'package:talker_flutter/talker_flutter.dart'; + +class CustomProviderObserver extends ProviderObserver { + CustomProviderObserver(this.talker); + + final Talker talker; + + @override + void didAddProvider( + ProviderBase provider, + Object? value, + ProviderContainer container, + ) => + switch (provider.name) { + _ when value.toString().length > 1000 => log( + '${provider.name} (${provider.runtimeType}) ' + '${value?.toString().length} ', + name: 'didAddProvider', + ), + _ => log( + '${provider.name} ($provider)', + name: 'didAddProvider', + ), + }; + + @override + void didDisposeProvider( + ProviderBase provider, + ProviderContainer container, + ) => + switch (provider.name) { + 'timeTickerProvider' || 'eewAliveTelegramProvider' => null, + _ => log( + '${provider.name}', + name: 'didDisposeProvider', + ), + }; + + @override + void didUpdateProvider( + ProviderBase provider, + Object? previousValue, + Object? newValue, + ProviderContainer container, + ) => + switch (provider.name) { + 'mapViewModelProvider' || + 'kmoniViewModelProvider' || + 'timeTickerProvider' => + null, + _ + when newValue.toString().length + previousValue.toString().length > + 300 => + log( + '${provider.name} (${previousValue.runtimeType} ' + '-> ${newValue.runtimeType})', + name: 'didUpdateProvider', + ), + _ => log( + '${provider.name} ($previousValue -> $newValue)', + name: 'didUpdateProvider', + ), + }; + + @override + void providerDidFail( + ProviderBase provider, + Object error, + StackTrace stackTrace, + ProviderContainer container, + ) { + talker.handle(error, stackTrace, 'providerDidFail: ${provider.name}'); + log( + '${provider.name} $error', + name: 'providerDidFail', + error: error, + ); + } +} diff --git a/lib/core/provider/dio_provider.dart b/lib/core/provider/dio_provider.dart index 56ea9fbcf..c94dea8fc 100644 --- a/lib/core/provider/dio_provider.dart +++ b/lib/core/provider/dio_provider.dart @@ -15,8 +15,9 @@ Dio dio(DioRef ref) { final dio = Dio( BaseOptions( headers: { - 'user-agent': 'eqmonitor-${Platform.version}', - 'x-operation-system-version': Platform.operatingSystemVersion, + 'user-agent': 'eqmonitor-${kIsWeb ? "web" : Platform.version}', + 'x-operation-system-version': + kIsWeb ? 'web' : Platform.operatingSystemVersion, if (authorization != null) 'authorization': authorization, }, baseUrl: ref.watch(telegramUrlProvider).restApiUrl, diff --git a/lib/core/provider/dio_provider.g.dart b/lib/core/provider/dio_provider.g.dart index 4f54da054..885e9cd63 100644 --- a/lib/core/provider/dio_provider.g.dart +++ b/lib/core/provider/dio_provider.g.dart @@ -8,7 +8,7 @@ part of 'dio_provider.dart'; // RiverpodGenerator // ************************************************************************** -String _$dioHash() => r'8b0f5ed4db7ba97f9812c3e4be46d3fa5fd984ff'; +String _$dioHash() => r'15e9d5052511a66066cd71665e9bbde4a95efcc6'; /// See also [dio]. @ProviderFor(dio) diff --git a/lib/core/provider/fcm_token.dart b/lib/core/provider/fcm_token.dart deleted file mode 100644 index 21d465b60..000000000 --- a/lib/core/provider/fcm_token.dart +++ /dev/null @@ -1,5 +0,0 @@ -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -final fcmTokenProvider = Provider( - (ref) => 'FCM Token is not provided', -); diff --git a/lib/core/provider/jma_parameter/jma_parameter.dart b/lib/core/provider/jma_parameter/jma_parameter.dart new file mode 100644 index 000000000..a60f0a44b --- /dev/null +++ b/lib/core/provider/jma_parameter/jma_parameter.dart @@ -0,0 +1,127 @@ +import 'dart:developer'; +import 'dart:io'; + +import 'package:eqmonitor/core/api/jma_parameter_api.dart'; +import 'package:eqmonitor/core/foundation/result.dart'; +import 'package:eqmonitor/core/provider/application_documents_directory.dart'; +import 'package:eqmonitor/core/provider/shared_preferences.dart'; +import 'package:jma_parameter_api_client/jma_parameter_api_client.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'jma_parameter.g.dart'; + +@Riverpod(keepAlive: true) +class JmaParameter extends _$JmaParameter { + @override + Future< + ({ + EarthquakeParameter earthquake, + TsunamiParameter tsunami, + })> build() async { + final results = await ( + getEarthquake(), + getTsunami(), + ).wait; + return ( + earthquake: results.$1, + tsunami: results.$2, + ); + } + + static const _earthquakeKey = 'jma_parameter_earthquake'; + static const _tsunamiKey = 'jma_parameter_tsunami'; + + static const _earthquakeFileName = 'earthquake_param.pb'; + static const _tsunamiFileName = 'tsunami_param.pb'; + + Future getEarthquake() async { + final prefs = ref.watch(sharedPreferencesProvider); + final cachedEtag = prefs.getString(_earthquakeKey); + // check Etag + final currentEtag = await ref + .watch(jmaParameterApiClientProvider) + .getEarthquakeParameterHead(); + log('cachedEtag: $cachedEtag, currentEtag: $currentEtag'); + if (cachedEtag != null && cachedEtag == currentEtag) { + final localResult = await _getEarthquakeFromLocal(); + if (localResult case Success(:final value)) { + return value; + } + } + final result = + await ref.watch(jmaParameterApiClientProvider).getEarthquakeParameter(); + await _saveEarthquakeToLocal(result.parameter); + final etag = result.etag; + if (etag != null) { + await prefs.setString(_earthquakeKey, etag); + } + return result.parameter; + } + + Future> + _getEarthquakeFromLocal() async { + final dir = ref.read(applicationDocumentsDirectoryProvider); + final file = File('${dir.path}/$_earthquakeFileName'); + if (file.existsSync()) { + final buffer = await file.readAsBytes(); + try { + return Result.success(EarthquakeParameter.fromBuffer(buffer)); + } on Exception catch (e) { + return Result.failure(e); + } + } else { + return Result.failure(Exception('File not found')); + } + } + + Future _saveEarthquakeToLocal(EarthquakeParameter earthquake) async { + final dir = ref.read(applicationDocumentsDirectoryProvider); + final file = File('${dir.path}/$_earthquakeFileName'); + await file.writeAsBytes(earthquake.writeToBuffer()); + } + + Future getTsunami() async { + final prefs = ref.watch(sharedPreferencesProvider); + final cachedEtag = prefs.getString(_tsunamiKey); + // check Etag + final currentEtag = await ref + .watch(jmaParameterApiClientProvider) + .getTsunamiParameterHeadEtag(); + log('cachedEtag: $cachedEtag, currentEtag: $currentEtag'); + if (cachedEtag != null && cachedEtag == currentEtag) { + final localResult = await _getTsunamiFromLocal(); + if (localResult case Success(:final value)) { + return value; + } + } + final result = + await ref.watch(jmaParameterApiClientProvider).getTsunamiParameter(); + await _saveTsunamiToLocal(result.parameter); + final etag = result.etag; + if (etag != null) { + await prefs.setString(_tsunamiKey, etag); + } + return result.parameter; + } + + Future> _getTsunamiFromLocal() async { + final dir = ref.read(applicationDocumentsDirectoryProvider); + final file = File('${dir.path}/$_tsunamiFileName'); + if (file.existsSync()) { + final buffer = await file.readAsBytes(); + try { + return Result.success(TsunamiParameter.fromBuffer(buffer)); + } on Exception catch (e) { + return Result.failure(e); + } + } else { + return Result.failure(Exception('File not found')); + } + } + + Future _saveTsunamiToLocal(TsunamiParameter tsunami) async { + final dir = ref.read(applicationDocumentsDirectoryProvider); + final file = File('${dir.path}/$_tsunamiFileName'); + await file.writeAsBytes(tsunami.writeToBuffer()); + } +} diff --git a/lib/core/provider/jma_parameter/jma_parameter.g.dart b/lib/core/provider/jma_parameter/jma_parameter.g.dart new file mode 100644 index 000000000..c3b8545b3 --- /dev/null +++ b/lib/core/provider/jma_parameter/jma_parameter.g.dart @@ -0,0 +1,28 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'jma_parameter.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$jmaParameterHash() => r'bad33c0f70ce171674f6cf4a431d2b7027fe3528'; + +/// See also [JmaParameter]. +@ProviderFor(JmaParameter) +final jmaParameterProvider = AsyncNotifierProvider.internal( + JmaParameter.new, + name: r'jmaParameterProvider', + debugGetCreateSourceHash: + const bool.fromEnvironment('dart.vm.product') ? null : _$jmaParameterHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$JmaParameter = AsyncNotifier< + ({EarthquakeParameter earthquake, TsunamiParameter tsunami})>; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/provider/map/jma_map_provider.dart b/lib/core/provider/map/jma_map_provider.dart new file mode 100644 index 000000000..2030aead1 --- /dev/null +++ b/lib/core/provider/map/jma_map_provider.dart @@ -0,0 +1,40 @@ +import 'package:eqmonitor/gen/assets.gen.dart'; +import 'package:flutter/services.dart'; +import 'package:jma_map/jma_map.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'jma_map_provider.g.dart'; + +@Riverpod(keepAlive: true) +Future>> jmaMap( + JmaMapRef ref, +) async { + final bytes = await rootBundle.load(Assets.jmaMap); + final jmaMap = JmaMap.fromBuffer( + bytes.buffer.asUint8List(), + ); + return { + for (final element in jmaMap.data) element.mapType.mapType: element.data, + }; +} + +enum JmaMapType { + areaForecastLocalEew, + areaForecastLocalE, + areaInformationCity, + areaTsunami, + ; +} + +extension JmaMapEx on JmaMap_JmaMapData_JmaMapType { + JmaMapType get mapType => switch (this) { + JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_E => + JmaMapType.areaForecastLocalE, + JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_EEW => + JmaMapType.areaForecastLocalEew, + JmaMap_JmaMapData_JmaMapType.AREA_INFORMATION_CITY => + JmaMapType.areaInformationCity, + JmaMap_JmaMapData_JmaMapType.AREA_TSUNAMI => JmaMapType.areaTsunami, + _ => throw UnimplementedError(), + }; +} diff --git a/lib/core/provider/map/jma_map_provider.g.dart b/lib/core/provider/map/jma_map_provider.g.dart new file mode 100644 index 000000000..51e19711f --- /dev/null +++ b/lib/core/provider/map/jma_map_provider.g.dart @@ -0,0 +1,28 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'jma_map_provider.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$jmaMapHash() => r'161fcbf22085148d21c9b0e2f5a7a6a4fb034a46'; + +/// See also [jmaMap]. +@ProviderFor(jmaMap) +final jmaMapProvider = FutureProvider< + Map>>.internal( + jmaMap, + name: r'jmaMapProvider', + debugGetCreateSourceHash: + const bool.fromEnvironment('dart.vm.product') ? null : _$jmaMapHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef JmaMapRef = FutureProviderRef< + Map>>; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/component/map/model/map_config.dart b/lib/core/provider/map/map_config.dart similarity index 100% rename from lib/core/component/map/model/map_config.dart rename to lib/core/provider/map/map_config.dart diff --git a/lib/core/component/map/model/map_config.freezed.dart b/lib/core/provider/map/map_config.freezed.dart similarity index 99% rename from lib/core/component/map/model/map_config.freezed.dart rename to lib/core/provider/map/map_config.freezed.dart index a51afcda9..ce3e82be5 100644 --- a/lib/core/component/map/model/map_config.freezed.dart +++ b/lib/core/provider/map/map_config.freezed.dart @@ -152,7 +152,7 @@ class _$MapConfigImpl implements _MapConfig { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$MapConfigImpl && @@ -434,7 +434,7 @@ class _$MapColorSchemeImpl implements _MapColorScheme { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$MapColorSchemeImpl && diff --git a/lib/core/component/map/model/map_config.g.dart b/lib/core/provider/map/map_config.g.dart similarity index 100% rename from lib/core/component/map/model/map_config.g.dart rename to lib/core/provider/map/map_config.g.dart diff --git a/lib/feature/map_libre/provider/map_style.dart b/lib/core/provider/map/map_style.dart similarity index 81% rename from lib/feature/map_libre/provider/map_style.dart rename to lib/core/provider/map/map_style.dart index 0cfa8bb75..48fdff890 100644 --- a/lib/feature/map_libre/provider/map_style.dart +++ b/lib/core/provider/map/map_style.dart @@ -1,7 +1,8 @@ import 'dart:convert'; +import 'dart:developer'; import 'dart:io'; -import 'package:eqmonitor/core/component/map/model/map_config.dart'; +import 'package:eqmonitor/core/provider/map/map_config.dart'; import 'package:maplibre_gl/maplibre_gl.dart'; import 'package:path_provider/path_provider.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; @@ -12,13 +13,16 @@ part 'map_style.g.dart'; MapStyle mapStyle(MapStyleRef ref) => MapStyle(); class MapStyle { - Future _saveStyleJson(Map json) async { + Future _saveStyleJson( + Map json, + String prefix, + ) async { final dir = await getApplicationDocumentsDirectory(); final documentDir = dir.path; final stylesDir = '$documentDir/styles'; await Directory(stylesDir).create(recursive: true); - final styleFile = File('$stylesDir/style.json'); + final styleFile = File('$stylesDir/${prefix}style.json'); await styleFile.writeAsString(jsonEncode(json)); return styleFile.path; } @@ -41,14 +45,14 @@ class MapStyle { 'https://orangemug.github.io/font-glyphs/glyphs/{fontstack}/{range}.pbf', 'layers': [ { - 'id': 'background', + 'id': BaseLayer.background.name, 'type': 'background', 'paint': { 'background-color': colorScheme.backgroundColor.toHexStringRGB(), }, }, { - 'id': 'countries-fill', + 'id': BaseLayer.countriesFill.name, 'source': 'eqmonitor_map', 'source-layer': 'countries', 'type': 'fill', @@ -58,7 +62,7 @@ class MapStyle { }, }, { - 'id': 'countries-line', + 'id': BaseLayer.countriesLines.name, 'source': 'eqmonitor_map', 'source-layer': 'countries', 'type': 'line', @@ -70,7 +74,7 @@ class MapStyle { }, }, { - 'id': 'areaForecastLocalE_fill', + 'id': BaseLayer.areaForecastLocalEFill.name, 'source': 'eqmonitor_map', 'source-layer': 'areaForecastLocalE', 'type': 'fill', @@ -80,7 +84,7 @@ class MapStyle { }, // areaForecastLocalEew_line { - 'id': 'areaForecastLocalEew_line', + 'id': BaseLayer.areaForecastLocalEewLine.name, 'source': 'eqmonitor_map', 'source-layer': 'areaForecastLocalEew', 'type': 'line', @@ -100,7 +104,7 @@ class MapStyle { }, }, { - 'id': 'areaForecastLocalE_line', + 'id': BaseLayer.areaForecastLocalELine.name, 'source': 'eqmonitor_map', 'source-layer': 'areaForecastLocalE', 'type': 'line', @@ -123,7 +127,7 @@ class MapStyle { }, // areaInformationCityQuake { - 'id': 'areaInformationCityQuake_line', + 'id': BaseLayer.areaInformationCityQuakeLine.name, 'source': 'eqmonitor_map', 'source-layer': 'areaInformationCityQuake', 'type': 'line', @@ -144,6 +148,18 @@ class MapStyle { }, ], }; - return _saveStyleJson(json); + log(jsonEncode(json)); + return _saveStyleJson(json, 'maplibre-$isDark'); } } + +enum BaseLayer { + background, + countriesLines, + countriesFill, + areaForecastLocalEFill, + areaForecastLocalEewLine, + areaForecastLocalELine, + areaInformationCityQuakeLine, + ; +} diff --git a/lib/feature/map_libre/provider/map_style.g.dart b/lib/core/provider/map/map_style.g.dart similarity index 100% rename from lib/feature/map_libre/provider/map_style.g.dart rename to lib/core/provider/map/map_style.g.dart diff --git a/lib/core/provider/notification_token.dart b/lib/core/provider/notification_token.dart new file mode 100644 index 000000000..699270a24 --- /dev/null +++ b/lib/core/provider/notification_token.dart @@ -0,0 +1,33 @@ +import 'package:eqmonitor/core/provider/firebase/firebase_messaging.dart'; +import 'package:freezed_annotation/freezed_annotation.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'notification_token.freezed.dart'; +part 'notification_token.g.dart'; + +@riverpod +Future notificationToken( + NotificationTokenRef ref, +) async { + final messaging = ref.watch(firebaseMessagingProvider); + final results = await ( + messaging.getAPNSToken(), + messaging.getToken(), + ).wait; + + return NotificationTokenModel( + apnsToken: results.$1, + fcmToken: results.$2, + ); +} + +@freezed +class NotificationTokenModel with _$NotificationTokenModel { + const factory NotificationTokenModel({ + required String? fcmToken, + required String? apnsToken, + }) = _NotificationTokenModel; + + factory NotificationTokenModel.fromJson(Map json) => + _$NotificationTokenModelFromJson(json); +} diff --git a/lib/core/provider/notification_token.freezed.dart b/lib/core/provider/notification_token.freezed.dart new file mode 100644 index 000000000..4df975936 --- /dev/null +++ b/lib/core/provider/notification_token.freezed.dart @@ -0,0 +1,178 @@ +// coverage:ignore-file +// GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint +// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark + +part of 'notification_token.dart'; + +// ************************************************************************** +// FreezedGenerator +// ************************************************************************** + +T _$identity(T value) => value; + +final _privateConstructorUsedError = UnsupportedError( + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + +NotificationTokenModel _$NotificationTokenModelFromJson( + Map json) { + return _NotificationTokenModel.fromJson(json); +} + +/// @nodoc +mixin _$NotificationTokenModel { + String? get fcmToken => throw _privateConstructorUsedError; + String? get apnsToken => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $NotificationTokenModelCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $NotificationTokenModelCopyWith<$Res> { + factory $NotificationTokenModelCopyWith(NotificationTokenModel value, + $Res Function(NotificationTokenModel) then) = + _$NotificationTokenModelCopyWithImpl<$Res, NotificationTokenModel>; + @useResult + $Res call({String? fcmToken, String? apnsToken}); +} + +/// @nodoc +class _$NotificationTokenModelCopyWithImpl<$Res, + $Val extends NotificationTokenModel> + implements $NotificationTokenModelCopyWith<$Res> { + _$NotificationTokenModelCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? fcmToken = freezed, + Object? apnsToken = freezed, + }) { + return _then(_value.copyWith( + fcmToken: freezed == fcmToken + ? _value.fcmToken + : fcmToken // ignore: cast_nullable_to_non_nullable + as String?, + apnsToken: freezed == apnsToken + ? _value.apnsToken + : apnsToken // ignore: cast_nullable_to_non_nullable + as String?, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$NotificationTokenModelImplCopyWith<$Res> + implements $NotificationTokenModelCopyWith<$Res> { + factory _$$NotificationTokenModelImplCopyWith( + _$NotificationTokenModelImpl value, + $Res Function(_$NotificationTokenModelImpl) then) = + __$$NotificationTokenModelImplCopyWithImpl<$Res>; + @override + @useResult + $Res call({String? fcmToken, String? apnsToken}); +} + +/// @nodoc +class __$$NotificationTokenModelImplCopyWithImpl<$Res> + extends _$NotificationTokenModelCopyWithImpl<$Res, + _$NotificationTokenModelImpl> + implements _$$NotificationTokenModelImplCopyWith<$Res> { + __$$NotificationTokenModelImplCopyWithImpl( + _$NotificationTokenModelImpl _value, + $Res Function(_$NotificationTokenModelImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? fcmToken = freezed, + Object? apnsToken = freezed, + }) { + return _then(_$NotificationTokenModelImpl( + fcmToken: freezed == fcmToken + ? _value.fcmToken + : fcmToken // ignore: cast_nullable_to_non_nullable + as String?, + apnsToken: freezed == apnsToken + ? _value.apnsToken + : apnsToken // ignore: cast_nullable_to_non_nullable + as String?, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$NotificationTokenModelImpl implements _NotificationTokenModel { + const _$NotificationTokenModelImpl( + {required this.fcmToken, required this.apnsToken}); + + factory _$NotificationTokenModelImpl.fromJson(Map json) => + _$$NotificationTokenModelImplFromJson(json); + + @override + final String? fcmToken; + @override + final String? apnsToken; + + @override + String toString() { + return 'NotificationTokenModel(fcmToken: $fcmToken, apnsToken: $apnsToken)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$NotificationTokenModelImpl && + (identical(other.fcmToken, fcmToken) || + other.fcmToken == fcmToken) && + (identical(other.apnsToken, apnsToken) || + other.apnsToken == apnsToken)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, fcmToken, apnsToken); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$NotificationTokenModelImplCopyWith<_$NotificationTokenModelImpl> + get copyWith => __$$NotificationTokenModelImplCopyWithImpl< + _$NotificationTokenModelImpl>(this, _$identity); + + @override + Map toJson() { + return _$$NotificationTokenModelImplToJson( + this, + ); + } +} + +abstract class _NotificationTokenModel implements NotificationTokenModel { + const factory _NotificationTokenModel( + {required final String? fcmToken, + required final String? apnsToken}) = _$NotificationTokenModelImpl; + + factory _NotificationTokenModel.fromJson(Map json) = + _$NotificationTokenModelImpl.fromJson; + + @override + String? get fcmToken; + @override + String? get apnsToken; + @override + @JsonKey(ignore: true) + _$$NotificationTokenModelImplCopyWith<_$NotificationTokenModelImpl> + get copyWith => throw _privateConstructorUsedError; +} diff --git a/lib/core/provider/notification_token.g.dart b/lib/core/provider/notification_token.g.dart new file mode 100644 index 000000000..0686a1915 --- /dev/null +++ b/lib/core/provider/notification_token.g.dart @@ -0,0 +1,54 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'notification_token.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +_$NotificationTokenModelImpl _$$NotificationTokenModelImplFromJson( + Map json) => + $checkedCreate( + r'_$NotificationTokenModelImpl', + json, + ($checkedConvert) { + final val = _$NotificationTokenModelImpl( + fcmToken: $checkedConvert('fcmToken', (v) => v as String?), + apnsToken: $checkedConvert('apnsToken', (v) => v as String?), + ); + return val; + }, + ); + +Map _$$NotificationTokenModelImplToJson( + _$NotificationTokenModelImpl instance) => + { + 'fcmToken': instance.fcmToken, + 'apnsToken': instance.apnsToken, + }; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$notificationTokenHash() => r'5b68207ebeb2f303b2c33482387e16324e80479a'; + +/// See also [notificationToken]. +@ProviderFor(notificationToken) +final notificationTokenProvider = + AutoDisposeFutureProvider.internal( + notificationToken, + name: r'notificationTokenProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$notificationTokenHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef NotificationTokenRef + = AutoDisposeFutureProviderRef; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/provider/notifications_plugin.dart b/lib/core/provider/notifications_plugin.dart deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/core/provider/time_ticker.dart b/lib/core/provider/time_ticker.dart new file mode 100644 index 000000000..fd013a095 --- /dev/null +++ b/lib/core/provider/time_ticker.dart @@ -0,0 +1,7 @@ +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'time_ticker.g.dart'; + +@Riverpod(keepAlive: true) +Stream timeTicker(TimeTickerRef ref) => + Stream.periodic(const Duration(seconds: 1), (_) => DateTime.now()); diff --git a/lib/core/provider/time_ticker.g.dart b/lib/core/provider/time_ticker.g.dart new file mode 100644 index 000000000..8137834e9 --- /dev/null +++ b/lib/core/provider/time_ticker.g.dart @@ -0,0 +1,26 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'time_ticker.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$timeTickerHash() => r'044c3a83021e23d21f28147fc9676a6dd92b87c2'; + +/// See also [timeTicker]. +@ProviderFor(timeTicker) +final timeTickerProvider = StreamProvider.internal( + timeTicker, + name: r'timeTickerProvider', + debugGetCreateSourceHash: + const bool.fromEnvironment('dart.vm.product') ? null : _$timeTickerHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef TimeTickerRef = StreamProviderRef; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/provider/topology_map/data/topology_map_data_source.dart b/lib/core/provider/topology_map/data/topology_map_data_source.dart deleted file mode 100644 index 77a9ec7fe..000000000 --- a/lib/core/provider/topology_map/data/topology_map_data_source.dart +++ /dev/null @@ -1,19 +0,0 @@ -import 'package:eqmonitor/core/provider/topology_map/model/topology_maps.dart'; -import 'package:flutter/foundation.dart'; -import 'package:flutter/services.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -part 'topology_map_data_source.g.dart'; - -@Riverpod(keepAlive: true) -TopologyMapsDataSource topologyMapsDataSource(TopologyMapsDataSourceRef ref) => - TopologyMapsDataSource(); - -class TopologyMapsDataSource { - Future loadTopologyMaps(String path) async => compute( - (data) async { - return TopologyMaps.fromString(data); - }, - await rootBundle.loadString(path), - ); -} diff --git a/lib/core/provider/topology_map/model/topology_maps.dart b/lib/core/provider/topology_map/model/topology_maps.dart deleted file mode 100644 index b8f49d63f..000000000 --- a/lib/core/provider/topology_map/model/topology_maps.dart +++ /dev/null @@ -1,47 +0,0 @@ -import 'dart:convert'; - -import 'package:eq_map/eq_map.dart'; -import 'package:flutter/foundation.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:topo_map/topo_map.dart'; - -part 'topology_maps.freezed.dart'; - -@freezed -class TopologyMaps with _$TopologyMaps { - const factory TopologyMaps({ - @Default({}) Map maps, - }) = _TopologyMaps; - - factory TopologyMaps.fromString(String data) { - final json = jsonDecode(data) as Map; - final maps = json.map((key, value) { - final type = LandLayerType.values.firstWhere((e) => e.name == key); - final map = TopologyMap.fromJson(value as Map); - return MapEntry(type, map); - }); - return TopologyMaps(maps: maps); - } -} - -@freezed -class MapData with _$MapData { - const factory MapData({ - required Map? maps, - }) = _MapData; - - static Future fromTopologyMaps(TopologyMaps data) async { - return compute( - (maps) { - final map = maps.maps.map((type, topoMap) { - return MapEntry( - type, - FeatureLayer.fromTopologyMap(topoMap), - ); - }); - return MapData(maps: map); - }, - data, - ); - } -} diff --git a/lib/core/provider/topology_map/model/topology_maps.freezed.dart b/lib/core/provider/topology_map/model/topology_maps.freezed.dart deleted file mode 100644 index 318c743a2..000000000 --- a/lib/core/provider/topology_map/model/topology_maps.freezed.dart +++ /dev/null @@ -1,284 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'topology_maps.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -/// @nodoc -mixin _$TopologyMaps { - Map get maps => - throw _privateConstructorUsedError; - - @JsonKey(ignore: true) - $TopologyMapsCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $TopologyMapsCopyWith<$Res> { - factory $TopologyMapsCopyWith( - TopologyMaps value, $Res Function(TopologyMaps) then) = - _$TopologyMapsCopyWithImpl<$Res, TopologyMaps>; - @useResult - $Res call({Map maps}); -} - -/// @nodoc -class _$TopologyMapsCopyWithImpl<$Res, $Val extends TopologyMaps> - implements $TopologyMapsCopyWith<$Res> { - _$TopologyMapsCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? maps = null, - }) { - return _then(_value.copyWith( - maps: null == maps - ? _value.maps - : maps // ignore: cast_nullable_to_non_nullable - as Map, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$TopologyMapsImplCopyWith<$Res> - implements $TopologyMapsCopyWith<$Res> { - factory _$$TopologyMapsImplCopyWith( - _$TopologyMapsImpl value, $Res Function(_$TopologyMapsImpl) then) = - __$$TopologyMapsImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({Map maps}); -} - -/// @nodoc -class __$$TopologyMapsImplCopyWithImpl<$Res> - extends _$TopologyMapsCopyWithImpl<$Res, _$TopologyMapsImpl> - implements _$$TopologyMapsImplCopyWith<$Res> { - __$$TopologyMapsImplCopyWithImpl( - _$TopologyMapsImpl _value, $Res Function(_$TopologyMapsImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? maps = null, - }) { - return _then(_$TopologyMapsImpl( - maps: null == maps - ? _value._maps - : maps // ignore: cast_nullable_to_non_nullable - as Map, - )); - } -} - -/// @nodoc - -class _$TopologyMapsImpl with DiagnosticableTreeMixin implements _TopologyMaps { - const _$TopologyMapsImpl( - {final Map maps = const {}}) - : _maps = maps; - - final Map _maps; - @override - @JsonKey() - Map get maps { - if (_maps is EqualUnmodifiableMapView) return _maps; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(_maps); - } - - @override - String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { - return 'TopologyMaps(maps: $maps)'; - } - - @override - void debugFillProperties(DiagnosticPropertiesBuilder properties) { - super.debugFillProperties(properties); - properties - ..add(DiagnosticsProperty('type', 'TopologyMaps')) - ..add(DiagnosticsProperty('maps', maps)); - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$TopologyMapsImpl && - const DeepCollectionEquality().equals(other._maps, _maps)); - } - - @override - int get hashCode => - Object.hash(runtimeType, const DeepCollectionEquality().hash(_maps)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$TopologyMapsImplCopyWith<_$TopologyMapsImpl> get copyWith => - __$$TopologyMapsImplCopyWithImpl<_$TopologyMapsImpl>(this, _$identity); -} - -abstract class _TopologyMaps implements TopologyMaps { - const factory _TopologyMaps({final Map maps}) = - _$TopologyMapsImpl; - - @override - Map get maps; - @override - @JsonKey(ignore: true) - _$$TopologyMapsImplCopyWith<_$TopologyMapsImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -mixin _$MapData { - Map? get maps => - throw _privateConstructorUsedError; - - @JsonKey(ignore: true) - $MapDataCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MapDataCopyWith<$Res> { - factory $MapDataCopyWith(MapData value, $Res Function(MapData) then) = - _$MapDataCopyWithImpl<$Res, MapData>; - @useResult - $Res call({Map? maps}); -} - -/// @nodoc -class _$MapDataCopyWithImpl<$Res, $Val extends MapData> - implements $MapDataCopyWith<$Res> { - _$MapDataCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? maps = freezed, - }) { - return _then(_value.copyWith( - maps: freezed == maps - ? _value.maps - : maps // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$MapDataImplCopyWith<$Res> implements $MapDataCopyWith<$Res> { - factory _$$MapDataImplCopyWith( - _$MapDataImpl value, $Res Function(_$MapDataImpl) then) = - __$$MapDataImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({Map? maps}); -} - -/// @nodoc -class __$$MapDataImplCopyWithImpl<$Res> - extends _$MapDataCopyWithImpl<$Res, _$MapDataImpl> - implements _$$MapDataImplCopyWith<$Res> { - __$$MapDataImplCopyWithImpl( - _$MapDataImpl _value, $Res Function(_$MapDataImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? maps = freezed, - }) { - return _then(_$MapDataImpl( - maps: freezed == maps - ? _value._maps - : maps // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc - -class _$MapDataImpl with DiagnosticableTreeMixin implements _MapData { - const _$MapDataImpl({required final Map? maps}) - : _maps = maps; - - final Map? _maps; - @override - Map? get maps { - final value = _maps; - if (value == null) return null; - if (_maps is EqualUnmodifiableMapView) return _maps; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { - return 'MapData(maps: $maps)'; - } - - @override - void debugFillProperties(DiagnosticPropertiesBuilder properties) { - super.debugFillProperties(properties); - properties - ..add(DiagnosticsProperty('type', 'MapData')) - ..add(DiagnosticsProperty('maps', maps)); - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MapDataImpl && - const DeepCollectionEquality().equals(other._maps, _maps)); - } - - @override - int get hashCode => - Object.hash(runtimeType, const DeepCollectionEquality().hash(_maps)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MapDataImplCopyWith<_$MapDataImpl> get copyWith => - __$$MapDataImplCopyWithImpl<_$MapDataImpl>(this, _$identity); -} - -abstract class _MapData implements MapData { - const factory _MapData( - {required final Map? maps}) = _$MapDataImpl; - - @override - Map? get maps; - @override - @JsonKey(ignore: true) - _$$MapDataImplCopyWith<_$MapDataImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/core/provider/topology_map/provider/topology_maps.dart b/lib/core/provider/topology_map/provider/topology_maps.dart deleted file mode 100644 index 818928d1d..000000000 --- a/lib/core/provider/topology_map/provider/topology_maps.dart +++ /dev/null @@ -1,40 +0,0 @@ -import 'package:eqmonitor/core/component/map/data/model/mutable_projected_feature_layer.dart'; -import 'package:eqmonitor/core/component/map/model/mutable/projected_feature_layer.dart'; -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:eqmonitor/core/provider/topology_map/data/topology_map_data_source.dart'; -import 'package:eqmonitor/core/provider/topology_map/model/topology_maps.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:topo_map/topo_map.dart'; - -part 'topology_maps.g.dart'; - -@Riverpod(keepAlive: true) -Future topologyMaps(TopologyMapsRef ref) { - final dataSource = ref.watch(topologyMapsDataSourceProvider); - return dataSource.loadTopologyMaps('assets/maps/topology_maps.json'); -} - -@Riverpod(keepAlive: true) -Future mapData(MapDataRef ref) async { - final topologyMaps = await ref.watch(topologyMapsProvider.future); - return MapData.fromTopologyMaps(topologyMaps); -} - -@Riverpod(keepAlive: true) -Future> - zoomCachedProjectedFeatureLayer( - ZoomCachedProjectedFeatureLayerRef ref, -) async { - final mapData = await ref.watch(mapDataProvider.future); - return mapData.maps!.map( - (key, value) => MapEntry( - key, - ZoomCachedProjectedFeatureLayer.fromProjectedFeatureLayer( - ProjectedFeatureLayer.fromFeatureLayer( - layer: value, - projection: WebMercatorProjection(), - ), - ), - ), - ); -} diff --git a/lib/core/provider/topology_map/provider/topology_maps.g.dart b/lib/core/provider/topology_map/provider/topology_maps.g.dart deleted file mode 100644 index 86be8cd89..000000000 --- a/lib/core/provider/topology_map/provider/topology_maps.g.dart +++ /dev/null @@ -1,58 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'topology_maps.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$topologyMapsHash() => r'87fd9d18588a17a6cea046b20f5729fe7797670a'; - -/// See also [topologyMaps]. -@ProviderFor(topologyMaps) -final topologyMapsProvider = FutureProvider.internal( - topologyMaps, - name: r'topologyMapsProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$topologyMapsHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef TopologyMapsRef = FutureProviderRef; -String _$mapDataHash() => r'4a65efac40e54c8ba1993f11b93c6db7fe12d697'; - -/// See also [mapData]. -@ProviderFor(mapData) -final mapDataProvider = FutureProvider.internal( - mapData, - name: r'mapDataProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$mapDataHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef MapDataRef = FutureProviderRef; -String _$zoomCachedProjectedFeatureLayerHash() => - r'0122760d25ba97b714870dda8131e1c14fcda400'; - -/// See also [zoomCachedProjectedFeatureLayer]. -@ProviderFor(zoomCachedProjectedFeatureLayer) -final zoomCachedProjectedFeatureLayerProvider = FutureProvider< - Map>.internal( - zoomCachedProjectedFeatureLayer, - name: r'zoomCachedProjectedFeatureLayerProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$zoomCachedProjectedFeatureLayerHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ZoomCachedProjectedFeatureLayerRef - = FutureProviderRef>; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/core/router/router.dart b/lib/core/router/router.dart index ee6bf0c80..6ac713f4a 100644 --- a/lib/core/router/router.dart +++ b/lib/core/router/router.dart @@ -1,14 +1,21 @@ +import 'package:eqapi_types/eqapi_types.dart'; import 'package:eqmonitor/app.dart'; import 'package:eqmonitor/core/provider/shared_preferences.dart'; +import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; import 'package:eqmonitor/feature/earthquake_history/page/earthquake_history.dart'; import 'package:eqmonitor/feature/earthquake_history_details/screen/earthquake_history_details.dart'; import 'package:eqmonitor/feature/eew_detailed_history/eew_detailed_history_screen.dart'; import 'package:eqmonitor/feature/home/features/kmoni/page/kmoni_settings_page.dart'; import 'package:eqmonitor/feature/home/view/home_view.dart'; +import 'package:eqmonitor/feature/information_history/page/information_history_page.dart'; +import 'package:eqmonitor/feature/information_history_details/information_history_details_page.dart'; import 'package:eqmonitor/feature/settings/children/application_info/license_page.dart'; import 'package:eqmonitor/feature/settings/children/application_info/privacy_policy_screen.dart'; import 'package:eqmonitor/feature/settings/children/application_info/term_of_service_screen.dart'; import 'package:eqmonitor/feature/settings/children/config/color_scheme/color_scheme_config_page.dart'; +import 'package:eqmonitor/feature/settings/children/config/debug/api_endpoint_selector/api_endpoint_selector_page.dart'; +import 'package:eqmonitor/feature/settings/children/config/debug/debugger_page.dart'; +import 'package:eqmonitor/feature/settings/children/config/earthquake_history/earthquake_history_config_page.dart'; import 'package:eqmonitor/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_page.dart'; import 'package:eqmonitor/feature/settings/children/config/notification/children/eew/eew_notification_settings_page.dart'; import 'package:eqmonitor/feature/settings/children/config/notification/notification_setting_page.dart'; @@ -54,38 +61,58 @@ class EarthquakeHistoryRoute extends GoRouteData { } @TypedGoRoute( - path: '/earthquake-history/:eventId', + path: '/earthquake-history-details', ) class EarthquakeHistoryDetailsRoute extends GoRouteData { - const EarthquakeHistoryDetailsRoute(this.eventId); - final int eventId; + const EarthquakeHistoryDetailsRoute({ + required this.$extra, + }); + final EarthquakeHistoryItem $extra; @override - Widget build(BuildContext context, GoRouterState state) { - return EarthquakeHistoryDetailsPage( - eventId: eventId, - ); - } + Widget build(BuildContext context, GoRouterState state) => + EarthquakeHistoryDetailsPage( + data: $extra, + ); } -@TypedGoRoute( - path: '/eew-detailed-history/:eventId', +@TypedGoRoute(path: '/information-history') +class InformationHistoryRoute extends GoRouteData { + const InformationHistoryRoute(); + @override + Widget build(BuildContext context, GoRouterState state) => + const InformationHistoryPage(); +} + +@TypedGoRoute( + path: '/information-history-details', ) -class EewDetailedHistoryRoute extends GoRouteData { - const EewDetailedHistoryRoute(this.eventId); - final int eventId; +class InformationHistoryDetailsRoute extends GoRouteData { + const InformationHistoryDetailsRoute({ + required this.$extra, + }); + final InformationV3 $extra; @override Widget build(BuildContext context, GoRouterState state) => - EewDetailedHistoryScreen( - eventId: eventId, + InformationHistoryDetailsPage( + data: $extra, ); } -@TypedGoRoute(path: '/config') -class ColorSchemeConfigRoute extends GoRouteData { - const ColorSchemeConfigRoute(); +@TypedGoRoute( + path: '/eew-history-detailed', +) +class EewHisotryDetailRoute extends GoRouteData { + const EewHisotryDetailRoute({ + required this.$extra, + }); + + final EarthquakeHistoryItem $extra; + @override Widget build(BuildContext context, GoRouterState state) => - const ColorSchemeConfigPage(); + EewDetailedHistoryScreen( + data: $extra, + ); } @TypedGoRoute(path: '/') @@ -123,6 +150,12 @@ class KmoniRoute extends GoRouteData { TypedGoRoute( path: 'license', ), + TypedGoRoute( + path: 'color-schema', + ), + TypedGoRoute( + path: 'earthquake-history', + ), TypedGoRoute( path: 'notification', routes: [ @@ -134,6 +167,14 @@ class KmoniRoute extends GoRouteData { ), ], ), + TypedGoRoute( + path: 'debugger', + routes: [ + TypedGoRoute( + path: 'api-endpoint-selector', + ), + ], + ), ], ) class SettingsRoute extends GoRouteData { @@ -144,6 +185,30 @@ class SettingsRoute extends GoRouteData { const SettingsScreen(); } +class DebuggerRoute extends GoRouteData { + const DebuggerRoute(); + + @override + Widget build(BuildContext context, GoRouterState state) => + const DebuggerPage(); +} + +class ApiEndpointSelectorRoute extends GoRouteData { + const ApiEndpointSelectorRoute(); + + @override + Widget build(BuildContext context, GoRouterState state) => + const ApiEndpointSelectorPage(); +} + +class EarthquakeHistoryConfigRoute extends GoRouteData { + const EarthquakeHistoryConfigRoute(); + + @override + Widget build(BuildContext context, GoRouterState state) => + const EarthquakeHistoryConfigPage(); +} + class TermOfServiceRoute extends GoRouteData { const TermOfServiceRoute({ required this.$extra, @@ -160,6 +225,13 @@ class TermOfServiceRoute extends GoRouteData { ); } +class ColorSchemeConfigRoute extends GoRouteData { + const ColorSchemeConfigRoute(); + @override + Widget build(BuildContext context, GoRouterState state) => + const ColorSchemeConfigPage(); +} + class PrivacyPolicyRoute extends GoRouteData { const PrivacyPolicyRoute({ required this.$extra, diff --git a/lib/core/router/router.g.dart b/lib/core/router/router.g.dart index d146e0902..2b6734050 100644 --- a/lib/core/router/router.g.dart +++ b/lib/core/router/router.g.dart @@ -12,8 +12,9 @@ List get $appRoutes => [ $setupRoute, $earthquakeHistoryRoute, $earthquakeHistoryDetailsRoute, - $eewDetailedHistoryRoute, - $colorSchemeConfigRoute, + $informationHistoryRoute, + $informationHistoryDetailsRoute, + $eewHisotryDetailRoute, $homeRoute, $talkerRoute, $kmoniRoute, @@ -66,7 +67,7 @@ extension $EarthquakeHistoryRouteExtension on EarthquakeHistoryRoute { } RouteBase get $earthquakeHistoryDetailsRoute => GoRouteData.$route( - path: '/earthquake-history/:eventId', + path: '/earthquake-history-details', factory: $EarthquakeHistoryDetailsRouteExtension._fromState, ); @@ -74,11 +75,36 @@ extension $EarthquakeHistoryDetailsRouteExtension on EarthquakeHistoryDetailsRoute { static EarthquakeHistoryDetailsRoute _fromState(GoRouterState state) => EarthquakeHistoryDetailsRoute( - int.parse(state.pathParameters['eventId']!), + $extra: state.extra as EarthquakeHistoryItem, ); String get location => GoRouteData.$location( - '/earthquake-history/${Uri.encodeComponent(eventId.toString())}', + '/earthquake-history-details', + ); + + void go(BuildContext context) => context.go(location, extra: $extra); + + Future push(BuildContext context) => + context.push(location, extra: $extra); + + void pushReplacement(BuildContext context) => + context.pushReplacement(location, extra: $extra); + + void replace(BuildContext context) => + context.replace(location, extra: $extra); +} + +RouteBase get $informationHistoryRoute => GoRouteData.$route( + path: '/information-history', + factory: $InformationHistoryRouteExtension._fromState, + ); + +extension $InformationHistoryRouteExtension on InformationHistoryRoute { + static InformationHistoryRoute _fromState(GoRouterState state) => + const InformationHistoryRoute(); + + String get location => GoRouteData.$location( + '/information-history', ); void go(BuildContext context) => context.go(location); @@ -91,52 +117,59 @@ extension $EarthquakeHistoryDetailsRouteExtension void replace(BuildContext context) => context.replace(location); } -RouteBase get $eewDetailedHistoryRoute => GoRouteData.$route( - path: '/eew-detailed-history/:eventId', - factory: $EewDetailedHistoryRouteExtension._fromState, +RouteBase get $informationHistoryDetailsRoute => GoRouteData.$route( + path: '/information-history-details', + factory: $InformationHistoryDetailsRouteExtension._fromState, ); -extension $EewDetailedHistoryRouteExtension on EewDetailedHistoryRoute { - static EewDetailedHistoryRoute _fromState(GoRouterState state) => - EewDetailedHistoryRoute( - int.parse(state.pathParameters['eventId']!), +extension $InformationHistoryDetailsRouteExtension + on InformationHistoryDetailsRoute { + static InformationHistoryDetailsRoute _fromState(GoRouterState state) => + InformationHistoryDetailsRoute( + $extra: state.extra as InformationV3, ); String get location => GoRouteData.$location( - '/eew-detailed-history/${Uri.encodeComponent(eventId.toString())}', + '/information-history-details', ); - void go(BuildContext context) => context.go(location); + void go(BuildContext context) => context.go(location, extra: $extra); - Future push(BuildContext context) => context.push(location); + Future push(BuildContext context) => + context.push(location, extra: $extra); void pushReplacement(BuildContext context) => - context.pushReplacement(location); + context.pushReplacement(location, extra: $extra); - void replace(BuildContext context) => context.replace(location); + void replace(BuildContext context) => + context.replace(location, extra: $extra); } -RouteBase get $colorSchemeConfigRoute => GoRouteData.$route( - path: '/config', - factory: $ColorSchemeConfigRouteExtension._fromState, +RouteBase get $eewHisotryDetailRoute => GoRouteData.$route( + path: '/eew-history-detailed', + factory: $EewHisotryDetailRouteExtension._fromState, ); -extension $ColorSchemeConfigRouteExtension on ColorSchemeConfigRoute { - static ColorSchemeConfigRoute _fromState(GoRouterState state) => - const ColorSchemeConfigRoute(); +extension $EewHisotryDetailRouteExtension on EewHisotryDetailRoute { + static EewHisotryDetailRoute _fromState(GoRouterState state) => + EewHisotryDetailRoute( + $extra: state.extra as EarthquakeHistoryItem, + ); String get location => GoRouteData.$location( - '/config', + '/eew-history-detailed', ); - void go(BuildContext context) => context.go(location); + void go(BuildContext context) => context.go(location, extra: $extra); - Future push(BuildContext context) => context.push(location); + Future push(BuildContext context) => + context.push(location, extra: $extra); void pushReplacement(BuildContext context) => - context.pushReplacement(location); + context.pushReplacement(location, extra: $extra); - void replace(BuildContext context) => context.replace(location); + void replace(BuildContext context) => + context.replace(location, extra: $extra); } RouteBase get $homeRoute => GoRouteData.$route( @@ -221,6 +254,14 @@ RouteBase get $settingsRoute => GoRouteData.$route( path: 'license', factory: $LicenseRouteExtension._fromState, ), + GoRouteData.$route( + path: 'color-schema', + factory: $ColorSchemeConfigRouteExtension._fromState, + ), + GoRouteData.$route( + path: 'earthquake-history', + factory: $EarthquakeHistoryConfigRouteExtension._fromState, + ), GoRouteData.$route( path: 'notification', factory: $NotificationSettingsRouteExtension._fromState, @@ -235,6 +276,16 @@ RouteBase get $settingsRoute => GoRouteData.$route( ), ], ), + GoRouteData.$route( + path: 'debugger', + factory: $DebuggerRouteExtension._fromState, + routes: [ + GoRouteData.$route( + path: 'api-endpoint-selector', + factory: $ApiEndpointSelectorRouteExtension._fromState, + ), + ], + ), ], ); @@ -330,6 +381,43 @@ extension $LicenseRouteExtension on LicenseRoute { void replace(BuildContext context) => context.replace(location); } +extension $ColorSchemeConfigRouteExtension on ColorSchemeConfigRoute { + static ColorSchemeConfigRoute _fromState(GoRouterState state) => + const ColorSchemeConfigRoute(); + + String get location => GoRouteData.$location( + '/settings/color-schema', + ); + + void go(BuildContext context) => context.go(location); + + Future push(BuildContext context) => context.push(location); + + void pushReplacement(BuildContext context) => + context.pushReplacement(location); + + void replace(BuildContext context) => context.replace(location); +} + +extension $EarthquakeHistoryConfigRouteExtension + on EarthquakeHistoryConfigRoute { + static EarthquakeHistoryConfigRoute _fromState(GoRouterState state) => + const EarthquakeHistoryConfigRoute(); + + String get location => GoRouteData.$location( + '/settings/earthquake-history', + ); + + void go(BuildContext context) => context.go(location); + + Future push(BuildContext context) => context.push(location); + + void pushReplacement(BuildContext context) => + context.pushReplacement(location); + + void replace(BuildContext context) => context.replace(location); +} + extension $NotificationSettingsRouteExtension on NotificationSettingsRoute { static NotificationSettingsRoute _fromState(GoRouterState state) => const NotificationSettingsRoute(); @@ -386,6 +474,41 @@ extension $EarthquakeNotificationSettingsRouteExtension void replace(BuildContext context) => context.replace(location); } +extension $DebuggerRouteExtension on DebuggerRoute { + static DebuggerRoute _fromState(GoRouterState state) => const DebuggerRoute(); + + String get location => GoRouteData.$location( + '/settings/debugger', + ); + + void go(BuildContext context) => context.go(location); + + Future push(BuildContext context) => context.push(location); + + void pushReplacement(BuildContext context) => + context.pushReplacement(location); + + void replace(BuildContext context) => context.replace(location); +} + +extension $ApiEndpointSelectorRouteExtension on ApiEndpointSelectorRoute { + static ApiEndpointSelectorRoute _fromState(GoRouterState state) => + const ApiEndpointSelectorRoute(); + + String get location => GoRouteData.$location( + '/settings/debugger/api-endpoint-selector', + ); + + void go(BuildContext context) => context.go(location); + + Future push(BuildContext context) => context.push(location); + + void pushReplacement(BuildContext context) => + context.pushReplacement(location); + + void replace(BuildContext context) => context.replace(location); +} + T? _$convertMapValue( String key, Map map, diff --git a/lib/feature/earthquake_history/component/earthquake_history_tile_widget.dart b/lib/feature/earthquake_history/component/earthquake_history_tile_widget.dart index 5f4330f93..87493967d 100644 --- a/lib/feature/earthquake_history/component/earthquake_history_tile_widget.dart +++ b/lib/feature/earthquake_history/component/earthquake_history_tile_widget.dart @@ -1,3 +1,4 @@ +import 'package:collection/collection.dart'; import 'package:eqapi_types/eqapi_types.dart'; import 'package:eqmonitor/core/component/chip/custom_chip.dart'; import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; @@ -41,6 +42,9 @@ class EarthquakeHistoryTileWidget extends ConsumerWidget { ) && item.telegrams.every((e) => e.type == TelegramType.vxse52); + // 通常報以外かどうか + final telegramStatuses = item.telegrams.map((e) => e.status).toSet(); + // ! title final title = StringBuffer(); if (item.earthquake.earthquake != null) { @@ -85,6 +89,12 @@ class EarthquakeHistoryTileWidget extends ConsumerWidget { case _: body.write('深さ${item.earthquake.earthquake!.hypocenter.depth}km'); } + } else { + // 受信時刻 + body.write( + DateFormat('yyyy/MM/dd HH:mm頃 発表') + .format(item.telegrams.first.pressTime.toLocal()), + ); } var trailing = ''; if (item.earthquake.isVolcano) { @@ -125,6 +135,19 @@ class EarthquakeHistoryTileWidget extends ConsumerWidget { fontFamilyFallback: [FontFamily.notoSansJP], ), ), + if (!const SetEquality() + .equals(telegramStatuses, {TelegramStatus.normal})) + for (final status in telegramStatuses) + CustomChip( + backgroundColor: Colors.red.shade200, + child: Text( + '${status.type}報', + style: const TextStyle( + fontWeight: FontWeight.bold, + color: Colors.black, + ), + ), + ), if (item.tsunami?.forecasts != null || item.tsunami?.observations != null || item.tsunami?.estimations != null) diff --git a/lib/feature/earthquake_history/model/state/earthquake_history_item.freezed.dart b/lib/feature/earthquake_history/model/state/earthquake_history_item.freezed.dart index b5a25b464..b3a4a6479 100644 --- a/lib/feature/earthquake_history/model/state/earthquake_history_item.freezed.dart +++ b/lib/feature/earthquake_history/model/state/earthquake_history_item.freezed.dart @@ -233,7 +233,7 @@ class _$EarthquakeHistoryItemImpl implements _EarthquakeHistoryItem { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeHistoryItemImpl && @@ -532,7 +532,7 @@ class _$EarthquakeDataImpl implements _EarthquakeData { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeDataImpl && @@ -788,7 +788,7 @@ class _$TsunamiDataImpl implements _TsunamiData { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiDataImpl && diff --git a/lib/feature/earthquake_history/page/earthquake_history.dart b/lib/feature/earthquake_history/page/earthquake_history.dart index 6f456734f..b130d7963 100644 --- a/lib/feature/earthquake_history/page/earthquake_history.dart +++ b/lib/feature/earthquake_history/page/earthquake_history.dart @@ -1,3 +1,4 @@ +import 'package:eqmonitor/core/provider/config/earthquake_history/earthquake_history_config_provider.dart'; import 'package:eqmonitor/core/router/router.dart'; import 'package:eqmonitor/feature/earthquake_history/component/earthquake_history_tile_widget.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; @@ -27,7 +28,7 @@ class EarthquakeHistoryPage extends HookConsumerWidget { // 初回読み込みを行う await ref .read(earthquakeHistoryViewModelProvider.notifier) - .loadIfNull(); + .fetchIfNeeded(); }, ); return null; @@ -39,56 +40,65 @@ class EarthquakeHistoryPage extends HookConsumerWidget { child: CustomScrollView( primary: true, slivers: [ - const SliverAppBar.medium( - title: Text('地震の履歴'), - ), - state.when( - data: (data) { - return EarthquakeHistoryListView( - data: data, - ); - }, - error: (error, stackTrace) { - // dataがある場合にはそれを表示 - if (state.hasValue) { - final data = state.value!; - return EarthquakeHistoryListView( - data: data, - ); - } - return SliverFillRemaining( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - mainAxisSize: MainAxisSize.min, - children: [ - const Text( - '地震履歴の取得中にエラーが発生しました。', - ), - FilledButton.tonal( - onPressed: ref - .read(earthquakeHistoryViewModelProvider.notifier) - .fetch, - child: const Text('再読み込み'), - ), - ], + SliverAppBar.medium( + title: const Text('地震の履歴'), + actions: [ + IconButton( + onPressed: () => context.push( + const EarthquakeHistoryConfigRoute().location, ), - ); - }, - loading: () => const SliverFillRemaining( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - '地震履歴を取得中です。', - ), - Padding( - padding: EdgeInsets.all(16), - child: CircularProgressIndicator.adaptive(), - ), - ], + icon: const Icon(Icons.settings), ), - ), + ], ), + state?.when( + data: (data) { + return EarthquakeHistoryListView( + data: data, + ); + }, + error: (error, stackTrace) { + // dataがある場合にはそれを表示 + if (state.hasValue) { + final data = state.value!; + return EarthquakeHistoryListView( + data: data, + ); + } + return SliverFillRemaining( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + mainAxisSize: MainAxisSize.min, + children: [ + const Text( + '地震履歴の取得中にエラーが発生しました。', + ), + FilledButton.tonal( + onPressed: ref + .read(earthquakeHistoryViewModelProvider.notifier) + .fetch, + child: const Text('再読み込み'), + ), + ], + ), + ); + }, + loading: () => const SliverFillRemaining( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + '地震履歴を取得中です。', + ), + Padding( + padding: EdgeInsets.all(16), + child: CircularProgressIndicator.adaptive(), + ), + ], + ), + ), + ) ?? + const CircularProgressIndicator.adaptive(), ], ), ); @@ -102,7 +112,7 @@ class EarthquakeHistoryPage extends HookConsumerWidget { } } -class EarthquakeHistoryListView extends StatelessWidget { +class EarthquakeHistoryListView extends ConsumerWidget { const EarthquakeHistoryListView({ super.key, required this.data, @@ -111,7 +121,11 @@ class EarthquakeHistoryListView extends StatelessWidget { final List data; @override - Widget build(BuildContext context) { + Widget build(BuildContext context, WidgetRef ref) { + final shouldShowBackgroundColor = ref.watch( + earthquakeHistoryConfigProvider + .select((value) => value.list.isFillBackground), + ); return SliverList( delegate: SliverChildBuilderDelegate( childCount: data.length + 1, @@ -122,9 +136,9 @@ class EarthquakeHistoryListView extends StatelessWidget { final item = data[index]; return EarthquakeHistoryTileWidget( item: item, - onTap: (p0) => context.push( - EarthquakeHistoryDetailsRoute(p0.eventId).location, - ), + onTap: (p0) => + EarthquakeHistoryDetailsRoute($extra: p0).push(context), + showBackgroundColor: shouldShowBackgroundColor, ); }, ), @@ -138,58 +152,60 @@ class _ListBottomWidget extends ConsumerWidget { @override Widget build(BuildContext context, WidgetRef ref) { final state = ref.watch(earthquakeHistoryViewModelProvider); - return state.map( - data: (data) { - if (state.isLoading) { - return const Padding( - padding: EdgeInsets.all(24), - child: Center( - child: CircularProgressIndicator.adaptive(), - ), - ); - } - return const SizedBox.shrink(); - }, - error: (error) { - if (state.isLoading) { - return const Padding( - padding: EdgeInsets.all(24), - child: Center( - child: CircularProgressIndicator.adaptive(), - ), - ); - } - return Padding( - padding: const EdgeInsets.symmetric( - vertical: 40, - horizontal: 10, - ), - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - const Text( - '地震履歴の取得中にエラーが発生しました。', - ), - // 再読み込み - FilledButton.tonal( - onPressed: () => ref - .read(earthquakeHistoryViewModelProvider.notifier) - .fetch(), - child: const Text('再読み込み'), - ), - Text( - error.error.toString(), - ), - ], - ), - ); - }, - loading: (data) => const Center( - child: Padding( - padding: EdgeInsets.all(24), - child: CircularProgressIndicator.adaptive(), - ), + const loading = Center( + child: Padding( + padding: EdgeInsets.all(24), + child: CircularProgressIndicator.adaptive(), ), ); + return state?.map( + data: (data) { + if (state.isLoading) { + return const Padding( + padding: EdgeInsets.all(24), + child: Center( + child: CircularProgressIndicator.adaptive(), + ), + ); + } + return const SizedBox.shrink(); + }, + error: (error) { + if (state.isLoading) { + return const Padding( + padding: EdgeInsets.all(24), + child: Center( + child: CircularProgressIndicator.adaptive(), + ), + ); + } + return Padding( + padding: const EdgeInsets.symmetric( + vertical: 40, + horizontal: 10, + ), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Text( + '地震履歴の取得中にエラーが発生しました。', + ), + // 再読み込み + FilledButton.tonal( + onPressed: () => ref + .read(earthquakeHistoryViewModelProvider.notifier) + .fetch(), + child: const Text('再読み込み'), + ), + Text( + error.error.toString(), + ), + ], + ), + ); + }, + loading: (data) => loading, + ) ?? + loading; } } diff --git a/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart b/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart index ee66742fa..18c6849b9 100644 --- a/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart +++ b/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart @@ -9,6 +9,7 @@ import 'package:eqapi_types/model/components/tsunami-information/tsunami_observa import 'package:eqapi_types/model/telegram_v3.dart'; import 'package:eqmonitor/core/extension/async_value.dart'; import 'package:eqmonitor/core/provider/app_lifecycle.dart'; +import 'package:eqmonitor/core/provider/config/earthquake_history/earthquake_history_config_provider.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; import 'package:eqmonitor/feature/earthquake_history/use_case/earthquake_history_use_case.dart'; import 'package:eqmonitor/feature/home/features/telegram_ws/provider/telegram_provider.dart'; @@ -19,12 +20,11 @@ part 'earthquake_history_view_model.g.dart'; @Riverpod( keepAlive: true, - dependencies: [earthquakeHistoryUseCase, TelegramWs], + dependencies: [TelegramWs, earthquakeHistoryUseCase], ) class EarthquakeHistoryViewModel extends _$EarthquakeHistoryViewModel { @override - AsyncValue> build() { - _useCase = ref.watch(earthquakeHistoryUseCaseProvider); + AsyncValue>? build() { // start listen telegram ws ref ..listen(telegramWsProvider, (previous, next) { @@ -39,23 +39,15 @@ class EarthquakeHistoryViewModel extends _$EarthquakeHistoryViewModel { fetch(isRefresh: true); } }); - return const AsyncData([]); - } - - late EarthquakeHistoryUseCase _useCase; - // state - final bool _includeTestTelegrams = false; - - Future loadIfNull() async { - // stateがnullなら、loadMoreを呼ぶ - if ((state.value ?? []).isEmpty) { - return fetch(isLoadMore: true); - } + return null; } void onScrollPositionChanged(ScrollController controller) { // エラー発生時・リロード中は何もしない - if (state.hasError || state.isRefreshing || state.isReloading) { + if (state == null) { + return; + } + if (state!.hasError || state!.isRefreshing || state!.isReloading) { return; } if (controller.position.maxScrollExtent - controller.position.pixels < 20) { @@ -63,81 +55,84 @@ class EarthquakeHistoryViewModel extends _$EarthquakeHistoryViewModel { } } + Future fetchIfNeeded() async { + if (state?.isLoading ?? false) { + return; + } + if (state?.hasValue ?? false) { + return; + } + await fetch(); + } + Future fetch({ bool isLoadMore = false, bool isRefresh = false, int limit = 50, }) async { - if (state.isLoading || state.isRefreshing || state.isReloading) { + if (state?.isLoading ?? false) { return; } - if (isLoadMore || isRefresh) { + if ((isLoadMore || isRefresh) && state != null) { state = const AsyncLoading>() - .copyWithPrevious(state); + .copyWithPrevious(state!); } else { state = const AsyncLoading>(); } + final shouldIncludeTestTelegram = + ref.read(earthquakeHistoryConfigProvider).list.includeTestTelegrams; // 処理開始 - state = await state.guardPlus(() async { - final offset = isRefresh ? 0 : state.asData?.value.length ?? 0; - final result = await _useCase.getEarthquakeHistory( + state = await state!.guardPlus(() async { + final offset = isRefresh ? 0 : state?.asData?.value.length ?? 0; + final useCase = ref.read(earthquakeHistoryUseCaseProvider); + final result = await useCase.getEarthquakeHistory( limit: limit, offset: offset, includeEew: true, ); final items = _toEarthquakeHistoryItem( result, - includeTestTelegrams: _includeTestTelegrams, - ); - final filteredItems = items.where( - (e) => e.telegrams.every( - (telegram) => telegram.status == TelegramStatus.normal, - ), ); + final filteredItems = shouldIncludeTestTelegram + ? items + : items.where( + (e) => e.telegrams.every( + (telegram) => telegram.status == TelegramStatus.normal, + ), + ); if (isRefresh) { return filteredItems.toList(); } return [ - ...state.asData?.value ?? [], + ...state?.asData?.value ?? [], ...filteredItems, ]; }); } List _toEarthquakeHistoryItem( - Map> data, { - bool includeTestTelegrams = true, - }) { + Map> data, + ) { final result = []; data.forEach((eventId, telegrams) { //! EarthquakeData ! // 震度速報 final vxse51 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vxse51 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vxse51, ); final vxse52 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vxse52 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vxse52, ); final vxse53 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vxse53 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vxse53, ); // 顕著な地震の震源要素更新のお知らせ final vxse61 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vxse61 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vxse61, ); // 長周期地震動に関する観測情報 final vxse62 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vxse62 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vxse62, ); Earthquake? earthquake; if (vxse61 != null) { @@ -191,19 +186,13 @@ class EarthquakeHistoryViewModel extends _$EarthquakeHistoryViewModel { ); //! TsunamiData ! final vtse41 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vtse41 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vtse41, ); final vtse51 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vtse51 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vtse51, ); final vtse52 = telegrams.firstWhereOrNull( - (e) => - e.type == TelegramType.vtse52 && - (_includeTestTelegrams || e.status == TelegramStatus.normal), + (e) => e.type == TelegramType.vtse52, ); List? forecasts; if (vtse51 != null) { @@ -253,7 +242,10 @@ class EarthquakeHistoryViewModel extends _$EarthquakeHistoryViewModel { .where( (e) => e.type == TelegramType.vxse45, ) + // SerialNoでソート .sorted((a, b) => (a.serialNo ?? 0).compareTo(b.serialNo ?? 0)) + // 取消報を優先 + .sorted((a, b) => (a.body is TelegramVxse45Cancel ? 1 : 0)) .lastOrNull; result.add( @@ -272,7 +264,7 @@ class EarthquakeHistoryViewModel extends _$EarthquakeHistoryViewModel { void _upsertTelegram(TelegramV3 telegram) { // 既に同一EventIDのTelegramが存在する場合は、上書きする - var data = state.value ?? []; + var data = state?.value ?? []; final index = data.indexWhere((e) => e.eventId == telegram.eventId); if (index != -1) { data[index] = data[index].copyWith( diff --git a/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.g.dart b/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.g.dart index fe5b9a4c1..a1a9cb294 100644 --- a/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.g.dart +++ b/lib/feature/earthquake_history/viewmodel/earthquake_history_view_model.g.dart @@ -9,31 +9,31 @@ part of 'earthquake_history_view_model.dart'; // ************************************************************************** String _$earthquakeHistoryViewModelHash() => - r'1714b410d5fb414008e1246390b7f60e33eb275f'; + r'ba42a95103dc1c7f2832ee3b690b24a74f0df76d'; /// See also [EarthquakeHistoryViewModel]. @ProviderFor(EarthquakeHistoryViewModel) final earthquakeHistoryViewModelProvider = NotifierProvider< EarthquakeHistoryViewModel, - AsyncValue>>.internal( + AsyncValue>?>.internal( EarthquakeHistoryViewModel.new, name: r'earthquakeHistoryViewModelProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$earthquakeHistoryViewModelHash, dependencies: [ - earthquakeHistoryUseCaseProvider, - telegramWsProvider + telegramWsProvider, + earthquakeHistoryUseCaseProvider ], allTransitiveDependencies: { - earthquakeHistoryUseCaseProvider, - ...?earthquakeHistoryUseCaseProvider.allTransitiveDependencies, telegramWsProvider, - ...?telegramWsProvider.allTransitiveDependencies + ...?telegramWsProvider.allTransitiveDependencies, + earthquakeHistoryUseCaseProvider, + ...?earthquakeHistoryUseCaseProvider.allTransitiveDependencies }, ); typedef _$EarthquakeHistoryViewModel - = Notifier>>; + = Notifier>?>; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/earthquake_history_details/component/earthquake_map.dart b/lib/feature/earthquake_history_details/component/earthquake_map.dart index 98c4c8183..33d95a431 100644 --- a/lib/feature/earthquake_history_details/component/earthquake_map.dart +++ b/lib/feature/earthquake_history_details/component/earthquake_map.dart @@ -1,27 +1,25 @@ // ignore_for_file: lines_longer_than_80_chars import 'dart:async'; -import 'dart:ui'; import 'package:collection/collection.dart'; import 'package:eqapi_types/eqapi_types.dart'; -import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; -import 'package:eqmonitor/core/component/intenisty/jma_intensity_icon.dart'; -import 'package:eqmonitor/core/component/map/data/model/mutable_projected_feature_layer.dart'; +import 'package:eqmonitor/core/extension/lat_lng_bounds_list.dart'; +import 'package:eqmonitor/core/provider/capture/intensity_icon_render.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; +import 'package:eqmonitor/core/provider/jma_parameter/jma_parameter.dart'; +import 'package:eqmonitor/core/provider/map/jma_map_provider.dart'; +import 'package:eqmonitor/core/provider/map/map_style.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; -import 'package:eqmonitor/feature/map_libre/provider/map_style.dart'; +import 'package:extensions/extensions.dart'; import 'package:flutter/material.dart'; -import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:lat_lng/lat_lng.dart' as lat_lng; -import 'package:latlong2/latlong.dart' as lat_lng2; +import 'package:jma_parameter_api_client/jma_parameter_api_client.dart'; import 'package:maplibre_gl/maplibre_gl.dart' as map_libre; import 'package:maplibre_gl/maplibre_gl.dart'; -import 'package:topo_map/topo_map.dart'; typedef _RegionColorItem = ({ TextColorModel color, @@ -29,17 +27,21 @@ typedef _RegionColorItem = ({ JmaIntensity intensity, }); +typedef _RegionLpgmColorItem = ({ + TextColorModel color, + List codes, + JmaLgIntensity intensity, +}); + class EarthquakeMapWidget extends HookConsumerWidget { const EarthquakeMapWidget({ super.key, required this.item, required this.showIntensityIcon, - required this.mapData, required this.registerNavigateToHome, }); final EarthquakeHistoryItem item; final bool showIntensityIcon; - final Map mapData; final void Function(void Function() func) registerNavigateToHome; Future addImageFromAsset( @@ -52,119 +54,169 @@ class EarthquakeMapWidget extends HookConsumerWidget { return controller.addImage(name, list); } + Future addImageFromBuffer( + MaplibreMapController controller, + String name, + Uint8List buffer, + ) => + controller.addImage(name, buffer); + @override Widget build(BuildContext context, WidgetRef ref) { final earthquake = item.earthquake; final intensity = earthquake.intensity; final colorModel = ref.watch(intensityColorProvider); - final citiesItem = useMemoized(() { - if (intensity == null) { - return null; - } - // cities - if (intensity.cities == null) { - return null; - } - final cities = intensity.cities!; - final result = <_RegionColorItem>[]; - for (final e in mapData[LandLayerType.municipalityEarthquakeTsunamiArea]! - .projectedPolygonFeatures) { - final cityIntensity = cities.firstWhereOrNull( - (cityIntensity) => - (int.tryParse(cityIntensity.code) ?? -2) == (e.code ?? -1), - ); - if (cityIntensity != null && cityIntensity.maxInt != null) { - result.add( - ( - color: colorModel.fromJmaIntensity(cityIntensity.maxInt!), - codes: [ - e.code.toString().padLeft(7, '0'), - ], - intensity: cityIntensity.maxInt!, - ), - ); - } - } - // 同じ色の地域をまとめる - final grouped = groupBy<_RegionColorItem, JmaIntensity>( - result, - (e) => e.intensity, - ).entries.map((e) { - final codes = []; - for (final item in e.value) { - codes.addAll(item.codes); - } - return ( - color: e.value.first.color, - codes: codes, - intensity: e.key, - ); - }).toList(); - return grouped; - }); - final regionsItem = useMemoized(() { - if (intensity == null) { - return null; - } - // regionsの探索 - { - final regions = intensity.regions; - final result = <_RegionColorItem>[]; - for (final e - in mapData[LandLayerType.earthquakeInformationSubdivisionArea]! - .projectedPolygonFeatures) { - final regionIntensity = regions.firstWhereOrNull( - (cityIntensity) => cityIntensity.code == e.code.toString(), - ); - if (regionIntensity != null && regionIntensity.maxInt != null) { - result.add( - ( - color: colorModel.fromJmaIntensity(regionIntensity.maxInt!), - codes: [ - e.code.toString().padLeft(3, '0'), - ], - intensity: regionIntensity.maxInt!, - ), - ); - } - } - // 同じ色の地域をまとめる - final grouped = groupBy<_RegionColorItem, JmaIntensity>( - result, - (e) => e.intensity, - ).entries.map((e) { - final codes = []; - for (final item in e.value) { - codes.addAll(item.codes); - } - return ( - color: e.value.first.color, - codes: codes, - intensity: e.key, - ); - }).toList(); - return grouped; - } - }); - final stations = intensity?.stations ?? []; + final earthquakeParams = + ref.watch(jmaParameterProvider).valueOrNull?.earthquake; + final intensityIconData = ref.watch(intensityIconRenderProvider); + final hypocenterIconRender = ref.watch(hypocenterIconRenderProvider); + final intensityIconFillData = ref.watch(intensityIconFillRenderProvider); + final jmaMap = ref.watch(jmaMapProvider).valueOrNull; final isDark = Theme.of(context).brightness == Brightness.dark; final mapStyle = ref.watch(mapStyleProvider); - final styleJsonFuture = useFuture(mapStyle.getStyle(isDark: isDark)); + final styleJsonFutureing = + useMemoized(() => mapStyle.getStyle(isDark: isDark), [isDark]); + final styleJsonFuture = useFuture(styleJsonFutureing); final path = styleJsonFuture.data; - if (path == null) { + if (earthquakeParams == null || + !intensityIconData.isAllRendered() || + !intensityIconFillData.isAllRendered() || + jmaMap == null || + hypocenterIconRender == null || + path == null) { return const Scaffold( body: Center( child: CircularProgressIndicator.adaptive(), ), ); } - final isInitialized = useState(false); + + final citiesItem = useMemoized( + () => intensity?.cities + ?.groupListsBy((e) => e.maxInt) + .entries + .where((e) => e.key != null) + .map( + (e) => ( + color: colorModel.fromJmaIntensity(e.key!), + codes: e.value.map((e) => e.code).toList(), + intensity: intensity.maxInt, + ), + ) + .toList(), + [intensity], + ); + final regionsItem = useMemoized( + () => intensity?.regions + .groupListsBy((e) => e.maxInt) + .entries + .where((e) => e.key != null) + .map( + (e) => ( + color: colorModel.fromJmaIntensity(e.key!), + codes: e.value.map((e) => e.code.padLeft(3, '0')).toList(), + intensity: intensity.maxInt, + ), + ) + .toList(), + [intensity], + ); + final regionsLpgmItem = useMemoized( + () => intensity?.regions + .groupListsBy((e) => e.maxLgInt) + .entries + .where((e) => e.key != null) + .map( + (e) => ( + color: colorModel.fromJmaLgIntensity(e.key!), + codes: e.value.map((e) => e.code.padLeft(3, '0')).toList(), + intensity: intensity, + ), + ) + .toList(), + [intensity], + ); + final stationsItem = useMemoized( + () { + final stations = intensity?.stations; + if (stations == null) { + return null; + } + final allStations = earthquakeParams.regions + .map( + (region) => region.cities.map( + (city) => city.stations, + ), + ) + .flattened + .flattened; + final stationsParamMerged = stations.map( + (e) => ( + item: e, + param: allStations.firstWhereOrNull( + (element) => element.code == e.code, + ), + ), + ); + final grouped = stationsParamMerged.groupListsBy((e) => e.item.maxInt); + return grouped; + }, + [intensity], + ); + final bbox = useMemoized( + () { + // 最大震度5弱以上の場合、最大震度4以上の地域を表示する + final maxInt = intensity?.maxInt; + if (maxInt == null || regionsItem == null) { + return null; + } + + final List codes; + if (maxInt.index >= JmaIntensity.fiveLower.index) { + codes = regionsItem + .where((e) => e.intensity.index >= JmaIntensity.four.index) + .map((e) => e.codes) + .flattened + .toList(); + } else { + codes = regionsItem + .where((e) => e.intensity.index >= maxInt.index) + .map((e) => e.codes) + .flattened + .toList(); + } + final bboxs = codes + .map( + (e) => jmaMap[JmaMapType.areaForecastLocalE]! + .firstWhereOrNull((region) => region.property.code == e) + ?.bounds, + ) + .whereNotNull() + .toList(); + final bbox = bboxs.marge(); + return bbox; + }, + [regionsItem], + ); final mapController = useState(null); - final bounds = useMemoized( - () => _getShowBounds(item, mapData), - [item, mapData], + + final cameraUpdate = useMemoized( + () => CameraUpdate.newLatLngBounds( + LatLngBounds( + southwest: LatLng( + bbox!.southWest.lat, + bbox.southWest.lng, + ), + northeast: LatLng( + bbox.northEast.lat, + bbox.northEast.lng, + ), + ), + ), + [bbox], ); + useEffect( () { WidgetsBinding.instance.endOfFrame.then( @@ -174,15 +226,7 @@ class EarthquakeMapWidget extends HookConsumerWidget { return; } controller.animateCamera( - CameraUpdate.newCameraPosition( - CameraPosition( - target: LatLng( - (bounds.northEast.lat + bounds.southWest.lat) / 2, - (bounds.northEast.lon + bounds.southWest.lon) / 2, - ), - zoom: 6, - ), - ), + cameraUpdate, ); }), ); @@ -191,387 +235,452 @@ class EarthquakeMapWidget extends HookConsumerWidget { [], ); - final map = MaplibreMap( - initialCameraPosition: CameraPosition( - target: LatLng( - (bounds.northEast.lat + bounds.southWest.lat) / 2, - (bounds.northEast.lon + bounds.southWest.lon) / 2, + return RepaintBoundary( + child: MaplibreMap( + initialCameraPosition: CameraPosition( + target: LatLng( + earthquake.earthquake?.hypocenter.coordinate?.lat ?? 35, + earthquake.earthquake?.hypocenter.coordinate?.lon ?? 139, + ), + zoom: 6, ), - zoom: 6, - ), - styleString: path, - onMapCreated: (controller) => mapController.value = controller, - onStyleLoadedCallback: () async { - final controller = mapController.value!; + styleString: path, + minMaxZoomPreference: const MinMaxZoomPreference(0, 10), + onMapCreated: (controller) { + mapController.value = controller; + }, + onStyleLoadedCallback: () async { + final controller = mapController.value!; + await controller.moveCamera(cameraUpdate); + await [ + addImageFromBuffer( + controller, + 'hypocenter', + hypocenterIconRender, + ), + for (final intensity in JmaIntensity.values) + addImageFromBuffer( + controller, + 'intensity-${intensity.type}', + intensityIconData.getOrNull(intensity)!, + ), + for (final intensity in JmaIntensity.values) + addImageFromBuffer( + controller, + 'intensity-${intensity.type}-fill', + intensityIconFillData.getOrNull(intensity)!, + ), + ].wait; - await addImageFromAsset( - controller, - 'hypocenter', - 'assets/images/hypocenter.png', - ); - await _FillAction().init( - controller, - earthquake, - citiesItem, - regionsItem, - stations, - ); - isInitialized.value = true; - return; - }, - rotateGesturesEnabled: false, - tiltGesturesEnabled: false, - ); + if (citiesItem != null) { + await _FillCityAction( + citiesItem: citiesItem, + ).init( + controller, + ); + } else if (regionsItem != null) { + await _FillRegionAction( + regionsItem: regionsItem, + ).init( + controller, + ); + } + if (stationsItem != null) { + await _StationAction( + stations: stationsItem, + colorModel: colorModel, + ).init( + controller, + ); + } - return Stack( - children: [ - map, - if (!isInitialized.value) - const Scaffold( - body: Center( - child: CircularProgressIndicator.adaptive(), - ), - ), - ], + await _HypocenterAction( + earthquake: earthquake, + ).init( + controller, + ); + }, + rotateGesturesEnabled: false, + tiltGesturesEnabled: false, + ), ); } } -lat_lng.LatLngBoundary _getShowBounds( - EarthquakeHistoryItem item, - Map mapData, -) { - if (item.earthquake.intensity != null) { - final map = mapData[LandLayerType.earthquakeInformationSubdivisionArea]!; - final result = []; - final onlyOver4 = item.earthquake.intensity!.maxInt > JmaIntensity.four; - for (final region in item.earthquake.intensity!.regions.where( - (element) => - (!onlyOver4 || element.maxInt! > JmaIntensity.four) && - element.maxInt != null, - )) { - final e = map.projectedPolygonFeatures - .firstWhere((e) => e.code.toString() == region.code); - result.addAll([e.bbox.northEast, e.bbox.southWest]); - } - return lat_lng.LatLngBoundary.fromList(result); - } - if (item.earthquake.earthquake != null && - item.earthquake.earthquake!.hypocenter.coordinate != null) { - final lists = [ - const lat_lng2.Distance().offset( - lat_lng2.LatLng( - item.earthquake.earthquake!.hypocenter.coordinate!.lat, - item.earthquake.earthquake!.hypocenter.coordinate!.lon, +class _FillCityAction { + _FillCityAction({ + required this.citiesItem, + }); + + final List<_RegionColorItem> citiesItem; + + Future init(map_libre.MaplibreMapController controller) async { + /// 震度分布塗りつぶし (市区町村) + await dispose(controller); + for (final item in citiesItem) { + await controller.addLayer( + 'eqmonitor_map', + '$name-fill-${item.hashCode}', + FillLayerProperties( + fillColor: item.color.background.toHexStringRGB(), ), - 100 * 1000, - 360 - 45, - ), - const lat_lng2.Distance().offset( - lat_lng2.LatLng( - item.earthquake.earthquake!.hypocenter.coordinate!.lat, - item.earthquake.earthquake!.hypocenter.coordinate!.lon, + belowLayerId: BaseLayer.areaForecastLocalEewLine.name, + sourceLayer: name, + filter: [ + 'in', + ['get', 'regioncode'], + [ + 'literal', + item.codes, + ], + ], + ); + await controller.addLayer( + 'eqmonitor_map', + '$name-line-${item.hashCode}', + LineLayerProperties( + lineWidth: 0.4, + lineColor: item.color.foreground.toHexStringRGB(), + lineOpacity: 0.2, ), - 100 * 1000, - 90 + 45, - ), - ]; - return lat_lng.LatLngBoundary.fromList( - lists - .map( - (e) => lat_lng.LatLng(e.latitude, e.longitude), - ) - .toList(), - ); + belowLayerId: BaseLayer.areaForecastLocalEewLine.name, + sourceLayer: name, + filter: [ + 'in', + ['get', 'regioncode'], + [ + 'literal', + item.codes, + ], + ], + ); + } } - final lists = [ - const lat_lng.LatLng(45.3, 145.1), - const lat_lng.LatLng(30, 128.8), - ]; - return lat_lng.LatLngBoundary.fromList(lists); + Future dispose(map_libre.MaplibreMapController controller) async => [ + for (final type in ['fill', 'line']) + for (final item in citiesItem) + controller.removeLayer( + '$name-$type-${item.hashCode}', + ), + ].wait; + + static const name = 'areaInformationCityQuake'; } -sealed class _MapLibreAction { - Future Function( - MaplibreMapController controller, - EarthquakeData earthquake, - List<({List codes, TextColorModel color, JmaIntensity intensity})>? - citiesItem, - List<({List codes, TextColorModel color, JmaIntensity intensity})>? - regionsItem, - List stations, - ) get init; - Future Function(MaplibreMapController controller) get dispose; +class _FillRegionAction { + _FillRegionAction({ + required this.regionsItem, + }); + + final List<_RegionColorItem>? regionsItem; + + Future init(map_libre.MaplibreMapController controller) async { + if (regionsItem != null) { + const name = 'areaForecastLocalE'; + for (final item in regionsItem!) { + await controller.removeLayer( + '$name-fill-${item.color.background.toHexStringRGB()}-' + '${item.intensity.type}', + ); + await controller.addLayer( + 'eqmonitor_map', + '$name-fill-${item.color.background.toHexStringRGB()}-' + '${item.intensity.type}', + FillLayerProperties( + fillColor: item.color.background.toHexStringRGB(), + ), + sourceLayer: name, + belowLayerId: BaseLayer.areaForecastLocalEewLine.name, + filter: [ + 'in', + ['get', 'code'], + [ + 'literal', + item.codes, + ], + ], + ); + await controller.addLayer( + 'eqmonitor_map', + '$name-line-${item.color.foreground.toHexStringRGB()}${item.intensity.type}', + LineLayerProperties( + lineWidth: 0.4, + lineColor: item.color.foreground.toHexStringRGB(), + lineOpacity: 0.8, + ), + sourceLayer: name, + belowLayerId: BaseLayer.areaForecastLocalEewLine.name, + filter: [ + 'in', + ['get', 'regioncode'], + [ + 'literal', + item.codes, + ], + ], + ); + } + } + } + + Future dispose(map_libre.MaplibreMapController controller) async {} } -class _FillAction extends _MapLibreAction { - @override - Future Function( - MaplibreMapController controller, - EarthquakeData earthquake, - List<({List codes, TextColorModel color, JmaIntensity intensity})>? - citiesItem, - List<({List codes, TextColorModel color, JmaIntensity intensity})>? - regionsItem, - List stations, - ) get init => ( - controller, - EarthquakeData earthquake, - List< - ({ - List codes, - TextColorModel color, - JmaIntensity intensity - })>? - citiesItem, - List< - ({ - List codes, - TextColorModel color, - JmaIntensity intensity - })>? - regionsItem, - List stations, - ) async { - /// 震源地 - final hypocenter = earthquake.earthquake?.hypocenter; - if (hypocenter != null) { - final coord = hypocenter.coordinate; - if (coord != null) { - await controller.setSymbolIconAllowOverlap(true); - await controller.setSymbolIconIgnorePlacement(true); - await controller.addGeoJsonSource('hypocenter', { - 'type': 'FeatureCollection', - 'features': [ - { +class _StationAction { + _StationAction({ + required this.stations, + required this.colorModel, + }); + + final Map> + stations; + final IntensityColorModel colorModel; + + Future init( + map_libre.MaplibreMapController controller, + ) async { + await controller.setSymbolIconAllowOverlap(true); + await controller.setSymbolIconIgnorePlacement(true); + await controller.addGeoJsonSource( + 'station-intensity', + { + 'type': 'FeatureCollection', + 'features': stations.entries + .map((e) { + final color = e.key == null + ? const TextColorModel( + background: Color(0x00000000), + foreground: Color(0x00000000), + ) + : colorModel.fromJmaIntensity(e.key!); + return e.value.map( + (point) => { 'type': 'Feature', 'geometry': { 'type': 'Point', - 'coordinates': [coord.lon, coord.lat], + 'coordinates': [ + point.param?.longitude ?? 0, + point.param?.latitude ?? 0, + ], }, 'properties': { - 'magnitude': - earthquake.earthquake?.magnitude.value.toString() ?? - earthquake.earthquake?.magnitude.condition ?? - '調査中', + 'color': color.background.toHexStringRGB(), + 'intensity': e.key?.type, + 'name': point.param?.name, }, - } - ], - }); - final magnitude = earthquake.earthquake?.magnitude; - - if (magnitude != null && magnitude.value != null) { - await controller.addSymbolLayer( - 'hypocenter', - 'hypocenter', - const SymbolLayerProperties( - iconImage: 'hypocenter', - iconSize: [ - 'interpolate', - ['linear'], - ['zoom'], - 6, - 0.2, - 20, - 4, - ], - iconAllowOverlap: true, - ), + }, ); - } else { - await controller.addSymbolLayer( - 'hypocenter', - 'hypocenter', - const SymbolLayerProperties( - iconImage: 'hypocenter', - iconSize: [ - 'interpolate', - ['linear'], - ['zoom'], - 6, - 0.2, - 20, - 4, - ], - iconAllowOverlap: true, - ), - ); - } - } - } + }) + .flattened + .toList(), + }, + ); + for (final intensity in JmaIntensity.values) { + await controller.removeLayer('station-intensity-${intensity.type}'); + await controller.addLayer( + 'station-intensity', + 'station-intensity-${intensity.type}', + SymbolLayerProperties( + iconImage: 'intensity-${intensity.type}', + iconSize: [ + 'interpolate', + ['linear'], + ['zoom'], + 6, + 1, + 20, + 2, + ], + iconOpacity: [ + 'step', + ['zoom'], + 0.0, + 7, + 1.0, + ], + textAllowOverlap: true, + iconAllowOverlap: true, + ), + filter: [ + '==', + 'intensity', + intensity.type, + ], + sourceLayer: 'station-intensity', + minzoom: 7, + ); - /// 震度分布塗りつぶし (市区町村) - if (citiesItem != null) { - const name = 'areaInformationCityQuake'; - for (final item in citiesItem) { - await controller.removeLayer( - '$name-fill-${item.color.background.toHexStringRGB()}', - ); - await controller.addLayer( - 'eqmonitor_map', - '$name-fill-${item.color.background.toHexStringRGB()}' - '${item.intensity.type}', - FillLayerProperties( - fillColor: item.color.background.toHexStringRGB(), - ), - belowLayerId: 'areaForecastLocalEew_line', - sourceLayer: name, - filter: [ - 'in', - ['get', 'regioncode'], - [ - 'literal', - item.codes, - ], - ], - ); - await controller.addLayer( - 'eqmonitor_map', - '$name-line-${item.color.foreground.toHexStringRGB()}' - '${item.intensity.type}', - LineLayerProperties( - lineWidth: 0.4, - lineColor: item.color.foreground.toHexStringRGB(), - lineOpacity: 0.2, - ), - belowLayerId: 'areaForecastLocalEew_line', - sourceLayer: name, - filter: [ - 'in', - ['get', 'regioncode'], - [ - 'literal', - item.codes, - ], - ], - ); - } - } else if (regionsItem != null) { - const name = 'areaForecastLocalE'; - for (final item in regionsItem) { - await controller.removeLayer( - '$name-fill-${item.color.background.toHexStringRGB()}' - '${item.intensity.type}', - ); - await controller.addLayer( - 'eqmonitor_map', - '$name-fill-${item.color.background.toHexStringRGB()}', - FillLayerProperties( - fillColor: item.color.background.toHexStringRGB(), - ), - sourceLayer: name, - belowLayerId: 'areaForecastLocalEew_line', - filter: [ - 'in', - ['get', 'code'], - [ - 'literal', - item.codes, - ], - ], - ); - await controller.addLayer( - 'eqmonitor_map', - '$name-line-${item.color.foreground.toHexStringRGB()}${item.intensity.type}', - LineLayerProperties( - lineWidth: 0.4, - lineColor: item.color.foreground.toHexStringRGB(), - lineOpacity: 0.8, - ), - sourceLayer: name, - belowLayerId: 'areaForecastLocalEew_line', - filter: [ - 'in', - ['get', 'regioncode'], - [ - 'literal', - item.codes, - ], - ], - ); - } - } - }; + await controller.addLayer( + 'station-intensity', + 'station-intensity-${intensity.type}-circle', + SymbolLayerProperties( + iconImage: 'intensity-${intensity.type}-fill', + iconSize: [ + 'interpolate', + ['linear'], + ['zoom'], + 3, + 0.3, + 20, + 2, + ], + textAllowOverlap: true, + iconAllowOverlap: true, + ), + maxzoom: 7, + filter: [ + '==', + 'intensity', + intensity.type, + ], + sourceLayer: 'station-intensity', + ); + } + } - @override - Future Function(MaplibreMapController controller) get dispose => - (controller) async { - await ( - controller.clearFills(), - controller.clearFills(), - controller.clearLines(), - ).wait; - }; + Future dispose(map_libre.MaplibreMapController controller) => [ + controller.removeSource('station-intensity'), + controller.removeLayer('station-intensity'), + for (final intensity in JmaIntensity.values) + controller.removeLayer('station-intensity-${intensity.type}'), + ].wait; } -class _WidgetImageCapture extends HookWidget { - _WidgetImageCapture(this.onCapture, this.child); +class _HypocenterAction { + _HypocenterAction({ + required this.earthquake, + }); - // callback - final void Function(Uint8List bytes)? onCapture; - final Widget child; - final captureKey = GlobalKey(); + final EarthquakeData earthquake; - Future _capture() async { - await Future.delayed(const Duration(milliseconds: 100)); - final context = captureKey.currentContext!; - if (!context.mounted) { - return; + Future init(map_libre.MaplibreMapController controller) async { + /// 震源地 + final hypocenter = earthquake.earthquake?.hypocenter; + if (hypocenter != null) { + final coord = hypocenter.coordinate; + if (coord != null) { + await controller.setSymbolIconAllowOverlap(true); + await controller.setSymbolIconIgnorePlacement(true); + await controller.addGeoJsonSource('hypocenter', { + 'type': 'FeatureCollection', + 'features': [ + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [coord.lon, coord.lat], + }, + 'properties': { + 'magnitude': + earthquake.earthquake?.magnitude.value.toString() ?? + earthquake.earthquake?.magnitude.condition ?? + '調査中', + }, + } + ], + }); + await controller.addSymbolLayer( + 'hypocenter', + 'hypocenter', + const SymbolLayerProperties( + iconImage: 'hypocenter', + iconSize: [ + 'interpolate', + ['linear'], + ['zoom'], + 3, + 0.3, + 20, + 5, + ], + iconOpacity: [ + 'interpolate', + ['linear'], + ['zoom'], + 6, + 1.0, + 10, + 0.5, + ], + iconAllowOverlap: true, + ), + ); + } } - final widget = context.findRenderObject()! as RenderRepaintBoundary; - final image = await widget.toImage(); - final byteData = await image.toByteData(format: ImageByteFormat.png); - onCapture?.call(byteData!.buffer.asUint8List()); } - @override - Widget build(BuildContext context) { - useEffect( - () { - WidgetsBinding.instance.endOfFrame.then( - (_) => _capture(), - ); - return null; - }, - [], - ); - return RepaintBoundary( - key: captureKey, - child: child, - ); - } + Future dispose(map_libre.MaplibreMapController controller) => ( + controller.removeSource('hypocenter'), + controller.removeLayer('hypocenter') + ).wait; } -class _CaptureAllIntensityWidget extends StatelessWidget { - _CaptureAllIntensityWidget({required this.onCapture}); - final void Function(List<(JmaIntensity, Uint8List)> result) onCapture; +class _FillLpgmAction { + _FillLpgmAction({ + required this.regionsLpgmItem, + }); + + final List<_RegionLpgmColorItem> regionsLpgmItem; - final result = <(JmaIntensity, Uint8List)>[]; + static const name = 'areaForecastLocalE'; - void check() { - if (result.length == JmaIntensity.values.length) { - onCapture(result); + Future init(map_libre.MaplibreMapController controller) async { + /// 震度分布塗りつぶし (市区町村) + for (final item in regionsLpgmItem) { + await controller.removeLayer( + '$name-fill-${item.color.background.toHexStringRGB()}-' + '${item.intensity.type}', + ); + await controller.addLayer( + 'eqmonitor_map', + '$name-fill-${item.color.background.toHexStringRGB()}-' + '${item.intensity.type}-lpgm', + FillLayerProperties( + fillColor: item.color.background.toHexStringRGB(), + ), + sourceLayer: name, + belowLayerId: 'areaForecastLocalEew_line', + filter: [ + 'in', + ['get', 'code'], + [ + 'literal', + item.codes, + ], + ], + ); + await controller.addLayer( + 'eqmonitor_map', + '$name-line-${item.color.foreground.toHexStringRGB()}${item.intensity.type}', + LineLayerProperties( + lineWidth: 0.4, + lineColor: item.color.foreground.toHexStringRGB(), + lineOpacity: 0.8, + ), + sourceLayer: name, + belowLayerId: 'areaForecastLocalEew_line', + filter: [ + 'in', + ['get', 'regioncode'], + [ + 'literal', + item.codes, + ], + ], + ); } } - @override - Widget build(BuildContext context) { - return Stack( - children: JmaIntensity.values - .map( - (e) => _WidgetImageCapture( - (bytes) { - result.add((e, bytes)); - check(); - }, - JmaIntensityIcon( - intensity: e, - type: IntensityIconType.filled, - ), - ), - ) - .toList(), - ); + Future dispose(map_libre.MaplibreMapController controller) async { + await [ + for (final prefix in ['$name-fill', '$name-line']) + for (final item in regionsLpgmItem) + controller.removeLayer( + '$prefix-${item.color.background.toHexStringRGB()}-' + '${item.intensity.type}-lpgm', + ), + ].wait; } } diff --git a/lib/feature/earthquake_history_details/component/prefecture_intensity.dart b/lib/feature/earthquake_history_details/component/prefecture_intensity.dart index bbb895a28..709968187 100644 --- a/lib/feature/earthquake_history_details/component/prefecture_intensity.dart +++ b/lib/feature/earthquake_history_details/component/prefecture_intensity.dart @@ -3,7 +3,6 @@ import 'package:eqapi_types/eqapi_types.dart'; import 'package:eqmonitor/core/component/container/bordered_container.dart'; import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; import 'package:eqmonitor/core/component/intenisty/jma_intensity_icon.dart'; -import 'package:eqmonitor/core/extension/map_to_list.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; import 'package:eqmonitor/feature/home/component/sheet/sheet_header.dart'; import 'package:eqmonitor/gen/fonts.gen.dart'; @@ -11,6 +10,101 @@ import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; +import 'package:sheet/route.dart'; + +part 'prefecture_intensity.g.dart'; + +typedef _Arg = ({ + List? cities, + List prefectures, + List? stations +}); + +@riverpod +Future>> _calculator( + _CalculatorRef ref, + _Arg arg, +) => + compute<_Arg, Map>>( + ( + _Arg arg, + ) { + final cities = arg.cities; + final prefectures = arg.prefectures; + final stations = arg.stations; + + if (stations != null && cities != null) { + final stationsGroupedByIntensity = stations + .where((e) => e.maxInt != null) + .groupListsBy((e) => e.maxInt!); + return stationsGroupedByIntensity.map((intensity, stations) { + final stationsGroupedByCity = + stations.groupListsBy((e) => '${e.code.substring(0, 5)}00'); + // マージ + final mergedCity = stationsGroupedByCity.entries + .map((e) { + final cityCode = e.key; + final cityStations = e.value; + final city = + cities.firstWhereOrNull((e) => e.code == cityCode); + if (city == null) { + return null; + } + return _CityIntensity( + code: city.code, + name: city.name, + intensity: intensity, + stations: cityStations, + ); + }) + .whereType<_CityIntensity>() + .toList(); + + // 都道府県ごとにまとめる + final citiesGroupedByPrefecture = + mergedCity.groupListsBy((e) => e.code.substring(0, 2)); + // マージ + final mergedPrefecture = citiesGroupedByPrefecture.entries + .map((e) { + final prefectureCode = e.key; + final prefectureCities = e.value; + final prefecture = prefectures + .firstWhereOrNull((e) => e.code == prefectureCode); + if (prefecture == null) { + return null; + } + return _PrefectureIntensity( + code: prefecture.code, + name: prefecture.name, + intensity: intensity, + cities: prefectureCities, + ); + }) + .whereType<_PrefectureIntensity>() + .toList(); + return MapEntry(intensity, mergedPrefecture); + }); + } else { + return prefectures.groupListsBy((e) => e.maxInt!).map( + (intensity, prefectures) => MapEntry( + intensity, + prefectures + .map( + (e) => _PrefectureIntensity( + code: e.code, + name: e.name, + intensity: intensity, + cities: null, + ), + ) + .toList(), + ), + ); + } + }, + arg, + ); class PrefectureIntensityWidget extends HookConsumerWidget { const PrefectureIntensityWidget({ @@ -29,131 +123,219 @@ class PrefectureIntensityWidget extends HookConsumerWidget { if (intensity == null) { return const SizedBox.shrink(); } - final mergedPrefecturesFuture = useFuture( - // 重めなので別Isolateで計算 - compute( + final mergedPrefecturesFuture = ref.watch( + _calculatorProvider( ( - ({ - List? cities, - List prefectures, - List? stations - }) arg, - ) { - final result = arg.prefectures.map( - (e) => _MergedPrefectureIntensity.fromIntensity( - e, - arg.cities ?? [], - arg.stations ?? [], - ), - ); - - // 最大震度ごとにグループ - final intensityGroupedPrefectures = - result.groupListsBy((e) => e.prefecture.maxInt); - return intensityGroupedPrefectures; - }, - ( - prefectures: intensity.prefectures, cities: intensity.cities, + prefectures: intensity.prefectures, stations: intensity.stations, ), - debugLabel: 'prefecture', ), ); - final mergedPrefectures = mergedPrefecturesFuture.data; - - if (mergedPrefectures != null && mergedPrefectures.isNotEmpty) { - return BorderedContainer( - elevation: 1, - padding: const EdgeInsets.symmetric( - horizontal: 8, - vertical: 4, - ), - child: Column( - children: [ - const SheetHeader( - title: '各地の震度', - ), - // 震度一覧 - for (final kv in mergedPrefectures.toList - .where((kv) => kv.key != null) - .cast< - ({ - JmaIntensity key, - List<_MergedPrefectureIntensity> value - })>()) - ListTile( - leading: JmaIntensityIcon( - intensity: kv.key, - type: IntensityIconType.filled, - size: 16, - ), - title: Text( - '震度${kv.key.type}', - style: textTheme.titleMedium!.copyWith( - fontFamily: FontFamily.jetBrainsMono, - fontFamilyFallback: [FontFamily.notoSansJP], - ), - ), - subtitle: Text( - kv.value.map((e) => e.prefecture.name).join(', '), - ), - ), - ], - ), - ); - } - return switch (mergedPrefecturesFuture.connectionState) { - ConnectionState.waiting => const Center( + return switch (mergedPrefecturesFuture) { + AsyncLoading() => const Center( child: Padding( padding: EdgeInsets.all(8), child: CircularProgressIndicator.adaptive(), ), ), + AsyncData(:final value) => BorderedContainer( + elevation: 1, + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 4, + ), + child: Column( + children: [ + const SheetHeader( + title: '各地の震度', + ), + // 震度一覧 + for (final kv in value.entries) + () { + final intensity = kv.key; + final prefectures = kv.value; + final hasCities = prefectures.any( + (prefecture) => + prefecture.cities + ?.any((city) => city.stations.isNotEmpty) ?? + false, + ); + final title = switch (intensity) { + JmaIntensity.fiveUpperNoInput => '震度5弱以上未入電', + _ => + '震度${intensity.type.replaceAll("+", "強").replaceAll("-", "弱")}' + }; + return ListTile( + titleAlignment: ListTileTitleAlignment.titleHeight, + leading: JmaIntensityIcon( + intensity: intensity, + type: IntensityIconType.filled, + size: 16, + ), + title: Text( + title, + style: textTheme.titleMedium!.copyWith( + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: [FontFamily.notoSansJP], + ), + ), + subtitle: Text( + prefectures.map((e) => e.name).join(', '), + ), + onTap: hasCities + ? () => _PrefectureModalBottomSheet.show( + context: context, + intensity: kv.key, + prefectures: kv.value, + ) + : null, + trailing: + hasCities ? const Icon(Icons.chevron_right) : null, + ); + }(), + ], + ), + ), _ => const SizedBox.shrink(), }; } } -class _MergedPrefectureIntensity { - factory _MergedPrefectureIntensity.fromIntensity( - RegionIntensity prefecture, - List allCities, - List allStations, - ) { - final prefectureCode = prefecture.code; - final cities = allCities - .where((e) => e.code.startsWith(prefectureCode)) - .map((e) => _MergedCityIntensity.fromIntensity(e, allStations)) - .toList(); - return _MergedPrefectureIntensity._( - prefecture: prefecture, - cities: cities, +class _PrefectureModalBottomSheet extends StatelessWidget { + const _PrefectureModalBottomSheet({ + required this.intensity, + required this.prefectures, + }); + + static Future show({ + required BuildContext context, + required JmaIntensity intensity, + required List<_PrefectureIntensity> prefectures, + }) => + Navigator.of(context).push( + SheetRoute( + builder: (context) { + return _PrefectureModalBottomSheet( + intensity: intensity, + prefectures: prefectures, + ); + }, + ), + ); + + final JmaIntensity intensity; + final List<_PrefectureIntensity> prefectures; + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Text( + "震度${intensity.type.replaceAll("!5-", "震度5弱以上未入電").replaceAll('+', '強').replaceAll('-', '弱')}" + 'の地域', + ), + ), + body: ListView( + children: [ + for (final prefecture in prefectures) + _PrefectureListTile(prefecture: prefecture), + ], + ), ); } +} - _MergedPrefectureIntensity._({ +class _PrefectureListTile extends HookWidget { + const _PrefectureListTile({ required this.prefecture, + }); + + final _PrefectureIntensity prefecture; + + @override + Widget build(BuildContext context) { + final isExpanded = useState(false); + final shrinked = ListTile( + title: Text( + prefecture.name, + style: const TextStyle( + fontWeight: FontWeight.bold, + ), + ), + trailing: const Icon(Icons.expand_more), + onTap: () => isExpanded.value = true, + ); + final expanded = ListTile( + title: Text( + prefecture.name, + style: const TextStyle( + fontWeight: FontWeight.bold, + ), + ), + subtitle: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + for (final city in prefecture.cities ?? <_CityIntensity>[]) + Text.rich( + TextSpan( + children: [ + TextSpan( + text: '${city.name}: ', + style: const TextStyle( + fontWeight: FontWeight.bold, + ), + ), + for (final station in city.stations) + TextSpan( + text: '${station.name} ', + style: const TextStyle( + color: Colors.grey, + ), + ), + ], + ), + ), + ], + ), + onTap: () => isExpanded.value = false, + trailing: const Icon(Icons.expand_less), + ); + return AnimatedCrossFade( + firstChild: shrinked, + secondChild: expanded, + crossFadeState: isExpanded.value + ? CrossFadeState.showSecond + : CrossFadeState.showFirst, + duration: const Duration(milliseconds: 300), + ); + } +} + +class _PrefectureIntensity { + _PrefectureIntensity({ + required this.code, + required this.name, + required this.intensity, required this.cities, }); - final RegionIntensity prefecture; - final List<_MergedCityIntensity> cities; + final String code; + final String name; + final JmaIntensity intensity; + final List<_CityIntensity>? cities; } -class _MergedCityIntensity { - factory _MergedCityIntensity.fromIntensity( - RegionIntensity city, - List allStations, - ) { - // ex: `0320700` -> `03207` - final cityCode = city.code.substring(0, 5); - final stations = - allStations.where((e) => e.code.startsWith(cityCode)).toList(); - return _MergedCityIntensity._(city: city, stations: stations); - } - _MergedCityIntensity._({required this.city, required this.stations}); +class _CityIntensity { + _CityIntensity({ + required this.code, + required this.name, + required this.intensity, + required this.stations, + }); - final RegionIntensity city; + final String code; + final String name; + final JmaIntensity intensity; final List stations; } diff --git a/lib/feature/earthquake_history_details/component/prefecture_intensity.g.dart b/lib/feature/earthquake_history_details/component/prefecture_intensity.g.dart new file mode 100644 index 000000000..8f926d753 --- /dev/null +++ b/lib/feature/earthquake_history_details/component/prefecture_intensity.g.dart @@ -0,0 +1,186 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'prefecture_intensity.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$calculatorHash() => r'0d904c3c6d4fdb0bc1ea3e404efb330055a3ada8'; + +/// Copied from Dart SDK +class _SystemHash { + _SystemHash._(); + + static int combine(int hash, int value) { + // ignore: parameter_assignments + hash = 0x1fffffff & (hash + value); + // ignore: parameter_assignments + hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); + return hash ^ (hash >> 6); + } + + static int finish(int hash) { + // ignore: parameter_assignments + hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); + // ignore: parameter_assignments + hash = hash ^ (hash >> 11); + return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); + } +} + +/// See also [_calculator]. +@ProviderFor(_calculator) +const _calculatorProvider = _CalculatorFamily(); + +/// See also [_calculator]. +class _CalculatorFamily + extends Family>>> { + /// See also [_calculator]. + const _CalculatorFamily(); + + /// See also [_calculator]. + _CalculatorProvider call( + ({ + List? cities, + List prefectures, + List? stations + }) arg, + ) { + return _CalculatorProvider( + arg, + ); + } + + @override + _CalculatorProvider getProviderOverride( + covariant _CalculatorProvider provider, + ) { + return call( + provider.arg, + ); + } + + static const Iterable? _dependencies = null; + + @override + Iterable? get dependencies => _dependencies; + + static const Iterable? _allTransitiveDependencies = null; + + @override + Iterable? get allTransitiveDependencies => + _allTransitiveDependencies; + + @override + String? get name => r'_calculatorProvider'; +} + +/// See also [_calculator]. +class _CalculatorProvider extends AutoDisposeFutureProvider< + Map>> { + /// See also [_calculator]. + _CalculatorProvider( + ({ + List? cities, + List prefectures, + List? stations + }) arg, + ) : this._internal( + (ref) => _calculator( + ref as _CalculatorRef, + arg, + ), + from: _calculatorProvider, + name: r'_calculatorProvider', + debugGetCreateSourceHash: + const bool.fromEnvironment('dart.vm.product') + ? null + : _$calculatorHash, + dependencies: _CalculatorFamily._dependencies, + allTransitiveDependencies: + _CalculatorFamily._allTransitiveDependencies, + arg: arg, + ); + + _CalculatorProvider._internal( + super._createNotifier, { + required super.name, + required super.dependencies, + required super.allTransitiveDependencies, + required super.debugGetCreateSourceHash, + required super.from, + required this.arg, + }) : super.internal(); + + final ({ + List? cities, + List prefectures, + List? stations + }) arg; + + @override + Override overrideWith( + FutureOr>> Function( + _CalculatorRef provider) + create, + ) { + return ProviderOverride( + origin: this, + override: _CalculatorProvider._internal( + (ref) => create(ref as _CalculatorRef), + from: from, + name: null, + dependencies: null, + allTransitiveDependencies: null, + debugGetCreateSourceHash: null, + arg: arg, + ), + ); + } + + @override + AutoDisposeFutureProviderElement< + Map>> createElement() { + return _CalculatorProviderElement(this); + } + + @override + bool operator ==(Object other) { + return other is _CalculatorProvider && other.arg == arg; + } + + @override + int get hashCode { + var hash = _SystemHash.combine(0, runtimeType.hashCode); + hash = _SystemHash.combine(hash, arg.hashCode); + + return _SystemHash.finish(hash); + } +} + +mixin _CalculatorRef on AutoDisposeFutureProviderRef< + Map>> { + /// The parameter `arg` of this provider. + ({ + List? cities, + List prefectures, + List? stations + }) get arg; +} + +class _CalculatorProviderElement extends AutoDisposeFutureProviderElement< + Map>> with _CalculatorRef { + _CalculatorProviderElement(super.provider); + + @override + ({ + List? cities, + List prefectures, + List? stations + }) get arg => (origin as _CalculatorProvider).arg; +} +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/earthquake_history_details/component/prefecture_lpgm_intensity.dart b/lib/feature/earthquake_history_details/component/prefecture_lpgm_intensity.dart new file mode 100644 index 000000000..c99dc4ea1 --- /dev/null +++ b/lib/feature/earthquake_history_details/component/prefecture_lpgm_intensity.dart @@ -0,0 +1,166 @@ +import 'package:collection/collection.dart'; +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/component/container/bordered_container.dart'; +import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; +import 'package:eqmonitor/core/component/intenisty/jma_lg_intensity_icon.dart'; +import 'package:eqmonitor/core/extension/map_to_list.dart'; +import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; +import 'package:eqmonitor/feature/home/component/sheet/sheet_header.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; +import 'package:extensions/extensions.dart'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class PrefectureLpgmIntensityWidget extends HookConsumerWidget { + const PrefectureLpgmIntensityWidget({ + super.key, + required this.item, + }); + + final EarthquakeHistoryItem item; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final theme = Theme.of(context); + final textTheme = theme.textTheme; + + final intensity = item.earthquake.lgIntensity; + if (intensity == null) { + return const SizedBox.shrink(); + } + final mergedPrefecturesFuture = useFuture( + // 重めなので別Isolateで計算 + compute( + ( + ({ + List regions, + List? cities, + List? stations + }) arg, + ) { + final result = arg.regions.map( + (region) => _MergedRegionIntensity.fromIntensity( + region, + arg.cities ?? [], + arg.stations ?? [], + ), + ); + + // 最大震度ごとにグループ + final intensityGroupedPrefectures = + result.groupListsBy((e) => e.region.maxLgInt); + return intensityGroupedPrefectures; + }, + ( + cities: intensity.cities, + stations: intensity.stations, + regions: intensity.regions, + ), + debugLabel: 'prefecture', + ), + ); + final mergedPrefectures = mergedPrefecturesFuture.data; + + if (mergedPrefectures != null && mergedPrefectures.isNotEmpty) { + return BorderedContainer( + elevation: 1, + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 4, + ), + child: Column( + children: [ + const SheetHeader( + title: '各地の長周期地震動観測状況', + ), + // 長周期地震動階級の種別 + + // 震度一覧 + for (final kv in mergedPrefectures.toList + .where((kv) => kv.key != null) + .cast< + ({ + JmaLgIntensity key, + List<_MergedRegionIntensity> value + })>() + .sorted( + (a, b) => a.key < b.key ? 1 : -1, + )) + ListTile( + titleAlignment: ListTileTitleAlignment.titleHeight, + leading: JmaLgIntensityIcon( + intensity: kv.key, + type: IntensityIconType.filled, + size: 16, + ), + title: Text( + '長周期地震動階級${kv.key.type}', + style: textTheme.titleMedium!.copyWith( + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: [FontFamily.notoSansJP], + ), + ), + subtitle: Text( + kv.value.map((e) => e.region.name).join(', ').toHalfWidth, + ), + ), + ], + ), + ); + } + return switch (mergedPrefecturesFuture.connectionState) { + ConnectionState.waiting => const Center( + child: Padding( + padding: EdgeInsets.all(8), + child: CircularProgressIndicator.adaptive(), + ), + ), + _ => const SizedBox.shrink(), + }; + } +} + +class _MergedRegionIntensity { + factory _MergedRegionIntensity.fromIntensity( + RegionIntensity region, + List allCities, + List allStations, + ) { + final regionCode = region.code; + final cities = allCities + .where((e) => e.code.startsWith(regionCode)) + .map((e) => _MergedCityIntensity.fromIntensity(e, allStations)) + .toList(); + return _MergedRegionIntensity._( + region: region, + cities: cities, + ); + } + + _MergedRegionIntensity._({ + required this.region, + required this.cities, + }); + + final RegionIntensity region; + final List<_MergedCityIntensity> cities; +} + +class _MergedCityIntensity { + factory _MergedCityIntensity.fromIntensity( + RegionIntensity city, + List allStations, + ) { + // ex: `0320700` -> `03207` + final cityCode = city.code.substring(0, 5); + final stations = + allStations.where((e) => e.code.startsWith(cityCode)).toList(); + return _MergedCityIntensity._(city: city, stations: stations); + } + _MergedCityIntensity._({required this.city, required this.stations}); + + final RegionIntensity city; + final List stations; +} diff --git a/lib/feature/earthquake_history_details/screen/earthquake_history_details.dart b/lib/feature/earthquake_history_details/screen/earthquake_history_details.dart index 6267e3e8f..c5a951b59 100644 --- a/lib/feature/earthquake_history_details/screen/earthquake_history_details.dart +++ b/lib/feature/earthquake_history_details/screen/earthquake_history_details.dart @@ -7,66 +7,69 @@ import 'package:eqmonitor/core/component/sheet/basic_modal_sheet.dart'; import 'package:eqmonitor/core/component/sheet/sheet_floating_action_buttons.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; -import 'package:eqmonitor/core/provider/topology_map/provider/topology_maps.dart'; import 'package:eqmonitor/core/router/router.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; -import 'package:eqmonitor/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart'; import 'package:eqmonitor/feature/earthquake_history_details/component/earthquake_map.dart'; import 'package:eqmonitor/feature/earthquake_history_details/component/prefecture_intensity.dart'; +import 'package:eqmonitor/feature/earthquake_history_details/component/prefecture_lpgm_intensity.dart'; import 'package:eqmonitor/gen/fonts.gen.dart'; import 'package:extensions/extensions.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:flutter_markdown/flutter_markdown.dart'; import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:intl/intl.dart'; import 'package:sheet/sheet.dart'; +import 'package:url_launcher/url_launcher.dart'; class EarthquakeHistoryDetailsPage extends HookConsumerWidget { const EarthquakeHistoryDetailsPage({ - required this.eventId, + required this.data, super.key, }); - final int eventId; + final EarthquakeHistoryItem data; @override Widget build(BuildContext context, WidgetRef ref) { - // 当該データがアレばOK - final data = ref - .watch(earthquakeHistoryViewModelProvider) - .value - ?.firstWhereOrNull((e) => e.eventId == eventId); - if (data == null) { - return const Scaffold( - body: Center( - child: Text('当該データが見つかりませんでした\n再度地震の履歴を読み込んでください'), - ), - ); - } final sheetController = SheetController(); - final zoomCachedMapData = - ref.watch(zoomCachedProjectedFeatureLayerProvider).valueOrNull; - final navigateToHomeFunction = useState(null); final theme = Theme.of(context); final colorScheme = theme.colorScheme; + final telegramType = data.telegrams.map((e) => e.status).toSet() + ..remove(TelegramStatus.normal); + return Scaffold( body: Stack( children: [ - if (zoomCachedMapData == null) - const Center( - child: CircularProgressIndicator.adaptive(), - ) - else - RepaintBoundary( - child: EarthquakeMapWidget( - item: data, - showIntensityIcon: true, - mapData: zoomCachedMapData, - registerNavigateToHome: (func) => - navigateToHomeFunction.value = func, + EarthquakeMapWidget( + item: data, + showIntensityIcon: true, + registerNavigateToHome: (func) => + navigateToHomeFunction.value = func, + ), + if (telegramType.isNotEmpty) + Positioned( + right: 10, + top: 10, + child: SafeArea( + child: Text( + telegramType + .map( + (e) => switch (e) { + TelegramStatus.test => '試験報', + TelegramStatus.training => '訓練報', + TelegramStatus.normal => '', + }, + ) + .join('・'), + style: theme.textTheme.displayLarge!.copyWith( + color: colorScheme.error, + fontWeight: FontWeight.bold, + ), + ), ), ), Stack( @@ -128,21 +131,24 @@ class _Sheet extends StatelessWidget { bottom: false, child: BasicModalSheet( hasAppBar: false, + useColumn: true, controller: sheetController, children: [ _EarthquakeHypoInfoWidget(item: item), const Divider(), - _EarthquakeCommentWidget(item: item), PrefectureIntensityWidget(item: item), + if (item.earthquake.lgIntensity != null) + PrefectureLpgmIntensityWidget( + item: item, + ), + _EarthquakeCommentWidget(item: item), if (item.latestEewTelegram != null) ListTile( title: const Text('この地震に関する緊急地震速報'), subtitle: Text('${item.eewList.length}件'), - onTap: () => context.push( - EewDetailedHistoryRoute( - item.eventId, - ).location, - ), + onTap: () => EewHisotryDetailRoute( + $extra: item, + ).push(context), ), ], ), @@ -188,6 +194,7 @@ class _EarthquakeHypoInfoWidget extends ConsumerWidget { final hypoWidget = Row( textBaseline: TextBaseline.ideographic, mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.baseline, children: [ Text( '震源地', @@ -221,7 +228,19 @@ class _EarthquakeHypoInfoWidget extends ConsumerWidget { fontFamilyFallback: [FontFamily.notoSansJP], ), ) - : null; + : item.telegrams.firstOrNull != null + ? Text( + '${DateFormat('yyyy/MM/dd HH:mm頃').format( + item.telegrams.firstOrNull!.pressTime.toLocal(), + )}' + ' ' + '発表', + style: textTheme.bodyMedium!.copyWith( + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: [FontFamily.notoSansJP], + ), + ) + : null; // 「M 8.0 / 深さ100km」 final magnitudeWidget = Row( @@ -305,10 +324,9 @@ class _EarthquakeHypoInfoWidget extends ConsumerWidget { ); // M・深さ ともに不明の場合 final isMagnitudeAndDepthUnknown = - eq.earthquake?.magnitude.condition?.toHalfWidth == 'M不明' && - eq.earthquake?.hypocenter.depth == null && - item.telegrams - .any((element) => element.type == TelegramType.vxse53); + (eq.earthquake?.magnitude.condition?.toHalfWidth == 'M不明' || + eq.earthquake?.magnitude.value == null) && + eq.earthquake?.hypocenter.depth == null; final magnitudeDepthUnknownWidget = Row( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.baseline, @@ -336,19 +354,50 @@ class _EarthquakeHypoInfoWidget extends ConsumerWidget { ), ], ); + + // M・深さ・震源 ともに不明の場合 + final isEarthquakeNull = eq.earthquake == null; + + final earthquakeNullWidget = Row( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.baseline, + textBaseline: TextBaseline.alphabetic, + children: [ + Text( + 'M・深さ・震源地', + style: textTheme.titleMedium!.copyWith( + color: textTheme.titleMedium!.color!.withOpacity(0.8), + ), + ), + const SizedBox(width: 4), + Text( + item.telegrams.any((element) => element.type == TelegramType.vxse53) + ? '不明' + : '調査中', + style: textTheme.displaySmall!.copyWith( + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: [FontFamily.notoSansJP], + ), + ), + ], + ); final body = Wrap( spacing: 8, crossAxisAlignment: WrapCrossAlignment.center, alignment: WrapAlignment.center, children: [ const Row(), - if (isMagnitudeAndDepthUnknown) - magnitudeDepthUnknownWidget - else ...[ + if (isEarthquakeNull) + earthquakeNullWidget + else if (isMagnitudeAndDepthUnknown) ...[ + magnitudeDepthUnknownWidget, + hypoWidget, + ] else ...[ magnitudeWidget, depthWidget, + hypoWidget, ], - hypoWidget, if (timeWidget != null) timeWidget, ], ); @@ -401,15 +450,28 @@ class _EarthquakeCommentWidget extends StatelessWidget { return BorderedContainer( padding: const EdgeInsets.all(8), elevation: 1, - child: Text( - switch ((comment.forecast?.text, comment.free)) { + child: Markdown( + data: switch ((comment.forecast?.text, comment.free)) { (final String text, final String free) => '$text\n\n$free', (final String text, _) => text, (_, final String free) => free, _ => '', } .toHalfWidth, - style: Theme.of(context).textTheme.bodyMedium, + selectable: true, + softLineBreak: true, + shrinkWrap: true, + physics: const NeverScrollableScrollPhysics(), + padding: EdgeInsets.zero, + onTapLink: (text, href, title) async { + final uri = Uri.tryParse(href.toString()); + if (uri == null) { + return; + } + await launchUrl( + uri, + ); + }, ), ); } diff --git a/lib/feature/eew_detailed_history/eew_detailed_history_screen.dart b/lib/feature/eew_detailed_history/eew_detailed_history_screen.dart index 8489a2779..b50d08a54 100644 --- a/lib/feature/eew_detailed_history/eew_detailed_history_screen.dart +++ b/lib/feature/eew_detailed_history/eew_detailed_history_screen.dart @@ -1,9 +1,7 @@ -import 'package:collection/collection.dart'; import 'package:eqapi_types/eqapi_types.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; -import 'package:eqmonitor/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart'; import 'package:eqmonitor/gen/fonts.gen.dart'; import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; @@ -12,28 +10,22 @@ import 'package:two_dimensional_scrollables/two_dimensional_scrollables.dart'; class EewDetailedHistoryScreen extends HookConsumerWidget { const EewDetailedHistoryScreen({ - required this.eventId, + required this.data, super.key, }); - final int eventId; + final EarthquakeHistoryItem data; @override Widget build(BuildContext context, WidgetRef ref) { final theme = Theme.of(context); final colorScheme = theme.colorScheme; - final data = ref - .watch(earthquakeHistoryViewModelProvider) - .value - ?.firstWhereOrNull((e) => e.eventId == eventId); - final eews = data?.eewList.reversed.toList(); - if (eews == null) { - return Scaffold( + final eews = data.eewList.reversed.toList(); + if (eews.isEmpty) { + return const Scaffold( body: Center( child: Text( - data == null - ? '当該IDの地震情報が見つかりませんでした。\n再読み込みしてください' - : '当該IDの地震情報に対する緊急地震速報が見つかりませんでした。', + '当該IDの地震情報に対する緊急地震速報が見つかりませんでした。', ), ), ); @@ -96,10 +88,10 @@ class EewDetailedHistoryScreen extends HookConsumerWidget { value: (eew, body) { if (body is TelegramVxse45Body) { final maxLgInt = body.forecastMaxLgInt?.toDisplayMaxLgInt(); - if (maxLgInt == null || maxLgInt.maxLgInt == null) { + if (maxLgInt == null) { return '不明'; } - return '${maxLgInt.maxLgInt?.type}${maxLgInt.isOver ? "程度以上" : ""}'; + return '${maxLgInt.maxLgInt.type}${maxLgInt.isOver ? "程度以上" : ""}'; } return '---'; }, diff --git a/lib/feature/home/component/eew/eew_widget.dart b/lib/feature/home/component/eew/eew_widget.dart index 71656e9fa..a1b518ffc 100644 --- a/lib/feature/home/component/eew/eew_widget.dart +++ b/lib/feature/home/component/eew/eew_widget.dart @@ -2,15 +2,15 @@ import 'package:collection/collection.dart'; import 'package:eqapi_types/eqapi_types.dart'; import 'package:eqmonitor/core/component/chip/custom_chip.dart'; import 'package:eqmonitor/core/component/intenisty/jma_forecast_intensity_icon.dart'; +import 'package:eqmonitor/core/component/intenisty/jma_forecast_lg_intensity_icon.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; import 'package:eqmonitor/core/router/router.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; +import 'package:eqmonitor/feature/home/features/eew/provider/eew_alive_telegram.dart'; import 'package:eqmonitor/gen/fonts.gen.dart'; import 'package:extensions/extensions.dart'; import 'package:flutter/material.dart'; -import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:intl/intl.dart'; @@ -19,7 +19,7 @@ class EewWidgets extends ConsumerWidget { @override Widget build(BuildContext context, WidgetRef ref) { - final state = ref.watch(eewTelegramProvider); + final state = ref.watch(eewAliveTelegramProvider) ?? []; if (state.isEmpty) { return const SizedBox.shrink(); } @@ -79,11 +79,7 @@ class EewWidget extends ConsumerWidget { horizontal: 8, vertical: 4, ), - child: Row( - children: [ - Text(eew.text), - ], - ), + child: Text(eew.text), ), ); } @@ -333,9 +329,10 @@ class EewWidget extends ConsumerWidget { const Divider(), ] : null; + final maxLgInt = eew.forecastMaxLgInt?.toDisplayMaxLgInt(); final card = InkWell( onLongPress: () => - context.push(EewDetailedHistoryRoute(telegram.eventId).location), + EewHisotryDetailRoute($extra: item).push(context), child: Card( margin: const EdgeInsets.all(4), elevation: 0, @@ -366,6 +363,37 @@ class EewWidget extends ConsumerWidget { Expanded(child: body), ], ), + if (maxLgInt != null && + ![ + JmaForecastLgIntensity.zero, + JmaForecastLgIntensity.unknown, + ].contains(maxLgInt.maxLgInt)) ...[ + Row( + children: [ + Column( + children: [ + const Text('最大LPGM'), + JmaForecastLgIntensityWidget( + intensity: maxLgInt.maxLgInt, + ), + ], + ), + Expanded( + child: Column( + children: [ + Text( + '予想最大長周期地震動階級 ${maxLgInt.maxLgInt.type}', + style: textTheme.titleMedium!.copyWith( + fontWeight: FontWeight.bold, + ), + ), + const Text('高層階では特に周期の長い揺れに注意してください'), + ], + ), + ), + ], + ), + ], ], ), ), @@ -374,7 +402,7 @@ class EewWidget extends ConsumerWidget { return Stack( alignment: Alignment.center, children: [ - if (index != null) + if (index != null) ...[ Center( child: FittedBox( child: Text( @@ -389,6 +417,24 @@ class EewWidget extends ConsumerWidget { ), ), ), + Center( + child: FittedBox( + child: Text( + (index).toString(), + style: TextStyle( + fontSize: 100, + fontWeight: FontWeight.w900, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: const [FontFamily.notoSansJP], + foreground: Paint() + ..style = PaintingStyle.stroke + ..strokeWidth = 2 + ..color = textTheme.bodyMedium!.color!.withOpacity(0.3), + ), + ), + ), + ), + ], card, if (telegram.status != TelegramStatus.normal) Center( diff --git a/lib/feature/home/component/map/eew_estimated_intensity_widget.dart b/lib/feature/home/component/map/eew_estimated_intensity_widget.dart deleted file mode 100644 index ac1191783..000000000 --- a/lib/feature/home/component/map/eew_estimated_intensity_widget.dart +++ /dev/null @@ -1,135 +0,0 @@ -import 'dart:developer'; - -import 'package:eqmonitor/core/component/map/data/model/mutable_projected_feature_layer.dart'; -import 'package:eqmonitor/core/component/map/model/map_config.dart'; -import 'package:eqmonitor/core/component/map/model/map_state.dart'; -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; -import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; -import 'package:eqmonitor/core/provider/topology_map/provider/topology_maps.dart'; -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:topo_map/topo_map.dart'; - -class EewEstimatedIntensityWidget extends HookConsumerWidget { - const EewEstimatedIntensityWidget({ - super.key, - required this.mapKey, - this.onlyBorder = false, - }); - final Key mapKey; - final bool onlyBorder; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final state = ref.watch(MapViewModelProvider(mapKey)); - final zoomCachedProjectedFeatureLayer = - ref.watch(zoomCachedProjectedFeatureLayerProvider); - - final isDark = Theme.of(context).brightness == Brightness.dark; - - final eews = ref.watch(eewEstimatedIntensityListProvider); - - final colorScheme = ref.watch(intensityColorProvider); - return switch (zoomCachedProjectedFeatureLayer.value) { - null => const SizedBox.shrink(), - final data => CustomPaint( - size: Size.infinite, - willChange: true, - isComplex: true, - painter: _EewEstimatedIntensityPainter( - state: state, - onlyBorder: onlyBorder, - colorScheme: - isDark ? MapColorScheme.dark() : MapColorScheme.light(), - maps: data, - areas: eews - .map( - (e) => ( - e.$1, - colorScheme.fromJmaForecastIntensity(e.$2).background - ), - ) - .toList(), - ), - ), - }; - } -} - -class _EewEstimatedIntensityPainter extends CustomPainter { - _EewEstimatedIntensityPainter({ - required this.state, - required this.onlyBorder, - required this.colorScheme, - required this.maps, - required this.areas, - }); - - final MapState state; - final bool onlyBorder; - final MapColorScheme colorScheme; - final Map maps; - final List<(int, Color)> areas; - - @override - void paint(Canvas canvas, Size size) { - for (final e in areas) { - drawAreaPolygon( - canvas, - size, - e.$1, - e.$2, - ); - } - return; - } - - void drawAreaPolygon( - Canvas canvas, - Size size, - int id, - Color color, - ) { - for (final e in maps[LandLayerType.earthquakeInformationSubdivisionArea]! - .projectedPolygonFeatures - .where( - (element) => (element.code ?? 1) == id, - )) { - final points = e.getPoints(state.zoomLevel.truncate()); - final offsets = points.map(state.globalPointToOffset).toList(); - if (!offsets.any( - (e) => e.dx > 0 && e.dy > 0 && e.dx < size.width && e.dy < size.height, - )) { - continue; - } - - final path = Path() - ..addPolygon( - offsets, - true, - ); - - try { - canvas.drawPath( - path, - Paint() - ..style = PaintingStyle.fill - ..color = color - ..isAntiAlias = true, - ); - } on Exception catch (e) { - log(e.toString()); - } - } - } - - @override - bool shouldRepaint(covariant _EewEstimatedIntensityPainter oldDelegate) => - oldDelegate.state != state || - oldDelegate.colorScheme != colorScheme || - oldDelegate.onlyBorder != onlyBorder || - oldDelegate.maps != maps || - oldDelegate.areas != areas; -} diff --git a/lib/feature/home/component/map/eew_hypocenter_widget.dart b/lib/feature/home/component/map/eew_hypocenter_widget.dart deleted file mode 100644 index e69bab901..000000000 --- a/lib/feature/home/component/map/eew_hypocenter_widget.dart +++ /dev/null @@ -1,267 +0,0 @@ -import 'package:eqapi_types/extension/telegram_v3.dart'; -import 'package:eqapi_types/model/telegram_v3.dart'; -import 'package:eqmonitor/core/component/map/model/map_state.dart'; -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; -import 'package:eqmonitor/gen/fonts.gen.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -class EewHypocenterWidget extends HookConsumerWidget { - const EewHypocenterWidget({required this.mapKey, super.key}); - - final Key mapKey; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final opacityController = useAnimationController( - duration: const Duration(milliseconds: 500), - ); - final opacityAnimation = useAnimation( - Tween( - begin: 1, - end: 0.4, - ).animate(opacityController), - ); - - useEffect( - () { - opacityController - ..addStatusListener((status) { - if (status == AnimationStatus.completed) { - opacityController.reverse(); - } else if (status == AnimationStatus.dismissed) { - opacityController.forward(); - } - }) - ..forward(); - return null; - }, - [], - ); - - final state = ref.watch(MapViewModelProvider(mapKey)); - final eewTelegrams = ref.watch(eewTelegramProvider); - - final isDark = Theme.of(context).brightness == Brightness.dark; - - final hypoWidget = CustomPaint( - painter: _HypocenterPainter( - state: state, - hypocenters: eewTelegrams - .where( - (e) => e.latestEew != null && e.latestEew is TelegramVxse45Body, - ) - .map((e) => e.latestEew! as TelegramVxse45Body) - .map( - (e) => _HypoModel( - type: (e.isPlum || e.isIpfOnePoint || e.isLevelEew) - ? _HypocenterType.lowPrecise - : _HypocenterType.normal, - globalPoint: e.hypocenter?.coordinate != null - ? WebMercatorProjection().project(e.hypocenter!.coordinate!) - : null, - magnitude: e.magnitude, - depth: e.depth, - ), - ) - .toList(), - textColor: isDark ? Colors.white : Colors.black, - ), - size: Size.infinite, - ); - return Opacity( - opacity: opacityAnimation, - child: hypoWidget, - ); - } -} - -class _HypocenterPainter extends CustomPainter { - _HypocenterPainter({ - required this.state, - required this.hypocenters, - required this.textColor, - }); - - final MapState state; - final List<_HypoModel> hypocenters; - final Color textColor; - - @override - void paint(Canvas canvas, Size size) { - for (final hypo in hypocenters) { - if (hypo.globalPoint == null) { - continue; - } - final offset = state.globalPointToOffset(hypo.globalPoint!); - // 画面外だったら描画しない - if (offset.dx < -10 || - offset.dx > size.width + 10 || - offset.dy < -10 || - offset.dy > size.height + 10) { - continue; - } - if (hypo.type == _HypocenterType.lowPrecise) { - // 円を描く - canvas - ..drawCircle( - offset, - 10, - Paint() - ..color = Colors.black - ..isAntiAlias = true - ..style = PaintingStyle.stroke - ..strokeWidth = 10, - ) - ..drawCircle( - offset, - 10, - Paint() - ..color = Colors.white - ..isAntiAlias = true - ..style = PaintingStyle.stroke - ..strokeWidth = 8, - ) - ..drawCircle( - offset, - 10, - Paint() - ..color = Colors.red - ..isAntiAlias = true - ..style = PaintingStyle.stroke - ..strokeWidth = 4, - ); - // 「仮定震源」 - final textPainter = TextPainter( - text: const TextSpan( - text: '仮定震源', - style: TextStyle( - color: Colors.red, - fontSize: 12, - fontWeight: FontWeight.w900, - fontFamily: FontFamily.notoSansJP, - ), - ), - textDirection: TextDirection.ltr, - )..layout(); - textPainter.paint( - canvas, - Offset( - offset.dx - textPainter.width / 2, - offset.dy + 15, - ), - ); - } - if (hypo.type == _HypocenterType.normal) { - // ×印を描く - canvas - ..drawLine( - Offset(offset.dx - 10, offset.dy - 10), - Offset(offset.dx + 10, offset.dy + 10), - Paint() - ..color = const Color.fromARGB(255, 0, 0, 0) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 12, - ) - ..drawLine( - Offset(offset.dx + 10, offset.dy - 10), - Offset(offset.dx - 10, offset.dy + 10), - Paint() - ..color = const Color.fromARGB(255, 0, 0, 0) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 12, - ) - ..drawLine( - Offset(offset.dx - 10, offset.dy - 10), - Offset(offset.dx + 10, offset.dy + 10), - Paint() - ..color = const Color.fromARGB(255, 255, 255, 255) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 10, - ) - ..drawLine( - Offset(offset.dx + 10, offset.dy - 10), - Offset(offset.dx - 10, offset.dy + 10), - Paint() - ..color = const Color.fromARGB(255, 255, 255, 255) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 10, - ) - ..drawLine( - Offset(offset.dx - 10, offset.dy - 10), - Offset(offset.dx + 10, offset.dy + 10), - Paint() - ..color = const Color.fromARGB(255, 255, 0, 0) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 7, - ) - ..drawLine( - Offset(offset.dx + 10, offset.dy - 10), - Offset(offset.dx - 10, offset.dy + 10), - Paint() - ..color = const Color.fromARGB(255, 255, 0, 0) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 7, - ); - // マグニチュードを描く - final textPainter = TextPainter( - text: TextSpan( - text: 'M${hypo.magnitude}', - style: TextStyle( - fontSize: 15, - fontFamily: FontFamily.jetBrainsMono, - fontWeight: FontWeight.w900, - color: textColor, - ), - ), - textDirection: TextDirection.ltr, - )..layout(); - textPainter.paint( - canvas, - Offset( - offset.dx - textPainter.width / 2, - offset.dy - textPainter.height / 2 + 30, - ), - ); - } - } - } - - @override - bool shouldRepaint(covariant _HypocenterPainter oldDelegate) => true; -} - -enum _HypocenterType { - normal, - lowPrecise, - ; -} - -class _HypoModel { - _HypoModel({ - required this.type, - required this.globalPoint, - required this.magnitude, - required this.depth, - }); - - final _HypocenterType type; - final GlobalPoint? globalPoint; - final double? magnitude; - final int? depth; -} diff --git a/lib/feature/home/component/map/eew_pswave_arrival_circle.dart b/lib/feature/home/component/map/eew_pswave_arrival_circle.dart deleted file mode 100644 index 8a6c87ae2..000000000 --- a/lib/feature/home/component/map/eew_pswave_arrival_circle.dart +++ /dev/null @@ -1,203 +0,0 @@ -import 'dart:ui' as ui; - -import 'package:eqapi_types/model/telegram_v3.dart'; -import 'package:eqmonitor/core/component/map/model/map_state.dart'; -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; -import 'package:eqmonitor/feature/home/features/travel_time/model/travel_time_table.dart'; -import 'package:eqmonitor/feature/home/features/travel_time/provider/travel_time_provider.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:lat_lng/lat_lng.dart'; -import 'package:latlong2/latlong.dart' as latlong2; - -class EewPsWaveArrivalCircleWidget extends HookConsumerWidget { - factory EewPsWaveArrivalCircleWidget.border({ - required Key mapKey, - }) => - EewPsWaveArrivalCircleWidget._( - mapKey: mapKey, - drawBorder: true, - ); - - factory EewPsWaveArrivalCircleWidget.gradient({ - required Key mapKey, - }) => - EewPsWaveArrivalCircleWidget._( - mapKey: mapKey, - drawGradient: true, - ); - - const EewPsWaveArrivalCircleWidget._({ - required this.mapKey, - this.drawBorder = false, - this.drawGradient = false, - }); - final Key mapKey; - final bool drawBorder; - final bool drawGradient; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final state = ref.watch(mapViewModelProvider(mapKey)); - final travelTimeTables = ref.watch(travelTimeProvider); - final eews = ref.watch(eewFilteredTelegramProvider); - - final controller = useAnimationController( - duration: const Duration(microseconds: 78000), - ); - useAnimation(controller); - useEffect( - () { - controller.repeat(); - return null; - }, - [], - ); - - final hypoWidget = CustomPaint( - willChange: true, - painter: _HypocenterPainter( - state: state, - eews: eews, - travelTimeTables: travelTimeTables, - drawBorder: drawBorder, - drawGradient: drawGradient, - ), - size: Size.infinite, - ); - return hypoWidget; - } -} - -class _HypocenterPainter extends CustomPainter { - _HypocenterPainter({ - required this.state, - required this.eews, - required this.travelTimeTables, - required this.drawBorder, - required this.drawGradient, - }); - - final MapState state; - List<(TelegramVxse45Body, TelegramV3)> eews; - final TravelTimeTables travelTimeTables; - - final bool drawBorder; - final bool drawGradient; - - @override - void paint(Canvas canvas, Size size) { - final projection = WebMercatorProjection(); - for (final e in eews) { - final eew = e.$1; - final telegram = e.$2; - final hypo = latlong2.LatLng( - eew.hypocenter!.coordinate!.lat, - eew.hypocenter!.coordinate!.lon, - ); - final globalPoint = WebMercatorProjection().project( - eew.hypocenter!.coordinate!, - ); - - final travel = travelTimeTables.getValue( - eew.depth!, - DateTime.now() - .difference( - eew.originTime!.toLocal(), - ) - .inMilliseconds / - 1000, - ); - - final sOffsets = []; - - final offset = state.globalPointToOffset(globalPoint); - if (travel.sDistance != null) { - for (final bearing in List.generate(360, (index) => index)) { - final result = const latlong2.Distance().offset( - hypo, - ((travel.sDistance!) * 1000).toInt(), - bearing, - ); - sOffsets.add( - state.globalPointToOffset( - projection.project( - LatLng(result.latitude, result.longitude), - ), - ), - ); - } - final isWarning = telegram.headline?.contains('強い揺れ') ?? false; - final sPath = Path()..addPolygon(sOffsets, true); - if (drawGradient) { - canvas.drawPath( - sPath, - Paint() - ..shader = ui.Gradient.radial( - offset, - ((sOffsets.firstOrNull ?? Offset.zero) - offset).distance, - isWarning - ? [ - const ui.Color.fromARGB(255, 255, 0, 0).withOpacity(0), - const ui.Color.fromARGB(255, 255, 0, 0) - .withOpacity(0.3), - ] - : [ - const ui.Color.fromARGB(255, 255, 89, 0).withOpacity(0), - const ui.Color.fromARGB(255, 255, 89, 0) - .withOpacity(0.3), - ], - ), - ); - } - if (drawBorder) { - canvas.drawPath( - sPath, - Paint() - ..color = isWarning - ? const ui.Color.fromARGB(255, 255, 0, 0) - : const ui.Color.fromARGB(255, 255, 89, 0) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 1, - ); - } - } - // Pwave - if (travel.pDistance != null && drawBorder) { - final pOffsets = []; - for (final bearing in List.generate(360, (index) => index)) { - final result = const latlong2.Distance().offset( - hypo, - ((travel.pDistance!) * 1000).toInt(), - bearing, - ); - pOffsets.add( - state.globalPointToOffset( - projection.project( - LatLng(result.latitude, result.longitude), - ), - ), - ); - } - final pPath = Path()..addPolygon(pOffsets, true); - canvas.drawPath( - pPath, - Paint() - ..color = const ui.Color.fromARGB(255, 0, 0, 255) - ..isAntiAlias = true - ..strokeCap = StrokeCap.square - ..style = PaintingStyle.stroke - ..strokeWidth = 0, - ); - } - } - } - - @override - bool shouldRepaint(covariant _HypocenterPainter oldDelegate) => true; -} diff --git a/lib/feature/home/component/map/kmoni_map_widget.dart b/lib/feature/home/component/map/kmoni_map_widget.dart deleted file mode 100644 index 966e9bf69..000000000 --- a/lib/feature/home/component/map/kmoni_map_widget.dart +++ /dev/null @@ -1,207 +0,0 @@ -import 'dart:math'; - -import 'package:eqapi_types/model/telegram_v3.dart'; -import 'package:eqmonitor/core/component/map/model/map_state.dart'; -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; -import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; -import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/has_eew_provider.dart'; -import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart'; -import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart'; -import 'package:eqmonitor/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart'; -import 'package:eqmonitor/gen/fonts.gen.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -class KmoniMapWidget extends HookConsumerWidget { - const KmoniMapWidget({ - super.key, - required this.mapKey, - }); - final Key mapKey; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final state = ref.watch(MapViewModelProvider(mapKey)); - final kmoniState = ref - .watch(kmoniViewModelProvider.select((value) => value.analyzedPoints)); - final kmoniSettingsState = ref.watch(kmoniSettingsProvider); - final hasEew = ref.watch(hasEewProvider); - return CustomPaint( - painter: _KmoniPainter( - state: state, - kmoniState: kmoniState, - settingsState: kmoniSettingsState, - colorModel: ref.watch(intensityColorProvider), - drawBorder: hasEew, - ), - size: Size.infinite, - willChange: true, - ); - } -} - -class _KmoniPainter extends CustomPainter { - _KmoniPainter({ - required this.state, - required this.kmoniState, - required this.settingsState, - required this.colorModel, - required this.drawBorder, - }); - - final MapState state; - final List? kmoniState; - final KmoniSettingsState settingsState; - final IntensityColorModel colorModel; - final bool drawBorder; - - @override - void paint(Canvas canvas, Size size) { - if (kmoniState == null) { - return; - } - final zoomLevel = pow(state.zoomLevel, 1 / 2); - final circleSize = switch (zoomLevel) { - < 3 => 2.0, - > 20 => min(zoomLevel, 10), - _ => zoomLevel * 0.4, - }; - - for (final e in kmoniState!) { - if (e.intensityValue == null) { - continue; - } - - final offset = state.globalPointToOffset( - e.point.globalPoint, - ); - // 画面外の場合は描画しない - if (offset.dx < -10 || - offset.dx > size.width + 10 || - offset.dy < -10 || - offset.dy > size.height + 10) { - continue; - } - // 任意のどれか - final intensity = e.intensityValue!.toJmaForecastIntensity; - - if (settingsState.isUpper0Only) { - if (intensity == null) { - continue; - } - if (intensity == JmaForecastIntensity.zero) { - // グレー - final paint = Paint() - ..color = Colors.grey.withOpacity(0.8) - ..style = PaintingStyle.fill; - canvas.drawCircle( - offset, - circleSize.toDouble(), - paint, - ); - if (drawBorder) { - final paint = Paint() - ..color = Colors.white.withOpacity(0.8) - ..style = PaintingStyle.stroke - ..strokeWidth = 1; - canvas.drawCircle( - offset, - circleSize.toDouble(), - paint, - ); - } - continue; - } - } - if (settingsState.isShowIntensityIcon) { - if (intensity == null || intensity == JmaForecastIntensity.zero) { - final paint = Paint() - ..color = e.intensityColor ?? Colors.transparent - ..style = PaintingStyle.fill; - canvas.drawCircle( - offset, - circleSize.toDouble(), - paint, - ); - continue; - } - final colorScheme = colorModel.fromJmaForecastIntensity(intensity); - final (fg, bg) = (colorScheme.foreground, colorScheme.background); - canvas - ..drawCircle( - offset, - circleSize.toDouble() * 1.5, - Paint() - ..color = e.intensityColor ?? Colors.transparent - ..style = PaintingStyle.fill, - ) - ..drawCircle( - offset, - circleSize.toDouble() * 1.3, - Paint() - ..color = bg - ..style = PaintingStyle.fill, - ); - final textStyle = TextStyle( - color: fg, - fontSize: circleSize.toDouble() * 2, - fontWeight: FontWeight.w800, - fontFamily: FontFamily.jetBrainsMono, - ); - final textPainter = TextPainter( - text: TextSpan( - text: intensity.type, - style: textStyle, - ), - textDirection: TextDirection.ltr, - textAlign: TextAlign.center, - )..layout(); - textPainter.paint( - canvas, - offset.translate(-textPainter.width / 2, -textPainter.height / 2), - ); - continue; - } - - final paint = Paint() - ..color = e.intensityColor ?? Colors.transparent - ..style = PaintingStyle.fill; - canvas.drawCircle( - offset, - circleSize.toDouble(), - paint, - ); - if (drawBorder) { - final paint = Paint() - ..color = Colors.grey.withOpacity(0.8) - ..style = PaintingStyle.stroke - ..strokeWidth = 1; - canvas.drawCircle( - offset, - circleSize.toDouble(), - paint, - ); - } - } - } - - @override - bool shouldRepaint(covariant _KmoniPainter oldDelegate) => true; -} - -extension JmaForecastIntensityDouble on double { - JmaForecastIntensity? get toJmaForecastIntensity => switch (this) { - < -0.5 => null, - < 0.5 => JmaForecastIntensity.zero, - < 1.5 => JmaForecastIntensity.one, - < 2.5 => JmaForecastIntensity.two, - < 3.5 => JmaForecastIntensity.three, - < 4.5 => JmaForecastIntensity.four, - < 5.0 => JmaForecastIntensity.fiveLower, - < 5.5 => JmaForecastIntensity.fiveUpper, - < 6.0 => JmaForecastIntensity.sixLower, - < 6.5 => JmaForecastIntensity.sixUpper, - _ => JmaForecastIntensity.seven, - }; -} diff --git a/lib/feature/home/component/parameter/parameter_loader_widget.dart b/lib/feature/home/component/parameter/parameter_loader_widget.dart new file mode 100644 index 000000000..cb5ebae09 --- /dev/null +++ b/lib/feature/home/component/parameter/parameter_loader_widget.dart @@ -0,0 +1,49 @@ +import 'package:eqmonitor/core/component/container/bordered_container.dart'; +import 'package:eqmonitor/core/provider/jma_parameter/jma_parameter.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class ParameterLoaderWidget extends HookConsumerWidget { + const ParameterLoaderWidget({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + useEffect( + () { + WidgetsBinding.instance.endOfFrame.then( + (_) {}, + ); + return null; + }, + [], + ); + final state = ref.watch(jmaParameterProvider); + return switch (state) { + AsyncData() || AsyncError() => const AnimatedSwitcher( + duration: Duration(milliseconds: 150), + child: SizedBox.shrink( + key: ValueKey('non'), + ), + ), + _ => const AnimatedSwitcher( + duration: Duration(milliseconds: 150), + child: BorderedContainer( + key: ValueKey('loading'), + elevation: 1, + child: Row( + children: [ + Text('観測点の情報を取得中...'), + SizedBox(width: 8), + SizedBox( + width: 16, + height: 16, + child: CircularProgressIndicator.adaptive(), + ), + ], + ), + ), + ), + }; + } +} diff --git a/lib/feature/home/component/render/hypocenter_render.dart b/lib/feature/home/component/render/hypocenter_render.dart new file mode 100644 index 000000000..387305319 --- /dev/null +++ b/lib/feature/home/component/render/hypocenter_render.dart @@ -0,0 +1,187 @@ +import 'dart:typed_data'; +import 'dart:ui'; + +import 'package:eqmonitor/core/provider/capture/intensity_icon_render.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; +import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class HypocenterRenderWidget extends ConsumerWidget { + const HypocenterRenderWidget({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return Row( + children: [ + _HypocenterRender( + type: HypocenterType.normal, + onRendered: (data) => + ref.read(hypocenterIconRenderProvider.notifier).onRendered(data), + ), + _HypocenterRender( + type: HypocenterType.lowPrecise, + onRendered: (data) => ref + .read(hypocenterLowPreciseIconRenderProvider.notifier) + .onRendered(data), + ), + ], + ); + } +} + +class _HypocenterRender extends HookConsumerWidget { + const _HypocenterRender({ + required this.onRendered, + required this.type, + }); + final void Function(Uint8List data) onRendered; + final HypocenterType type; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final key = GlobalObjectKey('hypocenter$type'); + + useEffect( + () { + WidgetsBinding.instance.endOfFrame.then((_) async { + await Future.delayed(const Duration(milliseconds: 180)); + if (context.mounted) { + final boundary = key.currentContext!.findRenderObject()! + as RenderRepaintBoundary; + final image = await boundary.toImage(); + final byte = await image.toByteData(format: ImageByteFormat.png); + onRendered.call(byte!.buffer.asUint8List()); + } + }); + return null; + }, + [], + ); + return RepaintBoundary( + key: key, + child: SizedBox( + height: 80, + width: 80, + child: CustomPaint( + painter: _HypocenterPainter(type: type), + ), + ), + ); + } +} + +class _HypocenterPainter extends CustomPainter { + const _HypocenterPainter({ + required this.type, + }); + final HypocenterType type; + + @override + void paint(Canvas canvas, Size size) { + final offset = Offset(size.width / 2, size.height / 2); + if (type == HypocenterType.lowPrecise) { + // 円を描く + canvas + ..drawCircle( + offset, + 25, + Paint() + ..color = Colors.black + ..isAntiAlias = true + ..style = PaintingStyle.stroke + ..strokeWidth = 25, + ) + ..drawCircle( + offset, + 25, + Paint() + ..color = Colors.white + ..isAntiAlias = true + ..style = PaintingStyle.stroke + ..strokeWidth = 18, + ) + ..drawCircle( + offset, + 25, + Paint() + ..color = const Color.fromARGB(255, 255, 0, 0) + ..isAntiAlias = true + ..style = PaintingStyle.stroke + ..strokeWidth = 10, + ); + } else if (type == HypocenterType.normal) { + // ×印を描く + canvas + ..drawLine( + Offset(offset.dx - 20, offset.dy - 20), + Offset(offset.dx + 20, offset.dy + 20), + Paint() + ..color = const Color.fromARGB(255, 0, 0, 0) + ..isAntiAlias = true + ..strokeCap = StrokeCap.square + ..style = PaintingStyle.stroke + ..strokeWidth = 25, + ) + ..drawLine( + Offset(offset.dx + 20, offset.dy - 20), + Offset(offset.dx - 20, offset.dy + 20), + Paint() + ..color = const Color.fromARGB(255, 0, 0, 0) + ..isAntiAlias = true + ..strokeCap = StrokeCap.square + ..style = PaintingStyle.stroke + ..strokeWidth = 25, + ) + ..drawLine( + Offset(offset.dx - 20, offset.dy - 20), + Offset(offset.dx + 20, offset.dy + 20), + Paint() + ..color = const Color.fromARGB(255, 255, 255, 255) + ..isAntiAlias = true + ..strokeCap = StrokeCap.square + ..style = PaintingStyle.stroke + ..strokeWidth = 18, + ) + ..drawLine( + Offset(offset.dx + 20, offset.dy - 20), + Offset(offset.dx - 20, offset.dy + 20), + Paint() + ..color = const Color.fromARGB(255, 255, 255, 255) + ..isAntiAlias = true + ..strokeCap = StrokeCap.square + ..style = PaintingStyle.stroke + ..strokeWidth = 18, + ) + ..drawLine( + Offset(offset.dx - 20, offset.dy - 20), + Offset(offset.dx + 20, offset.dy + 20), + Paint() + ..color = const Color.fromARGB(255, 255, 0, 0) + ..isAntiAlias = true + ..strokeCap = StrokeCap.square + ..style = PaintingStyle.stroke + ..strokeWidth = 12, + ) + ..drawLine( + Offset(offset.dx + 20, offset.dy - 20), + Offset(offset.dx - 20, offset.dy + 20), + Paint() + ..color = const Color.fromARGB(255, 255, 0, 0) + ..isAntiAlias = true + ..strokeCap = StrokeCap.square + ..style = PaintingStyle.stroke + ..strokeWidth = 12, + ); + } + } + + @override + bool shouldRepaint(covariant _) => false; +} + +enum HypocenterType { + normal, + lowPrecise, + ; +} diff --git a/lib/feature/home/component/render/intensity_renderer_widget.dart b/lib/feature/home/component/render/intensity_renderer_widget.dart new file mode 100644 index 000000000..9b7042f0d --- /dev/null +++ b/lib/feature/home/component/render/intensity_renderer_widget.dart @@ -0,0 +1,85 @@ +import 'dart:typed_data'; +import 'dart:ui'; + +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/component/intenisty/intensity_icon_type.dart'; +import 'package:eqmonitor/core/component/intenisty/jma_intensity_icon.dart'; +import 'package:eqmonitor/core/provider/capture/intensity_icon_render.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; +import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class IntensityRendererWidget extends HookConsumerWidget { + const IntensityRendererWidget({ + super.key, + }); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return Wrap( + runSpacing: 4, + spacing: 4, + children: [ + for (final intensity in JmaIntensity.values) + for (final type in [ + IntensityIconType.small, + IntensityIconType.smallWithoutText, + ]) + _IntensityRender( + intensity: intensity, + onRendered: (data) => switch (type) { + IntensityIconType.small => ref + .read(intensityIconRenderProvider.notifier) + .onRendered(data, intensity), + IntensityIconType.smallWithoutText => ref + .read(intensityIconFillRenderProvider.notifier) + .onRendered(data, intensity), + _ => null, + }, + type: type, + ), + ], + ); + } +} + +class _IntensityRender extends HookConsumerWidget { + _IntensityRender({ + required this.onRendered, + required this.intensity, + required this.type, + }) : super() { + _key = GlobalObjectKey((intensity, type)); + } + + final void Function(Uint8List data) onRendered; + final JmaIntensity intensity; + final IntensityIconType type; + + late final GlobalObjectKey _key; + + @override + Widget build(BuildContext context, WidgetRef ref) { + useEffect( + () { + WidgetsBinding.instance.endOfFrame.then((_) async { + final boundary = + _key.currentContext!.findRenderObject()! as RenderRepaintBoundary; + final image = await boundary.toImage(); + final byte = await image.toByteData(format: ImageByteFormat.png); + onRendered.call(byte!.buffer.asUint8List()); + }); + return null; + }, + [], + ); + return RepaintBoundary( + key: _key, + child: JmaIntensityIcon( + intensity: intensity, + type: type, + ), + ); + } +} diff --git a/lib/feature/home/component/sheet/debug_widget.dart b/lib/feature/home/component/sheet/debug_widget.dart deleted file mode 100644 index 860b2856a..000000000 --- a/lib/feature/home/component/sheet/debug_widget.dart +++ /dev/null @@ -1,115 +0,0 @@ -import 'package:eqmonitor/core/router/router.dart'; -import 'package:eqmonitor/feature/home/component/kmoni/kmoni_settings_dialog.dart'; -import 'package:eqmonitor/feature/home/component/sheet/sheet_header.dart'; -import 'package:eqmonitor/feature/home/features/telegram_ws/provider/telegram_provider.dart'; -import 'package:firebase_messaging/firebase_messaging.dart'; -import 'package:flutter/material.dart'; -import 'package:go_router/go_router.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -class DebugWidget extends ConsumerWidget { - const DebugWidget({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final theme = Theme.of(context); - - return Card( - margin: const EdgeInsets.all(4), - elevation: 1, - shadowColor: Colors.transparent, - // 角丸にして Border - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(16), - side: BorderSide( - color: theme.dividerColor.withOpacity(0.6), - width: 0, - ), - ), - child: Padding( - padding: const EdgeInsets.symmetric( - horizontal: 8, - vertical: 4, - ), - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - const SheetHeader(title: 'デバッグメニュー'), - ListTile( - title: const Text('Request Sample EEW Telegram'), - subtitle: const Text('EventID: 20171213112000'), - leading: const Icon(Icons.send), - onTap: ref.read(telegramWsProvider.notifier).requestSample, - ), - ListTile( - title: const Text('ログ'), - leading: const Icon(Icons.list), - onTap: () => context.push(const TalkerRoute().location), - ), - ListTile( - title: const Text('Kmoni Debug Setting'), - leading: const Icon(Icons.settings), - onTap: () => showDialog( - context: context, - builder: (context) => const KmoniSettingsDialogWidget(), - ), - ), - ListTile( - title: const Text('重大な通知権限'), - leading: const Icon(Icons.notifications_active), - onTap: () async { - { - final result = - await FirebaseMessaging.instance.requestPermission( - criticalAlert: true, - ); - if (context.mounted) { - await showDialog( - context: context, - builder: (context) => AlertDialog( - title: const Text('重大な通知権限 (FirebaseMessaging)'), - content: Text(result.toString()), - actions: [ - TextButton( - onPressed: () => Navigator.of(context).pop(), - child: const Text('OK'), - ), - ], - ), - ); - } - } - }, - ), - ListTile( - title: const Text('Subscribe to YumNumm Notify'), - leading: const Icon(Icons.notifications), - onTap: () async { - try { - await FirebaseMessaging.instance - .subscribeToTopic('yumnumm-notify'); - if (context.mounted) { - ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( - content: Text('Subscribed to YumNumm Notify'), - ), - ); - } - } on Exception catch (e) { - if (context.mounted) { - ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: - Text('Failed to subscribe to YumNumm Notify $e'), - ), - ); - } - } - }, - ), - ], - ), - ), - ); - } -} diff --git a/lib/feature/home/component/sheet/earthquake_history_widget.dart b/lib/feature/home/component/sheet/earthquake_history_widget.dart index 4da8563b0..7dcaca9bd 100644 --- a/lib/feature/home/component/sheet/earthquake_history_widget.dart +++ b/lib/feature/home/component/sheet/earthquake_history_widget.dart @@ -21,12 +21,19 @@ class EarthquakeHistorySheetWidget extends HookConsumerWidget { // 初回読み込みを行う ref .read(earthquakeHistoryViewModelProvider.notifier) - .loadIfNull(), + .fetchIfNeeded(), ); return null; }, [key], ); + const loading = Center( + child: Padding( + padding: EdgeInsets.all(24), + child: CircularProgressIndicator.adaptive(), + ), + ); + return BorderedContainer( elevation: 1, padding: const EdgeInsets.symmetric( @@ -38,68 +45,64 @@ class EarthquakeHistorySheetWidget extends HookConsumerWidget { const SheetHeader( title: '地震履歴', ), - ...state.when( - data: (data) { - // 地震情報を持つもののうち上から3つのみ表示 - final items = data - .where( - (e) => - e.earthquake.earthquake != null || - e.earthquake.intensity != null, - ) - .take(3) - .toList(); - return [ - for (final item in items) - EarthquakeHistoryTileWidget( - item: item, - onTap: (p0) => context.push( - EarthquakeHistoryDetailsRoute(p0.eventId).location, - ), - showBackgroundColor: false, - ), - ]; - }, - error: (error, stackTrace) { - // dataがある場合にはそれを表示 - if (state.hasValue) { - final data = state.value!; - // 上から3つのみ表示 - final items = data.take(3).toList(); - - return [ - for (final item in items) - EarthquakeHistoryTileWidget( - showBackgroundColor: false, - item: item, - onTap: (p0) => context.push( - EarthquakeHistoryDetailsRoute(p0.eventId).location, + ...state?.when( + data: (data) { + // 地震情報を持つもののうち上から3つのみ表示 + final items = data + .where( + (e) => + e.earthquake.earthquake != null || + e.earthquake.intensity != null, + ) + .take(3) + .toList(); + return [ + for (final item in items) + EarthquakeHistoryTileWidget( + item: item, + onTap: (p0) => EarthquakeHistoryDetailsRoute($extra: p0) + .push(context), + showBackgroundColor: false, ), + ]; + }, + error: (error, stackTrace) { + // dataがある場合にはそれを表示 + if (state.hasValue) { + final data = state.value!; + // 上から3つのみ表示 + final items = data.take(3).toList(); + + return [ + for (final item in items) + EarthquakeHistoryTileWidget( + showBackgroundColor: false, + item: item, + onTap: (p0) => + EarthquakeHistoryDetailsRoute($extra: p0) + .push(context), + ), + ]; + } + return [ + const Text( + '地震履歴の取得中にエラーが発生しました。', ), - ]; - } - return [ - const Text( - '地震履歴の取得中にエラーが発生しました。', - ), - FilledButton.tonal( - onPressed: ref - .read(earthquakeHistoryViewModelProvider.notifier) - .fetch, - child: const Text('再読み込み'), - ), - ]; - }, - loading: () => [ - const Text( - '地震履歴を取得中です。', - ), - const Padding( - padding: EdgeInsets.all(8), - child: CircularProgressIndicator.adaptive(), - ), - ], - ), + FilledButton.tonal( + onPressed: ref + .read(earthquakeHistoryViewModelProvider.notifier) + .fetch, + child: const Text('再読み込み'), + ), + ]; + }, + loading: () => [ + loading, + ], + ) ?? + [ + loading, + ], Row( children: [ const Spacer(), diff --git a/lib/feature/home/component/sheet/status_widget.dart b/lib/feature/home/component/sheet/status_widget.dart index 8edb73a98..023bc6d1c 100644 --- a/lib/feature/home/component/sheet/status_widget.dart +++ b/lib/feature/home/component/sheet/status_widget.dart @@ -104,8 +104,12 @@ class SheetStatusWidget extends ConsumerWidget { ), ), ), - const SizedBox(width: 4), - const CircularProgressIndicator.adaptive(), + const SizedBox(width: 8), + const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator.adaptive(), + ), ], _ when isInitialized && @@ -136,7 +140,13 @@ class SheetStatusWidget extends ConsumerWidget { ), ), ], - _ => [const CircularProgressIndicator.adaptive()], + _ => [ + const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator.adaptive(), + ), + ], }, ], ), diff --git a/lib/feature/home/features/debugger/debugger_model.freezed.dart b/lib/feature/home/features/debugger/debugger_model.freezed.dart index e21ba2d93..7e4147d26 100644 --- a/lib/feature/home/features/debugger/debugger_model.freezed.dart +++ b/lib/feature/home/features/debugger/debugger_model.freezed.dart @@ -127,7 +127,7 @@ class _$DebuggerModelImpl implements _DebuggerModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$DebuggerModelImpl && diff --git a/lib/feature/home/features/eew/eew_provider.dart b/lib/feature/home/features/eew/eew_provider.dart deleted file mode 100644 index 97c72f69f..000000000 --- a/lib/feature/home/features/eew/eew_provider.dart +++ /dev/null @@ -1,214 +0,0 @@ -import 'dart:async'; -import 'dart:developer'; - -import 'package:collection/collection.dart'; -import 'package:eqapi_types/extension/telegram_v3.dart'; -import 'package:eqapi_types/model/components/eew_intensity.dart'; -import 'package:eqapi_types/model/telegram_v3.dart'; -import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; -import 'package:eqmonitor/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -part 'eew_provider.g.dart'; - -@Riverpod( - keepAlive: true, - dependencies: [EarthquakeHistoryViewModel], -) -class EewTelegram extends _$EewTelegram { - @override - List build() { - ref.listen(earthquakeHistoryViewModelProvider, (previous, next) { - for (final item in (next.value ?? []) - .where((e) => e.latestEew != null)) { - if (_shouldShow(item)) { - upsert(item); - } - } - }); - - /// 古くなったEEWを棄却するタイマー - Timer.periodic(const Duration(seconds: 2), (_) { - final result = state.where(_shouldShow).toList(); - if (result.length != state.length) { - log('UPDATE EEW LIST(${result.length})'); - - state = result; - } - }); - - ref.listenSelf((previous, next) { - log(next.toString()); - }); - - return []; - } - - void upsert(EarthquakeHistoryItem item) { - // EventIdが同じものがあれば、置き換える - final index = state.indexWhere((e) => e.eventId == item.eventId); - - if (index >= 0) { - state[index] = item; - final data = state; - data[index] = item; - state = data; - return; - } else { - state = [item, ...state]; - } - } - - /// EEWを表示するかどうかの判定 - /// 地震発生から210秒以内のものは表示する - /// ただし、M6.0以上の場合は300秒以内 - bool _shouldShow(EarthquakeHistoryItem item) { - final eew = item.latestEew; - if (eew == null) { - return false; - } - if (eew is TelegramVxse45Body) { - log('eew is TelegramVxse45Body'); - final time = eew.originTime ?? eew.arrivalTime; - if (!item.eventId.toString().startsWith('2023')) { - return true; - } - - return DateTime.now().difference(time).inSeconds <= - switch (eew.magnitude) { - null => 210, - >= 6.0 => 300, - _ => 210, - }; - } - if (eew is TelegramVxse45Cancel) { - log('eew is TelegramVxse45Cancel'); - final eews = item.telegrams.where((e) => e.type == TelegramType.vxse45); - // serialNoが最大のTelegram - final latest = eews - .where((e) => e.infoType != TelegramInfoType.cancel) - .sorted((a, b) => (b.serialNo ?? 0).compareTo(a.serialNo ?? 0)) - .firstOrNull; - if (latest == null) { - return false; - } - return DateTime.now().difference(latest.pressTime).inSeconds <= 210; - } - log('eew is unknown'); - return true; - } - - @override - bool updateShouldNotify( - List previous, - List next, - ) => - true; -} - -@Riverpod(keepAlive: true) -class EewEstimatedIntensity extends _$EewEstimatedIntensity { - @override - List<(int code, JmaForecastIntensity intensity)> build() { - return []; - } -} - -/// キャンセル報を除いた最新のEEW -@Riverpod(dependencies: [EewTelegram, EewTelegram]) -class EewNormalTelegram extends _$EewNormalTelegram { - @override - List< - ( - TelegramVxse45Body body, - TelegramV3 telegram, - )> build() { - ref.listen(eewTelegramProvider, (_, next) => state = _build(next)); - - return _build(ref.read(eewTelegramProvider)); - } - - List< - ( - TelegramVxse45Body body, - TelegramV3 telegram, - )> _build(List data) => data - .where( - (e) => e.latestEew != null && e.latestEew is TelegramVxse45Body, - ) - .map( - (e) => (e.latestEew! as TelegramVxse45Body, e.latestEewTelegram!), - ) - .toList(); -} - -/// レベル法・PLUM法・IPF1点のEEWを 除いた最新のEEW -@Riverpod(dependencies: [EewNormalTelegram, EewNormalTelegram]) -class EewFilteredTelegram extends _$EewFilteredTelegram { - @override - List< - ( - TelegramVxse45Body body, - TelegramV3 telegram, - )> build() { - ref.listen(eewNormalTelegramProvider, (_, next) => state = _build(next)); - - return _build(ref.read(eewNormalTelegramProvider)); - } - - List< - ( - TelegramVxse45Body body, - TelegramV3 telegram, - )> _build( - List< - ( - TelegramVxse45Body body, - TelegramV3 telegram, - )> - data, - ) => - data.where( - (e) { - final eew = e.$1; - return eew.magnitude != null && - eew.magnitude != null && - eew.hypocenter != null && - !(eew.isLevelEew && eew.isPlum && eew.isIpfOnePoint); - }, - ).toList(); -} - -/// EEWの予想震度のリスト -@Riverpod(dependencies: [EewNormalTelegram, EewNormalTelegram]) -class EewEstimatedIntensityList extends _$EewEstimatedIntensityList { - @override - List<(int code, JmaForecastIntensity intensity)> build() { - ref.listen(eewNormalTelegramProvider, (_, next) => state = _build(next)); - return _build(ref.read(eewNormalTelegramProvider)); - } - - List<(int code, JmaForecastIntensity intensity)> _build( - List< - ( - TelegramVxse45Body body, - TelegramV3 telegram, - )> - eews, - ) { - final regions = eews.map((e) => e.$1.regions ?? []).flattened; - final result = <(int, JmaForecastIntensity)>[]; - regions - .groupListsBy((e) => int.tryParse(e.code) ?? 0) - .forEach((key, value) { - final maxIntensity = value - .map((e) => e.forecastMaxInt.toDisplayMaxInt()) - .sorted((a, b) => b.maxInt.compareTo(a.maxInt)) - .firstOrNull; - if (maxIntensity != null) { - result.add((key, maxIntensity.maxInt)); - } - }); - return result; - } -} diff --git a/lib/feature/home/features/eew/eew_provider.g.dart b/lib/feature/home/features/eew/eew_provider.g.dart deleted file mode 100644 index 94c19fb30..000000000 --- a/lib/feature/home/features/eew/eew_provider.g.dart +++ /dev/null @@ -1,118 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'eew_provider.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$eewTelegramHash() => r'02131229e453d7aa36e1d82018fcf5641c4b6e34'; - -/// See also [EewTelegram]. -@ProviderFor(EewTelegram) -final eewTelegramProvider = - NotifierProvider>.internal( - EewTelegram.new, - name: r'eewTelegramProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$eewTelegramHash, - dependencies: [earthquakeHistoryViewModelProvider], - allTransitiveDependencies: { - earthquakeHistoryViewModelProvider, - ...?earthquakeHistoryViewModelProvider.allTransitiveDependencies - }, -); - -typedef _$EewTelegram = Notifier>; -String _$eewEstimatedIntensityHash() => - r'24b78ca4cd869b15c0f438fdc346b69130810169'; - -/// See also [EewEstimatedIntensity]. -@ProviderFor(EewEstimatedIntensity) -final eewEstimatedIntensityProvider = NotifierProvider>.internal( - EewEstimatedIntensity.new, - name: r'eewEstimatedIntensityProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$eewEstimatedIntensityHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$EewEstimatedIntensity - = Notifier>; -String _$eewNormalTelegramHash() => r'3bb7263846a2b4c3a3f7dd77e2ea673917c4a798'; - -/// キャンセル報を除いた最新のEEW -/// -/// Copied from [EewNormalTelegram]. -@ProviderFor(EewNormalTelegram) -final eewNormalTelegramProvider = AutoDisposeNotifierProvider>.internal( - EewNormalTelegram.new, - name: r'eewNormalTelegramProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$eewNormalTelegramHash, - dependencies: [eewTelegramProvider], - allTransitiveDependencies: { - eewTelegramProvider, - ...?eewTelegramProvider.allTransitiveDependencies - }, -); - -typedef _$EewNormalTelegram - = AutoDisposeNotifier>; -String _$eewFilteredTelegramHash() => - r'c5cc0f4e3a22eb8c8dc36083a198daf3bb907d44'; - -/// レベル法・PLUM法・IPF1点のEEWを 除いた最新のEEW -/// -/// Copied from [EewFilteredTelegram]. -@ProviderFor(EewFilteredTelegram) -final eewFilteredTelegramProvider = AutoDisposeNotifierProvider< - EewFilteredTelegram, - List<(TelegramVxse45Body body, TelegramV3 telegram)>>.internal( - EewFilteredTelegram.new, - name: r'eewFilteredTelegramProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$eewFilteredTelegramHash, - dependencies: [eewNormalTelegramProvider], - allTransitiveDependencies: { - eewNormalTelegramProvider, - ...?eewNormalTelegramProvider.allTransitiveDependencies - }, -); - -typedef _$EewFilteredTelegram - = AutoDisposeNotifier>; -String _$eewEstimatedIntensityListHash() => - r'75e1555dc8fd05f8e62faa87cd3a3b105f6ca975'; - -/// EEWの予想震度のリスト -/// -/// Copied from [EewEstimatedIntensityList]. -@ProviderFor(EewEstimatedIntensityList) -final eewEstimatedIntensityListProvider = AutoDisposeNotifierProvider< - EewEstimatedIntensityList, - List<(int code, JmaForecastIntensity intensity)>>.internal( - EewEstimatedIntensityList.new, - name: r'eewEstimatedIntensityListProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$eewEstimatedIntensityListHash, - dependencies: [eewNormalTelegramProvider], - allTransitiveDependencies: { - eewNormalTelegramProvider, - ...?eewNormalTelegramProvider.allTransitiveDependencies - }, -); - -typedef _$EewEstimatedIntensityList - = AutoDisposeNotifier>; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/features/eew/provider/eew_alive_telegram.dart b/lib/feature/home/features/eew/provider/eew_alive_telegram.dart new file mode 100644 index 000000000..3e855330e --- /dev/null +++ b/lib/feature/home/features/eew/provider/eew_alive_telegram.dart @@ -0,0 +1,120 @@ +import 'package:collection/collection.dart'; +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/provider/time_ticker.dart'; +import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; +import 'package:eqmonitor/feature/home/features/eew/provider/eew_telegram.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'eew_alive_telegram.g.dart'; + +/// イベント終了していないEEWのうち、精度が低いものを除外したもの +@Riverpod(dependencies: [EewAliveTelegram]) +List eewAliveNormalTelegram( + EewAliveNormalTelegramRef ref, +) { + final state = ref.watch(eewAliveTelegramProvider) ?? []; + return state.where((e) { + if (e.latestEew is TelegramVxse45Body) { + final body = e.latestEew! as TelegramVxse45Body; + if (body.isPlum || body.isLevelEew) { + return false; + } + return true; + } else { + return false; + } + }).toList(); +} + +/// イベント終了していないEEW +@Riverpod(keepAlive: true, dependencies: [eewTelegram]) +class EewAliveTelegram extends _$EewAliveTelegram { + @override + List? build() { + final state = ref.watch(eewTelegramProvider); + final value = state.valueOrNull; + final tickerTime = ref.watch(timeTickerProvider); + final checker = ref.watch(eewAliveCheckerProvider); + if (value == null) { + return null; + } + final now = (tickerTime.value ?? DateTime.now()).toUtc(); + + return value + .where((e) => !checker.checkMarkAsEventEnded(item: e, now: now)) + .toList(); + } + + @override + bool updateShouldNotify( + List? previous, + List? next, + ) { + if (previous == null || next == null) { + return true; + } + return !const ListEquality().equals(previous, next); + } +} + +@Riverpod(keepAlive: true) +EewAliveChecker eewAliveChecker(EewAliveCheckerRef ref) => EewAliveChecker(); + +class EewAliveChecker { + /// イベント終了の判定 + bool checkMarkAsEventEnded({ + required EarthquakeHistoryItem item, + required DateTime now, + }) { + final latestEew = item.latestEewTelegram; + final latestEewBody = item.latestEew; + // 発表から1時間以上経過している場合、イベント終了と判定する + final reportTime = latestEew?.reportTime?.toUtc(); + if (reportTime == null) { + return true; + } + // 最新のEEWがない場合、イベント終了と判定する + if (latestEew == null || latestEewBody == null) { + return true; + } + // 既に、VXSE53が発表済みの場合、イベント終了と判定する + if (item.telegrams + .any((telegram) => telegram.type == TelegramType.vxse53)) { + return true; + } + // 最新のEEWが取消の場合、発表から180秒を経過している場合、イベント終了と判定する + if (latestEewBody is TelegramVxse45Cancel) { + final reportTime = latestEew.reportTime?.toUtc(); + if (reportTime == null) { + return true; + } + return now.toUtc().difference(reportTime).inSeconds > 180; + } + // 最新のEEWが通常の場合 + if (latestEewBody is TelegramVxse45Body) { + final originTime = latestEewBody.originTime?.toUtc(); + final arrivalTime = latestEewBody.arrivalTime.toUtc(); + final targetTime = originTime ?? arrivalTime; + final depth = latestEewBody.depth; + + // EEW警報の場合、420秒でイベント終了と判定する + final isWarning = (latestEew.headline ?? '').contains('強い揺れ'); + if (isWarning) { + return now.toUtc().difference(targetTime).inSeconds > 420; + } + // M6.0以上の場合、360秒でイベント終了と判定する + final magnitude = latestEewBody.magnitude; + if (magnitude != null && magnitude >= 6.0) { + return now.toUtc().difference(targetTime).inSeconds > 360; + } + // 深さ不明/150km未満の場合、地震発生/検知から250秒でイベント終了と判定する + if (depth == null || depth < 150) { + return now.toUtc().difference(targetTime).inSeconds > 250; + } else { + // 深さ150km以上の場合、地震発生/検知から400秒でイベント終了と判定する + return now.toUtc().difference(targetTime).inSeconds > 400; + } + } + throw UnimplementedError('Unknown EEW type'); + } +} diff --git a/lib/feature/home/features/eew/provider/eew_alive_telegram.g.dart b/lib/feature/home/features/eew/provider/eew_alive_telegram.g.dart new file mode 100644 index 000000000..beb803d5d --- /dev/null +++ b/lib/feature/home/features/eew/provider/eew_alive_telegram.g.dart @@ -0,0 +1,71 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'eew_alive_telegram.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$eewAliveNormalTelegramHash() => + r'10210952f6125eb8fd2c1c730277eaeba8e23692'; + +/// イベント終了していないEEWのうち、精度が低いものを除外したもの +/// +/// Copied from [eewAliveNormalTelegram]. +@ProviderFor(eewAliveNormalTelegram) +final eewAliveNormalTelegramProvider = + AutoDisposeProvider>.internal( + eewAliveNormalTelegram, + name: r'eewAliveNormalTelegramProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$eewAliveNormalTelegramHash, + dependencies: [eewAliveTelegramProvider], + allTransitiveDependencies: { + eewAliveTelegramProvider, + ...?eewAliveTelegramProvider.allTransitiveDependencies + }, +); + +typedef EewAliveNormalTelegramRef + = AutoDisposeProviderRef>; +String _$eewAliveCheckerHash() => r'9a37a3cc06eecdcaf74ecf1e717f9f34a6761948'; + +/// See also [eewAliveChecker]. +@ProviderFor(eewAliveChecker) +final eewAliveCheckerProvider = Provider.internal( + eewAliveChecker, + name: r'eewAliveCheckerProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$eewAliveCheckerHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef EewAliveCheckerRef = ProviderRef; +String _$eewAliveTelegramHash() => r'3ef1c9333903731f1e31962bd611a82a1e3e1ee0'; + +/// イベント終了していないEEW +/// +/// Copied from [EewAliveTelegram]. +@ProviderFor(EewAliveTelegram) +final eewAliveTelegramProvider = + NotifierProvider?>.internal( + EewAliveTelegram.new, + name: r'eewAliveTelegramProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$eewAliveTelegramHash, + dependencies: [eewTelegramProvider], + allTransitiveDependencies: { + eewTelegramProvider, + ...?eewTelegramProvider.allTransitiveDependencies + }, +); + +typedef _$EewAliveTelegram = Notifier?>; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/features/eew/provider/eew_telegram.dart b/lib/feature/home/features/eew/provider/eew_telegram.dart new file mode 100644 index 000000000..f02656eef --- /dev/null +++ b/lib/feature/home/features/eew/provider/eew_telegram.dart @@ -0,0 +1,55 @@ +import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; +import 'package:eqmonitor/feature/earthquake_history/viewmodel/earthquake_history_view_model.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'eew_telegram.g.dart'; + +/// EEWを持つEarthquakeHistoryItem +@Riverpod(dependencies: [EarthquakeHistoryViewModel], keepAlive: true) +AsyncValue> eewTelegram(EewTelegramRef ref) { + final state = ref.watch(earthquakeHistoryViewModelProvider); + if (state == null) { + return const AsyncLoading(); + } + return switch (state) { + AsyncData(:final List value) => AsyncData( + value.where((e) => e.latestEew != null).toList(), + ), + AsyncError(:final error, :final stackTrace) => + AsyncError(error, stackTrace), + _ => const AsyncLoading(), + }; +} + +/* +class EewTelegram extends _$EewTelegram { + @override + List build() { + /* + ref.listen(earthquakeHistoryViewModelProvider, (previous, next) { + for (final item in (next?.value ?? []) + .where((e) => e.latestEew != null)) { + if (_shouldShow(item)) { + upsert(item); + } + } + }); + + /// 古くなったEEWを棄却するタイマー + Timer.periodic(const Duration(seconds: 2), (_) { + final result = state.where(_shouldShow).toList(); + if (result.length != state.length) { + log('UPDATE EEW LIST(${result.length})'); + + state = result; + } + }); + + ref.listenSelf((previous, next) { + log(next.toString()); + }); +*/ + return []; + } +} +*/ diff --git a/lib/feature/home/features/eew/provider/eew_telegram.g.dart b/lib/feature/home/features/eew/provider/eew_telegram.g.dart new file mode 100644 index 000000000..7ba888cdb --- /dev/null +++ b/lib/feature/home/features/eew/provider/eew_telegram.g.dart @@ -0,0 +1,32 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'eew_telegram.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$eewTelegramHash() => r'85a3dddbf3d79cbedf93b209fb9dbf2cc810ff8a'; + +/// EEWを持つEarthquakeHistoryItem +/// +/// Copied from [eewTelegram]. +@ProviderFor(eewTelegram) +final eewTelegramProvider = + Provider>>.internal( + eewTelegram, + name: r'eewTelegramProvider', + debugGetCreateSourceHash: + const bool.fromEnvironment('dart.vm.product') ? null : _$eewTelegramHash, + dependencies: [earthquakeHistoryViewModelProvider], + allTransitiveDependencies: { + earthquakeHistoryViewModelProvider, + ...?earthquakeHistoryViewModelProvider.allTransitiveDependencies + }, +); + +typedef EewTelegramRef = ProviderRef>>; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.dart b/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.dart index ac32f372f..dae26520b 100644 --- a/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.dart +++ b/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.dart @@ -1,33 +1,28 @@ import 'package:eqapi_types/model/telegram_v3.dart'; import 'package:eqmonitor/core/provider/log/talker.dart'; import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; +import 'package:eqmonitor/feature/home/features/eew/provider/eew_alive_telegram.dart'; import 'package:eqmonitor/feature/home/features/estimated_intensity/data/estimated_intensity_data_source.dart'; import 'package:eqmonitor/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart'; import 'package:eqmonitor/feature/home/features/kmoni_observation_points/provider/kmoni_observation_points_provider.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:talker_flutter/talker_flutter.dart'; part 'estimated_intensity_provider.g.dart'; -@Riverpod(dependencies: [EewTelegram]) +@Riverpod(keepAlive: true, dependencies: [EewAliveTelegram, EewAliveTelegram]) class EstimatedIntensity extends _$EstimatedIntensity { @override List build() { - _dataSource = ref.watch(estimatedIntensityDataSourceProvider); - _talker = ref.watch(talkerProvider); - ref.listen(eewTelegramProvider, (previous, next) { - state = calc(next); - _talker.logTyped( + final talker = ref.watch(talkerProvider); + ref.listen(eewAliveTelegramProvider, (previous, next) { + state = calc(next ?? []); + talker.logTyped( EstimatedIntensityLog('EstimatedIntensity: ${state.length}'), ); }); - return calc(ref.read(eewTelegramProvider)); + return calc(ref.read(eewAliveTelegramProvider) ?? []); } - late EstimatedIntensityDataSource _dataSource; - late Talker _talker; - List calc(List eews) { final points = ref.read(kmoniObservationPointsProvider); final results = >[]; @@ -35,12 +30,12 @@ class EstimatedIntensity extends _$EstimatedIntensity { .where((e) => e.latestEew != null && e.latestEew is TelegramVxse45Body) .map((e) => e.latestEew! as TelegramVxse45Body)) { results.add( - _dataSource.getEstimatedIntensity( - points: points, - jmaMagnitude: eew.magnitude ?? 0, - depth: eew.depth ?? 0, - hypocenter: eew.hypocenter!.coordinate!, - ), + ref.read(estimatedIntensityDataSourceProvider).getEstimatedIntensity( + points: points, + jmaMagnitude: eew.magnitude ?? 0, + depth: eew.depth ?? 0, + hypocenter: eew.hypocenter!.coordinate!, + ), ); } diff --git a/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.g.dart b/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.g.dart index 6752bd9e4..bfc9148b0 100644 --- a/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.g.dart +++ b/lib/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.g.dart @@ -9,25 +9,24 @@ part of 'estimated_intensity_provider.dart'; // ************************************************************************** String _$estimatedIntensityHash() => - r'f42fc9c87c6c64cd61033280f6885b10abe5874e'; + r'b0900f34fb6a79c0639a45168768a9ff3d04789d'; /// See also [EstimatedIntensity]. @ProviderFor(EstimatedIntensity) -final estimatedIntensityProvider = AutoDisposeNotifierProvider< - EstimatedIntensity, List>.internal( +final estimatedIntensityProvider = NotifierProvider>.internal( EstimatedIntensity.new, name: r'estimatedIntensityProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$estimatedIntensityHash, - dependencies: [eewTelegramProvider], + dependencies: [eewAliveTelegramProvider], allTransitiveDependencies: { - eewTelegramProvider, - ...?eewTelegramProvider.allTransitiveDependencies + eewAliveTelegramProvider, + ...?eewAliveTelegramProvider.allTransitiveDependencies }, ); -typedef _$EstimatedIntensity - = AutoDisposeNotifier>; +typedef _$EstimatedIntensity = Notifier>; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/features/kmoni/model/kmoni_maintenance_message_model.freezed.dart b/lib/feature/home/features/kmoni/model/kmoni_maintenance_message_model.freezed.dart index 0b5e43e42..5d61b77ff 100644 --- a/lib/feature/home/features/kmoni/model/kmoni_maintenance_message_model.freezed.dart +++ b/lib/feature/home/features/kmoni/model/kmoni_maintenance_message_model.freezed.dart @@ -155,7 +155,7 @@ class _$KmoniMaintenanceMessageModelImpl } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$KmoniMaintenanceMessageModelImpl && diff --git a/lib/feature/home/features/kmoni/model/kmoni_view_model_state.freezed.dart b/lib/feature/home/features/kmoni/model/kmoni_view_model_state.freezed.dart index 436fa48cc..7f1b6674b 100644 --- a/lib/feature/home/features/kmoni/model/kmoni_view_model_state.freezed.dart +++ b/lib/feature/home/features/kmoni/model/kmoni_view_model_state.freezed.dart @@ -205,7 +205,7 @@ class _$KmoniViewModelStateImpl implements _KmoniViewModelState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$KmoniViewModelStateImpl && diff --git a/lib/feature/home/features/kmoni/use_case/kmoni_use_case.dart b/lib/feature/home/features/kmoni/use_case/kmoni_use_case.dart index 5f6cc14ed..95f213d9c 100644 --- a/lib/feature/home/features/kmoni/use_case/kmoni_use_case.dart +++ b/lib/feature/home/features/kmoni/use_case/kmoni_use_case.dart @@ -87,7 +87,6 @@ class KmoniUseCase { required image.Pixel pixel32, }) { // 色がない場合(対象の観測点が画像内にない場合) - final hsv = HSVColor.fromColor( Color.fromARGB( pixel32.a.toInt(), @@ -153,6 +152,7 @@ class KmoniUseCase { } return p; } + } class KmoniIsolateArg { diff --git a/lib/feature/home/features/kmoni/viewmodel/has_eew_provider.dart b/lib/feature/home/features/kmoni/viewmodel/has_eew_provider.dart deleted file mode 100644 index 706e84c62..000000000 --- a/lib/feature/home/features/kmoni/viewmodel/has_eew_provider.dart +++ /dev/null @@ -1,7 +0,0 @@ -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -part 'has_eew_provider.g.dart'; - -@Riverpod(dependencies: [EewNormalTelegram]) -bool hasEew(HasEewRef ref) => ref.watch(eewNormalTelegramProvider).isNotEmpty; diff --git a/lib/feature/home/features/kmoni/viewmodel/has_eew_provider.g.dart b/lib/feature/home/features/kmoni/viewmodel/has_eew_provider.g.dart deleted file mode 100644 index 945dfc874..000000000 --- a/lib/feature/home/features/kmoni/viewmodel/has_eew_provider.g.dart +++ /dev/null @@ -1,29 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint, duplicate_ignore - -part of 'has_eew_provider.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$hasEewHash() => r'61db7356adcf49350877c868d7fb8767831f1884'; - -/// See also [hasEew]. -@ProviderFor(hasEew) -final hasEewProvider = AutoDisposeProvider.internal( - hasEew, - name: r'hasEewProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$hasEewHash, - dependencies: [eewNormalTelegramProvider], - allTransitiveDependencies: { - eewNormalTelegramProvider, - ...?eewNormalTelegramProvider.allTransitiveDependencies - }, -); - -typedef HasEewRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart index 6705110ec..0571c8281 100644 --- a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart +++ b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart @@ -10,7 +10,6 @@ import 'package:eqmonitor/feature/home/features/kmoni/use_case/kmoni_use_case.da import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart'; import 'package:eqmonitor/feature/home/features/kmoni_observation_points/provider/kmoni_observation_points_provider.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:talker_flutter/talker_flutter.dart'; part 'kmoni_view_model.g.dart'; @@ -18,8 +17,6 @@ part 'kmoni_view_model.g.dart'; class KmoniViewModel extends _$KmoniViewModel { @override KmoniViewModelState build() { - _useCase = ref.watch(kmoniUseCaseProvider); - _talker = ref.watch(talkerProvider); ref.listen(appLifeCycleProvider, (_, next) async { if (next == AppLifecycleState.resumed) { state = state.copyWith( @@ -44,9 +41,6 @@ class KmoniViewModel extends _$KmoniViewModel { ); } - late final KmoniUseCase _useCase; - late final Talker _talker; - /// 画像取得タイマー Timer _kmoniFetchTimer = Timer.periodic( const Duration(seconds: 1), @@ -100,10 +94,10 @@ class KmoniViewModel extends _$KmoniViewModel { } try { - final result = await _useCase.fetchRealtimeShindo( - now, - obsPoints: ref.read(kmoniObservationPointsProvider) ?? [], - ); + final result = await ref.read(kmoniUseCaseProvider).fetchRealtimeShindo( + now, + obsPoints: ref.read(kmoniObservationPointsProvider) ?? [], + ); state = state.copyWith( lastUpdatedAt: now, analyzedPoints: result, @@ -124,42 +118,47 @@ class KmoniViewModel extends _$KmoniViewModel { } Future syncDelayWithKmoni() async { + final useCase = ref.read(kmoniUseCaseProvider); + final talker = ref.read(talkerProvider); if (state.isDelayAdjusting) { return state.delay!; } state = state.copyWith(isDelayAdjusting: true); try { - // kmoniから現在時刻を取得 - final firstDateTime = await _useCase.getLatestDataTime(); - var latestDataTime = firstDateTime; - // 変わるまで200msごとに取得 - while (true) { - await Future.delayed(const Duration(milliseconds: 200)); - latestDataTime = await _useCase.getLatestDataTime(); - if (latestDataTime != firstDateTime) { - break; + return await () async { + // kmoniから現在時刻を取得 + final firstDateTime = await useCase.getLatestDataTime(); + var latestDataTime = firstDateTime; + // 変わるまで200msごとに取得 + while (true) { + await Future.delayed(const Duration(milliseconds: 200)); + latestDataTime = await useCase.getLatestDataTime(); + if (latestDataTime != firstDateTime) { + break; + } } - } - // 現在時刻との差分を取得 - final diff = DateTime.now().difference(latestDataTime); - // 適用 - state = state.copyWith( - delay: diff, - isDelayAdjusting: false, - ); - // タイマー再起動 - _kmoniFetchTimer.cancel(); - _kmoniFetchTimer = Timer.periodic( - const Duration(seconds: 1), - (_) => _update(), - ); - _talker.logTyped( - KmoniLog('遅延調整を行いました ${diff.inMicroseconds / 1000}ms'), - ); - return diff; + // 現在時刻との差分を取得 + final diff = DateTime.now().difference(latestDataTime); + // 適用 + state = state.copyWith( + delay: diff, + isDelayAdjusting: false, + ); + // タイマー再起動 + _kmoniFetchTimer.cancel(); + _kmoniFetchTimer = Timer.periodic( + const Duration(seconds: 1), + (_) => _update(), + ); + talker.logTyped( + KmoniLog('遅延調整を行いました ${diff.inMicroseconds / 1000}ms'), + ); + return diff; + }() + .timeout(const Duration(seconds: 5)); // ignore: avoid_catches_without_on_clauses } catch (e) { - _talker.logTyped( + talker.logTyped( KmoniLog('遅延調整失敗 $e'), ); state = state.copyWith(isDelayAdjusting: false); diff --git a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.g.dart b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.g.dart index aa7f95547..08414ac33 100644 --- a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.g.dart +++ b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_model.g.dart @@ -8,7 +8,7 @@ part of 'kmoni_view_model.dart'; // RiverpodGenerator // ************************************************************************** -String _$kmoniViewModelHash() => r'990e2679e26210893579b065e242361b5d6d94ed'; +String _$kmoniViewModelHash() => r'ab07033947e585c7301cf4084f8b14991894b1f9'; /// See also [KmoniViewModel]. @ProviderFor(KmoniViewModel) diff --git a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart index df42411e4..32359b13a 100644 --- a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart +++ b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart @@ -3,7 +3,6 @@ import 'dart:convert'; import 'package:eqmonitor/core/provider/shared_preferences.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:shared_preferences/shared_preferences.dart'; part 'kmoni_view_settings.freezed.dart'; part 'kmoni_view_settings.g.dart'; @@ -33,7 +32,6 @@ class KmoniSettingsState with _$KmoniSettingsState { class KmoniSettings extends _$KmoniSettings { @override KmoniSettingsState build() { - _prefs = ref.watch(sharedPreferencesProvider); ref.listenSelf((_, __) => _save()); final result = _loadFromPrefs(); if (result != null) { @@ -44,10 +42,9 @@ class KmoniSettings extends _$KmoniSettings { } static const _prefsKey = '_kmoni_settings'; - late final SharedPreferences _prefs; KmoniSettingsState? _loadFromPrefs() { - final json = _prefs.getString(_prefsKey); + final json = ref.read(sharedPreferencesProvider).getString(_prefsKey); if (json == null) { return null; } @@ -61,12 +58,10 @@ class KmoniSettings extends _$KmoniSettings { } } - Future _save() async { - await _prefs.setString( - _prefsKey, - jsonEncode(state.toJson()), - ); - } + Future _save() async => ref.read(sharedPreferencesProvider).setString( + _prefsKey, + jsonEncode(state.toJson()), + ); void toggleIsUpper0Only() { state = state.copyWith( diff --git a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.freezed.dart b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.freezed.dart index 74d0ae417..e20ec4d70 100644 --- a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.freezed.dart +++ b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.freezed.dart @@ -161,7 +161,7 @@ class _$KmoniSettingsStateImpl implements _KmoniSettingsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$KmoniSettingsStateImpl && diff --git a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.g.dart b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.g.dart index c866207d6..fb7a3dd5c 100644 --- a/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.g.dart +++ b/lib/feature/home/features/kmoni/viewmodel/kmoni_view_settings.g.dart @@ -37,7 +37,7 @@ Map _$$KmoniSettingsStateImplToJson( // RiverpodGenerator // ************************************************************************** -String _$kmoniSettingsHash() => r'16b29280c64bcd4a0faccb9a501a56c02c647e9f'; +String _$kmoniSettingsHash() => r'3a624489de7f8bd258d81cbd5e30d570bbe2951a'; /// See also [KmoniSettings]. @ProviderFor(KmoniSettings) diff --git a/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart b/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart index 9d834bfb9..d09560dbb 100644 --- a/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart +++ b/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart @@ -1,4 +1,3 @@ -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; import 'package:flutter/material.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:lat_lng/lat_lng.dart'; @@ -12,24 +11,20 @@ class KmoniObservationPoint with _$KmoniObservationPoint { required String prefecture, required String name, required LatLng latLng, - required GlobalPoint globalPoint, required int x, required int y, required double arv, }) = _KmoniObservationPoint; factory KmoniObservationPoint.fromList( - List list, { - required WebMercatorProjection projection, - }) { + List list, + ) { final latLng = LatLng(double.parse(list[3]), double.parse(list[4])); - final globalPoint = projection.project(latLng); return KmoniObservationPoint( code: list[0], prefecture: list[1], name: list[2], latLng: latLng, - globalPoint: globalPoint, x: int.parse(list[5]), y: int.parse(list[6]), arv: double.parse(list[7]), diff --git a/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.freezed.dart b/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.freezed.dart index 838996447..4e2470a7d 100644 --- a/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.freezed.dart +++ b/lib/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.freezed.dart @@ -20,7 +20,6 @@ mixin _$KmoniObservationPoint { String get prefecture => throw _privateConstructorUsedError; String get name => throw _privateConstructorUsedError; LatLng get latLng => throw _privateConstructorUsedError; - GlobalPoint get globalPoint => throw _privateConstructorUsedError; int get x => throw _privateConstructorUsedError; int get y => throw _privateConstructorUsedError; double get arv => throw _privateConstructorUsedError; @@ -41,7 +40,6 @@ abstract class $KmoniObservationPointCopyWith<$Res> { String prefecture, String name, LatLng latLng, - GlobalPoint globalPoint, int x, int y, double arv}); @@ -65,7 +63,6 @@ class _$KmoniObservationPointCopyWithImpl<$Res, Object? prefecture = null, Object? name = null, Object? latLng = null, - Object? globalPoint = null, Object? x = null, Object? y = null, Object? arv = null, @@ -87,10 +84,6 @@ class _$KmoniObservationPointCopyWithImpl<$Res, ? _value.latLng : latLng // ignore: cast_nullable_to_non_nullable as LatLng, - globalPoint: null == globalPoint - ? _value.globalPoint - : globalPoint // ignore: cast_nullable_to_non_nullable - as GlobalPoint, x: null == x ? _value.x : x // ignore: cast_nullable_to_non_nullable @@ -121,7 +114,6 @@ abstract class _$$KmoniObservationPointImplCopyWith<$Res> String prefecture, String name, LatLng latLng, - GlobalPoint globalPoint, int x, int y, double arv}); @@ -143,7 +135,6 @@ class __$$KmoniObservationPointImplCopyWithImpl<$Res> Object? prefecture = null, Object? name = null, Object? latLng = null, - Object? globalPoint = null, Object? x = null, Object? y = null, Object? arv = null, @@ -165,10 +156,6 @@ class __$$KmoniObservationPointImplCopyWithImpl<$Res> ? _value.latLng : latLng // ignore: cast_nullable_to_non_nullable as LatLng, - globalPoint: null == globalPoint - ? _value.globalPoint - : globalPoint // ignore: cast_nullable_to_non_nullable - as GlobalPoint, x: null == x ? _value.x : x // ignore: cast_nullable_to_non_nullable @@ -193,7 +180,6 @@ class _$KmoniObservationPointImpl implements _KmoniObservationPoint { required this.prefecture, required this.name, required this.latLng, - required this.globalPoint, required this.x, required this.y, required this.arv}); @@ -207,8 +193,6 @@ class _$KmoniObservationPointImpl implements _KmoniObservationPoint { @override final LatLng latLng; @override - final GlobalPoint globalPoint; - @override final int x; @override final int y; @@ -217,11 +201,11 @@ class _$KmoniObservationPointImpl implements _KmoniObservationPoint { @override String toString() { - return 'KmoniObservationPoint(code: $code, prefecture: $prefecture, name: $name, latLng: $latLng, globalPoint: $globalPoint, x: $x, y: $y, arv: $arv)'; + return 'KmoniObservationPoint(code: $code, prefecture: $prefecture, name: $name, latLng: $latLng, x: $x, y: $y, arv: $arv)'; } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$KmoniObservationPointImpl && @@ -230,16 +214,14 @@ class _$KmoniObservationPointImpl implements _KmoniObservationPoint { other.prefecture == prefecture) && (identical(other.name, name) || other.name == name) && (identical(other.latLng, latLng) || other.latLng == latLng) && - (identical(other.globalPoint, globalPoint) || - other.globalPoint == globalPoint) && (identical(other.x, x) || other.x == x) && (identical(other.y, y) || other.y == y) && (identical(other.arv, arv) || other.arv == arv)); } @override - int get hashCode => Object.hash( - runtimeType, code, prefecture, name, latLng, globalPoint, x, y, arv); + int get hashCode => + Object.hash(runtimeType, code, prefecture, name, latLng, x, y, arv); @JsonKey(ignore: true) @override @@ -255,7 +237,6 @@ abstract class _KmoniObservationPoint implements KmoniObservationPoint { required final String prefecture, required final String name, required final LatLng latLng, - required final GlobalPoint globalPoint, required final int x, required final int y, required final double arv}) = _$KmoniObservationPointImpl; @@ -269,8 +250,6 @@ abstract class _KmoniObservationPoint implements KmoniObservationPoint { @override LatLng get latLng; @override - GlobalPoint get globalPoint; - @override int get x; @override int get y; @@ -466,7 +445,7 @@ class _$AnalyzedKmoniObservationPointImpl } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AnalyzedKmoniObservationPointImpl && diff --git a/lib/feature/home/features/kmoni_observation_points/provider/kmoni_observation_points_provider.dart b/lib/feature/home/features/kmoni_observation_points/provider/kmoni_observation_points_provider.dart index 793e881a8..e230fb3eb 100644 --- a/lib/feature/home/features/kmoni_observation_points/provider/kmoni_observation_points_provider.dart +++ b/lib/feature/home/features/kmoni_observation_points/provider/kmoni_observation_points_provider.dart @@ -1,4 +1,3 @@ -import 'package:eqmonitor/core/component/map/utils/web_mercator_projection.dart'; import 'package:eqmonitor/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart'; import 'package:flutter/services.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; @@ -15,13 +14,11 @@ Future> loadKmoniObservationPoints() async { final file = await rootBundle.loadString('assets/kmoni/kansokuten.csv'); final lines = file.split('\n'); final result = []; - final defaultProjection = WebMercatorProjection(); for (final line in lines) { try { result.add( KmoniObservationPoint.fromList( line.split(','), - projection: defaultProjection, ), ); } on Exception catch (_) {} diff --git a/lib/feature/home/features/map/view/main_map_view.dart b/lib/feature/home/features/map/view/main_map_view.dart new file mode 100644 index 000000000..bd0c6fc00 --- /dev/null +++ b/lib/feature/home/features/map/view/main_map_view.dart @@ -0,0 +1,227 @@ +import 'dart:async'; +import 'dart:convert'; + +import 'package:eqmonitor/core/provider/app_lifecycle.dart'; +import 'package:eqmonitor/core/provider/capture/intensity_icon_render.dart'; +import 'package:eqmonitor/core/provider/map/map_style.dart'; +import 'package:eqmonitor/feature/home/features/debugger/debugger_provider.dart'; +import 'package:eqmonitor/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.dart'; +import 'package:eqmonitor/feature/home/features/map/viewmodel/main_map_viewmodel.dart'; +import 'package:eqmonitor/feature/home/features/travel_time/provider/travel_time_provider.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; +import 'package:maplibre_gl/maplibre_gl.dart'; + +class MainMapView extends HookConsumerWidget { + const MainMapView({super.key}); + @override + Widget build(BuildContext context, WidgetRef ref) { + final isDark = useState(Theme.of(context).brightness == Brightness.dark); + ref.listen(appLifeCycleProvider, (_, value) { + if (value == AppLifecycleState.resumed) { + isDark.value = Theme.of(context).brightness == Brightness.dark; + } + }); + final mapStyle = ref.watch(mapStyleProvider); + final stylePath = useState(null); + final getStyleJsonFuture = useMemoized( + () async { + final path = await mapStyle.getStyle(isDark: isDark.value); + stylePath.value = path; + }, + [isDark.value], + ); + useFuture( + getStyleJsonFuture, + ); + final cameraPosition = useState(''); + + final controller = useAnimationController( + duration: const Duration(microseconds: 1000), + ); + useAnimation(controller); + useEffect( + () { + controller + ..repeat() + ..addListener( + () => ref + .read(mainMapViewModelProvider.notifier) + .onTick(DateTime.now()), + ); + return null; + }, + [], + ); + + // 震央画像 / 震度アイコンの登録 + final images = ( + intenistyIcon: ref.watch(intensityIconRenderProvider), + intensityIconFill: ref.watch(intensityIconFillRenderProvider), + hypocenterIcon: ref.watch(hypocenterIconRenderProvider), + hypocenterLowPreciseIcon: + ref.watch(hypocenterLowPreciseIconRenderProvider), + ); + final hasTravelTimeDepthMapValue = ref.watch( + travelTimeDepthMapProvider + .select((e) => e.valueOrNull?.isNotEmpty ?? false), + ); + // 初回描画が終わるまで待つ + if (stylePath.value == null || + images.hypocenterIcon == null || + images.hypocenterLowPreciseIcon == null || + !images.intenistyIcon.isAllRendered() || + !images.intensityIconFill.isAllRendered() || + !hasTravelTimeDepthMapValue) { + return const Scaffold( + body: Center( + child: CircularProgressIndicator.adaptive(), + ), + ); + } + + final mapController = useState(null); + + ref.watch(mainMapViewModelProvider); + + final map = RepaintBoundary( + child: MaplibreMap( + initialCameraPosition: const CameraPosition( + target: LatLng(35.681236, 139.767125), + zoom: 3, + ), + styleString: stylePath.value, + onMapCreated: (controller) { + mapController.value = controller; + + controller.addListener( + () { + final position = controller.cameraPosition; + if (position != null) { + cameraPosition.value = + const JsonEncoder.withIndent(' ').convert(position.toMap()); + } + }, + ); + }, + onStyleLoadedCallback: () async { + final controller = mapController.value; + await controller?.setSymbolIconAllowOverlap(true); + await controller?.setSymbolIconIgnorePlacement(true); + final notifier = ref.read(mainMapViewModelProvider.notifier) + ..registerMapController( + controller!, + ); + + await Future.wait( + [ + notifier.updateImage( + name: 'hypocenter', + bytes: images.hypocenterIcon!, + ), + notifier.updateImage( + name: 'hypocenter-low-precise', + bytes: images.hypocenterLowPreciseIcon!, + ), + for (final MapEntry(:key, :value) in images.intenistyIcon.entries) + notifier.updateImage( + name: 'intensity-${key.type}', + bytes: value, + ), + for (final MapEntry(:key, :value) + in images.intensityIconFill.entries) + notifier.updateImage( + name: 'intensity-fill-${key.type}', + bytes: value, + ), + ], + ); + unawaited( + [ + notifier.onMapControllerRegistered(), + notifier.startUpdateEew(), + notifier.moveCameraToDefaultPosition( + bottom: 100, + left: 10, + right: 10, + ), + ].wait, + ); + }, + rotateGesturesEnabled: false, + tiltGesturesEnabled: false, + trackCameraPosition: true, + ), + ); + return Stack( + children: [ + map, + if (ref + .watch(debuggerProvider.select((value) => value.isDebugger))) ...[ + _MapDebugWidget(cameraPosition: cameraPosition), + ], + ], + ); + } +} + +class _MapDebugWidget extends HookConsumerWidget { + const _MapDebugWidget({ + required this.cameraPosition, + }); + + final ValueNotifier cameraPosition; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final isExpanded = useState(false); + if (!isExpanded.value) { + return AnimatedSwitcher( + duration: const Duration(milliseconds: 300), + child: Align( + alignment: Alignment.topLeft, + child: Padding( + padding: const EdgeInsets.all(8), + child: FilledButton.tonalIcon( + onPressed: () => isExpanded.value = true, + label: const Text( + 'Debug', + style: TextStyle( + fontFamily: FontFamily.jetBrainsMono, + ), + ), + icon: const Icon(Icons.bug_report), + ), + ), + ), + ); + } + return AnimatedSwitcher( + duration: const Duration(milliseconds: 300), + child: InkWell( + onTap: () => isExpanded.value = false, + child: Card( + color: Theme.of(context).colorScheme.surface.withOpacity(0.8), + child: Padding( + padding: const EdgeInsets.all(8), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Text( + '${cameraPosition.value}\n' + 'EewEstimatedIntensity: ${ref.watch(estimatedIntensityProvider).firstOrNull}', + style: const TextStyle( + fontSize: 10, + fontFamily: FontFamily.jetBrainsMono, + ), + ), + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/feature/home/features/map/viewmodel/main_map_viewmodel.dart b/lib/feature/home/features/map/viewmodel/main_map_viewmodel.dart new file mode 100644 index 000000000..931e25421 --- /dev/null +++ b/lib/feature/home/features/map/viewmodel/main_map_viewmodel.dart @@ -0,0 +1,874 @@ +import 'dart:typed_data'; + +import 'package:collection/collection.dart'; +import 'package:eqapi_types/eqapi_types.dart' as eqapi_types; +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqapi_types/lib.dart'; +import 'package:eqmonitor/core/provider/capture/intensity_icon_render.dart'; +import 'package:eqmonitor/core/provider/config/theme/intensity_color/intensity_color_provider.dart'; +import 'package:eqmonitor/core/provider/config/theme/intensity_color/model/intensity_color_model.dart'; +import 'package:eqmonitor/core/provider/map/map_style.dart'; +import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; +import 'package:eqmonitor/feature/home/features/eew/provider/eew_alive_telegram.dart'; +import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart'; +import 'package:eqmonitor/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart'; +import 'package:eqmonitor/feature/home/features/travel_time/provider/travel_time_provider.dart'; +import 'package:flutter/material.dart'; +import 'package:freezed_annotation/freezed_annotation.dart'; +import 'package:lat_lng/lat_lng.dart' as lat_lng; +import 'package:latlong2/latlong.dart' as latlong2; +import 'package:maplibre_gl/maplibre_gl.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'main_map_viewmodel.freezed.dart'; +part 'main_map_viewmodel.g.dart'; + +@Riverpod(dependencies: [EewAliveTelegram], keepAlive: true) +class MainMapViewModel extends _$MainMapViewModel { + @override + void build() { + ref + ..listen( + kmoniViewModelProvider, + (_, value) { + final analyzedPoints = value.analyzedPoints; + if (analyzedPoints == null) { + return; + } + _onKmoniStateChanged(analyzedPoints); + }, + ) + ..listen( + eewAliveTelegramProvider, + (_, value) => _onEewStateChanged(value ?? []), + ); + } + + MaplibreMapController? _controller; + + /// 実行前に `travelTimeDepthMapProvider`, `hypocenterIconRenderProvider`, + /// `hypocenterLowPreciseIconRenderProvider` が初期化済みであることを確認すること + Future onMapControllerRegistered() async { + final controller = _controller; + if (controller == null) { + return; + } + _kmoniObservationPointService = _KmoniObservationPointService( + controller: controller, + ); + _eewHypocenterService = _EewHypocenterService( + controller: controller, + ); + _eewPsWaveService = _EewPsWaveService( + controller: controller, + travelTimeMap: ref.read(travelTimeDepthMapProvider).requireValue, + ); + _eewEstimatedIntensityService = _EewEstimatedIntensityService( + controller: controller, + ); + await ( + _kmoniObservationPointService!.init(), + _eewHypocenterService!.init( + hypocenterIcon: ref.read(hypocenterIconRenderProvider)!, + hypocenterLowPreciseIcon: + ref.read(hypocenterLowPreciseIconRenderProvider)!, + ), + _eewPsWaveService!.init(), + _eewEstimatedIntensityService!.init( + ref.read(intensityColorProvider), + ), + ).wait; + + ref.onDispose(() async { + await ( + _kmoniObservationPointService!.dispose(), + _eewHypocenterService!.dispose(), + _eewPsWaveService!.dispose(), + _eewEstimatedIntensityService!.dispose(), + ).wait; + }); + } + + Future onTick(DateTime now) async { + final controller = _controller; + if (controller == null) { + return; + } + if (_eewPsWaveService == null || _eewHypocenterService == null) { + return; + } + try { + await ( + _eewPsWaveService!.tick(now: now), + _eewHypocenterService!.tick(), + ).wait; + // ignore: avoid_catches_without_on_clauses, empty_catches + } catch (e) {} + } + + // *********** EEW Related *********** + bool _isEewInitialized = false; + + _EewHypocenterService? _eewHypocenterService; + _EewPsWaveService? _eewPsWaveService; + _EewEstimatedIntensityService? _eewEstimatedIntensityService; + + Future _onEewStateChanged(List values) async { + // 初期化が終わっていない場合は何もしない + if (!_isEewInitialized) { + return; + } + final aliveBodies = values + .map((e) => e.latestEew) + .whereType() + .where((e) => e.hypocenter != null && e.hypocenter!.coordinate != null) + .toList(); + final normalEews = aliveBodies + .where((e) => !(e.isIpfOnePoint || e.isLevelEew || e.isPlum)) + .toList(); + _eewPsWaveService!.update(normalEews); + await _eewHypocenterService!.update(aliveBodies); + final transformed = _EewEstimatedIntensityService.transform( + aliveBodies + .map((e) => e.regions) + .whereType>() + .flattened + .toList(), + ); + await _eewEstimatedIntensityService!.update(transformed); + } + + // *********** Kyoshin Monitor Related *********** + _KmoniObservationPointService? _kmoniObservationPointService; + Future _onKmoniStateChanged( + List values, + ) async { + if (_controller == null) { + return; + } + final service = _KmoniObservationPointService( + controller: _controller!, + ); + await service.update(values); + } + + Future startUpdateEew() async { + if (_isEewInitialized || _controller == null) { + return; + } + + _isEewInitialized = true; + // 初回EEW State更新 + await _onEewStateChanged( + ref.read(eewAliveTelegramProvider) ?? [], + ); + } + + // *********** Utilities *********** + Future updateImage({ + required String name, + required Uint8List bytes, + }) async => + _controller?.addImage(name, bytes); + + // ignore: use_setters_to_change_properties + void registerMapController(MaplibreMapController controller) { + // ignore: void_checks + _controller = controller; + } + + bool isMapControllerRegistered() => _controller != null; + + Future moveCameraToDefaultPosition({ + double bottom = 0, + double left = 0, + double right = 0, + double top = 0, + }) async { + if (_controller == null) { + throw Exception('MaplibreMapController is null'); + } + await _controller!.moveCamera( + CameraUpdate.newLatLngBounds( + LatLngBounds( + southwest: const LatLng(30, 128.8), + northeast: const LatLng(45.8, 145.1), + ), + bottom: bottom, + left: left, + right: right, + top: top, + ), + ); + } + + Future animateCameraToDefaultPosition({ + double bottom = 50, + Duration duration = const Duration( + milliseconds: 250, + ), + }) async { + final controller = _controller; + if (controller == null) { + throw Exception('MaplibreMapController is null'); + } + await controller.animateCamera( + CameraUpdate.newLatLngBounds( + LatLngBounds( + southwest: const LatLng(30, 128.8), + northeast: const LatLng(45.8, 145.1), + ), + bottom: bottom, + left: 10, + right: 10, + top: 10, + ), + duration: duration, + ); + } +} + +class _KmoniObservationPointService { + _KmoniObservationPointService({required this.controller}); + + final MaplibreMapController controller; + + Future init() async { + await dispose(); + await controller.addGeoJsonSource( + layerId, + { + 'type': 'FeatureCollection', + 'features': [], + }, + ); + await controller.addCircleLayer( + layerId, + layerId, + const CircleLayerProperties( + circleRadius: [ + 'interpolate', + ['linear'], + ['zoom'], + 3, + 1, + 10, + 10, + ], + circleColor: [ + 'get', + 'color', + ], + ), + sourceLayer: layerId, + belowLayerId: BaseLayer.areaForecastLocalELine.name, + ); + } + + Future update(List points) => + controller.setGeoJsonSource( + layerId, + createGeoJson(points), + ); + + Future dispose() async { + await controller.removeLayer(layerId); + await controller.removeSource(layerId); + } + + static const String layerId = 'kmoni-circle'; + + Map createGeoJson( + List points, + ) => + { + 'type': 'FeatureCollection', + 'features': points + .where((e) => e.intensityValue != null) + .map( + (e) => { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [e.point.latLng.lon, e.point.latLng.lat], + }, + 'properties': { + 'color': e.intensityValue != null + ? e.intensityColor?.toHexStringRGB() + : null, + 'intensity': e.intensityValue, + }, + }, + ) + .toList(), + }; +} + +class _EewEstimatedIntensityService { + _EewEstimatedIntensityService({required this.controller}); + + final MaplibreMapController controller; + Future init(IntensityColorModel colorModel) async { + await dispose(); + await [ + // 各予想震度ごとにFill Layerを追加 + for (final intensity in JmaForecastIntensity.values) + controller.addLayer( + 'eqmonitor_map', + getFillLayerId(intensity), + FillLayerProperties( + fillColor: colorModel + .fromJmaForecastIntensity(intensity) + .background + .toHexStringRGB(), + ), + filter: [ + 'in', + ['get', 'code'], + [ + 'literal', + [], + ] + ], + sourceLayer: 'areaForecastLocalE', + belowLayerId: BaseLayer.areaForecastLocalELine.name, + ), + ].wait; + } + + /// 予想震度を更新する + /// [areas] は Map<予想震度, List<地域コード>> + Future update(Map> areas) => [ + // 各予想震度ごとにFill Layerを追加 + for (final intensity in JmaForecastIntensity.values) + controller.setFilter( + getFillLayerId(intensity), + [ + 'in', + ['get', 'code'], + [ + 'literal', + areas[intensity] ?? [], + ] + ], + ), + ].wait; + + Future dispose() => [ + for (final intensity in JmaForecastIntensity.values) + controller.removeLayer(getFillLayerId(intensity)), + ].wait; + + Future onIntensityColorModelChanged(IntensityColorModel model) => + dispose().then( + (_) => init(model), + ); + static Map> transform( + List regions, + ) { + // 同じ地域をまとめる + final regionsGrouped = regions.groupListsBy( + (e) => e.code, + ); + // 予想震度が最も大きいものを取り出す + final regionsIntensityMax = {}; + for (final entry in regionsGrouped.entries) { + final max = entry.value + .map((e) => e.forecastMaxInt) + .whereType() + .reduce( + (value, element) => value.toDisplayMaxInt().maxInt > + element.toDisplayMaxInt().maxInt + ? value + : element, + ); + regionsIntensityMax[entry.key] = max; + } + // Map<予想震度, List<地域コード>> に変換する + final regionsIntensityGrouped = >{}; + for (final entry in regionsIntensityMax.entries) { + final key = entry.value.toDisplayMaxInt().maxInt; + if (!regionsIntensityGrouped.containsKey(key)) { + regionsIntensityGrouped[key] = []; + } + regionsIntensityGrouped[key]!.add(entry.key); + } + return regionsIntensityGrouped; + } + + static String getFillLayerId(JmaForecastIntensity intensity) { + final base = intensity.type + .replaceAll('-', 'low') + .replaceAll('+', 'high') + .replaceAll('不明', 'unknown'); + return '$_EewEstimatedIntensityService-fill-$base'; + } +} + +class _EewHypocenterService { + _EewHypocenterService({required this.controller}); + + final MaplibreMapController controller; + + bool hasInitialized = false; + + Future init({ + required Uint8List hypocenterIcon, + required Uint8List hypocenterLowPreciseIcon, + }) async { + await ( + controller.addImage( + hypocenterIconId, + hypocenterIcon, + ), + controller.addImage( + hypocenterLowPreciseIconId, + hypocenterLowPreciseIcon, + ), + ).wait; + await controller.removeSource(sourceLayerId); + await controller.addGeoJsonSource( + sourceLayerId, + createGeoJson([]), + ); + + // adding Symbol Layers + await ( + controller.addSymbolLayer( + sourceLayerId, + hypocenterIconId, + SymbolLayerProperties( + iconImage: hypocenterIconId, + iconSize: [ + 'interpolate', + ['linear'], + ['zoom'], + 3, + 0.3, + 20, + 5, + ], + iconOpacity: [ + 'interpolate', + ['linear'], + ['zoom'], + 6, + 1.0, + 10, + 0.5, + ], + iconAllowOverlap: true, + ), + filter: [ + '==', + ['get', 'isLowPrecise'], + false, + ], + sourceLayer: sourceLayerId, + ), + controller.addSymbolLayer( + sourceLayerId, + hypocenterLowPreciseIconId, + SymbolLayerProperties( + iconImage: hypocenterLowPreciseIconId, + iconSize: [ + 'interpolate', + ['linear'], + ['zoom'], + 3, + 0.3, + 20, + 5, + ], + iconOpacity: [ + 'interpolate', + ['linear'], + ['zoom'], + 6, + 1.0, + 10, + 0.5, + ], + iconAllowOverlap: true, + ), + // where isLowPrecise == true + filter: [ + '==', + ['get', 'isLowPrecise'], + true, + ], + sourceLayer: sourceLayerId, + ), + ).wait; + hasInitialized = true; + } + + Future update(List items) => + controller.setGeoJsonSource( + sourceLayerId, + createGeoJson(items), + ); + + double _lastOpacity = 0; + + Future tick() async { + if (!hasInitialized) { + return; + } + final milliseconds = DateTime.now().millisecondsSinceEpoch; + if (milliseconds % 1000 < 500) { + if (_lastOpacity == 1.0) { + return; + } + _lastOpacity = 1.0; + await controller.setLayerProperties( + hypocenterIconId, + const SymbolLayerProperties( + iconOpacity: 1.0, + ), + ); + } else { + if (_lastOpacity == 0.5) { + return; + } + _lastOpacity = 0.5; + await controller.setLayerProperties( + hypocenterIconId, + const SymbolLayerProperties( + iconOpacity: 0.5, + ), + ); + } + } + + Future dispose() async { + await controller.removeLayer(sourceLayerId); + await controller.removeSource(sourceLayerId); + hasInitialized = false; + } + + static Map createGeoJson(List items) => + { + 'type': 'FeatureCollection', + 'features': items + .map( + (e) => { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + e.hypocenter!.coordinate!.lon, + e.hypocenter!.coordinate!.lat, + ], + }, + 'properties': _EewHypocenterProperties( + depth: e.depth ?? 0, + magnitude: e.magnitude ?? 0, + isLowPrecise: e.isPlum || e.isIpfOnePoint || e.isLevelEew, + ).toJson(), + }, + ) + .toList(), + }; + + static String get hypocenterIconId => 'hypocenter'; + static String get hypocenterLowPreciseIconId => 'hypocenter-low-precise'; + + static String get sourceLayerId => 'hypocenter'; +} + +class _EewPsWaveService { + _EewPsWaveService({ + required this.controller, + required this.travelTimeMap, + }) : _children = ( + _EewPWaveLineService(controller: controller), + _EewSWaveLineService(controller: controller), + // _EewPWaveFillService(controller: controller), + // _EewSWaveFillService(controller: controller), + ); + + final MaplibreMapController controller; + final TravelTimeDepthMap travelTimeMap; + + late final ( + _EewPWaveLineService, + _EewSWaveLineService, + // _EewPWaveFillService, + // _EewSWaveFillService + ) _children; + + Future init() async { + // datasource + await controller.removeSource(sourceId); + await controller.addGeoJsonSource( + sourceId, + createGeoJson([]), + ); + // line + await ( + _children.$1.init(), + _children.$2.init(), + ).wait; + // fill + // await _children.$3.init(); + //_children.$4.init(), + } + + List _cachedEews = []; + + /// 表示するEEWが0件になってから GeoJSON Sourceを更新したかどうか + bool didUpdatedSinceZero = false; + + Future tick({ + required DateTime now, + }) async { + final results = <(TravelTimeResult, lat_lng.LatLng)>[]; + // 表示EEWが1件以上だったら、didUpdatedSinceZeroをfalseにする + if (_cachedEews.isNotEmpty) { + didUpdatedSinceZero = false; + } + // 表示EEWが0件 かつ GeoJSON Sourceを更新したことがある場合は何もしない + if (_cachedEews.isEmpty && didUpdatedSinceZero) { + return; + } + for (final eew in _cachedEews) { + final hypocenter = eew.hypocenter?.coordinate; + final depth = eew.depth; + final originTime = eew.originTime; + if (hypocenter == null || depth == null || originTime == null) { + continue; + } + final travel = travelTimeMap.getTravelTime( + depth, + // as sec + now + .difference( + originTime, + ) + .inMicroseconds / + 1000 / + 1000, + ); + results.add( + ( + travel, + hypocenter, + ), + ); + } + // update GeoJSON + final geoJson = createGeoJson(results); + await controller.setGeoJsonSource( + sourceId, + geoJson, + ); + if (results.isEmpty) { + didUpdatedSinceZero = true; + } + } + + // ignore: use_setters_to_change_properties + void update(List items) => _cachedEews = items; + + static Map createGeoJson( + List<(TravelTimeResult, lat_lng.LatLng)> results, + ) => + { + 'type': 'FeatureCollection', + 'features': [ + // S-wave + for (final type in _WaveType.values) + for (final result in results) + { + 'type': 'Feature', + 'geometry': { + 'type': 'LineString', + 'coordinates': [ + // 0...360 + for (final bearing + in List.generate(361, (index) => index)) + () { + final latLng = const latlong2.Distance().offset( + latlong2.LatLng( + result.$2.lat, + result.$2.lon, + ), + ((type == _WaveType.sWave + ? result.$1.sDistance! + : result.$1.pDistance!) * + 1000) + .toInt(), + bearing, + ); + return [latLng.longitude, latLng.latitude]; + }(), + ], + }, + 'properties': { + 'distance': result.$1.sDistance, + 'hypocenter': { + 'type': 'Point', + 'coordinates': [ + result.$2.lon, + result.$2.lat, + ], + }, + 'type': type.name, + }, + }, + ], + }; + + Future dispose() => ( + controller.removeLayer(sourceId), + _children.$1.dispose(), + _children.$2.dispose(), + //_children.$3.dispose(), + //_children.$4.dispose(), + ).wait.then( + (_) => controller.removeSource(sourceId), + ); + + static String get sourceId => 'ps-wave'; +} + +enum _WaveType { + pWave, + sWave, + ; +} + +class _EewPWaveLineService { + _EewPWaveLineService({ + required this.controller, + }); + + final MaplibreMapController controller; + + Future init() async { + await dispose(); + await controller.addLineLayer( + _EewPsWaveService.sourceId, + layerId, + LineLayerProperties( + lineColor: Colors.blueAccent.toHexStringRGB(), + lineCap: 'round', + ), + filter: [ + '==', + 'type', + _WaveType.pWave.name, + ], + ); + } + + Future dispose() => controller.removeLayer(layerId); + + static String get layerId => 'p-wave-line'; +} + +class _EewSWaveLineService { + _EewSWaveLineService({ + required this.controller, + }); + + final MaplibreMapController controller; + + Future init() async { + await dispose(); + await controller.addLineLayer( + _EewPsWaveService.sourceId, + layerId, + LineLayerProperties( + lineColor: const Color(0xffff0000).toHexStringRGB(), + lineWidth: 2, + lineCap: 'round', + ), + filter: [ + '==', + 'type', + _WaveType.sWave.name, + ], + ); + } + + Future dispose() => controller.removeLayer(layerId); + + static String get layerId => 's-wave-line'; +} + +/* +class _EewPWaveFillService { + _EewPWaveFillService({ + required this.controller, + }); + + final MaplibreMapController controller; + + Future init() async { + await dispose(); + await controller.addFillLayer( + _EewPsWaveService.sourceId, + layerId, + FillLayerProperties( + fillColor: Colors.blue.toHexStringRGB(), + fillOpacity: 0.2, + ), + filter: [ + '==', + 'type', + _WaveType.pWave.name, + ], + belowLayerId: _EewPWaveLineService.layerId, + ); + } + + Future dispose() => controller.removeLayer(layerId); + + static String get layerId => 'p-wave-fill'; +} + +class _EewSWaveFillService { + _EewSWaveFillService({ + required this.controller, + }); + + final MaplibreMapController controller; + + Future init() async { + await dispose(); + await controller.addFillLayer( + _EewPsWaveService.sourceId, + layerId, + FillLayerProperties( + fillColor: Colors.red.toHexStringRGB(), + fillOpacity: 0.2, + ), + filter: [ + '==', + 'type', + _WaveType.sWave.name, + ], + belowLayerId: BaseLayer.countriesFill.name, + ); + } + + Future dispose() => controller.removeLayer(layerId); + + static String get layerId => 's-wave-fill'; +} +*/ + +@freezed +class _EewHypocenterProperties with _$EewHypocenterProperties { + const factory _EewHypocenterProperties({ + required int depth, + required double magnitude, + required bool isLowPrecise, + }) = __EewHypocenterProperties; + + // ignore: unused_element + factory _EewHypocenterProperties.fromJson(Map json) => + _$$_EewHypocenterPropertiesImplFromJson(json); +} diff --git a/lib/feature/home/features/map/viewmodel/main_map_viewmodel.freezed.dart b/lib/feature/home/features/map/viewmodel/main_map_viewmodel.freezed.dart new file mode 100644 index 000000000..4070d9f61 --- /dev/null +++ b/lib/feature/home/features/map/viewmodel/main_map_viewmodel.freezed.dart @@ -0,0 +1,197 @@ +// coverage:ignore-file +// GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint +// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark + +part of 'main_map_viewmodel.dart'; + +// ************************************************************************** +// FreezedGenerator +// ************************************************************************** + +T _$identity(T value) => value; + +final _privateConstructorUsedError = UnsupportedError( + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + +_EewHypocenterProperties _$EewHypocenterPropertiesFromJson( + Map json) { + return __EewHypocenterProperties.fromJson(json); +} + +/// @nodoc +mixin _$EewHypocenterProperties { + int get depth => throw _privateConstructorUsedError; + double get magnitude => throw _privateConstructorUsedError; + bool get isLowPrecise => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + _$EewHypocenterPropertiesCopyWith<_EewHypocenterProperties> get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class _$EewHypocenterPropertiesCopyWith<$Res> { + factory _$EewHypocenterPropertiesCopyWith(_EewHypocenterProperties value, + $Res Function(_EewHypocenterProperties) then) = + __$EewHypocenterPropertiesCopyWithImpl<$Res, _EewHypocenterProperties>; + @useResult + $Res call({int depth, double magnitude, bool isLowPrecise}); +} + +/// @nodoc +class __$EewHypocenterPropertiesCopyWithImpl<$Res, + $Val extends _EewHypocenterProperties> + implements _$EewHypocenterPropertiesCopyWith<$Res> { + __$EewHypocenterPropertiesCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? depth = null, + Object? magnitude = null, + Object? isLowPrecise = null, + }) { + return _then(_value.copyWith( + depth: null == depth + ? _value.depth + : depth // ignore: cast_nullable_to_non_nullable + as int, + magnitude: null == magnitude + ? _value.magnitude + : magnitude // ignore: cast_nullable_to_non_nullable + as double, + isLowPrecise: null == isLowPrecise + ? _value.isLowPrecise + : isLowPrecise // ignore: cast_nullable_to_non_nullable + as bool, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$_EewHypocenterPropertiesImplCopyWith<$Res> + implements _$EewHypocenterPropertiesCopyWith<$Res> { + factory _$$_EewHypocenterPropertiesImplCopyWith( + _$_EewHypocenterPropertiesImpl value, + $Res Function(_$_EewHypocenterPropertiesImpl) then) = + __$$_EewHypocenterPropertiesImplCopyWithImpl<$Res>; + @override + @useResult + $Res call({int depth, double magnitude, bool isLowPrecise}); +} + +/// @nodoc +class __$$_EewHypocenterPropertiesImplCopyWithImpl<$Res> + extends __$EewHypocenterPropertiesCopyWithImpl<$Res, + _$_EewHypocenterPropertiesImpl> + implements _$$_EewHypocenterPropertiesImplCopyWith<$Res> { + __$$_EewHypocenterPropertiesImplCopyWithImpl( + _$_EewHypocenterPropertiesImpl _value, + $Res Function(_$_EewHypocenterPropertiesImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? depth = null, + Object? magnitude = null, + Object? isLowPrecise = null, + }) { + return _then(_$_EewHypocenterPropertiesImpl( + depth: null == depth + ? _value.depth + : depth // ignore: cast_nullable_to_non_nullable + as int, + magnitude: null == magnitude + ? _value.magnitude + : magnitude // ignore: cast_nullable_to_non_nullable + as double, + isLowPrecise: null == isLowPrecise + ? _value.isLowPrecise + : isLowPrecise // ignore: cast_nullable_to_non_nullable + as bool, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$_EewHypocenterPropertiesImpl implements __EewHypocenterProperties { + const _$_EewHypocenterPropertiesImpl( + {required this.depth, + required this.magnitude, + required this.isLowPrecise}); + + factory _$_EewHypocenterPropertiesImpl.fromJson(Map json) => + _$$_EewHypocenterPropertiesImplFromJson(json); + + @override + final int depth; + @override + final double magnitude; + @override + final bool isLowPrecise; + + @override + String toString() { + return '_EewHypocenterProperties(depth: $depth, magnitude: $magnitude, isLowPrecise: $isLowPrecise)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$_EewHypocenterPropertiesImpl && + (identical(other.depth, depth) || other.depth == depth) && + (identical(other.magnitude, magnitude) || + other.magnitude == magnitude) && + (identical(other.isLowPrecise, isLowPrecise) || + other.isLowPrecise == isLowPrecise)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, depth, magnitude, isLowPrecise); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$_EewHypocenterPropertiesImplCopyWith<_$_EewHypocenterPropertiesImpl> + get copyWith => __$$_EewHypocenterPropertiesImplCopyWithImpl< + _$_EewHypocenterPropertiesImpl>(this, _$identity); + + @override + Map toJson() { + return _$$_EewHypocenterPropertiesImplToJson( + this, + ); + } +} + +abstract class __EewHypocenterProperties implements _EewHypocenterProperties { + const factory __EewHypocenterProperties( + {required final int depth, + required final double magnitude, + required final bool isLowPrecise}) = _$_EewHypocenterPropertiesImpl; + + factory __EewHypocenterProperties.fromJson(Map json) = + _$_EewHypocenterPropertiesImpl.fromJson; + + @override + int get depth; + @override + double get magnitude; + @override + bool get isLowPrecise; + @override + @JsonKey(ignore: true) + _$$_EewHypocenterPropertiesImplCopyWith<_$_EewHypocenterPropertiesImpl> + get copyWith => throw _privateConstructorUsedError; +} diff --git a/lib/feature/home/features/map/viewmodel/main_map_viewmodel.g.dart b/lib/feature/home/features/map/viewmodel/main_map_viewmodel.g.dart new file mode 100644 index 000000000..81fa0ac5c --- /dev/null +++ b/lib/feature/home/features/map/viewmodel/main_map_viewmodel.g.dart @@ -0,0 +1,58 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'main_map_viewmodel.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +_$_EewHypocenterPropertiesImpl _$$_EewHypocenterPropertiesImplFromJson( + Map json) => + $checkedCreate( + r'_$_EewHypocenterPropertiesImpl', + json, + ($checkedConvert) { + final val = _$_EewHypocenterPropertiesImpl( + depth: $checkedConvert('depth', (v) => v as int), + magnitude: $checkedConvert('magnitude', (v) => (v as num).toDouble()), + isLowPrecise: $checkedConvert('isLowPrecise', (v) => v as bool), + ); + return val; + }, + ); + +Map _$$_EewHypocenterPropertiesImplToJson( + _$_EewHypocenterPropertiesImpl instance) => + { + 'depth': instance.depth, + 'magnitude': instance.magnitude, + 'isLowPrecise': instance.isLowPrecise, + }; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$mainMapViewModelHash() => r'e92ab7fedfb50411cb9cc563a78eeb01120f4837'; + +/// See also [MainMapViewModel]. +@ProviderFor(MainMapViewModel) +final mainMapViewModelProvider = + NotifierProvider.internal( + MainMapViewModel.new, + name: r'mainMapViewModelProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$mainMapViewModelHash, + dependencies: [eewAliveTelegramProvider], + allTransitiveDependencies: { + eewAliveTelegramProvider, + ...?eewAliveTelegramProvider.allTransitiveDependencies + }, +); + +typedef _$MainMapViewModel = Notifier; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/features/telegram_url/model/telegram_url_model.freezed.dart b/lib/feature/home/features/telegram_url/model/telegram_url_model.freezed.dart index f2b33d79d..08583ae62 100644 --- a/lib/feature/home/features/telegram_url/model/telegram_url_model.freezed.dart +++ b/lib/feature/home/features/telegram_url/model/telegram_url_model.freezed.dart @@ -140,7 +140,7 @@ class _$TelegramUrlModelImpl implements _TelegramUrlModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramUrlModelImpl && diff --git a/lib/feature/home/features/telegram_url/provider/telegram_url_provider.dart b/lib/feature/home/features/telegram_url/provider/telegram_url_provider.dart index cdc6ec063..a875ab6a0 100644 --- a/lib/feature/home/features/telegram_url/provider/telegram_url_provider.dart +++ b/lib/feature/home/features/telegram_url/provider/telegram_url_provider.dart @@ -4,7 +4,6 @@ import 'package:eqmonitor/core/provider/shared_preferences.dart'; import 'package:eqmonitor/env/env.dart'; import 'package:eqmonitor/feature/home/features/telegram_url/model/telegram_url_model.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:shared_preferences/shared_preferences.dart'; part 'telegram_url_provider.g.dart'; @@ -12,14 +11,11 @@ part 'telegram_url_provider.g.dart'; class TelegramUrl extends _$TelegramUrl { @override TelegramUrlModel build() { - _prefs = ref.watch(sharedPreferencesProvider); final result = _load(); if (result != null) { return result; } - ref.listenSelf((_, __) => _save()); - return TelegramUrlModel( restApiUrl: Env.restApiUrl, wsApiUrl: Env.wsApiUrl, @@ -27,14 +23,13 @@ class TelegramUrl extends _$TelegramUrl { ); } - late final SharedPreferences _prefs; - static const _key = 'telegram_url'; - Future _save() async => _prefs.setString(_key, jsonEncode(state)); + Future _save() async => + ref.read(sharedPreferencesProvider).setString(_key, jsonEncode(state)); TelegramUrlModel? _load() { - final jsonString = _prefs.getString(_key); + final jsonString = ref.read(sharedPreferencesProvider).getString(_key); if (jsonString == null) { return null; } @@ -48,6 +43,8 @@ class TelegramUrl extends _$TelegramUrl { } } - // ignore: avoid_setters_without_getters - set setState(TelegramUrlModel model) => state = model; + void updateRestUrl(String url) { + state = state.copyWith(restApiUrl: url); + _save(); + } } diff --git a/lib/feature/home/features/telegram_url/provider/telegram_url_provider.g.dart b/lib/feature/home/features/telegram_url/provider/telegram_url_provider.g.dart index 9311534e2..c13ff0cda 100644 --- a/lib/feature/home/features/telegram_url/provider/telegram_url_provider.g.dart +++ b/lib/feature/home/features/telegram_url/provider/telegram_url_provider.g.dart @@ -8,7 +8,7 @@ part of 'telegram_url_provider.dart'; // RiverpodGenerator // ************************************************************************** -String _$telegramUrlHash() => r'b414a20dd3741b0fc51285b9bdbf1396b959f9b3'; +String _$telegramUrlHash() => r'31e58fbed6119af17a5f5b6bbe6cdc40b8717a76'; /// See also [TelegramUrl]. @ProviderFor(TelegramUrl) diff --git a/lib/feature/home/features/telegram_ws/model/eew_model.freezed.dart b/lib/feature/home/features/telegram_ws/model/eew_model.freezed.dart index 490bbf434..44956f8c3 100644 --- a/lib/feature/home/features/telegram_ws/model/eew_model.freezed.dart +++ b/lib/feature/home/features/telegram_ws/model/eew_model.freezed.dart @@ -123,7 +123,7 @@ class _$EewWsItemImpl implements _EewWsItem { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EewWsItemImpl && diff --git a/lib/feature/home/features/telegram_ws/model/socket_status.freezed.dart b/lib/feature/home/features/telegram_ws/model/socket_status.freezed.dart index 0ce067e53..61ec31301 100644 --- a/lib/feature/home/features/telegram_ws/model/socket_status.freezed.dart +++ b/lib/feature/home/features/telegram_ws/model/socket_status.freezed.dart @@ -112,7 +112,7 @@ class _$SocketStatusModelImpl implements _SocketStatusModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SocketStatusModelImpl && diff --git a/lib/feature/home/features/telegram_ws/model/telegram_ws_model.freezed.dart b/lib/feature/home/features/telegram_ws/model/telegram_ws_model.freezed.dart index 10997451d..e39a4ad94 100644 --- a/lib/feature/home/features/telegram_ws/model/telegram_ws_model.freezed.dart +++ b/lib/feature/home/features/telegram_ws/model/telegram_ws_model.freezed.dart @@ -122,7 +122,7 @@ class _$TelegramWsModelImpl implements _TelegramWsModel { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramWsModelImpl && diff --git a/lib/feature/home/features/telegram_ws/provider/telegram_provider.dart b/lib/feature/home/features/telegram_ws/provider/telegram_provider.dart index 7b28f028e..5c0db901d 100644 --- a/lib/feature/home/features/telegram_ws/provider/telegram_provider.dart +++ b/lib/feature/home/features/telegram_ws/provider/telegram_provider.dart @@ -5,43 +5,37 @@ import 'package:eqmonitor/core/provider/log/talker.dart'; import 'package:eqmonitor/feature/home/features/telegram_ws/model/socket_status.dart'; import 'package:eqmonitor/feature/home/features/telegram_ws/provider/telegram_socket_io.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:socket_io_client/socket_io_client.dart'; -import 'package:talker_flutter/talker_flutter.dart'; part 'telegram_provider.g.dart'; @Riverpod( keepAlive: true, - dependencies: [telegramSocketIo], + dependencies: [telegramSocketIo, telegramSocketIo], ) class TelegramWs extends _$TelegramWs { - late final Talker _talker; - late final Socket _socket; - @override Stream build() { - _talker = ref.watch(talkerProvider); - _socket = ref.watch(telegramSocketIoProvider); + final talker = ref.watch(talkerProvider); + final socket = ref.watch(telegramSocketIoProvider); final stream = StreamController(); ref.onDispose(stream.close); - _socket.on('data', (data) { + socket.on('data', (data) { try { - _talker.logTyped(TelegramWebSocketLog('Data received: $data')); + talker.logTyped(TelegramWebSocketLog('Data received: $data')); final payload = data as Map; final telegram = TelegramV3.fromJson(payload); stream.add(telegram); // ignore: avoid_catches_without_on_clauses } catch (error, stackTrace) { - _talker.handle(error, stackTrace); + talker.handle(error, stackTrace); } }); return stream.stream; } - void requestSample() { - _socket.send(['sample/vxse45']); - } + void requestSample() => + ref.read(telegramSocketIoProvider).send(['sample/vxse45']); } @Riverpod(keepAlive: true) diff --git a/lib/feature/home/features/telegram_ws/provider/telegram_provider.g.dart b/lib/feature/home/features/telegram_ws/provider/telegram_provider.g.dart index 270c4ca7b..d49fbf682 100644 --- a/lib/feature/home/features/telegram_ws/provider/telegram_provider.g.dart +++ b/lib/feature/home/features/telegram_ws/provider/telegram_provider.g.dart @@ -8,7 +8,7 @@ part of 'telegram_provider.dart'; // RiverpodGenerator // ************************************************************************** -String _$telegramWsHash() => r'321380dfa157630caf80049d90292e22d483c95c'; +String _$telegramWsHash() => r'3eac4885bad8ff0d8bb18e87be0ec5b47dbf504f'; /// See also [TelegramWs]. @ProviderFor(TelegramWs) diff --git a/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.dart b/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.dart index c6ae144c0..ff619f6cb 100644 --- a/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.dart +++ b/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.dart @@ -13,13 +13,14 @@ part 'telegram_socket_io.g.dart'; @Riverpod(keepAlive: true, dependencies: []) Socket telegramSocketIo(TelegramSocketIoRef ref) { final talker = ref.watch(talkerProvider); - final url = ref.watch(telegramUrlProvider).wsApiUrl; + final url = ref.watch(telegramUrlProvider.select((v) => v.wsApiUrl)); final authorization = ref.watch(telegramUrlProvider).apiAuthorization ?? ''; final socket = io( url, OptionBuilder() .setTransports(['websocket']) .enableReconnection() + .enableAutoConnect() .enableForceNew() .setQuery({'key': authorization}) .build(), @@ -37,8 +38,13 @@ Socket telegramSocketIo(TelegramSocketIoRef ref) { // 再接続 }) ..onAny((event, data) { - talker.logTyped(TelegramWebSocketLog('Event: $event ($data)')); - log('Event: $event ($data)'); + talker.logTyped( + TelegramWebSocketLog( + 'Event: $event ($data)' + .replaceAll(url, '**') + .replaceAll(authorization, '++'), + ), + ); }) ..onPing((data) { log('Ping: $data'); diff --git a/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.g.dart b/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.g.dart index 0c3230ff8..6f025d84a 100644 --- a/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.g.dart +++ b/lib/feature/home/features/telegram_ws/provider/telegram_socket_io.g.dart @@ -8,7 +8,7 @@ part of 'telegram_socket_io.dart'; // RiverpodGenerator // ************************************************************************** -String _$telegramSocketIoHash() => r'601366de53fdaed8a00fbda01e918b40eab08c25'; +String _$telegramSocketIoHash() => r'499919fc0588ac1b870dbe794df5ad69b9204426'; /// See also [telegramSocketIo]. @ProviderFor(telegramSocketIo) diff --git a/lib/feature/home/features/travel_time/model/travel_time_table.freezed.dart b/lib/feature/home/features/travel_time/model/travel_time_table.freezed.dart index d5a9fdf1c..ec495f671 100644 --- a/lib/feature/home/features/travel_time/model/travel_time_table.freezed.dart +++ b/lib/feature/home/features/travel_time/model/travel_time_table.freezed.dart @@ -146,7 +146,7 @@ class _$TravelTimeTableImpl implements _TravelTimeTable { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TravelTimeTableImpl && @@ -284,7 +284,7 @@ class _$TravelTimeTablesImpl implements _TravelTimeTables { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TravelTimeTablesImpl && diff --git a/lib/feature/home/features/travel_time/provider/travel_time_provider.dart b/lib/feature/home/features/travel_time/provider/travel_time_provider.dart index 24a074247..a764550b8 100644 --- a/lib/feature/home/features/travel_time/provider/travel_time_provider.dart +++ b/lib/feature/home/features/travel_time/provider/travel_time_provider.dart @@ -1,27 +1,63 @@ import 'package:collection/collection.dart'; import 'package:eqmonitor/feature/home/features/travel_time/data/travel_time_data_source.dart'; import 'package:eqmonitor/feature/home/features/travel_time/model/travel_time_table.dart'; +import 'package:extensions/extensions.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; part 'travel_time_provider.g.dart'; @Riverpod(keepAlive: true) -class TravelTime extends _$TravelTime { - @override - TravelTimeTables build() { - _dataSource = ref.watch(travelTimeDataSourceProvider); - initialize(); - return const TravelTimeTables(table: []); +Future travelTime(TravelTimeRef ref) async { + final dataSource = ref.watch(travelTimeDataSourceProvider); + return TravelTimeTables(table: await dataSource.loadTables()); +} + +@Riverpod(keepAlive: true) +Future travelTimeDepthMap( + TravelTimeDepthMapRef ref, +) { + final state = ref.watch(travelTimeProvider); + final value = state.value; + if (value == null) { + return Future.value({}); } + return Future.value(value.table.groupListsBy((e) => e.depth)); +} - late TravelTimeDataSource _dataSource; +typedef TravelTimeDepthMap = Map>; - Future initialize() async => - state = TravelTimeTables(table: await _dataSource.loadTables()); +extension TravelTimeDepthMapCalc on TravelTimeDepthMap { + /// 走時を求める + /// [depth]: 震源の深さ(km) + /// [duration]: 地震発生からの経過時間(sec) + TravelTimeResult getTravelTime(int depth, double duration) { + final lists = getOrNull(depth); + if (depth > 700 || duration > 2000) { + return TravelTimeResult(null, null); + } + if (lists == null) { + return TravelTimeResult(null, null); + } + final p1 = lists.firstWhereOrNull((e) => e.p <= duration); + final p2 = lists.lastWhereOrNull((e) => e.p >= duration); + if (p1 == null || p2 == null) { + return TravelTimeResult(null, null); + } + final p = (duration - p1.p) / (p2.p - p1.p) * (p2.distance - p1.distance) + + p1.distance; + final s1 = lists.firstWhereOrNull((e) => e.s <= duration); + final s2 = lists.lastWhereOrNull((e) => e.s >= duration); + if (s1 == null || s2 == null) { + return TravelTimeResult(null, p); + } + final s = (duration - s1.s) / (s2.s - s1.s) * (s2.distance - s1.distance) + + s1.distance; + return TravelTimeResult(s, p); + } } extension TravelTimeTablesCalc on TravelTimeTables { - /// 走時を求めます + /// 走時を求める /// [depth]: 震源の深さ(km) /// [time]: 地震発生からの経過時間(sec) /// ref: https://zenn.dev/iedred7584/articles/travel-time-table-converter-adcal2020#%E5%86%86%E3%81%AE%E5%A4%A7%E3%81%8D%E3%81%95%E3%82%92%E6%B1%82%E3%82%81%E3%82%8B diff --git a/lib/feature/home/features/travel_time/provider/travel_time_provider.g.dart b/lib/feature/home/features/travel_time/provider/travel_time_provider.g.dart index 6b37860e0..640a31fb6 100644 --- a/lib/feature/home/features/travel_time/provider/travel_time_provider.g.dart +++ b/lib/feature/home/features/travel_time/provider/travel_time_provider.g.dart @@ -8,13 +8,12 @@ part of 'travel_time_provider.dart'; // RiverpodGenerator // ************************************************************************** -String _$travelTimeHash() => r'457a7d39d3b801a9dfecd594a69f6f3431d89c05'; +String _$travelTimeHash() => r'b309b731b7ecb63f9896067485571d5e34249361'; -/// See also [TravelTime]. -@ProviderFor(TravelTime) -final travelTimeProvider = - NotifierProvider.internal( - TravelTime.new, +/// See also [travelTime]. +@ProviderFor(travelTime) +final travelTimeProvider = FutureProvider.internal( + travelTime, name: r'travelTimeProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$travelTimeHash, @@ -22,6 +21,22 @@ final travelTimeProvider = allTransitiveDependencies: null, ); -typedef _$TravelTime = Notifier; +typedef TravelTimeRef = FutureProviderRef; +String _$travelTimeDepthMapHash() => + r'241005fd772514c36e310f6d4757d33429dea0f2'; + +/// See also [travelTimeDepthMap]. +@ProviderFor(travelTimeDepthMap) +final travelTimeDepthMapProvider = FutureProvider.internal( + travelTimeDepthMap, + name: r'travelTimeDepthMapProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$travelTimeDepthMapHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef TravelTimeDepthMapRef = FutureProviderRef; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/home/model/kmoni_config.freezed.dart b/lib/feature/home/model/kmoni_config.freezed.dart index a034925bf..bec406ca3 100644 --- a/lib/feature/home/model/kmoni_config.freezed.dart +++ b/lib/feature/home/model/kmoni_config.freezed.dart @@ -112,7 +112,7 @@ class _$KmoniConfigImpl implements _KmoniConfig { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$KmoniConfigImpl && diff --git a/lib/feature/home/view/home_view.dart b/lib/feature/home/view/home_view.dart index 955503945..e9eb51940 100644 --- a/lib/feature/home/view/home_view.dart +++ b/lib/feature/home/view/home_view.dart @@ -1,161 +1,70 @@ -import 'dart:async'; - -import 'package:eqmonitor/core/component/map/base_map.dart'; -import 'package:eqmonitor/core/component/map/map_touch_handler_widget.dart'; -import 'package:eqmonitor/core/component/map/model/map_config.dart'; -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; import 'package:eqmonitor/core/component/sheet/basic_modal_sheet.dart'; import 'package:eqmonitor/core/component/sheet/sheet_floating_action_buttons.dart'; +import 'package:eqmonitor/core/hook/use_sheet_controller.dart'; +import 'package:eqmonitor/core/provider/config/notification/fcm_topic_manager.dart'; import 'package:eqmonitor/core/provider/config/permission/permission_status_provider.dart'; -import 'package:eqmonitor/core/provider/log/talker.dart'; import 'package:eqmonitor/core/router/router.dart'; import 'package:eqmonitor/feature/home/component/eew/eew_widget.dart'; -import 'package:eqmonitor/feature/home/component/map/eew_estimated_intensity_widget.dart'; -import 'package:eqmonitor/feature/home/component/map/eew_hypocenter_widget.dart'; -import 'package:eqmonitor/feature/home/component/map/eew_pswave_arrival_circle.dart'; -import 'package:eqmonitor/feature/home/component/map/kmoni_map_widget.dart'; +import 'package:eqmonitor/feature/home/component/parameter/parameter_loader_widget.dart'; +import 'package:eqmonitor/feature/home/component/render/hypocenter_render.dart'; +import 'package:eqmonitor/feature/home/component/render/intensity_renderer_widget.dart'; import 'package:eqmonitor/feature/home/component/sheet/earthquake_history_widget.dart'; import 'package:eqmonitor/feature/home/component/sheet/status_widget.dart'; import 'package:eqmonitor/feature/home/component/sheet/update_widget.dart'; import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/kmoni_view_model.dart'; -import 'package:eqmonitor/feature/home/features/kmoni/viewmodel/kmoni_view_settings.dart'; import 'package:eqmonitor/feature/home/features/kmoni/widget/kmoni_maintenance_widget.dart'; -import 'package:eqmonitor/feature/home/viewmodel/home_viewmodel.dart'; +import 'package:eqmonitor/feature/home/features/map/view/main_map_view.dart'; +import 'package:eqmonitor/feature/home/features/map/viewmodel/main_map_viewmodel.dart'; +import 'package:eqmonitor/feature/home/features/telegram_ws/provider/telegram_provider.dart'; +import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:sheet/sheet.dart'; -import 'package:talker_flutter/talker_flutter.dart'; class HomeView extends HookConsumerWidget { const HomeView({super.key}); @override Widget build(BuildContext context, WidgetRef ref) { - final vm = ref.watch(homeViewModelProvider); - final mapKey = vm.mapKey; - - useEffect( - () { - WidgetsBinding.instance.endOfFrame.then((_) { - unawaited( - ( - ref.read(kmoniViewModelProvider.notifier).initialize(), - ref.read(permissionProvider.notifier).initialize() - ).wait, - ); - }); - return null; - }, - [mapKey], - ); - // * 地図データが読み込まれるまでローディングを表示 - - return TalkerWrapper( - talker: ref.watch(talkerProvider), - child: Scaffold( - appBar: AppBar( - title: Text( - 'EQMonitor', - style: Theme.of(context).textTheme.titleLarge!.copyWith( - fontWeight: FontWeight.bold, - ), - ), - forceMaterialTransparency: true, + return Scaffold( + appBar: AppBar( + title: Text( + 'EQMonitor', + style: Theme.of(context).textTheme.titleLarge!.copyWith( + fontWeight: FontWeight.bold, + ), ), - body: _HomeBodyWidget(mapKey: mapKey), + forceMaterialTransparency: true, ), + body: const _HomeBodyWidget(), ); } } class _HomeBodyWidget extends HookConsumerWidget { - const _HomeBodyWidget({ - required this.mapKey, - }); - - final GlobalKey> mapKey; + const _HomeBodyWidget(); @override Widget build(BuildContext context, WidgetRef ref) { - final vm = ref.watch(homeViewModelProvider); - final moveController = useAnimationController(); - final scaleController = useAnimationController(); - final globalPointAndZoomLevelController = useAnimationController(); - // * mapViewModelへWidgetの各情報を登録しながら 初期化 - void init() { - // Widgetのサイズを登録 - final renderBox = mapKey.currentContext!.findRenderObject()! as RenderBox; - ref.read(mapViewModelProvider(mapKey).notifier) - ..registerRenderBox( - renderBox, - ) - ..registerAnimationControllers( - moveController: moveController, - scaleController: scaleController, - globalPointAndZoomLevelController: globalPointAndZoomLevelController, - ) - ..resetMarkAsMoved() - ..applyBounds(); - } - + final sheetController = useSheetController(); useEffect( () { - WidgetsBinding.instance.endOfFrame.then((_) => init()); + WidgetsBinding.instance.endOfFrame.then((_) { + ( + ref.read(kmoniViewModelProvider.notifier).initialize(), + ref.read(permissionProvider.notifier).initialize(), + ref.read(fcmTopicManagerProvider.notifier).setup(), + ).wait; + }); return null; }, [], ); - final sheetController = vm.sheetController; - final mediaQuery = MediaQuery.of(context); - - useEffect( - () { - ref.read(homeViewModelProvider).height = mediaQuery.size.height - - (mediaQuery.padding.top + mediaQuery.padding.bottom) - - kToolbarHeight; - return null; - }, - [context], - ); - final isDark = Theme.of(context).brightness == Brightness.dark; - final backgroundColor = - (isDark ? MapColorScheme.dark() : MapColorScheme.light()) - .backgroundColor; final child = Stack( children: [ - // background color - Container( - color: backgroundColor, - ), - RepaintBoundary( - child: ClipRRect( - key: mapKey, - child: Stack( - children: [ - RepaintBoundary(child: BaseMapWidget.polygon(mapKey)), - RepaintBoundary( - child: EewPsWaveArrivalCircleWidget.gradient(mapKey: mapKey), - ), - RepaintBoundary( - child: EewEstimatedIntensityWidget(mapKey: mapKey), - ), - RepaintBoundary(child: BaseMapWidget.polyline(mapKey)), - if (ref.watch( - kmoniSettingsProvider.select((value) => value.useKmoni), - )) - RepaintBoundary(child: KmoniMapWidget(mapKey: mapKey)), - RepaintBoundary( - child: EewPsWaveArrivalCircleWidget.border(mapKey: mapKey), - ), - RepaintBoundary(child: EewHypocenterWidget(mapKey: mapKey)), - MapTouchHandlerWidget(mapKey: mapKey), - ], - ), - ), - ), + const MainMapView(), RepaintBoundary( child: Stack( children: [ @@ -164,50 +73,54 @@ class _HomeBodyWidget extends HookConsumerWidget { fab: [ FloatingActionButton.small( heroTag: 'home', - onPressed: () { - final height = mediaQuery.size.height - - (mediaQuery.padding.top + mediaQuery.padding.bottom) - - kToolbarHeight; - ref.read(mapViewModelProvider(mapKey).notifier) - ..resetMarkAsMoved() - ..animatedApplyBounds( - padding: const EdgeInsets.all(8).add( - EdgeInsets.only( - bottom: switch (sheetController.animation.value) { - < 0.3 => - height * sheetController.animation.value, - _ => height * 0.3, - }, - ), - ), - ); + tooltip: '表示領域領域を戻す', + onPressed: () async { + final notifier = + ref.read(mainMapViewModelProvider.notifier); + if (!notifier.isMapControllerRegistered()) { + return; + } + // 画面の高さを取得 + final height = MediaQuery.sizeOf(context).height; + final sheetRatio = sheetController.animation.value; + final bottomPadding = switch (sheetRatio) { + < 0.3 => height * sheetRatio, + _ => height * 0.3, + }; + // sheetの高さを取得 + await notifier.animateCameraToDefaultPosition( + bottom: bottomPadding, + ); }, elevation: 4, child: const Icon(Icons.home), ), + if (kDebugMode) + FloatingActionButton.small( + onPressed: + ref.read(telegramWsProvider.notifier).requestSample, + heroTag: 'sample', + child: const Icon(Icons.warning), + ), ], ), // Sheet _Sheet(sheetController: sheetController), + FractionalTranslation( + translation: -const Offset(2, 2), + child: const IntensityRendererWidget(), + ), + FractionalTranslation( + translation: -const Offset(2, 2), + // translation: -const Offset(2, 2), + child: const HypocenterRenderWidget(), + ), ], ), ), ], ); - - return NotificationListener( - onNotification: (notification) { - WidgetsBinding.instance.endOfFrame.then( - (_) => ref.read(mapViewModelProvider(mapKey).notifier) - ..resetMarkAsMoved() - ..applyBounds(), - ); - return false; - }, - child: SizeChangedLayoutNotifier( - child: child, - ), - ); + return child; } } @@ -222,17 +135,24 @@ class _Sheet extends StatelessWidget { Widget build(BuildContext context) { return RepaintBoundary( child: BasicModalSheet( + useColumn: true, controller: sheetController, children: [ const EewWidgets(), const SheetStatusWidget(), const KmoniMaintenanceWidget(), + const ParameterLoaderWidget(), const UpdateWidget(), const EarthquakeHistorySheetWidget(), + ListTile( + title: const Text('地震・津波に関するお知らせ'), + leading: const Icon(Icons.info), + onTap: () => const InformationHistoryRoute().push(context), + ), ListTile( title: const Text('設定'), leading: const Icon(Icons.settings), - onTap: () => context.push(const SettingsRoute().location), + onTap: () => const SettingsRoute().push(context), ), ], ), diff --git a/lib/feature/home/viewmodel/home_viewmodel.dart b/lib/feature/home/viewmodel/home_viewmodel.dart deleted file mode 100644 index 812ab2578..000000000 --- a/lib/feature/home/viewmodel/home_viewmodel.dart +++ /dev/null @@ -1,102 +0,0 @@ -import 'package:eqmonitor/core/component/map/view_model/map_viewmodel.dart'; -import 'package:eqmonitor/feature/home/features/eew/eew_provider.dart'; -import 'package:eqmonitor/feature/home/features/estimated_intensity/provider/estimated_intensity_provider.dart'; -import 'package:eqmonitor/feature/home/features/kmoni_observation_points/model/kmoni_observation_point.dart'; -import 'package:flutter/material.dart'; -import 'package:lat_lng/lat_lng.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:sheet/sheet.dart'; - -part 'home_viewmodel.g.dart'; - -@riverpod -HomeViewModel homeViewModel(HomeViewModelRef ref) => HomeViewModel(ref); - -class HomeViewModel { - HomeViewModel(this.ref) : super() { - Future.delayed(const Duration(milliseconds: 100), () { - onEstimatedIntensityChanged( - ref.read(estimatedIntensityProvider), - ); - }); - ref.listen(estimatedIntensityProvider, (_, next) { - onEstimatedIntensityChanged(next); - }); - } - - final HomeViewModelRef ref; - final mapKey = const GlobalObjectKey(MapViewModel); - - double height = 0; - - SheetController sheetController = SheetController(); - - int _lastEstimatedIntensityChangedEewsLength = -1; - - void onEstimatedIntensityChanged( - List points, - ) { - final filtered = _getTargets(points); - // EEWの要素数が変化したかチェック - final length = ref.read(eewTelegramProvider).length; - if (_lastEstimatedIntensityChangedEewsLength != length) { - _lastEstimatedIntensityChangedEewsLength = length; - ref.read(mapViewModelProvider(mapKey).notifier).resetMarkAsMoved(); - } - if (filtered == null) { - ref.read(mapViewModelProvider(mapKey).notifier).onRegisterRenderBox( - () => ref - .read(mapViewModelProvider(mapKey).notifier) - .animatedApplyBoundsIfNeeded( - padding: const EdgeInsets.all(8).add( - EdgeInsets.only( - bottom: switch (sheetController.animation.value) { - < 0.3 => height * sheetController.animation.value, - _ => height * 0.3, - }, - ), - ), - ), - ); - return; - } - // 表示領域を変える - ref.read(mapViewModelProvider(mapKey).notifier) - ..setBounds( - filtered, - ) - ..animatedApplyBoundsIfNeeded( - padding: const EdgeInsets.all(8).add( - EdgeInsets.only( - bottom: switch (sheetController.animation.value) { - < 0.3 => height * sheetController.animation.value, - _ => height * 0.3, - }, - ), - ), - ); - } - - /// 震度1以上の観測点のうち、震度が最大~最大-1の観測点を含むLatLngの配列を返す - List? _getTargets(List points) { - final filtered = points.where((e) => e.intensityValue! > 0).toList(); - if (filtered.isEmpty) { - return null; - } - final max = filtered.first.intensityValue!; - // しきい値 - final threshold = max - 2; - final filteredPoints = - filtered.where((e) => e.intensityValue! >= threshold); - if (filteredPoints.isEmpty) { - return null; - } - final latLngs = filteredPoints.map((e) => e.point.latLng).toList() - ..addAll( - ref - .read(eewNormalTelegramProvider) - .map((e) => e.$1.hypocenter!.coordinate!), - ); - return latLngs; - } -} diff --git a/lib/feature/information_history/page/information_history_page.dart b/lib/feature/information_history/page/information_history_page.dart new file mode 100644 index 000000000..28add5288 --- /dev/null +++ b/lib/feature/information_history/page/information_history_page.dart @@ -0,0 +1,155 @@ +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/router/router.dart'; +import 'package:eqmonitor/feature/information_history/viewmodel/information_history_view_model.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; +import 'package:extensions/extensions.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_hooks/flutter_hooks.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; +import 'package:intl/intl.dart'; + +class InformationHistoryPage extends HookConsumerWidget { + const InformationHistoryPage({super.key}); + @override + Widget build(BuildContext context, WidgetRef ref) { + final state = ref.watch(informationHistoryViewModelProvider); + final scrollController = PrimaryScrollController.of(context); + useEffect( + () { + WidgetsBinding.instance.endOfFrame.then( + (_) { + scrollController.addListener( + () => ref + .read(informationHistoryViewModelProvider.notifier) + .onScrollPositionChanged( + scrollController, + ), + ); + ref + .read(informationHistoryViewModelProvider.notifier) + .updateIfNull(); + }, + ); + return null; + }, + ); + final body = PrimaryScrollController( + controller: scrollController, + child: CustomScrollView( + primary: true, + slivers: [ + const SliverAppBar.medium( + title: Text('地震・津波に関するお知らせ'), + ), + state?.whenOrNull( + data: (data) => _InformationDataView(data: data), + error: (error, stackTrace) => SliverFillRemaining( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + mainAxisSize: MainAxisSize.min, + children: [ + const Text( + 'お知らせの取得中にエラーが発生しました', + ), + Text(error.toString()), + FilledButton.tonal( + onPressed: () async => ref + .read( + informationHistoryViewModelProvider.notifier, + ) + .update( + loadMore: false, + ), + child: const Text('再読み込み'), + ), + ], + ), + ), + ) ?? + const _Loading(), + ], + ), + ); + return Scaffold( + body: RefreshIndicator.adaptive( + onRefresh: () async => ref.refresh(informationHistoryViewModelProvider), + edgeOffset: 112, + child: body, + ), + ); + } +} + +class _InformationDataView extends HookConsumerWidget { + const _InformationDataView({required this.data}); + final List data; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final hasNext = !data.any((e) => e.id == 1); + final dateFormat = DateFormat('yyyy/MM/dd HH:mm'); + return SliverList( + delegate: SliverChildBuilderDelegate( + childCount: data.length + 1, + (context, index) { + if (index == data.length) { + if (hasNext) { + return const Padding( + padding: EdgeInsets.all(16), + child: CircularProgressIndicator.adaptive(), + ); + } else { + return const Padding( + padding: EdgeInsets.all(16), + child: SafeArea( + top: false, + child: Text( + 'これ以上過去のお知らせはありません。', + textAlign: TextAlign.center, + ), + ), + ); + } + } + final item = data[index]; + return ListTile( + title: Text(item.title.toHalfWidth), + subtitle: Text( + '${dateFormat.format(item.createdAt.toLocal())}頃発表', + style: const TextStyle( + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: [FontFamily.notoSansJP], + ), + ), + onTap: () => + InformationHistoryDetailsRoute($extra: item).push( + context, + ), + ); + }, + ), + ); + } +} + +class _Loading extends StatelessWidget { + const _Loading(); + + @override + Widget build(BuildContext context) { + return const SliverFillRemaining( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + 'お知らせを取得中です。', + ), + Padding( + padding: EdgeInsets.all(16), + child: CircularProgressIndicator.adaptive(), + ), + ], + ), + ); + } +} diff --git a/lib/feature/information_history/repository/information_repository.dart b/lib/feature/information_history/repository/information_repository.dart new file mode 100644 index 000000000..6f3311fbb --- /dev/null +++ b/lib/feature/information_history/repository/information_repository.dart @@ -0,0 +1,29 @@ +import 'package:dio/dio.dart'; +import 'package:eqapi_client/eqapi_client.dart'; +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/api/eq_api.dart'; +import 'package:eqmonitor/core/foundation/result.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'information_repository.g.dart'; + +@Riverpod(keepAlive: true) +InformationRepository informationRepository(InformationRepositoryRef ref) => + InformationRepository(ref.watch(eqApiProvider)); + +class InformationRepository { + InformationRepository(this._api); + + final EqApi _api; + + Future> fetchInformation({ + required int limit, + required int offset, + }) async => + Result.capture( + () => _api.v3.getInformation( + limit: limit, + offset: offset, + ), + ); +} diff --git a/lib/feature/home/viewmodel/home_viewmodel.g.dart b/lib/feature/information_history/repository/information_repository.g.dart similarity index 55% rename from lib/feature/home/viewmodel/home_viewmodel.g.dart rename to lib/feature/information_history/repository/information_repository.g.dart index a51dcd7c0..d9ec7f4ad 100644 --- a/lib/feature/home/viewmodel/home_viewmodel.g.dart +++ b/lib/feature/information_history/repository/information_repository.g.dart @@ -2,26 +2,27 @@ // ignore_for_file: type=lint, duplicate_ignore -part of 'home_viewmodel.dart'; +part of 'information_repository.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** -String _$homeViewModelHash() => r'18c1121ea354d941938ba810318fe6c05b9e2a1b'; +String _$informationRepositoryHash() => + r'5cfdd4f2b17b34f872c535daaee98bcc4c7a1bb2'; -/// See also [homeViewModel]. -@ProviderFor(homeViewModel) -final homeViewModelProvider = AutoDisposeProvider.internal( - homeViewModel, - name: r'homeViewModelProvider', +/// See also [informationRepository]. +@ProviderFor(informationRepository) +final informationRepositoryProvider = Provider.internal( + informationRepository, + name: r'informationRepositoryProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null - : _$homeViewModelHash, + : _$informationRepositoryHash, dependencies: null, allTransitiveDependencies: null, ); -typedef HomeViewModelRef = AutoDisposeProviderRef; +typedef InformationRepositoryRef = ProviderRef; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/information_history/viewmodel/information_history_view_model.dart b/lib/feature/information_history/viewmodel/information_history_view_model.dart new file mode 100644 index 000000000..53f54cfc5 --- /dev/null +++ b/lib/feature/information_history/viewmodel/information_history_view_model.dart @@ -0,0 +1,61 @@ +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/core/foundation/result.dart'; +import 'package:eqmonitor/feature/information_history/repository/information_repository.dart'; +import 'package:flutter/material.dart'; +import 'package:riverpod_annotation/riverpod_annotation.dart'; + +part 'information_history_view_model.g.dart'; + +@Riverpod(keepAlive: true) +class InformationHistoryViewModel extends _$InformationHistoryViewModel { + @override + AsyncValue>? build() => null; + + Future update({ + required bool loadMore, + }) async { + if (state?.isLoading ?? false) { + return; + } + if (state != null) { + state = + const AsyncLoading>().copyWithPrevious(state!); + } else { + state = const AsyncLoading>(); + } + final offset = state?.valueOrNull?.length ?? 0; + final res = await ref + .read(informationRepositoryProvider) + .fetchInformation(limit: offset == 0 ? 10 : 50, offset: offset); + final _ = switch (res) { + Success(:final value) => state = AsyncData([ + ...state?.valueOrNull ?? [], + ...value.items, + ]), + Failure(:final exception, :final stackTrace) => state = + AsyncError>( + exception, + stackTrace ?? StackTrace.current, + ).copyWithPrevious(state!), + }; + } + + Future updateIfNull() async { + if (state == null) { + await update(loadMore: false); + } + } + + void onScrollPositionChanged(ScrollController controller) { + // エラー発生時・リロード中は何もしない + if (state == null) { + return; + } + if (state!.hasError || state!.isRefreshing || state!.isReloading) { + return; + } + if (controller.position.maxScrollExtent - controller.position.pixels < 20) { + update(loadMore: true); + } + } +} diff --git a/lib/feature/information_history/viewmodel/information_history_view_model.g.dart b/lib/feature/information_history/viewmodel/information_history_view_model.g.dart new file mode 100644 index 000000000..de7bd9849 --- /dev/null +++ b/lib/feature/information_history/viewmodel/information_history_view_model.g.dart @@ -0,0 +1,30 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint, duplicate_ignore + +part of 'information_history_view_model.dart'; + +// ************************************************************************** +// RiverpodGenerator +// ************************************************************************** + +String _$informationHistoryViewModelHash() => + r'b25c689d00bd14df0d5ea02d8f6c1cf2104a84d5'; + +/// See also [InformationHistoryViewModel]. +@ProviderFor(InformationHistoryViewModel) +final informationHistoryViewModelProvider = NotifierProvider< + InformationHistoryViewModel, AsyncValue>?>.internal( + InformationHistoryViewModel.new, + name: r'informationHistoryViewModelProvider', + debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') + ? null + : _$informationHistoryViewModelHash, + dependencies: null, + allTransitiveDependencies: null, +); + +typedef _$InformationHistoryViewModel + = Notifier>?>; +// ignore_for_file: type=lint +// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/feature/information_history_details/information_history_details_page.dart b/lib/feature/information_history_details/information_history_details_page.dart new file mode 100644 index 000000000..c4032561a --- /dev/null +++ b/lib/feature/information_history_details/information_history_details_page.dart @@ -0,0 +1,120 @@ +import 'package:eqapi_types/eqapi_types.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; +import 'package:flutter/material.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; +import 'package:intl/intl.dart'; + +class InformationHistoryDetailsPage extends HookConsumerWidget { + const InformationHistoryDetailsPage({ + required this.data, + super.key, + }); + final InformationV3 data; + + @override + Widget build(BuildContext context, WidgetRef ref) { + final theme = Theme.of(context); + final onSecondaryContainer = theme.colorScheme.onSecondaryContainer; + return Scaffold( + appBar: AppBar( + title: Text(data.title), + ), + body: CustomScrollView( + slivers: [ + SliverToBoxAdapter( + child: Card( + color: theme.colorScheme.secondaryContainer, + margin: const EdgeInsets.all(8), + child: Padding( + padding: const EdgeInsets.all(8), + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Icon( + Icons.info, + color: onSecondaryContainer, + ), + const SizedBox(width: 8), + Text( + DateFormat('発表時刻: yyyy/MM/dd HH:mm頃') + .format(data.createdAt.toLocal()), + style: theme.textTheme.bodyMedium!.copyWith( + color: onSecondaryContainer, + fontFamily: FontFamily.jetBrainsMono, + fontFamilyFallback: [FontFamily.notoSansJP], + ), + ), + ], + ), + const SizedBox(height: 8), + Row( + children: [ + Icon( + Icons.edit, + color: onSecondaryContainer, + ), + const SizedBox(width: 8), + Text( + '発表機関: ${data.author.name}', + style: theme.textTheme.bodyMedium!.copyWith( + color: onSecondaryContainer, + ), + ), + ], + ), + ], + ), + ), + ), + ), + if (data.body.contains('配信試験')) + SliverToBoxAdapter( + child: Card( + color: theme.colorScheme.errorContainer, + margin: const EdgeInsets.all(8), + child: Padding( + padding: const EdgeInsets.all(8), + child: Row( + children: [ + Icon( + Icons.warning, + color: theme.colorScheme.onErrorContainer, + ), + const SizedBox(width: 8), + Expanded( + child: Text( + '本アプリでは、気象庁による配信試験電文を通知お知らせしていません。', + style: TextStyle( + fontWeight: FontWeight.bold, + color: theme.colorScheme.onErrorContainer, + ), + ), + ), + ], + ), + ), + ), + ), + SliverToBoxAdapter( + child: Padding( + padding: const EdgeInsets.all(16), + child: SafeArea( + top: false, + child: Text( + data.body + .split('\n本件問い合わせ先\n') + .first + .split('\n本件に関する問い合わせ先\n') + .first, + ), + ), + ), + ), + ], + ), + ); + } +} diff --git a/lib/feature/settings/children/config/debug/api_endpoint_selector/api_endpoint_selector_page.dart b/lib/feature/settings/children/config/debug/api_endpoint_selector/api_endpoint_selector_page.dart new file mode 100644 index 000000000..53edfebb8 --- /dev/null +++ b/lib/feature/settings/children/config/debug/api_endpoint_selector/api_endpoint_selector_page.dart @@ -0,0 +1,42 @@ +import 'package:eqmonitor/env/env.dart'; +import 'package:eqmonitor/feature/home/features/telegram_url/provider/telegram_url_provider.dart'; +import 'package:flutter/material.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class ApiEndpointSelectorPage extends ConsumerWidget { + const ApiEndpointSelectorPage({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final defaultUrl = Env.restApiUrl; + final developUrl = defaultUrl.replaceAll('api.', 'dev.api.'); + final state = ref.watch(telegramUrlProvider.select((v) => v.restApiUrl)); + return Scaffold( + appBar: AppBar( + title: const Text('API Endpoint Selector'), + ), + body: ListView( + children: [ + RadioListTile.adaptive( + title: const Text('Default'), + subtitle: Text(defaultUrl), + value: defaultUrl, + groupValue: state, + onChanged: (value) { + ref.read(telegramUrlProvider.notifier).updateRestUrl(value!); + }, + ), + RadioListTile.adaptive( + title: const Text('DEV'), + value: developUrl, + subtitle: Text(developUrl), + groupValue: state, + onChanged: (value) { + ref.read(telegramUrlProvider.notifier).updateRestUrl(value!); + }, + ), + ], + ), + ); + } +} diff --git a/lib/feature/settings/children/config/debug/debugger_page.dart b/lib/feature/settings/children/config/debug/debugger_page.dart index eb7f65d63..3f0c8495e 100644 --- a/lib/feature/settings/children/config/debug/debugger_page.dart +++ b/lib/feature/settings/children/config/debug/debugger_page.dart @@ -1,5 +1,11 @@ -import 'package:eqmonitor/feature/home/component/sheet/debug_widget.dart'; +import 'package:eqmonitor/core/router/router.dart'; +import 'package:eqmonitor/feature/home/component/kmoni/kmoni_settings_dialog.dart'; +import 'package:eqmonitor/feature/home/component/sheet/sheet_header.dart'; +import 'package:eqmonitor/feature/home/features/telegram_url/provider/telegram_url_provider.dart'; +import 'package:eqmonitor/feature/home/features/telegram_ws/provider/telegram_provider.dart'; +import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:flutter/material.dart'; +import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; class DebuggerPage extends ConsumerWidget { @@ -13,9 +19,102 @@ class DebuggerPage extends ConsumerWidget { ), body: ListView( children: const [ - DebugWidget(), + _DebugWidget(), ], ), ); } } + +class _DebugWidget extends ConsumerWidget { + const _DebugWidget(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final theme = Theme.of(context); + + return Card( + margin: const EdgeInsets.all(4), + elevation: 1, + shadowColor: Colors.transparent, + // 角丸にして Border + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(16), + side: BorderSide( + color: theme.dividerColor.withOpacity(0.6), + width: 0, + ), + ), + child: Padding( + padding: const EdgeInsets.symmetric( + horizontal: 8, + vertical: 4, + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const SheetHeader(title: 'デバッグメニュー'), + ListTile( + title: const Text('Request Sample EEW Telegram'), + subtitle: const Text('EventID: 20171213112000'), + leading: const Icon(Icons.send), + onTap: ref.read(telegramWsProvider.notifier).requestSample, + ), + ListTile( + title: const Text('ログ'), + leading: const Icon(Icons.list), + onTap: () => context.push(const TalkerRoute().location), + ), + ListTile( + title: const Text('強震モニタ'), + leading: const Icon(Icons.settings), + onTap: () => showDialog( + context: context, + builder: (context) => const KmoniSettingsDialogWidget(), + ), + ), + ListTile( + title: const Text('重大な通知権限'), + leading: const Icon(Icons.notifications_active), + onTap: () async { + { + final result = + await FirebaseMessaging.instance.requestPermission( + criticalAlert: true, + ); + if (context.mounted) { + await showDialog( + context: context, + builder: (context) => AlertDialog( + title: const Text('重大な通知権限 (FirebaseMessaging)'), + content: Text(result.toString()), + actions: [ + TextButton( + onPressed: () => Navigator.of(context).pop(), + child: const Text('OK'), + ), + ], + ), + ); + } + } + }, + ), + ListTile( + title: const Text('REST APIエンドポイント'), + leading: const Icon(Icons.http), + subtitle: Text(ref.watch(telegramUrlProvider).restApiUrl), + onTap: () => + context.push(const ApiEndpointSelectorRoute().location), + ), + ListTile( + title: const Text('WebSocketエンドポイント'), + leading: const Icon(Icons.http), + subtitle: Text(ref.watch(telegramUrlProvider).wsApiUrl), + ), + ], + ), + ), + ); + } +} diff --git a/lib/feature/settings/children/config/earthquake_history/earthquake_history_config_page.dart b/lib/feature/settings/children/config/earthquake_history/earthquake_history_config_page.dart new file mode 100644 index 000000000..a45acc4ba --- /dev/null +++ b/lib/feature/settings/children/config/earthquake_history/earthquake_history_config_page.dart @@ -0,0 +1,149 @@ +import 'package:eqmonitor/core/provider/config/earthquake_history/earthquake_history_config_provider.dart'; +import 'package:eqmonitor/core/provider/config/earthquake_history/model/earthquake_history_config_model.dart'; +import 'package:eqmonitor/feature/settings/component/settings_section_header.dart'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; + +class EarthquakeHistoryConfigPage extends StatelessWidget { + const EarthquakeHistoryConfigPage({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('地震履歴設定'), + ), + body: ListView( + children: const [ + SettingsSectionHeader( + text: '地震履歴一覧', + ), + _EarthquakeHistoryListConfigWidget(), + if (kDebugMode) ...[ + Divider(), + SettingsSectionHeader( + text: '地震履歴詳細', + ), + _EarthquakeHistoryDetailConfigWidget(), + ], + ], + ), + ); + } +} + +class _EarthquakeHistoryListConfigWidget extends ConsumerWidget { + const _EarthquakeHistoryListConfigWidget(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final state = ref.watch( + earthquakeHistoryConfigProvider.select((value) => value.list), + ); + return Column( + children: [ + SwitchListTile.adaptive( + title: const Text('最大震度ごとの背景塗りつぶし'), + value: state.isFillBackground, + onChanged: (value) => ref + .read(earthquakeHistoryConfigProvider.notifier) + .updateListConfig( + state.copyWith( + isFillBackground: value, + ), + ), + ), + + /// includeTest + SwitchListTile.adaptive( + title: const Text('訓練・試験報の情報を表示する'), + subtitle: const Text('気象庁により作成された、訓練・試験用の緊急地震速報の情報を表示します。※非推奨'), + value: state.includeTestTelegrams, + onChanged: (value) => ref + .read(earthquakeHistoryConfigProvider.notifier) + .updateListConfig( + state.copyWith( + includeTestTelegrams: value, + ), + ), + ), + ], + ); + } +} + +class _EarthquakeHistoryDetailConfigWidget extends ConsumerWidget { + const _EarthquakeHistoryDetailConfigWidget(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final theme = Theme.of(context); + final state = ref.watch( + earthquakeHistoryConfigProvider.select((value) => value.detail), + ); + final sheetBar = Container( + margin: const EdgeInsets.symmetric(vertical: 8), + width: 36, + height: 4, + alignment: Alignment.center, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(8), + color: theme.colorScheme.onBackground, + boxShadow: const [ + BoxShadow(color: Colors.black12, blurRadius: 12), + ], + ), + ); + return Column( + children: [ + ListTile( + title: const Text('震度の表示方法'), + trailing: Text(state.intensityDisplayMode.name), + onTap: () async { + //bottomSheetで選択する + final result = await showModalBottomSheet( + context: context, + clipBehavior: Clip.antiAlias, + builder: (context) { + return SafeArea( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + sheetBar, + for (final mode in IntensityDisplayMode.values) + RadioListTile.adaptive( + title: Text(mode.name), + value: mode, + groupValue: state.intensityDisplayMode, + onChanged: (value) => Navigator.pop(context, value), + ), + ], + ), + ); + }, + ); + if (result != null) { + ref + .read(earthquakeHistoryConfigProvider.notifier) + .updateDetailConfig( + state.copyWith( + intensityDisplayMode: result, + ), + ); + } + }, + ), + ], + ); + } +} + +extension _IntensityDisplayModeEx on IntensityDisplayMode { + String get name => switch (this) { + IntensityDisplayMode.icon => '震度アイコン', + IntensityDisplayMode.fillCity => '市区町村を塗りつぶし', + IntensityDisplayMode.fillPrefecture => '都道府県を塗りつぶし', + IntensityDisplayMode.iconAndFillPrefecture => '震度アイコンと市区町村を塗りつぶし', + }; +} diff --git a/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_page.dart b/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_page.dart index baf43dce3..fa5d84c7b 100644 --- a/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_page.dart +++ b/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_page.dart @@ -41,15 +41,18 @@ class EarthquakeNotificationSettingsPage extends ConsumerWidget { ) .unregisterFromTopic(); } - if (context.mounted && result.isFailure) { + if (!context.mounted) { + return; + } + if (result case Failure(:final exception, :final stackTrace)) { ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( + SnackBar( content: Text( - '通知設定の変更に失敗しました', + '通知設定の変更に失敗しました: $exception', ), ), ); - ref.read(talkerProvider).error(result.errorOrNull); + ref.read(talkerProvider).error(exception, exception, stackTrace); } if (context.mounted && Navigator.of(context).canPop()) { Navigator.of(context).pop(); @@ -92,31 +95,36 @@ class EarthquakeNotificationSettingsPage extends ConsumerWidget { groupValue: state, value: choice, onChanged: (value) async { - showDialog( - barrierDismissible: false, - context: context, - builder: (_) => const Center( - child: - CircularProgressIndicator.adaptive(), + unawaited( + showDialog( + barrierDismissible: false, + context: context, + builder: (_) => const Center( + child: CircularProgressIndicator + .adaptive(), + ), ), - ).ignore(); + ); final result = await ref .read( earthquakeNotificationSettingsViewModelProvider .notifier, ) .registerToTopic(choice); - if (context.mounted && result.isFailure) { + if(!context.mounted) { + return; + } + if ( result case Failure(:final exception, :final stackTrace)) { ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( + SnackBar( content: Text( - '通知設定の変更に失敗しました', + '通知設定の変更に失敗しました: $exception', ), ), ); ref .read(talkerProvider) - .error(result.errorOrNull); + .error(exception, exception, stackTrace); } if (context.mounted && Navigator.of(context).canPop()) { diff --git a/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.dart b/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.dart index 3c1b6d28b..0678b94f0 100644 --- a/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.dart +++ b/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.dart @@ -33,7 +33,7 @@ class EarthquakeNotificationSettingsViewModel .unregisterFromTopic(state!) : Future.value(), ).wait; - if (result.$1.isSuccess) { + if (result.$1 case Success()) { state = topic; } return result.$1; @@ -41,12 +41,12 @@ class EarthquakeNotificationSettingsViewModel Future> unregisterFromTopic() async { if (state == null) { - return const Result.success(null); + return Result.success(null); } final result = await ref .read(fcmTopicManagerProvider.notifier) .unregisterFromTopic(state!); - if (result.isSuccess) { + if (result case Success()) { state = null; } return result; diff --git a/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.g.dart b/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.g.dart index 176689bc9..91513dd56 100644 --- a/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.g.dart +++ b/lib/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.g.dart @@ -9,7 +9,7 @@ part of 'earthquake_notification_settings_view_model.dart'; // ************************************************************************** String _$earthquakeNotificationSettingsViewModelHash() => - r'712c612b25589442705efd059b5904e4711ea294'; + r'bcffe637838e213309a0e7da89621b7c4c7cc79d'; /// See also [EarthquakeNotificationSettingsViewModel]. @ProviderFor(EarthquakeNotificationSettingsViewModel) diff --git a/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_page.dart b/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_page.dart index a235f19b9..c6707b7a8 100644 --- a/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_page.dart +++ b/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_page.dart @@ -40,15 +40,18 @@ class EewNotificationSettingsPage extends ConsumerWidget { ) .unregisterFromTopic(); } - if (context.mounted && result.isFailure) { + if (!context.mounted) { + return; + } + if (result case Failure(:final exception, :final stackTrace)) { ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( + SnackBar( content: Text( - '通知設定の変更に失敗しました', + '通知設定の変更に失敗しました: $exception', ), ), ); - ref.read(talkerProvider).error(result.errorOrNull); + ref.read(talkerProvider).error(exception, exception, stackTrace); } if (context.mounted && Navigator.of(context).canPop()) { Navigator.of(context).pop(); @@ -112,17 +115,20 @@ class EewNotificationSettingsPage extends ConsumerWidget { .notifier, ) .registerToTopic(choice); - if (context.mounted && result.isFailure) { + if (!context.mounted) { + return; + } + if ( result case Failure(:final exception, :final stackTrace)) { ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( + SnackBar( content: Text( - '通知設定の変更に失敗しました', + '通知設定の変更に失敗しました: $exception', ), ), ); ref .read(talkerProvider) - .error(result.errorOrNull); + .error(exception, exception, stackTrace); } if (context.mounted && Navigator.of(context).canPop()) { diff --git a/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.dart b/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.dart index ddad5174a..4bc5e16a3 100644 --- a/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.dart +++ b/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.dart @@ -34,7 +34,7 @@ class EewNotificationsSettingsViewModel .unregisterFromTopic(state!) : Future.value(), ).wait; - if (result.$1.isSuccess) { + if (result.$1 case Success()) { state = topic; } return result.$1; @@ -42,12 +42,12 @@ class EewNotificationsSettingsViewModel Future> unregisterFromTopic() async { if (state == null) { - return const Result.success(null); + return Result.success(null); } final result = await ref .read(fcmTopicManagerProvider.notifier) .unregisterFromTopic(state!); - if (result.isSuccess) { + if (result case Success()) { state = null; } return result; diff --git a/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.g.dart b/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.g.dart index 75f45d8aa..6ef1d550c 100644 --- a/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.g.dart +++ b/lib/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.g.dart @@ -9,7 +9,7 @@ part of 'eew_notification_settings_view_model.dart'; // ************************************************************************** String _$eewNotificationsSettingsViewModelHash() => - r'062eee9dd567ed25e37b54be9a385d087e53ef00'; + r'a9de37bd8b96cd420a5294da1ee895864a770d21'; /// See also [EewNotificationsSettingsViewModel]. @ProviderFor(EewNotificationsSettingsViewModel) diff --git a/lib/feature/settings/children/config/notification/notification_setting_page.dart b/lib/feature/settings/children/config/notification/notification_setting_page.dart index ff8d01794..77aa39d16 100644 --- a/lib/feature/settings/children/config/notification/notification_setting_page.dart +++ b/lib/feature/settings/children/config/notification/notification_setting_page.dart @@ -1,14 +1,18 @@ import 'package:eqapi_types/eqapi_types.dart'; import 'package:eqmonitor/core/component/container/bordered_container.dart'; +import 'package:eqmonitor/core/foundation/result.dart'; import 'package:eqmonitor/core/provider/config/notification/fcm_topic_manager.dart'; import 'package:eqmonitor/core/provider/config/permission/permission_status_provider.dart'; +import 'package:eqmonitor/core/provider/notification_token.dart'; import 'package:eqmonitor/core/router/router.dart'; import 'package:eqmonitor/core/util/fullscreen_loading_overlay.dart'; import 'package:eqmonitor/feature/settings/children/config/notification/children/earthquake/earthquake_notification_settings_view_model.dart'; import 'package:eqmonitor/feature/settings/children/config/notification/children/eew/eew_notification_settings_view_model.dart'; import 'package:eqmonitor/feature/settings/children/config/notification/notifiication_settings_view_model.dart'; import 'package:eqmonitor/feature/settings/component/settings_section_header.dart'; +import 'package:eqmonitor/gen/fonts.gen.dart'; import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; @@ -32,8 +36,6 @@ class _NotificationSettingsBody extends HookConsumerWidget { @override Widget build(BuildContext context, WidgetRef ref) { - final theme = Theme.of(context); - final colorScheme = theme.colorScheme; useEffect( () { WidgetsBinding.instance.endOfFrame @@ -44,180 +46,288 @@ class _NotificationSettingsBody extends HookConsumerWidget { ); final state = ref.watch(notificationSettingsViewModelProvider); if (state.isNotificatioonPermissionAllowed) { - return ListView( - children: [ - // 通知権限 - BorderedContainer( - elevation: 1, - child: Row( - children: [ - Icon( - Icons.check, - color: colorScheme.onSurface, - ), - const SizedBox(width: 8), - Text( - '通知権限が許可されています', - style: theme.textTheme.titleMedium!.copyWith( - fontWeight: FontWeight.bold, - ), + return const _OnNotificationPermissionAllowed(); + } else { + return const _OnNotificationPermissionDisallowed(); + } + } +} + +class _OnNotificationPermissionAllowed extends ConsumerWidget { + const _OnNotificationPermissionAllowed(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final theme = Theme.of(context); + final colorScheme = theme.colorScheme; + final state = ref.watch(notificationSettingsViewModelProvider); + return ListView( + children: [ + // 通知権限 + BorderedContainer( + elevation: 1, + child: Row( + children: [ + Icon( + Icons.check, + color: colorScheme.onSurface, + ), + const SizedBox(width: 8), + Text( + '通知権限が許可されています', + style: theme.textTheme.titleMedium!.copyWith( + fontWeight: FontWeight.bold, ), - ], - ), + ), + ], ), - const SettingsSectionHeader( - text: '地震情報', - ), - ListTile( - title: const Text('緊急地震速報(予報・警報)'), - subtitle: Text( - switch (ref.watch(eewNotificationsSettingsViewModelProvider)) { - null => '受信しない', - FcmEewAllTopic() => 'すべて受信する', - FcmEewIntensityTopic(:final intensity) - when intensity == JmaIntensity.seven => - '震度7', - FcmEewIntensityTopic(:final intensity) => - '震度${intensity.type}以上' - .replaceAll('+', '強') - .replaceAll('-', '弱'), - _ => '', - }, - ), - trailing: const Icon( - Icons.arrow_forward_ios, - size: 16, - ), - onTap: () => - context.push(const EewNotificationSettingsRoute().location), + ), + const SettingsSectionHeader( + text: '地震情報', + ), + ListTile( + title: const Text('緊急地震速報(予報・警報)'), + subtitle: Text( + switch (ref.watch(eewNotificationsSettingsViewModelProvider)) { + null => '受信しない', + FcmEewAllTopic() => 'すべて受信する', + FcmEewIntensityTopic(:final intensity) + when intensity == JmaIntensity.seven => + '震度7', + FcmEewIntensityTopic(:final intensity) => '震度${intensity.type}以上' + .replaceAll('+', '強') + .replaceAll('-', '弱'), + _ => '', + }, ), - ListTile( - title: const Text('震度・震源に関する情報'), - subtitle: Text( - switch ( - ref.watch(earthquakeNotificationSettingsViewModelProvider)) { - null => '受信しない', - final FcmEarthquakeTopic topic when topic.intensity == null => - 'すべて受信する', - final FcmEarthquakeTopic topic - when topic.intensity == JmaIntensity.seven => - '震度7のみ', - final FcmEarthquakeTopic topic => '震度${topic.intensity!.type}以上' - .replaceAll('-', '弱') - .replaceAll('+', '強'), - }, - ), - trailing: const Icon( - Icons.arrow_forward_ios, - size: 16, - ), - onTap: () => context - .push(const EarthquakeNotificationSettingsRoute().location), + trailing: const Icon( + Icons.arrow_forward_ios, + size: 16, ), - SwitchListTile.adaptive( - value: state.isVzse40Subscribed, - onChanged: (value) async { - final notifier = - ref.read(notificationSettingsViewModelProvider.notifier); - final result = await showFullScreenLoadingOverlay( - context, - value - ? notifier.registerToVzse40() - : notifier.unregisterFromVzse40(), - ); - if (context.mounted && result.isFailure) { - ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - '設定の変更中にエラーが発生しました: ${result.errorOrNull!}', - ), - ), - ); - } + onTap: () => + context.push(const EewNotificationSettingsRoute().location), + ), + ListTile( + title: const Text('震度・震源に関する情報'), + subtitle: Text( + switch ( + ref.watch(earthquakeNotificationSettingsViewModelProvider)) { + null => '受信しない', + final FcmEarthquakeTopic topic when topic.intensity == null => + 'すべて受信する', + final FcmEarthquakeTopic topic + when topic.intensity == JmaIntensity.seven => + '震度7のみ', + final FcmEarthquakeTopic topic => '震度${topic.intensity!.type}以上' + .replaceAll('-', '弱') + .replaceAll('+', '強'), }, - title: const Text('地震・津波に関するお知らせ'), - subtitle: const Text( - '地震・津波の試験・訓練配信のお知らせ、' - '自治体震度データの入電停止等のお知らせを配信します', - ), ), - const SettingsSectionHeader( - text: 'その他', + trailing: const Icon( + Icons.arrow_forward_ios, + size: 16, ), - SwitchListTile.adaptive( - value: state.isNoticeSubscribed, - onChanged: (value) async { - final notifier = - ref.read(notificationSettingsViewModelProvider.notifier); - final result = await showFullScreenLoadingOverlay( - context, - value - ? notifier.registerToNotice() - : notifier.unregisterFromNotice(), - ); - if (context.mounted && result.isFailure) { - ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Text( - '設定の変更中にエラーが発生しました: ${result.errorOrNull!}', - ), + onTap: () => context + .push(const EarthquakeNotificationSettingsRoute().location), + ), + SwitchListTile.adaptive( + value: state.isVzse40Subscribed, + onChanged: (value) async { + final notifier = + ref.read(notificationSettingsViewModelProvider.notifier); + final result = await showFullScreenLoadingOverlay( + context, + value + ? notifier.registerToVzse40() + : notifier.unregisterFromVzse40(), + ); + if (!context.mounted) { + return; + } + if (result case Failure(:final exception)) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text( + '設定の変更中にエラーが発生しました: $exception', ), - ); - } - }, - title: const Text('お知らせ'), - subtitle: const Text('アップデート情報や開発者からのお知らせをお伝えします'), + ), + ); + } + }, + title: const Text('地震・津波に関するお知らせ'), + subtitle: const Text( + '地震・津波の試験・訓練配信のお知らせ、' + '自治体震度データの入電停止等のお知らせを配信します', ), - ], - ); - } else { - return Column( - children: [ - BorderedContainer( - accentColor: Colors.redAccent.withOpacity(0.1), - elevation: 1, - child: Column( - crossAxisAlignment: CrossAxisAlignment.end, - children: [ - Row( - children: [ - Icon( - Icons.error, - color: theme.colorScheme.onSurface, + ), + const SettingsSectionHeader( + text: 'その他', + ), + SwitchListTile.adaptive( + value: state.isNoticeSubscribed, + onChanged: (value) async { + final notifier = + ref.read(notificationSettingsViewModelProvider.notifier); + final result = await showFullScreenLoadingOverlay( + context, + value + ? notifier.registerToNotice() + : notifier.unregisterFromNotice(), + ); + if (!context.mounted) { + return; + } + if (result case Failure(:final exception)) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text( + '設定の変更中にエラーが発生しました: $exception', + ), + ), + ); + } + }, + title: const Text('お知らせ'), + subtitle: const Text('アップデート情報や開発者からのお知らせをお伝えします'), + ), + const SettingsSectionHeader(text: 'FCM DEBUG'), + Consumer( + builder: (context, ref, _) { + final notificationTokenState = ref.watch(notificationTokenProvider); + return notificationTokenState.when( + data: (value) => Column( + children: [ + ListTile( + title: const Text( + 'FCM デバイストークン', + style: TextStyle( + fontFamily: FontFamily.jetBrainsMono, + ), ), - const SizedBox(width: 8), - Text( - '通知権限が許可されていません', - style: theme.textTheme.titleMedium!.copyWith( - fontWeight: FontWeight.bold, + trailing: Text( + value.fcmToken?.obfuscate ?? '不明', + style: const TextStyle( + fontFamily: FontFamily.jetBrainsMono, ), ), - ], - ), - Transform.translate( - offset: const Offset(8, 8), - child: TextButton( - style: TextButton.styleFrom( - padding: const EdgeInsets.all(8), + onTap: () => Clipboard.setData( + ClipboardData(text: value.fcmToken ?? ''), + ).then((_) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('コピーしました'), + ), + ); + }), + visualDensity: VisualDensity.compact, + ), + ListTile( + title: const Text( + 'APNS デバイストークン', + style: TextStyle( + fontFamily: FontFamily.jetBrainsMono, + ), ), - onPressed: () async { - await ref - .read(permissionProvider.notifier) - .requestNotificationPermission(); - }, - child: Text( - '許可する', - style: theme.textTheme.titleMedium!.copyWith( - color: colorScheme.primary, + trailing: Text( + value.apnsToken?.obfuscate ?? '不明', + style: const TextStyle( + fontFamily: FontFamily.jetBrainsMono, ), ), + onTap: () => Clipboard.setData( + ClipboardData(text: value.apnsToken ?? ''), + ).then((_) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('コピーしました'), + ), + ); + }), + visualDensity: VisualDensity.compact, + ), + ], + ), + error: (error, stackTrace) => Text( + 'エラーが発生しました: $error', + ), + loading: () => const Center( + child: CircularProgressIndicator.adaptive(), + ), + ); + }, + ), + ], + ); + } +} + +class _OnNotificationPermissionDisallowed extends ConsumerWidget { + const _OnNotificationPermissionDisallowed(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final theme = Theme.of(context); + final colorScheme = theme.colorScheme; + return Column( + children: [ + BorderedContainer( + accentColor: Colors.redAccent.withOpacity(0.1), + elevation: 1, + child: Column( + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Row( + children: [ + Icon( + Icons.error, + color: theme.colorScheme.onSurface, + ), + const SizedBox(width: 8), + Text( + '通知権限が許可されていません', + style: theme.textTheme.titleMedium!.copyWith( + fontWeight: FontWeight.bold, + ), + ), + ], + ), + Transform.translate( + offset: const Offset(8, 8), + child: TextButton( + style: TextButton.styleFrom( + padding: const EdgeInsets.all(8), + ), + onPressed: () async { + await ref + .read(permissionProvider.notifier) + .requestNotificationPermission(); + }, + child: Text( + '許可する', + style: theme.textTheme.titleMedium!.copyWith( + color: colorScheme.primary, + ), ), ), - ], - ), + ), + ], ), - ], - ); + ), + ], + ); + } +} + +extension StringEx on String { + String get obfuscate { + final length = this.length; + if (length <= 8) { + return '****'; } + return [ + substring(0, 4), + '*' * 8, + substring(length - 4, length), + ].join(); } } diff --git a/lib/feature/settings/children/config/notification/notifiication_settings_view_model.dart b/lib/feature/settings/children/config/notification/notifiication_settings_view_model.dart index bb3ab8ddf..d18c98f20 100644 --- a/lib/feature/settings/children/config/notification/notifiication_settings_view_model.dart +++ b/lib/feature/settings/children/config/notification/notifiication_settings_view_model.dart @@ -35,12 +35,12 @@ class NotificationSettingsViewModel extends _$NotificationSettingsViewModel { final topicNotifier = ref.read(fcmTopicManagerProvider.notifier); // 既に登録済みの場合は何もしない if (state.isVzse40Subscribed) { - return const Result.success(null); + return Result.success(null); } final result = await topicNotifier.registerToTopic( FcmBasicTopic(FcmTopics.vzse40), ); - if (result.isSuccess) { + if (result case Success()) { state = state.copyWith(isVzse40Subscribed: true); } return result; @@ -50,12 +50,12 @@ class NotificationSettingsViewModel extends _$NotificationSettingsViewModel { final topicNotifier = ref.read(fcmTopicManagerProvider.notifier); // 登録されていない場合は何もしない if (!state.isVzse40Subscribed) { - return const Result.success(null); + return Result.success(null); } final result = await topicNotifier.unregisterFromTopic( FcmBasicTopic(FcmTopics.vzse40), ); - if (result.isSuccess) { + if (result case Success()) { state = state.copyWith(isVzse40Subscribed: false); } return result; @@ -65,12 +65,12 @@ class NotificationSettingsViewModel extends _$NotificationSettingsViewModel { final topicNotifier = ref.read(fcmTopicManagerProvider.notifier); // 既に登録済みの場合は何もしない if (state.isNoticeSubscribed) { - return const Result.success(null); + return Result.success(null); } final result = await topicNotifier.registerToTopic( FcmBasicTopic(FcmTopics.notice), ); - if (result.isSuccess) { + if (result case Success()) { state = state.copyWith(isNoticeSubscribed: true); } return result; @@ -80,12 +80,12 @@ class NotificationSettingsViewModel extends _$NotificationSettingsViewModel { final topicNotifier = ref.read(fcmTopicManagerProvider.notifier); // 登録されていない場合は何もしない if (!state.isNoticeSubscribed) { - return const Result.success(null); + return Result.success(null); } final result = await topicNotifier.unregisterFromTopic( FcmBasicTopic(FcmTopics.notice), ); - if (result.isSuccess) { + if (result case Success()) { state = state.copyWith(isNoticeSubscribed: false); } return result; @@ -94,7 +94,7 @@ class NotificationSettingsViewModel extends _$NotificationSettingsViewModel { @freezed class NotificationSettingsState with _$NotificationSettingsState { - const factory NotificationSettingsState({ + factory NotificationSettingsState({ required bool isNotificatioonPermissionAllowed, /// 地震・津波に関するお知らせ diff --git a/lib/feature/settings/children/config/notification/notifiication_settings_view_model.freezed.dart b/lib/feature/settings/children/config/notification/notifiication_settings_view_model.freezed.dart index 973b46453..5a8aa17ad 100644 --- a/lib/feature/settings/children/config/notification/notifiication_settings_view_model.freezed.dart +++ b/lib/feature/settings/children/config/notification/notifiication_settings_view_model.freezed.dart @@ -135,7 +135,7 @@ class __$$NotificationSettingsStateImplCopyWithImpl<$Res> /// @nodoc @JsonSerializable() class _$NotificationSettingsStateImpl implements _NotificationSettingsState { - const _$NotificationSettingsStateImpl( + _$NotificationSettingsStateImpl( {required this.isNotificatioonPermissionAllowed, required this.isVzse40Subscribed, required this.isNoticeSubscribed}); @@ -160,7 +160,7 @@ class _$NotificationSettingsStateImpl implements _NotificationSettingsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$NotificationSettingsStateImpl && @@ -195,7 +195,7 @@ class _$NotificationSettingsStateImpl implements _NotificationSettingsState { } abstract class _NotificationSettingsState implements NotificationSettingsState { - const factory _NotificationSettingsState( + factory _NotificationSettingsState( {required final bool isNotificatioonPermissionAllowed, required final bool isVzse40Subscribed, required final bool isNoticeSubscribed}) = diff --git a/lib/feature/settings/children/config/notification/notifiication_settings_view_model.g.dart b/lib/feature/settings/children/config/notification/notifiication_settings_view_model.g.dart index 26cf5c9cd..21cd907c7 100644 --- a/lib/feature/settings/children/config/notification/notifiication_settings_view_model.g.dart +++ b/lib/feature/settings/children/config/notification/notifiication_settings_view_model.g.dart @@ -40,7 +40,7 @@ Map _$$NotificationSettingsStateImplToJson( // ************************************************************************** String _$notificationSettingsViewModelHash() => - r'ea562cf8ec27b0173f901d3d853657abaa503782'; + r'd1daaa3edbf24a7e476a15035f21e8b1c5d18ff9'; /// See also [NotificationSettingsViewModel]. @ProviderFor(NotificationSettingsViewModel) diff --git a/lib/feature/settings/settings_screen.dart b/lib/feature/settings/settings_screen.dart index 34fd53730..83be8deca 100644 --- a/lib/feature/settings/settings_screen.dart +++ b/lib/feature/settings/settings_screen.dart @@ -8,10 +8,10 @@ import 'package:eqmonitor/core/provider/device_info.dart'; import 'package:eqmonitor/core/provider/firebase/firebase_messaging.dart'; import 'package:eqmonitor/core/provider/package_info.dart'; import 'package:eqmonitor/core/router/router.dart'; -import 'package:eqmonitor/feature/home/component/sheet/debug_widget.dart'; import 'package:eqmonitor/feature/home/features/debugger/debugger_provider.dart'; import 'package:eqmonitor/feature/settings/component/settings_section_header.dart'; import 'package:eqmonitor/gen/assets.gen.dart'; +import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:go_router/go_router.dart'; @@ -38,7 +38,7 @@ class SettingsScreen extends HookConsumerWidget { body: ListView( children: [ GestureDetector( - onScaleEnd: (_) async { + onTapDown: (_) async { debugAttemptCount.value++; if (debugAttemptCount.value >= 10) { debugAttemptCount.value = 0; @@ -78,6 +78,13 @@ class SettingsScreen extends HookConsumerWidget { leading: const Icon(Icons.settings), onTap: () => context.push(const KmoniRoute().location), ), + ListTile( + title: const Text('地震履歴設定'), + leading: const Icon(Icons.history), + onTap: () => context.push( + const EarthquakeHistoryConfigRoute().location, + ), + ), ListTile( title: const Text('震度配色設定'), leading: const Icon(Icons.color_lens), @@ -130,10 +137,14 @@ class SettingsScreen extends HookConsumerWidget { ), ), Center( - child: Text( - 'EQMonitor v${packageInfo.version} (${packageInfo.buildNumber})', - style: textTheme.bodySmall!.copyWith( - color: theme.colorScheme.onSurface.withOpacity(0.8), + child: Padding( + padding: const EdgeInsets.only(bottom: 16), + child: Text( + 'EQMonitor v${packageInfo.version} ' + '(${packageInfo.buildNumber})', + style: textTheme.bodySmall!.copyWith( + color: theme.colorScheme.onSurface.withOpacity(0.8), + ), ), ), ), @@ -147,7 +158,11 @@ class SettingsScreen extends HookConsumerWidget { ), ), const Divider(), - const DebugWidget(), + ListTile( + title: const Text('デバッグメニュー'), + leading: const Icon(Icons.bug_report), + onTap: () => context.push(const DebuggerRoute().location), + ), ], ], ), @@ -183,9 +198,11 @@ Future _onInquiryTap(BuildContext context, WidgetRef ref) async { ), ); final packageInfo = ref.read(packageInfoProvider); - final androidDeviceInfo = - Platform.isAndroid ? ref.read(androidDeviceInfoProvider) : null; - final iosDeviceInfo = Platform.isIOS ? ref.read(iosDeviceInfoProvider) : null; + final androidDeviceInfo = !kIsWeb && Platform.isAndroid + ? ref.read(androidDeviceInfoProvider) + : null; + final iosDeviceInfo = + !kIsWeb && Platform.isIOS ? ref.read(iosDeviceInfoProvider) : null; final notificationSetting = await ref.read(firebaseMessagingProvider).getNotificationSettings(); diff --git a/lib/feature/setup/pages/introduction_page.dart b/lib/feature/setup/pages/introduction_page.dart index 5bbb983ab..31ad29b8b 100644 --- a/lib/feature/setup/pages/introduction_page.dart +++ b/lib/feature/setup/pages/introduction_page.dart @@ -56,7 +56,11 @@ class IntroductionPage extends StatelessWidget { ), // このボタンを押して、利用規約とプライバシーポリシーに同意したものとみなします。 Card( - margin: const EdgeInsets.symmetric(horizontal: 8), + margin: const EdgeInsets.only( + left: 8, + right: 8, + bottom: 8, + ), child: Padding( padding: const EdgeInsets.all(8), child: Text.rich( diff --git a/lib/main.dart b/lib/main.dart index 97a705b13..fbeeb65d7 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -4,6 +4,9 @@ import 'dart:io'; import 'package:device_info_plus/device_info_plus.dart'; import 'package:eqmonitor/app.dart'; +import 'package:eqmonitor/core/fcm/channels.dart'; +import 'package:eqmonitor/core/provider/application_documents_directory.dart'; +import 'package:eqmonitor/core/provider/custom_provider_observer.dart'; import 'package:eqmonitor/core/provider/device_info.dart'; import 'package:eqmonitor/core/provider/log/talker.dart'; import 'package:eqmonitor/core/provider/package_info.dart'; @@ -12,11 +15,13 @@ import 'package:eqmonitor/feature/home/features/kmoni_observation_points/provide import 'package:eqmonitor/firebase_options.dart'; import 'package:firebase_core/firebase_core.dart'; import 'package:firebase_crashlytics/firebase_crashlytics.dart'; +import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_local_notifications/flutter_local_notifications.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:package_info_plus/package_info_plus.dart'; +import 'package:path_provider/path_provider.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:talker_flutter/talker_flutter.dart'; @@ -24,19 +29,21 @@ Future main() async { WidgetsFlutterBinding.ensureInitialized(); final talker = TalkerFlutter.init(); - // Pass all uncaught "fatal" errors from the framework to Crashlytics FlutterError.onError = (error) { talker.handle(error.exception, error.stack, 'Uncaught fatal exception'); - FirebaseCrashlytics.instance.recordFlutterError(error); + if (!kDebugMode) { + FirebaseCrashlytics.instance.recordFlutterError(error); + } }; - // Pass all uncaught asynchronous errors that aren't handled - // by the Flutter framework to Crashlytics PlatformDispatcher.instance.onError = (error, stack) { talker.handle(error, stack, 'Uncaught async exception'); - FirebaseCrashlytics.instance.recordError(error, stack); + if (kDebugMode) { + FirebaseCrashlytics.instance.recordError(error, stack); + } return true; }; final deviceInfo = DeviceInfoPlugin(); + final results = await ( SharedPreferences.getInstance(), loadKmoniObservationPoints(), @@ -45,9 +52,11 @@ Future main() async { ), PackageInfo.fromPlatform(), // ignore: prefer_void_to_null - (Platform.isAndroid ? deviceInfo.androidInfo : Future.value()), + (!kIsWeb && Platform.isAndroid + ? deviceInfo.androidInfo + : Future.value()), // ignore: prefer_void_to_null - (Platform.isIOS ? deviceInfo.iosInfo : Future.value()), + (!kIsWeb && Platform.isIOS ? deviceInfo.iosInfo : Future.value()), FlutterLocalNotificationsPlugin().initialize( const InitializationSettings( iOS: DarwinInitializationSettings( @@ -58,7 +67,14 @@ Future main() async { android: AndroidInitializationSettings('mipmap/ic_launcher'), ), ), + _registerNotificationChannelIfNeeded(), + getApplicationDocumentsDirectory(), ).wait; + + FirebaseMessaging.onBackgroundMessage(onBackgroundMessage); + unawaited( + FirebaseCrashlytics.instance.setCrashlyticsCollectionEnabled(!kDebugMode), + ); runApp( ProviderScope( overrides: [ @@ -70,10 +86,11 @@ Future main() async { androidDeviceInfoProvider.overrideWithValue(results.$5!), if (results.$6 != null) iosDeviceInfoProvider.overrideWithValue(results.$6!), + applicationDocumentsDirectoryProvider.overrideWithValue(results.$9), ], observers: [ if (kDebugMode) - Observer( + CustomProviderObserver( talker, ), ], @@ -82,71 +99,22 @@ Future main() async { ); } -class Observer extends ProviderObserver { - Observer(this.talker); - - final Talker talker; - - @override - void didAddProvider( - ProviderBase provider, - Object? value, - ProviderContainer container, - ) => - switch (provider.name) { - _ when value.toString().length > 1000 => log( - '${provider.name} (${provider.runtimeType}) ' - '${value?.toString().length} ', - name: 'didAddProvider', - ), - _ => log( - '${provider.name} ($provider)', - name: 'didAddProvider', - ), - }; - - @override - void didDisposeProvider( - ProviderBase provider, - ProviderContainer container, - ) => - log('didDisposeProvider: ${provider.name}'); - - @override - void didUpdateProvider( - ProviderBase provider, - Object? previousValue, - Object? newValue, - ProviderContainer container, - ) => - switch (provider.name) { - 'mapViewModelProvider' || 'kmoniViewModelProvider' => null, - _ - when newValue.toString().length + previousValue.toString().length > - 300 => - log( - '${provider.name} (${previousValue.runtimeType} ' - '-> ${newValue.runtimeType})', - name: 'didUpdateProvider', - ), - _ => log( - '${provider.name} ($previousValue -> $newValue)', - name: 'didUpdateProvider', - ), - }; - - @override - void providerDidFail( - ProviderBase provider, - Object error, - StackTrace stackTrace, - ProviderContainer container, - ) { - talker.handle(error, stackTrace, 'providerDidFail: ${provider.name}'); - log( - '${provider.name} $error', - name: 'providerDidFail', - error: error, - ); +Future _registerNotificationChannelIfNeeded() async { + final androidNotificationPlugin = FlutterLocalNotificationsPlugin() + .resolvePlatformSpecificImplementation< + AndroidFlutterLocalNotificationsPlugin>(); + if (androidNotificationPlugin == null) { + return; } + for (final group in notificationChannelGroups) { + await androidNotificationPlugin.createNotificationChannelGroup(group); + } + for (final channel in notificationChannels) { + await androidNotificationPlugin.createNotificationChannel(channel); + } +} + +@pragma('vm:entry-point') +Future onBackgroundMessage(RemoteMessage message) async { + log('onBackgroundMessage: $message'); } diff --git a/macos/Podfile b/macos/Podfile index 049abe295..bcdfb80d1 100644 --- a/macos/Podfile +++ b/macos/Podfile @@ -1,4 +1,4 @@ -platform :osx, '10.14' +platform :osx, '13.3' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' diff --git a/melos.yaml b/melos.yaml index dcf8dc3e9..65a586cf1 100644 --- a/melos.yaml +++ b/melos.yaml @@ -1,6 +1,6 @@ name: eqmonitor repository: /~https://github.com/YumNumm/EQMonitor -#sdkPath: ./.fvm/flutter_sdk +sdkPath: .fvm/flutter_sdk command: version: diff --git a/packages/eq_map/CHANGELOG.md b/packages/eq_map/CHANGELOG.md deleted file mode 100644 index a5d6057ee..000000000 --- a/packages/eq_map/CHANGELOG.md +++ /dev/null @@ -1,9 +0,0 @@ -## 1.0.1 - -- **FIX**: dependencies. ([b3d9197e](/~https://github.com/YumNumm/EQMonitor/commit/b3d9197e8a69f5818eaf9c91ce0df51926a6d85b)) -- **FIX**: mapdata. ([aaf05e0d](/~https://github.com/YumNumm/EQMonitor/commit/aaf05e0db06866b2c94ba417195c6185353d8c3c)) -- **FIX**: [eqmap] toLocations function. ([1d6e11ec](/~https://github.com/YumNumm/EQMonitor/commit/1d6e11ecda7e5b3fd66b8a859b481e3a619438fb)) - -## 1.0.0 - -- Initial version. diff --git a/packages/eq_map/analysis_options.yaml b/packages/eq_map/analysis_options.yaml deleted file mode 100644 index 6f8d6d437..000000000 --- a/packages/eq_map/analysis_options.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# https://pub.dev/packages/pedantic_mono -include: package:pedantic_mono/analysis_options.yaml - -analyzer: - exclude: - - "**/*.g.dart" - - "**/*.freezed.dart" - language: - strict-casts: true - strict-inference: true - strict-raw-types: true - plugins: - - custom_lint - errors: - invalid_annotation_target: ignore - -linter: - rules: - always_use_package_imports: true diff --git a/packages/eq_map/lib/eq_map.dart b/packages/eq_map/lib/eq_map.dart deleted file mode 100644 index 5e019a319..000000000 --- a/packages/eq_map/lib/eq_map.dart +++ /dev/null @@ -1,9 +0,0 @@ -/// Support for doing something awesome. -/// -/// More dartdocs go here. -library; - -export 'extension/list_int_vector.dart'; -export 'model/feature_layer.dart'; -export 'model/polygon_feature.dart'; -export 'model/polyline_feature.dart'; diff --git a/packages/eq_map/lib/extension/list_int_vector.dart b/packages/eq_map/lib/extension/list_int_vector.dart deleted file mode 100644 index e9a37b1db..000000000 --- a/packages/eq_map/lib/extension/list_int_vector.dart +++ /dev/null @@ -1,21 +0,0 @@ -import 'package:lat_lng/lat_lng.dart'; -import 'package:topo_map/topo_map.dart'; -import 'package:topojson/topojson.dart'; - -extension ListIntVector on List { - /// [IntVector]のリストを[LatLng]のリストに変換する - List toLocations(TopologyMap map) { - final result = []; - var x = 0; - var y = 0; - for (final e in this) { - result.add( - LatLng( - (x += e.x) * map.scale.x + map.translate.x, - (y += e.y) * map.scale.y + map.translate.y, - ), - ); - } - return result; - } -} diff --git a/packages/eq_map/lib/model/feature_layer.dart b/packages/eq_map/lib/model/feature_layer.dart deleted file mode 100644 index aedf9a57e..000000000 --- a/packages/eq_map/lib/model/feature_layer.dart +++ /dev/null @@ -1,36 +0,0 @@ -import 'package:collection/collection.dart'; -import 'package:eq_map/model/polygon_feature.dart'; -import 'package:eq_map/model/polyline_feature.dart'; -import 'package:topo_map/topo_map.dart'; - -class FeatureLayer { - FeatureLayer._({ - required this.basedMap, - required this.lineFeatures, - required this.polygonFeatures, - }); - - factory FeatureLayer.fromTopologyMap(TopologyMap map) { - final lineFeatures = map.arcs - .mapIndexed( - (index, _) => PolylineFeature.fromTopoMap(map, index), - ) - .toList(); - final polygonFeatures = map.polygons - .mapIndexed( - (_, polygon) => PolygonFeature.fromTopoMap(map, polygon), - ) - .toList(); - return FeatureLayer._( - basedMap: map, - lineFeatures: lineFeatures, - polygonFeatures: polygonFeatures, - ); - } - final TopologyMap basedMap; - final List lineFeatures; - final List polygonFeatures; - - List getPolygonsByCode(int code) => - polygonFeatures.where((e) => e.code == code).toList(); -} diff --git a/packages/eq_map/lib/model/polygon_feature.dart b/packages/eq_map/lib/model/polygon_feature.dart deleted file mode 100644 index 3558f3021..000000000 --- a/packages/eq_map/lib/model/polygon_feature.dart +++ /dev/null @@ -1,58 +0,0 @@ -import 'package:eq_map/extension/list_int_vector.dart'; -import 'package:extensions/extensions.dart'; -import 'package:lat_lng/lat_lng.dart'; -import 'package:topo_map/topo_map.dart'; - -class PolygonFeature { - - factory PolygonFeature.fromTopoMap( - TopologyMap map, - TopologyPolygon topologyPolygon, - ) { - final polyIndexes = topologyPolygon.arcs; - final firstPolyIndexes = polyIndexes.getOrNull(0); - if (firstPolyIndexes == null) { - throw ArgumentError('firstPolyIndexes is null'); - } - final points = []; - for (final index in firstPolyIndexes) { - if (points.isEmpty) { - if (index < 0) { - points.addAll( - map.arcs[index.abs() - 1].arc.toLocations(map).reversed, - ); - } else { - points.addAll( - map.arcs[index].arc.toLocations(map), - ); - } - continue; - } - - if (index < 0) { - points.addAll( - map.arcs[index.abs() - 1].arc.toLocations(map).reversed.skip(1), - ); - } else { - points.addAll( - map.arcs[index].arc.toLocations(map).skip(1), - ); - } - } - final bbox = LatLngBoundary.fromList(points); - return PolygonFeature._( - code: topologyPolygon.areaCode, - bbox: bbox, - points: points, - ); - } - PolygonFeature._({ - required this.code, - required this.bbox, - required this.points, - }); - - final int? code; - final LatLngBoundary? bbox; - final List points; -} diff --git a/packages/eq_map/lib/model/polyline_feature.dart b/packages/eq_map/lib/model/polyline_feature.dart deleted file mode 100644 index 0f767453b..000000000 --- a/packages/eq_map/lib/model/polyline_feature.dart +++ /dev/null @@ -1,47 +0,0 @@ -import 'package:eq_map/extension/list_int_vector.dart'; -import 'package:extensions/extensions.dart'; -import 'package:lat_lng/lat_lng.dart'; -import 'package:topo_map/topo_map.dart'; - -class PolylineFeature { - - PolylineFeature._({ - required this.points, - required this.type, - required this.isClosed, - }); - - factory PolylineFeature.fromTopoMap(TopologyMap map, int index) { - final arc = map.arcs.getOrNull(index); - if (arc == null) { - throw ArgumentError('arc is null at index: $index'); - } - final type = switch (arc.type) { - TopologyArcType.coastline => PolylineType.coastLine, - TopologyArcType.admin => PolylineType.admin, - TopologyArcType.area => PolylineType.city, - }; - final points = arc.arc.toLocations(map); - final isClosed = (points.first.lat - points.last.lat).abs() < 0.0001 && - (points.first.lon - points.last.lon).abs() < 0.0001; - return PolylineFeature._( - points: points, - type: type, - isClosed: isClosed, - ); - } - final List points; - final PolylineType type; - final bool isClosed; -} - -enum PolylineType { - /// 海岸線 - coastLine, - - /// 行政境界 - admin, - - /// 市区町村 - city, -} diff --git a/packages/eq_map/pubspec.yaml b/packages/eq_map/pubspec.yaml deleted file mode 100644 index d90731f0c..000000000 --- a/packages/eq_map/pubspec.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: eq_map -description: A starting point for Dart libraries or applications. -version: 1.0.1 -publish_to: "none" - -environment: - sdk: ^3.0.3 - -dependencies: - collection: ^1.17.1 - extensions: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/extensions - flutter: - sdk: flutter - freezed_annotation: ^2.2.0 - json_annotation: ^4.8.1 - lat_lng: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/lat_lng - topo_map: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/topo_map - topojson: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/topojson -dev_dependencies: - build_runner: ^2.4.4 - freezed: ^2.3.4 - json_serializable: ^6.7.0 - lints: ^2.0.0 - pedantic_mono: ^1.23.0 diff --git a/packages/eq_map/pubspec_overrides.yaml b/packages/eq_map/pubspec_overrides.yaml deleted file mode 100644 index 47dd533fd..000000000 --- a/packages/eq_map/pubspec_overrides.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# melos_managed_dependency_overrides: extensions,lat_lng,topo_map,topojson -dependency_overrides: - extensions: - path: ../extensions - lat_lng: - path: ../lat_lng - topo_map: - path: ../topo_map - topojson: - path: ../topojson diff --git a/packages/eq_map/build.yaml b/packages/eqapi_client/build.yaml similarity index 100% rename from packages/eq_map/build.yaml rename to packages/eqapi_client/build.yaml diff --git a/packages/eqapi_client/lib/eqapi_client.dart b/packages/eqapi_client/lib/eqapi_client.dart index 0a372f9e1..1d378e87e 100644 --- a/packages/eqapi_client/lib/eqapi_client.dart +++ b/packages/eqapi_client/lib/eqapi_client.dart @@ -1,3 +1 @@ -library; - export 'src/eqapi_client.dart'; diff --git a/packages/eqapi_client/lib/src/eqapi_client.dart b/packages/eqapi_client/lib/src/eqapi_client.dart index 20c819e8b..a93e8c7f9 100644 --- a/packages/eqapi_client/lib/src/eqapi_client.dart +++ b/packages/eqapi_client/lib/src/eqapi_client.dart @@ -1,7 +1,5 @@ import 'package:dio/dio.dart'; import 'package:eqapi_types/eqapi_types.dart'; -import 'package:eqapi_types/model/app_information.dart'; -import 'package:eqapi_types/model/information_v3.dart'; import 'package:retrofit/retrofit.dart'; part 'eqapi_client.g.dart'; @@ -15,7 +13,7 @@ class EqApi { V3 get v3 => V3(dio); PrivateV3 get privateV3 => throw UnimplementedError( - "privateV3 feature is not implemented on public EqApi package", + 'privateV3 feature is not implemented on public EqApi package', ); } @@ -32,8 +30,8 @@ abstract class V3 { @GET('/v3/information') Future getInformation({ - @Query("after") int after = 0, - @Query("limit") int limit = 10, + @Query('offset') int offset = 0, + @Query('limit') int limit = 10, }); @GET('/v3/app_information') diff --git a/packages/eqapi_client/lib/src/eqapi_client.g.dart b/packages/eqapi_client/lib/src/eqapi_client.g.dart index 4363ae09c..dd06c09c8 100644 --- a/packages/eqapi_client/lib/src/eqapi_client.g.dart +++ b/packages/eqapi_client/lib/src/eqapi_client.g.dart @@ -1,5 +1,7 @@ // GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint + part of 'eqapi_client.dart'; // ************************************************************************** @@ -55,12 +57,12 @@ class _V3 implements V3 { @override Future getInformation({ - int after = 0, + int offset = 0, int limit = 10, }) async { const _extra = {}; final queryParameters = { - r'after': after, + r'offset': offset, r'limit': limit, }; final _headers = {}; diff --git a/packages/eqapi_types/lib/model/app_information.freezed.dart b/packages/eqapi_types/lib/model/app_information.freezed.dart index 1c84ffb8b..39409bbc5 100644 --- a/packages/eqapi_types/lib/model/app_information.freezed.dart +++ b/packages/eqapi_types/lib/model/app_information.freezed.dart @@ -210,7 +210,7 @@ class _$AppInformationImpl implements _AppInformation { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AppInformationImpl && diff --git a/packages/eqapi_types/lib/model/components/accuracy.freezed.dart b/packages/eqapi_types/lib/model/components/accuracy.freezed.dart index 7294c543e..4a3d5fda0 100644 --- a/packages/eqapi_types/lib/model/components/accuracy.freezed.dart +++ b/packages/eqapi_types/lib/model/components/accuracy.freezed.dart @@ -169,7 +169,7 @@ class _$EewAccuracyImpl implements _EewAccuracy { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EewAccuracyImpl && diff --git a/packages/eqapi_types/lib/model/components/comments.freezed.dart b/packages/eqapi_types/lib/model/components/comments.freezed.dart index fde0aa102..84e4542d9 100644 --- a/packages/eqapi_types/lib/model/components/comments.freezed.dart +++ b/packages/eqapi_types/lib/model/components/comments.freezed.dart @@ -179,7 +179,7 @@ class _$CommentsImpl implements _Comments { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CommentsImpl && @@ -358,7 +358,7 @@ class _$CommentsOmitVarImpl implements _CommentsOmitVar { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CommentsOmitVarImpl && @@ -521,7 +521,7 @@ class _$ForecastCommentsImpl implements _ForecastComments { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ForecastCommentsImpl && @@ -684,7 +684,7 @@ class _$VarCommentsImpl implements _VarComments { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VarCommentsImpl && @@ -826,7 +826,7 @@ class _$CommentsOnlyFreeImpl implements _CommentsOnlyFree { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CommentsOnlyFreeImpl && diff --git a/packages/eqapi_types/lib/model/components/earthquake-explanation/naming.freezed.dart b/packages/eqapi_types/lib/model/components/earthquake-explanation/naming.freezed.dart index f4a6f5159..eb646a9ca 100644 --- a/packages/eqapi_types/lib/model/components/earthquake-explanation/naming.freezed.dart +++ b/packages/eqapi_types/lib/model/components/earthquake-explanation/naming.freezed.dart @@ -121,7 +121,7 @@ class _$NamingImpl implements _Naming { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$NamingImpl && diff --git a/packages/eqapi_types/lib/model/components/earthquake-nankai/earthquake_info.freezed.dart b/packages/eqapi_types/lib/model/components/earthquake-nankai/earthquake_info.freezed.dart index 689ef676a..89054cac5 100644 --- a/packages/eqapi_types/lib/model/components/earthquake-nankai/earthquake_info.freezed.dart +++ b/packages/eqapi_types/lib/model/components/earthquake-nankai/earthquake_info.freezed.dart @@ -156,7 +156,7 @@ class _$EarthquakeNankaiInfoImpl implements _EarthquakeNankaiInfo { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeNankaiInfoImpl && @@ -318,7 +318,7 @@ class _$EarthquakeNankaiKindImpl implements _EarthquakeNankaiKind { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeNankaiKindImpl && diff --git a/packages/eqapi_types/lib/model/components/earthquake.freezed.dart b/packages/eqapi_types/lib/model/components/earthquake.freezed.dart index 5d83818cd..7456c6020 100644 --- a/packages/eqapi_types/lib/model/components/earthquake.freezed.dart +++ b/packages/eqapi_types/lib/model/components/earthquake.freezed.dart @@ -186,7 +186,7 @@ class _$EarthquakeImpl implements _Earthquake { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeImpl && @@ -435,7 +435,7 @@ class _$EarthquakeHypocenterImpl implements _EarthquakeHypocenter { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeHypocenterImpl && @@ -620,7 +620,7 @@ class _$EarthquakeHypocenterDetailedImpl } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeHypocenterDetailedImpl && @@ -779,7 +779,7 @@ class _$EarthquakeMagnitudeImpl implements _EarthquakeMagnitude { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeMagnitudeImpl && diff --git a/packages/eqapi_types/lib/model/components/eew_hypocenter.freezed.dart b/packages/eqapi_types/lib/model/components/eew_hypocenter.freezed.dart index 48ac92bf8..7c7f3d96f 100644 --- a/packages/eqapi_types/lib/model/components/eew_hypocenter.freezed.dart +++ b/packages/eqapi_types/lib/model/components/eew_hypocenter.freezed.dart @@ -138,7 +138,7 @@ class _$EewHypocenterImpl implements _EewHypocenter { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EewHypocenterImpl && diff --git a/packages/eqapi_types/lib/model/components/eew_intensity.dart b/packages/eqapi_types/lib/model/components/eew_intensity.dart index bf1ca52a0..b00c52c2a 100644 --- a/packages/eqapi_types/lib/model/components/eew_intensity.dart +++ b/packages/eqapi_types/lib/model/components/eew_intensity.dart @@ -41,7 +41,7 @@ extension ForecastMaxLgIntDisplay on ForecastMaxLgInt { /// 表示する最大震度 /// 推定最大長周期地震動階級0の場合、nullを返す /// 0以上の場合、推定最大長周期地震動階級を返す - ({JmaForecastLgIntensity? maxLgInt, bool isOver}) toDisplayMaxLgInt() { + ({JmaForecastLgIntensity maxLgInt, bool isOver}) toDisplayMaxLgInt() { if (to == JmaForecastLgIntensityOver.over) { return (maxLgInt: from, isOver: true); } diff --git a/packages/eqapi_types/lib/model/components/eew_intensity.freezed.dart b/packages/eqapi_types/lib/model/components/eew_intensity.freezed.dart index a08000ca3..d737750ea 100644 --- a/packages/eqapi_types/lib/model/components/eew_intensity.freezed.dart +++ b/packages/eqapi_types/lib/model/components/eew_intensity.freezed.dart @@ -124,7 +124,7 @@ class _$ForecastMaxIntImpl implements _ForecastMaxInt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ForecastMaxIntImpl && @@ -279,7 +279,7 @@ class _$ForecastMaxLgIntImpl implements _ForecastMaxLgInt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ForecastMaxLgIntImpl && diff --git a/packages/eqapi_types/lib/model/components/eew_region.freezed.dart b/packages/eqapi_types/lib/model/components/eew_region.freezed.dart index 12fe62216..fa155915e 100644 --- a/packages/eqapi_types/lib/model/components/eew_region.freezed.dart +++ b/packages/eqapi_types/lib/model/components/eew_region.freezed.dart @@ -243,7 +243,7 @@ class _$EewRegionImpl implements _EewRegion { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EewRegionImpl && diff --git a/packages/eqapi_types/lib/model/components/intensity.freezed.dart b/packages/eqapi_types/lib/model/components/intensity.freezed.dart index 70b27af1a..d1a79fd10 100644 --- a/packages/eqapi_types/lib/model/components/intensity.freezed.dart +++ b/packages/eqapi_types/lib/model/components/intensity.freezed.dart @@ -242,7 +242,7 @@ class _$IntensityImpl implements _Intensity { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$IntensityImpl && diff --git a/packages/eqapi_types/lib/model/components/region_intensity.freezed.dart b/packages/eqapi_types/lib/model/components/region_intensity.freezed.dart index 51d283706..4ed163b7a 100644 --- a/packages/eqapi_types/lib/model/components/region_intensity.freezed.dart +++ b/packages/eqapi_types/lib/model/components/region_intensity.freezed.dart @@ -162,7 +162,7 @@ class _$RegionIntensityImpl implements _RegionIntensity { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$RegionIntensityImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/comments.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/comments.freezed.dart index 98fb1e1b4..0bd3d4b22 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/comments.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/comments.freezed.dart @@ -143,7 +143,7 @@ class _$TsunamiCommentsImpl implements _TsunamiComments { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiCommentsImpl && @@ -315,7 +315,7 @@ class _$TsunamiForecastCommentWarningImpl } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiForecastCommentWarningImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_estimation.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_estimation.freezed.dart index 79e881212..4d3f9451f 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_estimation.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_estimation.freezed.dart @@ -244,7 +244,7 @@ class _$TsunamiEstimationImpl implements _TsunamiEstimation { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiEstimationImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_forecast.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_forecast.freezed.dart index a54521b8d..60311faca 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_forecast.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_forecast.freezed.dart @@ -257,7 +257,7 @@ class _$TsunamiForecastImpl implements _TsunamiForecast { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiForecastImpl && @@ -447,7 +447,7 @@ class _$TsunamiForecastFirstHeightImpl implements _TsunamiForecastFirstHeight { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiForecastFirstHeightImpl && @@ -632,7 +632,7 @@ class _$TsunamiForecastMaxHeightImpl implements _TsunamiForecastMaxHeight { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiForecastMaxHeightImpl && @@ -853,7 +853,7 @@ class _$TsunamiForecastStationImpl implements _TsunamiForecastStation { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiForecastStationImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_observations.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_observations.freezed.dart index 95947caa7..77c13c823 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_observations.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/tsunami_observations.freezed.dart @@ -149,7 +149,7 @@ class _$TsunamiObservationImpl implements _TsunamiObservation { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiObservationImpl && @@ -447,7 +447,7 @@ class _$TsunamiObservationStationImpl implements _TsunamiObservationStation { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TsunamiObservationStationImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/vtse41.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/vtse41.freezed.dart index f8f8a781e..5ae4e149e 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/vtse41.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/vtse41.freezed.dart @@ -123,7 +123,7 @@ class _$PublicBodyVtse41TsunamiImpl implements _PublicBodyVtse41Tsunami { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PublicBodyVtse41TsunamiImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/vtse51.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/vtse51.freezed.dart index d0dc6b2b7..273aa0669 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/vtse51.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/vtse51.freezed.dart @@ -151,7 +151,7 @@ class _$PublicBodyVtse51TsunamiImpl implements _PublicBodyVtse51Tsunami { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PublicBodyVtse51TsunamiImpl && diff --git a/packages/eqapi_types/lib/model/components/tsunami-information/vtse52.freezed.dart b/packages/eqapi_types/lib/model/components/tsunami-information/vtse52.freezed.dart index 6458cf96c..a1d75d772 100644 --- a/packages/eqapi_types/lib/model/components/tsunami-information/vtse52.freezed.dart +++ b/packages/eqapi_types/lib/model/components/tsunami-information/vtse52.freezed.dart @@ -151,7 +151,7 @@ class _$PublicBodyVtse52TsunamiImpl implements _PublicBodyVtse52Tsunami { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PublicBodyVtse52TsunamiImpl && diff --git a/packages/eqapi_types/lib/model/information_v3.dart b/packages/eqapi_types/lib/model/information_v3.dart index 7f8b0f0e9..f22c1f0df 100644 --- a/packages/eqapi_types/lib/model/information_v3.dart +++ b/packages/eqapi_types/lib/model/information_v3.dart @@ -1,4 +1,3 @@ -import 'package:eqapi_types/eqapi_types.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; part 'information_v3.freezed.dart'; @@ -7,9 +6,7 @@ part 'information_v3.g.dart'; @freezed class InformationV3Result with _$InformationV3Result { const factory InformationV3Result({ - @Default([]) List results, - required bool success, - required D1DbExecutionResult meta, + required List items, }) = _InformationV3Result; factory InformationV3Result.fromJson(Map json) => @@ -25,8 +22,6 @@ class InformationV3 with _$InformationV3 { @JsonKey(unknownEnumValue: Author.unknown) required Author author, required DateTime createdAt, @JsonKey(unknownEnumValue: Level.info) required Level level, - @JsonKey(fromJson: tagFromString, toJson: tagToString) - required List tag, required int? eventId, }) = _InformationV3; @@ -35,10 +30,13 @@ class InformationV3 with _$InformationV3 { } enum Author { - developer, - jma, - unknown, + developer('開発者'), + jma('気象庁'), + unknown('不明'), ; + + final String name; + const Author(this.name); } enum Level { diff --git a/packages/eqapi_types/lib/model/information_v3.freezed.dart b/packages/eqapi_types/lib/model/information_v3.freezed.dart index 0e321d530..19b71337b 100644 --- a/packages/eqapi_types/lib/model/information_v3.freezed.dart +++ b/packages/eqapi_types/lib/model/information_v3.freezed.dart @@ -20,9 +20,7 @@ InformationV3Result _$InformationV3ResultFromJson(Map json) { /// @nodoc mixin _$InformationV3Result { - List get results => throw _privateConstructorUsedError; - bool get success => throw _privateConstructorUsedError; - D1DbExecutionResult get meta => throw _privateConstructorUsedError; + List get items => throw _privateConstructorUsedError; Map toJson() => throw _privateConstructorUsedError; @JsonKey(ignore: true) @@ -36,10 +34,7 @@ abstract class $InformationV3ResultCopyWith<$Res> { InformationV3Result value, $Res Function(InformationV3Result) then) = _$InformationV3ResultCopyWithImpl<$Res, InformationV3Result>; @useResult - $Res call( - {List results, bool success, D1DbExecutionResult meta}); - - $D1DbExecutionResultCopyWith<$Res> get meta; + $Res call({List items}); } /// @nodoc @@ -55,33 +50,15 @@ class _$InformationV3ResultCopyWithImpl<$Res, $Val extends InformationV3Result> @pragma('vm:prefer-inline') @override $Res call({ - Object? results = null, - Object? success = null, - Object? meta = null, + Object? items = null, }) { return _then(_value.copyWith( - results: null == results - ? _value.results - : results // ignore: cast_nullable_to_non_nullable + items: null == items + ? _value.items + : items // ignore: cast_nullable_to_non_nullable as List, - success: null == success - ? _value.success - : success // ignore: cast_nullable_to_non_nullable - as bool, - meta: null == meta - ? _value.meta - : meta // ignore: cast_nullable_to_non_nullable - as D1DbExecutionResult, ) as $Val); } - - @override - @pragma('vm:prefer-inline') - $D1DbExecutionResultCopyWith<$Res> get meta { - return $D1DbExecutionResultCopyWith<$Res>(_value.meta, (value) { - return _then(_value.copyWith(meta: value) as $Val); - }); - } } /// @nodoc @@ -92,11 +69,7 @@ abstract class _$$InformationV3ResultImplCopyWith<$Res> __$$InformationV3ResultImplCopyWithImpl<$Res>; @override @useResult - $Res call( - {List results, bool success, D1DbExecutionResult meta}); - - @override - $D1DbExecutionResultCopyWith<$Res> get meta; + $Res call({List items}); } /// @nodoc @@ -110,23 +83,13 @@ class __$$InformationV3ResultImplCopyWithImpl<$Res> @pragma('vm:prefer-inline') @override $Res call({ - Object? results = null, - Object? success = null, - Object? meta = null, + Object? items = null, }) { return _then(_$InformationV3ResultImpl( - results: null == results - ? _value._results - : results // ignore: cast_nullable_to_non_nullable + items: null == items + ? _value._items + : items // ignore: cast_nullable_to_non_nullable as List, - success: null == success - ? _value.success - : success // ignore: cast_nullable_to_non_nullable - as bool, - meta: null == meta - ? _value.meta - : meta // ignore: cast_nullable_to_non_nullable - as D1DbExecutionResult, )); } } @@ -134,48 +97,37 @@ class __$$InformationV3ResultImplCopyWithImpl<$Res> /// @nodoc @JsonSerializable() class _$InformationV3ResultImpl implements _InformationV3Result { - const _$InformationV3ResultImpl( - {final List results = const [], - required this.success, - required this.meta}) - : _results = results; + const _$InformationV3ResultImpl({required final List items}) + : _items = items; factory _$InformationV3ResultImpl.fromJson(Map json) => _$$InformationV3ResultImplFromJson(json); - final List _results; + final List _items; @override - @JsonKey() - List get results { - if (_results is EqualUnmodifiableListView) return _results; + List get items { + if (_items is EqualUnmodifiableListView) return _items; // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_results); + return EqualUnmodifiableListView(_items); } - @override - final bool success; - @override - final D1DbExecutionResult meta; - @override String toString() { - return 'InformationV3Result(results: $results, success: $success, meta: $meta)'; + return 'InformationV3Result(items: $items)'; } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$InformationV3ResultImpl && - const DeepCollectionEquality().equals(other._results, _results) && - (identical(other.success, success) || other.success == success) && - (identical(other.meta, meta) || other.meta == meta)); + const DeepCollectionEquality().equals(other._items, _items)); } @JsonKey(ignore: true) @override - int get hashCode => Object.hash(runtimeType, - const DeepCollectionEquality().hash(_results), success, meta); + int get hashCode => + Object.hash(runtimeType, const DeepCollectionEquality().hash(_items)); @JsonKey(ignore: true) @override @@ -194,19 +146,13 @@ class _$InformationV3ResultImpl implements _InformationV3Result { abstract class _InformationV3Result implements InformationV3Result { const factory _InformationV3Result( - {final List results, - required final bool success, - required final D1DbExecutionResult meta}) = _$InformationV3ResultImpl; + {required final List items}) = _$InformationV3ResultImpl; factory _InformationV3Result.fromJson(Map json) = _$InformationV3ResultImpl.fromJson; @override - List get results; - @override - bool get success; - @override - D1DbExecutionResult get meta; + List get items; @override @JsonKey(ignore: true) _$$InformationV3ResultImplCopyWith<_$InformationV3ResultImpl> get copyWith => @@ -227,8 +173,6 @@ mixin _$InformationV3 { DateTime get createdAt => throw _privateConstructorUsedError; @JsonKey(unknownEnumValue: Level.info) Level get level => throw _privateConstructorUsedError; - @JsonKey(fromJson: tagFromString, toJson: tagToString) - List get tag => throw _privateConstructorUsedError; int? get eventId => throw _privateConstructorUsedError; Map toJson() => throw _privateConstructorUsedError; @@ -250,7 +194,6 @@ abstract class $InformationV3CopyWith<$Res> { @JsonKey(unknownEnumValue: Author.unknown) Author author, DateTime createdAt, @JsonKey(unknownEnumValue: Level.info) Level level, - @JsonKey(fromJson: tagFromString, toJson: tagToString) List tag, int? eventId}); } @@ -273,7 +216,6 @@ class _$InformationV3CopyWithImpl<$Res, $Val extends InformationV3> Object? author = null, Object? createdAt = null, Object? level = null, - Object? tag = null, Object? eventId = freezed, }) { return _then(_value.copyWith( @@ -301,10 +243,6 @@ class _$InformationV3CopyWithImpl<$Res, $Val extends InformationV3> ? _value.level : level // ignore: cast_nullable_to_non_nullable as Level, - tag: null == tag - ? _value.tag - : tag // ignore: cast_nullable_to_non_nullable - as List, eventId: freezed == eventId ? _value.eventId : eventId // ignore: cast_nullable_to_non_nullable @@ -328,7 +266,6 @@ abstract class _$$InformationV3ImplCopyWith<$Res> @JsonKey(unknownEnumValue: Author.unknown) Author author, DateTime createdAt, @JsonKey(unknownEnumValue: Level.info) Level level, - @JsonKey(fromJson: tagFromString, toJson: tagToString) List tag, int? eventId}); } @@ -349,7 +286,6 @@ class __$$InformationV3ImplCopyWithImpl<$Res> Object? author = null, Object? createdAt = null, Object? level = null, - Object? tag = null, Object? eventId = freezed, }) { return _then(_$InformationV3Impl( @@ -377,10 +313,6 @@ class __$$InformationV3ImplCopyWithImpl<$Res> ? _value.level : level // ignore: cast_nullable_to_non_nullable as Level, - tag: null == tag - ? _value._tag - : tag // ignore: cast_nullable_to_non_nullable - as List, eventId: freezed == eventId ? _value.eventId : eventId // ignore: cast_nullable_to_non_nullable @@ -399,10 +331,7 @@ class _$InformationV3Impl implements _InformationV3 { @JsonKey(unknownEnumValue: Author.unknown) required this.author, required this.createdAt, @JsonKey(unknownEnumValue: Level.info) required this.level, - @JsonKey(fromJson: tagFromString, toJson: tagToString) - required final List tag, - required this.eventId}) - : _tag = tag; + required this.eventId}); factory _$InformationV3Impl.fromJson(Map json) => _$$InformationV3ImplFromJson(json); @@ -421,25 +350,16 @@ class _$InformationV3Impl implements _InformationV3 { @override @JsonKey(unknownEnumValue: Level.info) final Level level; - final List _tag; - @override - @JsonKey(fromJson: tagFromString, toJson: tagToString) - List get tag { - if (_tag is EqualUnmodifiableListView) return _tag; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_tag); - } - @override final int? eventId; @override String toString() { - return 'InformationV3(id: $id, title: $title, body: $body, author: $author, createdAt: $createdAt, level: $level, tag: $tag, eventId: $eventId)'; + return 'InformationV3(id: $id, title: $title, body: $body, author: $author, createdAt: $createdAt, level: $level, eventId: $eventId)'; } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$InformationV3Impl && @@ -450,14 +370,13 @@ class _$InformationV3Impl implements _InformationV3 { (identical(other.createdAt, createdAt) || other.createdAt == createdAt) && (identical(other.level, level) || other.level == level) && - const DeepCollectionEquality().equals(other._tag, _tag) && (identical(other.eventId, eventId) || other.eventId == eventId)); } @JsonKey(ignore: true) @override - int get hashCode => Object.hash(runtimeType, id, title, body, author, - createdAt, level, const DeepCollectionEquality().hash(_tag), eventId); + int get hashCode => Object.hash( + runtimeType, id, title, body, author, createdAt, level, eventId); @JsonKey(ignore: true) @override @@ -481,8 +400,6 @@ abstract class _InformationV3 implements InformationV3 { @JsonKey(unknownEnumValue: Author.unknown) required final Author author, required final DateTime createdAt, @JsonKey(unknownEnumValue: Level.info) required final Level level, - @JsonKey(fromJson: tagFromString, toJson: tagToString) - required final List tag, required final int? eventId}) = _$InformationV3Impl; factory _InformationV3.fromJson(Map json) = @@ -503,9 +420,6 @@ abstract class _InformationV3 implements InformationV3 { @JsonKey(unknownEnumValue: Level.info) Level get level; @override - @JsonKey(fromJson: tagFromString, toJson: tagToString) - List get tag; - @override int? get eventId; @override @JsonKey(ignore: true) diff --git a/packages/eqapi_types/lib/model/information_v3.g.dart b/packages/eqapi_types/lib/model/information_v3.g.dart index 21f169461..b2dffc88a 100644 --- a/packages/eqapi_types/lib/model/information_v3.g.dart +++ b/packages/eqapi_types/lib/model/information_v3.g.dart @@ -15,17 +15,11 @@ _$InformationV3ResultImpl _$$InformationV3ResultImplFromJson( json, ($checkedConvert) { final val = _$InformationV3ResultImpl( - results: $checkedConvert( - 'results', - (v) => - (v as List?) - ?.map((e) => - InformationV3.fromJson(e as Map)) - .toList() ?? - const []), - success: $checkedConvert('success', (v) => v as bool), - meta: $checkedConvert('meta', - (v) => D1DbExecutionResult.fromJson(v as Map)), + items: $checkedConvert( + 'items', + (v) => (v as List) + .map((e) => InformationV3.fromJson(e as Map)) + .toList()), ); return val; }, @@ -34,9 +28,7 @@ _$InformationV3ResultImpl _$$InformationV3ResultImplFromJson( Map _$$InformationV3ResultImplToJson( _$InformationV3ResultImpl instance) => { - 'results': instance.results, - 'success': instance.success, - 'meta': instance.meta, + 'items': instance.items, }; _$InformationV3Impl _$$InformationV3ImplFromJson(Map json) => @@ -56,7 +48,6 @@ _$InformationV3Impl _$$InformationV3ImplFromJson(Map json) => $checkedConvert('createdAt', (v) => DateTime.parse(v as String)), level: $checkedConvert('level', (v) => $enumDecode(_$LevelEnumMap, v, unknownValue: Level.info)), - tag: $checkedConvert('tag', (v) => tagFromString(v as String)), eventId: $checkedConvert('eventId', (v) => v as int?), ); return val; @@ -71,7 +62,6 @@ Map _$$InformationV3ImplToJson(_$InformationV3Impl instance) => 'author': _$AuthorEnumMap[instance.author]!, 'createdAt': instance.createdAt.toIso8601String(), 'level': _$LevelEnumMap[instance.level]!, - 'tag': tagToString(instance.tag), 'eventId': instance.eventId, }; diff --git a/packages/eqapi_types/lib/model/telegram_history.freezed.dart b/packages/eqapi_types/lib/model/telegram_history.freezed.dart index 467f8c735..d20e8f297 100644 --- a/packages/eqapi_types/lib/model/telegram_history.freezed.dart +++ b/packages/eqapi_types/lib/model/telegram_history.freezed.dart @@ -184,7 +184,7 @@ class _$TelegramHistoryV3Impl implements _TelegramHistoryV3 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramHistoryV3Impl && @@ -337,7 +337,7 @@ class _$D1DbExecutionResultImpl implements _D1DbExecutionResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$D1DbExecutionResultImpl && diff --git a/packages/eqapi_types/lib/model/telegram_v3.dart b/packages/eqapi_types/lib/model/telegram_v3.dart index 88164671e..f2b3beb6e 100644 --- a/packages/eqapi_types/lib/model/telegram_v3.dart +++ b/packages/eqapi_types/lib/model/telegram_v3.dart @@ -486,11 +486,10 @@ enum JmaIntensity { final String type; @override - String toString() => type.replaceAll('+', '強').replaceAll('-', '弱'); - - bool operator >(JmaIntensity other) { - return type.compareTo(other.type) > 0; - } + String toString() => type + .replaceAll('!5-', '震度5弱以上未入電') + .replaceAll('+', '強') + .replaceAll('-', '弱'); } @JsonEnum(valueField: 'type') @@ -511,7 +510,7 @@ enum JmaForecastIntensity { final String type; // compare to JmaIntensity - bool operator >(JmaIntensity other) { + bool operator >(JmaForecastIntensity other) { return type.compareTo(other.type) > 0; } @@ -568,6 +567,21 @@ enum JmaLgIntensity { @override String toString() => type; + bool operator <(JmaLgIntensity other) { + return index < other.index; + } + + bool operator <=(JmaLgIntensity other) { + return index <= other.index; + } + + bool operator >(JmaLgIntensity other) { + return index > other.index; + } + + bool operator >=(JmaLgIntensity other) { + return index >= other.index; + } } @JsonEnum(valueField: 'type') diff --git a/packages/eqapi_types/lib/model/telegram_v3.freezed.dart b/packages/eqapi_types/lib/model/telegram_v3.freezed.dart index fd9cd3a10..31454c488 100644 --- a/packages/eqapi_types/lib/model/telegram_v3.freezed.dart +++ b/packages/eqapi_types/lib/model/telegram_v3.freezed.dart @@ -314,7 +314,7 @@ class _$TelegramV3BaseImpl implements _TelegramV3Base { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramV3BaseImpl && @@ -576,7 +576,7 @@ class _$TelegramVxse51BodyImpl implements _TelegramVxse51Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse51BodyImpl && @@ -774,7 +774,7 @@ class _$TelegramVxse52BodyImpl implements _TelegramVxse52Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse52BodyImpl && @@ -1011,7 +1011,7 @@ class _$TelegramVxse53BodyImpl implements _TelegramVxse53Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse53BodyImpl && @@ -1254,7 +1254,7 @@ class _$TelegramVxse62BodyImpl implements _TelegramVxse62Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse62BodyImpl && @@ -1493,7 +1493,7 @@ class _$TelegramVtse41BodyImpl implements _TelegramVtse41Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVtse41BodyImpl && @@ -1732,7 +1732,7 @@ class _$TelegramVtse51BodyImpl implements _TelegramVtse51Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVtse51BodyImpl && @@ -1971,7 +1971,7 @@ class _$TelegramVtse52BodyImpl implements _TelegramVtse52Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVtse52BodyImpl && @@ -2179,7 +2179,7 @@ class _$TelegramVxse61BodyImpl implements _TelegramVxse61Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse61BodyImpl && @@ -2381,7 +2381,7 @@ class _$EarthquakeNankaiBodyImpl implements _EarthquakeNankaiBody { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeNankaiBodyImpl && @@ -2590,7 +2590,7 @@ class _$TelegramVxse56BodyImpl implements _TelegramVxse56Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse56BodyImpl && @@ -2737,7 +2737,7 @@ class _$TelegramCancelBodyImpl implements _TelegramCancelBody { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramCancelBodyImpl && @@ -3105,7 +3105,7 @@ class _$TelegramVxse45BodyImpl implements _TelegramVxse45Body { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TelegramVxse45BodyImpl && @@ -3334,7 +3334,7 @@ class _$EarthquakeInformationBodyImpl implements _EarthquakeInformationBody { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EarthquakeInformationBodyImpl && diff --git a/packages/eqapi_types/pubspec_overrides.yaml b/packages/eqapi_types/pubspec_overrides.yaml index a4c0b3dba..1a55f1429 100644 --- a/packages/eqapi_types/pubspec_overrides.yaml +++ b/packages/eqapi_types/pubspec_overrides.yaml @@ -1,4 +1,4 @@ -# melos_managed_dependency_overrides: extensions,topojson +# melos_managed_dependency_overrides: lat_lng dependency_overrides: lat_lng: - path: ../lat_lng \ No newline at end of file + path: ../lat_lng diff --git a/packages/eqapi_types/test/eqapi_schema_test.dart b/packages/eqapi_types/test/eqapi_schema_test.dart deleted file mode 100644 index 26382a46a..000000000 --- a/packages/eqapi_types/test/eqapi_schema_test.dart +++ /dev/null @@ -1,26 +0,0 @@ -import 'dart:convert'; -import 'dart:io'; - -import 'package:eqapi_types/model/telegram_v3.dart'; -import 'package:test/test.dart'; - -void main() { - test('parse Test', () async { - // load file - final file = File('test_resources/eqapi_types_test.json'); - final jsonString = await file.readAsString(); - // parse json - final json = jsonDecode(jsonString) as Map; - final results = []; - (json['results'] as Map).forEach((eventId, value) { - final telegrams = value as List; - for (final e in telegrams) { - final telegram = TelegramV3.fromJsonAndEventID( - e as Map, - int.parse(eventId), - ); - results.add(telegram); - } - }); - }); -} diff --git a/packages/extensions/lib/src/safe_list_access.dart b/packages/extensions/lib/src/safe_list_access.dart index 83fe1e28f..25195b4e8 100644 --- a/packages/extensions/lib/src/safe_list_access.dart +++ b/packages/extensions/lib/src/safe_list_access.dart @@ -13,10 +13,10 @@ extension SafeListAccess on List { extension SafeMapAccess on Map { /// 指定したキーの要素を取得する /// キーが存在しない場合はnullを返す - T? getOrNull(dynamic key) { + V? getOrNull(K key) { if (!containsKey(key)) { return null; } - return this[key] as T; + return this[key] as V; } } diff --git a/packages/eq_map/.gitignore b/packages/jma_map/.gitignore similarity index 100% rename from packages/eq_map/.gitignore rename to packages/jma_map/.gitignore diff --git a/packages/jma_map/CHANGELOG.md b/packages/jma_map/CHANGELOG.md new file mode 100644 index 000000000..effe43c82 --- /dev/null +++ b/packages/jma_map/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +- Initial version. diff --git a/packages/jma_map/README.md b/packages/jma_map/README.md new file mode 100644 index 000000000..cffaabfd2 --- /dev/null +++ b/packages/jma_map/README.md @@ -0,0 +1,3 @@ +# Jma Map + +AreaForecastLocalEEW, AreaForecastLocalE, AreaInformationCity の Boundary Boxとpropertyを保持するClass diff --git a/packages/jma_map/bin/jma_map_protobuf_gen.dart b/packages/jma_map/bin/jma_map_protobuf_gen.dart new file mode 100644 index 000000000..9b33ff52c --- /dev/null +++ b/packages/jma_map/bin/jma_map_protobuf_gen.dart @@ -0,0 +1,166 @@ +import 'dart:convert'; +import 'dart:io'; +import 'dart:math'; + +import 'package:jma_map/gen/jma_map.pb.dart'; + +Future main() async { + final List jmaMapDataList = []; + + final targets = [ + JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_EEW, + JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_E, + JmaMap_JmaMapData_JmaMapType.AREA_INFORMATION_CITY, + JmaMap_JmaMapData_JmaMapType.AREA_TSUNAMI, + ]; + for (final target in targets) { + final body = await File("maps/${target.toFileName}.geojson").readAsString(); + final json = jsonDecode(body) as Map; + + final jmaMapData = await _parseGeoJsonToJmaMap(json); + print(jmaMapData.length); + jmaMapDataList.add( + JmaMap_JmaMapData( + mapType: target, + data: jmaMapData, + ), + ); + } + // dump to file + final file = File("out.pb"); + await file.writeAsBytes( + JmaMap( + data: jmaMapDataList, + ).writeToBuffer(), + ); +} + +Future> _parseGeoJsonToJmaMap( + Map geojson) async { + final results = []; + final features = geojson["features"] as List; + for (final feature in features) { + final json = feature as Map; + if (json + case { + "geometry": { + "type": final String geometryType, + "coordinates": final List coordinates, + }, + "properties": final Map properties, + }) { + final List latLngs = []; + if (geometryType == "Polygon") { + for (final lists in coordinates) { + for (final list in lists) { + latLngs.add(LatLng( + lat: list[1] as double, + lng: list[0] as double, + )); + } + } + } else if (geometryType == "MultiPolygon") { + for (final lists in coordinates) { + for (final list in lists) { + for (final l in list) { + latLngs.add(LatLng( + lat: l[1] as double, + lng: l[0] as double, + )); + } + } + } + } else if (geometryType == "MultiLineString") { + for (final e in coordinates) { + for (final list in e) { + latLngs.add(LatLng( + lat: list[1] as double, + lng: list[0] as double, + )); + } + } + } else if (geometryType == "LineString") { + for (final list in coordinates) { + latLngs.add(LatLng( + lat: list[1] as double, + lng: list[0] as double, + )); + } + } else { + throw Exception("Unknown geometry type: $geometryType"); + } + final bbox = latLngs.toLatLngBounds; + bool skipFlag = false; + final property = JmaMap_JmaMapData_JmaMapDataItem_Property( + code: properties["code"] as String? ?? + properties["regioncode"] as String? ?? + (() { + skipFlag = true; + print("Unknown code: ${properties}"); + }()), + name: properties["name"] as String? ?? + (throw Exception("Unknown name: ${properties}")), + nameKana: properties["namekana"] as String? ?? + (() { + skipFlag = true; + print("Unknown nameKana: ${properties}"); + }()), + ); + if (skipFlag) { + continue; + } + results.add( + JmaMap_JmaMapData_JmaMapDataItem( + bounds: bbox, + property: property, + ), + ); + } else { + throw Exception("Unknown feature: $json"); + } + } + return results; +} + +extension LatLngListEx on List { + LatLngBounds get toLatLngBounds { + final latLngs = this; + if (latLngs.isEmpty) { + throw Exception("LatLngs is empty"); + } + var northEastLat = -180.0; + var northEastLng = -180.0; + var southWestLat = 180.0; + var southWestLng = 180.0; + for (final latLng in latLngs) { + northEastLat = max(northEastLat, latLng.lat); + northEastLng = max(northEastLng, latLng.lng); + southWestLat = min(southWestLat, latLng.lat); + southWestLng = min(southWestLng, latLng.lng); + } + final latLngBounds = LatLngBounds( + northEast: LatLng( + lat: northEastLat, + lng: northEastLng, + ), + southWest: LatLng( + lat: southWestLat, + lng: southWestLng, + ), + ); + return latLngBounds; + } +} + +extension JmaMapTypeConverter on JmaMap_JmaMapData_JmaMapType { + String get toFileName => switch (this) { + JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_E => + "areaForecastLocalE", + JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_EEW => + "areaForecastLocalEew", + JmaMap_JmaMapData_JmaMapType.AREA_INFORMATION_CITY => + "areaInformationCityQuake", + JmaMap_JmaMapData_JmaMapType.AREA_TSUNAMI => "areaTsunami", + _ => throw UnimplementedError(), + }; +} diff --git a/packages/topo_map/build.yaml b/packages/jma_map/build.yaml similarity index 100% rename from packages/topo_map/build.yaml rename to packages/jma_map/build.yaml diff --git a/packages/jma_map/lib/gen/jma_map.pb.dart b/packages/jma_map/lib/gen/jma_map.pb.dart new file mode 100644 index 000000000..8e29dab23 --- /dev/null +++ b/packages/jma_map/lib/gen/jma_map.pb.dart @@ -0,0 +1,508 @@ +// +// Generated code. Do not modify. +// source: jma_map.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:core' as $core; + +import 'package:protobuf/protobuf.dart' as $pb; + +import 'package:jma_map/gen/jma_map.pbenum.dart'; + +export 'jma_map.pbenum.dart'; + +class JmaMap_JmaMapData_JmaMapDataItem_Property extends $pb.GeneratedMessage { + factory JmaMap_JmaMapData_JmaMapDataItem_Property({ + $core.String? code, + $core.String? name, + $core.String? nameKana, + }) { + final $result = create(); + if (code != null) { + $result.code = code; + } + if (name != null) { + $result.name = name; + } + if (nameKana != null) { + $result.nameKana = nameKana; + } + return $result; + } + JmaMap_JmaMapData_JmaMapDataItem_Property._() : super(); + factory JmaMap_JmaMapData_JmaMapDataItem_Property.fromBuffer( + $core.List<$core.int> i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(i, r); + factory JmaMap_JmaMapData_JmaMapDataItem_Property.fromJson($core.String i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'JmaMap.JmaMapData.JmaMapDataItem.Property', + package: const $pb.PackageName( + _omitMessageNames ? '' : 'net.yumnumm.eqmonitor.jma_map'), + createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'code') + ..aOS(2, _omitFieldNames ? '' : 'name') + ..aOS(3, _omitFieldNames ? '' : 'nameKana', protoName: 'nameKana') + ..hasRequiredFields = false; + + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + JmaMap_JmaMapData_JmaMapDataItem_Property clone() => + JmaMap_JmaMapData_JmaMapDataItem_Property()..mergeFromMessage(this); + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + JmaMap_JmaMapData_JmaMapDataItem_Property copyWith( + void Function(JmaMap_JmaMapData_JmaMapDataItem_Property) updates) => + super.copyWith((message) => + updates(message as JmaMap_JmaMapData_JmaMapDataItem_Property)) + as JmaMap_JmaMapData_JmaMapDataItem_Property; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static JmaMap_JmaMapData_JmaMapDataItem_Property create() => + JmaMap_JmaMapData_JmaMapDataItem_Property._(); + JmaMap_JmaMapData_JmaMapDataItem_Property createEmptyInstance() => create(); + static $pb.PbList + createRepeated() => + $pb.PbList(); + @$core.pragma('dart2js:noInline') + static JmaMap_JmaMapData_JmaMapDataItem_Property getDefault() => + _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor< + JmaMap_JmaMapData_JmaMapDataItem_Property>(create); + static JmaMap_JmaMapData_JmaMapDataItem_Property? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get code => $_getSZ(0); + @$pb.TagNumber(1) + set code($core.String v) { + $_setString(0, v); + } + + @$pb.TagNumber(1) + $core.bool hasCode() => $_has(0); + @$pb.TagNumber(1) + void clearCode() => clearField(1); + + @$pb.TagNumber(2) + $core.String get name => $_getSZ(1); + @$pb.TagNumber(2) + set name($core.String v) { + $_setString(1, v); + } + + @$pb.TagNumber(2) + $core.bool hasName() => $_has(1); + @$pb.TagNumber(2) + void clearName() => clearField(2); + + @$pb.TagNumber(3) + $core.String get nameKana => $_getSZ(2); + @$pb.TagNumber(3) + set nameKana($core.String v) { + $_setString(2, v); + } + + @$pb.TagNumber(3) + $core.bool hasNameKana() => $_has(2); + @$pb.TagNumber(3) + void clearNameKana() => clearField(3); +} + +class JmaMap_JmaMapData_JmaMapDataItem extends $pb.GeneratedMessage { + factory JmaMap_JmaMapData_JmaMapDataItem({ + LatLngBounds? bounds, + JmaMap_JmaMapData_JmaMapDataItem_Property? property, + }) { + final $result = create(); + if (bounds != null) { + $result.bounds = bounds; + } + if (property != null) { + $result.property = property; + } + return $result; + } + JmaMap_JmaMapData_JmaMapDataItem._() : super(); + factory JmaMap_JmaMapData_JmaMapDataItem.fromBuffer($core.List<$core.int> i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(i, r); + factory JmaMap_JmaMapData_JmaMapDataItem.fromJson($core.String i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'JmaMap.JmaMapData.JmaMapDataItem', + package: const $pb.PackageName( + _omitMessageNames ? '' : 'net.yumnumm.eqmonitor.jma_map'), + createEmptyInstance: create) + ..aOM(1, _omitFieldNames ? '' : 'bounds', + subBuilder: LatLngBounds.create) + ..aOM( + 2, _omitFieldNames ? '' : 'property', + subBuilder: JmaMap_JmaMapData_JmaMapDataItem_Property.create) + ..hasRequiredFields = false; + + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + JmaMap_JmaMapData_JmaMapDataItem clone() => + JmaMap_JmaMapData_JmaMapDataItem()..mergeFromMessage(this); + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + JmaMap_JmaMapData_JmaMapDataItem copyWith( + void Function(JmaMap_JmaMapData_JmaMapDataItem) updates) => + super.copyWith( + (message) => updates(message as JmaMap_JmaMapData_JmaMapDataItem)) + as JmaMap_JmaMapData_JmaMapDataItem; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static JmaMap_JmaMapData_JmaMapDataItem create() => + JmaMap_JmaMapData_JmaMapDataItem._(); + JmaMap_JmaMapData_JmaMapDataItem createEmptyInstance() => create(); + static $pb.PbList createRepeated() => + $pb.PbList(); + @$core.pragma('dart2js:noInline') + static JmaMap_JmaMapData_JmaMapDataItem getDefault() => _defaultInstance ??= + $pb.GeneratedMessage.$_defaultFor( + create); + static JmaMap_JmaMapData_JmaMapDataItem? _defaultInstance; + + @$pb.TagNumber(1) + LatLngBounds get bounds => $_getN(0); + @$pb.TagNumber(1) + set bounds(LatLngBounds v) { + setField(1, v); + } + + @$pb.TagNumber(1) + $core.bool hasBounds() => $_has(0); + @$pb.TagNumber(1) + void clearBounds() => clearField(1); + @$pb.TagNumber(1) + LatLngBounds ensureBounds() => $_ensure(0); + + @$pb.TagNumber(2) + JmaMap_JmaMapData_JmaMapDataItem_Property get property => $_getN(1); + @$pb.TagNumber(2) + set property(JmaMap_JmaMapData_JmaMapDataItem_Property v) { + setField(2, v); + } + + @$pb.TagNumber(2) + $core.bool hasProperty() => $_has(1); + @$pb.TagNumber(2) + void clearProperty() => clearField(2); + @$pb.TagNumber(2) + JmaMap_JmaMapData_JmaMapDataItem_Property ensureProperty() => $_ensure(1); +} + +class JmaMap_JmaMapData extends $pb.GeneratedMessage { + factory JmaMap_JmaMapData({ + JmaMap_JmaMapData_JmaMapType? mapType, + $core.Iterable? data, + }) { + final $result = create(); + if (mapType != null) { + $result.mapType = mapType; + } + if (data != null) { + $result.data.addAll(data); + } + return $result; + } + JmaMap_JmaMapData._() : super(); + factory JmaMap_JmaMapData.fromBuffer($core.List<$core.int> i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(i, r); + factory JmaMap_JmaMapData.fromJson($core.String i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'JmaMap.JmaMapData', + package: const $pb.PackageName( + _omitMessageNames ? '' : 'net.yumnumm.eqmonitor.jma_map'), + createEmptyInstance: create) + ..e( + 1, _omitFieldNames ? '' : 'mapType', $pb.PbFieldType.OE, + protoName: 'mapType', + defaultOrMaker: JmaMap_JmaMapData_JmaMapType.AREA_FORECAST_LOCAL_EEW, + valueOf: JmaMap_JmaMapData_JmaMapType.valueOf, + enumValues: JmaMap_JmaMapData_JmaMapType.values) + ..pc( + 2, _omitFieldNames ? '' : 'data', $pb.PbFieldType.PM, + subBuilder: JmaMap_JmaMapData_JmaMapDataItem.create) + ..hasRequiredFields = false; + + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + JmaMap_JmaMapData clone() => JmaMap_JmaMapData()..mergeFromMessage(this); + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + JmaMap_JmaMapData copyWith(void Function(JmaMap_JmaMapData) updates) => + super.copyWith((message) => updates(message as JmaMap_JmaMapData)) + as JmaMap_JmaMapData; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static JmaMap_JmaMapData create() => JmaMap_JmaMapData._(); + JmaMap_JmaMapData createEmptyInstance() => create(); + static $pb.PbList createRepeated() => + $pb.PbList(); + @$core.pragma('dart2js:noInline') + static JmaMap_JmaMapData getDefault() => _defaultInstance ??= + $pb.GeneratedMessage.$_defaultFor(create); + static JmaMap_JmaMapData? _defaultInstance; + + @$pb.TagNumber(1) + JmaMap_JmaMapData_JmaMapType get mapType => $_getN(0); + @$pb.TagNumber(1) + set mapType(JmaMap_JmaMapData_JmaMapType v) { + setField(1, v); + } + + @$pb.TagNumber(1) + $core.bool hasMapType() => $_has(0); + @$pb.TagNumber(1) + void clearMapType() => clearField(1); + + @$pb.TagNumber(2) + $core.List get data => $_getList(1); +} + +class JmaMap extends $pb.GeneratedMessage { + factory JmaMap({ + $core.Iterable? data, + }) { + final $result = create(); + if (data != null) { + $result.data.addAll(data); + } + return $result; + } + JmaMap._() : super(); + factory JmaMap.fromBuffer($core.List<$core.int> i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(i, r); + factory JmaMap.fromJson($core.String i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'JmaMap', + package: const $pb.PackageName( + _omitMessageNames ? '' : 'net.yumnumm.eqmonitor.jma_map'), + createEmptyInstance: create) + ..pc( + 1, _omitFieldNames ? '' : 'data', $pb.PbFieldType.PM, + subBuilder: JmaMap_JmaMapData.create) + ..hasRequiredFields = false; + + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + JmaMap clone() => JmaMap()..mergeFromMessage(this); + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + JmaMap copyWith(void Function(JmaMap) updates) => + super.copyWith((message) => updates(message as JmaMap)) as JmaMap; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static JmaMap create() => JmaMap._(); + JmaMap createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static JmaMap getDefault() => + _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static JmaMap? _defaultInstance; + + @$pb.TagNumber(1) + $core.List get data => $_getList(0); +} + +class LatLngBounds extends $pb.GeneratedMessage { + factory LatLngBounds({ + LatLng? southWest, + LatLng? northEast, + }) { + final $result = create(); + if (southWest != null) { + $result.southWest = southWest; + } + if (northEast != null) { + $result.northEast = northEast; + } + return $result; + } + LatLngBounds._() : super(); + factory LatLngBounds.fromBuffer($core.List<$core.int> i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(i, r); + factory LatLngBounds.fromJson($core.String i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'LatLngBounds', + package: const $pb.PackageName( + _omitMessageNames ? '' : 'net.yumnumm.eqmonitor.jma_map'), + createEmptyInstance: create) + ..aOM(1, _omitFieldNames ? '' : 'southWest', + protoName: 'southWest', subBuilder: LatLng.create) + ..aOM(2, _omitFieldNames ? '' : 'northEast', + protoName: 'northEast', subBuilder: LatLng.create) + ..hasRequiredFields = false; + + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + LatLngBounds clone() => LatLngBounds()..mergeFromMessage(this); + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + LatLngBounds copyWith(void Function(LatLngBounds) updates) => + super.copyWith((message) => updates(message as LatLngBounds)) + as LatLngBounds; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static LatLngBounds create() => LatLngBounds._(); + LatLngBounds createEmptyInstance() => create(); + static $pb.PbList createRepeated() => + $pb.PbList(); + @$core.pragma('dart2js:noInline') + static LatLngBounds getDefault() => _defaultInstance ??= + $pb.GeneratedMessage.$_defaultFor(create); + static LatLngBounds? _defaultInstance; + + @$pb.TagNumber(1) + LatLng get southWest => $_getN(0); + @$pb.TagNumber(1) + set southWest(LatLng v) { + setField(1, v); + } + + @$pb.TagNumber(1) + $core.bool hasSouthWest() => $_has(0); + @$pb.TagNumber(1) + void clearSouthWest() => clearField(1); + @$pb.TagNumber(1) + LatLng ensureSouthWest() => $_ensure(0); + + @$pb.TagNumber(2) + LatLng get northEast => $_getN(1); + @$pb.TagNumber(2) + set northEast(LatLng v) { + setField(2, v); + } + + @$pb.TagNumber(2) + $core.bool hasNorthEast() => $_has(1); + @$pb.TagNumber(2) + void clearNorthEast() => clearField(2); + @$pb.TagNumber(2) + LatLng ensureNorthEast() => $_ensure(1); +} + +class LatLng extends $pb.GeneratedMessage { + factory LatLng({ + $core.double? lat, + $core.double? lng, + }) { + final $result = create(); + if (lat != null) { + $result.lat = lat; + } + if (lng != null) { + $result.lng = lng; + } + return $result; + } + LatLng._() : super(); + factory LatLng.fromBuffer($core.List<$core.int> i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(i, r); + factory LatLng.fromJson($core.String i, + [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'LatLng', + package: const $pb.PackageName( + _omitMessageNames ? '' : 'net.yumnumm.eqmonitor.jma_map'), + createEmptyInstance: create) + ..a<$core.double>(1, _omitFieldNames ? '' : 'lat', $pb.PbFieldType.OD) + ..a<$core.double>(2, _omitFieldNames ? '' : 'lng', $pb.PbFieldType.OD) + ..hasRequiredFields = false; + + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + LatLng clone() => LatLng()..mergeFromMessage(this); + @$core.Deprecated('Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + LatLng copyWith(void Function(LatLng) updates) => + super.copyWith((message) => updates(message as LatLng)) as LatLng; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static LatLng create() => LatLng._(); + LatLng createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static LatLng getDefault() => + _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static LatLng? _defaultInstance; + + @$pb.TagNumber(1) + $core.double get lat => $_getN(0); + @$pb.TagNumber(1) + set lat($core.double v) { + $_setDouble(0, v); + } + + @$pb.TagNumber(1) + $core.bool hasLat() => $_has(0); + @$pb.TagNumber(1) + void clearLat() => clearField(1); + + @$pb.TagNumber(2) + $core.double get lng => $_getN(1); + @$pb.TagNumber(2) + set lng($core.double v) { + $_setDouble(1, v); + } + + @$pb.TagNumber(2) + $core.bool hasLng() => $_has(1); + @$pb.TagNumber(2) + void clearLng() => clearField(2); +} + +const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names'); +const _omitMessageNames = + $core.bool.fromEnvironment('protobuf.omit_message_names'); diff --git a/packages/jma_map/lib/gen/jma_map.pbenum.dart b/packages/jma_map/lib/gen/jma_map.pbenum.dart new file mode 100644 index 000000000..d90034c38 --- /dev/null +++ b/packages/jma_map/lib/gen/jma_map.pbenum.dart @@ -0,0 +1,36 @@ +// +// Generated code. Do not modify. +// source: jma_map.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:core' as $core; + +import 'package:protobuf/protobuf.dart' as $pb; + +class JmaMap_JmaMapData_JmaMapType extends $pb.ProtobufEnum { + static const JmaMap_JmaMapData_JmaMapType AREA_FORECAST_LOCAL_EEW = JmaMap_JmaMapData_JmaMapType._(0, _omitEnumNames ? '' : 'AREA_FORECAST_LOCAL_EEW'); + static const JmaMap_JmaMapData_JmaMapType AREA_FORECAST_LOCAL_E = JmaMap_JmaMapData_JmaMapType._(1, _omitEnumNames ? '' : 'AREA_FORECAST_LOCAL_E'); + static const JmaMap_JmaMapData_JmaMapType AREA_INFORMATION_CITY = JmaMap_JmaMapData_JmaMapType._(2, _omitEnumNames ? '' : 'AREA_INFORMATION_CITY'); + static const JmaMap_JmaMapData_JmaMapType AREA_TSUNAMI = JmaMap_JmaMapData_JmaMapType._(3, _omitEnumNames ? '' : 'AREA_TSUNAMI'); + + static const $core.List values = [ + AREA_FORECAST_LOCAL_EEW, + AREA_FORECAST_LOCAL_E, + AREA_INFORMATION_CITY, + AREA_TSUNAMI, + ]; + + static final $core.Map<$core.int, JmaMap_JmaMapData_JmaMapType> _byValue = $pb.ProtobufEnum.initByValue(values); + static JmaMap_JmaMapData_JmaMapType? valueOf($core.int value) => _byValue[value]; + + const JmaMap_JmaMapData_JmaMapType._($core.int v, $core.String n) : super(v, n); +} + + +const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names'); diff --git a/packages/jma_map/lib/gen/jma_map.pbjson.dart b/packages/jma_map/lib/gen/jma_map.pbjson.dart new file mode 100644 index 000000000..b948a98ac --- /dev/null +++ b/packages/jma_map/lib/gen/jma_map.pbjson.dart @@ -0,0 +1,109 @@ +// +// Generated code. Do not modify. +// source: jma_map.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:convert' as $convert; +import 'dart:core' as $core; +import 'dart:typed_data' as $typed_data; + +@$core.Deprecated('Use jmaMapDescriptor instead') +const JmaMap$json = { + '1': 'JmaMap', + '2': [ + {'1': 'data', '3': 1, '4': 3, '5': 11, '6': '.net.yumnumm.eqmonitor.jma_map.JmaMap.JmaMapData', '10': 'data'}, + ], + '3': [JmaMap_JmaMapData$json], +}; + +@$core.Deprecated('Use jmaMapDescriptor instead') +const JmaMap_JmaMapData$json = { + '1': 'JmaMapData', + '2': [ + {'1': 'mapType', '3': 1, '4': 1, '5': 14, '6': '.net.yumnumm.eqmonitor.jma_map.JmaMap.JmaMapData.JmaMapType', '10': 'mapType'}, + {'1': 'data', '3': 2, '4': 3, '5': 11, '6': '.net.yumnumm.eqmonitor.jma_map.JmaMap.JmaMapData.JmaMapDataItem', '10': 'data'}, + ], + '3': [JmaMap_JmaMapData_JmaMapDataItem$json], + '4': [JmaMap_JmaMapData_JmaMapType$json], +}; + +@$core.Deprecated('Use jmaMapDescriptor instead') +const JmaMap_JmaMapData_JmaMapDataItem$json = { + '1': 'JmaMapDataItem', + '2': [ + {'1': 'bounds', '3': 1, '4': 1, '5': 11, '6': '.net.yumnumm.eqmonitor.jma_map.LatLngBounds', '10': 'bounds'}, + {'1': 'property', '3': 2, '4': 1, '5': 11, '6': '.net.yumnumm.eqmonitor.jma_map.JmaMap.JmaMapData.JmaMapDataItem.Property', '10': 'property'}, + ], + '3': [JmaMap_JmaMapData_JmaMapDataItem_Property$json], +}; + +@$core.Deprecated('Use jmaMapDescriptor instead') +const JmaMap_JmaMapData_JmaMapDataItem_Property$json = { + '1': 'Property', + '2': [ + {'1': 'code', '3': 1, '4': 1, '5': 9, '10': 'code'}, + {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'}, + {'1': 'nameKana', '3': 3, '4': 1, '5': 9, '10': 'nameKana'}, + ], +}; + +@$core.Deprecated('Use jmaMapDescriptor instead') +const JmaMap_JmaMapData_JmaMapType$json = { + '1': 'JmaMapType', + '2': [ + {'1': 'AREA_FORECAST_LOCAL_EEW', '2': 0}, + {'1': 'AREA_FORECAST_LOCAL_E', '2': 1}, + {'1': 'AREA_INFORMATION_CITY', '2': 2}, + {'1': 'AREA_TSUNAMI', '2': 3}, + ], +}; + +/// Descriptor for `JmaMap`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List jmaMapDescriptor = $convert.base64Decode( + 'CgZKbWFNYXASRAoEZGF0YRgBIAMoCzIwLm5ldC55dW1udW1tLmVxbW9uaXRvci5qbWFfbWFwLk' + 'ptYU1hcC5KbWFNYXBEYXRhUgRkYXRhGrkECgpKbWFNYXBEYXRhElUKB21hcFR5cGUYASABKA4y' + 'Oy5uZXQueXVtbnVtbS5lcW1vbml0b3Iuam1hX21hcC5KbWFNYXAuSm1hTWFwRGF0YS5KbWFNYX' + 'BUeXBlUgdtYXBUeXBlElMKBGRhdGEYAiADKAsyPy5uZXQueXVtbnVtbS5lcW1vbml0b3Iuam1h' + 'X21hcC5KbWFNYXAuSm1hTWFwRGF0YS5KbWFNYXBEYXRhSXRlbVIEZGF0YRqLAgoOSm1hTWFwRG' + 'F0YUl0ZW0SQwoGYm91bmRzGAEgASgLMisubmV0Lnl1bW51bW0uZXFtb25pdG9yLmptYV9tYXAu' + 'TGF0TG5nQm91bmRzUgZib3VuZHMSZAoIcHJvcGVydHkYAiABKAsySC5uZXQueXVtbnVtbS5lcW' + '1vbml0b3Iuam1hX21hcC5KbWFNYXAuSm1hTWFwRGF0YS5KbWFNYXBEYXRhSXRlbS5Qcm9wZXJ0' + 'eVIIcHJvcGVydHkaTgoIUHJvcGVydHkSEgoEY29kZRgBIAEoCVIEY29kZRISCgRuYW1lGAIgAS' + 'gJUgRuYW1lEhoKCG5hbWVLYW5hGAMgASgJUghuYW1lS2FuYSJxCgpKbWFNYXBUeXBlEhsKF0FS' + 'RUFfRk9SRUNBU1RfTE9DQUxfRUVXEAASGQoVQVJFQV9GT1JFQ0FTVF9MT0NBTF9FEAESGQoVQV' + 'JFQV9JTkZPUk1BVElPTl9DSVRZEAISEAoMQVJFQV9UU1VOQU1JEAM='); + +@$core.Deprecated('Use latLngBoundsDescriptor instead') +const LatLngBounds$json = { + '1': 'LatLngBounds', + '2': [ + {'1': 'southWest', '3': 1, '4': 1, '5': 11, '6': '.net.yumnumm.eqmonitor.jma_map.LatLng', '10': 'southWest'}, + {'1': 'northEast', '3': 2, '4': 1, '5': 11, '6': '.net.yumnumm.eqmonitor.jma_map.LatLng', '10': 'northEast'}, + ], +}; + +/// Descriptor for `LatLngBounds`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List latLngBoundsDescriptor = $convert.base64Decode( + 'CgxMYXRMbmdCb3VuZHMSQwoJc291dGhXZXN0GAEgASgLMiUubmV0Lnl1bW51bW0uZXFtb25pdG' + '9yLmptYV9tYXAuTGF0TG5nUglzb3V0aFdlc3QSQwoJbm9ydGhFYXN0GAIgASgLMiUubmV0Lnl1' + 'bW51bW0uZXFtb25pdG9yLmptYV9tYXAuTGF0TG5nUglub3J0aEVhc3Q='); + +@$core.Deprecated('Use latLngDescriptor instead') +const LatLng$json = { + '1': 'LatLng', + '2': [ + {'1': 'lat', '3': 1, '4': 1, '5': 1, '10': 'lat'}, + {'1': 'lng', '3': 2, '4': 1, '5': 1, '10': 'lng'}, + ], +}; + +/// Descriptor for `LatLng`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List latLngDescriptor = $convert.base64Decode( + 'CgZMYXRMbmcSEAoDbGF0GAEgASgBUgNsYXQSEAoDbG5nGAIgASgBUgNsbmc='); + diff --git a/packages/jma_map/lib/jma_map.dart b/packages/jma_map/lib/jma_map.dart new file mode 100644 index 000000000..af1a27593 --- /dev/null +++ b/packages/jma_map/lib/jma_map.dart @@ -0,0 +1,3 @@ +export 'gen/jma_map.pb.dart'; +export 'gen/jma_map.pbenum.dart'; +export 'gen/jma_map.pbjson.dart'; diff --git a/packages/jma_map/out.pb b/packages/jma_map/out.pb new file mode 100644 index 000000000..6f38beed0 Binary files /dev/null and b/packages/jma_map/out.pb differ diff --git a/packages/jma_map/proto/jma_map.proto b/packages/jma_map/proto/jma_map.proto new file mode 100644 index 000000000..172499760 --- /dev/null +++ b/packages/jma_map/proto/jma_map.proto @@ -0,0 +1,48 @@ +syntax = "proto3"; + +package net.yumnumm.eqmonitor.jma_map; + + +message JmaMap { + repeated JmaMapData data = 1; + + message JmaMapData + { + JmaMapType mapType = 1; + + enum JmaMapType + { + AREA_FORECAST_LOCAL_EEW = 0; + AREA_FORECAST_LOCAL_E = 1; + AREA_INFORMATION_CITY = 2; + AREA_TSUNAMI = 3; + } + + repeated JmaMapDataItem data = 2; + + message JmaMapDataItem { + LatLngBounds bounds = 1; + Property property = 2; + + + message Property + { + string code = 1; + string name = 2; + string nameKana = 3; + } + } + } +} + + +message LatLngBounds { + LatLng southWest = 1; + LatLng northEast = 2; +} + +message LatLng +{ + double lat = 1; + double lng = 2; +} \ No newline at end of file diff --git a/packages/jma_map/pubspec.yaml b/packages/jma_map/pubspec.yaml new file mode 100644 index 000000000..c081e2cde --- /dev/null +++ b/packages/jma_map/pubspec.yaml @@ -0,0 +1,10 @@ +name: jma_map +description: A starting point for Dart libraries or applications. +version: 1.0.0 +publish_to: "none" # Remove this line if you wish to publish to pub.dev + +environment: + sdk: ^3.2.0 + +dependencies: + protobuf: ^3.1.0 diff --git a/packages/jma_map/util/update_proto.sh b/packages/jma_map/util/update_proto.sh new file mode 100755 index 000000000..5f47a9288 --- /dev/null +++ b/packages/jma_map/util/update_proto.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +# ensure protoc-gen-dart is in path +if ! type -P protoc-gen-dart &>/dev/null; then + echo "protoc-gen-dart not found in PATH" + exit 1 +fi + +mkdir -p lib/gen + +protoc \ + --dart_out="grpc:lib/gen" \ + -I="./proto" \ + $(find . -iname "*.proto") \ No newline at end of file diff --git a/packages/topo_map/.gitignore b/packages/jma_parameter_api_client/.gitignore similarity index 100% rename from packages/topo_map/.gitignore rename to packages/jma_parameter_api_client/.gitignore diff --git a/packages/jma_parameter_api_client/CHANGELOG.md b/packages/jma_parameter_api_client/CHANGELOG.md new file mode 100644 index 000000000..effe43c82 --- /dev/null +++ b/packages/jma_parameter_api_client/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +- Initial version. diff --git a/packages/eq_map/README.md b/packages/jma_parameter_api_client/README.md similarity index 100% rename from packages/eq_map/README.md rename to packages/jma_parameter_api_client/README.md diff --git a/packages/topojson/build.yaml b/packages/jma_parameter_api_client/build.yaml similarity index 100% rename from packages/topojson/build.yaml rename to packages/jma_parameter_api_client/build.yaml diff --git a/packages/jma_parameter_api_client/lib/jma_parameter_api_client.dart b/packages/jma_parameter_api_client/lib/jma_parameter_api_client.dart new file mode 100644 index 000000000..3a25c55ec --- /dev/null +++ b/packages/jma_parameter_api_client/lib/jma_parameter_api_client.dart @@ -0,0 +1,72 @@ +// ignore_for_file: unused_element + +import 'package:dio/dio.dart'; +import 'package:jma_parameter_types/earthquake_param.pb.dart'; +import 'package:jma_parameter_types/tsunami_param.pb.dart'; +import 'package:retrofit/retrofit.dart'; + +export 'package:jma_parameter_types/earthquake_param.pb.dart'; +export 'package:jma_parameter_types/tsunami_param.pb.dart'; + +part 'jma_parameter_api_client.g.dart'; + +class JmaParameterApiClient { + JmaParameterApiClient({required Dio client}) + : _client = _JmaParameterApiClient(client); + + final _JmaParameterApiClient _client; + + Future< + ({ + EarthquakeParameter parameter, + String? etag, + })> getEarthquakeParameter() async { + final res = await _client.getEarthquakeParameter(); + return ( + parameter: EarthquakeParameter.fromBuffer(res.data), + etag: res.response.headers.value('etag'), + ); + } + + Future getEarthquakeParameterHead() async { + final response = await _client.getEarthquakeParameterHead(); + return response.response.headers.value('etag'); + } + + Future< + ({ + TsunamiParameter parameter, + String? etag, + })> getTsunamiParameter() async { + final response = await _client.getTsunamiParameter(); + return ( + parameter: TsunamiParameter.fromBuffer(response.data), + etag: response.response.headers.value('etag'), + ); + } + + Future getTsunamiParameterHeadEtag() async { + final response = await _client.getTsunamiParameterHead(); + return response.response.headers.value('etag'); + } +} + +@RestApi() +abstract class _JmaParameterApiClient { + factory _JmaParameterApiClient(Dio dio, {String baseUrl}) = + __JmaParameterApiClient; + + @GET('/parameter/earthquake') + @DioResponseType(ResponseType.bytes) + Future>> getEarthquakeParameter(); + + @HEAD('/parameter/earthquake') + Future> getEarthquakeParameterHead(); + + @GET('/parameter/tsunami') + @DioResponseType(ResponseType.bytes) + Future>> getTsunamiParameter(); + + @HEAD('/parameter/tsunami') + Future> getTsunamiParameterHead(); +} diff --git a/packages/jma_parameter_api_client/lib/jma_parameter_api_client.g.dart b/packages/jma_parameter_api_client/lib/jma_parameter_api_client.g.dart new file mode 100644 index 000000000..89b8bec9a --- /dev/null +++ b/packages/jma_parameter_api_client/lib/jma_parameter_api_client.g.dart @@ -0,0 +1,164 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ignore_for_file: type=lint + +part of 'jma_parameter_api_client.dart'; + +// ************************************************************************** +// RetrofitGenerator +// ************************************************************************** + +// ignore_for_file: unnecessary_brace_in_string_interps,no_leading_underscores_for_local_identifiers + +class __JmaParameterApiClient implements _JmaParameterApiClient { + __JmaParameterApiClient( + this._dio, { + this.baseUrl, + }); + + final Dio _dio; + + String? baseUrl; + + @override + Future>> getEarthquakeParameter() async { + const _extra = {}; + final queryParameters = {}; + final _headers = {}; + final Map? _data = null; + final _result = await _dio + .fetch>(_setStreamType>>(Options( + method: 'GET', + headers: _headers, + extra: _extra, + responseType: ResponseType.bytes, + ) + .compose( + _dio.options, + '/parameter/earthquake', + queryParameters: queryParameters, + data: _data, + ) + .copyWith( + baseUrl: _combineBaseUrls( + _dio.options.baseUrl, + baseUrl, + )))); + final value = _result.data!.cast(); + final httpResponse = HttpResponse(value, _result); + return httpResponse; + } + + @override + Future> getEarthquakeParameterHead() async { + const _extra = {}; + final queryParameters = {}; + final _headers = {}; + final Map? _data = null; + final _result = + await _dio.fetch(_setStreamType>(Options( + method: 'HEAD', + headers: _headers, + extra: _extra, + ) + .compose( + _dio.options, + '/parameter/earthquake', + queryParameters: queryParameters, + data: _data, + ) + .copyWith( + baseUrl: _combineBaseUrls( + _dio.options.baseUrl, + baseUrl, + )))); + final httpResponse = HttpResponse(null, _result); + return httpResponse; + } + + @override + Future>> getTsunamiParameter() async { + const _extra = {}; + final queryParameters = {}; + final _headers = {}; + final Map? _data = null; + final _result = await _dio + .fetch>(_setStreamType>>(Options( + method: 'GET', + headers: _headers, + extra: _extra, + responseType: ResponseType.bytes, + ) + .compose( + _dio.options, + '/parameter/tsunami', + queryParameters: queryParameters, + data: _data, + ) + .copyWith( + baseUrl: _combineBaseUrls( + _dio.options.baseUrl, + baseUrl, + )))); + final value = _result.data!.cast(); + final httpResponse = HttpResponse(value, _result); + return httpResponse; + } + + @override + Future> getTsunamiParameterHead() async { + const _extra = {}; + final queryParameters = {}; + final _headers = {}; + final Map? _data = null; + final _result = + await _dio.fetch(_setStreamType>(Options( + method: 'HEAD', + headers: _headers, + extra: _extra, + ) + .compose( + _dio.options, + '/parameter/tsunami', + queryParameters: queryParameters, + data: _data, + ) + .copyWith( + baseUrl: _combineBaseUrls( + _dio.options.baseUrl, + baseUrl, + )))); + final httpResponse = HttpResponse(null, _result); + return httpResponse; + } + + RequestOptions _setStreamType(RequestOptions requestOptions) { + if (T != dynamic && + !(requestOptions.responseType == ResponseType.bytes || + requestOptions.responseType == ResponseType.stream)) { + if (T == String) { + requestOptions.responseType = ResponseType.plain; + } else { + requestOptions.responseType = ResponseType.json; + } + } + return requestOptions; + } + + String _combineBaseUrls( + String dioBaseUrl, + String? baseUrl, + ) { + if (baseUrl == null || baseUrl.trim().isEmpty) { + return dioBaseUrl; + } + + final url = Uri.parse(baseUrl); + + if (url.isAbsolute) { + return url.toString(); + } + + return Uri.parse(dioBaseUrl).resolveUri(url).toString(); + } +} diff --git a/packages/jma_parameter_api_client/pubspec.yaml b/packages/jma_parameter_api_client/pubspec.yaml new file mode 100644 index 000000000..deb26fb1a --- /dev/null +++ b/packages/jma_parameter_api_client/pubspec.yaml @@ -0,0 +1,21 @@ +name: jma_parameter_api_client +description: A starting point for Dart libraries or applications. +version: 1.0.0 +publish_to: "none" # Remove this line if you wish to publish to pub.dev + +environment: + sdk: ^3.2.0 + +# Add regular dependencies here. +dependencies: + dio: ^5.3.4 + jma_parameter_types: + git: + url: /~https://github.com/YumNumm/EQMonitor.git + path: packages/jma_parameter_types + retrofit: ^4.0.3 + +dev_dependencies: + build_runner: ^2.4.7 + pedantic_mono: ^1.25.0 + retrofit_generator: ^8.0.4 diff --git a/packages/jma_parameter_api_client/pubspec_overrides.yaml b/packages/jma_parameter_api_client/pubspec_overrides.yaml new file mode 100644 index 000000000..4347aa9d7 --- /dev/null +++ b/packages/jma_parameter_api_client/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: jma_parameter_types +dependency_overrides: + jma_parameter_types: + path: ../jma_parameter_types diff --git a/packages/jma_parameter_converter_internal/.gitignore b/packages/jma_parameter_converter_internal/.gitignore new file mode 100644 index 000000000..4a5c7d1b6 --- /dev/null +++ b/packages/jma_parameter_converter_internal/.gitignore @@ -0,0 +1,6 @@ +# https://dart.dev/guides/libraries/private-files +# Created by `dart pub` +.dart_tool/ + +parameter/ +*_parameter* diff --git a/packages/jma_parameter_converter_internal/CHANGELOG.md b/packages/jma_parameter_converter_internal/CHANGELOG.md new file mode 100644 index 000000000..effe43c82 --- /dev/null +++ b/packages/jma_parameter_converter_internal/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +- Initial version. diff --git a/packages/jma_parameter_converter_internal/README.md b/packages/jma_parameter_converter_internal/README.md new file mode 100644 index 000000000..3816eca3a --- /dev/null +++ b/packages/jma_parameter_converter_internal/README.md @@ -0,0 +1,2 @@ +A sample command-line application with an entrypoint in `bin/`, library code +in `lib/`, and example unit test in `test/`. diff --git a/packages/eqapi_client/analysis_options.yaml b/packages/jma_parameter_converter_internal/analysis_options.yaml similarity index 99% rename from packages/eqapi_client/analysis_options.yaml rename to packages/jma_parameter_converter_internal/analysis_options.yaml index dee8927aa..f27466482 100644 --- a/packages/eqapi_client/analysis_options.yaml +++ b/packages/jma_parameter_converter_internal/analysis_options.yaml @@ -12,7 +12,6 @@ # The core lints are also what is used by pub.dev for scoring packages. include: package:lints/recommended.yaml - # Uncomment the following section to specify additional rules. # linter: diff --git a/packages/jma_parameter_converter_internal/lib/converter/earthquake.dart b/packages/jma_parameter_converter_internal/lib/converter/earthquake.dart new file mode 100644 index 000000000..73fac559c --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/converter/earthquake.dart @@ -0,0 +1,47 @@ +import 'package:collection/collection.dart'; +import 'package:jma_parameter_types/earthquake_param.pb.dart'; + +import '../dmdata/earthquake.dart' as dmdata; + +EarthquakeParameter fromDmdataEarthquakeParameter( + dmdata.EarthquakeParameter parameter) { + final itemsGroupByRegion = parameter.items.groupListsBy( + (e) => e.region, + ); + final itemsGroupByRegionAndCity = itemsGroupByRegion.map( + (key, value) => MapEntry( + key, + value.groupListsBy( + (e) => e.city, + ), + ), + ); + return EarthquakeParameter( + regions: itemsGroupByRegionAndCity.entries + .map( + (e) => EarthquakeParameterRegionItem( + code: e.key.code, + name: e.key.name, + cities: e.value.entries + .map( + (e) => EarthquakeParameterCityItem( + code: e.key.code, + name: e.key.name, + stations: e.value + .map( + (e) => EarthquakeParameterStationItem( + code: e.code, + name: e.name, + latitude: e.latitude, + longitude: e.longitude, + ), + ) + .toList(), + ), + ) + .toList(), + ), + ) + .toList(), + ); +} diff --git a/packages/jma_parameter_converter_internal/lib/converter/tsunami.dart b/packages/jma_parameter_converter_internal/lib/converter/tsunami.dart new file mode 100644 index 000000000..fe13ef799 --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/converter/tsunami.dart @@ -0,0 +1,16 @@ +import 'package:jma_parameter_types/tsunami_param.pb.dart'; + +import '../dmdata/tsunami.dart' as dmdata; + +TsunamiParameter fromDmdataTsunamiParameter(dmdata.TsunamiParameter parameter) { + return TsunamiParameter( + items: parameter.items.map( + (e) => TsunamiParameterItem( + prefecture: e.prefecture, + code: e.code, + latitude: e.latitude, + longitude: e.longitude, + ), + ), + ); +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/common.dart b/packages/jma_parameter_converter_internal/lib/dmdata/common.dart new file mode 100644 index 000000000..51ffb08b4 --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/common.dart @@ -0,0 +1,28 @@ +import 'package:freezed_annotation/freezed_annotation.dart'; + +part 'common.freezed.dart'; +part 'common.g.dart'; + +@freezed +class ParameterRegion with _$ParameterRegion { + const factory ParameterRegion({ + required String code, + required String name, + required String kana, + }) = _ParameterRegion; + + factory ParameterRegion.fromJson(Map json) => + _$ParameterRegionFromJson(json); +} + +@freezed +class ParameterCity with _$ParameterCity { + const factory ParameterCity({ + required String code, + required String name, + required String kana, + }) = _ParameterCity; + + factory ParameterCity.fromJson(Map json) => + _$ParameterCityFromJson(json); +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/common.freezed.dart b/packages/jma_parameter_converter_internal/lib/dmdata/common.freezed.dart new file mode 100644 index 000000000..99b233e2f --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/common.freezed.dart @@ -0,0 +1,360 @@ +// coverage:ignore-file +// GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint +// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark + +part of 'common.dart'; + +// ************************************************************************** +// FreezedGenerator +// ************************************************************************** + +T _$identity(T value) => value; + +final _privateConstructorUsedError = UnsupportedError( + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + +ParameterRegion _$ParameterRegionFromJson(Map json) { + return _ParameterRegion.fromJson(json); +} + +/// @nodoc +mixin _$ParameterRegion { + String get code => throw _privateConstructorUsedError; + String get name => throw _privateConstructorUsedError; + String get kana => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $ParameterRegionCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $ParameterRegionCopyWith<$Res> { + factory $ParameterRegionCopyWith( + ParameterRegion value, $Res Function(ParameterRegion) then) = + _$ParameterRegionCopyWithImpl<$Res, ParameterRegion>; + @useResult + $Res call({String code, String name, String kana}); +} + +/// @nodoc +class _$ParameterRegionCopyWithImpl<$Res, $Val extends ParameterRegion> + implements $ParameterRegionCopyWith<$Res> { + _$ParameterRegionCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? code = null, + Object? name = null, + Object? kana = null, + }) { + return _then(_value.copyWith( + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$ParameterRegionImplCopyWith<$Res> + implements $ParameterRegionCopyWith<$Res> { + factory _$$ParameterRegionImplCopyWith(_$ParameterRegionImpl value, + $Res Function(_$ParameterRegionImpl) then) = + __$$ParameterRegionImplCopyWithImpl<$Res>; + @override + @useResult + $Res call({String code, String name, String kana}); +} + +/// @nodoc +class __$$ParameterRegionImplCopyWithImpl<$Res> + extends _$ParameterRegionCopyWithImpl<$Res, _$ParameterRegionImpl> + implements _$$ParameterRegionImplCopyWith<$Res> { + __$$ParameterRegionImplCopyWithImpl( + _$ParameterRegionImpl _value, $Res Function(_$ParameterRegionImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? code = null, + Object? name = null, + Object? kana = null, + }) { + return _then(_$ParameterRegionImpl( + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$ParameterRegionImpl implements _ParameterRegion { + const _$ParameterRegionImpl( + {required this.code, required this.name, required this.kana}); + + factory _$ParameterRegionImpl.fromJson(Map json) => + _$$ParameterRegionImplFromJson(json); + + @override + final String code; + @override + final String name; + @override + final String kana; + + @override + String toString() { + return 'ParameterRegion(code: $code, name: $name, kana: $kana)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$ParameterRegionImpl && + (identical(other.code, code) || other.code == code) && + (identical(other.name, name) || other.name == name) && + (identical(other.kana, kana) || other.kana == kana)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, code, name, kana); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$ParameterRegionImplCopyWith<_$ParameterRegionImpl> get copyWith => + __$$ParameterRegionImplCopyWithImpl<_$ParameterRegionImpl>( + this, _$identity); + + @override + Map toJson() { + return _$$ParameterRegionImplToJson( + this, + ); + } +} + +abstract class _ParameterRegion implements ParameterRegion { + const factory _ParameterRegion( + {required final String code, + required final String name, + required final String kana}) = _$ParameterRegionImpl; + + factory _ParameterRegion.fromJson(Map json) = + _$ParameterRegionImpl.fromJson; + + @override + String get code; + @override + String get name; + @override + String get kana; + @override + @JsonKey(ignore: true) + _$$ParameterRegionImplCopyWith<_$ParameterRegionImpl> get copyWith => + throw _privateConstructorUsedError; +} + +ParameterCity _$ParameterCityFromJson(Map json) { + return _ParameterCity.fromJson(json); +} + +/// @nodoc +mixin _$ParameterCity { + String get code => throw _privateConstructorUsedError; + String get name => throw _privateConstructorUsedError; + String get kana => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $ParameterCityCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $ParameterCityCopyWith<$Res> { + factory $ParameterCityCopyWith( + ParameterCity value, $Res Function(ParameterCity) then) = + _$ParameterCityCopyWithImpl<$Res, ParameterCity>; + @useResult + $Res call({String code, String name, String kana}); +} + +/// @nodoc +class _$ParameterCityCopyWithImpl<$Res, $Val extends ParameterCity> + implements $ParameterCityCopyWith<$Res> { + _$ParameterCityCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? code = null, + Object? name = null, + Object? kana = null, + }) { + return _then(_value.copyWith( + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$ParameterCityImplCopyWith<$Res> + implements $ParameterCityCopyWith<$Res> { + factory _$$ParameterCityImplCopyWith( + _$ParameterCityImpl value, $Res Function(_$ParameterCityImpl) then) = + __$$ParameterCityImplCopyWithImpl<$Res>; + @override + @useResult + $Res call({String code, String name, String kana}); +} + +/// @nodoc +class __$$ParameterCityImplCopyWithImpl<$Res> + extends _$ParameterCityCopyWithImpl<$Res, _$ParameterCityImpl> + implements _$$ParameterCityImplCopyWith<$Res> { + __$$ParameterCityImplCopyWithImpl( + _$ParameterCityImpl _value, $Res Function(_$ParameterCityImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? code = null, + Object? name = null, + Object? kana = null, + }) { + return _then(_$ParameterCityImpl( + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$ParameterCityImpl implements _ParameterCity { + const _$ParameterCityImpl( + {required this.code, required this.name, required this.kana}); + + factory _$ParameterCityImpl.fromJson(Map json) => + _$$ParameterCityImplFromJson(json); + + @override + final String code; + @override + final String name; + @override + final String kana; + + @override + String toString() { + return 'ParameterCity(code: $code, name: $name, kana: $kana)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$ParameterCityImpl && + (identical(other.code, code) || other.code == code) && + (identical(other.name, name) || other.name == name) && + (identical(other.kana, kana) || other.kana == kana)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, code, name, kana); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$ParameterCityImplCopyWith<_$ParameterCityImpl> get copyWith => + __$$ParameterCityImplCopyWithImpl<_$ParameterCityImpl>(this, _$identity); + + @override + Map toJson() { + return _$$ParameterCityImplToJson( + this, + ); + } +} + +abstract class _ParameterCity implements ParameterCity { + const factory _ParameterCity( + {required final String code, + required final String name, + required final String kana}) = _$ParameterCityImpl; + + factory _ParameterCity.fromJson(Map json) = + _$ParameterCityImpl.fromJson; + + @override + String get code; + @override + String get name; + @override + String get kana; + @override + @JsonKey(ignore: true) + _$$ParameterCityImplCopyWith<_$ParameterCityImpl> get copyWith => + throw _privateConstructorUsedError; +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/common.g.dart b/packages/jma_parameter_converter_internal/lib/dmdata/common.g.dart new file mode 100644 index 000000000..9a955442f --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/common.g.dart @@ -0,0 +1,37 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +part of 'common.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +_$ParameterRegionImpl _$$ParameterRegionImplFromJson( + Map json) => + _$ParameterRegionImpl( + code: json['code'] as String, + name: json['name'] as String, + kana: json['kana'] as String, + ); + +Map _$$ParameterRegionImplToJson( + _$ParameterRegionImpl instance) => + { + 'code': instance.code, + 'name': instance.name, + 'kana': instance.kana, + }; + +_$ParameterCityImpl _$$ParameterCityImplFromJson(Map json) => + _$ParameterCityImpl( + code: json['code'] as String, + name: json['name'] as String, + kana: json['kana'] as String, + ); + +Map _$$ParameterCityImplToJson(_$ParameterCityImpl instance) => + { + 'code': instance.code, + 'name': instance.name, + 'kana': instance.kana, + }; diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/converter.dart b/packages/jma_parameter_converter_internal/lib/dmdata/converter.dart new file mode 100644 index 000000000..e317a6de4 --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/converter.dart @@ -0,0 +1,3 @@ +double doubleFromString(String value) => double.parse(value); + +String doubleToString(double value) => value.toString(); diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.dart b/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.dart new file mode 100644 index 000000000..2d4be216d --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.dart @@ -0,0 +1,45 @@ +// ignore_for_file: invalid_annotation_target + +import 'package:freezed_annotation/freezed_annotation.dart'; +import 'package:jma_parameter_converter_internal/dmdata/common.dart'; +import 'package:jma_parameter_converter_internal/dmdata/converter.dart'; + +part 'earthquake.freezed.dart'; +part 'earthquake.g.dart'; + +/// Parameter Earthquake station v2 +@freezed +class EarthquakeParameter with _$EarthquakeParameter { + const factory EarthquakeParameter({ + required String responseId, + required DateTime responseTime, + required String status, + required DateTime changeTime, + required String version, + required List items, + }) = _EarthquakeParameter; + + factory EarthquakeParameter.fromJson(Map json) => + _$EarthquakeParameterFromJson(json); +} + +@freezed +class EarthquakeParmaeterItem with _$EarthquakeParmaeterItem { + const factory EarthquakeParmaeterItem({ + required ParameterRegion region, + required ParameterCity city, + required String noCode, + required String code, + required String name, + required String kana, + required String status, + required String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required double longitude, + }) = _EarthquakeParmaeterItem; + + factory EarthquakeParmaeterItem.fromJson(Map json) => + _$EarthquakeParmaeterItemFromJson(json); +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.freezed.dart b/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.freezed.dart new file mode 100644 index 000000000..d5a102973 --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.freezed.dart @@ -0,0 +1,634 @@ +// coverage:ignore-file +// GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint +// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark + +part of 'earthquake.dart'; + +// ************************************************************************** +// FreezedGenerator +// ************************************************************************** + +T _$identity(T value) => value; + +final _privateConstructorUsedError = UnsupportedError( + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + +EarthquakeParameter _$EarthquakeParameterFromJson(Map json) { + return _EarthquakeParameter.fromJson(json); +} + +/// @nodoc +mixin _$EarthquakeParameter { + String get responseId => throw _privateConstructorUsedError; + DateTime get responseTime => throw _privateConstructorUsedError; + String get status => throw _privateConstructorUsedError; + DateTime get changeTime => throw _privateConstructorUsedError; + String get version => throw _privateConstructorUsedError; + List get items => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $EarthquakeParameterCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $EarthquakeParameterCopyWith<$Res> { + factory $EarthquakeParameterCopyWith( + EarthquakeParameter value, $Res Function(EarthquakeParameter) then) = + _$EarthquakeParameterCopyWithImpl<$Res, EarthquakeParameter>; + @useResult + $Res call( + {String responseId, + DateTime responseTime, + String status, + DateTime changeTime, + String version, + List items}); +} + +/// @nodoc +class _$EarthquakeParameterCopyWithImpl<$Res, $Val extends EarthquakeParameter> + implements $EarthquakeParameterCopyWith<$Res> { + _$EarthquakeParameterCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? responseId = null, + Object? responseTime = null, + Object? status = null, + Object? changeTime = null, + Object? version = null, + Object? items = null, + }) { + return _then(_value.copyWith( + responseId: null == responseId + ? _value.responseId + : responseId // ignore: cast_nullable_to_non_nullable + as String, + responseTime: null == responseTime + ? _value.responseTime + : responseTime // ignore: cast_nullable_to_non_nullable + as DateTime, + status: null == status + ? _value.status + : status // ignore: cast_nullable_to_non_nullable + as String, + changeTime: null == changeTime + ? _value.changeTime + : changeTime // ignore: cast_nullable_to_non_nullable + as DateTime, + version: null == version + ? _value.version + : version // ignore: cast_nullable_to_non_nullable + as String, + items: null == items + ? _value.items + : items // ignore: cast_nullable_to_non_nullable + as List, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$EarthquakeParameterImplCopyWith<$Res> + implements $EarthquakeParameterCopyWith<$Res> { + factory _$$EarthquakeParameterImplCopyWith(_$EarthquakeParameterImpl value, + $Res Function(_$EarthquakeParameterImpl) then) = + __$$EarthquakeParameterImplCopyWithImpl<$Res>; + @override + @useResult + $Res call( + {String responseId, + DateTime responseTime, + String status, + DateTime changeTime, + String version, + List items}); +} + +/// @nodoc +class __$$EarthquakeParameterImplCopyWithImpl<$Res> + extends _$EarthquakeParameterCopyWithImpl<$Res, _$EarthquakeParameterImpl> + implements _$$EarthquakeParameterImplCopyWith<$Res> { + __$$EarthquakeParameterImplCopyWithImpl(_$EarthquakeParameterImpl _value, + $Res Function(_$EarthquakeParameterImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? responseId = null, + Object? responseTime = null, + Object? status = null, + Object? changeTime = null, + Object? version = null, + Object? items = null, + }) { + return _then(_$EarthquakeParameterImpl( + responseId: null == responseId + ? _value.responseId + : responseId // ignore: cast_nullable_to_non_nullable + as String, + responseTime: null == responseTime + ? _value.responseTime + : responseTime // ignore: cast_nullable_to_non_nullable + as DateTime, + status: null == status + ? _value.status + : status // ignore: cast_nullable_to_non_nullable + as String, + changeTime: null == changeTime + ? _value.changeTime + : changeTime // ignore: cast_nullable_to_non_nullable + as DateTime, + version: null == version + ? _value.version + : version // ignore: cast_nullable_to_non_nullable + as String, + items: null == items + ? _value._items + : items // ignore: cast_nullable_to_non_nullable + as List, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$EarthquakeParameterImpl implements _EarthquakeParameter { + const _$EarthquakeParameterImpl( + {required this.responseId, + required this.responseTime, + required this.status, + required this.changeTime, + required this.version, + required final List items}) + : _items = items; + + factory _$EarthquakeParameterImpl.fromJson(Map json) => + _$$EarthquakeParameterImplFromJson(json); + + @override + final String responseId; + @override + final DateTime responseTime; + @override + final String status; + @override + final DateTime changeTime; + @override + final String version; + final List _items; + @override + List get items { + if (_items is EqualUnmodifiableListView) return _items; + // ignore: implicit_dynamic_type + return EqualUnmodifiableListView(_items); + } + + @override + String toString() { + return 'EarthquakeParameter(responseId: $responseId, responseTime: $responseTime, status: $status, changeTime: $changeTime, version: $version, items: $items)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$EarthquakeParameterImpl && + (identical(other.responseId, responseId) || + other.responseId == responseId) && + (identical(other.responseTime, responseTime) || + other.responseTime == responseTime) && + (identical(other.status, status) || other.status == status) && + (identical(other.changeTime, changeTime) || + other.changeTime == changeTime) && + (identical(other.version, version) || other.version == version) && + const DeepCollectionEquality().equals(other._items, _items)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, responseId, responseTime, status, + changeTime, version, const DeepCollectionEquality().hash(_items)); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$EarthquakeParameterImplCopyWith<_$EarthquakeParameterImpl> get copyWith => + __$$EarthquakeParameterImplCopyWithImpl<_$EarthquakeParameterImpl>( + this, _$identity); + + @override + Map toJson() { + return _$$EarthquakeParameterImplToJson( + this, + ); + } +} + +abstract class _EarthquakeParameter implements EarthquakeParameter { + const factory _EarthquakeParameter( + {required final String responseId, + required final DateTime responseTime, + required final String status, + required final DateTime changeTime, + required final String version, + required final List items}) = + _$EarthquakeParameterImpl; + + factory _EarthquakeParameter.fromJson(Map json) = + _$EarthquakeParameterImpl.fromJson; + + @override + String get responseId; + @override + DateTime get responseTime; + @override + String get status; + @override + DateTime get changeTime; + @override + String get version; + @override + List get items; + @override + @JsonKey(ignore: true) + _$$EarthquakeParameterImplCopyWith<_$EarthquakeParameterImpl> get copyWith => + throw _privateConstructorUsedError; +} + +EarthquakeParmaeterItem _$EarthquakeParmaeterItemFromJson( + Map json) { + return _EarthquakeParmaeterItem.fromJson(json); +} + +/// @nodoc +mixin _$EarthquakeParmaeterItem { + ParameterRegion get region => throw _privateConstructorUsedError; + ParameterCity get city => throw _privateConstructorUsedError; + String get noCode => throw _privateConstructorUsedError; + String get code => throw _privateConstructorUsedError; + String get name => throw _privateConstructorUsedError; + String get kana => throw _privateConstructorUsedError; + String get status => throw _privateConstructorUsedError; + String get owner => throw _privateConstructorUsedError; + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get latitude => throw _privateConstructorUsedError; + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get longitude => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $EarthquakeParmaeterItemCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $EarthquakeParmaeterItemCopyWith<$Res> { + factory $EarthquakeParmaeterItemCopyWith(EarthquakeParmaeterItem value, + $Res Function(EarthquakeParmaeterItem) then) = + _$EarthquakeParmaeterItemCopyWithImpl<$Res, EarthquakeParmaeterItem>; + @useResult + $Res call( + {ParameterRegion region, + ParameterCity city, + String noCode, + String code, + String name, + String kana, + String status, + String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double longitude}); + + $ParameterRegionCopyWith<$Res> get region; + $ParameterCityCopyWith<$Res> get city; +} + +/// @nodoc +class _$EarthquakeParmaeterItemCopyWithImpl<$Res, + $Val extends EarthquakeParmaeterItem> + implements $EarthquakeParmaeterItemCopyWith<$Res> { + _$EarthquakeParmaeterItemCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? region = null, + Object? city = null, + Object? noCode = null, + Object? code = null, + Object? name = null, + Object? kana = null, + Object? status = null, + Object? owner = null, + Object? latitude = null, + Object? longitude = null, + }) { + return _then(_value.copyWith( + region: null == region + ? _value.region + : region // ignore: cast_nullable_to_non_nullable + as ParameterRegion, + city: null == city + ? _value.city + : city // ignore: cast_nullable_to_non_nullable + as ParameterCity, + noCode: null == noCode + ? _value.noCode + : noCode // ignore: cast_nullable_to_non_nullable + as String, + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + status: null == status + ? _value.status + : status // ignore: cast_nullable_to_non_nullable + as String, + owner: null == owner + ? _value.owner + : owner // ignore: cast_nullable_to_non_nullable + as String, + latitude: null == latitude + ? _value.latitude + : latitude // ignore: cast_nullable_to_non_nullable + as double, + longitude: null == longitude + ? _value.longitude + : longitude // ignore: cast_nullable_to_non_nullable + as double, + ) as $Val); + } + + @override + @pragma('vm:prefer-inline') + $ParameterRegionCopyWith<$Res> get region { + return $ParameterRegionCopyWith<$Res>(_value.region, (value) { + return _then(_value.copyWith(region: value) as $Val); + }); + } + + @override + @pragma('vm:prefer-inline') + $ParameterCityCopyWith<$Res> get city { + return $ParameterCityCopyWith<$Res>(_value.city, (value) { + return _then(_value.copyWith(city: value) as $Val); + }); + } +} + +/// @nodoc +abstract class _$$EarthquakeParmaeterItemImplCopyWith<$Res> + implements $EarthquakeParmaeterItemCopyWith<$Res> { + factory _$$EarthquakeParmaeterItemImplCopyWith( + _$EarthquakeParmaeterItemImpl value, + $Res Function(_$EarthquakeParmaeterItemImpl) then) = + __$$EarthquakeParmaeterItemImplCopyWithImpl<$Res>; + @override + @useResult + $Res call( + {ParameterRegion region, + ParameterCity city, + String noCode, + String code, + String name, + String kana, + String status, + String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double longitude}); + + @override + $ParameterRegionCopyWith<$Res> get region; + @override + $ParameterCityCopyWith<$Res> get city; +} + +/// @nodoc +class __$$EarthquakeParmaeterItemImplCopyWithImpl<$Res> + extends _$EarthquakeParmaeterItemCopyWithImpl<$Res, + _$EarthquakeParmaeterItemImpl> + implements _$$EarthquakeParmaeterItemImplCopyWith<$Res> { + __$$EarthquakeParmaeterItemImplCopyWithImpl( + _$EarthquakeParmaeterItemImpl _value, + $Res Function(_$EarthquakeParmaeterItemImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? region = null, + Object? city = null, + Object? noCode = null, + Object? code = null, + Object? name = null, + Object? kana = null, + Object? status = null, + Object? owner = null, + Object? latitude = null, + Object? longitude = null, + }) { + return _then(_$EarthquakeParmaeterItemImpl( + region: null == region + ? _value.region + : region // ignore: cast_nullable_to_non_nullable + as ParameterRegion, + city: null == city + ? _value.city + : city // ignore: cast_nullable_to_non_nullable + as ParameterCity, + noCode: null == noCode + ? _value.noCode + : noCode // ignore: cast_nullable_to_non_nullable + as String, + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + status: null == status + ? _value.status + : status // ignore: cast_nullable_to_non_nullable + as String, + owner: null == owner + ? _value.owner + : owner // ignore: cast_nullable_to_non_nullable + as String, + latitude: null == latitude + ? _value.latitude + : latitude // ignore: cast_nullable_to_non_nullable + as double, + longitude: null == longitude + ? _value.longitude + : longitude // ignore: cast_nullable_to_non_nullable + as double, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$EarthquakeParmaeterItemImpl implements _EarthquakeParmaeterItem { + const _$EarthquakeParmaeterItemImpl( + {required this.region, + required this.city, + required this.noCode, + required this.code, + required this.name, + required this.kana, + required this.status, + required this.owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required this.latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required this.longitude}); + + factory _$EarthquakeParmaeterItemImpl.fromJson(Map json) => + _$$EarthquakeParmaeterItemImplFromJson(json); + + @override + final ParameterRegion region; + @override + final ParameterCity city; + @override + final String noCode; + @override + final String code; + @override + final String name; + @override + final String kana; + @override + final String status; + @override + final String owner; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + final double latitude; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + final double longitude; + + @override + String toString() { + return 'EarthquakeParmaeterItem(region: $region, city: $city, noCode: $noCode, code: $code, name: $name, kana: $kana, status: $status, owner: $owner, latitude: $latitude, longitude: $longitude)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$EarthquakeParmaeterItemImpl && + (identical(other.region, region) || other.region == region) && + (identical(other.city, city) || other.city == city) && + (identical(other.noCode, noCode) || other.noCode == noCode) && + (identical(other.code, code) || other.code == code) && + (identical(other.name, name) || other.name == name) && + (identical(other.kana, kana) || other.kana == kana) && + (identical(other.status, status) || other.status == status) && + (identical(other.owner, owner) || other.owner == owner) && + (identical(other.latitude, latitude) || + other.latitude == latitude) && + (identical(other.longitude, longitude) || + other.longitude == longitude)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, region, city, noCode, code, name, + kana, status, owner, latitude, longitude); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$EarthquakeParmaeterItemImplCopyWith<_$EarthquakeParmaeterItemImpl> + get copyWith => __$$EarthquakeParmaeterItemImplCopyWithImpl< + _$EarthquakeParmaeterItemImpl>(this, _$identity); + + @override + Map toJson() { + return _$$EarthquakeParmaeterItemImplToJson( + this, + ); + } +} + +abstract class _EarthquakeParmaeterItem implements EarthquakeParmaeterItem { + const factory _EarthquakeParmaeterItem( + {required final ParameterRegion region, + required final ParameterCity city, + required final String noCode, + required final String code, + required final String name, + required final String kana, + required final String status, + required final String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required final double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required final double longitude}) = _$EarthquakeParmaeterItemImpl; + + factory _EarthquakeParmaeterItem.fromJson(Map json) = + _$EarthquakeParmaeterItemImpl.fromJson; + + @override + ParameterRegion get region; + @override + ParameterCity get city; + @override + String get noCode; + @override + String get code; + @override + String get name; + @override + String get kana; + @override + String get status; + @override + String get owner; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get latitude; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get longitude; + @override + @JsonKey(ignore: true) + _$$EarthquakeParmaeterItemImplCopyWith<_$EarthquakeParmaeterItemImpl> + get copyWith => throw _privateConstructorUsedError; +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.g.dart b/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.g.dart new file mode 100644 index 000000000..9c1a52f99 --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/earthquake.g.dart @@ -0,0 +1,62 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +part of 'earthquake.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +_$EarthquakeParameterImpl _$$EarthquakeParameterImplFromJson( + Map json) => + _$EarthquakeParameterImpl( + responseId: json['responseId'] as String, + responseTime: DateTime.parse(json['responseTime'] as String), + status: json['status'] as String, + changeTime: DateTime.parse(json['changeTime'] as String), + version: json['version'] as String, + items: (json['items'] as List) + .map((e) => + EarthquakeParmaeterItem.fromJson(e as Map)) + .toList(), + ); + +Map _$$EarthquakeParameterImplToJson( + _$EarthquakeParameterImpl instance) => + { + 'responseId': instance.responseId, + 'responseTime': instance.responseTime.toIso8601String(), + 'status': instance.status, + 'changeTime': instance.changeTime.toIso8601String(), + 'version': instance.version, + 'items': instance.items, + }; + +_$EarthquakeParmaeterItemImpl _$$EarthquakeParmaeterItemImplFromJson( + Map json) => + _$EarthquakeParmaeterItemImpl( + region: ParameterRegion.fromJson(json['region'] as Map), + city: ParameterCity.fromJson(json['city'] as Map), + noCode: json['noCode'] as String, + code: json['code'] as String, + name: json['name'] as String, + kana: json['kana'] as String, + status: json['status'] as String, + owner: json['owner'] as String, + latitude: doubleFromString(json['latitude'] as String), + longitude: doubleFromString(json['longitude'] as String), + ); + +Map _$$EarthquakeParmaeterItemImplToJson( + _$EarthquakeParmaeterItemImpl instance) => + { + 'region': instance.region, + 'city': instance.city, + 'noCode': instance.noCode, + 'code': instance.code, + 'name': instance.name, + 'kana': instance.kana, + 'status': instance.status, + 'owner': instance.owner, + 'latitude': doubleToString(instance.latitude), + 'longitude': doubleToString(instance.longitude), + }; diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.dart b/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.dart new file mode 100644 index 000000000..948e9aaf1 --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.dart @@ -0,0 +1,41 @@ +// ignore_for_file: invalid_annotation_target + +import 'package:freezed_annotation/freezed_annotation.dart'; +import 'package:jma_parameter_converter_internal/dmdata/converter.dart'; + +part 'tsunami.freezed.dart'; +part 'tsunami.g.dart'; + +@freezed +class TsunamiParameter with _$TsunamiParameter { + const factory TsunamiParameter({ + required String responseId, + required DateTime responseTime, + required String status, + required DateTime changeTime, + required String version, + required List items, + }) = _TsunamiParameter; + + factory TsunamiParameter.fromJson(Map json) => + _$TsunamiParameterFromJson(json); +} + +@freezed +class TsunamiParameterItem with _$TsunamiParameterItem { + const factory TsunamiParameterItem({ + required String? area, + required String prefecture, + required String code, + required String name, + required String kana, + required String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required double longitude, + }) = _TsunamiParameterItem; + + factory TsunamiParameterItem.fromJson(Map json) => + _$TsunamiParameterItemFromJson(json); +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.freezed.dart b/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.freezed.dart new file mode 100644 index 000000000..22636645d --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.freezed.dart @@ -0,0 +1,568 @@ +// coverage:ignore-file +// GENERATED CODE - DO NOT MODIFY BY HAND +// ignore_for_file: type=lint +// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark + +part of 'tsunami.dart'; + +// ************************************************************************** +// FreezedGenerator +// ************************************************************************** + +T _$identity(T value) => value; + +final _privateConstructorUsedError = UnsupportedError( + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + +TsunamiParameter _$TsunamiParameterFromJson(Map json) { + return _TsunamiParameter.fromJson(json); +} + +/// @nodoc +mixin _$TsunamiParameter { + String get responseId => throw _privateConstructorUsedError; + DateTime get responseTime => throw _privateConstructorUsedError; + String get status => throw _privateConstructorUsedError; + DateTime get changeTime => throw _privateConstructorUsedError; + String get version => throw _privateConstructorUsedError; + List get items => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $TsunamiParameterCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $TsunamiParameterCopyWith<$Res> { + factory $TsunamiParameterCopyWith( + TsunamiParameter value, $Res Function(TsunamiParameter) then) = + _$TsunamiParameterCopyWithImpl<$Res, TsunamiParameter>; + @useResult + $Res call( + {String responseId, + DateTime responseTime, + String status, + DateTime changeTime, + String version, + List items}); +} + +/// @nodoc +class _$TsunamiParameterCopyWithImpl<$Res, $Val extends TsunamiParameter> + implements $TsunamiParameterCopyWith<$Res> { + _$TsunamiParameterCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? responseId = null, + Object? responseTime = null, + Object? status = null, + Object? changeTime = null, + Object? version = null, + Object? items = null, + }) { + return _then(_value.copyWith( + responseId: null == responseId + ? _value.responseId + : responseId // ignore: cast_nullable_to_non_nullable + as String, + responseTime: null == responseTime + ? _value.responseTime + : responseTime // ignore: cast_nullable_to_non_nullable + as DateTime, + status: null == status + ? _value.status + : status // ignore: cast_nullable_to_non_nullable + as String, + changeTime: null == changeTime + ? _value.changeTime + : changeTime // ignore: cast_nullable_to_non_nullable + as DateTime, + version: null == version + ? _value.version + : version // ignore: cast_nullable_to_non_nullable + as String, + items: null == items + ? _value.items + : items // ignore: cast_nullable_to_non_nullable + as List, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$TsunamiParameterImplCopyWith<$Res> + implements $TsunamiParameterCopyWith<$Res> { + factory _$$TsunamiParameterImplCopyWith(_$TsunamiParameterImpl value, + $Res Function(_$TsunamiParameterImpl) then) = + __$$TsunamiParameterImplCopyWithImpl<$Res>; + @override + @useResult + $Res call( + {String responseId, + DateTime responseTime, + String status, + DateTime changeTime, + String version, + List items}); +} + +/// @nodoc +class __$$TsunamiParameterImplCopyWithImpl<$Res> + extends _$TsunamiParameterCopyWithImpl<$Res, _$TsunamiParameterImpl> + implements _$$TsunamiParameterImplCopyWith<$Res> { + __$$TsunamiParameterImplCopyWithImpl(_$TsunamiParameterImpl _value, + $Res Function(_$TsunamiParameterImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? responseId = null, + Object? responseTime = null, + Object? status = null, + Object? changeTime = null, + Object? version = null, + Object? items = null, + }) { + return _then(_$TsunamiParameterImpl( + responseId: null == responseId + ? _value.responseId + : responseId // ignore: cast_nullable_to_non_nullable + as String, + responseTime: null == responseTime + ? _value.responseTime + : responseTime // ignore: cast_nullable_to_non_nullable + as DateTime, + status: null == status + ? _value.status + : status // ignore: cast_nullable_to_non_nullable + as String, + changeTime: null == changeTime + ? _value.changeTime + : changeTime // ignore: cast_nullable_to_non_nullable + as DateTime, + version: null == version + ? _value.version + : version // ignore: cast_nullable_to_non_nullable + as String, + items: null == items + ? _value._items + : items // ignore: cast_nullable_to_non_nullable + as List, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$TsunamiParameterImpl implements _TsunamiParameter { + const _$TsunamiParameterImpl( + {required this.responseId, + required this.responseTime, + required this.status, + required this.changeTime, + required this.version, + required final List items}) + : _items = items; + + factory _$TsunamiParameterImpl.fromJson(Map json) => + _$$TsunamiParameterImplFromJson(json); + + @override + final String responseId; + @override + final DateTime responseTime; + @override + final String status; + @override + final DateTime changeTime; + @override + final String version; + final List _items; + @override + List get items { + if (_items is EqualUnmodifiableListView) return _items; + // ignore: implicit_dynamic_type + return EqualUnmodifiableListView(_items); + } + + @override + String toString() { + return 'TsunamiParameter(responseId: $responseId, responseTime: $responseTime, status: $status, changeTime: $changeTime, version: $version, items: $items)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$TsunamiParameterImpl && + (identical(other.responseId, responseId) || + other.responseId == responseId) && + (identical(other.responseTime, responseTime) || + other.responseTime == responseTime) && + (identical(other.status, status) || other.status == status) && + (identical(other.changeTime, changeTime) || + other.changeTime == changeTime) && + (identical(other.version, version) || other.version == version) && + const DeepCollectionEquality().equals(other._items, _items)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, responseId, responseTime, status, + changeTime, version, const DeepCollectionEquality().hash(_items)); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$TsunamiParameterImplCopyWith<_$TsunamiParameterImpl> get copyWith => + __$$TsunamiParameterImplCopyWithImpl<_$TsunamiParameterImpl>( + this, _$identity); + + @override + Map toJson() { + return _$$TsunamiParameterImplToJson( + this, + ); + } +} + +abstract class _TsunamiParameter implements TsunamiParameter { + const factory _TsunamiParameter( + {required final String responseId, + required final DateTime responseTime, + required final String status, + required final DateTime changeTime, + required final String version, + required final List items}) = + _$TsunamiParameterImpl; + + factory _TsunamiParameter.fromJson(Map json) = + _$TsunamiParameterImpl.fromJson; + + @override + String get responseId; + @override + DateTime get responseTime; + @override + String get status; + @override + DateTime get changeTime; + @override + String get version; + @override + List get items; + @override + @JsonKey(ignore: true) + _$$TsunamiParameterImplCopyWith<_$TsunamiParameterImpl> get copyWith => + throw _privateConstructorUsedError; +} + +TsunamiParameterItem _$TsunamiParameterItemFromJson(Map json) { + return _TsunamiParameterItem.fromJson(json); +} + +/// @nodoc +mixin _$TsunamiParameterItem { + String? get area => throw _privateConstructorUsedError; + String get prefecture => throw _privateConstructorUsedError; + String get code => throw _privateConstructorUsedError; + String get name => throw _privateConstructorUsedError; + String get kana => throw _privateConstructorUsedError; + String get owner => throw _privateConstructorUsedError; + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get latitude => throw _privateConstructorUsedError; + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get longitude => throw _privateConstructorUsedError; + + Map toJson() => throw _privateConstructorUsedError; + @JsonKey(ignore: true) + $TsunamiParameterItemCopyWith get copyWith => + throw _privateConstructorUsedError; +} + +/// @nodoc +abstract class $TsunamiParameterItemCopyWith<$Res> { + factory $TsunamiParameterItemCopyWith(TsunamiParameterItem value, + $Res Function(TsunamiParameterItem) then) = + _$TsunamiParameterItemCopyWithImpl<$Res, TsunamiParameterItem>; + @useResult + $Res call( + {String? area, + String prefecture, + String code, + String name, + String kana, + String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double longitude}); +} + +/// @nodoc +class _$TsunamiParameterItemCopyWithImpl<$Res, + $Val extends TsunamiParameterItem> + implements $TsunamiParameterItemCopyWith<$Res> { + _$TsunamiParameterItemCopyWithImpl(this._value, this._then); + + // ignore: unused_field + final $Val _value; + // ignore: unused_field + final $Res Function($Val) _then; + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? area = freezed, + Object? prefecture = null, + Object? code = null, + Object? name = null, + Object? kana = null, + Object? owner = null, + Object? latitude = null, + Object? longitude = null, + }) { + return _then(_value.copyWith( + area: freezed == area + ? _value.area + : area // ignore: cast_nullable_to_non_nullable + as String?, + prefecture: null == prefecture + ? _value.prefecture + : prefecture // ignore: cast_nullable_to_non_nullable + as String, + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + owner: null == owner + ? _value.owner + : owner // ignore: cast_nullable_to_non_nullable + as String, + latitude: null == latitude + ? _value.latitude + : latitude // ignore: cast_nullable_to_non_nullable + as double, + longitude: null == longitude + ? _value.longitude + : longitude // ignore: cast_nullable_to_non_nullable + as double, + ) as $Val); + } +} + +/// @nodoc +abstract class _$$TsunamiParameterItemImplCopyWith<$Res> + implements $TsunamiParameterItemCopyWith<$Res> { + factory _$$TsunamiParameterItemImplCopyWith(_$TsunamiParameterItemImpl value, + $Res Function(_$TsunamiParameterItemImpl) then) = + __$$TsunamiParameterItemImplCopyWithImpl<$Res>; + @override + @useResult + $Res call( + {String? area, + String prefecture, + String code, + String name, + String kana, + String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double longitude}); +} + +/// @nodoc +class __$$TsunamiParameterItemImplCopyWithImpl<$Res> + extends _$TsunamiParameterItemCopyWithImpl<$Res, _$TsunamiParameterItemImpl> + implements _$$TsunamiParameterItemImplCopyWith<$Res> { + __$$TsunamiParameterItemImplCopyWithImpl(_$TsunamiParameterItemImpl _value, + $Res Function(_$TsunamiParameterItemImpl) _then) + : super(_value, _then); + + @pragma('vm:prefer-inline') + @override + $Res call({ + Object? area = freezed, + Object? prefecture = null, + Object? code = null, + Object? name = null, + Object? kana = null, + Object? owner = null, + Object? latitude = null, + Object? longitude = null, + }) { + return _then(_$TsunamiParameterItemImpl( + area: freezed == area + ? _value.area + : area // ignore: cast_nullable_to_non_nullable + as String?, + prefecture: null == prefecture + ? _value.prefecture + : prefecture // ignore: cast_nullable_to_non_nullable + as String, + code: null == code + ? _value.code + : code // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + kana: null == kana + ? _value.kana + : kana // ignore: cast_nullable_to_non_nullable + as String, + owner: null == owner + ? _value.owner + : owner // ignore: cast_nullable_to_non_nullable + as String, + latitude: null == latitude + ? _value.latitude + : latitude // ignore: cast_nullable_to_non_nullable + as double, + longitude: null == longitude + ? _value.longitude + : longitude // ignore: cast_nullable_to_non_nullable + as double, + )); + } +} + +/// @nodoc +@JsonSerializable() +class _$TsunamiParameterItemImpl implements _TsunamiParameterItem { + const _$TsunamiParameterItemImpl( + {required this.area, + required this.prefecture, + required this.code, + required this.name, + required this.kana, + required this.owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required this.latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required this.longitude}); + + factory _$TsunamiParameterItemImpl.fromJson(Map json) => + _$$TsunamiParameterItemImplFromJson(json); + + @override + final String? area; + @override + final String prefecture; + @override + final String code; + @override + final String name; + @override + final String kana; + @override + final String owner; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + final double latitude; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + final double longitude; + + @override + String toString() { + return 'TsunamiParameterItem(area: $area, prefecture: $prefecture, code: $code, name: $name, kana: $kana, owner: $owner, latitude: $latitude, longitude: $longitude)'; + } + + @override + bool operator ==(Object other) { + return identical(this, other) || + (other.runtimeType == runtimeType && + other is _$TsunamiParameterItemImpl && + (identical(other.area, area) || other.area == area) && + (identical(other.prefecture, prefecture) || + other.prefecture == prefecture) && + (identical(other.code, code) || other.code == code) && + (identical(other.name, name) || other.name == name) && + (identical(other.kana, kana) || other.kana == kana) && + (identical(other.owner, owner) || other.owner == owner) && + (identical(other.latitude, latitude) || + other.latitude == latitude) && + (identical(other.longitude, longitude) || + other.longitude == longitude)); + } + + @JsonKey(ignore: true) + @override + int get hashCode => Object.hash(runtimeType, area, prefecture, code, name, + kana, owner, latitude, longitude); + + @JsonKey(ignore: true) + @override + @pragma('vm:prefer-inline') + _$$TsunamiParameterItemImplCopyWith<_$TsunamiParameterItemImpl> + get copyWith => + __$$TsunamiParameterItemImplCopyWithImpl<_$TsunamiParameterItemImpl>( + this, _$identity); + + @override + Map toJson() { + return _$$TsunamiParameterItemImplToJson( + this, + ); + } +} + +abstract class _TsunamiParameterItem implements TsunamiParameterItem { + const factory _TsunamiParameterItem( + {required final String? area, + required final String prefecture, + required final String code, + required final String name, + required final String kana, + required final String owner, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required final double latitude, + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + required final double longitude}) = _$TsunamiParameterItemImpl; + + factory _TsunamiParameterItem.fromJson(Map json) = + _$TsunamiParameterItemImpl.fromJson; + + @override + String? get area; + @override + String get prefecture; + @override + String get code; + @override + String get name; + @override + String get kana; + @override + String get owner; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get latitude; + @override + @JsonKey(fromJson: doubleFromString, toJson: doubleToString) + double get longitude; + @override + @JsonKey(ignore: true) + _$$TsunamiParameterItemImplCopyWith<_$TsunamiParameterItemImpl> + get copyWith => throw _privateConstructorUsedError; +} diff --git a/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.g.dart b/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.g.dart new file mode 100644 index 000000000..c2e27082a --- /dev/null +++ b/packages/jma_parameter_converter_internal/lib/dmdata/tsunami.g.dart @@ -0,0 +1,57 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +part of 'tsunami.dart'; + +// ************************************************************************** +// JsonSerializableGenerator +// ************************************************************************** + +_$TsunamiParameterImpl _$$TsunamiParameterImplFromJson( + Map json) => + _$TsunamiParameterImpl( + responseId: json['responseId'] as String, + responseTime: DateTime.parse(json['responseTime'] as String), + status: json['status'] as String, + changeTime: DateTime.parse(json['changeTime'] as String), + version: json['version'] as String, + items: (json['items'] as List) + .map((e) => TsunamiParameterItem.fromJson(e as Map)) + .toList(), + ); + +Map _$$TsunamiParameterImplToJson( + _$TsunamiParameterImpl instance) => + { + 'responseId': instance.responseId, + 'responseTime': instance.responseTime.toIso8601String(), + 'status': instance.status, + 'changeTime': instance.changeTime.toIso8601String(), + 'version': instance.version, + 'items': instance.items, + }; + +_$TsunamiParameterItemImpl _$$TsunamiParameterItemImplFromJson( + Map json) => + _$TsunamiParameterItemImpl( + area: json['area'] as String?, + prefecture: json['prefecture'] as String, + code: json['code'] as String, + name: json['name'] as String, + kana: json['kana'] as String, + owner: json['owner'] as String, + latitude: doubleFromString(json['latitude'] as String), + longitude: doubleFromString(json['longitude'] as String), + ); + +Map _$$TsunamiParameterItemImplToJson( + _$TsunamiParameterItemImpl instance) => + { + 'area': instance.area, + 'prefecture': instance.prefecture, + 'code': instance.code, + 'name': instance.name, + 'kana': instance.kana, + 'owner': instance.owner, + 'latitude': doubleToString(instance.latitude), + 'longitude': doubleToString(instance.longitude), + }; diff --git a/packages/jma_parameter_converter_internal/pubspec.yaml b/packages/jma_parameter_converter_internal/pubspec.yaml new file mode 100644 index 000000000..2db646a2f --- /dev/null +++ b/packages/jma_parameter_converter_internal/pubspec.yaml @@ -0,0 +1,24 @@ +name: jma_parameter_converter_internal +description: A sample command-line application. +version: 1.0.0 +publish_to: "none" # Remove this line if you wish to publish to pub.dev + +environment: + sdk: ^3.2.0 + +# Add regular dependencies here. +dependencies: + jma_parameter_types: + git: + url: /~https://github.com/YumNumm/EQMonitor.git + path: packages/jma_parameter_types + freezed_annotation: ^2.2.0 + json_annotation: ^4.8.1 + collection: ^1.17.1 + file: ^7.0.0 + +dev_dependencies: + build_runner: ^2.4.4 + freezed: ^2.3.4 + json_serializable: ^6.7.0 + pedantic_mono: ^1.23.0 diff --git a/packages/jma_parameter_converter_internal/pubspec_overrides.yaml b/packages/jma_parameter_converter_internal/pubspec_overrides.yaml new file mode 100644 index 000000000..4347aa9d7 --- /dev/null +++ b/packages/jma_parameter_converter_internal/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: jma_parameter_types +dependency_overrides: + jma_parameter_types: + path: ../jma_parameter_types diff --git a/packages/jma_parameter_converter_internal/updater.sh b/packages/jma_parameter_converter_internal/updater.sh new file mode 100755 index 000000000..9619aa0eb --- /dev/null +++ b/packages/jma_parameter_converter_internal/updater.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env fish +rm earthquake* +rm tsunami* +curl "https://api.dmdata.jp/v2/parameter/earthquake/station" -H "authorization: Basic $(echo "$DMDATA_TOKEN": | base64)" >earthquake_parameter.json +curl "https://api.dmdata.jp/v2/parameter/tsunami/station" -H "authorization: Basic $(echo "$DMDATA_TOKEN": | base64)" >tsunami_parameter.json +fvm dart run ./bin/jma_parameter_converter_internal.dart earthquake_station.json +fvm dart run ./bin/jma_parameter_converter_internal.dart tsunami_station.json diff --git a/packages/topojson/.gitignore b/packages/jma_parameter_types/.gitignore similarity index 100% rename from packages/topojson/.gitignore rename to packages/jma_parameter_types/.gitignore diff --git a/packages/eq_map/LICENSE b/packages/jma_parameter_types/LICENSE similarity index 97% rename from packages/eq_map/LICENSE rename to packages/jma_parameter_types/LICENSE index 480f9293d..f362d6d91 100644 --- a/packages/eq_map/LICENSE +++ b/packages/jma_parameter_types/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 YumNumm +Copyright (c) 2024 YumNumm Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/packages/jma_parameter_types/README.md b/packages/jma_parameter_types/README.md new file mode 100644 index 000000000..63a815ed1 --- /dev/null +++ b/packages/jma_parameter_types/README.md @@ -0,0 +1,2 @@ +# JMA Parameter Types + diff --git a/packages/jma_parameter_types/build.yaml b/packages/jma_parameter_types/build.yaml new file mode 100644 index 000000000..fe35d032e --- /dev/null +++ b/packages/jma_parameter_types/build.yaml @@ -0,0 +1,10 @@ +targets: + $default: + builders: + source_gen|combining_builder: + options: + ignore_for_file: + - type=lint + json_serializable: + options: + checked: true diff --git a/packages/jma_parameter_types/lib/earthquake_param.pb.dart b/packages/jma_parameter_types/lib/earthquake_param.pb.dart new file mode 100644 index 000000000..d46d7eb48 --- /dev/null +++ b/packages/jma_parameter_types/lib/earthquake_param.pb.dart @@ -0,0 +1,298 @@ +// +// Generated code. Do not modify. +// source: earthquake_param.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references, prefer_constructors_over_static_methods +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:core' as $core; + +import 'package:protobuf/protobuf.dart' as $pb; + +class EarthquakeParameter extends $pb.GeneratedMessage { + factory EarthquakeParameter({ + $core.Iterable? regions, + }) { + final $result = create(); + if (regions != null) { + $result.regions.addAll(regions); + } + return $result; + } + EarthquakeParameter._() : super(); + factory EarthquakeParameter.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); + factory EarthquakeParameter.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EarthquakeParameter', createEmptyInstance: create) + ..pc(1, _omitFieldNames ? '' : 'regions', $pb.PbFieldType.PM, subBuilder: EarthquakeParameterRegionItem.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + EarthquakeParameter clone() => EarthquakeParameter()..mergeFromMessage(this); + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + EarthquakeParameter copyWith(void Function(EarthquakeParameter) updates) => super.copyWith((message) => updates(message as EarthquakeParameter)) as EarthquakeParameter; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static EarthquakeParameter create() => EarthquakeParameter._(); + EarthquakeParameter createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static EarthquakeParameter getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static EarthquakeParameter? _defaultInstance; + + @$pb.TagNumber(1) + $core.List get regions => $_getList(0); +} + +class EarthquakeParameterRegionItem extends $pb.GeneratedMessage { + factory EarthquakeParameterRegionItem({ + $core.String? code, + $core.String? name, + $core.Iterable? cities, + }) { + final $result = create(); + if (code != null) { + $result.code = code; + } + if (name != null) { + $result.name = name; + } + if (cities != null) { + $result.cities.addAll(cities); + } + return $result; + } + EarthquakeParameterRegionItem._() : super(); + factory EarthquakeParameterRegionItem.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); + factory EarthquakeParameterRegionItem.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EarthquakeParameterRegionItem', createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'code') + ..aOS(2, _omitFieldNames ? '' : 'name') + ..pc(3, _omitFieldNames ? '' : 'cities', $pb.PbFieldType.PM, subBuilder: EarthquakeParameterCityItem.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + EarthquakeParameterRegionItem clone() => EarthquakeParameterRegionItem()..mergeFromMessage(this); + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + EarthquakeParameterRegionItem copyWith(void Function(EarthquakeParameterRegionItem) updates) => super.copyWith((message) => updates(message as EarthquakeParameterRegionItem)) as EarthquakeParameterRegionItem; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static EarthquakeParameterRegionItem create() => EarthquakeParameterRegionItem._(); + EarthquakeParameterRegionItem createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static EarthquakeParameterRegionItem getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static EarthquakeParameterRegionItem? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get code => $_getSZ(0); + @$pb.TagNumber(1) + set code($core.String v) { $_setString(0, v); } + @$pb.TagNumber(1) + $core.bool hasCode() => $_has(0); + @$pb.TagNumber(1) + void clearCode() => clearField(1); + + @$pb.TagNumber(2) + $core.String get name => $_getSZ(1); + @$pb.TagNumber(2) + set name($core.String v) { $_setString(1, v); } + @$pb.TagNumber(2) + $core.bool hasName() => $_has(1); + @$pb.TagNumber(2) + void clearName() => clearField(2); + + @$pb.TagNumber(3) + $core.List get cities => $_getList(2); +} + +class EarthquakeParameterCityItem extends $pb.GeneratedMessage { + factory EarthquakeParameterCityItem({ + $core.String? code, + $core.String? name, + $core.Iterable? stations, + }) { + final $result = create(); + if (code != null) { + $result.code = code; + } + if (name != null) { + $result.name = name; + } + if (stations != null) { + $result.stations.addAll(stations); + } + return $result; + } + EarthquakeParameterCityItem._() : super(); + factory EarthquakeParameterCityItem.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); + factory EarthquakeParameterCityItem.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EarthquakeParameterCityItem', createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'code') + ..aOS(2, _omitFieldNames ? '' : 'name') + ..pc(3, _omitFieldNames ? '' : 'stations', $pb.PbFieldType.PM, subBuilder: EarthquakeParameterStationItem.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + EarthquakeParameterCityItem clone() => EarthquakeParameterCityItem()..mergeFromMessage(this); + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + EarthquakeParameterCityItem copyWith(void Function(EarthquakeParameterCityItem) updates) => super.copyWith((message) => updates(message as EarthquakeParameterCityItem)) as EarthquakeParameterCityItem; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static EarthquakeParameterCityItem create() => EarthquakeParameterCityItem._(); + EarthquakeParameterCityItem createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static EarthquakeParameterCityItem getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static EarthquakeParameterCityItem? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get code => $_getSZ(0); + @$pb.TagNumber(1) + set code($core.String v) { $_setString(0, v); } + @$pb.TagNumber(1) + $core.bool hasCode() => $_has(0); + @$pb.TagNumber(1) + void clearCode() => clearField(1); + + @$pb.TagNumber(2) + $core.String get name => $_getSZ(1); + @$pb.TagNumber(2) + set name($core.String v) { $_setString(1, v); } + @$pb.TagNumber(2) + $core.bool hasName() => $_has(1); + @$pb.TagNumber(2) + void clearName() => clearField(2); + + @$pb.TagNumber(3) + $core.List get stations => $_getList(2); +} + +class EarthquakeParameterStationItem extends $pb.GeneratedMessage { + factory EarthquakeParameterStationItem({ + $core.String? code, + $core.String? name, + $core.double? latitude, + $core.double? longitude, + }) { + final $result = create(); + if (code != null) { + $result.code = code; + } + if (name != null) { + $result.name = name; + } + if (latitude != null) { + $result.latitude = latitude; + } + if (longitude != null) { + $result.longitude = longitude; + } + return $result; + } + EarthquakeParameterStationItem._() : super(); + factory EarthquakeParameterStationItem.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); + factory EarthquakeParameterStationItem.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EarthquakeParameterStationItem', createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'code') + ..aOS(2, _omitFieldNames ? '' : 'name') + ..a<$core.double>(3, _omitFieldNames ? '' : 'latitude', $pb.PbFieldType.OD) + ..a<$core.double>(4, _omitFieldNames ? '' : 'longitude', $pb.PbFieldType.OD) + ..hasRequiredFields = false + ; + + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + EarthquakeParameterStationItem clone() => EarthquakeParameterStationItem()..mergeFromMessage(this); + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + EarthquakeParameterStationItem copyWith(void Function(EarthquakeParameterStationItem) updates) => super.copyWith((message) => updates(message as EarthquakeParameterStationItem)) as EarthquakeParameterStationItem; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static EarthquakeParameterStationItem create() => EarthquakeParameterStationItem._(); + EarthquakeParameterStationItem createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static EarthquakeParameterStationItem getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static EarthquakeParameterStationItem? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get code => $_getSZ(0); + @$pb.TagNumber(1) + set code($core.String v) { $_setString(0, v); } + @$pb.TagNumber(1) + $core.bool hasCode() => $_has(0); + @$pb.TagNumber(1) + void clearCode() => clearField(1); + + @$pb.TagNumber(2) + $core.String get name => $_getSZ(1); + @$pb.TagNumber(2) + set name($core.String v) { $_setString(1, v); } + @$pb.TagNumber(2) + $core.bool hasName() => $_has(1); + @$pb.TagNumber(2) + void clearName() => clearField(2); + + @$pb.TagNumber(3) + $core.double get latitude => $_getN(2); + @$pb.TagNumber(3) + set latitude($core.double v) { $_setDouble(2, v); } + @$pb.TagNumber(3) + $core.bool hasLatitude() => $_has(2); + @$pb.TagNumber(3) + void clearLatitude() => clearField(3); + + @$pb.TagNumber(4) + $core.double get longitude => $_getN(3); + @$pb.TagNumber(4) + set longitude($core.double v) { $_setDouble(3, v); } + @$pb.TagNumber(4) + $core.bool hasLongitude() => $_has(3); + @$pb.TagNumber(4) + void clearLongitude() => clearField(4); +} + + +const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names'); +const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names'); diff --git a/packages/jma_parameter_types/lib/earthquake_param.pbenum.dart b/packages/jma_parameter_types/lib/earthquake_param.pbenum.dart new file mode 100644 index 000000000..457e0cbbb --- /dev/null +++ b/packages/jma_parameter_types/lib/earthquake_param.pbenum.dart @@ -0,0 +1,10 @@ +// +// Generated code. Do not modify. +// source: earthquake_param.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import diff --git a/packages/jma_parameter_types/lib/earthquake_param.pbjson.dart b/packages/jma_parameter_types/lib/earthquake_param.pbjson.dart new file mode 100644 index 000000000..a2b476c6c --- /dev/null +++ b/packages/jma_parameter_types/lib/earthquake_param.pbjson.dart @@ -0,0 +1,76 @@ +// +// Generated code. Do not modify. +// source: earthquake_param.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:convert' as $convert; +import 'dart:core' as $core; +import 'dart:typed_data' as $typed_data; + +@$core.Deprecated('Use earthquakeParameterDescriptor instead') +const EarthquakeParameter$json = { + '1': 'EarthquakeParameter', + '2': [ + {'1': 'regions', '3': 1, '4': 3, '5': 11, '6': '.EarthquakeParameterRegionItem', '10': 'regions'}, + ], +}; + +/// Descriptor for `EarthquakeParameter`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List earthquakeParameterDescriptor = $convert.base64Decode( + 'ChNFYXJ0aHF1YWtlUGFyYW1ldGVyEjgKB3JlZ2lvbnMYASADKAsyHi5FYXJ0aHF1YWtlUGFyYW' + '1ldGVyUmVnaW9uSXRlbVIHcmVnaW9ucw=='); + +@$core.Deprecated('Use earthquakeParameterRegionItemDescriptor instead') +const EarthquakeParameterRegionItem$json = { + '1': 'EarthquakeParameterRegionItem', + '2': [ + {'1': 'code', '3': 1, '4': 1, '5': 9, '10': 'code'}, + {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'}, + {'1': 'cities', '3': 3, '4': 3, '5': 11, '6': '.EarthquakeParameterCityItem', '10': 'cities'}, + ], +}; + +/// Descriptor for `EarthquakeParameterRegionItem`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List earthquakeParameterRegionItemDescriptor = $convert.base64Decode( + 'Ch1FYXJ0aHF1YWtlUGFyYW1ldGVyUmVnaW9uSXRlbRISCgRjb2RlGAEgASgJUgRjb2RlEhIKBG' + '5hbWUYAiABKAlSBG5hbWUSNAoGY2l0aWVzGAMgAygLMhwuRWFydGhxdWFrZVBhcmFtZXRlckNp' + 'dHlJdGVtUgZjaXRpZXM='); + +@$core.Deprecated('Use earthquakeParameterCityItemDescriptor instead') +const EarthquakeParameterCityItem$json = { + '1': 'EarthquakeParameterCityItem', + '2': [ + {'1': 'code', '3': 1, '4': 1, '5': 9, '10': 'code'}, + {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'}, + {'1': 'stations', '3': 3, '4': 3, '5': 11, '6': '.EarthquakeParameterStationItem', '10': 'stations'}, + ], +}; + +/// Descriptor for `EarthquakeParameterCityItem`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List earthquakeParameterCityItemDescriptor = $convert.base64Decode( + 'ChtFYXJ0aHF1YWtlUGFyYW1ldGVyQ2l0eUl0ZW0SEgoEY29kZRgBIAEoCVIEY29kZRISCgRuYW' + '1lGAIgASgJUgRuYW1lEjsKCHN0YXRpb25zGAMgAygLMh8uRWFydGhxdWFrZVBhcmFtZXRlclN0' + 'YXRpb25JdGVtUghzdGF0aW9ucw=='); + +@$core.Deprecated('Use earthquakeParameterStationItemDescriptor instead') +const EarthquakeParameterStationItem$json = { + '1': 'EarthquakeParameterStationItem', + '2': [ + {'1': 'code', '3': 1, '4': 1, '5': 9, '10': 'code'}, + {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'}, + {'1': 'latitude', '3': 3, '4': 1, '5': 1, '10': 'latitude'}, + {'1': 'longitude', '3': 4, '4': 1, '5': 1, '10': 'longitude'}, + ], +}; + +/// Descriptor for `EarthquakeParameterStationItem`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List earthquakeParameterStationItemDescriptor = $convert.base64Decode( + 'Ch5FYXJ0aHF1YWtlUGFyYW1ldGVyU3RhdGlvbkl0ZW0SEgoEY29kZRgBIAEoCVIEY29kZRISCg' + 'RuYW1lGAIgASgJUgRuYW1lEhoKCGxhdGl0dWRlGAMgASgBUghsYXRpdHVkZRIcCglsb25naXR1' + 'ZGUYBCABKAFSCWxvbmdpdHVkZQ=='); diff --git a/packages/jma_parameter_types/lib/tsunami_param.pb.dart b/packages/jma_parameter_types/lib/tsunami_param.pb.dart new file mode 100644 index 000000000..1c3e5f70a --- /dev/null +++ b/packages/jma_parameter_types/lib/tsunami_param.pb.dart @@ -0,0 +1,154 @@ +// +// Generated code. Do not modify. +// source: tsunami_param.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references, prefer_constructors_over_static_methods +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:core' as $core; + +import 'package:protobuf/protobuf.dart' as $pb; + +class TsunamiParameter extends $pb.GeneratedMessage { + factory TsunamiParameter({ + $core.Iterable? items, + }) { + final $result = create(); + if (items != null) { + $result.items.addAll(items); + } + return $result; + } + TsunamiParameter._() : super(); + factory TsunamiParameter.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); + factory TsunamiParameter.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TsunamiParameter', createEmptyInstance: create) + ..pc(1, _omitFieldNames ? '' : 'items', $pb.PbFieldType.PM, subBuilder: TsunamiParameterItem.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + TsunamiParameter clone() => TsunamiParameter()..mergeFromMessage(this); + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + TsunamiParameter copyWith(void Function(TsunamiParameter) updates) => super.copyWith((message) => updates(message as TsunamiParameter)) as TsunamiParameter; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static TsunamiParameter create() => TsunamiParameter._(); + TsunamiParameter createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static TsunamiParameter getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static TsunamiParameter? _defaultInstance; + + @$pb.TagNumber(1) + $core.List get items => $_getList(0); +} + +class TsunamiParameterItem extends $pb.GeneratedMessage { + factory TsunamiParameterItem({ + $core.String? prefecture, + $core.String? code, + $core.double? latitude, + $core.double? longitude, + }) { + final $result = create(); + if (prefecture != null) { + $result.prefecture = prefecture; + } + if (code != null) { + $result.code = code; + } + if (latitude != null) { + $result.latitude = latitude; + } + if (longitude != null) { + $result.longitude = longitude; + } + return $result; + } + TsunamiParameterItem._() : super(); + factory TsunamiParameterItem.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); + factory TsunamiParameterItem.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TsunamiParameterItem', createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'prefecture') + ..aOS(2, _omitFieldNames ? '' : 'code') + ..a<$core.double>(3, _omitFieldNames ? '' : 'latitude', $pb.PbFieldType.OD) + ..a<$core.double>(4, _omitFieldNames ? '' : 'longitude', $pb.PbFieldType.OD) + ..hasRequiredFields = false + ; + + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' + 'Will be removed in next major version') + TsunamiParameterItem clone() => TsunamiParameterItem()..mergeFromMessage(this); + @$core.Deprecated( + 'Using this can add significant overhead to your binary. ' + 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' + 'Will be removed in next major version') + TsunamiParameterItem copyWith(void Function(TsunamiParameterItem) updates) => super.copyWith((message) => updates(message as TsunamiParameterItem)) as TsunamiParameterItem; + + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static TsunamiParameterItem create() => TsunamiParameterItem._(); + TsunamiParameterItem createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static TsunamiParameterItem getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static TsunamiParameterItem? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get prefecture => $_getSZ(0); + @$pb.TagNumber(1) + set prefecture($core.String v) { $_setString(0, v); } + @$pb.TagNumber(1) + $core.bool hasPrefecture() => $_has(0); + @$pb.TagNumber(1) + void clearPrefecture() => clearField(1); + + @$pb.TagNumber(2) + $core.String get code => $_getSZ(1); + @$pb.TagNumber(2) + set code($core.String v) { $_setString(1, v); } + @$pb.TagNumber(2) + $core.bool hasCode() => $_has(1); + @$pb.TagNumber(2) + void clearCode() => clearField(2); + + @$pb.TagNumber(3) + $core.double get latitude => $_getN(2); + @$pb.TagNumber(3) + set latitude($core.double v) { $_setDouble(2, v); } + @$pb.TagNumber(3) + $core.bool hasLatitude() => $_has(2); + @$pb.TagNumber(3) + void clearLatitude() => clearField(3); + + @$pb.TagNumber(4) + $core.double get longitude => $_getN(3); + @$pb.TagNumber(4) + set longitude($core.double v) { $_setDouble(3, v); } + @$pb.TagNumber(4) + $core.bool hasLongitude() => $_has(3); + @$pb.TagNumber(4) + void clearLongitude() => clearField(4); +} + + +const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names'); +const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names'); diff --git a/packages/jma_parameter_types/lib/tsunami_param.pbenum.dart b/packages/jma_parameter_types/lib/tsunami_param.pbenum.dart new file mode 100644 index 000000000..ba9854d11 --- /dev/null +++ b/packages/jma_parameter_types/lib/tsunami_param.pbenum.dart @@ -0,0 +1,10 @@ +// +// Generated code. Do not modify. +// source: tsunami_param.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import diff --git a/packages/jma_parameter_types/lib/tsunami_param.pbjson.dart b/packages/jma_parameter_types/lib/tsunami_param.pbjson.dart new file mode 100644 index 000000000..09f97b764 --- /dev/null +++ b/packages/jma_parameter_types/lib/tsunami_param.pbjson.dart @@ -0,0 +1,51 @@ +// +// Generated code. Do not modify. +// source: tsunami_param.proto +// +// @dart = 2.12 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_final_fields +// ignore_for_file: unnecessary_import, unnecessary_this, unused_import + +import 'dart:convert' as $convert; +import 'dart:core' as $core; +import 'dart:typed_data' as $typed_data; + +@$core.Deprecated('Use tsunamiParameterDescriptor instead') +const TsunamiParameter$json = { + '1': 'TsunamiParameter', + '2': [ + { + '1': 'items', + '3': 1, + '4': 3, + '5': 11, + '6': '.TsunamiParameterItem', + '10': 'items', + }, + ], +}; + +/// Descriptor for `TsunamiParameter`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List tsunamiParameterDescriptor = $convert.base64Decode( + 'ChBUc3VuYW1pUGFyYW1ldGVyEisKBWl0ZW1zGAEgAygLMhUuVHN1bmFtaVBhcmFtZXRlckl0ZW' + '1SBWl0ZW1z'); + +@$core.Deprecated('Use tsunamiParameterItemDescriptor instead') +const TsunamiParameterItem$json = { + '1': 'TsunamiParameterItem', + '2': [ + {'1': 'prefecture', '3': 1, '4': 1, '5': 9, '10': 'prefecture'}, + {'1': 'code', '3': 2, '4': 1, '5': 9, '10': 'code'}, + {'1': 'latitude', '3': 3, '4': 1, '5': 1, '10': 'latitude'}, + {'1': 'longitude', '3': 4, '4': 1, '5': 1, '10': 'longitude'}, + ], +}; + +/// Descriptor for `TsunamiParameterItem`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List tsunamiParameterItemDescriptor = $convert.base64Decode( + 'ChRUc3VuYW1pUGFyYW1ldGVySXRlbRIeCgpwcmVmZWN0dXJlGAEgASgJUgpwcmVmZWN0dXJlEh' + 'IKBGNvZGUYAiABKAlSBGNvZGUSGgoIbGF0aXR1ZGUYAyABKAFSCGxhdGl0dWRlEhwKCWxvbmdp' + 'dHVkZRgEIAEoAVIJbG9uZ2l0dWRl'); diff --git a/packages/jma_parameter_types/proto/earthquake_param.proto b/packages/jma_parameter_types/proto/earthquake_param.proto new file mode 100644 index 000000000..48af487f0 --- /dev/null +++ b/packages/jma_parameter_types/proto/earthquake_param.proto @@ -0,0 +1,24 @@ +syntax = "proto3"; + +message EarthquakeParameter { + repeated EarthquakeParameterRegionItem regions = 1; +} + +message EarthquakeParameterRegionItem { + string code = 1; + string name = 2; + repeated EarthquakeParameterCityItem cities = 3; +} + +message EarthquakeParameterCityItem { + string code = 1; + string name = 2; + repeated EarthquakeParameterStationItem stations = 3; +} + +message EarthquakeParameterStationItem { + string code = 1; + string name = 2; + double latitude = 3; + double longitude = 4; +} \ No newline at end of file diff --git a/packages/jma_parameter_types/proto/tsunami_param.proto b/packages/jma_parameter_types/proto/tsunami_param.proto new file mode 100644 index 000000000..d25af9118 --- /dev/null +++ b/packages/jma_parameter_types/proto/tsunami_param.proto @@ -0,0 +1,12 @@ +syntax = "proto3"; + +message TsunamiParameter { + repeated TsunamiParameterItem items = 1; +} + +message TsunamiParameterItem { + string prefecture = 1; + string code = 2; + double latitude = 3; + double longitude = 4; +} \ No newline at end of file diff --git a/packages/jma_parameter_types/pubspec.yaml b/packages/jma_parameter_types/pubspec.yaml new file mode 100644 index 000000000..dd25709a5 --- /dev/null +++ b/packages/jma_parameter_types/pubspec.yaml @@ -0,0 +1,10 @@ +name: jma_parameter_types +description: A starting point for Dart libraries or applications. +version: 1.0.0 +publish_to: "none" # Remove this line if you wish to publish to pub.dev + +environment: + sdk: ^3.2.0 + +dependencies: + protobuf: ^3.1.0 diff --git a/packages/jma_parameter_types/util/update_proto.sh b/packages/jma_parameter_types/util/update_proto.sh new file mode 100755 index 000000000..13dd2e125 --- /dev/null +++ b/packages/jma_parameter_types/util/update_proto.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +# ensure protoc-gen-dart is in path +if ! type -P protoc-gen-dart &>/dev/null; then + echo "protoc-gen-dart not found in PATH" + exit 1 +fi + +protoc \ + --dart_out="grpc:lib" \ + -I="./proto" \ + $(find . -iname "*.proto") \ No newline at end of file diff --git a/packages/topo_map/CHANGELOG.md b/packages/topo_map/CHANGELOG.md deleted file mode 100644 index 0a54120e3..000000000 --- a/packages/topo_map/CHANGELOG.md +++ /dev/null @@ -1,11 +0,0 @@ -## 1.0.1 - -- **REFACTOR**: [topo_map] calc. ([cb16b045](/~https://github.com/YumNumm/EQMonitor/commit/cb16b045599bf410128a3f252391cc9ddd55520b)) -- **FIX**: dependencies. ([b3d9197e](/~https://github.com/YumNumm/EQMonitor/commit/b3d9197e8a69f5818eaf9c91ce0df51926a6d85b)) -- **FIX**: mapdata. ([aaf05e0d](/~https://github.com/YumNumm/EQMonitor/commit/aaf05e0db06866b2c94ba417195c6185353d8c3c)) -- **FIX**: [topomap] README. ([ced29c5d](/~https://github.com/YumNumm/EQMonitor/commit/ced29c5d167808577ee2dabcb6e8683cae82b56f)) -- **FIX**: topoMap. ([33c94f7e](/~https://github.com/YumNumm/EQMonitor/commit/33c94f7eb2ba9e5a97c265057cc9dcbe0cec5159)) - -## 1.0.0 - -- Initial version. diff --git a/packages/topo_map/LICENSE b/packages/topo_map/LICENSE deleted file mode 100644 index 480f9293d..000000000 --- a/packages/topo_map/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2023 YumNumm - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/packages/topo_map/README.md b/packages/topo_map/README.md deleted file mode 100644 index cf22c635f..000000000 --- a/packages/topo_map/README.md +++ /dev/null @@ -1,5 +0,0 @@ -## Install - -```bash -dart pub activate --path . -``` \ No newline at end of file diff --git a/packages/topo_map/analysis_options.yaml b/packages/topo_map/analysis_options.yaml deleted file mode 100644 index e2f9de844..000000000 --- a/packages/topo_map/analysis_options.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# https://pub.dev/packages/pedantic_mono -include: package:pedantic_mono/analysis_options.yaml - -analyzer: - exclude: - - "**/*.g.dart" - - "**/*.freezed.dart" - language: - strict-casts: true - strict-inference: true - strict-raw-types: true - plugins: - - custom_lint - errors: - invalid_annotation_target: ignore - avoid_print: ignore - -linter: - rules: - always_use_package_imports: true diff --git a/packages/topo_map/bin/topojsonconverter.dart b/packages/topo_map/bin/topojsonconverter.dart deleted file mode 100644 index 1cbce1fc1..000000000 --- a/packages/topo_map/bin/topojsonconverter.dart +++ /dev/null @@ -1,53 +0,0 @@ -import 'dart:convert'; -import 'dart:io'; - -import 'package:collection/collection.dart'; -import 'package:topo_map/src/enum/land_layer_type.dart'; -import 'package:topo_map/src/model/topology_map.dart'; -import 'package:topo_map/util/create_map.dart'; -import 'package:topojson/topojson.dart'; - -Future main( - List arguments, -) async { - print('***** TopoJsonConverter *****'); - print('TopoJsonが入ったフォルダ: '); - final inputFolder = stdin.readLineSync().toString(); - print('TopologyMapの出力先: '); - final outputFileName = stdin.readLineSync().toString(); - - final inputDir = Directory(inputFolder); - - if (!inputDir.existsSync()) { - print('入力フォルダが存在しません'); - return; - } - - final inputFiles = inputDir.listSync(); - - final topologyMaps = {}; - for (final inputFile in inputFiles) { - // 拡張子を除くファイル名を取得 - final fileName = inputFile.path.split('/').last.split('.').first; - if (fileName == '') { - continue; - } - final type = - LandLayerType.values.firstWhereOrNull((e) => e.name == fileName); - if (type == null) { - print('ファイル名が不正です: $fileName'); - continue; - } - final data = File(inputFile.path).readAsStringSync(); - final json = jsonDecode(data) as Map; - final topoJson = TopoJson.fromJson(json); - final topologyMap = createMap(topoJson, type); - topologyMaps[type] = topologyMap; - } - // 出力 - final outPutFile = File(outputFileName); - await outPutFile.create(recursive: true); - await outPutFile.writeAsString( - jsonEncode(topologyMaps.map((key, value) => MapEntry(key.name, value))), - ); -} diff --git a/packages/topo_map/lib/src/enum/land_layer_type.dart b/packages/topo_map/lib/src/enum/land_layer_type.dart deleted file mode 100644 index e9f77aa77..000000000 --- a/packages/topo_map/lib/src/enum/land_layer_type.dart +++ /dev/null @@ -1,21 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; - -@JsonEnum(valueField: 'type') -enum LandLayerType { - worldWithoutJapan('日本以外の全地域'), - municipalityEarthquakeTsunamiArea('市町村等(地震津波関係)'), - earthquakeInformationSubdivisionArea('地震情報/細分区域'), - tsunamiForecastArea('津波予報区'); - - const LandLayerType(this.type); - final String type; - - int get multiAreaGroupNo => switch (this) { - LandLayerType.worldWithoutJapan => 1, - LandLayerType.municipalityEarthquakeTsunamiArea => 10000, - LandLayerType.earthquakeInformationSubdivisionArea => 10, - LandLayerType.tsunamiForecastArea => 1, - }; - - String toJson() => name; -} diff --git a/packages/topo_map/lib/src/model/topology_map.dart b/packages/topo_map/lib/src/model/topology_map.dart deleted file mode 100644 index 1fcff1e2c..000000000 --- a/packages/topo_map/lib/src/model/topology_map.dart +++ /dev/null @@ -1,55 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:topojson/topojson.dart'; - -part 'topology_map.freezed.dart'; -part 'topology_map.g.dart'; - -@freezed -class TopologyMap with _$TopologyMap { - const factory TopologyMap({ - required DoubleVector scale, - required DoubleVector translate, - required List polygons, - required List arcs, - }) = _TopologyMap; - - factory TopologyMap.fromJson(Map json) => - _$TopologyMapFromJson(json); -} - -@freezed -class TopologyArc with _$TopologyArc { - const factory TopologyArc({ - required List arc, - required TopologyArcType type, - }) = _TopologyArc; - - factory TopologyArc.fromJson(Map json) => - _$TopologyArcFromJson(json); -} - -@freezed -class TopologyPolygon with _$TopologyPolygon { - const factory TopologyPolygon({ - required List> arcs, - required int? areaCode, - }) = _TopologyPolygon; - - factory TopologyPolygon.fromJson(Map json) => - _$TopologyPolygonFromJson(json); -} - -@JsonEnum(valueField: 'type') -enum TopologyArcType { - /// 海岸線 - coastline('coastline'), - - /// 県境 - admin('admin'), - - /// 一次細分化区域 - area('area'); - - const TopologyArcType(this.type); - final String type; -} diff --git a/packages/topo_map/lib/src/model/topology_map.freezed.dart b/packages/topo_map/lib/src/model/topology_map.freezed.dart deleted file mode 100644 index 1f8104b14..000000000 --- a/packages/topo_map/lib/src/model/topology_map.freezed.dart +++ /dev/null @@ -1,586 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'topology_map.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -TopologyMap _$TopologyMapFromJson(Map json) { - return _TopologyMap.fromJson(json); -} - -/// @nodoc -mixin _$TopologyMap { - DoubleVector get scale => throw _privateConstructorUsedError; - DoubleVector get translate => throw _privateConstructorUsedError; - List get polygons => throw _privateConstructorUsedError; - List get arcs => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $TopologyMapCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $TopologyMapCopyWith<$Res> { - factory $TopologyMapCopyWith( - TopologyMap value, $Res Function(TopologyMap) then) = - _$TopologyMapCopyWithImpl<$Res, TopologyMap>; - @useResult - $Res call( - {DoubleVector scale, - DoubleVector translate, - List polygons, - List arcs}); - - $DoubleVectorCopyWith<$Res> get scale; - $DoubleVectorCopyWith<$Res> get translate; -} - -/// @nodoc -class _$TopologyMapCopyWithImpl<$Res, $Val extends TopologyMap> - implements $TopologyMapCopyWith<$Res> { - _$TopologyMapCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? scale = null, - Object? translate = null, - Object? polygons = null, - Object? arcs = null, - }) { - return _then(_value.copyWith( - scale: null == scale - ? _value.scale - : scale // ignore: cast_nullable_to_non_nullable - as DoubleVector, - translate: null == translate - ? _value.translate - : translate // ignore: cast_nullable_to_non_nullable - as DoubleVector, - polygons: null == polygons - ? _value.polygons - : polygons // ignore: cast_nullable_to_non_nullable - as List, - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $DoubleVectorCopyWith<$Res> get scale { - return $DoubleVectorCopyWith<$Res>(_value.scale, (value) { - return _then(_value.copyWith(scale: value) as $Val); - }); - } - - @override - @pragma('vm:prefer-inline') - $DoubleVectorCopyWith<$Res> get translate { - return $DoubleVectorCopyWith<$Res>(_value.translate, (value) { - return _then(_value.copyWith(translate: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$TopologyMapImplCopyWith<$Res> - implements $TopologyMapCopyWith<$Res> { - factory _$$TopologyMapImplCopyWith( - _$TopologyMapImpl value, $Res Function(_$TopologyMapImpl) then) = - __$$TopologyMapImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {DoubleVector scale, - DoubleVector translate, - List polygons, - List arcs}); - - @override - $DoubleVectorCopyWith<$Res> get scale; - @override - $DoubleVectorCopyWith<$Res> get translate; -} - -/// @nodoc -class __$$TopologyMapImplCopyWithImpl<$Res> - extends _$TopologyMapCopyWithImpl<$Res, _$TopologyMapImpl> - implements _$$TopologyMapImplCopyWith<$Res> { - __$$TopologyMapImplCopyWithImpl( - _$TopologyMapImpl _value, $Res Function(_$TopologyMapImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? scale = null, - Object? translate = null, - Object? polygons = null, - Object? arcs = null, - }) { - return _then(_$TopologyMapImpl( - scale: null == scale - ? _value.scale - : scale // ignore: cast_nullable_to_non_nullable - as DoubleVector, - translate: null == translate - ? _value.translate - : translate // ignore: cast_nullable_to_non_nullable - as DoubleVector, - polygons: null == polygons - ? _value._polygons - : polygons // ignore: cast_nullable_to_non_nullable - as List, - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$TopologyMapImpl implements _TopologyMap { - const _$TopologyMapImpl( - {required this.scale, - required this.translate, - required final List polygons, - required final List arcs}) - : _polygons = polygons, - _arcs = arcs; - - factory _$TopologyMapImpl.fromJson(Map json) => - _$$TopologyMapImplFromJson(json); - - @override - final DoubleVector scale; - @override - final DoubleVector translate; - final List _polygons; - @override - List get polygons { - if (_polygons is EqualUnmodifiableListView) return _polygons; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_polygons); - } - - final List _arcs; - @override - List get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - @override - String toString() { - return 'TopologyMap(scale: $scale, translate: $translate, polygons: $polygons, arcs: $arcs)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$TopologyMapImpl && - (identical(other.scale, scale) || other.scale == scale) && - (identical(other.translate, translate) || - other.translate == translate) && - const DeepCollectionEquality().equals(other._polygons, _polygons) && - const DeepCollectionEquality().equals(other._arcs, _arcs)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - scale, - translate, - const DeepCollectionEquality().hash(_polygons), - const DeepCollectionEquality().hash(_arcs)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$TopologyMapImplCopyWith<_$TopologyMapImpl> get copyWith => - __$$TopologyMapImplCopyWithImpl<_$TopologyMapImpl>(this, _$identity); - - @override - Map toJson() { - return _$$TopologyMapImplToJson( - this, - ); - } -} - -abstract class _TopologyMap implements TopologyMap { - const factory _TopologyMap( - {required final DoubleVector scale, - required final DoubleVector translate, - required final List polygons, - required final List arcs}) = _$TopologyMapImpl; - - factory _TopologyMap.fromJson(Map json) = - _$TopologyMapImpl.fromJson; - - @override - DoubleVector get scale; - @override - DoubleVector get translate; - @override - List get polygons; - @override - List get arcs; - @override - @JsonKey(ignore: true) - _$$TopologyMapImplCopyWith<_$TopologyMapImpl> get copyWith => - throw _privateConstructorUsedError; -} - -TopologyArc _$TopologyArcFromJson(Map json) { - return _TopologyArc.fromJson(json); -} - -/// @nodoc -mixin _$TopologyArc { - List get arc => throw _privateConstructorUsedError; - TopologyArcType get type => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $TopologyArcCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $TopologyArcCopyWith<$Res> { - factory $TopologyArcCopyWith( - TopologyArc value, $Res Function(TopologyArc) then) = - _$TopologyArcCopyWithImpl<$Res, TopologyArc>; - @useResult - $Res call({List arc, TopologyArcType type}); -} - -/// @nodoc -class _$TopologyArcCopyWithImpl<$Res, $Val extends TopologyArc> - implements $TopologyArcCopyWith<$Res> { - _$TopologyArcCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? arc = null, - Object? type = null, - }) { - return _then(_value.copyWith( - arc: null == arc - ? _value.arc - : arc // ignore: cast_nullable_to_non_nullable - as List, - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopologyArcType, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$TopologyArcImplCopyWith<$Res> - implements $TopologyArcCopyWith<$Res> { - factory _$$TopologyArcImplCopyWith( - _$TopologyArcImpl value, $Res Function(_$TopologyArcImpl) then) = - __$$TopologyArcImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List arc, TopologyArcType type}); -} - -/// @nodoc -class __$$TopologyArcImplCopyWithImpl<$Res> - extends _$TopologyArcCopyWithImpl<$Res, _$TopologyArcImpl> - implements _$$TopologyArcImplCopyWith<$Res> { - __$$TopologyArcImplCopyWithImpl( - _$TopologyArcImpl _value, $Res Function(_$TopologyArcImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? arc = null, - Object? type = null, - }) { - return _then(_$TopologyArcImpl( - arc: null == arc - ? _value._arc - : arc // ignore: cast_nullable_to_non_nullable - as List, - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopologyArcType, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$TopologyArcImpl implements _TopologyArc { - const _$TopologyArcImpl( - {required final List arc, required this.type}) - : _arc = arc; - - factory _$TopologyArcImpl.fromJson(Map json) => - _$$TopologyArcImplFromJson(json); - - final List _arc; - @override - List get arc { - if (_arc is EqualUnmodifiableListView) return _arc; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arc); - } - - @override - final TopologyArcType type; - - @override - String toString() { - return 'TopologyArc(arc: $arc, type: $type)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$TopologyArcImpl && - const DeepCollectionEquality().equals(other._arc, _arc) && - (identical(other.type, type) || other.type == type)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => - Object.hash(runtimeType, const DeepCollectionEquality().hash(_arc), type); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$TopologyArcImplCopyWith<_$TopologyArcImpl> get copyWith => - __$$TopologyArcImplCopyWithImpl<_$TopologyArcImpl>(this, _$identity); - - @override - Map toJson() { - return _$$TopologyArcImplToJson( - this, - ); - } -} - -abstract class _TopologyArc implements TopologyArc { - const factory _TopologyArc( - {required final List arc, - required final TopologyArcType type}) = _$TopologyArcImpl; - - factory _TopologyArc.fromJson(Map json) = - _$TopologyArcImpl.fromJson; - - @override - List get arc; - @override - TopologyArcType get type; - @override - @JsonKey(ignore: true) - _$$TopologyArcImplCopyWith<_$TopologyArcImpl> get copyWith => - throw _privateConstructorUsedError; -} - -TopologyPolygon _$TopologyPolygonFromJson(Map json) { - return _TopologyPolygon.fromJson(json); -} - -/// @nodoc -mixin _$TopologyPolygon { - List> get arcs => throw _privateConstructorUsedError; - int? get areaCode => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $TopologyPolygonCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $TopologyPolygonCopyWith<$Res> { - factory $TopologyPolygonCopyWith( - TopologyPolygon value, $Res Function(TopologyPolygon) then) = - _$TopologyPolygonCopyWithImpl<$Res, TopologyPolygon>; - @useResult - $Res call({List> arcs, int? areaCode}); -} - -/// @nodoc -class _$TopologyPolygonCopyWithImpl<$Res, $Val extends TopologyPolygon> - implements $TopologyPolygonCopyWith<$Res> { - _$TopologyPolygonCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? arcs = null, - Object? areaCode = freezed, - }) { - return _then(_value.copyWith( - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>, - areaCode: freezed == areaCode - ? _value.areaCode - : areaCode // ignore: cast_nullable_to_non_nullable - as int?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$TopologyPolygonImplCopyWith<$Res> - implements $TopologyPolygonCopyWith<$Res> { - factory _$$TopologyPolygonImplCopyWith(_$TopologyPolygonImpl value, - $Res Function(_$TopologyPolygonImpl) then) = - __$$TopologyPolygonImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List> arcs, int? areaCode}); -} - -/// @nodoc -class __$$TopologyPolygonImplCopyWithImpl<$Res> - extends _$TopologyPolygonCopyWithImpl<$Res, _$TopologyPolygonImpl> - implements _$$TopologyPolygonImplCopyWith<$Res> { - __$$TopologyPolygonImplCopyWithImpl( - _$TopologyPolygonImpl _value, $Res Function(_$TopologyPolygonImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? arcs = null, - Object? areaCode = freezed, - }) { - return _then(_$TopologyPolygonImpl( - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>, - areaCode: freezed == areaCode - ? _value.areaCode - : areaCode // ignore: cast_nullable_to_non_nullable - as int?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$TopologyPolygonImpl implements _TopologyPolygon { - const _$TopologyPolygonImpl( - {required final List> arcs, required this.areaCode}) - : _arcs = arcs; - - factory _$TopologyPolygonImpl.fromJson(Map json) => - _$$TopologyPolygonImplFromJson(json); - - final List> _arcs; - @override - List> get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - @override - final int? areaCode; - - @override - String toString() { - return 'TopologyPolygon(arcs: $arcs, areaCode: $areaCode)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$TopologyPolygonImpl && - const DeepCollectionEquality().equals(other._arcs, _arcs) && - (identical(other.areaCode, areaCode) || - other.areaCode == areaCode)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, const DeepCollectionEquality().hash(_arcs), areaCode); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$TopologyPolygonImplCopyWith<_$TopologyPolygonImpl> get copyWith => - __$$TopologyPolygonImplCopyWithImpl<_$TopologyPolygonImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$TopologyPolygonImplToJson( - this, - ); - } -} - -abstract class _TopologyPolygon implements TopologyPolygon { - const factory _TopologyPolygon( - {required final List> arcs, - required final int? areaCode}) = _$TopologyPolygonImpl; - - factory _TopologyPolygon.fromJson(Map json) = - _$TopologyPolygonImpl.fromJson; - - @override - List> get arcs; - @override - int? get areaCode; - @override - @JsonKey(ignore: true) - _$$TopologyPolygonImplCopyWith<_$TopologyPolygonImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/packages/topo_map/lib/src/model/topology_map.g.dart b/packages/topo_map/lib/src/model/topology_map.g.dart deleted file mode 100644 index c6a8e33c9..000000000 --- a/packages/topo_map/lib/src/model/topology_map.g.dart +++ /dev/null @@ -1,99 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint - -part of 'topology_map.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$TopologyMapImpl _$$TopologyMapImplFromJson(Map json) => - $checkedCreate( - r'_$TopologyMapImpl', - json, - ($checkedConvert) { - final val = _$TopologyMapImpl( - scale: $checkedConvert( - 'scale', (v) => DoubleVector.fromJson(v as Map)), - translate: $checkedConvert('translate', - (v) => DoubleVector.fromJson(v as Map)), - polygons: $checkedConvert( - 'polygons', - (v) => (v as List) - .map((e) => - TopologyPolygon.fromJson(e as Map)) - .toList()), - arcs: $checkedConvert( - 'arcs', - (v) => (v as List) - .map((e) => TopologyArc.fromJson(e as Map)) - .toList()), - ); - return val; - }, - ); - -Map _$$TopologyMapImplToJson(_$TopologyMapImpl instance) => - { - 'scale': instance.scale, - 'translate': instance.translate, - 'polygons': instance.polygons, - 'arcs': instance.arcs, - }; - -_$TopologyArcImpl _$$TopologyArcImplFromJson(Map json) => - $checkedCreate( - r'_$TopologyArcImpl', - json, - ($checkedConvert) { - final val = _$TopologyArcImpl( - arc: $checkedConvert( - 'arc', - (v) => (v as List) - .map((e) => IntVector.fromJson(e as Map)) - .toList()), - type: $checkedConvert( - 'type', (v) => $enumDecode(_$TopologyArcTypeEnumMap, v)), - ); - return val; - }, - ); - -Map _$$TopologyArcImplToJson(_$TopologyArcImpl instance) => - { - 'arc': instance.arc, - 'type': _$TopologyArcTypeEnumMap[instance.type]!, - }; - -const _$TopologyArcTypeEnumMap = { - TopologyArcType.coastline: 'coastline', - TopologyArcType.admin: 'admin', - TopologyArcType.area: 'area', -}; - -_$TopologyPolygonImpl _$$TopologyPolygonImplFromJson( - Map json) => - $checkedCreate( - r'_$TopologyPolygonImpl', - json, - ($checkedConvert) { - final val = _$TopologyPolygonImpl( - arcs: $checkedConvert( - 'arcs', - (v) => (v as List) - .map( - (e) => (e as List).map((e) => e as int).toList()) - .toList()), - areaCode: $checkedConvert('areaCode', (v) => v as int?), - ); - return val; - }, - ); - -Map _$$TopologyPolygonImplToJson( - _$TopologyPolygonImpl instance) => - { - 'arcs': instance.arcs, - 'areaCode': instance.areaCode, - }; diff --git a/packages/topo_map/lib/topo_map.dart b/packages/topo_map/lib/topo_map.dart deleted file mode 100644 index ad3ef952f..000000000 --- a/packages/topo_map/lib/topo_map.dart +++ /dev/null @@ -1,2 +0,0 @@ -export 'src/enum/land_layer_type.dart'; -export 'src/model/topology_map.dart'; diff --git a/packages/topo_map/lib/util/create_map.dart b/packages/topo_map/lib/util/create_map.dart deleted file mode 100644 index 0acbef934..000000000 --- a/packages/topo_map/lib/util/create_map.dart +++ /dev/null @@ -1,147 +0,0 @@ -import 'package:collection/collection.dart'; -import 'package:extensions/extensions.dart'; -import 'package:topo_map/src/enum/land_layer_type.dart'; -import 'package:topo_map/src/model/topology_map.dart'; -import 'package:topojson/topojson.dart'; - -TopologyMap createMap(TopoJson json, LandLayerType layerType) { - final base = TopologyMap( - scale: - DoubleVector(x: json.transform!.scale[1], y: json.transform!.scale[0]), - translate: DoubleVector( - x: json.transform!.translate[1], - y: json.transform!.translate[0], - ), - polygons: [], - arcs: [], - ); - print('ポリゴンの処理を開始'); - final resultPolygons = []; - - for (final obj in json.objects.values) { - for (final geo in (obj as GeometryCollection).geometries) { - switch (geo.type) { - case TopoJsonGeometryType.polygon: - final arcs = (geo as Polygon).arcs; - resultPolygons.add( - TopologyPolygon( - arcs: arcs, - areaCode: int.tryParse( - geo.properties?.getOrNull('code').toString() ?? '', - ) ?? - int.tryParse( - geo.properties - ?.getOrNull('regioncode') - .toString() ?? - '', - ) ?? - int.tryParse( - geo.properties?.getOrNull('ISO_N3').toString() ?? - '', - ), - ), - ); - case TopoJsonGeometryType.multiPolygon: - for (final arcs in (geo as MultiPolygon).arcs) { - resultPolygons.add( - TopologyPolygon( - arcs: arcs, - areaCode: int.tryParse( - geo.properties?.getOrNull('code').toString() ?? - '', - ) ?? - int.tryParse( - geo.properties - ?.getOrNull('regioncode') - .toString() ?? - '', - ) ?? - int.tryParse( - geo.properties?.getOrNull('ISO_N3').toString() ?? - '', - ), - ), - ); - } - - case TopoJsonGeometryType.lineString - when layerType == LandLayerType.tsunamiForecastArea: - final arcs = (geo as LineString).arcs; - resultPolygons.add( - TopologyPolygon( - arcs: [arcs], - areaCode: int.tryParse( - geo.properties?.getOrNull('code').toString() ?? '', - ), - ), - ); - case TopoJsonGeometryType.multiLineString - when layerType == LandLayerType.tsunamiForecastArea: - for (final arcs in (geo as MultiLineString).arcs) { - resultPolygons.add( - TopologyPolygon( - arcs: [arcs], - areaCode: int.tryParse( - geo.properties?.getOrNull('code').toString() ?? '', - ), - ), - ); - } - case _: - break; - } - } - } - - print('$layerType: ${resultPolygons.length}個のポリゴンが処理されました'); - print('$layerType: 境界線を処理しています...'); - - // 境界線の処理 - final resultArcs = json.getArcs.mapIndexed((index, arc) { - // 当該するPolylineを利用しているポリゴンを取得 - final refPolygons = resultPolygons - .where( - (e) => e.arcs.any( - (arc) => arc.any((i) => (i < 0 ? i.abs() - 1 : i) == index), - ), - ) - .toList(); - print(refPolygons.map((e) => e.areaCode)); - final TopologyArcType arcType; - // このPolylineを利用しているポリゴンが1つのみだったら 海岸線 - if (refPolygons.length <= 1) { - arcType = TopologyArcType.coastline; - } else if (refPolygons - .where((polygon) => polygon.areaCode != null) - .groupListsBy( - (polygon) => polygon.areaCode! ~/ layerType.multiAreaGroupNo, - ) - .length >= - 2) { - // このPolylineを参照しているポリゴンのcode すべて一致するなら 県境 - arcType = TopologyArcType.admin; - } else { - // そうでもないなら 一次細分区域 - arcType = TopologyArcType.area; - } - print(arcType); - return TopologyArc( - arc: arc, - type: arcType, - ); - }).toList(); - - return base.copyWith( - polygons: resultPolygons, - arcs: resultArcs, - ); -} - -extension MapSafetyAccess on Map { - String? getOrNull(String key) { - if (containsKey(key)) { - return this[key]; - } - return null; - } -} diff --git a/packages/topo_map/pubspec.yaml b/packages/topo_map/pubspec.yaml deleted file mode 100644 index 2beb71074..000000000 --- a/packages/topo_map/pubspec.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: topo_map -description: A starting point for Dart libraries or applications. -version: 1.0.1 -publish_to: "none" - -environment: - sdk: ^3.0.3 - -dependencies: - collection: ^1.17.1 - extensions: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/extensions - freezed_annotation: ^2.2.0 - json_annotation: ^4.8.1 - topojson: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/topojson - -dev_dependencies: - build_runner: ^2.4.4 - freezed: ^2.3.4 - json_serializable: ^6.7.0 - lints: ^2.0.0 - pedantic_mono: ^1.23.0 - test: ^1.21.0 - -executables: - topojsonconverter: diff --git a/packages/topo_map/pubspec_overrides.yaml b/packages/topo_map/pubspec_overrides.yaml deleted file mode 100644 index 0e0718cae..000000000 --- a/packages/topo_map/pubspec_overrides.yaml +++ /dev/null @@ -1,6 +0,0 @@ -# melos_managed_dependency_overrides: extensions,topojson -dependency_overrides: - extensions: - path: ../extensions - topojson: - path: ../topojson diff --git a/packages/topojson/CHANGELOG.md b/packages/topojson/CHANGELOG.md deleted file mode 100644 index 957bc3434..000000000 --- a/packages/topojson/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -## 1.0.1 - -- **FIX**: dependencies. ([b3d9197e](/~https://github.com/YumNumm/EQMonitor/commit/b3d9197e8a69f5818eaf9c91ce0df51926a6d85b)) - -## 1.0.0 - -- Initial version. diff --git a/packages/topojson/LICENSE b/packages/topojson/LICENSE deleted file mode 100644 index 480f9293d..000000000 --- a/packages/topojson/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2023 YumNumm - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/packages/topojson/README.md b/packages/topojson/README.md deleted file mode 100644 index 8b55e735b..000000000 --- a/packages/topojson/README.md +++ /dev/null @@ -1,39 +0,0 @@ - - -TODO: Put a short description of the package here that helps potential users -know whether this package might be useful for them. - -## Features - -TODO: List what your package can do. Maybe include images, gifs, or videos. - -## Getting started - -TODO: List prerequisites and provide or point to information on how to -start using the package. - -## Usage - -TODO: Include short and useful examples for package users. Add longer examples -to `/example` folder. - -```dart -const like = 'sample'; -``` - -## Additional information - -TODO: Tell users more about the package: where to find more information, how to -contribute to the package, how to file issues, what response they can expect -from the package authors, and more. diff --git a/packages/topojson/analysis_options.yaml b/packages/topojson/analysis_options.yaml deleted file mode 100644 index 6f8d6d437..000000000 --- a/packages/topojson/analysis_options.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# https://pub.dev/packages/pedantic_mono -include: package:pedantic_mono/analysis_options.yaml - -analyzer: - exclude: - - "**/*.g.dart" - - "**/*.freezed.dart" - language: - strict-casts: true - strict-inference: true - strict-raw-types: true - plugins: - - custom_lint - errors: - invalid_annotation_target: ignore - -linter: - rules: - always_use_package_imports: true diff --git a/packages/topojson/bin/.gitignore b/packages/topojson/bin/.gitignore deleted file mode 100644 index 442364c86..000000000 --- a/packages/topojson/bin/.gitignore +++ /dev/null @@ -1 +0,0 @@ -sample.json \ No newline at end of file diff --git a/packages/topojson/bin/topojson.dart b/packages/topojson/bin/topojson.dart deleted file mode 100644 index 4c713af58..000000000 --- a/packages/topojson/bin/topojson.dart +++ /dev/null @@ -1,32 +0,0 @@ -// ignore_for_file: avoid_print - -import 'dart:convert'; -import 'dart:io'; - -import 'package:topojson/topojson.dart'; - -Future main() async { - final data = File('sample.json').readAsStringSync(); - final stopwatch = Stopwatch()..start(); - - final json = jsonDecode(data) as Map; - final topoJson = TopoJson.fromJson(json); - stopwatch.stop(); - print(topoJson.objects.keys); - topoJson.objects.forEach((key, value) { - if (value.type == TopoJsonGeometryType.geometryCollection) { - final geometryCollection = value as GeometryCollection; - print('***** loop *****'); - for (final element in geometryCollection.geometries) { - print(element.type); - } - print( - '***** end (items: ${geometryCollection.geometries.length}) *****', - ); - } - }); - print(''); - print( - '***** parse end (time: ${stopwatch.elapsedMicroseconds / 1000} ms) *****', - ); -} diff --git a/packages/topojson/lib/src/topo_json.dart b/packages/topojson/lib/src/topo_json.dart deleted file mode 100644 index c1ad4f564..000000000 --- a/packages/topojson/lib/src/topo_json.dart +++ /dev/null @@ -1,35 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:topojson/topojson.dart'; - -part 'topo_json.freezed.dart'; -part 'topo_json.g.dart'; - -@freezed -class TopoJson with _$TopoJson { - const factory TopoJson({ - required String type, - required TopoJsonTransform? transform, - required Map objects, - required List>> arcs, - }) = _TopoJson; - - factory TopoJson.fromJson(Map json) => - _$TopoJsonFromJson(json); -} - -extension TopoJsonArcs on TopoJson { - List> get getArcs { - return arcs - .map( - (e1) => e1 - .map( - (e2) => IntVector( - x: e2[1], - y: e2[0], - ), - ) - .toList(), - ) - .toList(); - } -} diff --git a/packages/topojson/lib/src/topo_json.freezed.dart b/packages/topojson/lib/src/topo_json.freezed.dart deleted file mode 100644 index 63906940b..000000000 --- a/packages/topojson/lib/src/topo_json.freezed.dart +++ /dev/null @@ -1,251 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'topo_json.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -TopoJson _$TopoJsonFromJson(Map json) { - return _TopoJson.fromJson(json); -} - -/// @nodoc -mixin _$TopoJson { - String get type => throw _privateConstructorUsedError; - TopoJsonTransform? get transform => throw _privateConstructorUsedError; - Map get objects => - throw _privateConstructorUsedError; - List>> get arcs => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $TopoJsonCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $TopoJsonCopyWith<$Res> { - factory $TopoJsonCopyWith(TopoJson value, $Res Function(TopoJson) then) = - _$TopoJsonCopyWithImpl<$Res, TopoJson>; - @useResult - $Res call( - {String type, - TopoJsonTransform? transform, - Map objects, - List>> arcs}); - - $TopoJsonTransformCopyWith<$Res>? get transform; -} - -/// @nodoc -class _$TopoJsonCopyWithImpl<$Res, $Val extends TopoJson> - implements $TopoJsonCopyWith<$Res> { - _$TopoJsonCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? transform = freezed, - Object? objects = null, - Object? arcs = null, - }) { - return _then(_value.copyWith( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as String, - transform: freezed == transform - ? _value.transform - : transform // ignore: cast_nullable_to_non_nullable - as TopoJsonTransform?, - objects: null == objects - ? _value.objects - : objects // ignore: cast_nullable_to_non_nullable - as Map, - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>>, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $TopoJsonTransformCopyWith<$Res>? get transform { - if (_value.transform == null) { - return null; - } - - return $TopoJsonTransformCopyWith<$Res>(_value.transform!, (value) { - return _then(_value.copyWith(transform: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$TopoJsonImplCopyWith<$Res> - implements $TopoJsonCopyWith<$Res> { - factory _$$TopoJsonImplCopyWith( - _$TopoJsonImpl value, $Res Function(_$TopoJsonImpl) then) = - __$$TopoJsonImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String type, - TopoJsonTransform? transform, - Map objects, - List>> arcs}); - - @override - $TopoJsonTransformCopyWith<$Res>? get transform; -} - -/// @nodoc -class __$$TopoJsonImplCopyWithImpl<$Res> - extends _$TopoJsonCopyWithImpl<$Res, _$TopoJsonImpl> - implements _$$TopoJsonImplCopyWith<$Res> { - __$$TopoJsonImplCopyWithImpl( - _$TopoJsonImpl _value, $Res Function(_$TopoJsonImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? transform = freezed, - Object? objects = null, - Object? arcs = null, - }) { - return _then(_$TopoJsonImpl( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as String, - transform: freezed == transform - ? _value.transform - : transform // ignore: cast_nullable_to_non_nullable - as TopoJsonTransform?, - objects: null == objects - ? _value._objects - : objects // ignore: cast_nullable_to_non_nullable - as Map, - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>>, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$TopoJsonImpl implements _TopoJson { - const _$TopoJsonImpl( - {required this.type, - required this.transform, - required final Map objects, - required final List>> arcs}) - : _objects = objects, - _arcs = arcs; - - factory _$TopoJsonImpl.fromJson(Map json) => - _$$TopoJsonImplFromJson(json); - - @override - final String type; - @override - final TopoJsonTransform? transform; - final Map _objects; - @override - Map get objects { - if (_objects is EqualUnmodifiableMapView) return _objects; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(_objects); - } - - final List>> _arcs; - @override - List>> get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - @override - String toString() { - return 'TopoJson(type: $type, transform: $transform, objects: $objects, arcs: $arcs)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$TopoJsonImpl && - (identical(other.type, type) || other.type == type) && - (identical(other.transform, transform) || - other.transform == transform) && - const DeepCollectionEquality().equals(other._objects, _objects) && - const DeepCollectionEquality().equals(other._arcs, _arcs)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - type, - transform, - const DeepCollectionEquality().hash(_objects), - const DeepCollectionEquality().hash(_arcs)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$TopoJsonImplCopyWith<_$TopoJsonImpl> get copyWith => - __$$TopoJsonImplCopyWithImpl<_$TopoJsonImpl>(this, _$identity); - - @override - Map toJson() { - return _$$TopoJsonImplToJson( - this, - ); - } -} - -abstract class _TopoJson implements TopoJson { - const factory _TopoJson( - {required final String type, - required final TopoJsonTransform? transform, - required final Map objects, - required final List>> arcs}) = _$TopoJsonImpl; - - factory _TopoJson.fromJson(Map json) = - _$TopoJsonImpl.fromJson; - - @override - String get type; - @override - TopoJsonTransform? get transform; - @override - Map get objects; - @override - List>> get arcs; - @override - @JsonKey(ignore: true) - _$$TopoJsonImplCopyWith<_$TopoJsonImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/packages/topojson/lib/src/topo_json.g.dart b/packages/topojson/lib/src/topo_json.g.dart deleted file mode 100644 index 09c14da72..000000000 --- a/packages/topojson/lib/src/topo_json.g.dart +++ /dev/null @@ -1,50 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint - -part of 'topo_json.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$TopoJsonImpl _$$TopoJsonImplFromJson(Map json) => - $checkedCreate( - r'_$TopoJsonImpl', - json, - ($checkedConvert) { - final val = _$TopoJsonImpl( - type: $checkedConvert('type', (v) => v as String), - transform: $checkedConvert( - 'transform', - (v) => v == null - ? null - : TopoJsonTransform.fromJson(v as Map)), - objects: $checkedConvert( - 'objects', - (v) => (v as Map).map( - (k, e) => MapEntry( - k, - TopoJsonGeometryObject.fromJson( - e as Map)), - )), - arcs: $checkedConvert( - 'arcs', - (v) => (v as List) - .map((e) => (e as List) - .map((e) => - (e as List).map((e) => e as int).toList()) - .toList()) - .toList()), - ); - return val; - }, - ); - -Map _$$TopoJsonImplToJson(_$TopoJsonImpl instance) => - { - 'type': instance.type, - 'transform': instance.transform, - 'objects': instance.objects, - 'arcs': instance.arcs, - }; diff --git a/packages/topojson/lib/src/topo_json_geometry.dart b/packages/topojson/lib/src/topo_json_geometry.dart deleted file mode 100644 index 4072700f0..000000000 --- a/packages/topojson/lib/src/topo_json_geometry.dart +++ /dev/null @@ -1,140 +0,0 @@ -import 'package:collection/collection.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:topojson/src/topo_json_geometry_type.dart'; - -part 'topo_json_geometry.freezed.dart'; -part 'topo_json_geometry.g.dart'; - -sealed class TopoJsonGeometryObject { - - const TopoJsonGeometryObject({ - this.type, - this.properties, - }); - - factory TopoJsonGeometryObject.fromJson(Map json) { - final type = TopoJsonGeometryType.values - .firstWhereOrNull((e) => e.type == json['type']); - switch (type) { - case TopoJsonGeometryType.polygon: - return Polygon.fromJson(json); - case TopoJsonGeometryType.multiPolygon: - return MultiPolygon.fromJson(json); - case TopoJsonGeometryType.geometryCollection: - return GeometryCollection.fromJson(json); - case TopoJsonGeometryType.lineString: - return LineString.fromJson(json); - case TopoJsonGeometryType.multiLineString: - return MultiLineString.fromJson(json); - case null: - return NullGeometryObject.fromJson(json); - } - } - final TopoJsonGeometryType? type; - final Map? properties; - - Map toJson() { - switch (type) { - case TopoJsonGeometryType.polygon: - return (this as Polygon).toJson(); - case TopoJsonGeometryType.multiPolygon: - return (this as MultiPolygon).toJson(); - case TopoJsonGeometryType.geometryCollection: - return (this as GeometryCollection).toJson(); - case TopoJsonGeometryType.lineString: - return (this as LineString).toJson(); - case TopoJsonGeometryType.multiLineString: - return (this as MultiLineString).toJson(); - case null: - return { - if (properties != null) - 'properties': properties, - 'type': null, - }; - } - } -} - -// 2.1.1 Positions -typedef Positions = List; - -// 2.1.3 Arcs -typedef Arc = List; - -// 2.1.4 Arc Indexes -typedef ArcIndexes = List; - -@freezed -class LineString with _$LineString implements TopoJsonGeometryObject { - const factory LineString({ - required TopoJsonGeometryType type, - required ArcIndexes arcs, - required Map? properties, - }) = _LineString; - - factory LineString.fromJson(Map json) => - _$LineStringFromJson(json); -} - -@freezed -class MultiLineString with _$MultiLineString implements TopoJsonGeometryObject { - const factory MultiLineString({ - required TopoJsonGeometryType type, - required List arcs, - required Map? properties, - }) = _MultiLineString; - - factory MultiLineString.fromJson(Map json) => - _$MultiLineStringFromJson(json); -} - -@freezed -class Polygon with _$Polygon implements TopoJsonGeometryObject { - const factory Polygon({ - required TopoJsonGeometryType type, - required List arcs, - required Map? properties, - }) = _Polygon; - - factory Polygon.fromJson(Map json) => - _$PolygonFromJson(json); -} - -@freezed -class MultiPolygon with _$MultiPolygon implements TopoJsonGeometryObject { - const factory MultiPolygon({ - required TopoJsonGeometryType type, - required List> arcs, - required Map? properties, - }) = _MultiPolygon; - - factory MultiPolygon.fromJson(Map json) => - _$MultiPolygonFromJson(json); -} - -@freezed -class GeometryCollection - with _$GeometryCollection - implements TopoJsonGeometryObject { - const factory GeometryCollection({ - required TopoJsonGeometryType type, - required List geometries, - required Map? properties, - }) = _GeometryCollection; - - factory GeometryCollection.fromJson(Map json) => - _$GeometryCollectionFromJson(json); -} - -@freezed -class NullGeometryObject - with _$NullGeometryObject - implements TopoJsonGeometryObject { - const factory NullGeometryObject({ - required TopoJsonGeometryType? type, - required Map? properties, - }) = _NullGeometryObject; - - factory NullGeometryObject.fromJson(Map json) => - _$NullGeometryObjectFromJson(json); -} diff --git a/packages/topojson/lib/src/topo_json_geometry.freezed.dart b/packages/topojson/lib/src/topo_json_geometry.freezed.dart deleted file mode 100644 index 8ff32723e..000000000 --- a/packages/topojson/lib/src/topo_json_geometry.freezed.dart +++ /dev/null @@ -1,1183 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'topo_json_geometry.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -LineString _$LineStringFromJson(Map json) { - return _LineString.fromJson(json); -} - -/// @nodoc -mixin _$LineString { - TopoJsonGeometryType get type => throw _privateConstructorUsedError; - List get arcs => throw _privateConstructorUsedError; - Map? get properties => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $LineStringCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $LineStringCopyWith<$Res> { - factory $LineStringCopyWith( - LineString value, $Res Function(LineString) then) = - _$LineStringCopyWithImpl<$Res, LineString>; - @useResult - $Res call( - {TopoJsonGeometryType type, - List arcs, - Map? properties}); -} - -/// @nodoc -class _$LineStringCopyWithImpl<$Res, $Val extends LineString> - implements $LineStringCopyWith<$Res> { - _$LineStringCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_value.copyWith( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List, - properties: freezed == properties - ? _value.properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$LineStringImplCopyWith<$Res> - implements $LineStringCopyWith<$Res> { - factory _$$LineStringImplCopyWith( - _$LineStringImpl value, $Res Function(_$LineStringImpl) then) = - __$$LineStringImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {TopoJsonGeometryType type, - List arcs, - Map? properties}); -} - -/// @nodoc -class __$$LineStringImplCopyWithImpl<$Res> - extends _$LineStringCopyWithImpl<$Res, _$LineStringImpl> - implements _$$LineStringImplCopyWith<$Res> { - __$$LineStringImplCopyWithImpl( - _$LineStringImpl _value, $Res Function(_$LineStringImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_$LineStringImpl( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List, - properties: freezed == properties - ? _value._properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$LineStringImpl implements _LineString { - const _$LineStringImpl( - {required this.type, - required final List arcs, - required final Map? properties}) - : _arcs = arcs, - _properties = properties; - - factory _$LineStringImpl.fromJson(Map json) => - _$$LineStringImplFromJson(json); - - @override - final TopoJsonGeometryType type; - final List _arcs; - @override - List get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - final Map? _properties; - @override - Map? get properties { - final value = _properties; - if (value == null) return null; - if (_properties is EqualUnmodifiableMapView) return _properties; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'LineString(type: $type, arcs: $arcs, properties: $properties)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$LineStringImpl && - (identical(other.type, type) || other.type == type) && - const DeepCollectionEquality().equals(other._arcs, _arcs) && - const DeepCollectionEquality() - .equals(other._properties, _properties)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - type, - const DeepCollectionEquality().hash(_arcs), - const DeepCollectionEquality().hash(_properties)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$LineStringImplCopyWith<_$LineStringImpl> get copyWith => - __$$LineStringImplCopyWithImpl<_$LineStringImpl>(this, _$identity); - - @override - Map toJson() { - return _$$LineStringImplToJson( - this, - ); - } -} - -abstract class _LineString implements LineString { - const factory _LineString( - {required final TopoJsonGeometryType type, - required final List arcs, - required final Map? properties}) = _$LineStringImpl; - - factory _LineString.fromJson(Map json) = - _$LineStringImpl.fromJson; - - @override - TopoJsonGeometryType get type; - @override - List get arcs; - @override - Map? get properties; - @override - @JsonKey(ignore: true) - _$$LineStringImplCopyWith<_$LineStringImpl> get copyWith => - throw _privateConstructorUsedError; -} - -MultiLineString _$MultiLineStringFromJson(Map json) { - return _MultiLineString.fromJson(json); -} - -/// @nodoc -mixin _$MultiLineString { - TopoJsonGeometryType get type => throw _privateConstructorUsedError; - List> get arcs => throw _privateConstructorUsedError; - Map? get properties => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $MultiLineStringCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MultiLineStringCopyWith<$Res> { - factory $MultiLineStringCopyWith( - MultiLineString value, $Res Function(MultiLineString) then) = - _$MultiLineStringCopyWithImpl<$Res, MultiLineString>; - @useResult - $Res call( - {TopoJsonGeometryType type, - List> arcs, - Map? properties}); -} - -/// @nodoc -class _$MultiLineStringCopyWithImpl<$Res, $Val extends MultiLineString> - implements $MultiLineStringCopyWith<$Res> { - _$MultiLineStringCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_value.copyWith( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>, - properties: freezed == properties - ? _value.properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$MultiLineStringImplCopyWith<$Res> - implements $MultiLineStringCopyWith<$Res> { - factory _$$MultiLineStringImplCopyWith(_$MultiLineStringImpl value, - $Res Function(_$MultiLineStringImpl) then) = - __$$MultiLineStringImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {TopoJsonGeometryType type, - List> arcs, - Map? properties}); -} - -/// @nodoc -class __$$MultiLineStringImplCopyWithImpl<$Res> - extends _$MultiLineStringCopyWithImpl<$Res, _$MultiLineStringImpl> - implements _$$MultiLineStringImplCopyWith<$Res> { - __$$MultiLineStringImplCopyWithImpl( - _$MultiLineStringImpl _value, $Res Function(_$MultiLineStringImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_$MultiLineStringImpl( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>, - properties: freezed == properties - ? _value._properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MultiLineStringImpl implements _MultiLineString { - const _$MultiLineStringImpl( - {required this.type, - required final List> arcs, - required final Map? properties}) - : _arcs = arcs, - _properties = properties; - - factory _$MultiLineStringImpl.fromJson(Map json) => - _$$MultiLineStringImplFromJson(json); - - @override - final TopoJsonGeometryType type; - final List> _arcs; - @override - List> get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - final Map? _properties; - @override - Map? get properties { - final value = _properties; - if (value == null) return null; - if (_properties is EqualUnmodifiableMapView) return _properties; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'MultiLineString(type: $type, arcs: $arcs, properties: $properties)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MultiLineStringImpl && - (identical(other.type, type) || other.type == type) && - const DeepCollectionEquality().equals(other._arcs, _arcs) && - const DeepCollectionEquality() - .equals(other._properties, _properties)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - type, - const DeepCollectionEquality().hash(_arcs), - const DeepCollectionEquality().hash(_properties)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MultiLineStringImplCopyWith<_$MultiLineStringImpl> get copyWith => - __$$MultiLineStringImplCopyWithImpl<_$MultiLineStringImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$MultiLineStringImplToJson( - this, - ); - } -} - -abstract class _MultiLineString implements MultiLineString { - const factory _MultiLineString( - {required final TopoJsonGeometryType type, - required final List> arcs, - required final Map? properties}) = _$MultiLineStringImpl; - - factory _MultiLineString.fromJson(Map json) = - _$MultiLineStringImpl.fromJson; - - @override - TopoJsonGeometryType get type; - @override - List> get arcs; - @override - Map? get properties; - @override - @JsonKey(ignore: true) - _$$MultiLineStringImplCopyWith<_$MultiLineStringImpl> get copyWith => - throw _privateConstructorUsedError; -} - -Polygon _$PolygonFromJson(Map json) { - return _Polygon.fromJson(json); -} - -/// @nodoc -mixin _$Polygon { - TopoJsonGeometryType get type => throw _privateConstructorUsedError; - List> get arcs => throw _privateConstructorUsedError; - Map? get properties => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $PolygonCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $PolygonCopyWith<$Res> { - factory $PolygonCopyWith(Polygon value, $Res Function(Polygon) then) = - _$PolygonCopyWithImpl<$Res, Polygon>; - @useResult - $Res call( - {TopoJsonGeometryType type, - List> arcs, - Map? properties}); -} - -/// @nodoc -class _$PolygonCopyWithImpl<$Res, $Val extends Polygon> - implements $PolygonCopyWith<$Res> { - _$PolygonCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_value.copyWith( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>, - properties: freezed == properties - ? _value.properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$PolygonImplCopyWith<$Res> implements $PolygonCopyWith<$Res> { - factory _$$PolygonImplCopyWith( - _$PolygonImpl value, $Res Function(_$PolygonImpl) then) = - __$$PolygonImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {TopoJsonGeometryType type, - List> arcs, - Map? properties}); -} - -/// @nodoc -class __$$PolygonImplCopyWithImpl<$Res> - extends _$PolygonCopyWithImpl<$Res, _$PolygonImpl> - implements _$$PolygonImplCopyWith<$Res> { - __$$PolygonImplCopyWithImpl( - _$PolygonImpl _value, $Res Function(_$PolygonImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_$PolygonImpl( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>, - properties: freezed == properties - ? _value._properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$PolygonImpl implements _Polygon { - const _$PolygonImpl( - {required this.type, - required final List> arcs, - required final Map? properties}) - : _arcs = arcs, - _properties = properties; - - factory _$PolygonImpl.fromJson(Map json) => - _$$PolygonImplFromJson(json); - - @override - final TopoJsonGeometryType type; - final List> _arcs; - @override - List> get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - final Map? _properties; - @override - Map? get properties { - final value = _properties; - if (value == null) return null; - if (_properties is EqualUnmodifiableMapView) return _properties; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'Polygon(type: $type, arcs: $arcs, properties: $properties)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$PolygonImpl && - (identical(other.type, type) || other.type == type) && - const DeepCollectionEquality().equals(other._arcs, _arcs) && - const DeepCollectionEquality() - .equals(other._properties, _properties)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - type, - const DeepCollectionEquality().hash(_arcs), - const DeepCollectionEquality().hash(_properties)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$PolygonImplCopyWith<_$PolygonImpl> get copyWith => - __$$PolygonImplCopyWithImpl<_$PolygonImpl>(this, _$identity); - - @override - Map toJson() { - return _$$PolygonImplToJson( - this, - ); - } -} - -abstract class _Polygon implements Polygon { - const factory _Polygon( - {required final TopoJsonGeometryType type, - required final List> arcs, - required final Map? properties}) = _$PolygonImpl; - - factory _Polygon.fromJson(Map json) = _$PolygonImpl.fromJson; - - @override - TopoJsonGeometryType get type; - @override - List> get arcs; - @override - Map? get properties; - @override - @JsonKey(ignore: true) - _$$PolygonImplCopyWith<_$PolygonImpl> get copyWith => - throw _privateConstructorUsedError; -} - -MultiPolygon _$MultiPolygonFromJson(Map json) { - return _MultiPolygon.fromJson(json); -} - -/// @nodoc -mixin _$MultiPolygon { - TopoJsonGeometryType get type => throw _privateConstructorUsedError; - List>> get arcs => throw _privateConstructorUsedError; - Map? get properties => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $MultiPolygonCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MultiPolygonCopyWith<$Res> { - factory $MultiPolygonCopyWith( - MultiPolygon value, $Res Function(MultiPolygon) then) = - _$MultiPolygonCopyWithImpl<$Res, MultiPolygon>; - @useResult - $Res call( - {TopoJsonGeometryType type, - List>> arcs, - Map? properties}); -} - -/// @nodoc -class _$MultiPolygonCopyWithImpl<$Res, $Val extends MultiPolygon> - implements $MultiPolygonCopyWith<$Res> { - _$MultiPolygonCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_value.copyWith( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value.arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>>, - properties: freezed == properties - ? _value.properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$MultiPolygonImplCopyWith<$Res> - implements $MultiPolygonCopyWith<$Res> { - factory _$$MultiPolygonImplCopyWith( - _$MultiPolygonImpl value, $Res Function(_$MultiPolygonImpl) then) = - __$$MultiPolygonImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {TopoJsonGeometryType type, - List>> arcs, - Map? properties}); -} - -/// @nodoc -class __$$MultiPolygonImplCopyWithImpl<$Res> - extends _$MultiPolygonCopyWithImpl<$Res, _$MultiPolygonImpl> - implements _$$MultiPolygonImplCopyWith<$Res> { - __$$MultiPolygonImplCopyWithImpl( - _$MultiPolygonImpl _value, $Res Function(_$MultiPolygonImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? arcs = null, - Object? properties = freezed, - }) { - return _then(_$MultiPolygonImpl( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - arcs: null == arcs - ? _value._arcs - : arcs // ignore: cast_nullable_to_non_nullable - as List>>, - properties: freezed == properties - ? _value._properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MultiPolygonImpl implements _MultiPolygon { - const _$MultiPolygonImpl( - {required this.type, - required final List>> arcs, - required final Map? properties}) - : _arcs = arcs, - _properties = properties; - - factory _$MultiPolygonImpl.fromJson(Map json) => - _$$MultiPolygonImplFromJson(json); - - @override - final TopoJsonGeometryType type; - final List>> _arcs; - @override - List>> get arcs { - if (_arcs is EqualUnmodifiableListView) return _arcs; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_arcs); - } - - final Map? _properties; - @override - Map? get properties { - final value = _properties; - if (value == null) return null; - if (_properties is EqualUnmodifiableMapView) return _properties; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'MultiPolygon(type: $type, arcs: $arcs, properties: $properties)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MultiPolygonImpl && - (identical(other.type, type) || other.type == type) && - const DeepCollectionEquality().equals(other._arcs, _arcs) && - const DeepCollectionEquality() - .equals(other._properties, _properties)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - type, - const DeepCollectionEquality().hash(_arcs), - const DeepCollectionEquality().hash(_properties)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MultiPolygonImplCopyWith<_$MultiPolygonImpl> get copyWith => - __$$MultiPolygonImplCopyWithImpl<_$MultiPolygonImpl>(this, _$identity); - - @override - Map toJson() { - return _$$MultiPolygonImplToJson( - this, - ); - } -} - -abstract class _MultiPolygon implements MultiPolygon { - const factory _MultiPolygon( - {required final TopoJsonGeometryType type, - required final List>> arcs, - required final Map? properties}) = _$MultiPolygonImpl; - - factory _MultiPolygon.fromJson(Map json) = - _$MultiPolygonImpl.fromJson; - - @override - TopoJsonGeometryType get type; - @override - List>> get arcs; - @override - Map? get properties; - @override - @JsonKey(ignore: true) - _$$MultiPolygonImplCopyWith<_$MultiPolygonImpl> get copyWith => - throw _privateConstructorUsedError; -} - -GeometryCollection _$GeometryCollectionFromJson(Map json) { - return _GeometryCollection.fromJson(json); -} - -/// @nodoc -mixin _$GeometryCollection { - TopoJsonGeometryType get type => throw _privateConstructorUsedError; - List get geometries => - throw _privateConstructorUsedError; - Map? get properties => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $GeometryCollectionCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $GeometryCollectionCopyWith<$Res> { - factory $GeometryCollectionCopyWith( - GeometryCollection value, $Res Function(GeometryCollection) then) = - _$GeometryCollectionCopyWithImpl<$Res, GeometryCollection>; - @useResult - $Res call( - {TopoJsonGeometryType type, - List geometries, - Map? properties}); -} - -/// @nodoc -class _$GeometryCollectionCopyWithImpl<$Res, $Val extends GeometryCollection> - implements $GeometryCollectionCopyWith<$Res> { - _$GeometryCollectionCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? geometries = null, - Object? properties = freezed, - }) { - return _then(_value.copyWith( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - geometries: null == geometries - ? _value.geometries - : geometries // ignore: cast_nullable_to_non_nullable - as List, - properties: freezed == properties - ? _value.properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$GeometryCollectionImplCopyWith<$Res> - implements $GeometryCollectionCopyWith<$Res> { - factory _$$GeometryCollectionImplCopyWith(_$GeometryCollectionImpl value, - $Res Function(_$GeometryCollectionImpl) then) = - __$$GeometryCollectionImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {TopoJsonGeometryType type, - List geometries, - Map? properties}); -} - -/// @nodoc -class __$$GeometryCollectionImplCopyWithImpl<$Res> - extends _$GeometryCollectionCopyWithImpl<$Res, _$GeometryCollectionImpl> - implements _$$GeometryCollectionImplCopyWith<$Res> { - __$$GeometryCollectionImplCopyWithImpl(_$GeometryCollectionImpl _value, - $Res Function(_$GeometryCollectionImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = null, - Object? geometries = null, - Object? properties = freezed, - }) { - return _then(_$GeometryCollectionImpl( - type: null == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType, - geometries: null == geometries - ? _value._geometries - : geometries // ignore: cast_nullable_to_non_nullable - as List, - properties: freezed == properties - ? _value._properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$GeometryCollectionImpl implements _GeometryCollection { - const _$GeometryCollectionImpl( - {required this.type, - required final List geometries, - required final Map? properties}) - : _geometries = geometries, - _properties = properties; - - factory _$GeometryCollectionImpl.fromJson(Map json) => - _$$GeometryCollectionImplFromJson(json); - - @override - final TopoJsonGeometryType type; - final List _geometries; - @override - List get geometries { - if (_geometries is EqualUnmodifiableListView) return _geometries; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_geometries); - } - - final Map? _properties; - @override - Map? get properties { - final value = _properties; - if (value == null) return null; - if (_properties is EqualUnmodifiableMapView) return _properties; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'GeometryCollection(type: $type, geometries: $geometries, properties: $properties)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$GeometryCollectionImpl && - (identical(other.type, type) || other.type == type) && - const DeepCollectionEquality() - .equals(other._geometries, _geometries) && - const DeepCollectionEquality() - .equals(other._properties, _properties)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - type, - const DeepCollectionEquality().hash(_geometries), - const DeepCollectionEquality().hash(_properties)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$GeometryCollectionImplCopyWith<_$GeometryCollectionImpl> get copyWith => - __$$GeometryCollectionImplCopyWithImpl<_$GeometryCollectionImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$GeometryCollectionImplToJson( - this, - ); - } -} - -abstract class _GeometryCollection implements GeometryCollection { - const factory _GeometryCollection( - {required final TopoJsonGeometryType type, - required final List geometries, - required final Map? properties}) = - _$GeometryCollectionImpl; - - factory _GeometryCollection.fromJson(Map json) = - _$GeometryCollectionImpl.fromJson; - - @override - TopoJsonGeometryType get type; - @override - List get geometries; - @override - Map? get properties; - @override - @JsonKey(ignore: true) - _$$GeometryCollectionImplCopyWith<_$GeometryCollectionImpl> get copyWith => - throw _privateConstructorUsedError; -} - -NullGeometryObject _$NullGeometryObjectFromJson(Map json) { - return _NullGeometryObject.fromJson(json); -} - -/// @nodoc -mixin _$NullGeometryObject { - TopoJsonGeometryType? get type => throw _privateConstructorUsedError; - Map? get properties => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $NullGeometryObjectCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $NullGeometryObjectCopyWith<$Res> { - factory $NullGeometryObjectCopyWith( - NullGeometryObject value, $Res Function(NullGeometryObject) then) = - _$NullGeometryObjectCopyWithImpl<$Res, NullGeometryObject>; - @useResult - $Res call({TopoJsonGeometryType? type, Map? properties}); -} - -/// @nodoc -class _$NullGeometryObjectCopyWithImpl<$Res, $Val extends NullGeometryObject> - implements $NullGeometryObjectCopyWith<$Res> { - _$NullGeometryObjectCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = freezed, - Object? properties = freezed, - }) { - return _then(_value.copyWith( - type: freezed == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType?, - properties: freezed == properties - ? _value.properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$NullGeometryObjectImplCopyWith<$Res> - implements $NullGeometryObjectCopyWith<$Res> { - factory _$$NullGeometryObjectImplCopyWith(_$NullGeometryObjectImpl value, - $Res Function(_$NullGeometryObjectImpl) then) = - __$$NullGeometryObjectImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({TopoJsonGeometryType? type, Map? properties}); -} - -/// @nodoc -class __$$NullGeometryObjectImplCopyWithImpl<$Res> - extends _$NullGeometryObjectCopyWithImpl<$Res, _$NullGeometryObjectImpl> - implements _$$NullGeometryObjectImplCopyWith<$Res> { - __$$NullGeometryObjectImplCopyWithImpl(_$NullGeometryObjectImpl _value, - $Res Function(_$NullGeometryObjectImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = freezed, - Object? properties = freezed, - }) { - return _then(_$NullGeometryObjectImpl( - type: freezed == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as TopoJsonGeometryType?, - properties: freezed == properties - ? _value._properties - : properties // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$NullGeometryObjectImpl implements _NullGeometryObject { - const _$NullGeometryObjectImpl( - {required this.type, required final Map? properties}) - : _properties = properties; - - factory _$NullGeometryObjectImpl.fromJson(Map json) => - _$$NullGeometryObjectImplFromJson(json); - - @override - final TopoJsonGeometryType? type; - final Map? _properties; - @override - Map? get properties { - final value = _properties; - if (value == null) return null; - if (_properties is EqualUnmodifiableMapView) return _properties; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'NullGeometryObject(type: $type, properties: $properties)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$NullGeometryObjectImpl && - (identical(other.type, type) || other.type == type) && - const DeepCollectionEquality() - .equals(other._properties, _properties)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, type, const DeepCollectionEquality().hash(_properties)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$NullGeometryObjectImplCopyWith<_$NullGeometryObjectImpl> get copyWith => - __$$NullGeometryObjectImplCopyWithImpl<_$NullGeometryObjectImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$NullGeometryObjectImplToJson( - this, - ); - } -} - -abstract class _NullGeometryObject implements NullGeometryObject { - const factory _NullGeometryObject( - {required final TopoJsonGeometryType? type, - required final Map? properties}) = - _$NullGeometryObjectImpl; - - factory _NullGeometryObject.fromJson(Map json) = - _$NullGeometryObjectImpl.fromJson; - - @override - TopoJsonGeometryType? get type; - @override - Map? get properties; - @override - @JsonKey(ignore: true) - _$$NullGeometryObjectImplCopyWith<_$NullGeometryObjectImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/packages/topojson/lib/src/topo_json_geometry.g.dart b/packages/topojson/lib/src/topo_json_geometry.g.dart deleted file mode 100644 index 23de96e34..000000000 --- a/packages/topojson/lib/src/topo_json_geometry.g.dart +++ /dev/null @@ -1,200 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint - -part of 'topo_json_geometry.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$LineStringImpl _$$LineStringImplFromJson(Map json) => - $checkedCreate( - r'_$LineStringImpl', - json, - ($checkedConvert) { - final val = _$LineStringImpl( - type: $checkedConvert( - 'type', (v) => $enumDecode(_$TopoJsonGeometryTypeEnumMap, v)), - arcs: $checkedConvert('arcs', - (v) => (v as List).map((e) => e as int).toList()), - properties: $checkedConvert( - 'properties', - (v) => (v as Map?)?.map( - (k, e) => MapEntry(k, e as String?), - )), - ); - return val; - }, - ); - -Map _$$LineStringImplToJson(_$LineStringImpl instance) => - { - 'type': _$TopoJsonGeometryTypeEnumMap[instance.type]!, - 'arcs': instance.arcs, - 'properties': instance.properties, - }; - -const _$TopoJsonGeometryTypeEnumMap = { - TopoJsonGeometryType.polygon: 'Polygon', - TopoJsonGeometryType.multiPolygon: 'MultiPolygon', - TopoJsonGeometryType.geometryCollection: 'GeometryCollection', - TopoJsonGeometryType.lineString: 'LineString', - TopoJsonGeometryType.multiLineString: 'MultiLineString', -}; - -_$MultiLineStringImpl _$$MultiLineStringImplFromJson( - Map json) => - $checkedCreate( - r'_$MultiLineStringImpl', - json, - ($checkedConvert) { - final val = _$MultiLineStringImpl( - type: $checkedConvert( - 'type', (v) => $enumDecode(_$TopoJsonGeometryTypeEnumMap, v)), - arcs: $checkedConvert( - 'arcs', - (v) => (v as List) - .map( - (e) => (e as List).map((e) => e as int).toList()) - .toList()), - properties: $checkedConvert( - 'properties', - (v) => (v as Map?)?.map( - (k, e) => MapEntry(k, e as String?), - )), - ); - return val; - }, - ); - -Map _$$MultiLineStringImplToJson( - _$MultiLineStringImpl instance) => - { - 'type': _$TopoJsonGeometryTypeEnumMap[instance.type]!, - 'arcs': instance.arcs, - 'properties': instance.properties, - }; - -_$PolygonImpl _$$PolygonImplFromJson(Map json) => - $checkedCreate( - r'_$PolygonImpl', - json, - ($checkedConvert) { - final val = _$PolygonImpl( - type: $checkedConvert( - 'type', (v) => $enumDecode(_$TopoJsonGeometryTypeEnumMap, v)), - arcs: $checkedConvert( - 'arcs', - (v) => (v as List) - .map( - (e) => (e as List).map((e) => e as int).toList()) - .toList()), - properties: $checkedConvert( - 'properties', - (v) => (v as Map?)?.map( - (k, e) => MapEntry(k, e as String?), - )), - ); - return val; - }, - ); - -Map _$$PolygonImplToJson(_$PolygonImpl instance) => - { - 'type': _$TopoJsonGeometryTypeEnumMap[instance.type]!, - 'arcs': instance.arcs, - 'properties': instance.properties, - }; - -_$MultiPolygonImpl _$$MultiPolygonImplFromJson(Map json) => - $checkedCreate( - r'_$MultiPolygonImpl', - json, - ($checkedConvert) { - final val = _$MultiPolygonImpl( - type: $checkedConvert( - 'type', (v) => $enumDecode(_$TopoJsonGeometryTypeEnumMap, v)), - arcs: $checkedConvert( - 'arcs', - (v) => (v as List) - .map((e) => (e as List) - .map((e) => - (e as List).map((e) => e as int).toList()) - .toList()) - .toList()), - properties: $checkedConvert( - 'properties', - (v) => (v as Map?)?.map( - (k, e) => MapEntry(k, e as String?), - )), - ); - return val; - }, - ); - -Map _$$MultiPolygonImplToJson(_$MultiPolygonImpl instance) => - { - 'type': _$TopoJsonGeometryTypeEnumMap[instance.type]!, - 'arcs': instance.arcs, - 'properties': instance.properties, - }; - -_$GeometryCollectionImpl _$$GeometryCollectionImplFromJson( - Map json) => - $checkedCreate( - r'_$GeometryCollectionImpl', - json, - ($checkedConvert) { - final val = _$GeometryCollectionImpl( - type: $checkedConvert( - 'type', (v) => $enumDecode(_$TopoJsonGeometryTypeEnumMap, v)), - geometries: $checkedConvert( - 'geometries', - (v) => (v as List) - .map((e) => TopoJsonGeometryObject.fromJson( - e as Map)) - .toList()), - properties: $checkedConvert( - 'properties', - (v) => (v as Map?)?.map( - (k, e) => MapEntry(k, e as String?), - )), - ); - return val; - }, - ); - -Map _$$GeometryCollectionImplToJson( - _$GeometryCollectionImpl instance) => - { - 'type': _$TopoJsonGeometryTypeEnumMap[instance.type]!, - 'geometries': instance.geometries, - 'properties': instance.properties, - }; - -_$NullGeometryObjectImpl _$$NullGeometryObjectImplFromJson( - Map json) => - $checkedCreate( - r'_$NullGeometryObjectImpl', - json, - ($checkedConvert) { - final val = _$NullGeometryObjectImpl( - type: $checkedConvert('type', - (v) => $enumDecodeNullable(_$TopoJsonGeometryTypeEnumMap, v)), - properties: $checkedConvert( - 'properties', - (v) => (v as Map?)?.map( - (k, e) => MapEntry(k, e as String?), - )), - ); - return val; - }, - ); - -Map _$$NullGeometryObjectImplToJson( - _$NullGeometryObjectImpl instance) => - { - 'type': _$TopoJsonGeometryTypeEnumMap[instance.type], - 'properties': instance.properties, - }; diff --git a/packages/topojson/lib/src/topo_json_geometry_type.dart b/packages/topojson/lib/src/topo_json_geometry_type.dart deleted file mode 100644 index f8ddf5b32..000000000 --- a/packages/topojson/lib/src/topo_json_geometry_type.dart +++ /dev/null @@ -1,13 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; - -@JsonEnum(valueField: 'type') -enum TopoJsonGeometryType { - polygon('Polygon'), - multiPolygon('MultiPolygon'), - geometryCollection('GeometryCollection'), - lineString('LineString'), - multiLineString('MultiLineString'); - - const TopoJsonGeometryType(this.type); - final String type; -} diff --git a/packages/topojson/lib/src/topo_json_transform.dart b/packages/topojson/lib/src/topo_json_transform.dart deleted file mode 100644 index dd9ef5dd8..000000000 --- a/packages/topojson/lib/src/topo_json_transform.dart +++ /dev/null @@ -1,15 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'topo_json_transform.freezed.dart'; -part 'topo_json_transform.g.dart'; - -@freezed -class TopoJsonTransform with _$TopoJsonTransform { - const factory TopoJsonTransform({ - required List scale, - required List translate, - }) = _TopoJsonTransform; - - factory TopoJsonTransform.fromJson(Map json) => - _$TopoJsonTransformFromJson(json); -} diff --git a/packages/topojson/lib/src/topo_json_transform.freezed.dart b/packages/topojson/lib/src/topo_json_transform.freezed.dart deleted file mode 100644 index ae4d16853..000000000 --- a/packages/topojson/lib/src/topo_json_transform.freezed.dart +++ /dev/null @@ -1,189 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'topo_json_transform.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -TopoJsonTransform _$TopoJsonTransformFromJson(Map json) { - return _TopoJsonTransform.fromJson(json); -} - -/// @nodoc -mixin _$TopoJsonTransform { - List get scale => throw _privateConstructorUsedError; - List get translate => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $TopoJsonTransformCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $TopoJsonTransformCopyWith<$Res> { - factory $TopoJsonTransformCopyWith( - TopoJsonTransform value, $Res Function(TopoJsonTransform) then) = - _$TopoJsonTransformCopyWithImpl<$Res, TopoJsonTransform>; - @useResult - $Res call({List scale, List translate}); -} - -/// @nodoc -class _$TopoJsonTransformCopyWithImpl<$Res, $Val extends TopoJsonTransform> - implements $TopoJsonTransformCopyWith<$Res> { - _$TopoJsonTransformCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? scale = null, - Object? translate = null, - }) { - return _then(_value.copyWith( - scale: null == scale - ? _value.scale - : scale // ignore: cast_nullable_to_non_nullable - as List, - translate: null == translate - ? _value.translate - : translate // ignore: cast_nullable_to_non_nullable - as List, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$TopoJsonTransformImplCopyWith<$Res> - implements $TopoJsonTransformCopyWith<$Res> { - factory _$$TopoJsonTransformImplCopyWith(_$TopoJsonTransformImpl value, - $Res Function(_$TopoJsonTransformImpl) then) = - __$$TopoJsonTransformImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List scale, List translate}); -} - -/// @nodoc -class __$$TopoJsonTransformImplCopyWithImpl<$Res> - extends _$TopoJsonTransformCopyWithImpl<$Res, _$TopoJsonTransformImpl> - implements _$$TopoJsonTransformImplCopyWith<$Res> { - __$$TopoJsonTransformImplCopyWithImpl(_$TopoJsonTransformImpl _value, - $Res Function(_$TopoJsonTransformImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? scale = null, - Object? translate = null, - }) { - return _then(_$TopoJsonTransformImpl( - scale: null == scale - ? _value._scale - : scale // ignore: cast_nullable_to_non_nullable - as List, - translate: null == translate - ? _value._translate - : translate // ignore: cast_nullable_to_non_nullable - as List, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$TopoJsonTransformImpl implements _TopoJsonTransform { - const _$TopoJsonTransformImpl( - {required final List scale, - required final List translate}) - : _scale = scale, - _translate = translate; - - factory _$TopoJsonTransformImpl.fromJson(Map json) => - _$$TopoJsonTransformImplFromJson(json); - - final List _scale; - @override - List get scale { - if (_scale is EqualUnmodifiableListView) return _scale; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_scale); - } - - final List _translate; - @override - List get translate { - if (_translate is EqualUnmodifiableListView) return _translate; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(_translate); - } - - @override - String toString() { - return 'TopoJsonTransform(scale: $scale, translate: $translate)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$TopoJsonTransformImpl && - const DeepCollectionEquality().equals(other._scale, _scale) && - const DeepCollectionEquality() - .equals(other._translate, _translate)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - const DeepCollectionEquality().hash(_scale), - const DeepCollectionEquality().hash(_translate)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$TopoJsonTransformImplCopyWith<_$TopoJsonTransformImpl> get copyWith => - __$$TopoJsonTransformImplCopyWithImpl<_$TopoJsonTransformImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$TopoJsonTransformImplToJson( - this, - ); - } -} - -abstract class _TopoJsonTransform implements TopoJsonTransform { - const factory _TopoJsonTransform( - {required final List scale, - required final List translate}) = _$TopoJsonTransformImpl; - - factory _TopoJsonTransform.fromJson(Map json) = - _$TopoJsonTransformImpl.fromJson; - - @override - List get scale; - @override - List get translate; - @override - @JsonKey(ignore: true) - _$$TopoJsonTransformImplCopyWith<_$TopoJsonTransformImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/packages/topojson/lib/src/topo_json_transform.g.dart b/packages/topojson/lib/src/topo_json_transform.g.dart deleted file mode 100644 index 6048ab796..000000000 --- a/packages/topojson/lib/src/topo_json_transform.g.dart +++ /dev/null @@ -1,38 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint - -part of 'topo_json_transform.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$TopoJsonTransformImpl _$$TopoJsonTransformImplFromJson( - Map json) => - $checkedCreate( - r'_$TopoJsonTransformImpl', - json, - ($checkedConvert) { - final val = _$TopoJsonTransformImpl( - scale: $checkedConvert( - 'scale', - (v) => (v as List) - .map((e) => (e as num).toDouble()) - .toList()), - translate: $checkedConvert( - 'translate', - (v) => (v as List) - .map((e) => (e as num).toDouble()) - .toList()), - ); - return val; - }, - ); - -Map _$$TopoJsonTransformImplToJson( - _$TopoJsonTransformImpl instance) => - { - 'scale': instance.scale, - 'translate': instance.translate, - }; diff --git a/packages/topojson/lib/src/vector.dart b/packages/topojson/lib/src/vector.dart deleted file mode 100644 index 3a590f9b4..000000000 --- a/packages/topojson/lib/src/vector.dart +++ /dev/null @@ -1,26 +0,0 @@ -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'vector.freezed.dart'; -part 'vector.g.dart'; - -@freezed -class DoubleVector with _$DoubleVector { - const factory DoubleVector({ - required double x, - required double y, - }) = _DoubleVector; - - factory DoubleVector.fromJson(Map json) => - _$DoubleVectorFromJson(json); -} - -@freezed -class IntVector with _$IntVector { - const factory IntVector({ - required int x, - required int y, - }) = _IntVector; - - factory IntVector.fromJson(Map json) => - _$IntVectorFromJson(json); -} diff --git a/packages/topojson/lib/src/vector.freezed.dart b/packages/topojson/lib/src/vector.freezed.dart deleted file mode 100644 index cea10cc19..000000000 --- a/packages/topojson/lib/src/vector.freezed.dart +++ /dev/null @@ -1,320 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'vector.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: /~https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -DoubleVector _$DoubleVectorFromJson(Map json) { - return _DoubleVector.fromJson(json); -} - -/// @nodoc -mixin _$DoubleVector { - double get x => throw _privateConstructorUsedError; - double get y => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $DoubleVectorCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $DoubleVectorCopyWith<$Res> { - factory $DoubleVectorCopyWith( - DoubleVector value, $Res Function(DoubleVector) then) = - _$DoubleVectorCopyWithImpl<$Res, DoubleVector>; - @useResult - $Res call({double x, double y}); -} - -/// @nodoc -class _$DoubleVectorCopyWithImpl<$Res, $Val extends DoubleVector> - implements $DoubleVectorCopyWith<$Res> { - _$DoubleVectorCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? x = null, - Object? y = null, - }) { - return _then(_value.copyWith( - x: null == x - ? _value.x - : x // ignore: cast_nullable_to_non_nullable - as double, - y: null == y - ? _value.y - : y // ignore: cast_nullable_to_non_nullable - as double, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$DoubleVectorImplCopyWith<$Res> - implements $DoubleVectorCopyWith<$Res> { - factory _$$DoubleVectorImplCopyWith( - _$DoubleVectorImpl value, $Res Function(_$DoubleVectorImpl) then) = - __$$DoubleVectorImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({double x, double y}); -} - -/// @nodoc -class __$$DoubleVectorImplCopyWithImpl<$Res> - extends _$DoubleVectorCopyWithImpl<$Res, _$DoubleVectorImpl> - implements _$$DoubleVectorImplCopyWith<$Res> { - __$$DoubleVectorImplCopyWithImpl( - _$DoubleVectorImpl _value, $Res Function(_$DoubleVectorImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? x = null, - Object? y = null, - }) { - return _then(_$DoubleVectorImpl( - x: null == x - ? _value.x - : x // ignore: cast_nullable_to_non_nullable - as double, - y: null == y - ? _value.y - : y // ignore: cast_nullable_to_non_nullable - as double, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$DoubleVectorImpl implements _DoubleVector { - const _$DoubleVectorImpl({required this.x, required this.y}); - - factory _$DoubleVectorImpl.fromJson(Map json) => - _$$DoubleVectorImplFromJson(json); - - @override - final double x; - @override - final double y; - - @override - String toString() { - return 'DoubleVector(x: $x, y: $y)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$DoubleVectorImpl && - (identical(other.x, x) || other.x == x) && - (identical(other.y, y) || other.y == y)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, x, y); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$DoubleVectorImplCopyWith<_$DoubleVectorImpl> get copyWith => - __$$DoubleVectorImplCopyWithImpl<_$DoubleVectorImpl>(this, _$identity); - - @override - Map toJson() { - return _$$DoubleVectorImplToJson( - this, - ); - } -} - -abstract class _DoubleVector implements DoubleVector { - const factory _DoubleVector( - {required final double x, required final double y}) = _$DoubleVectorImpl; - - factory _DoubleVector.fromJson(Map json) = - _$DoubleVectorImpl.fromJson; - - @override - double get x; - @override - double get y; - @override - @JsonKey(ignore: true) - _$$DoubleVectorImplCopyWith<_$DoubleVectorImpl> get copyWith => - throw _privateConstructorUsedError; -} - -IntVector _$IntVectorFromJson(Map json) { - return _IntVector.fromJson(json); -} - -/// @nodoc -mixin _$IntVector { - int get x => throw _privateConstructorUsedError; - int get y => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $IntVectorCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $IntVectorCopyWith<$Res> { - factory $IntVectorCopyWith(IntVector value, $Res Function(IntVector) then) = - _$IntVectorCopyWithImpl<$Res, IntVector>; - @useResult - $Res call({int x, int y}); -} - -/// @nodoc -class _$IntVectorCopyWithImpl<$Res, $Val extends IntVector> - implements $IntVectorCopyWith<$Res> { - _$IntVectorCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? x = null, - Object? y = null, - }) { - return _then(_value.copyWith( - x: null == x - ? _value.x - : x // ignore: cast_nullable_to_non_nullable - as int, - y: null == y - ? _value.y - : y // ignore: cast_nullable_to_non_nullable - as int, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$IntVectorImplCopyWith<$Res> - implements $IntVectorCopyWith<$Res> { - factory _$$IntVectorImplCopyWith( - _$IntVectorImpl value, $Res Function(_$IntVectorImpl) then) = - __$$IntVectorImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({int x, int y}); -} - -/// @nodoc -class __$$IntVectorImplCopyWithImpl<$Res> - extends _$IntVectorCopyWithImpl<$Res, _$IntVectorImpl> - implements _$$IntVectorImplCopyWith<$Res> { - __$$IntVectorImplCopyWithImpl( - _$IntVectorImpl _value, $Res Function(_$IntVectorImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? x = null, - Object? y = null, - }) { - return _then(_$IntVectorImpl( - x: null == x - ? _value.x - : x // ignore: cast_nullable_to_non_nullable - as int, - y: null == y - ? _value.y - : y // ignore: cast_nullable_to_non_nullable - as int, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$IntVectorImpl implements _IntVector { - const _$IntVectorImpl({required this.x, required this.y}); - - factory _$IntVectorImpl.fromJson(Map json) => - _$$IntVectorImplFromJson(json); - - @override - final int x; - @override - final int y; - - @override - String toString() { - return 'IntVector(x: $x, y: $y)'; - } - - @override - bool operator ==(dynamic other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$IntVectorImpl && - (identical(other.x, x) || other.x == x) && - (identical(other.y, y) || other.y == y)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, x, y); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$IntVectorImplCopyWith<_$IntVectorImpl> get copyWith => - __$$IntVectorImplCopyWithImpl<_$IntVectorImpl>(this, _$identity); - - @override - Map toJson() { - return _$$IntVectorImplToJson( - this, - ); - } -} - -abstract class _IntVector implements IntVector { - const factory _IntVector({required final int x, required final int y}) = - _$IntVectorImpl; - - factory _IntVector.fromJson(Map json) = - _$IntVectorImpl.fromJson; - - @override - int get x; - @override - int get y; - @override - @JsonKey(ignore: true) - _$$IntVectorImplCopyWith<_$IntVectorImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/packages/topojson/lib/src/vector.g.dart b/packages/topojson/lib/src/vector.g.dart deleted file mode 100644 index 71d2e1bd7..000000000 --- a/packages/topojson/lib/src/vector.g.dart +++ /dev/null @@ -1,47 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ignore_for_file: type=lint - -part of 'vector.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$DoubleVectorImpl _$$DoubleVectorImplFromJson(Map json) => - $checkedCreate( - r'_$DoubleVectorImpl', - json, - ($checkedConvert) { - final val = _$DoubleVectorImpl( - x: $checkedConvert('x', (v) => (v as num).toDouble()), - y: $checkedConvert('y', (v) => (v as num).toDouble()), - ); - return val; - }, - ); - -Map _$$DoubleVectorImplToJson(_$DoubleVectorImpl instance) => - { - 'x': instance.x, - 'y': instance.y, - }; - -_$IntVectorImpl _$$IntVectorImplFromJson(Map json) => - $checkedCreate( - r'_$IntVectorImpl', - json, - ($checkedConvert) { - final val = _$IntVectorImpl( - x: $checkedConvert('x', (v) => v as int), - y: $checkedConvert('y', (v) => v as int), - ); - return val; - }, - ); - -Map _$$IntVectorImplToJson(_$IntVectorImpl instance) => - { - 'x': instance.x, - 'y': instance.y, - }; diff --git a/packages/topojson/lib/topojson.dart b/packages/topojson/lib/topojson.dart deleted file mode 100644 index da69492cb..000000000 --- a/packages/topojson/lib/topojson.dart +++ /dev/null @@ -1,6 +0,0 @@ - -export 'src/topo_json.dart'; -export 'src/topo_json_geometry.dart'; -export 'src/topo_json_geometry_type.dart'; -export 'src/topo_json_transform.dart'; -export 'src/vector.dart'; diff --git a/packages/topojson/pubspec.yaml b/packages/topojson/pubspec.yaml deleted file mode 100644 index 3194e9c5a..000000000 --- a/packages/topojson/pubspec.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: topojson -description: A starting point for Dart libraries or applications. -version: 1.0.1 -publish_to: "none" - -environment: - sdk: ^3.0.3 - -dependencies: - collection: ^1.17.1 - freezed_annotation: ^2.2.0 - json_annotation: ^4.8.1 - -dev_dependencies: - build_runner: ^2.4.4 - freezed: ^2.3.4 - json_serializable: ^6.7.0 - lints: ^2.0.0 - pedantic_mono: ^1.23.0 - test: ^1.21.0 diff --git a/pubspec.lock b/pubspec.lock index 8a0f901e8..b06b52381 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -13,10 +13,10 @@ packages: dependency: transitive description: name: _flutterfire_internals - sha256: eb0ac20f704799b986049fbb3c1c16421eca319a1b872378d669513e12452ba5 + sha256: f5628cd9c92ed11083f425fd1f8f1bc60ecdda458c81d73b143aeda036c35fe7 url: "https://pub.dev" source: hosted - version: "1.3.14" + version: "1.3.16" adaptive_dialog: dependency: "direct main" description: @@ -45,10 +45,10 @@ packages: dependency: "direct main" description: name: animations - sha256: ef57563eed3620bd5d75ad96189846aca1e033c0c45fc9a7d26e80ab02b88a70 + sha256: d3d6dcfb218225bbe68e87ccf6378bbb2e32a94900722c5f81611dad089911cb url: "https://pub.dev" source: hosted - version: "2.0.8" + version: "2.0.11" ansi_styles: dependency: transitive description: @@ -85,10 +85,10 @@ packages: dependency: transitive description: name: archive - sha256: "7b875fd4a20b165a3084bd2d210439b22ebc653f21cea4842729c0c30c82596b" + sha256: "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d" url: "https://pub.dev" source: hosted - version: "3.4.9" + version: "3.4.10" args: dependency: transitive description: @@ -165,18 +165,18 @@ packages: dependency: transitive description: name: build_resolvers - sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" url: "https://pub.dev" source: hosted - version: "2.4.1" + version: "2.4.2" build_runner: dependency: "direct dev" description: name: build_runner - sha256: "67d591d602906ef9201caf93452495ad1812bea2074f04e25dbd7c133785821b" + sha256: "581bacf68f89ec8792f5e5a0b2c4decd1c948e97ce659dc783688c8a88fbec21" url: "https://pub.dev" source: hosted - version: "2.4.7" + version: "2.4.8" build_runner_core: dependency: transitive description: @@ -197,10 +197,10 @@ packages: dependency: transitive description: name: built_value - sha256: "69acb7007eb2a31dc901512bfe0f7b767168be34cb734835d54c070bfa74c1b2" + sha256: c9aabae0718ec394e5bc3c7272e6bb0dc0b32201a08fe185ec1d8401d3e39309 url: "https://pub.dev" source: hosted - version: "8.8.0" + version: "8.8.1" characters: dependency: transitive description: @@ -245,10 +245,10 @@ packages: dependency: transitive description: name: cli_util - sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 + sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 url: "https://pub.dev" source: hosted - version: "0.4.0" + version: "0.4.1" clock: dependency: transitive description: @@ -261,10 +261,10 @@ packages: dependency: transitive description: name: code_builder - sha256: b2151ce26a06171005b379ecff6e08d34c470180ffe16b8e14b6d52be292b55f + sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 url: "https://pub.dev" source: hosted - version: "4.8.0" + version: "4.10.0" collection: dependency: "direct main" description: @@ -297,14 +297,22 @@ packages: url: "https://pub.dev" source: hosted version: "3.1.1" + coverage: + dependency: transitive + description: + name: coverage + sha256: "8acabb8306b57a409bf4c83522065672ee13179297a6bb0cb9ead73948df7c76" + url: "https://pub.dev" + source: hosted + version: "1.7.2" cross_file: dependency: transitive description: name: cross_file - sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5" + sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e url: "https://pub.dev" source: hosted - version: "0.3.3+7" + version: "0.3.3+8" crypto: dependency: "direct main" description: @@ -333,26 +341,26 @@ packages: dependency: "direct dev" description: name: custom_lint - sha256: "198ec6b8e084d22f508a76556c9afcfb71706ad3f42b083fe0ee923351a96d90" + sha256: dfb893ff17c83cf08676c6b64df11d3e53d80590978d7c1fb242afff3ba6dedb url: "https://pub.dev" source: hosted - version: "0.5.7" + version: "0.5.8" custom_lint_builder: dependency: transitive description: name: custom_lint_builder - sha256: dfcfa987d2bd9d0ba751ef4bdef0f6c1aa0062f2a67fe716fd5f3f8b709d6418 + sha256: "8df6634b38a36a6c6cb74a9c0eb02e9ba0b0ab89b29e38e6daa86e8ed2c6288d" url: "https://pub.dev" source: hosted - version: "0.5.7" + version: "0.5.8" custom_lint_core: dependency: transitive description: name: custom_lint_core - sha256: f84c3fe2f27ef3b8831953e477e59d4a29c2952623f9eac450d7b40d9cdd94cc + sha256: "2b235be098d157e244f18ea905a15a18c16a205e30553888fac6544bbf52f03f" url: "https://pub.dev" source: hosted - version: "0.5.7" + version: "0.5.8" dart_style: dependency: transitive description: @@ -397,49 +405,42 @@ packages: dependency: "direct main" description: name: dio - sha256: "01870acd87986f768e0c09cc4d7a19a59d814af7b34cbeb0b437d2c33bdfea4c" + sha256: "797e1e341c3dd2f69f2dad42564a6feff3bfb87187d05abb93b9609e6f1645c3" url: "https://pub.dev" source: hosted - version: "5.3.4" + version: "5.4.0" dio_http2_adapter: dependency: "direct main" description: name: dio_http2_adapter - sha256: "505ed47b1508122dbd3e351630030e5845bb292fe14fc8df4251a78b0c1a73b9" + sha256: "3bb35e81eb8a688eb1cb15beb97f46823698b44037e7b55227aa1060f5593adc" url: "https://pub.dev" source: hosted - version: "2.3.2" + version: "2.4.0" dynamic_color: dependency: "direct main" description: name: dynamic_color - sha256: "8b8bd1d798bd393e11eddeaa8ae95b12ff028bf7d5998fc5d003488cd5f4ce2f" + sha256: a866f1f8947bfdaf674d7928e769eac7230388a2e7a2542824fad4bb5b87be3b url: "https://pub.dev" source: hosted - version: "1.6.8" + version: "1.6.9" envied: dependency: "direct main" description: name: envied - sha256: c4af8bb99203d7f216cea41f2ec70874f9dd826b2a5782cdc5bd25389c5adcc1 + sha256: dab29e21452c3d57ec10889d96b06b4a006b01375d4df10b33c9704800c208c4 url: "https://pub.dev" source: hosted - version: "0.5.2" + version: "0.5.3" envied_generator: dependency: "direct dev" description: name: envied_generator - sha256: "637901d274db3974afb3919ca9ba2e1a97f110fd57350ac13a3adcd20ad7d530" + sha256: b8655d5cb39b4d1d449a79ff6f1367b252c23955ff17ec7c03aacdff938598bd url: "https://pub.dev" source: hosted - version: "0.5.2" - eq_map: - dependency: "direct main" - description: - path: "packages/eq_map" - relative: true - source: path - version: "1.0.1" + version: "0.5.3" eqapi_client: dependency: "direct main" description: @@ -497,34 +498,34 @@ packages: dependency: "direct main" description: name: firebase_analytics - sha256: "6325991042226a515406b4fc9204d3102e54a514b72fffb945b625d9f69c5196" + sha256: "0240076090d77045d757aecb090616066d23b343840d4c21074094d6fe40a184" url: "https://pub.dev" source: hosted - version: "10.7.2" + version: "10.8.0" firebase_analytics_platform_interface: dependency: transitive description: name: firebase_analytics_platform_interface - sha256: "38ad4bec1fa0fe16577e6f178e4c4280f029181b18e16bf68782c527c7d82bfe" + sha256: "6d9baa077d16b47ef5f19d982c4fc475597991aa53b0c601216faa3e1cdab45f" url: "https://pub.dev" source: hosted - version: "3.8.2" + version: "3.9.0" firebase_analytics_web: dependency: transitive description: name: firebase_analytics_web - sha256: "6c0deb691a26db2006ded65fd8999a204dcfe8ef67d7d75b7f55ebc08e1d89a4" + sha256: "89a740249bce9d52a99db4e501be6087ca6749c73c47cff2b174802be10abd81" url: "https://pub.dev" source: hosted - version: "0.5.5+9" + version: "0.5.5+12" firebase_core: dependency: "direct main" description: name: firebase_core - sha256: d301561d614487688d797717bef013a264c517d1d09e4c5c1325c3a64c835efb + sha256: "96607c0e829a581c2a483c658f04e8b159964c3bae2730f73297070bc85d40bb" url: "https://pub.dev" source: hosted - version: "2.24.0" + version: "2.24.2" firebase_core_platform_interface: dependency: transitive description: @@ -537,50 +538,50 @@ packages: dependency: transitive description: name: firebase_core_web - sha256: "10159d9ee42c79f4548971d92f3f0fcd5791f6738cda3583a4e3b2c8b244c018" + sha256: d585bdf3c656c3f7821ba1bd44da5f13365d22fcecaf5eb75c4295246aaa83c0 url: "https://pub.dev" source: hosted - version: "2.9.0" + version: "2.10.0" firebase_crashlytics: dependency: "direct main" description: name: firebase_crashlytics - sha256: "60ef0016c0c2a7d16bf02468e3b27cd0ad4606f6d35535998dde3150cc0bc771" + sha256: "5125b7f3fcef2bfdd7e071afe7edcefd9597968003e44e073456c773d91694ee" url: "https://pub.dev" source: hosted - version: "3.4.6" + version: "3.4.9" firebase_crashlytics_platform_interface: dependency: transitive description: name: firebase_crashlytics_platform_interface - sha256: d185100facc6f7c43c5718103111488d008c52df8c19cbc5e5f9d2115d734909 + sha256: "359197344def001589c84f8d1d57c05f6e2e773f559205610ce58c25e2045a57" url: "https://pub.dev" source: hosted - version: "3.6.14" + version: "3.6.16" firebase_messaging: dependency: "direct main" description: name: firebase_messaging - sha256: "260064e1b512a9e1970b5964d645eba888208ca3de42459c38e484c8ecdc37a9" + sha256: "980259425fa5e2afc03e533f33723335731d21a56fd255611083bceebf4373a8" url: "https://pub.dev" source: hosted - version: "14.7.6" + version: "14.7.10" firebase_messaging_platform_interface: dependency: transitive description: name: firebase_messaging_platform_interface - sha256: "81fb8c983356dd75ee660f276c918380325df7a1ab1e981ede911809e9ddff30" + sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107" url: "https://pub.dev" source: hosted - version: "4.5.15" + version: "4.5.18" firebase_messaging_web: dependency: transitive description: name: firebase_messaging_web - sha256: "1c5d9b6cf929ab471300143059d1641a26b73c9c24adb5266e241aea23c090aa" + sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" url: "https://pub.dev" source: hosted - version: "3.5.15" + version: "3.5.18" fixnum: dependency: transitive description: @@ -598,26 +599,26 @@ packages: dependency: transitive description: name: flutter_gen_core - sha256: "8b4ff1d45d125e576e26ea99d15e0419bb3c45b53696e022880866b78bb6b830" + sha256: "3a6c3dbc1c0e260088e9c7ed1ba905436844e8c01a44799f6281edada9e45308" url: "https://pub.dev" source: hosted - version: "5.3.2" + version: "5.4.0" flutter_gen_runner: dependency: "direct dev" description: name: flutter_gen_runner - sha256: fd197f8c657e79313d53d3934de602ebe604ba722a84c88ae3a43cd90428c67a + sha256: "24889d5140b03997f7148066a9c5fab8b606dff36093434c782d7a7fb22c6fb6" url: "https://pub.dev" source: hosted - version: "5.3.2" + version: "5.4.0" flutter_hooks: dependency: "direct main" description: name: flutter_hooks - sha256: "7c8db779c2d1010aa7f9ea3fbefe8f86524fcb87b69e8b0af31e1a4b55422dec" + sha256: "09f64db63fee3b2ab8b9038a1346be7d8986977fae3fec601275bf32455ccfc0" url: "https://pub.dev" source: hosted - version: "0.20.3" + version: "0.20.4" flutter_html: dependency: "direct main" description: @@ -638,10 +639,10 @@ packages: dependency: "direct main" description: name: flutter_local_notifications - sha256: bb5cd63ff7c91d6efe452e41d0d0ae6348925c82eafd10ce170ef585ea04776e + sha256: "892ada16046d641263f30c72e7432397088810a84f34479f6677494802a2b535" url: "https://pub.dev" source: hosted - version: "16.2.0" + version: "16.3.0" flutter_local_notifications_linux: dependency: transitive description: @@ -662,10 +663,10 @@ packages: dependency: "direct main" description: name: flutter_markdown - sha256: "35108526a233cc0755664d445f8a6b4b61e6f8fe993b3658b80b4a26827fc196" + sha256: "30088ce826b5b9cfbf9e8bece34c716c8a59fa54461dcae1e4ac01a94639e762" url: "https://pub.dev" source: hosted - version: "0.6.18+2" + version: "0.6.18+3" flutter_riverpod: dependency: transitive description: @@ -688,10 +689,10 @@ packages: dependency: "direct dev" description: name: freezed - sha256: "21bf2825311de65501d22e563e3d7605dff57fb5e6da982db785ae5372ff018a" + sha256: "6c5031daae12c7072b3a87eff98983076434b4889ef2a44384d0cae3f82372ba" url: "https://pub.dev" source: hosted - version: "2.4.5" + version: "2.4.6" freezed_annotation: dependency: "direct main" description: @@ -720,18 +721,18 @@ packages: dependency: "direct main" description: name: go_router - sha256: "2ccd74480706e0a70a0e0dfa9543dede41bc11d0fe3b146a6ad7b7686f6b4407" + sha256: "3b40e751eaaa855179b416974d59d29669e750d2e50fcdb2b37f1cb0ca8c803a" url: "https://pub.dev" source: hosted - version: "11.1.4" + version: "13.0.1" go_router_builder: dependency: "direct dev" description: name: go_router_builder - sha256: a4820cf40c647d674aa9305cdac2eaa6d03a795bb8f6b30c0469939417f7c4d8 + sha256: f84449079eb1f09f59344fbbb8cdc6a6349d8973a83746a57953bd4130d852b6 url: "https://pub.dev" source: hosted - version: "2.3.4" + version: "2.4.1" google_fonts: dependency: "direct main" description: @@ -760,10 +761,10 @@ packages: dependency: transitive description: name: group_button - sha256: c10e47213b68438eafdc43a483167ed1d3728d1ccf828cd92b9aac867c8a9106 + sha256: "0610fcf28ed122bfb4b410fce161a390f7f2531d55d1d65c5375982001415940" url: "https://pub.dev" source: hosted - version: "5.3.3" + version: "5.3.4" hooks_riverpod: dependency: "direct main" description: @@ -792,18 +793,18 @@ packages: dependency: transitive description: name: http - sha256: d4872660c46d929f6b8a9ef4e7a7eff7e49bbf0c4ec3f385ee32df5119175139 + sha256: a2bbf9d017fcced29139daa8ed2bba4ece450ab222871df93ca9eec6f80c34ba url: "https://pub.dev" source: hosted - version: "1.1.2" + version: "1.2.0" http2: dependency: transitive description: name: http2 - sha256: "38db0c4aa9f1cd238a5d2e86aa0cc7cc91c77e0c6c94ba64bbe85e4ff732a952" + sha256: "9ced024a160b77aba8fb8674e38f70875e321d319e6f303ec18e87bd5a4b0c1d" url: "https://pub.dev" source: hosted - version: "2.2.0" + version: "2.3.0" http_multi_server: dependency: transitive description: @@ -824,10 +825,10 @@ packages: dependency: "direct main" description: name: image - sha256: "028f61960d56f26414eb616b48b04eb37d700cbe477b7fb09bf1d7ce57fd9271" + sha256: "004a2e90ce080f8627b5a04aecb4cdfac87d2c3f3b520aa291260be5a32c033d" url: "https://pub.dev" source: hosted - version: "4.1.3" + version: "4.1.4" intersperse: dependency: transitive description: @@ -840,10 +841,10 @@ packages: dependency: "direct main" description: name: intl - sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf url: "https://pub.dev" source: hosted - version: "0.18.1" + version: "0.19.0" io: dependency: transitive description: @@ -852,6 +853,27 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.4" + jma_map: + dependency: "direct main" + description: + path: "packages/jma_map" + relative: true + source: path + version: "1.0.0" + jma_parameter_api_client: + dependency: "direct main" + description: + path: "packages/jma_parameter_api_client" + relative: true + source: path + version: "1.0.0" + jma_parameter_types: + dependency: "direct overridden" + description: + path: "packages/jma_parameter_types" + relative: true + source: path + version: "1.0.0" js: dependency: transitive description: @@ -935,9 +957,9 @@ packages: dependency: "direct main" description: path: "." - ref: "0bf326044759dfc2f590a1c219d2f1eb86e7b8ad" - resolved-ref: "0bf326044759dfc2f590a1c219d2f1eb86e7b8ad" - url: "git@github.com:YumNumm/flutter-maplibre-gl.git" + ref: "59e1eeaf7e627a8054b7024d0189070ee616bcd5" + resolved-ref: "59e1eeaf7e627a8054b7024d0189070ee616bcd5" + url: "/~https://github.com/YumNumm/flutter-maplibre-gl.git" source: git version: "0.18.0" maplibre_gl_platform_interface: @@ -945,8 +967,8 @@ packages: description: path: maplibre_gl_platform_interface ref: main - resolved-ref: a41833c3f102288381931fe616c159e7a5bc5c52 - url: "/~https://github.com/maplibre/flutter-maplibre-gl.git" + resolved-ref: "59e1eeaf7e627a8054b7024d0189070ee616bcd5" + url: "/~https://github.com/YumNumm/flutter-maplibre-gl.git" source: git version: "0.18.0" maplibre_gl_web: @@ -954,18 +976,18 @@ packages: description: path: maplibre_gl_web ref: main - resolved-ref: a41833c3f102288381931fe616c159e7a5bc5c52 - url: "/~https://github.com/maplibre/flutter-maplibre-gl.git" + resolved-ref: "59e1eeaf7e627a8054b7024d0189070ee616bcd5" + url: "/~https://github.com/YumNumm/flutter-maplibre-gl.git" source: git version: "0.18.0" markdown: dependency: transitive description: name: markdown - sha256: acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd + sha256: "4e304b422905967f1f7e35a03cd2a3f8f34306b3e1b0cc7a8677d7a306471a0e" url: "https://pub.dev" source: hosted - version: "7.1.1" + version: "7.2.0" matcher: dependency: transitive description: @@ -986,10 +1008,10 @@ packages: dependency: "direct dev" description: name: melos - sha256: a45e54b72cc2444b46be9d32a590119b9ba8c4e87117f2743a73ec049542f2d3 + sha256: "96e64bbade5712c3f010137e195bca9f1b351fac34ab1f322af492ae34032067" url: "https://pub.dev" source: hosted - version: "3.2.0" + version: "3.4.0" meta: dependency: transitive description: @@ -1006,6 +1028,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.4" + mocktail: + dependency: "direct main" + description: + name: mocktail + sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e + url: "https://pub.dev" + source: hosted + version: "1.0.2" mustache_template: dependency: transitive description: @@ -1022,6 +1052,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.0.8" + node_preamble: + dependency: transitive + description: + name: node_preamble + sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db" + url: "https://pub.dev" + source: hosted + version: "2.0.2" ntp: dependency: "direct main" description: @@ -1042,10 +1080,10 @@ packages: dependency: "direct main" description: name: package_info_plus - sha256: "7e76fad405b3e4016cd39d08f455a4eb5199723cf594cd1b8916d47140d93017" + sha256: "88bc797f44a94814f2213db1c9bd5badebafdfb8290ca9f78d4b9ee2a3db4d79" url: "https://pub.dev" source: hosted - version: "4.2.0" + version: "5.0.1" package_info_plus_platform_interface: dependency: transitive description: @@ -1066,26 +1104,26 @@ packages: dependency: "direct main" description: name: path_provider - sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa + sha256: b27217933eeeba8ff24845c34003b003b2b22151de3c908d0e679e8fe1aa078b url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" path_provider_android: dependency: transitive description: name: path_provider_android - sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 + sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" url: "https://pub.dev" source: hosted - version: "2.2.1" + version: "2.2.2" path_provider_foundation: dependency: transitive description: name: path_provider_foundation - sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" + sha256: "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.3.2" path_provider_linux: dependency: transitive description: @@ -1098,10 +1136,10 @@ packages: dependency: transitive description: name: path_provider_platform_interface - sha256: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" path_provider_windows: dependency: transitive description: @@ -1122,82 +1160,82 @@ packages: dependency: "direct main" description: name: permission_handler - sha256: "860c6b871c94c78e202dc69546d4d8fd84bd59faeb36f8fb9888668a53ff4f78" + sha256: "45ff3fbcb99040fde55c528d5e3e6ca29171298a85436274d49c6201002087d6" url: "https://pub.dev" source: hosted - version: "11.1.0" + version: "11.2.0" permission_handler_android: dependency: transitive description: name: permission_handler_android - sha256: "2f1bec180ee2f5665c22faada971a8f024761f632e93ddc23310487df52dcfa6" + sha256: "758284a0976772f9c744d6384fc5dc4834aa61e3f7aa40492927f244767374eb" url: "https://pub.dev" source: hosted - version: "12.0.1" + version: "12.0.3" permission_handler_apple: dependency: transitive description: name: permission_handler_apple - sha256: "1a816084338ada8d574b1cb48390e6e8b19305d5120fe3a37c98825bacc78306" + sha256: c6bf440f80acd2a873d3d91a699e4cc770f86e7e6b576dda98759e8b92b39830 url: "https://pub.dev" source: hosted - version: "9.2.0" + version: "9.3.0" permission_handler_html: dependency: transitive description: name: permission_handler_html - sha256: d96ff56a757b7f04fa825c469d296c5aebc55f743e87bd639fef91a466a24da8 + sha256: "54bf176b90f6eddd4ece307e2c06cf977fb3973719c35a93b85cc7093eb6070d" url: "https://pub.dev" source: hosted - version: "0.1.0+1" + version: "0.1.1" permission_handler_platform_interface: dependency: transitive description: name: permission_handler_platform_interface - sha256: d87349312f7eaf6ce0adaf668daf700ac5b06af84338bd8b8574dfbd93ffe1a1 + sha256: "5c43148f2bfb6d14c5a8162c0a712afe891f2d847f35fcff29c406b37da43c3c" url: "https://pub.dev" source: hosted - version: "4.0.2" + version: "4.1.0" permission_handler_windows: dependency: transitive description: name: permission_handler_windows - sha256: "1e8640c1e39121128da6b816d236e714d2cf17fac5a105dd6acdd3403a628004" + sha256: "1a790728016f79a41216d88672dbc5df30e686e811ad4e698bfc51f76ad91f1e" url: "https://pub.dev" source: hosted - version: "0.2.0" + version: "0.2.1" petitparser: dependency: transitive description: name: petitparser - sha256: eeb2d1428ee7f4170e2bd498827296a18d4e7fc462b71727d111c0ac7707cfa6 + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 url: "https://pub.dev" source: hosted - version: "6.0.1" + version: "6.0.2" platform: dependency: transitive description: name: platform - sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" url: "https://pub.dev" source: hosted - version: "3.1.3" + version: "3.1.4" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface - sha256: f4f88d4a900933e7267e2b353594774fc0d07fb072b47eedcd5b54e1ea3269f8 + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" url: "https://pub.dev" source: hosted - version: "2.1.7" + version: "2.1.8" pointycastle: dependency: transitive description: name: pointycastle - sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" + sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29" url: "https://pub.dev" source: hosted - version: "3.7.3" + version: "3.7.4" pool: dependency: transitive description: @@ -1290,10 +1328,10 @@ packages: dependency: "direct dev" description: name: retrofit_generator - sha256: "24c148e3c4d5763c580cef1bd703cc13b220dbf585e47d8ab3aa8d1545a8fc5c" + sha256: "40f166d6e07fc3c8f77700093767fd0c1b4742d27fe049ecb15cea1245284bd8" url: "https://pub.dev" source: hosted - version: "8.0.4" + version: "8.0.6" riverpod: dependency: transitive description: @@ -1378,10 +1416,10 @@ packages: dependency: transitive description: name: shared_preferences_foundation - sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" + sha256: "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c" url: "https://pub.dev" source: hosted - version: "2.3.4" + version: "2.3.5" shared_preferences_linux: dependency: transitive description: @@ -1402,10 +1440,10 @@ packages: dependency: transitive description: name: shared_preferences_platform_interface - sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a + sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.3.2" shared_preferences_web: dependency: transitive description: @@ -1427,8 +1465,8 @@ packages: description: path: sheet ref: HEAD - resolved-ref: d5c9ceb4e2263f63f449ed9b1c212a34c6dcaa5d - url: "git@github.com:jamesblasco/modal_bottom_sheet.git" + resolved-ref: f5be540e399a82ee94b0b4195a3d33095b5821db + url: "/~https://github.com/YumNumm/modal_bottom_sheet.git" source: git version: "1.0.0-pre" shelf: @@ -1439,6 +1477,22 @@ packages: url: "https://pub.dev" source: hosted version: "1.4.1" + shelf_packages_handler: + dependency: transitive + description: + name: shelf_packages_handler + sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + shelf_static: + dependency: transitive + description: + name: shelf_static + sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e + url: "https://pub.dev" + source: hosted + version: "1.1.2" shelf_web_socket: dependency: transitive description: @@ -1480,10 +1534,10 @@ packages: dependency: transitive description: name: source_gen - sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 + sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" url: "https://pub.dev" source: hosted - version: "1.4.0" + version: "1.5.0" source_helper: dependency: transitive description: @@ -1492,6 +1546,22 @@ packages: url: "https://pub.dev" source: hosted version: "1.3.4" + source_map_stack_trace: + dependency: transitive + description: + name: source_map_stack_trace + sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + source_maps: + dependency: transitive + description: + name: source_maps + sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703" + url: "https://pub.dev" + source: hosted + version: "0.10.12" source_span: dependency: transitive description: @@ -1552,17 +1622,17 @@ packages: dependency: transitive description: name: talker - sha256: "9c587c0269e194ea5c161b01fa5c4e4120926f4b8fedcf9b3bd2466cb500b880" + sha256: "1e4351253560219859a8e757f5b8dbd266d5c289a50dd90d12da4f3041184392" url: "https://pub.dev" source: hosted - version: "3.1.4" + version: "3.2.0" talker_dio_logger: dependency: "direct main" description: path: "packages/talker_dio_logger" ref: "6425594b611b5f44ad88258cc97641ff96aba014" resolved-ref: "6425594b611b5f44ad88258cc97641ff96aba014" - url: "git@github.com:Frezyx/talker.git" + url: "/~https://github.com/Frezyx/talker.git" source: git version: "2.0.0-dev.2" talker_flutter: @@ -1571,7 +1641,7 @@ packages: path: "packages/talker_flutter" ref: "6425594b611b5f44ad88258cc97641ff96aba014" resolved-ref: "6425594b611b5f44ad88258cc97641ff96aba014" - url: "git@github.com:Frezyx/talker.git" + url: "/~https://github.com/Frezyx/talker.git" source: git version: "3.0.0-dev.11" talker_logger: @@ -1590,6 +1660,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.2.1" + test: + dependency: "direct main" + description: + name: test + sha256: a1f7595805820fcc05e5c52e3a231aedd0b72972cb333e8c738a8b1239448b6f + url: "https://pub.dev" + source: hosted + version: "1.24.9" test_api: dependency: transitive description: @@ -1598,6 +1676,14 @@ packages: url: "https://pub.dev" source: hosted version: "0.6.1" + test_core: + dependency: transitive + description: + name: test_core + sha256: a757b14fc47507060a162cc2530d9a4a2f92f5100a952c7443b5cad5ef5b106a + url: "https://pub.dev" + source: hosted + version: "0.5.9" time: dependency: transitive description: @@ -1622,20 +1708,6 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.1" - topo_map: - dependency: "direct main" - description: - path: "packages/topo_map" - relative: true - source: path - version: "1.0.1" - topojson: - dependency: "direct main" - description: - path: "packages/topojson" - relative: true - source: path - version: "1.0.1" tuple: dependency: transitive description: @@ -1648,10 +1720,10 @@ packages: dependency: "direct main" description: name: two_dimensional_scrollables - sha256: "5c3d971cd9eff7d730f7e350355eb5fa7c75e2f0d87228eef23208f4cb4910aa" + sha256: "3aa17c75bd4932e5e44ced27af72e8cff0b5f40bb6ef2a96c7427613970b54de" url: "https://pub.dev" source: hosted - version: "0.0.4" + version: "0.0.5+1" typed_data: dependency: transitive description: @@ -1672,34 +1744,34 @@ packages: dependency: "direct main" description: name: url_launcher - sha256: b1c9e98774adf8820c96fbc7ae3601231d324a7d5ebd8babe27b6dfac91357ba + sha256: d25bb0ca00432a5e1ee40e69c36c85863addf7cc45e433769d61bed3fe81fd96 url: "https://pub.dev" source: hosted - version: "6.2.1" + version: "6.2.3" url_launcher_android: dependency: transitive description: name: url_launcher_android - sha256: "31222ffb0063171b526d3e569079cf1f8b294075ba323443fdc690842bfd4def" + sha256: "507dc655b1d9cb5ebc756032eb785f114e415f91557b73bf60b7e201dfedeb2f" url: "https://pub.dev" source: hosted - version: "6.2.0" + version: "6.2.2" url_launcher_ios: dependency: transitive description: name: url_launcher_ios - sha256: bba3373219b7abb6b5e0d071b0fe66dfbe005d07517a68e38d4fc3638f35c6d3 + sha256: "75bb6fe3f60070407704282a2d295630cab232991eb52542b18347a8a941df03" url: "https://pub.dev" source: hosted - version: "6.2.1" + version: "6.2.4" url_launcher_linux: dependency: transitive description: name: url_launcher_linux - sha256: "9f2d390e096fdbe1e6e6256f97851e51afc2d9c423d3432f1d6a02a8a9a8b9fd" + sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.1" url_launcher_macos: dependency: transitive description: @@ -1712,34 +1784,34 @@ packages: dependency: transitive description: name: url_launcher_platform_interface - sha256: "980e8d9af422f477be6948bdfb68df8433be71f5743a188968b0c1b887807e50" + sha256: a932c3a8082e118f80a475ce692fde89dc20fddb24c57360b96bc56f7035de1f url: "https://pub.dev" source: hosted - version: "2.2.0" + version: "2.3.1" url_launcher_web: dependency: transitive description: name: url_launcher_web - sha256: "138bd45b3a456dcfafc46d1a146787424f8d2edfbf2809c9324361e58f851cf7" + sha256: fff0932192afeedf63cdd50ecbb1bc825d31aed259f02bb8dba0f3b729a5e88b url: "https://pub.dev" source: hosted - version: "2.2.1" + version: "2.2.3" url_launcher_windows: dependency: transitive description: name: url_launcher_windows - sha256: "7754a1ad30ee896b265f8d14078b0513a4dba28d358eabb9d5f339886f4a1adc" + sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.1" uuid: dependency: transitive description: name: uuid - sha256: df5a4d8f22ee4ccd77f8839ac7cb274ebc11ef9adcce8b92be14b797fe889921 + sha256: cd210a09f7c18cbe5a02511718e0334de6559871052c90a90c0cca46a4aa81c8 url: "https://pub.dev" source: hosted - version: "4.2.1" + version: "4.3.3" vector_math: dependency: "direct main" description: @@ -1756,6 +1828,14 @@ packages: url: "https://pub.dev" source: hosted version: "3.0.2" + visibility_detector: + dependency: "direct main" + description: + name: visibility_detector + sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420 + url: "https://pub.dev" + source: hosted + version: "0.4.0+2" vm_service: dependency: transitive description: @@ -1796,14 +1876,22 @@ packages: url: "https://pub.dev" source: hosted version: "0.1.0" + webkit_inspection_protocol: + dependency: transitive + description: + name: webkit_inspection_protocol + sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572" + url: "https://pub.dev" + source: hosted + version: "1.2.1" win32: dependency: transitive description: name: win32 - sha256: "7c99c0e1e2fa190b48d25c81ca5e42036d5cac81430ef249027d97b0935c553f" + sha256: "464f5674532865248444b4c3daca12bd9bf2d7c47f759ce2617986e7229494a8" url: "https://pub.dev" source: hosted - version: "5.1.0" + version: "5.2.0" win32_registry: dependency: transitive description: @@ -1816,18 +1904,18 @@ packages: dependency: transitive description: name: xdg_directories - sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" + sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d url: "https://pub.dev" source: hosted - version: "1.0.3" + version: "1.0.4" xml: dependency: transitive description: name: xml - sha256: af5e77e9b83f2f4adc5d3f0a4ece1c7f45a2467b695c2540381bac793e34e556 + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 url: "https://pub.dev" source: hosted - version: "6.4.2" + version: "6.5.0" yaml: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 56d9d3c5d..82fd33bef 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,10 +2,10 @@ name: eqmonitor description: An earthquake monitoring Application publish_to: "none" -version: 2.0.2+1052 +version: 2.3.0+1095 environment: - sdk: ^3.1.5 + sdk: ^3.2.0 dependencies: adaptive_dialog: ^2.0.0 @@ -18,14 +18,10 @@ dependencies: crypto: ^3.0.3 cupertino_icons: ^1.0.6 device_info_plus: ^9.1.1 - dio: ^5.3.3 - dio_http2_adapter: ^2.3.1+1 + dio: ^5.4.0 + dio_http2_adapter: ^2.4.0 dynamic_color: ^1.6.8 envied: ^0.5.2 - eq_map: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/eq_map eqapi_client: git: url: /~https://github.com/YumNumm/EQMonitor.git @@ -49,11 +45,20 @@ dependencies: flutter_local_notifications: ^16.1.0 flutter_markdown: ^0.6.18+2 freezed_annotation: ^2.4.1 - go_router: ^11.1.4 + go_router: ^13.0.1 google_fonts: ^6.1.0 hooks_riverpod: ^2.4.7 image: ^4.1.3 - intl: ^0.18.1 + intl: ^0.19.0 + + jma_map: + git: + url: /~https://github.com/YumNumm/EQMonitor.git + path: packages/jma_map + jma_parameter_api_client: + git: + url: /~https://github.com/YumNumm/EQMonitor.git + path: packages/jma_parameter_api_client json_annotation: ^4.8.1 lat_lng: git: @@ -62,11 +67,12 @@ dependencies: latlong2: ^0.9.0 maplibre_gl: git: - url: git@github.com:YumNumm/flutter-maplibre-gl.git - ref: 0bf326044759dfc2f590a1c219d2f1eb86e7b8ad + url: /~https://github.com/YumNumm/flutter-maplibre-gl.git + ref: 59e1eeaf7e627a8054b7024d0189070ee616bcd5 + mocktail: ^1.0.2 native_shared_preferences: ^2.0.7 ntp: ^2.0.0 - package_info_plus: ^4.2.0 + package_info_plus: ^5.0.1 path_provider: ^2.1.1 permission_handler: ^11.0.1 retrofit: ^4.0.3 @@ -74,35 +80,29 @@ dependencies: shared_preferences: ^2.2.2 sheet: git: - url: git@github.com:jamesblasco/modal_bottom_sheet.git + url: /~https://github.com/YumNumm/modal_bottom_sheet.git branch: main path: sheet simplify: ^1.0.2 socket_io_client: ^2.0.3+1 talker_dio_logger: git: - url: git@github.com:Frezyx/talker.git + url: /~https://github.com/Frezyx/talker.git branch: dev ref: 6425594b611b5f44ad88258cc97641ff96aba014 path: packages/talker_dio_logger talker_flutter: git: - url: git@github.com:Frezyx/talker.git + url: /~https://github.com/Frezyx/talker.git branch: dev ref: 6425594b611b5f44ad88258cc97641ff96aba014 path: packages/talker_flutter - topo_map: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/topo_map - topojson: - git: - url: /~https://github.com/YumNumm/EQMonitor.git - path: packages/topojson + test: ^1.24.9 two_dimensional_scrollables: ^0.0.4 url_launcher: ^6.2.1 vector_math: ^2.1.4 version: ^3.0.2 + visibility_detector: ^0.4.0+2 web_socket_client: ^0.1.0 dev_dependencies: @@ -113,7 +113,7 @@ dev_dependencies: freezed: ^2.4.5 go_router_builder: ^2.3.4 json_serializable: ^6.7.1 - melos: ^3.2.0 + melos: ^3.4.0 pedantic_mono: ^1.24.0+1 retrofit_generator: ^8.0.4 riverpod_generator: ^2.3.7 @@ -125,7 +125,6 @@ flutter: - assets/ - assets/images/ - assets/kmoni/ - - assets/maps/ - assets/fonts/ - assets/docs/ diff --git a/pubspec_overrides.yaml b/pubspec_overrides.yaml new file mode 100644 index 000000000..fe5a41ac3 --- /dev/null +++ b/pubspec_overrides.yaml @@ -0,0 +1,16 @@ +# melos_managed_dependency_overrides: eqapi_client,eqapi_types,extensions,jma_parameter_api_client,jma_parameter_types,lat_lng +dependency_overrides: + eqapi_client: + path: packages/eqapi_client + eqapi_types: + path: packages/eqapi_types + extensions: + path: packages/extensions + jma_parameter_api_client: + path: packages/jma_parameter_api_client + jma_parameter_types: + path: packages/jma_parameter_types + lat_lng: + path: packages/lat_lng + jma_map: + path: packages/jma_map diff --git a/test/feature/home/features/eew/eew_alive_provider_test.dart b/test/feature/home/features/eew/eew_alive_provider_test.dart new file mode 100644 index 000000000..842c54eae --- /dev/null +++ b/test/feature/home/features/eew/eew_alive_provider_test.dart @@ -0,0 +1,782 @@ +import 'package:eqapi_types/model/components/accuracy.dart'; +import 'package:eqapi_types/model/components/comments.dart'; +import 'package:eqapi_types/model/components/earthquake.dart'; +import 'package:eqapi_types/model/components/eew_hypocenter.dart'; +import 'package:eqapi_types/model/components/eew_intensity.dart'; +import 'package:eqapi_types/model/telegram_v3.dart'; +import 'package:eqmonitor/feature/earthquake_history/model/state/earthquake_history_item.dart'; +import 'package:eqmonitor/feature/home/features/eew/provider/eew_alive_telegram.dart'; +import 'package:eqmonitor/feature/home/features/eew/provider/eew_telegram.dart'; +import 'package:hooks_riverpod/hooks_riverpod.dart'; +import 'package:lat_lng/lat_lng.dart'; +import 'package:mocktail/mocktail.dart'; +import 'package:test/test.dart'; + +void main() { + final createdAt = DateTime(2000); + final baseBody = TelegramVxse45Body( + magnitude: 2, + depth: 100, + originTime: createdAt, + arrivalTime: createdAt, + hypocenter: const EewHypocenter( + code: '000', + coordinate: LatLng(35, 135), + name: 'test', + ), + forecastMaxInt: const ForecastMaxInt( + from: JmaForecastIntensity.four, + to: JmaForecastIntensityOver.four, + ), + forecastMaxLgInt: null, + isLastInfo: false, + isPlum: false, + accuracy: const EewAccuracy( + depth: '3', + epicenters: ['3', '3'], + magnitudeCalculation: '3', + numberOfMagnitudeCalculation: '3', + ), + regions: [], + ); + final baseEew = TelegramV3( + eventId: 20000000000000, + infoType: TelegramInfoType.issue, + pressTime: createdAt, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + headline: '', + status: TelegramStatus.normal, + hash: '', + body: baseBody, + ); + + const baseEewHistoryItem = EarthquakeHistoryItem( + earthquake: EarthquakeData( + earthquake: null, + intensity: null, + lgIntensity: null, + comment: null, + isVolcano: false, + ), + tsunami: null, + telegrams: [], + eventId: 20000000000000, + latestEew: null, + latestEewTelegram: null, + ); + + group( + 'EewAliveChecker', + () { + final checker = EewAliveChecker(); + test( + '発表から1時間経過したEEWは、イベント終了と判定する', + () { + // Arrange + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [baseEew], + latestEew: baseBody, + latestEewTelegram: baseEew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(hours: 1, seconds: 1), + ), + ); + + // Assert + expect(result, true); + }, + ); + + test( + 'EEWを持たない地震履歴は、イベント終了として判定する', + () { + // Arrange + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [baseEew], + latestEew: baseBody, + latestEewTelegram: baseEew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt, + ); + + // Assert + expect(result, true); + }, + ); + + test( + '既にVXSE53発表済みの地震履歴は、イベント終了として判定する', + () { + // Arrange + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [ + baseEew, + TelegramV3( + eventId: 0, + type: TelegramType.vxse53, + schemaType: SchemaType.earthquakeInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + body: TelegramVxse53Body( + earthquake: Earthquake( + originTime: createdAt, + arrivalTime: createdAt, + hypocenter: const EarthquakeHypocenter( + code: '000', + coordinate: LatLng(35, 135), + depth: 100, + name: 'test', + detailed: EarthquakeHypocenterDetailed( + code: '000', + name: 'test', + ), + ), + magnitude: const EarthquakeMagnitude( + value: 3, + condition: null, + ), + ), + intensity: null, + comment: const CommentsOmitVar( + forecast: null, + free: null, + ), + text: null, + ), + ), + ], + latestEew: baseBody, + latestEewTelegram: baseEew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt, + ); + + // Assert + expect(result, true); + }, + ); + + test( + '最新のEEWが取消報 で 発表から180秒経過している地震履歴は、イベント終了として判定する', + () { + // Arrange + const body = TelegramVxse45Cancel( + isCanceled: true, + isLastInfo: true, + text: '', + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + latestEew: body, + latestEewTelegram: TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.cancel, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ), + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 181), + ), + ); + + // Assert + expect(result, true); + }, + ); + + test( + '最新のEEWが取消報 で 発表から180秒経過していない地震履歴は、イベント継続として判定する', + () { + // Arrange + const body = TelegramVxse45Cancel( + isCanceled: true, + isLastInfo: true, + text: '', + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + latestEew: body, + latestEewTelegram: TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.cancel, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ), + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 180), + ), + ); + + // Assert + expect(result, false); + }, + ); + + test( + '深さ150km未満の場合 地震発生から251秒以降で、イベント終了と判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 140, + originTime: createdAt, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 251), + ), + ); + + // Assert + expect(result, true); + }, + ); + + test( + '深さ150km未満の場合 地震発生から250秒以内で、イベント継続として判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 140, + originTime: createdAt, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 250), + ), + ); + + // Assert + expect(result, false); + }, + ); + + test( + '深さ150km未満の場合 地震検知から251秒以降で、イベント終了と判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 140, + originTime: null, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 251), + ), + ); + + // Assert + expect(result, true); + }, + ); + + test( + '深さ150km未満の場合 地震検知から250秒以内で、イベント継続として判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 140, + originTime: null, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 250), + ), + ); + + // Assert + expect(result, false); + }, + ); + + test( + '深さ150km以深の場合 地震発生から401秒以降で、イベント終了と判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 150, + originTime: createdAt, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 401), + ), + ); + + // Assert + expect(result, true); + }, + ); + + test( + '深さ150km以深の場合 地震発生から400秒以内で、イベント継続として判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 150, + originTime: createdAt, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 400), + ), + ); + + // Assert + expect(result, false); + }, + ); + + test( + '深さ150km以深の場合 地震検知から401秒以降で、イベント終了と判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 150, + originTime: null, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 401), + ), + ); + + // Assert + expect(result, true); + }, + ); + + test( + '深さ150km以深の場合 地震検知から400秒以内で、イベント継続として判定する', + () { + // Arrange + final body = baseBody.copyWith( + depth: 150, + originTime: null, + arrivalTime: createdAt, + ); + final eew = TelegramV3( + eventId: 0, + type: TelegramType.vxse45, + schemaType: SchemaType.eewInformation, + infoType: TelegramInfoType.issue, + status: TelegramStatus.normal, + pressTime: createdAt, + reportTime: createdAt, + body: body, + ); + final earthquakeHistoryItem = baseEewHistoryItem.copyWith( + telegrams: [eew], + latestEew: body, + latestEewTelegram: eew, + ); + + // Act + final result = checker.checkMarkAsEventEnded( + item: earthquakeHistoryItem, + now: createdAt.add( + const Duration(seconds: 400), + ), + ); + + // Assert + expect(result, false); + }, + ); + }, + ); + + group('EewAliveTelegramProvider', () { + late final EewAliveChecker checker; + + setUpAll(() { + registerFallbackValue( + baseEewHistoryItem, + ); + + checker = _MockEewAliveChecker(); + }); + + test( + 'EewAliveChecker#checkMarkAsEndedを1回呼び出していること', + () { + // Arrange + when( + () => checker.checkMarkAsEventEnded( + item: any(named: 'item'), + now: any(named: 'now'), + ), + ).thenReturn(true); + + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue.data([baseEewHistoryItem]), + ), + ], + ); + addTearDown(container.dispose); + + // Act + container.read(eewAliveTelegramProvider); + + // Assert + verify( + () => checker.checkMarkAsEventEnded( + item: baseEewHistoryItem, + now: any(named: 'now'), + ), + ).called(1); + }, + ); + + test( + 'EewAliveChecker#checkMarkAsEnded() => true の結果を利用していること', + () { + // Arrange + when( + () => checker.checkMarkAsEventEnded( + item: any(named: 'item'), + now: any(named: 'now'), + ), + ).thenReturn(true); + + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue.data([baseEewHistoryItem]), + ), + ], + ); + addTearDown(container.dispose); + + // Act + final result = container.read(eewAliveTelegramProvider); + + // Assert + expect( + result, + isEmpty, + ); + }, + ); + + test( + 'EewAliveChecker#checkMarkAsEnded() => false の結果を利用していること', + () { + // Arrange + when( + () => checker.checkMarkAsEventEnded( + item: any(named: 'item'), + now: any(named: 'now'), + ), + ).thenReturn(false); + + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue.data([baseEewHistoryItem]), + ), + ], + ); + addTearDown(container.dispose); + + // Act + final result = container.read(eewAliveTelegramProvider); + + // Assert + expect( + result?.length, + 1, + ); + }, + ); + test( + 'EewTelegramProvider が読み込み中の場合、 null になること', + () { + // Arrange + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue.loading(), + ), + ], + ); + addTearDown(container.dispose); + + // Act + final result = container.read(eewAliveTelegramProvider); + + // Assert + expect( + result, + isNull, + ); + }, + ); + + test( + 'EewTelegramProvider がエラーの場合、 null になること', + () { + // Arrange + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue.error('', StackTrace.empty), + ), + ], + ); + addTearDown(container.dispose); + + // Act + final result = container.read(eewAliveTelegramProvider); + + // Assert + expect( + result, + isNull, + ); + }, + ); + + test( + 'EewTelegramProvider が読み込み中で、previousデータを持っている場合、そのデータを利用していること', + () { + // Arrange + when( + () => checker.checkMarkAsEventEnded( + item: any(named: 'item'), + now: any(named: 'now'), + ), + ).thenReturn(false); + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue>.loading() + .copyWithPrevious( + const AsyncValue.data([baseEewHistoryItem]), + ), + ), + ], + ); + addTearDown(container.dispose); + + // Act + final result = container.read(eewAliveTelegramProvider); + + // Assert + expect( + result, + isNotEmpty, + ); + }, + ); + + test( + 'EewTelegramProvider がエラーで、previousデータを持っている場合、そのデータを利用していること', + () { + // Arrange + when( + () => checker.checkMarkAsEventEnded( + item: any(named: 'item'), + now: any(named: 'now'), + ), + ).thenReturn(false); + final container = ProviderContainer( + overrides: [ + eewAliveCheckerProvider.overrideWithValue(checker), + eewTelegramProvider.overrideWithValue( + const AsyncValue>.error( + '', + StackTrace.empty, + ).copyWithPrevious( + const AsyncValue.data([baseEewHistoryItem]), + ), + ), + ], + ); + addTearDown(container.dispose); + + // Act + final result = container.read(eewAliveTelegramProvider); + + // Assert + expect( + result, + isNotEmpty, + ); + }, + ); + }); +} + +class _MockEewAliveChecker extends Mock implements EewAliveChecker {} diff --git a/util/arv/requirements.txt b/util/arv/requirements.txt index c38e29be9..958e2080a 100644 --- a/util/arv/requirements.txt +++ b/util/arv/requirements.txt @@ -1,2 +1,2 @@ requests==2.28.1 -urllib3==1.26.11 +urllib3==1.26.18 diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 000000000..8aaa46ac1 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 000000000..b749bfef0 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 000000000..88cfd48df 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 000000000..eb9b4d76e 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 000000000..d69c56691 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 000000000..b41001546 --- /dev/null +++ b/web/index.html @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + eqmonitor + + + + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 000000000..d5e5b6c61 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "eqmonitor", + "short_name": "eqmonitor", + "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" + } + ] +}